diff --git a/.claude/commands/ink-art.md b/.claude/commands/ink-art.md index 2e5f2e40..6881b483 100644 --- a/.claude/commands/ink-art.md +++ b/.claude/commands/ink-art.md @@ -6,7 +6,7 @@ argument-hint: [what to animate] Read `skills/creative/ink-theater.md` (the metaphor method, color grammar, mined archetypes) and `ink-theater/README.md` (engine API, determinism, the SVG-text font gotcha), then build the piece described below. - Use the **Ink Theater** engine (`ink-theater/ink-theater.js`): variable-width ink strokes, seek-safe boil, closed-form spring eases, FABRIK IK, the contraption grammar. -- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create(...)` → `p.drawIn(tl, ...)` for the self-drawing reveal → `InkPuppet.choreograph(tl, p, [{clip:'wave_hello'},{clip:'dab'},{clip:'jumping'},...])`. **Never hand-tune motion** — add moves by converting a BVH with `ink-theater/mocap/bvh2clip.mjs` (free CMU mocap has walk/run/dance/…). +- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create(...)` → `p.drawIn(tl, ...)` for the self-drawing reveal → `InkPuppet.choreograph(tl, p, [{clip:'wave'},{clip:'twist'},{clip:'walk'},...])`. Clip names come from `ink-theater/mocap/catalog.json` (12 CMU-sourced moves). **Never hand-tune motion** — add moves with `node ink-theater/mocap/add-motion.mjs …` (free CMU mocap has walk/run/dance/…). - Captions = **HTML overlay `
`s** (HyperFrames does not apply webfonts to SVG ``). - Validate with `npx hyperframes lint` + `snapshot` (eyeball the contact sheet), then render. diff --git a/.codex/prompts/ink-art.md b/.codex/prompts/ink-art.md index 3d18faa1..eca1b50f 100644 --- a/.codex/prompts/ink-art.md +++ b/.codex/prompts/ink-art.md @@ -6,7 +6,7 @@ argument-hint: [what to animate] Read `skills/creative/ink-theater.md` and `ink-theater/README.md`, then build the hand-drawn ink animation described below. - **Ink Theater** engine (`ink-theater/ink-theater.js`): variable-width ink strokes, seek-safe boil, closed-form spring eases, FABRIK IK, contraption grammar. -- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create` → `p.drawIn` (self-drawing reveal) → `InkPuppet.choreograph([{clip:'wave_hello'},{clip:'dab'},…])`. **Never hand-tune motion**; add moves via `ink-theater/mocap/bvh2clip.mjs`. +- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create` → `p.drawIn` (self-drawing reveal) → `InkPuppet.choreograph([{clip:'wave'},{clip:'twist'},…])` (names from `ink-theater/mocap/catalog.json`, 12 CMU-sourced moves). **Never hand-tune motion**; add moves via `node ink-theater/mocap/add-motion.mjs`. - Captions = **HTML overlay `
`s** (HyperFrames doesn't apply webfonts to SVG ``). Validate (`npx hyperframes lint` + `snapshot`) before rendering. Request: $ARGUMENTS diff --git a/.cursor/commands/ink-art.md b/.cursor/commands/ink-art.md index fbb4cd24..83b3480b 100644 --- a/.cursor/commands/ink-art.md +++ b/.cursor/commands/ink-art.md @@ -5,6 +5,6 @@ A character that draws itself then walks/dances/waves, or a deadpan contraption Read `skills/creative/ink-theater.md` and `ink-theater/README.md`, then build what the user asks: - **Ink Theater** engine (`ink-theater/ink-theater.js`): variable-width ink strokes, seek-safe boil, closed-form spring eases, FABRIK IK, contraption grammar. -- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create` → `p.drawIn` (self-drawing reveal) → `InkPuppet.choreograph([{clip:'wave_hello'},{clip:'dab'},…])`. **Never hand-tune motion**; add moves via `ink-theater/mocap/bvh2clip.mjs`. +- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create` → `p.drawIn` (self-drawing reveal) → `InkPuppet.choreograph([{clip:'wave'},{clip:'twist'},…])` (names from `ink-theater/mocap/catalog.json`, 12 CMU-sourced moves). **Never hand-tune motion**; add moves via `node ink-theater/mocap/add-motion.mjs`. - Captions = **HTML overlay `
`s** (HyperFrames doesn't apply webfonts to SVG ``). - Validate (`npx hyperframes lint` + `snapshot`) before rendering. diff --git a/.github/prompts/ink-art.prompt.md b/.github/prompts/ink-art.prompt.md index 27be43a7..f6a1e926 100644 --- a/.github/prompts/ink-art.prompt.md +++ b/.github/prompts/ink-art.prompt.md @@ -5,6 +5,6 @@ description: Hand-drawn ink-on-white doodle animation — a character that draws Read `skills/creative/ink-theater.md` and `ink-theater/README.md`, then build the hand-drawn ink animation the user asks for. - Use the **Ink Theater** engine (`ink-theater/ink-theater.js`): variable-width ink strokes, seek-safe boil, closed-form spring eases, FABRIK IK, contraption grammar. -- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create` → `p.drawIn` (self-drawing reveal) → `InkPuppet.choreograph([{clip:'wave_hello'},{clip:'dab'},…])`. **Never hand-tune motion**; add moves via `ink-theater/mocap/bvh2clip.mjs`. +- For a **character that walks / dances / waves / jumps**, use the **Ink Puppet** mocap system: `InkPuppet.create` → `p.drawIn` (self-drawing reveal) → `InkPuppet.choreograph([{clip:'wave'},{clip:'twist'},…])` (names from `ink-theater/mocap/catalog.json`, 12 CMU-sourced moves). **Never hand-tune motion**; add moves via `node ink-theater/mocap/add-motion.mjs`. - Captions = **HTML overlay `
`s** (HyperFrames doesn't apply webfonts to SVG ``). - Validate (`npx hyperframes lint` + `snapshot`) before rendering. diff --git a/ink-theater/README.md b/ink-theater/README.md index 39c6509a..86f0eaf9 100644 --- a/ink-theater/README.md +++ b/ink-theater/README.md @@ -38,7 +38,7 @@ Custom handwriting rendered as **serif** in every render for a long time. The ca @font-face { font-family: "InkHand"; src: url("assets/patrickhand.ttf") format("truetype"); font-display: block; } ``` -A working Patrick Hand TTF ships at **`ink-theater/assets/patrickhand.ttf`** — copy it into your project's `assets/` and use `font-family: "InkHand"`. It renders real handwriting on normal **HTML overlay `
`s** (verified — put caption divs over the SVG scene). Don't hot-link Google Fonts (a render-time network fetch breaks determinism); a local `@font-face` file is auto-inlined by the compiler at build time. +A working Patrick Hand TTF ships at **`ink-theater/assets/patrickhand.ttf`** (SIL Open Font License — the license ships beside it as `assets/OFL.txt`; see `THIRD_PARTY_NOTICES.md`) — copy it into your project's `assets/` and use `font-family: "InkHand"`. It renders real handwriting on normal **HTML overlay `
`s** (verified — put caption divs over the SVG scene). Don't hot-link Google Fonts (a render-time network fetch breaks determinism); a local `@font-face` file is auto-inlined by the compiler at build time. > Note: HyperFrames also pre-bundles ~18 fonts (none are handwriting) — see `hyperframes-creative/references/typography.md`. For handwriting you must embed your own full font as above. @@ -70,19 +70,17 @@ InkTheater.balloon(tl, { into: fxGroup, overlay: htmlOverlay, at: 5, dur: 2, tex Deterministic + seek-safe (pose is a pure function of each segment's local time). -**The action library (`mocap/catalog.json`)** ships ~12 varied moves the agent picks by name — locomotion (`walk`, `run`, `climb`, `march`, `shuffle`), action (`jump`, `kick`), posture (`sit`), gesture (`wave`), dance (`dance_spin`, `dance_glide`, `dab`). **Read the catalog and pick moves that fit the story — don't loop one clip.** +**The action library (`mocap/catalog.json`)** ships 12 varied moves the agent picks by name — locomotion (`walk`, `run`, `climb`, `march`, `shuffle`), action (`jump`, `kick`), posture (`sit`), gesture (`wave`), dance (`dance_spin`, `dance_glide`, `twist`). Every clip is CMU-sourced (free for any use). **Read the catalog and pick moves that fit the story — don't loop one clip.** **Extend it in one command** (self-extending, no code changes) — the converter auto-maps fair1 / CMU / Mixamo skeletons: ``` node mocap/add-motion.mjs backflip 05_20 dance "a backflip" # CMU id, or a URL, or a local .bvh ``` -Free **CMU mocap** (`una-dinosauria/cmu-mocap`) has thousands. This is what Meta's *Animated Drawings* does, but here it stays **vector, white-ink, with a draw-on reveal** (AD is raster, humanoid-only, no reveal). Provenance: `mocap/NOTE.md`. +Free **CMU mocap** (`una-dinosauria/cmu-mocap`) has thousands. This is what Meta's *Animated Drawings* does, but here it stays **vector, white-ink, with a draw-on reveal** (AD is raster, humanoid-only, no reveal). Provenance (all clips CMU, free for any use): `mocap/NOTE.md` · `THIRD_PARTY_NOTICES.md`. ### Speech balloons — `InkTheater.balloon(tl, opts)` Comic balloon that grows from the mouth, with HTML overlay text (so the webfont applies). `opts`: `into` (an SVG ``), `overlay` (an HTML div), `at`, `dur`, `text`, `mouth:[x,y]`, `center:[x,y]`, `w`, `size`, `boil`. ## Demos -- `examples/mocap-figure/` — the pencil figure draws itself, then waves / dabs / jumps / walks via **real mocap**. -- `examples/reel.html` — capabilities reel (each primitive, labeled). -- `examples/momentum.html` — "Momentum" story (springs + rig + ink + handwriting). +- `examples/mocap-figure/` — the pencil figure draws itself, then walks / runs / dances / kicks / sits / waves via **real CMU mocap**. Self-contained and lintable (`npx hyperframes lint ink-theater/examples/mocap-figure`); see `examples/README.md`. diff --git a/ink-theater/THIRD_PARTY_NOTICES.md b/ink-theater/THIRD_PARTY_NOTICES.md new file mode 100644 index 00000000..10adbae2 --- /dev/null +++ b/ink-theater/THIRD_PARTY_NOTICES.md @@ -0,0 +1,29 @@ +# Third-party notices — Ink Theater + +Ink Theater bundles two third-party assets. Both are free for any use, including +commercial, subject only to attribution. + +## Patrick Hand (handwriting font) — SIL Open Font License 1.1 + +`assets/patrickhand.ttf` + +Copyright (c) 2010-2012 Patrick Wagesreiter (mail@patrickwagesreiter.at). +Licensed under the SIL Open Font License, Version 1.1. The OFL permits bundling, +embedding, and redistribution (including commercially); it only forbids selling +the font by itself and requires that this notice and the license text ship with +it. Full license: `assets/OFL.txt`. + +## Motion-capture clips — CMU Graphics Lab Motion Capture Database + +`mocap/clips/*.json`, bundled into `mocap/clips.js` + +The 2D motion clips are derived (via `mocap/bvh2clip.mjs`) from BVH files in the +**CMU Graphics Lab Motion Capture Database** (http://mocap.cs.cmu.edu), obtained +through the `una-dinosauria/cmu-mocap` mirror. The CMU database is **free for all +uses** ("This data is free for use in research and commercial projects +worldwide"). Per-clip source trial IDs are recorded in `mocap/catalog.json` +(e.g. `walk` = CMU 02_01, `wave` = CMU 141_16). + +No Meta / FAIR (AnimatedDrawings) mocap is bundled. The separate `/animated-drawing` +capability documents Meta's AnimatedDrawings tool, but this engine's clip library +is entirely CMU-sourced. diff --git a/ink-theater/assets/OFL.txt b/ink-theater/assets/OFL.txt new file mode 100644 index 00000000..b441dbd4 --- /dev/null +++ b/ink-theater/assets/OFL.txt @@ -0,0 +1,93 @@ +Copyright (c) 2010-2012 Patrick Wagesreiter (mail@patrickwagesreiter.at) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/ink-theater/examples/README.md b/ink-theater/examples/README.md new file mode 100644 index 00000000..9f499c76 --- /dev/null +++ b/ink-theater/examples/README.md @@ -0,0 +1,22 @@ +# Ink Theater examples + +## `mocap-figure/` — the canonical runnable example + +A self-contained HyperFrames composition: a pencil line **draws itself into a +stick figure**, which then walks / runs / dances / kicks / sits / waves using +**real CMU motion capture** (zero hand-tuning) via `InkPuppet.choreograph(...)`. + +It bundles everything it needs (`ink-theater.js`, `ink-puppet.js`, `clips.js`, +`assets/patrickhand.ttf`), so lint and render it directly: + +```bash +npx hyperframes lint ink-theater/examples/mocap-figure +``` + +> Point the linter at a **composition directory** (one that contains an +> `index.html`), not at `examples/` itself — the linter looks for `index.html` +> and there is none at the `examples/` root. + +To reuse the engine in your own project, copy `ink-theater.js` (+ `ink-puppet.js` +and `mocap/clips.js` for characters, `assets/patrickhand.ttf` for handwriting) +into the project root — see `../README.md`. diff --git a/ink-theater/examples/assets/inkhand.woff2 b/ink-theater/examples/assets/inkhand.woff2 deleted file mode 100644 index 49c912fe..00000000 Binary files a/ink-theater/examples/assets/inkhand.woff2 and /dev/null differ diff --git a/ink-theater/examples/mocap-figure/assets/OFL.txt b/ink-theater/examples/mocap-figure/assets/OFL.txt new file mode 100644 index 00000000..b441dbd4 --- /dev/null +++ b/ink-theater/examples/mocap-figure/assets/OFL.txt @@ -0,0 +1,93 @@ +Copyright (c) 2010-2012 Patrick Wagesreiter (mail@patrickwagesreiter.at) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/ink-theater/examples/mocap-figure/clips.js b/ink-theater/examples/mocap-figure/clips.js index 757e894f..32c88064 100644 --- a/ink-theater/examples/mocap-figure/clips.js +++ b/ink-theater/examples/mocap-figure/clips.js @@ -1 +1 @@ -window.INK_CLIPS={"climb":{"name":"climb","fps":30,"height":520,"groundY":339,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.7,-82.8],"neck":[1.7,-82.8],"head":[2.7,-153.6],"shR":[-61.9,-110.7],"elR":[-167.1,-95.9],"haR":[-236.2,-86.1],"shL":[69.9,-107.1],"elL":[169.9,-93.1],"haL":[239.8,-83.3],"hipR":[-26.5,36.4],"knR":[-23.8,187.1],"ftR":[-21.2,339.3],"hipL":[27.6,36.4],"knL":[25.1,181.5],"ftL":[22.4,333.3]},{"rootY":0.3,"hips":[0,0],"chest":[-6.5,-82.3],"neck":[-6.5,-82.3],"head":[-12.8,-153],"shR":[30.3,-106.6],"elR":[47.6,-1.7],"haR":[42.7,62.8],"shL":[-39.1,-112.2],"elL":[-32.5,-13.4],"haL":[-59.8,51.7],"hipR":[6.5,33.7],"knR":[-14.2,182.8],"ftR":[23.8,324],"hipL":[-27.7,39.3],"knL":[-49,182.4],"ftL":[-12.6,324.4]},{"rootY":0,"hips":[0,0],"chest":[-6.3,-82.4],"neck":[-6.3,-82.4],"head":[-12.1,-153],"shR":[31.3,-106.6],"elR":[48,-1.7],"haR":[42.4,62.3],"shL":[-39.2,-112.3],"elL":[-31.5,-13.5],"haL":[-56.3,52.5],"hipR":[6.7,34.2],"knR":[-13.8,183.3],"ftR":[24.1,324.5],"hipL":[-28,39.1],"knL":[-46.9,182.5],"ftL":[-11.5,324.5]},{"rootY":0.2,"hips":[0,0],"chest":[-6.6,-82.5],"neck":[-6.6,-82.5],"head":[-12.5,-153.2],"shR":[31.4,-106.9],"elR":[47.9,-1.9],"haR":[40.6,61.7],"shL":[-40,-112.1],"elL":[-32.2,-13.2],"haL":[-54.5,53.5],"hipR":[6.3,34.6],"knR":[-15,183.7],"ftR":[23.9,324.4],"hipL":[-28.7,38.5],"knL":[-48.1,182],"ftL":[-13.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-6.3,-82.5],"neck":[-6.3,-82.5],"head":[-12.4,-153.2],"shR":[31.4,-107.8],"elR":[46.8,-2.7],"haR":[39,60.5],"shL":[-39.5,-111.2],"elL":[-31.7,-12.3],"haL":[-52.3,54.8],"hipR":[6.6,34.5],"knR":[-15.1,183.5],"ftR":[23.5,323.7],"hipL":[-28.5,38.7],"knL":[-49.2,182.2],"ftL":[-14,324.6]},{"rootY":0.6,"hips":[0,0],"chest":[-6.1,-82.6],"neck":[-6.1,-82.6],"head":[-12.3,-153.3],"shR":[31.9,-108.4],"elR":[46.8,-3.2],"haR":[37.7,59.9],"shL":[-39.4,-110.6],"elL":[-31.9,-11.7],"haL":[-51.6,55.6],"hipR":[6.2,34.5],"knR":[-14.5,183.7],"ftR":[23.9,323.9],"hipL":[-28.8,38.5],"knL":[-49.1,182],"ftL":[-13.5,324.1]},{"rootY":0.4,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.4,-153.4],"shR":[32.2,-108.8],"elR":[47.1,-3.6],"haR":[36.8,59.3],"shL":[-39.2,-110.3],"elL":[-31.6,-11.3],"haL":[-51.2,56],"hipR":[6,34.9],"knR":[-15.3,184],"ftR":[23.8,324],"hipL":[-29,38.2],"knL":[-47.8,182],"ftL":[-13.3,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.6,-153.5],"shR":[31.9,-109.1],"elR":[47.2,-4],"haR":[35.9,58.6],"shL":[-38.8,-109.9],"elL":[-31,-10.9],"haL":[-51.3,56.2],"hipR":[5.9,35.2],"knR":[-15.8,184.2],"ftR":[23.9,323.9],"hipL":[-29.2,38],"knL":[-47.5,181.8],"ftL":[-13.2,324.2]},{"rootY":1.2,"hips":[0,0],"chest":[-6,-82.6],"neck":[-6,-82.6],"head":[-13,-153.5],"shR":[31.7,-109.4],"elR":[47.3,-4.3],"haR":[35.2,58.4],"shL":[-38.8,-109.6],"elL":[-31.4,-10.5],"haL":[-53,56.3],"hipR":[6.4,34.8],"knR":[-16,183.7],"ftR":[23.5,323.2],"hipL":[-28.8,38.5],"knL":[-48.2,182.1],"ftL":[-13.5,324.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.3,-82.6],"neck":[-6.3,-82.6],"head":[-13.9,-153.5],"shR":[31.2,-109.3],"elR":[46.9,-4.3],"haR":[34.6,58.6],"shL":[-39.2,-109.7],"elL":[-31.8,-10.4],"haL":[-54.9,56.1],"hipR":[6.3,34.8],"knR":[-16.3,183.7],"ftR":[22.8,322.9],"hipL":[-28.8,38.4],"knL":[-48.7,182.1],"ftL":[-14.2,324.3]},{"rootY":1.1,"hips":[0,0],"chest":[-6.7,-82.6],"neck":[-6.7,-82.6],"head":[-15.4,-153.4],"shR":[30.1,-109.9],"elR":[45.2,-4.8],"haR":[32.8,58.7],"shL":[-39,-109],"elL":[-31.8,-9.7],"haL":[-56.8,56.2],"hipR":[5.9,35.1],"knR":[-17.1,183.9],"ftR":[22.3,323],"hipL":[-29,38.2],"knL":[-48.4,181.9],"ftL":[-14.8,324.2]},{"rootY":1,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-16.9,-153.2],"shR":[30.2,-109.9],"elR":[44.4,-4.6],"haR":[33.2,59.3],"shL":[-39.4,-109.1],"elL":[-32.4,-9.6],"haL":[-59.1,55.8],"hipR":[6,34.9],"knR":[-16.7,183.8],"ftR":[22.1,323.1],"hipL":[-28.7,38.4],"knL":[-48.9,182],"ftL":[-15.1,323.9]},{"rootY":1.2,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-18.9,-152.9],"shR":[29.9,-110.6],"elR":[43.4,-5.2],"haR":[32.8,59.1],"shL":[-39.4,-108.3],"elL":[-32.7,-8.8],"haL":[-61.4,55.7],"hipR":[5.8,34.8],"knR":[-16.6,183.8],"ftR":[21.7,322.9],"hipL":[-28.5,38.5],"knL":[-49,182],"ftL":[-15.2,323.7]},{"rootY":1.4,"hips":[0,0],"chest":[-7.5,-82.5],"neck":[-7.5,-82.5],"head":[-21.5,-152.4],"shR":[30.1,-110.5],"elR":[43.9,-5.1],"haR":[33.5,59.3],"shL":[-41,-108.4],"elL":[-34.3,-8.8],"haL":[-65.1,54.8],"hipR":[5.2,35.1],"knR":[-17.9,184],"ftR":[21.7,322.8],"hipL":[-28.9,38.1],"knL":[-49.3,181.7],"ftL":[-16,323.6]},{"rootY":1.5,"hips":[0,0],"chest":[-7.8,-82.5],"neck":[-7.8,-82.5],"head":[-23.8,-151.8],"shR":[29.5,-110.9],"elR":[44.1,-5.7],"haR":[33.5,58.7],"shL":[-41.4,-107.9],"elL":[-34.5,-8.3],"haL":[-67.1,54.4],"hipR":[5.5,35.2],"knR":[-17.5,184.2],"ftR":[21.2,322.8],"hipL":[-28.6,38.3],"knL":[-49.5,181.8],"ftL":[-16.4,323.5]},{"rootY":1.7,"hips":[0,0],"chest":[-8.1,-82.5],"neck":[-8.1,-82.5],"head":[-26,-151.3],"shR":[29.6,-111.1],"elR":[45.3,-6],"haR":[34.6,58.3],"shL":[-42.6,-107.6],"elL":[-35,-8.1],"haL":[-68.9,53.8],"hipR":[5.9,34.8],"knR":[-16.8,183.8],"ftR":[20.6,322.6],"hipL":[-28.2,38.7],"knL":[-50.1,182.1],"ftL":[-16.8,323.3]},{"rootY":2.3,"hips":[0,0],"chest":[-8.7,-82.4],"neck":[-8.7,-82.4],"head":[-28.2,-150.8],"shR":[29.1,-111.5],"elR":[45.4,-6.5],"haR":[34.6,57.7],"shL":[-44.4,-107.2],"elL":[-36.2,-7.8],"haL":[-70.9,53.5],"hipR":[6,34.9],"knR":[-17.3,183.7],"ftR":[19.7,322.2],"hipL":[-28.2,38.7],"knL":[-50.7,182],"ftL":[-17.4,322.8]},{"rootY":2.6,"hips":[0,0],"chest":[-9.3,-82.3],"neck":[-9.3,-82.3],"head":[-29.9,-150.3],"shR":[29.3,-111.6],"elR":[46.8,-6.8],"haR":[35.7,57],"shL":[-46.3,-106.9],"elL":[-36.9,-7.8],"haL":[-72.1,53.2],"hipR":[6.7,34.6],"knR":[-16.8,183.5],"ftR":[19,321.9],"hipL":[-28,39],"knL":[-51.5,182.1],"ftL":[-18,322.2]},{"rootY":2.9,"hips":[0,0],"chest":[-9.6,-82.3],"neck":[-9.6,-82.3],"head":[-31.1,-150],"shR":[29.5,-111.7],"elR":[48.1,-7.1],"haR":[37.2,56.4],"shL":[-47.8,-106.7],"elL":[-38.1,-7.8],"haL":[-72.8,53.4],"hipR":[7.6,34.1],"knR":[-15.8,182.9],"ftR":[18.8,321.8],"hipL":[-27.8,39.3],"knL":[-52.7,182.2],"ftL":[-18.5,321.1]},{"rootY":3.1,"hips":[0,0],"chest":[-9.9,-82.2],"neck":[-9.9,-82.2],"head":[-31.9,-149.7],"shR":[29.7,-111.9],"elR":[49.4,-7.5],"haR":[38.6,55.8],"shL":[-49.1,-106.5],"elL":[-39,-7.7],"haL":[-72.9,53.9],"hipR":[8.4,34],"knR":[-14.3,182.9],"ftR":[18.4,321.8],"hipL":[-27.8,39.5],"knL":[-53.5,182.2],"ftL":[-18.6,320]},{"rootY":2.9,"hips":[0,0],"chest":[-10.3,-82.2],"neck":[-10.3,-82.2],"head":[-32.6,-149.5],"shR":[30.7,-111.8],"elR":[50.9,-7.5],"haR":[40.4,55.8],"shL":[-51.2,-106.6],"elL":[-40.9,-7.9],"haL":[-73.3,54.6],"hipR":[9.2,34.1],"knR":[-13.3,183.1],"ftR":[18,321.7],"hipL":[-27.8,39.6],"knL":[-55,182],"ftL":[-19.4,318.6]},{"rootY":3.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.7,-149.4],"shR":[31,-112.1],"elR":[51.6,-7.9],"haR":[42.5,55.3],"shL":[-52.2,-106.1],"elL":[-41.6,-7.7],"haL":[-72.6,55.5],"hipR":[9.7,34],"knR":[-11.4,183.2],"ftR":[18.4,322],"hipL":[-27.9,39.6],"knL":[-58.1,181.3],"ftL":[-20.5,315.9]},{"rootY":2.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.5,-149.4],"shR":[32.3,-111.4],"elR":[53.6,-7.3],"haR":[45.4,56],"shL":[-53.6,-106.8],"elL":[-42.6,-8.5],"haL":[-71.8,55.6],"hipR":[10.2,33.8],"knR":[-8.5,183.2],"ftR":[18.7,322.9],"hipL":[-27.9,39.6],"knL":[-62,180.2],"ftL":[-22.4,312.2]},{"rootY":2.6,"hips":[0,0],"chest":[-10.6,-82],"neck":[-10.6,-82],"head":[-32.3,-149.4],"shR":[32.3,-111.6],"elR":[53.8,-7.6],"haR":[47.1,55.7],"shL":[-54.5,-106.5],"elL":[-43.5,-8.3],"haL":[-71.2,56.5],"hipR":[11.2,33.6],"knR":[-6.7,183.1],"ftR":[18.8,322.6],"hipL":[-27.6,39.9],"knL":[-66.2,179],"ftL":[-23.6,308.4]},{"rootY":2.5,"hips":[0,0],"chest":[-10.3,-82],"neck":[-10.3,-82],"head":[-31.9,-149.4],"shR":[33.5,-111.1],"elR":[55.4,-7.3],"haR":[50.3,56.4],"shL":[-54.9,-107],"elL":[-43.6,-8.9],"haL":[-69.6,56.7],"hipR":[11.8,33.2],"knR":[-4.2,182.8],"ftR":[19.9,322.7],"hipL":[-27.5,40.1],"knL":[-70,177.5],"ftL":[-24.4,304.7]},{"rootY":2.3,"hips":[0,0],"chest":[-9.8,-82],"neck":[-9.8,-82],"head":[-30.8,-149.5],"shR":[34.6,-110.7],"elR":[56.6,-6.9],"haR":[53,57],"shL":[-55.1,-107.5],"elL":[-43.3,-9.5],"haL":[-68,56.6],"hipR":[12.8,33.1],"knR":[-1.2,182.7],"ftR":[21.7,322.8],"hipL":[-27.4,40.2],"knL":[-72.5,176.2],"ftL":[-25.6,302.3]},{"rootY":1.7,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-29.9,-149.5],"shR":[35.9,-110.3],"elR":[57.7,-6.4],"haR":[56.4,58.2],"shL":[-55.2,-107.9],"elL":[-42.9,-10.2],"haL":[-66.1,56.5],"hipR":[13.3,32.9],"knR":[1.4,182.7],"ftR":[23.4,323],"hipL":[-27.5,40.2],"knL":[-74.7,174.9],"ftL":[-28.5,301.6]},{"rootY":1,"hips":[0,0],"chest":[-9.2,-82],"neck":[-9.2,-82],"head":[-29.2,-149.6],"shR":[36.7,-109.8],"elR":[58,-6],"haR":[58.7,59.2],"shL":[-55.6,-108.3],"elL":[-42.4,-11],"haL":[-64.8,56],"hipR":[13.5,33.6],"knR":[3.7,183.3],"ftR":[26,323.4],"hipL":[-27.9,39.9],"knL":[-76.6,173.4],"ftL":[-33.7,303]},{"rootY":1,"hips":[0,0],"chest":[-9,-81.9],"neck":[-9,-81.9],"head":[-28.3,-149.6],"shR":[37.5,-109.2],"elR":[58,-5.3],"haR":[60.3,60.7],"shL":[-55.7,-108.8],"elL":[-41.6,-11.9],"haL":[-63.1,55.4],"hipR":[13.8,33.8],"knR":[6,183.5],"ftR":[29.2,323.1],"hipL":[-28,39.9],"knL":[-77.9,172.1],"ftL":[-39.9,306.1]},{"rootY":0.9,"hips":[0,0],"chest":[-8.8,-81.9],"neck":[-8.8,-81.9],"head":[-27.2,-149.6],"shR":[38,-108.8],"elR":[57.5,-4.6],"haR":[61.7,61.8],"shL":[-55.8,-109.2],"elL":[-41,-12.6],"haL":[-61.6,54.9],"hipR":[14.4,33.9],"knR":[8.9,183.5],"ftR":[32,323.1],"hipL":[-27.7,40],"knL":[-79.1,170.8],"ftL":[-47.4,309.5]},{"rootY":0.3,"hips":[0,0],"chest":[-8.7,-81.7],"neck":[-8.7,-81.7],"head":[-26.7,-149.5],"shR":[38.9,-107.7],"elR":[57.5,-3.5],"haR":[62.9,63.5],"shL":[-56.2,-110],"elL":[-40.9,-14],"haL":[-60.7,53.8],"hipR":[14.9,33.8],"knR":[12.1,183.1],"ftR":[35.6,322.4],"hipL":[-27.4,40.2],"knL":[-79.8,169.9],"ftL":[-55.6,313.1]},{"rootY":0,"hips":[0,0],"chest":[-8.7,-81.6],"neck":[-8.7,-81.6],"head":[-26,-149.4],"shR":[39,-107],"elR":[56.9,-2.7],"haR":[63.2,64.7],"shL":[-56.2,-110.5],"elL":[-40.8,-14.8],"haL":[-59.9,53.2],"hipR":[15.3,33.8],"knR":[15.7,182.6],"ftR":[39.1,322.2],"hipL":[-27.2,40.4],"knL":[-80.3,168.9],"ftL":[-63.9,316]},{"rootY":-0.6,"hips":[0,0],"chest":[-8.8,-81.4],"neck":[-8.8,-81.4],"head":[-25.6,-149.2],"shR":[39,-106.1],"elR":[56.5,-1.9],"haR":[62.4,65.9],"shL":[-56.4,-111],"elL":[-40.9,-15.7],"haL":[-59.8,52.3],"hipR":[15.9,33.6],"knR":[20,181.7],"ftR":[42.9,322],"hipL":[-26.9,40.6],"knL":[-80.1,168.2],"ftL":[-72.2,318]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.8,-81.3],"neck":[-8.8,-81.3],"head":[-25.1,-149],"shR":[39.3,-105.3],"elR":[56.1,-1.2],"haR":[61.5,66.9],"shL":[-56.8,-111.6],"elL":[-40.9,-16.8],"haL":[-60,51.2],"hipR":[15.9,34],"knR":[24,181],"ftR":[47.1,321.7],"hipL":[-26.9,40.6],"knL":[-79.6,167.3],"ftL":[-79.1,318.7]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-81.1],"neck":[-9.4,-81.1],"head":[-24.9,-148.6],"shR":[39.2,-104.6],"elR":[55.6,-0.6],"haR":[60,67.7],"shL":[-57.9,-112],"elL":[-41.6,-17.6],"haL":[-60.6,50.4],"hipR":[16.3,33.8],"knR":[30.3,178.4],"ftR":[50.9,320.9],"hipL":[-26.6,40.8],"knL":[-79,166.9],"ftL":[-84.9,318.6]},{"rootY":0.8,"hips":[0,0],"chest":[-9.6,-80.9],"neck":[-9.6,-80.9],"head":[-25.1,-148.5],"shR":[39.4,-104.1],"elR":[55,-0.2],"haR":[58.5,68.3],"shL":[-58.6,-112.2],"elL":[-42.3,-18.2],"haL":[-61.5,49.7],"hipR":[17.2,33.5],"knR":[36.3,175.5],"ftR":[55.5,319],"hipL":[-26,41.2],"knL":[-77.5,166.4],"ftL":[-88.6,317.8]},{"rootY":1.6,"hips":[0,0],"chest":[-10.2,-80.8],"neck":[-10.2,-80.8],"head":[-25.7,-148.3],"shR":[39.3,-103.7],"elR":[54.1,0.1],"haR":[56.1,68.6],"shL":[-60,-112.2],"elL":[-43.5,-18.8],"haL":[-63,49.1],"hipR":[18,33.7],"knR":[39,174.6],"ftR":[60.2,317],"hipL":[-26,41.2],"knL":[-75.1,166.5],"ftL":[-89.9,317.3]},{"rootY":2.9,"hips":[0,0],"chest":[-10,-80.7],"neck":[-10,-80.7],"head":[-25.1,-148.1],"shR":[40,-103.7],"elR":[54,-0.1],"haR":[54.8,68.5],"shL":[-60.6,-112],"elL":[-44.2,-19],"haL":[-63.6,48.9],"hipR":[19.2,33.2],"knR":[42.5,173.1],"ftR":[66,314.5],"hipL":[-25,41.8],"knL":[-72.4,167],"ftL":[-87.6,317.6]},{"rootY":3.7,"hips":[0,0],"chest":[-10.4,-80.6],"neck":[-10.4,-80.6],"head":[-24.9,-148.1],"shR":[39.9,-104],"elR":[53.2,-0.6],"haR":[53,67.9],"shL":[-61.8,-111.5],"elL":[-46,-18.5],"haL":[-65.2,49.5],"hipR":[20,33.4],"knR":[45.5,172],"ftR":[71.3,312.1],"hipL":[-24.9,41.9],"knL":[-69.5,167.9],"ftL":[-81.6,318.9]},{"rootY":4.1,"hips":[0,0],"chest":[-11.8,-80.6],"neck":[-11.8,-80.6],"head":[-26.1,-148.2],"shR":[39.2,-104.1],"elR":[52.6,-0.8],"haR":[51.4,67.6],"shL":[-64.1,-111.4],"elL":[-48.8,-18.3],"haL":[-67.7,49.7],"hipR":[20.7,33.5],"knR":[48.4,170.7],"ftR":[76.4,309.2],"hipL":[-25,41.9],"knL":[-67.1,169],"ftL":[-73.9,320.5]},{"rootY":3.8,"hips":[0,0],"chest":[-10.9,-80.5],"neck":[-10.9,-80.5],"head":[-25.4,-148.3],"shR":[40.2,-105.2],"elR":[53.3,-2.2],"haR":[51.8,66.1],"shL":[-63.9,-110.1],"elL":[-49.6,-16.6],"haL":[-67.8,51.6],"hipR":[20.8,34],"knR":[52.1,169.7],"ftR":[83.7,306.8],"hipL":[-25.5,41.6],"knL":[-61.2,170.2],"ftL":[-64.7,322]},{"rootY":2.2,"hips":[0,0],"chest":[-10.9,-80.7],"neck":[-10.9,-80.7],"head":[-25.6,-148.6],"shR":[40.9,-105.6],"elR":[54.6,-2.5],"haR":[52.5,65.6],"shL":[-64.6,-110.1],"elL":[-51.5,-16.1],"haL":[-69.1,52.2],"hipR":[21,34.2],"knR":[55.2,168.6],"ftR":[89.8,304.4],"hipL":[-25.7,41.4],"knL":[-57.4,172.3],"ftL":[-57,324.1]},{"rootY":1.5,"hips":[0,0],"chest":[-11.1,-80.8],"neck":[-11.1,-80.8],"head":[-25.5,-148.8],"shR":[41.3,-106.3],"elR":[54.6,-3.1],"haR":[52.6,64.9],"shL":[-65.5,-109.7],"elL":[-53.8,-15.1],"haL":[-71.2,53.3],"hipR":[20.8,34.4],"knR":[48.1,176.1],"ftR":[94.6,300.2],"hipL":[-26.2,41.1],"knL":[-56.5,173.9],"ftL":[-50.8,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[-11.1,-81],"neck":[-11.1,-81],"head":[-25.2,-149.2],"shR":[42,-107.3],"elR":[55.2,-3.9],"haR":[53.2,63.8],"shL":[-66.2,-109],"elL":[-56.6,-13.7],"haL":[-74.1,54.7],"hipR":[20.1,35.2],"knR":[41.1,181.8],"ftR":[97.5,293.5],"hipL":[-27.4,40.3],"knL":[-53.4,176],"ftL":[-43.6,327.5]},{"rootY":-1.4,"hips":[0,0],"chest":[-11.1,-81.2],"neck":[-11.1,-81.2],"head":[-24.8,-149.6],"shR":[42.9,-107.7],"elR":[55.9,-3.8],"haR":[53.6,63.1],"shL":[-67,-109],"elL":[-59.3,-13.2],"haL":[-77.8,54.9],"hipR":[18.8,35.9],"knR":[33,185.3],"ftR":[97.6,285.7],"hipL":[-28.9,39.2],"knL":[-49,177.7],"ftL":[-35.7,328.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-10.9,-81.3],"neck":[-10.9,-81.3],"head":[-24.6,-149.8],"shR":[44.1,-108.1],"elR":[56.6,-3.7],"haR":[53.9,62.6],"shL":[-67.5,-108.7],"elL":[-62.5,-12.5],"haL":[-82.5,55.2],"hipR":[17.5,36.3],"knR":[23.7,186.9],"ftR":[94.2,278.3],"hipL":[-30.3,38.2],"knL":[-43.7,179],"ftL":[-27.6,329.9]},{"rootY":-2.8,"hips":[0,0],"chest":[-10.3,-81.5],"neck":[-10.3,-81.5],"head":[-23.3,-150.1],"shR":[45.5,-108.3],"elR":[57.6,-3.5],"haR":[54.6,61.7],"shL":[-67.3,-109],"elL":[-64.9,-12],"haL":[-86.5,54.9],"hipR":[16.5,36.7],"knR":[15.8,186.7],"ftR":[90.9,270.3],"hipL":[-31.3,37.4],"knL":[-39.1,179.7],"ftL":[-19.6,330]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.9,-81.6],"neck":[-9.9,-81.6],"head":[-23.2,-150.3],"shR":[46.3,-108.5],"elR":[57.9,-3.5],"haR":[54.6,60.6],"shL":[-67.1,-108.9],"elL":[-67.5,-11.3],"haL":[-91.5,54.4],"hipR":[14.9,37.1],"knR":[4.8,185.3],"ftR":[83.5,267.4],"hipL":[-31.8,36.9],"knL":[-34.3,180.4],"ftL":[-13.1,330.6]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.4,-81.8],"neck":[-9.4,-81.8],"head":[-21.9,-150.6],"shR":[47.2,-108.4],"elR":[58.4,-3.3],"haR":[55.2,59.3],"shL":[-66.4,-109.4],"elL":[-69.2,-11.3],"haL":[-95.5,52.7],"hipR":[13.6,37.2],"knR":[-5.1,182.8],"ftR":[75.4,267.8],"hipL":[-32.8,36.1],"knL":[-29.8,180.3],"ftL":[-6.2,330.1]},{"rootY":-2.8,"hips":[0,0],"chest":[-9.1,-81.9],"neck":[-9.1,-81.9],"head":[-21.4,-150.9],"shR":[47.8,-108.4],"elR":[59.2,-3.1],"haR":[55.7,58.4],"shL":[-65.9,-109.7],"elL":[-71.1,-11.4],"haL":[-99.6,50.5],"hipR":[12.6,37.3],"knR":[-15.2,179.6],"ftR":[65.7,271],"hipL":[-33.1,35.7],"knL":[-27.2,180.2],"ftL":[0.3,329.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-21.9,-150.9],"shR":[47.4,-108.3],"elR":[59,-2.9],"haR":[55.4,57.9],"shL":[-65.5,-109.8],"elL":[-72.6,-11.3],"haL":[-102.8,48.2],"hipR":[11.8,37.4],"knR":[-25.1,175.8],"ftR":[54.8,276.8],"hipL":[-33.1,35.7],"knL":[-27.8,180.2],"ftL":[5.8,327.3]},{"rootY":0.8,"hips":[0,0],"chest":[-10.2,-81.9],"neck":[-10.2,-81.9],"head":[-22.6,-151],"shR":[46.3,-108.4],"elR":[58.4,-3.1],"haR":[55,57.4],"shL":[-66.3,-109.5],"elL":[-75.1,-10.9],"haL":[-106.9,45.8],"hipR":[10.2,37.7],"knR":[-34.9,172],"ftR":[40.7,284.6],"hipL":[-33.8,35],"knL":[-27.2,179.6],"ftL":[11.3,325]},{"rootY":1.6,"hips":[0,0],"chest":[-11.1,-81.9],"neck":[-11.1,-81.9],"head":[-23.4,-150.9],"shR":[44.8,-108.4],"elR":[57.5,-3],"haR":[54.8,57.6],"shL":[-66.7,-109.5],"elL":[-77,-11],"haL":[-109.8,43],"hipR":[9.3,38.2],"knR":[-42.5,169],"ftR":[24.1,294.7],"hipL":[-33.6,35],"knL":[-25.6,179.6],"ftL":[16.7,323.5]},{"rootY":3.1,"hips":[0,0],"chest":[-11.6,-81.8],"neck":[-11.6,-81.8],"head":[-24.6,-150.7],"shR":[43.6,-108.2],"elR":[57.6,-3],"haR":[55,57.8],"shL":[-66.5,-109.5],"elL":[-77.4,-10.9],"haL":[-110.9,40.7],"hipR":[9.9,38.6],"knR":[-46.4,166.2],"ftR":[4.7,304.4],"hipL":[-33.1,35.3],"knL":[-23.3,179.9],"ftL":[22.9,321.9]},{"rootY":3.7,"hips":[0,0],"chest":[-12.5,-81.6],"neck":[-12.5,-81.6],"head":[-25.8,-150.5],"shR":[41.9,-108.5],"elR":[56.6,-3.4],"haR":[54.9,58.3],"shL":[-66.9,-108.9],"elL":[-77.8,-10.3],"haL":[-111.9,39.5],"hipR":[8.8,38.8],"knR":[-49.9,165.5],"ftR":[-17.6,312.4],"hipL":[-33.3,34.9],"knL":[-18.2,179.2],"ftL":[28.6,321]},{"rootY":3.2,"hips":[0,0],"chest":[-13.2,-81.5],"neck":[-13.2,-81.5],"head":[-27,-150.2],"shR":[40.2,-108.7],"elR":[56.3,-3.8],"haR":[54.9,58.6],"shL":[-67.1,-108.6],"elL":[-77.4,-10],"haL":[-111.7,38.7],"hipR":[7.9,38.9],"knR":[-50.7,166.5],"ftR":[-40.4,318.1],"hipL":[-33.1,34.9],"knL":[-12.9,178.4],"ftL":[34.4,319.9]},{"rootY":4,"hips":[0,0],"chest":[-13.4,-81.5],"neck":[-13.4,-81.5],"head":[-28.1,-149.9],"shR":[39.2,-108.7],"elR":[56.3,-4.1],"haR":[55.6,59.1],"shL":[-66.7,-108.5],"elL":[-76.2,-9.9],"haL":[-110.5,38.4],"hipR":[7.3,39.3],"knR":[-50.9,167.5],"ftR":[-63.2,319.3],"hipL":[-32.8,34.8],"knL":[-5.7,176.7],"ftL":[40.7,318.5]},{"rootY":5.1,"hips":[0,0],"chest":[-14.1,-81.5],"neck":[-14.1,-81.5],"head":[-30.1,-149.6],"shR":[37.5,-108.4],"elR":[55.3,-4],"haR":[55.4,59.9],"shL":[-66.6,-108.9],"elL":[-75.2,-10.3],"haL":[-109.2,38.4],"hipR":[5.9,38.9],"knR":[-55.6,167.8],"ftR":[-76.8,318.4],"hipL":[-32.7,34.7],"knL":[5.7,172.3],"ftL":[46,316.3]},{"rootY":6.8,"hips":[0,0],"chest":[-13.9,-81.5],"neck":[-13.9,-81.5],"head":[-30.3,-149.5],"shR":[37.2,-107.6],"elR":[56.5,-3.5],"haR":[56.4,61.3],"shL":[-65.5,-109.8],"elL":[-72.5,-11.3],"haL":[-106.2,38.8],"hipR":[5.6,39.1],"knR":[-56.1,168.5],"ftR":[-82.1,318.4],"hipL":[-32.7,34.6],"knL":[8.9,170.7],"ftL":[52.5,313.1]},{"rootY":6.8,"hips":[0,0],"chest":[-12.4,-81.6],"neck":[-12.4,-81.6],"head":[-28.7,-149.6],"shR":[38.4,-107.9],"elR":[57.1,-3.9],"haR":[58.2,61.5],"shL":[-63.5,-109.6],"elL":[-68.7,-11.4],"haL":[-101.7,41.1],"hipR":[6.8,39.5],"knR":[-54.1,169.4],"ftR":[-80.2,319.3],"hipL":[-32.5,34.8],"knL":[12.3,169.2],"ftL":[59.2,309.8]},{"rootY":6.8,"hips":[0,0],"chest":[-11.3,-81.7],"neck":[-11.3,-81.7],"head":[-27.8,-149.6],"shR":[39.5,-106.8],"elR":[57.5,-2.7],"haR":[59.4,63.5],"shL":[-61.7,-111],"elL":[-64.5,-13.1],"haL":[-96.8,42.4],"hipR":[6.4,39.3],"knR":[-54.9,169.7],"ftR":[-76.1,320.2],"hipL":[-32.5,34.8],"knL":[15,167.4],"ftL":[64.7,306.2]},{"rootY":5.8,"hips":[0,0],"chest":[-10.6,-81.8],"neck":[-10.6,-81.8],"head":[-25.6,-149.7],"shR":[40.1,-106.4],"elR":[56.8,-2.2],"haR":[60,64.8],"shL":[-60.3,-111.5],"elL":[-60.1,-13.7],"haL":[-90.5,45.7],"hipR":[6.6,39],"knR":[-54.1,170.7],"ftR":[-70.1,321.4],"hipL":[-32,35.3],"knL":[7.9,171],"ftL":[66.1,303]},{"rootY":4.6,"hips":[0,0],"chest":[-9,-82],"neck":[-9,-82],"head":[-24,-149.7],"shR":[41.1,-105.4],"elR":[57.2,-1.4],"haR":[61,66],"shL":[-56.6,-112.8],"elL":[-53.9,-15],"haL":[-81.4,47.9],"hipR":[6.6,38.2],"knR":[-50.8,172.2],"ftR":[-61.6,322.5],"hipL":[-31.6,35.8],"knL":[-4.7,176],"ftL":[64,297.5]},{"rootY":3,"hips":[0,0],"chest":[-8.7,-82.1],"neck":[-8.7,-82.1],"head":[-25.3,-149.6],"shR":[41.5,-104.8],"elR":[56.7,-0.5],"haR":[60.9,67.3],"shL":[-56.3,-113.7],"elL":[-52,-15.9],"haL":[-76.2,49.7],"hipR":[6.3,37.3],"knR":[-48,174.2],"ftR":[-54.6,323.8],"hipL":[-31.7,36],"knL":[-19.8,179.2],"ftL":[56.6,289.9]},{"rootY":2,"hips":[0,0],"chest":[-8,-82.1],"neck":[-8,-82.1],"head":[-23,-150],"shR":[42.2,-105.7],"elR":[56.2,-1.1],"haR":[60.3,66.9],"shL":[-55.3,-112.8],"elL":[-50.2,-15.1],"haL":[-71.2,52.1],"hipR":[6.6,36.2],"knR":[-43.1,176.1],"ftR":[-47.7,324.9],"hipL":[-31.4,36.5],"knL":[-34.5,181],"ftL":[46.9,282.5]},{"rootY":0.7,"hips":[0,0],"chest":[-7,-82.2],"neck":[-7,-82.2],"head":[-22.2,-150],"shR":[43.4,-104.2],"elR":[56.8,0.6],"haR":[59.7,68.5],"shL":[-53.9,-114.4],"elL":[-48.8,-16.8],"haL":[-67.3,51.4],"hipR":[8.7,35.5],"knR":[-36.1,177.7],"ftR":[-40.8,326],"hipL":[-30.8,37.4],"knL":[-46.7,181.5],"ftL":[36,276.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-82.3],"neck":[-6.4,-82.3],"head":[-21,-150],"shR":[43.3,-107.2],"elR":[55.3,-2.1],"haR":[57,65.5],"shL":[-52.4,-111.4],"elL":[-46.9,-14.3],"haL":[-64.6,54.1],"hipR":[9.2,34.3],"knR":[-31.1,178.8],"ftR":[-34.4,326.4],"hipL":[-30.8,37.6],"knL":[-58.3,180.1],"ftL":[24.3,270.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-7.2,-82.4],"neck":[-7.2,-82.4],"head":[-18.8,-150],"shR":[42.7,-106.6],"elR":[54.1,-1.3],"haR":[54.1,64.8],"shL":[-53,-112.1],"elL":[-46.4,-15.1],"haL":[-63.6,53.4],"hipR":[9.7,34.1],"knR":[-27.6,179.9],"ftR":[-29.2,326.4],"hipL":[-31.3,37.3],"knL":[-68.2,177.4],"ftL":[10.3,267.9]},{"rootY":-2.1,"hips":[0,0],"chest":[-5.7,-82.5],"neck":[-5.7,-82.5],"head":[-19.5,-150],"shR":[44.2,-106.2],"elR":[55.7,-0.9],"haR":[52.2,64.7],"shL":[-51.5,-112.7],"elL":[-43.3,-15.8],"haL":[-60.3,52.6],"hipR":[12,33.6],"knR":[-19.7,180.8],"ftR":[-21.9,327],"hipL":[-31,37.6],"knL":[-73.5,175.1],"ftL":[-1.7,270]},{"rootY":-1.6,"hips":[0,0],"chest":[-5.6,-82.5],"neck":[-5.6,-82.5],"head":[-19.9,-150],"shR":[44.7,-106.5],"elR":[56.2,-1],"haR":[49.8,63],"shL":[-52,-112.5],"elL":[-42,-15.9],"haL":[-59.1,52.5],"hipR":[13.7,32.9],"knR":[-15.3,180.8],"ftR":[-16.1,326.1],"hipL":[-30.5,38],"knL":[-78.3,172.3],"ftL":[-16.7,274.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-5,-82.5],"neck":[-5,-82.5],"head":[-19,-150.1],"shR":[46.3,-106.2],"elR":[58.2,-0.8],"haR":[48.8,61.1],"shL":[-52.6,-112.8],"elL":[-41.3,-16.6],"haL":[-58.6,51.8],"hipR":[15.3,32.9],"knR":[-10.7,181.4],"ftR":[-9.9,325.6],"hipL":[-30.1,38.2],"knL":[-80.3,169.3],"ftL":[-31.4,281.6]},{"rootY":-1.1,"hips":[0,0],"chest":[-4.1,-82.5],"neck":[-4.1,-82.5],"head":[-17.8,-150],"shR":[47.7,-107],"elR":[59.9,-1.5],"haR":[47.9,57.8],"shL":[-52.8,-112],"elL":[-40.9,-16],"haL":[-58.2,52.4],"hipR":[17.3,32.6],"knR":[-5.2,181.5],"ftR":[-3.8,325.1],"hipL":[-29.4,38.7],"knL":[-79.7,166.9],"ftL":[-45.6,290.3]},{"rootY":-0.7,"hips":[0,0],"chest":[-4.2,-82.4],"neck":[-4.2,-82.4],"head":[-18,-149.9],"shR":[48.8,-106.7],"elR":[61.4,-1.2],"haR":[47,55.4],"shL":[-54.2,-112.2],"elL":[-41.9,-16.4],"haL":[-59.7,52],"hipR":[18.1,32.7],"knR":[-1.6,181.9],"ftR":[1.4,324.6],"hipL":[-29.3,38.6],"knL":[-78.1,165.3],"ftL":[-59.4,299.6]},{"rootY":-0.3,"hips":[0,0],"chest":[-3.8,-82.3],"neck":[-3.8,-82.3],"head":[-17.4,-149.7],"shR":[50,-106.4],"elR":[63.3,-1],"haR":[47.2,53.6],"shL":[-54.7,-112.4],"elL":[-42.8,-16.5],"haL":[-60.7,51.8],"hipR":[19.9,32.7],"knR":[3,182.1],"ftR":[6.2,324.3],"hipL":[-28.6,39],"knL":[-74.3,165.1],"ftL":[-70.7,308.2]},{"rootY":0.9,"hips":[0,0],"chest":[-4.4,-82.3],"neck":[-4.4,-82.3],"head":[-16.1,-149.7],"shR":[50,-106.9],"elR":[63.4,-1.5],"haR":[46.4,51.1],"shL":[-56.4,-111.9],"elL":[-45.4,-16.2],"haL":[-63.5,52],"hipR":[20.2,32.9],"knR":[5.3,181.9],"ftR":[10.1,322.9],"hipL":[-28.7,38.9],"knL":[-71.9,165.7],"ftL":[-80.9,314.4]},{"rootY":2.1,"hips":[0,0],"chest":[-4.2,-82.3],"neck":[-4.2,-82.3],"head":[-17.5,-149.5],"shR":[51,-108],"elR":[65.2,-2.7],"haR":[47.7,48.3],"shL":[-57.7,-110.6],"elL":[-47.7,-14.7],"haL":[-65.8,53.4],"hipR":[21.4,32.6],"knR":[10.3,181.2],"ftR":[15.1,321.8],"hipL":[-27.9,39.4],"knL":[-68.6,166.8],"ftL":[-87.1,317.1]},{"rootY":2.8,"hips":[0,0],"chest":[-4.1,-82.3],"neck":[-4.1,-82.3],"head":[-15.7,-149.6],"shR":[52.6,-107.4],"elR":[67.6,-2.3],"haR":[50.6,47.6],"shL":[-59.2,-111.2],"elL":[-50.6,-15.2],"haL":[-68.9,52.6],"hipR":[22.7,33.3],"knR":[14.9,181.6],"ftR":[21.1,321.6],"hipL":[-27.8,39.3],"knL":[-63.9,167.7],"ftL":[-86,317.9]},{"rootY":4.1,"hips":[0,0],"chest":[-4,-82.2],"neck":[-4,-82.2],"head":[-16.6,-149.1],"shR":[53.3,-108.8],"elR":[68.8,-3.7],"haR":[53.3,45.6],"shL":[-60.6,-109.6],"elL":[-53.5,-13.5],"haL":[-72.5,54.1],"hipR":[23.7,33.1],"knR":[18.4,180.6],"ftR":[26.1,319.8],"hipL":[-27.1,39.7],"knL":[-61.2,167.8],"ftL":[-81.1,318.3]},{"rootY":5,"hips":[0,0],"chest":[-4.5,-82.1],"neck":[-4.5,-82.1],"head":[-16.8,-149.5],"shR":[54.4,-108.4],"elR":[70.9,-3.4],"haR":[57.3,46.1],"shL":[-63.3,-110.1],"elL":[-57.5,-13.6],"haL":[-77.2,53.5],"hipR":[24.1,33.1],"knR":[21.3,179.7],"ftR":[31.2,317.1],"hipL":[-27.3,39.3],"knL":[-57.1,168.6],"ftL":[-71.1,319.8]},{"rootY":4.7,"hips":[0,0],"chest":[-4.7,-82.3],"neck":[-4.7,-82.3],"head":[-16.7,-149.4],"shR":[54.2,-108.4],"elR":[70.9,-3.5],"haR":[60.9,47.1],"shL":[-63.3,-110.4],"elL":[-59,-13.6],"haL":[-79.6,52.9],"hipR":[25.4,32.8],"knR":[23.5,179.1],"ftR":[36.1,313.9],"hipL":[-26.5,39.6],"knL":[-49.1,170.2],"ftL":[-61.3,321.3]},{"rootY":4,"hips":[0,0],"chest":[-5.6,-82.2],"neck":[-5.6,-82.2],"head":[-17.4,-149.1],"shR":[53.8,-109.7],"elR":[70.8,-5],"haR":[64.6,46.9],"shL":[-65.2,-108.4],"elL":[-62.5,-11.5],"haL":[-84.3,54.4],"hipR":[25.8,33.4],"knR":[21.7,181.5],"ftR":[39.3,309.4],"hipL":[-26.7,39.2],"knL":[-44.4,171.5],"ftL":[-55.3,322.2]},{"rootY":2.6,"hips":[0,0],"chest":[-7.7,-82.1],"neck":[-7.7,-82.1],"head":[-19.7,-148.7],"shR":[52,-109.7],"elR":[68.8,-5.1],"haR":[66.2,48],"shL":[-68.6,-108.5],"elL":[-67.5,-11.2],"haL":[-89.5,53.9],"hipR":[25.1,34.2],"knR":[16.3,184.1],"ftR":[37.4,301.5],"hipL":[-27.6,38.7],"knL":[-46,172.7],"ftL":[-53.4,323.4]},{"rootY":1.7,"hips":[0,0],"chest":[-7.6,-82],"neck":[-7.6,-82],"head":[-19.9,-148.5],"shR":[52.4,-110.9],"elR":[69.7,-6.4],"haR":[70,47.9],"shL":[-70.1,-107],"elL":[-71,-9.2],"haL":[-93.9,55.4],"hipR":[25.6,34.5],"knR":[14.7,184.7],"ftR":[34.4,290.5],"hipL":[-27.6,38.1],"knL":[-43.5,174.7],"ftL":[-48.7,325.3]},{"rootY":-0.6,"hips":[0,0],"chest":[-6.3,-82],"neck":[-6.3,-82],"head":[-19.1,-149.2],"shR":[54.2,-109.5],"elR":[72,-5],"haR":[74.8,50],"shL":[-69.3,-108.7],"elL":[-73.2,-10.5],"haL":[-96,53.4],"hipR":[24.6,35.5],"knR":[15,184.5],"ftR":[33.2,277.7],"hipL":[-29,36.4],"knL":[-40.2,176.7],"ftL":[-42.8,327.1]},{"rootY":-2.1,"hips":[0,0],"chest":[-8,-81.9],"neck":[-8,-81.9],"head":[-19.1,-148.5],"shR":[53.5,-112.5],"elR":[71.7,-8.3],"haR":[76.9,46.6],"shL":[-73.7,-104.8],"elL":[-81,-7],"haL":[-103.8,56.4],"hipR":[24.5,35.5],"knR":[13.6,181.3],"ftR":[28.1,264.9],"hipL":[-29.1,36.3],"knL":[-39.2,178.1],"ftL":[-41.4,328.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-9,-82.2],"neck":[-9,-82.2],"head":[-18.1,-147.9],"shR":[53.2,-113.3],"elR":[71.9,-9.3],"haR":[79.4,44.8],"shL":[-76.4,-104.5],"elL":[-85.8,-5.7],"haL":[-109.3,57.5],"hipR":[23.6,36.3],"knR":[16.6,178.9],"ftR":[26.2,254.2],"hipL":[-30.3,34.6],"knL":[-36.6,178.3],"ftL":[-37.1,328.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-9.9,-82.1],"neck":[-9.9,-82.1],"head":[-18,-147.3],"shR":[52.8,-112.8],"elR":[72.2,-9],"haR":[83.6,43.6],"shL":[-77.5,-104.8],"elL":[-90.3,-6.3],"haL":[-113.3,56.6],"hipR":[24.4,35.7],"knR":[16.2,173.9],"ftR":[22.3,246],"hipL":[-29.5,35.1],"knL":[-35.9,179.6],"ftL":[-37.1,330.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-10,-81.8],"neck":[-10,-81.8],"head":[-17.4,-148.7],"shR":[52.6,-112.2],"elR":[73.1,-8.6],"haR":[88.2,42.4],"shL":[-77.8,-105.4],"elL":[-92.1,-6.7],"haL":[-115.8,54.8],"hipR":[23.9,35.5],"knR":[15.2,169.5],"ftR":[18.5,242.3],"hipL":[-29.9,35.1],"knL":[-36.4,179.9],"ftL":[-37.6,330.3]},{"rootY":-4.4,"hips":[0,0],"chest":[-10.2,-81.8],"neck":[-10.2,-81.8],"head":[-17.4,-148.6],"shR":[53.1,-111.3],"elR":[75,-8.1],"haR":[94.3,40.5],"shL":[-77.8,-106],"elL":[-94.6,-8],"haL":[-117,53.5],"hipR":[23.6,36],"knR":[16.1,164.5],"ftR":[18.8,244.8],"hipL":[-30.2,34.6],"knL":[-35.2,179.6],"ftL":[-35,329.8]},{"rootY":-3.7,"hips":[0,0],"chest":[-10,-81.6],"neck":[-10,-81.6],"head":[-16.7,-148.6],"shR":[53.4,-111],"elR":[76.8,-8.3],"haR":[100.7,37.5],"shL":[-77.9,-106.1],"elL":[-97,-7.4],"haL":[-118.4,55.1],"hipR":[24.6,36],"knR":[16.6,159.3],"ftR":[18.2,250.3],"hipL":[-29.5,34.6],"knL":[-33.3,179.6],"ftL":[-31.9,328.7]},{"rootY":-3.4,"hips":[0,0],"chest":[-10.7,-81.4],"neck":[-10.7,-81.4],"head":[-16.5,-148.5],"shR":[52.9,-110.5],"elR":[78.1,-8.2],"haR":[106.7,34.4],"shL":[-78.6,-106.4],"elL":[-98.2,-8.5],"haL":[-119.7,47.7],"hipR":[24.2,36],"knR":[14.9,156.1],"ftR":[15.2,260.2],"hipL":[-29.6,35.4],"knL":[-34.9,180.4],"ftL":[-32,328.6]},{"rootY":-2.2,"hips":[0,0],"chest":[-11.1,-81.4],"neck":[-11.1,-81.4],"head":[-15.6,-148],"shR":[52.5,-110.3],"elR":[79.8,-8.6],"haR":[113.2,30.5],"shL":[-79.2,-106.3],"elL":[-99.8,-8.5],"haL":[-120.5,49.1],"hipR":[22.4,37.2],"knR":[16.1,154.9],"ftR":[12.8,272.1],"hipL":[-31.4,33.4],"knL":[-33.8,178.5],"ftL":[-28.7,325.9]},{"rootY":-1.7,"hips":[0,0],"chest":[-10.4,-81.4],"neck":[-10.4,-81.4],"head":[-14.4,-148.2],"shR":[53.3,-110.2],"elR":[82.7,-9.4],"haR":[120.8,26.1],"shL":[-78.5,-106.6],"elL":[-99.5,-8.9],"haL":[-119.9,48.7],"hipR":[23.5,37.5],"knR":[17.3,153.9],"ftR":[7,283.8],"hipL":[-30.4,34.2],"knL":[-32.1,179.3],"ftL":[-26.4,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.1,-81.1],"neck":[-10.1,-81.1],"head":[-13.7,-147.2],"shR":[53.7,-109.6],"elR":[86.1,-9.8],"haR":[128.6,22.1],"shL":[-78,-106.8],"elL":[-100,-9.3],"haL":[-118.7,47],"hipR":[23.4,38.1],"knR":[17.3,155.2],"ftR":[-2.4,294.1],"hipL":[-30.6,34.6],"knL":[-32.7,179.6],"ftL":[-25.4,324.3]},{"rootY":0.9,"hips":[0,0],"chest":[-8.9,-81.3],"neck":[-8.9,-81.3],"head":[-10.8,-147.8],"shR":[55,-109.4],"elR":[90.7,-10.8],"haR":[137.6,17.5],"shL":[-76.8,-107.3],"elL":[-99.6,-10.2],"haL":[-116.9,46.3],"hipR":[23.4,38.2],"knR":[18.3,159.5],"ftR":[-12.4,302.7],"hipL":[-30.6,34.2],"knL":[-31.1,179],"ftL":[-23,322.9]},{"rootY":1.4,"hips":[0,0],"chest":[-7.4,-81.4],"neck":[-7.4,-81.4],"head":[-7.2,-147.8],"shR":[57,-108.6],"elR":[96.4,-11.6],"haR":[147.4,13.3],"shL":[-74.8,-108.4],"elL":[-96.6,-11.7],"haL":[-113.4,41],"hipR":[21.6,39.5],"knR":[18.9,165.2],"ftR":[-19.9,310.5],"hipL":[-32.1,32.7],"knL":[-29.5,177.1],"ftL":[-20,320.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.4,-81.1],"neck":[-6.4,-81.1],"head":[-5.1,-147.4],"shR":[58.3,-107],"elR":[101.9,-11.9],"haR":[156.5,10.1],"shL":[-73.3,-109.4],"elL":[-97.9,-12.6],"haL":[-112.1,45],"hipR":[22.1,39.6],"knR":[17.1,168.8],"ftR":[-28.7,313.7],"hipL":[-31.6,33.3],"knL":[-30,177.5],"ftL":[-20.3,319.4]},{"rootY":3.2,"hips":[0,0],"chest":[-3.5,-81.1],"neck":[-3.5,-81.1],"head":[-0.1,-148],"shR":[61.6,-105.6],"elR":[109.8,-13],"haR":[166.4,7.1],"shL":[-69.7,-110.9],"elL":[-94.2,-15.2],"haL":[-109.2,38.8],"hipR":[21.7,40.4],"knR":[20.3,171.6],"ftR":[-30.3,315],"hipL":[-31.7,32.3],"knL":[-28.2,176.1],"ftL":[-19.2,315.6]},{"rootY":5.7,"hips":[0,0],"chest":[-0.4,-81.2],"neck":[-0.4,-81.2],"head":[3.8,-148.1],"shR":[64.9,-105.4],"elR":[116.5,-14.7],"haR":[175.2,3.9],"shL":[-66.2,-111.5],"elL":[-92,-16.7],"haL":[-108.4,36.9],"hipR":[23,40.1],"knR":[19.4,172.9],"ftR":[-32.3,315.5],"hipL":[-30.2,32.9],"knL":[-29.2,177.3],"ftL":[-20.9,311.4]},{"rootY":3.7,"hips":[0,0],"chest":[3.2,-80.6],"neck":[3.2,-80.6],"head":[10,-147.3],"shR":[68.7,-103.2],"elR":[124.7,-15],"haR":[184.7,3.3],"shL":[-61.3,-112.4],"elL":[-87.7,-17.7],"haL":[-104.8,37.7],"hipR":[25.8,39.2],"knR":[21.1,173.3],"ftR":[-29.7,315.8],"hipL":[-27.1,34.8],"knL":[-30,179.7],"ftL":[-24.8,309.5]},{"rootY":2.1,"hips":[0,0],"chest":[4.4,-80.6],"neck":[4.4,-80.6],"head":[14.6,-146.3],"shR":[69.8,-101.8],"elR":[128.4,-15.1],"haR":[189.3,3.2],"shL":[-58.6,-113.7],"elL":[-85.4,-20],"haL":[-102.3,38.9],"hipR":[27.3,38.6],"knR":[21.3,175.2],"ftR":[-29.5,317.9],"hipL":[-25,35.6],"knL":[-33.4,180.4],"ftL":[-33.6,302.7]},{"rootY":0.6,"hips":[0,0],"chest":[6.6,-80.3],"neck":[6.6,-80.3],"head":[19.2,-146],"shR":[71.4,-100.8],"elR":[133.1,-15.9],"haR":[194.7,3.4],"shL":[-55.4,-114.1],"elL":[-84.1,-20],"haL":[-99.3,43.3],"hipR":[28.3,38],"knR":[22.4,177.1],"ftR":[-29.3,319.5],"hipL":[-23.8,36.1],"knL":[-35.6,179.2],"ftL":[-44.9,294.9]},{"rootY":0.9,"hips":[0,0],"chest":[8.4,-80.1],"neck":[8.4,-80.1],"head":[22.9,-144.8],"shR":[72.8,-100.1],"elR":[137.3,-16.9],"haR":[198.9,3.9],"shL":[-52.4,-114.3],"elL":[-81.8,-21.4],"haL":[-95.1,43.5],"hipR":[29.1,37.8],"knR":[24.7,177.6],"ftR":[-28.5,319.3],"hipL":[-21.6,35.9],"knL":[-31.4,176.1],"ftL":[-52.9,285.4]},{"rootY":1.1,"hips":[0,0],"chest":[10.4,-79.1],"neck":[10.4,-79.1],"head":[29.7,-141.8],"shR":[74,-97.5],"elR":[140.5,-15.2],"haR":[202,8.2],"shL":[-48.6,-115],"elL":[-80.6,-23.1],"haL":[-94.2,41.6],"hipR":[29.8,37.6],"knR":[25,177.9],"ftR":[-27.8,320],"hipL":[-19.2,36.4],"knL":[-26.2,172.4],"ftL":[-59,274.2]},{"rootY":-1.5,"hips":[0,0],"chest":[14.5,-78.6],"neck":[14.5,-78.6],"head":[40.5,-140.9],"shR":[77.8,-97],"elR":[145.5,-15.2],"haR":[207,11.1],"shL":[-43.5,-114.4],"elL":[-78.4,-22.6],"haL":[-90.8,42.6],"hipR":[31.2,36.6],"knR":[25.1,178.9],"ftR":[-26,322.1],"hipL":[-15.9,37.8],"knL":[-15,168.1],"ftL":[-62.8,260.9]},{"rootY":-3.6,"hips":[0,0],"chest":[18.4,-78.1],"neck":[18.4,-78.1],"head":[45.2,-139.4],"shR":[80.4,-95.9],"elR":[149.2,-14.9],"haR":[209.9,15.1],"shL":[-37.7,-114.4],"elL":[-74.6,-24.3],"haL":[-84.8,40.8],"hipR":[31.5,36.2],"knR":[24.2,180.3],"ftR":[-23.9,324.7],"hipL":[-12.5,38],"knL":[-0.8,164.2],"ftL":[-62.3,248.2]},{"rootY":-9.7,"hips":[0,0],"chest":[19.9,-77.6],"neck":[19.9,-77.6],"head":[46.2,-139.2],"shR":[80,-93.5],"elR":[148.3,-12.2],"haR":[207.9,21],"shL":[-32.4,-115.6],"elL":[-72.9,-27.2],"haL":[-79,37.6],"hipR":[29.7,37.3],"knR":[20.9,183.1],"ftR":[-23,328.8],"hipL":[-11.8,37.8],"knL":[17.9,151.4],"ftL":[-64.2,236]},{"rootY":-7,"hips":[0,0],"chest":[24.8,-76.5],"neck":[24.8,-76.5],"head":[50.8,-138.7],"shR":[83.7,-92.1],"elR":[150.6,-9.9],"haR":[210.6,23.1],"shL":[-24.4,-114.3],"elL":[-68.5,-27.3],"haL":[-70.8,36.6],"hipR":[30.3,36.2],"knR":[24.3,182.1],"ftR":[-19.3,327.9],"hipL":[-8.2,38.7],"knL":[32.2,145.4],"ftL":[-51.7,228.8]},{"rootY":-9.9,"hips":[0,0],"chest":[27.4,-75.4],"neck":[27.4,-75.4],"head":[56.8,-136.3],"shR":[83.9,-90],"elR":[149.3,-6.3],"haR":[209.3,25.5],"shL":[-17,-113.7],"elL":[-65,-27.3],"haL":[-62.5,37],"hipR":[29.6,36],"knR":[23.6,182.5],"ftR":[-16.7,329.2],"hipL":[-5.8,38.8],"knL":[53.7,133.5],"ftL":[-40.4,222.9]},{"rootY":-9.6,"hips":[0,0],"chest":[30.4,-74.3],"neck":[30.4,-74.3],"head":[60.6,-135.2],"shR":[85.4,-89.5],"elR":[151.3,-6.2],"haR":[210.8,26.1],"shL":[-11.7,-111.7],"elL":[-62.3,-26.1],"haL":[-53.8,36.1],"hipR":[27.7,37],"knR":[26.1,183.5],"ftR":[-14.2,330.3],"hipL":[-4.3,38],"knL":[70.7,122.2],"ftL":[-23.1,219.2]},{"rootY":-12.4,"hips":[0,0],"chest":[33.8,-72.9],"neck":[33.8,-72.9],"head":[66,-133.2],"shR":[84.5,-86.5],"elR":[151.3,-3.9],"haR":[210.4,28.3],"shL":[-2.6,-111.7],"elL":[-54.8,-25.9],"haL":[-37.4,34.9],"hipR":[27.9,35.7],"knR":[16.9,183.8],"ftR":[-12,332.7],"hipL":[-1.7,39.2],"knL":[89.3,110.2],"ftL":[-5.7,217.4]},{"rootY":-12.1,"hips":[0,0],"chest":[36.1,-72.2],"neck":[36.1,-72.2],"head":[70.2,-132.7],"shR":[83.3,-85.9],"elR":[150.2,-3.5],"haR":[209.5,28.8],"shL":[4.6,-110.5],"elL":[-47.3,-23.9],"haL":[-22.4,35.1],"hipR":[26.1,36],"knR":[17.4,184.6],"ftR":[-9.6,333.9],"hipL":[-0.2,39.3],"knL":[103.2,102.5],"ftL":[15.5,218.7]},{"rootY":-11.3,"hips":[0,0],"chest":[38.3,-71.9],"neck":[38.3,-71.9],"head":[73.6,-132],"shR":[83.4,-83.7],"elR":[149.5,-0.9],"haR":[209.1,31.2],"shL":[10,-111.8],"elL":[-37.5,-22.9],"haL":[-4.2,32.4],"hipR":[26.4,33.5],"knR":[12.8,182.3],"ftR":[-7.4,332.3],"hipL":[3.9,40.8],"knL":[115.2,95],"ftL":[36.2,219.8]},{"rootY":-12.2,"hips":[0,0],"chest":[39.6,-71.4],"neck":[39.6,-71.4],"head":[74.8,-132.2],"shR":[81,-84.3],"elR":[146.1,-0.9],"haR":[206.3,30.6],"shL":[14.9,-110.2],"elL":[-26.7,-19.9],"haL":[16.9,30.3],"hipR":[24,34.6],"knR":[8.3,183.6],"ftR":[-7.6,334.1],"hipL":[3.7,40.8],"knL":[122.3,91.9],"ftL":[51.9,223.7]},{"rootY":-11.6,"hips":[0,0],"chest":[40.7,-71.2],"neck":[40.7,-71.2],"head":[75.9,-132.3],"shR":[81.2,-83.1],"elR":[145.8,0.8],"haR":[206,31.6],"shL":[17.6,-110.8],"elL":[-10.6,-16.6],"haL":[41.4,25.3],"hipR":[23.8,33.8],"knR":[17.1,183.2],"ftR":[-8,332.9],"hipL":[4.6,41.4],"knL":[127.4,91.2],"ftL":[64.5,227.9]},{"rootY":-12.2,"hips":[0,0],"chest":[40.7,-70.8],"neck":[40.7,-70.8],"head":[76.8,-131.8],"shR":[78.9,-81.8],"elR":[143,2.6],"haR":[203.6,32.7],"shL":[20,-111.2],"elL":[5.6,-15.9],"haL":[65,17.6],"hipR":[22.9,37.7],"knR":[28.7,186.7],"ftR":[-8.8,334.2],"hipL":[3.6,37.2],"knL":[128.2,92.9],"ftL":[72.5,233.1]},{"rootY":-12.8,"hips":[0,0],"chest":[41.3,-70.3],"neck":[41.3,-70.3],"head":[76.5,-132.1],"shR":[76.6,-79.6],"elR":[140,5.4],"haR":[200.9,35],"shL":[23.1,-112.4],"elL":[23.2,-17.3],"haL":[88.5,6.8],"hipR":[22.8,38.5],"knR":[31.6,187.5],"ftR":[-9.6,334.1],"hipL":[3.6,35.8],"knL":[129,95.6],"ftL":[77,237.6]},{"rootY":-12.3,"hips":[0,0],"chest":[41.6,-70.8],"neck":[41.6,-70.8],"head":[76.8,-132.7],"shR":[77.8,-86.2],"elR":[139.5,-0.1],"haR":[200.5,29.5],"shL":[22.4,-107],"elL":[37.2,-14.7],"haL":[106.2,-0.8],"hipR":[21.9,38],"knR":[29.8,187.5],"ftR":[-11.2,334.1],"hipL":[5.8,36.4],"knL":[130.6,100.9],"ftL":[74.2,241]},{"rootY":-11.3,"hips":[0,0],"chest":[42.4,-70.2],"neck":[42.4,-70.2],"head":[75.7,-133.2],"shR":[71.9,-83.4],"elR":[131.7,4.3],"haR":[193.3,32.3],"shL":[30.4,-108.5],"elL":[58.7,-20.7],"haL":[129,-14.4],"hipR":[21.1,35.7],"knR":[23.9,185.7],"ftR":[-13.7,333.1],"hipL":[7.7,39.2],"knL":[132.9,103.3],"ftL":[69.9,240.4]},{"rootY":-11.4,"hips":[0,0],"chest":[43.2,-69.9],"neck":[43.2,-69.9],"head":[77.1,-132.7],"shR":[71.2,-82.8],"elR":[127.1,7.6],"haR":[189.3,34.4],"shL":[32.9,-108.5],"elL":[75.7,-25.5],"haL":[146,-26],"hipR":[19.7,33],"knR":[14.6,183.2],"ftR":[-16.3,332.2],"hipL":[8.5,42],"knL":[134.6,104.5],"ftL":[66.1,239.1]},{"rootY":-10.5,"hips":[0,0],"chest":[44.3,-69.3],"neck":[44.3,-69.3],"head":[78.1,-132.1],"shR":[70.6,-86],"elR":[124.4,5.7],"haR":[186.8,31.5],"shL":[36,-103.9],"elL":[90.9,-27.6],"haL":[160.3,-30.9],"hipR":[18.5,34.1],"knR":[18.1,184.3],"ftR":[-19.8,331.8],"hipL":[7.7,41.7],"knL":[133.4,106.1],"ftL":[64.1,239.8]},{"rootY":-11.8,"hips":[0,0],"chest":[45.9,-68.4],"neck":[45.9,-68.4],"head":[79,-131.5],"shR":[71.3,-85.3],"elR":[119.9,9.1],"haR":[182.9,34.1],"shL":[38.4,-102.8],"elL":[104.1,-33.8],"haL":[173.1,-38.1],"hipR":[17.5,35.1],"knR":[10.7,185.4],"ftR":[-22.2,334],"hipL":[7.6,41.2],"knL":[133.4,106.6],"ftL":[61.5,238.7]},{"rootY":-13,"hips":[0,0],"chest":[46.6,-67.8],"neck":[46.6,-67.8],"head":[79.9,-130.7],"shR":[70.1,-86],"elR":[114.4,10.4],"haR":[177.4,35.1],"shL":[41.8,-100.7],"elL":[114.6,-38.2],"haL":[183.3,-41.3],"hipR":[17.2,33.6],"knR":[-3.8,182.8],"ftR":[-25,333.5],"hipL":[7.3,42.5],"knL":[133,106.2],"ftL":[61,237.9]},{"rootY":-17.9,"hips":[0,0],"chest":[47.8,-66.8],"neck":[47.8,-66.8],"head":[80.7,-129.9],"shR":[70.3,-83.8],"elR":[109.7,14.6],"haR":[172.7,40.2],"shL":[44.5,-100.6],"elL":[123.2,-43.7],"haL":[192.2,-43.5],"hipR":[16,36.4],"knR":[-5.3,185.6],"ftR":[-26.9,336.2],"hipL":[6.7,40.6],"knL":[129.3,112],"ftL":[55.8,242.2]},{"rootY":-22.1,"hips":[0,0],"chest":[49.7,-65.7],"neck":[49.7,-65.7],"head":[82.4,-128.9],"shR":[72.8,-83.6],"elR":[106.6,16.7],"haR":[168.9,44.2],"shL":[45.9,-98.5],"elL":[128.4,-45.4],"haL":[197.9,-41.4],"hipR":[14.6,35.1],"knR":[-6.9,184.2],"ftR":[-28.6,334.9],"hipL":[6.1,42.3],"knL":[125.8,119.5],"ftL":[49,248.3]},{"rootY":-25.5,"hips":[0,0],"chest":[51.2,-64.3],"neck":[51.2,-64.3],"head":[83.2,-127.7],"shR":[71.9,-84.2],"elR":[101.6,17.1],"haR":[162.8,47.4],"shL":[50.6,-94.7],"elL":[135.3,-42.9],"haL":[205,-35.2],"hipR":[13.1,35.4],"knR":[-5.1,185],"ftR":[-23.5,336.1],"hipL":[6.7,42.2],"knL":[122.5,126.2],"ftL":[43.5,253.8]},{"rootY":-29.5,"hips":[0,0],"chest":[52.7,-63.4],"neck":[52.7,-63.4],"head":[84.9,-126.6],"shR":[74.1,-81.8],"elR":[99.8,20.3],"haR":[159.6,53.2],"shL":[52.6,-95.1],"elL":[137,-43],"haL":[206.2,-30.9],"hipR":[11.4,31.6],"knR":[-5.6,181.3],"ftR":[-22.7,332.6],"hipL":[4.9,45.2],"knL":[118.6,132.5],"ftL":[38.7,259.6]},{"rootY":-39.2,"hips":[0,0],"chest":[54.2,-62.1],"neck":[54.2,-62.1],"head":[86.4,-125.1],"shR":[75.2,-81],"elR":[96.8,21.9],"haR":[155.3,57.2],"shL":[55.2,-93],"elL":[137.9,-38.4],"haL":[206.5,-22.9],"hipR":[9.8,33.9],"knR":[13.9,184.5],"ftR":[-25.9,331.3],"hipL":[4.2,44.2],"knL":[111.8,140.3],"ftL":[33.5,268.9]},{"rootY":-47.7,"hips":[0,0],"chest":[56,-60.2],"neck":[56,-60.2],"head":[87.9,-123.1],"shR":[76.4,-78.9],"elR":[95.7,24.4],"haR":[153.2,61.9],"shL":[59,-90.5],"elL":[137.6,-31.7],"haL":[205.6,-15.9],"hipR":[9,36.6],"knR":[33.9,185.2],"ftR":[-28.3,323.9],"hipL":[5.7,42.2],"knL":[105.5,147.1],"ftL":[30.3,277.6]},{"rootY":-56.4,"hips":[0,0],"chest":[58.7,-57.7],"neck":[58.7,-57.7],"head":[90.6,-120.5],"shR":[81.3,-74.7],"elR":[97.8,28.9],"haR":[153.9,68.5],"shL":[61.2,-88.9],"elL":[134.1,-24.9],"haL":[201.5,-9.3],"hipR":[11.5,36.7],"knR":[49,182.6],"ftR":[-29,313.1],"hipL":[6.5,41.5],"knL":[98.8,153.3],"ftL":[28.1,286.3]},{"rootY":-64.7,"hips":[0,0],"chest":[59.2,-56.9],"neck":[59.2,-56.9],"head":[91.9,-119.1],"shR":[80.9,-73],"elR":[95.8,30.8],"haR":[150.4,72.8],"shL":[64.2,-88.2],"elL":[132.6,-18.7],"haL":[199.6,-2.6],"hipR":[9.5,37.3],"knR":[66.3,176.8],"ftR":[-23.6,299.6],"hipL":[5.6,41.5],"knL":[91.4,158.5],"ftL":[26.8,294.6]},{"rootY":-72.9,"hips":[0,0],"chest":[58.8,-56.7],"neck":[58.8,-56.7],"head":[92.6,-118],"shR":[78.2,-65.8],"elR":[92.2,37.8],"haR":[145.3,81.7],"shL":[69.1,-92.9],"elL":[134.4,-19.6],"haL":[200.7,-1.9],"hipR":[9.6,37.3],"knR":[81.7,169.6],"ftR":[-20.6,282.3],"hipL":[5,41.6],"knL":[83,163.9],"ftL":[24.9,302.9]},{"rootY":-80.1,"hips":[0,0],"chest":[59.4,-55.1],"neck":[59.4,-55.1],"head":[94.2,-115.6],"shR":[76.6,-60.9],"elR":[89.7,42.3],"haR":[141.6,87.6],"shL":[73.1,-93.4],"elL":[136,-16.7],"haL":[202.2,2.7],"hipR":[8.4,37.2],"knR":[97.4,158.7],"ftR":[-12,264.5],"hipL":[5.9,41.7],"knL":[76.5,168.5],"ftL":[23.8,309.8]},{"rootY":-85.7,"hips":[0,0],"chest":[59.2,-55.3],"neck":[59.2,-55.3],"head":[94.6,-115.3],"shR":[77.8,-59.2],"elR":[90.3,44.1],"haR":[141.1,90.8],"shL":[72.3,-94.9],"elL":[132.7,-16.9],"haL":[198,4.3],"hipR":[7.3,37.5],"knR":[110.6,147],"ftR":[-4,247.1],"hipL":[4.6,41.9],"knL":[68.7,172],"ftL":[22.4,315.3]},{"rootY":-91.3,"hips":[0,0],"chest":[59,-55.1],"neck":[59,-55.1],"head":[94.5,-115.1],"shR":[76.8,-59],"elR":[89.7,44.4],"haR":[139.3,92.5],"shL":[73.3,-94.3],"elL":[131.4,-14.8],"haL":[195.7,8.3],"hipR":[6.6,38],"knR":[121.8,135],"ftR":[3.5,230.8],"hipL":[4.5,41.5],"knL":[61.4,174.9],"ftL":[19.6,320]},{"rootY":-96.9,"hips":[0,0],"chest":[59.5,-54.4],"neck":[59.5,-54.4],"head":[95.6,-114.1],"shR":[77.5,-56],"elR":[89.5,47],"haR":[138.7,95.3],"shL":[73.4,-95.8],"elL":[129.8,-14.7],"haL":[193.5,10.1],"hipR":[7.4,37],"knR":[130.9,123.3],"ftR":[13.2,219.8],"hipL":[5,42.2],"knL":[54.2,178.6],"ftL":[17.5,325.3]},{"rootY":-99.1,"hips":[0,0],"chest":[59,-54.7],"neck":[59,-54.7],"head":[95.3,-114.4],"shR":[76.3,-56.2],"elR":[86.4,46.2],"haR":[135.8,93.9],"shL":[73.9,-96],"elL":[129.3,-13.6],"haL":[192.7,12.7],"hipR":[5.8,38.3],"knR":[138.5,109.5],"ftR":[25.2,210.9],"hipL":[4.4,41.3],"knL":[49.2,179.2],"ftL":[16.8,326.7]},{"rootY":-102.9,"hips":[0,0],"chest":[59.3,-54.5],"neck":[59.3,-54.5],"head":[96.1,-113.6],"shR":[76.2,-56.3],"elR":[84.7,45.8],"haR":[135,91.8],"shL":[74.9,-95.2],"elL":[128.8,-11.7],"haL":[191.4,15.9],"hipR":[6.3,37.2],"knR":[143,100.6],"ftR":[35.6,208.2],"hipL":[4.4,42.2],"knL":[44.3,181.5],"ftL":[14.7,329.8]},{"rootY":-103.7,"hips":[0,0],"chest":[58.2,-55.8],"neck":[58.2,-55.8],"head":[94.5,-115.5],"shR":[77.4,-58.2],"elR":[82.5,41.8],"haR":[133.9,84.6],"shL":[71.7,-96.1],"elL":[124.1,-11.6],"haL":[186.4,16.3],"hipR":[6,38.8],"knR":[146.2,93.9],"ftR":[46.2,208.3],"hipL":[3.5,40.9],"knL":[40.4,181],"ftL":[12.2,329.5]},{"rootY":-108.2,"hips":[0,0],"chest":[59.8,-54.5],"neck":[59.8,-54.5],"head":[96.6,-113.9],"shR":[75.4,-58.7],"elR":[81.1,39.9],"haR":[135.1,77],"shL":[76.8,-92.9],"elL":[126.8,-7.2],"haL":[188.3,21.1],"hipR":[8.3,35],"knR":[146.9,94.2],"ftR":[54.7,215],"hipL":[5.2,43.5],"knL":[37.4,184.8],"ftL":[9.8,333.6]},{"rootY":-108.9,"hips":[0,0],"chest":[59.1,-55.4],"neck":[59.1,-55.4],"head":[96.5,-114.4],"shR":[75.3,-62.6],"elR":[80.7,33.3],"haR":[136.6,62.2],"shL":[75.7,-90.9],"elL":[124.3,-4.2],"haL":[185.9,24.2],"hipR":[8.3,35.3],"knR":[146.8,94.6],"ftR":[62.1,220.7],"hipL":[4.9,43.3],"knL":[35.2,185.1],"ftL":[7,333.8]},{"rootY":-107.4,"hips":[0,0],"chest":[57.6,-56.8],"neck":[57.6,-56.8],"head":[95.7,-115.2],"shR":[72.9,-65.7],"elR":[84.4,30.9],"haR":[143.1,49.5],"shL":[74.9,-90.9],"elL":[121.8,-3.2],"haL":[183.6,25],"hipR":[8.2,36.7],"knR":[146.5,96.5],"ftR":[65.9,225.2],"hipL":[4.5,42.4],"knL":[36,183.9],"ftL":[5.1,331.8]},{"rootY":-105.4,"hips":[0,0],"chest":[56.7,-57.6],"neck":[56.7,-57.6],"head":[95.4,-115.8],"shR":[73.6,-67.5],"elR":[91.2,27.3],"haR":[150.3,35.7],"shL":[71.9,-91.3],"elL":[116.8,-2.8],"haL":[178.1,25.3],"hipR":[6.7,38.5],"knR":[145,98.3],"ftR":[67.6,229],"hipL":[5.2,40.9],"knL":[37.4,182.3],"ftL":[2.8,329.4]},{"rootY":-104.8,"hips":[0,0],"chest":[56.2,-58.5],"neck":[56.2,-58.5],"head":[95.4,-116],"shR":[74.3,-69.9],"elR":[97.4,19.1],"haR":[155.1,19.7],"shL":[69.9,-91.1],"elL":[113.1,-2],"haL":[174.1,26.2],"hipR":[6.8,38.3],"knR":[142.6,103.2],"ftR":[63.9,233.2],"hipL":[4.9,41.1],"knL":[38.4,182.2],"ftL":[0.7,328.5]},{"rootY":-105,"hips":[0,0],"chest":[56.3,-58.8],"neck":[56.3,-58.8],"head":[95.4,-116.5],"shR":[75.4,-72.3],"elR":[124.4,11.7],"haR":[181.6,3.8],"shL":[68.9,-89.5],"elL":[109.7,0.4],"haL":[170.6,28.2],"hipR":[7.6,38.6],"knR":[140.5,109.1],"ftR":[58.4,237],"hipL":[5.6,40.6],"knL":[38.1,181.9],"ftL":[-3,327.3]},{"rootY":-105.5,"hips":[0,0],"chest":[56,-59.4],"neck":[56,-59.4],"head":[95.9,-116.2],"shR":[74.6,-75.4],"elR":[147.9,-2.5],"haR":[203.3,-24.2],"shL":[69.1,-87.5],"elL":[108,3.5],"haL":[169.1,31.6],"hipR":[7.1,38.6],"knR":[138.5,111.9],"ftR":[54.5,238.5],"hipL":[4.7,40.8],"knL":[36.9,182.2],"ftL":[-5.7,327.3]},{"rootY":-106.5,"hips":[0,0],"chest":[56,-59.5],"neck":[56,-59.5],"head":[95.5,-116.6],"shR":[76.1,-77.4],"elR":[160,-14.1],"haR":[214.4,-47.8],"shL":[67.7,-85.6],"elL":[104.2,6.2],"haL":[165.3,34.3],"hipR":[6.3,38.7],"knR":[136.4,113.7],"ftR":[51.1,239.7],"hipL":[4.3,40.9],"knL":[33.7,182.9],"ftL":[-8.5,328.3]},{"rootY":-108.1,"hips":[0,0],"chest":[56.4,-58.9],"neck":[56.4,-58.9],"head":[96.2,-115.5],"shR":[70.4,-77.2],"elR":[158,-19.5],"haR":[217.4,-51.5],"shL":[74.5,-84.6],"elL":[106.5,9],"haL":[167.2,38],"hipR":[6.1,38.7],"knR":[134.1,117.1],"ftR":[47.4,242],"hipL":[4.5,40.9],"knL":[28.4,184],"ftL":[-11.1,330]},{"rootY":-112.9,"hips":[0,0],"chest":[57.6,-57.9],"neck":[57.6,-57.9],"head":[97.7,-113.8],"shR":[72.5,-78.1],"elR":[158.9,-19.8],"haR":[218,-48.1],"shL":[75.1,-81.4],"elL":[103.2,12.9],"haL":[163.2,43.1],"hipR":[5.9,38.5],"knR":[130,122.6],"ftR":[42.7,247.2],"hipL":[4.3,41.1],"knL":[23.2,184.8],"ftL":[-15.5,331.3]},{"rootY":-118.9,"hips":[0,0],"chest":[58.7,-56.8],"neck":[58.7,-56.8],"head":[99,-112.1],"shR":[73.6,-78.9],"elR":[134.5,-3.5],"haR":[198.2,-18.8],"shL":[76.3,-78.2],"elL":[100.1,17.4],"haL":[159.4,49.3],"hipR":[5.4,38.2],"knR":[124.8,128.6],"ftR":[38.3,253.7],"hipL":[2.7,41.6],"knL":[18.5,185.9],"ftL":[-15.2,333.8]},{"rootY":-125.1,"hips":[0,0],"chest":[60.1,-55.5],"neck":[60.1,-55.5],"head":[100,-111],"shR":[79.5,-79.1],"elR":[140.2,-1.2],"haR":[204,-17.2],"shL":[73,-75.2],"elL":[93.5,20.5],"haL":[151.7,54.5],"hipR":[4.4,38.7],"knR":[118.1,136],"ftR":[33.4,262.5],"hipL":[1.5,41.4],"knL":[17,185.6],"ftL":[-12.9,334.5]},{"rootY":-132,"hips":[0,0],"chest":[61.5,-53.7],"neck":[61.5,-53.7],"head":[100.4,-110],"shR":[84.3,-77.5],"elR":[139.7,3.5],"haR":[203.4,-11],"shL":[70.4,-73.4],"elL":[88.1,22.7],"haL":[144.6,59.3],"hipR":[4.1,37.7],"knR":[109.9,142.6],"ftR":[25.9,269.5],"hipL":[0.3,42.3],"knL":[19.7,186.1],"ftL":[-12.7,334.4]},{"rootY":-137.9,"hips":[0,0],"chest":[63.6,-50.9],"neck":[63.6,-50.9],"head":[102.5,-106.6],"shR":[80.5,-75.3],"elR":[132.5,7.7],"haR":[196.1,-4.3],"shL":[77.9,-70.7],"elL":[92.2,25.7],"haL":[147,64.6],"hipR":[4.7,37.6],"knR":[105,147.9],"ftR":[26.1,277.9],"hipL":[0.4,42.4],"knL":[28.3,184.4],"ftL":[-14.1,330.2]},{"rootY":-146.7,"hips":[0,0],"chest":[65.3,-48.6],"neck":[65.3,-48.6],"head":[104.4,-103.7],"shR":[76.7,-73.8],"elR":[123.1,11.7],"haR":[186.7,1.2],"shL":[85.4,-67.6],"elL":[96.8,29.8],"haL":[150.5,70.7],"hipR":[6.1,37.2],"knR":[98.7,154.3],"ftR":[23.5,286.5],"hipL":[0.9,42.6],"knL":[39.2,182.1],"ftL":[-20,321.9]},{"rootY":-152.8,"hips":[0,0],"chest":[65.6,-47.7],"neck":[65.6,-47.7],"head":[104.4,-103],"shR":[76,-73.2],"elR":[120.1,15.7],"haR":[184.6,6],"shL":[87.9,-65.6],"elL":[98,32.3],"haL":[150.7,75],"hipR":[5.5,37.6],"knR":[93.8,158],"ftR":[23.5,292.7],"hipL":[0.1,42.4],"knL":[53.3,176.3],"ftL":[-22.2,307.8]},{"rootY":-159.8,"hips":[0,0],"chest":[66.8,-46.4],"neck":[66.8,-46.4],"head":[105.7,-101.6],"shR":[79,-72.8],"elR":[119.3,18.9],"haR":[184.2,10.4],"shL":[88.2,-62.7],"elL":[97,35.4],"haL":[149.3,78.8],"hipR":[7.2,37],"knR":[88.7,162.3],"ftR":[22.6,299],"hipL":[0.4,42.7],"knL":[68.2,168.7],"ftL":[-22.3,289.8]},{"rootY":-165.7,"hips":[0,0],"chest":[68.3,-44.4],"neck":[68.3,-44.4],"head":[107.7,-98.5],"shR":[85.4,-69.7],"elR":[122.5,24],"haR":[187.6,16.9],"shL":[85.6,-60.9],"elL":[93.7,35.8],"haL":[145.5,78.9],"hipR":[8.8,36.2],"knR":[82.9,166],"ftR":[22.7,305.1],"hipL":[2.3,43],"knL":[83.5,158.3],"ftL":[-17.3,269.4]},{"rootY":-171.2,"hips":[0,0],"chest":[68.7,-43.8],"neck":[68.7,-43.8],"head":[108,-98.4],"shR":[88.3,-69.3],"elR":[123.2,25.6],"haR":[188.3,19],"shL":[84.3,-59.1],"elL":[91.3,37.2],"haL":[143.7,79.2],"hipR":[8.2,36.9],"knR":[77.7,169.4],"ftR":[22.5,310.6],"hipL":[2,42.5],"knL":[97.5,145.8],"ftL":[-11,249]},{"rootY":-175.8,"hips":[0,0],"chest":[69.7,-42.5],"neck":[69.7,-42.5],"head":[108.8,-96.7],"shR":[94,-65.4],"elR":[125.5,30.3],"haR":[190.2,24.5],"shL":[82.2,-58.8],"elL":[87.4,36.6],"haL":[141.6,74.6],"hipR":[9.9,36],"knR":[72.6,171.7],"ftR":[21.6,314.2],"hipL":[2.7,43],"knL":[108.5,132.1],"ftL":[-2.8,231.7]},{"rootY":-180.8,"hips":[0,0],"chest":[70.6,-40.8],"neck":[70.6,-40.8],"head":[110.6,-93.9],"shR":[94.3,-62.2],"elR":[123,33.9],"haR":[187.4,28],"shL":[86,-56.5],"elL":[87.8,37.7],"haL":[143.6,69.2],"hipR":[11.7,35.7],"knR":[67.5,174.6],"ftR":[19.4,318.3],"hipL":[4.7,42.7],"knL":[116.4,119.7],"ftL":[8.4,219.9]},{"rootY":-182.4,"hips":[0,0],"chest":[70.7,-40.2],"neck":[70.7,-40.2],"head":[111.3,-92.3],"shR":[95.4,-59.5],"elR":[121.5,37.4],"haR":[185.6,30.7],"shL":[87.2,-55.7],"elL":[88.8,38.6],"haL":[147.7,60.7],"hipR":[11.3,35.9],"knR":[63.5,176],"ftR":[18.5,320.8],"hipL":[4.8,42.5],"knL":[125.1,107.1],"ftL":[19.6,211.5]},{"rootY":-184.7,"hips":[0,0],"chest":[71,-39.4],"neck":[71,-39.4],"head":[113,-89.4],"shR":[97.3,-57.1],"elR":[120.9,40.7],"haR":[184.9,32.7],"shL":[87.6,-54.4],"elL":[91,38.5],"haL":[150.8,52.1],"hipR":[12.3,35.5],"knR":[59.2,177.6],"ftR":[16.5,322.9],"hipL":[5.2,42.6],"knL":[129.6,97.1],"ftL":[32,208.8]},{"rootY":-185.7,"hips":[0,0],"chest":[71.5,-38.2],"neck":[71.5,-38.2],"head":[115,-87.4],"shR":[99.2,-54.5],"elR":[119.4,44.2],"haR":[183.3,35.3],"shL":[87.8,-52.9],"elL":[94.8,40.2],"haL":[157.1,45.8],"hipR":[12.6,35.4],"knR":[56.9,178.4],"ftR":[14.5,323.8],"hipL":[5.9,42.5],"knL":[133.5,91.9],"ftL":[45.1,211.3]},{"rootY":-187,"hips":[0,0],"chest":[71.9,-36.9],"neck":[71.9,-36.9],"head":[117.4,-83.8],"shR":[98.5,-52.4],"elR":[115.7,46.8],"haR":[179.3,37.1],"shL":[90.7,-50.9],"elL":[101.6,40.7],"haL":[164.1,43.2],"hipR":[12.7,35.5],"knR":[55,179.2],"ftR":[11.8,324.4],"hipL":[6.3,42.3],"knL":[135.3,89.9],"ftL":[56.4,216]},{"rootY":-187.5,"hips":[0,0],"chest":[71.7,-37.2],"neck":[71.7,-37.2],"head":[119.1,-82.1],"shR":[101.3,-50],"elR":[115.2,49.2],"haR":[178.6,39.9],"shL":[88.1,-52.7],"elL":[102.8,38.4],"haL":[166,38.9],"hipR":[12.4,35.6],"knR":[51.4,180.1],"ftR":[8.1,325.2],"hipL":[5.3,42.5],"knL":[134.9,90.2],"ftL":[63.6,221.5]},{"rootY":-188.6,"hips":[0,0],"chest":[71.9,-36.5],"neck":[71.9,-36.5],"head":[120.6,-79.1],"shR":[100.7,-49.3],"elR":[110.9,49.8],"haR":[174.1,40.7],"shL":[89.9,-50.6],"elL":[107.7,39.1],"haL":[170.7,38.1],"hipR":[13,35.4],"knR":[48.6,180.9],"ftR":[3.8,325.6],"hipL":[5.6,42.4],"knL":[134.5,94.2],"ftL":[66.1,227.3]},{"rootY":-188.8,"hips":[0,0],"chest":[72.1,-36.1],"neck":[72.1,-36.1],"head":[122,-77.6],"shR":[100.8,-48.1],"elR":[107.3,50.6],"haR":[170.1,42.1],"shL":[91.1,-49.5],"elL":[109.4,39.4],"haL":[171.8,37.8],"hipR":[13.2,35.1],"knR":[46.6,181.2],"ftR":[-1.6,325],"hipL":[4.9,42.8],"knL":[132.5,100.1],"ftL":[62.1,232.2]},{"rootY":-188.5,"hips":[0,0],"chest":[71.7,-36.4],"neck":[71.7,-36.4],"head":[122.7,-75.3],"shR":[97.5,-46.6],"elR":[100.9,51.8],"haR":[163.7,43.4],"shL":[94.4,-50.5],"elL":[110.6,38],"haL":[171.9,36.7],"hipR":[11,36.2],"knR":[44,182.4],"ftR":[-5,325.7],"hipL":[3.4,42.6],"knL":[129.4,104.7],"ftL":[56.1,235.3]},{"rootY":-191.2,"hips":[0,0],"chest":[72.1,-35.7],"neck":[72.1,-35.7],"head":[124,-73.1],"shR":[101,-45.9],"elR":[99.5,51.7],"haR":[162,44.9],"shL":[91.6,-49.4],"elL":[104.2,39],"haL":[164.8,37.2],"hipR":[10.3,36.1],"knR":[39.7,183.1],"ftR":[-11.4,325.7],"hipL":[2.8,42.8],"knL":[126.7,109.6],"ftL":[48.9,237.9]},{"rootY":-189.6,"hips":[0,0],"chest":[72.5,-35.3],"neck":[72.5,-35.3],"head":[125.8,-71],"shR":[103.3,-45.6],"elR":[94.6,50.4],"haR":[157.2,45.1],"shL":[90.4,-48.2],"elL":[98.1,40.3],"haL":[158.2,37.8],"hipR":[9.1,37.2],"knR":[36.4,184.8],"ftR":[-16.3,326.4],"hipL":[1.2,42.3],"knL":[124.2,112.7],"ftL":[42.6,237.9]},{"rootY":-194.4,"hips":[0,0],"chest":[73.3,-33.6],"neck":[73.3,-33.6],"head":[127.6,-67.2],"shR":[103.4,-43.6],"elR":[87,50.5],"haR":[149.8,47.5],"shL":[92.1,-46.3],"elL":[93.2,42.3],"haL":[152,39.7],"hipR":[8.2,37.1],"knR":[29.7,185.8],"ftR":[-23.1,328],"hipL":[0.9,42.5],"knL":[120.6,119],"ftL":[35.3,242]},{"rootY":-197.7,"hips":[0,0],"chest":[74.4,-31.7],"neck":[74.4,-31.7],"head":[130,-63.6],"shR":[106.1,-42.3],"elR":[80,50.1],"haR":[143.2,50.3],"shL":[91.3,-43.9],"elL":[85.2,46],"haL":[144.2,41.9],"hipR":[8.7,37],"knR":[21.9,186.8],"ftR":[-30.3,329.2],"hipL":[0.1,42.6],"knL":[115.7,126],"ftL":[26.5,246.4]},{"rootY":-203.6,"hips":[0,0],"chest":[75.1,-30.1],"neck":[75.1,-30.1],"head":[131.7,-60.2],"shR":[106.3,-42.1],"elR":[71.1,47.5],"haR":[134.3,52],"shL":[92.4,-41.1],"elL":[77.7,50.7],"haL":[137.9,46.9],"hipR":[6.9,37.5],"knR":[13.3,187.7],"ftR":[-36.1,331.2],"hipL":[-1.2,42.4],"knL":[109.3,132.7],"ftL":[17.6,251.8]},{"rootY":-208.2,"hips":[0,0],"chest":[76.3,-27.7],"neck":[76.3,-27.7],"head":[133.4,-56.6],"shR":[107.8,-39.9],"elR":[64.2,45.6],"haR":[126.8,55.8],"shL":[93.1,-38.7],"elL":[69.9,51.5],"haL":[129.3,50.1],"hipR":[5.8,38.1],"knR":[3.6,188.5],"ftR":[-42.7,333.3],"hipL":[-1.9,42.1],"knL":[101,142],"ftL":[7,258.7]},{"rootY":-213.5,"hips":[0,0],"chest":[76.9,-26.4],"neck":[76.9,-26.4],"head":[134.7,-54.2],"shR":[108.4,-39.5],"elR":[57.1,41.3],"haR":[119,56.9],"shL":[93.1,-37.6],"elL":[61.5,51.2],"haL":[121.3,52.8],"hipR":[4,38.2],"knR":[-5.3,188.4],"ftR":[-49.1,334.1],"hipL":[-3.7,42],"knL":[93.9,147.2],"ftL":[-2.5,262.7]},{"rootY":-216.9,"hips":[0,0],"chest":[76.5,-27.7],"neck":[76.5,-27.7],"head":[134.5,-55.2],"shR":[108,-41.6],"elR":[49.9,34.1],"haR":[110.5,55.6],"shL":[92.7,-38.2],"elL":[53.1,47.9],"haL":[112.5,53.9],"hipR":[-0.5,38.2],"knR":[-6.1,188.7],"ftR":[-54,333.2],"hipL":[-7.6,41.6],"knL":[85.8,151],"ftL":[-10.6,266.4]},{"rootY":-220.6,"hips":[0,0],"chest":[77.8,-24.8],"neck":[77.8,-24.8],"head":[135.8,-52.1],"shR":[108.4,-39],"elR":[44.5,32.9],"haR":[103.6,59.4],"shL":[94.6,-36],"elL":[47.3,46.1],"haL":[105.4,58.9],"hipR":[1.9,37.7],"knR":[-17.3,187.2],"ftR":[-62.2,332.6],"hipL":[-5.5,42.3],"knL":[80.2,158],"ftL":[-19.7,270.3]},{"rootY":-224.2,"hips":[0,0],"chest":[77.6,-25.1],"neck":[77.6,-25.1],"head":[136.1,-52.7],"shR":[106,-40.9],"elR":[38.7,24.7],"haR":[94.6,55.6],"shL":[96.4,-35.3],"elL":[42.2,42.8],"haL":[98.2,62.7],"hipR":[0.8,37.9],"knR":[-13.7,187.9],"ftR":[-71.5,328.7],"hipL":[-5.8,42.1],"knL":[72.4,163.4],"ftL":[-31.1,273.4]},{"rootY":-227.7,"hips":[0,0],"chest":[77.7,-25.3],"neck":[77.7,-25.3],"head":[136.4,-53.1],"shR":[105.8,-41.9],"elR":[35.7,18.7],"haR":[88.8,52.8],"shL":[96.4,-35.3],"elL":[37.8,39.4],"haL":[91.7,64.6],"hipR":[-0.1,37.6],"knR":[-9.2,188.1],"ftR":[-79.9,322.8],"hipL":[-6.1,42.2],"knL":[67,166.9],"ftL":[-34.5,278]},{"rootY":-231.1,"hips":[0,0],"chest":[77.7,-25.5],"neck":[77.7,-25.5],"head":[136.1,-53.8],"shR":[102.7,-42.7],"elR":[30.9,14],"haR":[81.3,50.7],"shL":[99.7,-35],"elL":[36.9,37.4],"haL":[88.5,67.5],"hipR":[-0.9,37.4],"knR":[-6.4,188],"ftR":[-88.3,316.3],"hipL":[-6.5,42.3],"knL":[61,170.3],"ftL":[-40.4,281.5]}]},"dab":{"name":"dab","fps":30,"height":520,"groundY":257,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-2.7,-100.2],"neck":[-0.2,-168.2],"head":[-0.2,-204],"shR":[51.8,-150.4],"elR":[129,-162],"haR":[197.6,-174.4],"shL":[-53.6,-148.5],"elL":[-129.7,-156.2],"haL":[-198.2,-160.7],"hipR":[24.8,7.4],"knR":[22.5,130.4],"ftR":[17.9,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-27.9,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.7,-100.2],"neck":[-0.1,-168.2],"head":[-0.1,-204],"shR":[51.8,-150.4],"elR":[129.1,-161.9],"haR":[197.7,-174.3],"shL":[-53.5,-148.6],"elL":[-129.6,-156.4],"haL":[-198.1,-161.1],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.9,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.6,-100.2],"neck":[0.1,-168.2],"head":[0,-204],"shR":[52,-150.5],"elR":[129.2,-161.8],"haR":[197.9,-174],"shL":[-53.3,-148.8],"elL":[-129.5,-156.8],"haL":[-197.9,-161.7],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.8,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.5,-100.2],"neck":[0.3,-168.1],"head":[0.3,-203.9],"shR":[52.2,-150.5],"elR":[129.4,-161.7],"haR":[198.1,-173.7],"shL":[-53.1,-149],"elL":[-129.3,-157.2],"haL":[-197.7,-162.3],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.8,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28.1,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.4,-100.2],"neck":[0.6,-168.1],"head":[0.5,-203.9],"shR":[52.4,-150.5],"elR":[129.6,-161.5],"haR":[198.4,-173.3],"shL":[-52.9,-149.2],"elL":[-129,-157.5],"haL":[-197.5,-162.7],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.7,255.7],"hipL":[-25.2,8.1],"knL":[-26.5,131.3],"ftL":[-28.2,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.2,-100.2],"neck":[0.8,-168.1],"head":[0.7,-203.9],"shR":[52.6,-150.5],"elR":[129.9,-161.3],"haR":[198.7,-172.9],"shL":[-52.7,-149.4],"elL":[-128.8,-157.8],"haL":[-197.3,-163.2],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.6,255.7],"hipL":[-25.3,8.1],"knL":[-26.6,131.3],"ftL":[-28.3,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-100.2],"neck":[1.1,-168.1],"head":[1,-203.9],"shR":[52.8,-150.5],"elR":[130.1,-161.1],"haR":[198.9,-172.5],"shL":[-52.5,-149.6],"elL":[-128.5,-158.2],"haL":[-197,-163.7],"hipR":[24.8,7.5],"knR":[22.4,130.5],"ftR":[17.4,255.7],"hipL":[-25.3,8.1],"knL":[-26.7,131.3],"ftL":[-28.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-2,-100.2],"neck":[1.3,-168.1],"head":[1.3,-203.9],"shR":[53.1,-150.4],"elR":[130.4,-160.9],"haR":[199.2,-172.3],"shL":[-52.2,-149.8],"elL":[-128.3,-158.6],"haL":[-196.7,-164.3],"hipR":[24.9,7.5],"knR":[22.3,130.5],"ftR":[17.3,255.7],"hipL":[-25.3,8.1],"knL":[-26.8,131.3],"ftL":[-28.6,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.8,-100.2],"neck":[1.6,-168.2],"head":[1.6,-203.9],"shR":[53.3,-150.3],"elR":[130.6,-160.8],"haR":[199.4,-172.2],"shL":[-52,-150],"elL":[-128,-159],"haL":[-196.4,-164.9],"hipR":[24.9,7.5],"knR":[22.2,130.5],"ftR":[17.1,255.7],"hipL":[-25.3,8.1],"knL":[-26.8,131.3],"ftL":[-28.7,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.7,-100.2],"neck":[1.9,-168.2],"head":[1.9,-203.8],"shR":[53.5,-150.3],"elR":[130.8,-160.8],"haR":[199.6,-172.2],"shL":[-51.7,-150.1],"elL":[-127.7,-159.5],"haL":[-196,-165.7],"hipR":[24.8,7.5],"knR":[22.2,130.5],"ftR":[17,255.7],"hipL":[-25.3,8.1],"knL":[-26.9,131.2],"ftL":[-28.9,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.6,-100.2],"neck":[2.2,-168.2],"head":[2.2,-203.8],"shR":[53.8,-150.2],"elR":[131,-160.8],"haR":[199.8,-172.3],"shL":[-51.5,-150.4],"elL":[-127.3,-160.1],"haL":[-195.6,-166.6],"hipR":[24.8,7.5],"knR":[22.1,130.5],"ftR":[16.8,255.7],"hipL":[-25.3,8.1],"knL":[-27,131.2],"ftL":[-29.1,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.5,-100.2],"neck":[2.4,-168.2],"head":[2.4,-203.8],"shR":[54,-150.2],"elR":[131.2,-160.9],"haR":[200,-172.4],"shL":[-51.3,-150.6],"elL":[-127,-160.7],"haL":[-195.3,-167.6],"hipR":[24.8,7.5],"knR":[22,130.5],"ftR":[16.5,255.7],"hipL":[-25.3,8.1],"knL":[-27.1,131.2],"ftL":[-29.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.4,-100.3],"neck":[2.6,-168.2],"head":[2.6,-203.8],"shR":[54.1,-150.3],"elR":[131.4,-161],"haR":[200.1,-172.6],"shL":[-51.1,-150.8],"elL":[-126.8,-161.3],"haL":[-194.9,-168.5],"hipR":[24.8,7.5],"knR":[21.8,130.5],"ftR":[16.2,255.7],"hipL":[-25.3,8.1],"knL":[-27.3,131.2],"ftL":[-29.7,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.3,-100.3],"neck":[2.7,-168.2],"head":[2.8,-203.8],"shR":[54.2,-150.3],"elR":[131.5,-161.1],"haR":[200.2,-172.8],"shL":[-50.9,-151],"elL":[-126.6,-161.7],"haL":[-194.6,-169.2],"hipR":[24.8,7.5],"knR":[21.6,130.5],"ftR":[15.9,255.7],"hipL":[-25.3,8],"knL":[-27.4,131.2],"ftL":[-30,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.2,-100.3],"neck":[2.8,-168.2],"head":[2.9,-203.9],"shR":[54.3,-150.3],"elR":[131.6,-161.2],"haR":[200.3,-173],"shL":[-50.8,-151.2],"elL":[-126.3,-162.1],"haL":[-194.3,-169.8],"hipR":[24.8,7.5],"knR":[21.4,130.5],"ftR":[15.6,255.7],"hipL":[-25.4,8],"knL":[-27.6,131.2],"ftL":[-30.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-100.3],"neck":[3,-168.2],"head":[3.1,-203.8],"shR":[54.5,-150.3],"elR":[131.8,-161.3],"haR":[200.4,-173.1],"shL":[-50.7,-151.3],"elL":[-126.1,-162.4],"haL":[-194.1,-170.2],"hipR":[24.9,7.5],"knR":[21.3,130.5],"ftR":[15.3,255.7],"hipL":[-25.4,8],"knL":[-27.8,131.2],"ftL":[-30.7,256.4]},{"rootY":0,"hips":[0,0],"chest":[-1,-100.3],"neck":[3.1,-168.2],"head":[3.2,-203.8],"shR":[54.6,-150.3],"elR":[131.9,-161.3],"haR":[200.5,-173.1],"shL":[-50.5,-151.4],"elL":[-125.9,-162.5],"haL":[-193.8,-170.3],"hipR":[24.9,7.5],"knR":[21.2,130.5],"ftR":[15,255.7],"hipL":[-25.4,8],"knL":[-27.9,131.2],"ftL":[-31,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.9,-100.3],"neck":[3.2,-168.2],"head":[3.3,-203.8],"shR":[54.7,-150.4],"elR":[132,-161.3],"haR":[200.7,-173.1],"shL":[-50.4,-151.5],"elL":[-125.7,-162.5],"haL":[-193.6,-170.3],"hipR":[24.9,7.6],"knR":[21,130.5],"ftR":[14.6,255.7],"hipL":[-25.5,8],"knL":[-28.1,131.2],"ftL":[-31.4,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.8,-100.3],"neck":[3.3,-168.2],"head":[3.4,-203.8],"shR":[54.8,-150.4],"elR":[132.2,-161.2],"haR":[200.8,-173],"shL":[-50.3,-151.6],"elL":[-125.6,-162.5],"haL":[-193.5,-170.2],"hipR":[24.9,7.6],"knR":[20.8,130.5],"ftR":[14.3,255.6],"hipL":[-25.5,8],"knL":[-28.3,131.1],"ftL":[-31.7,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.7,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[54.9,-150.4],"elR":[132.3,-161.2],"haR":[200.9,-172.9],"shL":[-50.3,-151.6],"elL":[-125.5,-162.5],"haL":[-193.4,-170.1],"hipR":[25,7.6],"knR":[20.6,130.5],"ftR":[13.9,255.6],"hipL":[-25.5,8],"knL":[-28.5,131.1],"ftL":[-32.1,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.7,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[55,-150.4],"elR":[132.4,-161.1],"haR":[201,-172.7],"shL":[-50.2,-151.6],"elL":[-125.5,-162.4],"haL":[-193.4,-169.9],"hipR":[25,7.6],"knR":[20.4,130.5],"ftR":[13.6,255.6],"hipL":[-25.5,8],"knL":[-28.6,131.1],"ftL":[-32.4,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.6,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[55,-150.4],"elR":[132.4,-161],"haR":[201.1,-172.5],"shL":[-50.2,-151.6],"elL":[-125.5,-162.3],"haL":[-193.3,-169.9],"hipR":[25,7.6],"knR":[20.3,130.5],"ftR":[13.4,255.6],"hipL":[-25.6,7.9],"knL":[-28.8,131.1],"ftL":[-32.7,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.5,-100.4],"neck":[3.5,-168.1],"head":[3.5,-203.7],"shR":[55.1,-150.4],"elR":[132.6,-160.9],"haR":[201.2,-172.3],"shL":[-50.1,-151.6],"elL":[-125.4,-162.3],"haL":[-193.3,-169.8],"hipR":[25,7.6],"knR":[20.1,130.5],"ftR":[13.1,255.6],"hipL":[-25.6,7.9],"knL":[-28.9,131.1],"ftL":[-33,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.5,-100.4],"neck":[3.6,-168.1],"head":[3.6,-203.7],"shR":[55.2,-150.4],"elR":[132.7,-160.9],"haR":[201.4,-172.2],"shL":[-50,-151.6],"elL":[-125.3,-162.2],"haL":[-193.2,-169.7],"hipR":[25,7.6],"knR":[20,130.5],"ftR":[12.9,255.6],"hipL":[-25.6,7.9],"knL":[-29,131.1],"ftL":[-33.2,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-100.4],"neck":[3.8,-168.1],"head":[3.7,-203.7],"shR":[55.3,-150.4],"elR":[132.8,-160.8],"haR":[201.5,-172.1],"shL":[-49.9,-151.6],"elL":[-125.2,-162.2],"haL":[-193.2,-169.6],"hipR":[24.9,7.6],"knR":[19.9,130.5],"ftR":[12.8,255.6],"hipL":[-25.6,7.9],"knL":[-29.1,131.1],"ftL":[-33.4,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.2,-100.4],"neck":[3.9,-168.1],"head":[3.8,-203.6],"shR":[55.5,-150.4],"elR":[133,-160.7],"haR":[201.7,-172],"shL":[-49.8,-151.5],"elL":[-125.1,-162.1],"haL":[-193.1,-169.4],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.6,255.6],"hipL":[-25.6,7.9],"knL":[-29.1,131.1],"ftL":[-33.5,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.1,-100.4],"neck":[4.1,-168.1],"head":[3.9,-203.6],"shR":[55.6,-150.2],"elR":[133.2,-160.6],"haR":[201.8,-171.9],"shL":[-49.6,-151.5],"elL":[-125,-162],"haL":[-192.9,-169.3],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.6,255.6],"hipL":[-25.6,7.9],"knL":[-29.2,131],"ftL":[-33.6,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.1,-100.4],"neck":[4.2,-168],"head":[4,-203.6],"shR":[55.8,-150.1],"elR":[133.3,-160.5],"haR":[201.9,-171.8],"shL":[-49.5,-151.4],"elL":[-124.9,-161.9],"haL":[-192.9,-169.2],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.5,255.6],"hipL":[-25.6,7.9],"knL":[-29.2,131],"ftL":[-33.7,256.3]},{"rootY":0.1,"hips":[0,0],"chest":[0,-100.4],"neck":[4.3,-168],"head":[4.1,-203.6],"shR":[55.9,-150.1],"elR":[133.4,-160.4],"haR":[202,-171.7],"shL":[-49.4,-151.4],"elL":[-124.8,-161.8],"haL":[-192.8,-169.1],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.4,255.6],"hipL":[-25.5,7.9],"knL":[-29.3,131],"ftL":[-33.8,256.3]},{"rootY":0.1,"hips":[0,0],"chest":[0,-100.4],"neck":[4.4,-168],"head":[4.2,-203.6],"shR":[55.9,-150.1],"elR":[133.5,-160.4],"haR":[202.1,-171.6],"shL":[-49.3,-151.5],"elL":[-124.8,-161.8],"haL":[-192.8,-169.1],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.3,255.6],"hipL":[-25.5,7.9],"knL":[-29.3,131],"ftL":[-33.8,256.3]},{"rootY":0,"hips":[0,0],"chest":[0.1,-100.4],"neck":[4.6,-168],"head":[4.4,-203.5],"shR":[56.1,-150],"elR":[133.7,-160.4],"haR":[202.3,-171.6],"shL":[-49.2,-151.6],"elL":[-124.6,-161.8],"haL":[-192.6,-169],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.3,255.6],"hipL":[-25.6,7.9],"knL":[-29.3,131],"ftL":[-33.9,256.3]},{"rootY":0,"hips":[0,0],"chest":[0.3,-100.4],"neck":[4.8,-168],"head":[4.6,-203.5],"shR":[56.4,-149.9],"elR":[133.9,-160.3],"haR":[202.5,-171.6],"shL":[-48.9,-151.6],"elL":[-124.4,-161.7],"haL":[-192.4,-168.8],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.3,255.6],"hipL":[-25.6,7.9],"knL":[-29.4,131],"ftL":[-33.9,256.2]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-100.3],"neck":[5.2,-167.9],"head":[5,-203.4],"shR":[56.7,-149.8],"elR":[134.3,-160.1],"haR":[202.8,-171.4],"shL":[-48.6,-151.5],"elL":[-124.1,-161.3],"haL":[-192,-168.3],"hipR":[25,7.7],"knR":[20,130.5],"ftR":[12.3,255.6],"hipL":[-25.7,7.9],"knL":[-29.4,131],"ftL":[-33.9,256.2]},{"rootY":0.1,"hips":[0,0],"chest":[1.1,-100.3],"neck":[5.8,-167.8],"head":[5.5,-203.3],"shR":[57.4,-149.5],"elR":[134.9,-159.7],"haR":[203.4,-171],"shL":[-48,-151.3],"elL":[-123.6,-160.5],"haL":[-191.5,-167.2],"hipR":[25.1,7.7],"knR":[20.1,130.6],"ftR":[12.1,255.7],"hipL":[-25.8,7.8],"knL":[-29.4,130.9],"ftL":[-33.8,256.1]},{"rootY":0.2,"hips":[0,0],"chest":[1.8,-100.2],"neck":[6.6,-167.6],"head":[6.2,-203.1],"shR":[58.2,-149],"elR":[135.8,-158.8],"haR":[204.2,-169.9],"shL":[-47.4,-150.9],"elL":[-123.1,-159.3],"haL":[-191,-165.3],"hipR":[25.3,7.9],"knR":[20.5,130.6],"ftR":[12,255.7],"hipL":[-26,7.7],"knL":[-29.6,130.8],"ftL":[-33.8,256]},{"rootY":0.3,"hips":[0,0],"chest":[2.4,-100.2],"neck":[7.2,-167.5],"head":[6.8,-203],"shR":[59,-148.4],"elR":[136.7,-157.5],"haR":[205.1,-167.9],"shL":[-46.8,-150.4],"elL":[-122.6,-157.4],"haL":[-190.6,-162.4],"hipR":[25.5,8],"knR":[21.2,130.6],"ftR":[11.9,255.6],"hipL":[-26.2,7.5],"knL":[-29.9,130.6],"ftL":[-33.9,255.9]},{"rootY":0.5,"hips":[0,0],"chest":[2.9,-100.1],"neck":[7.6,-167.3],"head":[7.3,-202.8],"shR":[59.6,-147.9],"elR":[137.5,-155.6],"haR":[205.9,-164.7],"shL":[-46.4,-149.8],"elL":[-122.4,-154.9],"haL":[-190.4,-158.4],"hipR":[25.6,8.3],"knR":[21.8,130.6],"ftR":[11.6,255.4],"hipL":[-26.4,7.3],"knL":[-30.2,130.4],"ftL":[-34.1,255.7]},{"rootY":0.6,"hips":[0,0],"chest":[3.5,-99.9],"neck":[8,-167.1],"head":[7.7,-202.6],"shR":[60.1,-147.4],"elR":[138.3,-153.1],"haR":[206.7,-160.3],"shL":[-46.1,-149.2],"elL":[-122.3,-151.9],"haL":[-190.3,-153.2],"hipR":[25.8,8.5],"knR":[22.1,130.6],"ftR":[11.3,255.2],"hipL":[-26.6,7],"knL":[-30.5,130.2],"ftL":[-34.5,255.4]},{"rootY":0.8,"hips":[0,0],"chest":[4.2,-99.8],"neck":[8.4,-166.7],"head":[8.3,-202.2],"shR":[60.8,-146.7],"elR":[139.2,-150],"haR":[207.6,-154.6],"shL":[-45.6,-148.5],"elL":[-121.8,-148.3],"haL":[-189.8,-147.2],"hipR":[25.9,8.8],"knR":[22.2,130.5],"ftR":[11,254.9],"hipL":[-26.8,6.8],"knL":[-30.8,129.8],"ftL":[-35,255.1]},{"rootY":1.1,"hips":[0,0],"chest":[5.1,-99.7],"neck":[9.2,-166.2],"head":[8.9,-201.8],"shR":[61.7,-146],"elR":[140.3,-146.5],"haR":[208.7,-148.2],"shL":[-44.9,-147.6],"elL":[-121,-144.4],"haL":[-188.9,-140.8],"hipR":[25.9,9],"knR":[22.2,130.3],"ftR":[10.8,254.5],"hipL":[-26.9,6.5],"knL":[-31.3,129.3],"ftL":[-35.4,254.6]},{"rootY":1.6,"hips":[0,0],"chest":[6,-99.6],"neck":[10,-165.7],"head":[9.5,-201.3],"shR":[62.7,-145.1],"elR":[141.4,-142.7],"haR":[209.7,-141.5],"shL":[-44.2,-146.6],"elL":[-119.9,-140.5],"haL":[-187.7,-134.4],"hipR":[26,9.1],"knR":[22.1,129.9],"ftR":[10.5,254],"hipL":[-27,6.5],"knL":[-32.2,128.7],"ftL":[-35.8,253.9]},{"rootY":2.1,"hips":[0,0],"chest":[6.7,-99.4],"neck":[10.7,-165.2],"head":[10,-200.8],"shR":[63.6,-144],"elR":[142.2,-138.7],"haR":[210.1,-135],"shL":[-43.6,-145.7],"elL":[-119,-137],"haL":[-186.4,-128.6],"hipR":[26.2,8.9],"knR":[21.8,129.6],"ftR":[10.2,253.6],"hipL":[-27,6.6],"knL":[-33.8,127.9],"ftL":[-36.8,252.8]},{"rootY":2.4,"hips":[0,0],"chest":[7,-99.3],"neck":[11.1,-164.8],"head":[10.2,-200.5],"shR":[64,-142.5],"elR":[142.5,-134.8],"haR":[209.2,-130],"shL":[-43.3,-145.2],"elL":[-118.4,-134.9],"haL":[-185.5,-125.1],"hipR":[26.3,8.8],"knR":[21.4,129.3],"ftR":[9.9,253.3],"hipL":[-27,6.8],"knL":[-36.7,126.9],"ftL":[-39.6,251.4]},{"rootY":2.5,"hips":[0,0],"chest":[7,-99.2],"neck":[11.2,-164.6],"head":[10.4,-200.4],"shR":[64.1,-141.2],"elR":[142.4,-131.7],"haR":[206.4,-128],"shL":[-43.2,-145.2],"elL":[-118.3,-134.9],"haL":[-185.2,-125.3],"hipR":[26.3,8.8],"knR":[21.2,129.2],"ftR":[9.7,253.2],"hipL":[-27,6.8],"knL":[-40.9,125.6],"ftL":[-45.7,250]},{"rootY":2.4,"hips":[0,0],"chest":[7,-99.2],"neck":[11.4,-164.7],"head":[10.8,-200.5],"shR":[64.2,-140.6],"elR":[142.6,-130.5],"haR":[201,-130.1],"shL":[-42.9,-145.7],"elL":[-118.2,-137.3],"haL":[-185.2,-129.5],"hipR":[26.2,9],"knR":[21.4,129.3],"ftR":[9.9,253.3],"hipL":[-27.1,6.5],"knL":[-46,124.5],"ftL":[-55.2,248.8]},{"rootY":2.3,"hips":[0,0],"chest":[7.2,-99.2],"neck":[11.9,-164.9],"head":[11.6,-200.8],"shR":[64.7,-141],"elR":[143.3,-131.5],"haR":[192.7,-136.1],"shL":[-42.4,-146.7],"elL":[-117.8,-141.6],"haL":[-184.9,-136.8],"hipR":[26,9.3],"knR":[22.1,129.5],"ftR":[10.4,253.3],"hipL":[-27.1,6.2],"knL":[-51.5,123.4],"ftL":[-67.7,247.3]},{"rootY":2.2,"hips":[0,0],"chest":[7.5,-99.1],"neck":[12.7,-165.1],"head":[12.5,-201],"shR":[65.4,-142.2],"elR":[144.3,-134.2],"haR":[181,-144.9],"shL":[-41.7,-148.1],"elL":[-117,-147.2],"haL":[-184.2,-146],"hipR":[25.8,9.5],"knR":[23,129.6],"ftR":[11.6,253.2],"hipL":[-27,6.1],"knL":[-57.6,122.1],"ftL":[-82.9,244.7]},{"rootY":2.1,"hips":[0,0],"chest":[7.8,-99.1],"neck":[13.3,-165.4],"head":[13.4,-201.3],"shR":[66,-143.9],"elR":[145,-138.3],"haR":[165.7,-155.3],"shL":[-41.1,-150.2],"elL":[-115.9,-154.2],"haL":[-182.9,-157],"hipR":[25.7,9.5],"knR":[24.1,129.6],"ftR":[13.1,253.1],"hipL":[-27,6],"knL":[-64.8,120],"ftL":[-100.2,240.2]},{"rootY":2.1,"hips":[0,0],"chest":[8.1,-99.1],"neck":[13.7,-165.7],"head":[14,-201.6],"shR":[66.2,-146.2],"elR":[145.2,-144],"haR":[148,-166.3],"shL":[-40.7,-152.7],"elL":[-114.2,-162.4],"haL":[-180.7,-170],"hipR":[25.6,9.6],"knR":[25.3,129.6],"ftR":[15,252.8],"hipL":[-26.9,5.9],"knL":[-72.8,116.9],"ftL":[-118.5,233.6]},{"rootY":2.3,"hips":[0,0],"chest":[8.5,-99],"neck":[14.1,-166],"head":[14.6,-201.8],"shR":[66.4,-149],"elR":[144.5,-151.4],"haR":[130,-177],"shL":[-40.1,-155.2],"elL":[-111.7,-171.7],"haL":[-177.1,-185],"hipR":[25.4,10],"knR":[26.6,129.6],"ftR":[17,252.4],"hipL":[-26.9,5.6],"knL":[-80.7,112.7],"ftL":[-135.7,225.3]},{"rootY":2.9,"hips":[0,0],"chest":[9.3,-98.9],"neck":[14.9,-166.1],"head":[15.3,-201.9],"shR":[66.6,-151.8],"elR":[142.8,-159.9],"haR":[113.4,-186.2],"shL":[-39.1,-157.2],"elL":[-108.4,-181.1],"haL":[-171.7,-201.2],"hipR":[25.2,10.5],"knR":[28.1,129.6],"ftR":[19.5,251.7],"hipL":[-27,5],"knL":[-88.1,107.8],"ftL":[-151,216.1]},{"rootY":3.9,"hips":[0,0],"chest":[10.3,-98.7],"neck":[15.7,-166],"head":[16,-201.9],"shR":[66.8,-154.1],"elR":[140,-168.1],"haR":[99.3,-193.2],"shL":[-37.9,-158.9],"elL":[-104,-190.2],"haL":[-164.6,-216.9],"hipR":[25,11.1],"knR":[30.2,129.3],"ftR":[22.5,250.6],"hipL":[-27.1,4.5],"knL":[-94.8,102.8],"ftL":[-164.2,207]},{"rootY":5.3,"hips":[0,0],"chest":[11.2,-98.4],"neck":[16.6,-165.9],"head":[16.8,-201.7],"shR":[67.2,-155.7],"elR":[136.3,-174.7],"haR":[88,-197.8],"shL":[-36.6,-160.6],"elL":[-99.1,-198.2],"haL":[-156.6,-230.6],"hipR":[24.9,11.5],"knR":[32.9,128.9],"ftR":[26.2,249],"hipL":[-27.1,4],"knL":[-100.3,98.2],"ftL":[-175.1,198.6]},{"rootY":6.8,"hips":[0,0],"chest":[12,-98.1],"neck":[17.4,-165.8],"head":[17.5,-201.6],"shR":[67.6,-156.6],"elR":[132.5,-178.6],"haR":[79.3,-200.2],"shL":[-35.3,-162],"elL":[-94.2,-204.7],"haL":[-148.9,-241.6],"hipR":[24.8,11.7],"knR":[35.6,128.4],"ftR":[30.3,247.3],"hipL":[-27.2,3.7],"knL":[-104.6,94.4],"ftL":[-183.6,191.5]},{"rootY":8.5,"hips":[0,0],"chest":[12.5,-97.9],"neck":[18,-165.8],"head":[18.1,-201.5],"shR":[68,-156.7],"elR":[129.5,-180],"haR":[72.9,-200.7],"shL":[-34.2,-163.2],"elL":[-90.2,-209.6],"haL":[-142.4,-249.9],"hipR":[24.8,11.9],"knR":[38,127.9],"ftR":[34.8,245.6],"hipL":[-27.3,3.6],"knL":[-107.8,91.5],"ftL":[-189.6,186.2]},{"rootY":10.3,"hips":[0,0],"chest":[12.9,-97.8],"neck":[18.5,-165.7],"head":[18.6,-201.4],"shR":[68.4,-156.3],"elR":[127.7,-179.6],"haR":[68.8,-199.6],"shL":[-33.4,-164.1],"elL":[-87.2,-213.2],"haL":[-137.4,-255.8],"hipR":[24.9,12],"knR":[40.1,127.4],"ftR":[39.7,243.8],"hipL":[-27.4,3.5],"knL":[-109.6,89.8],"ftL":[-192.8,183.3]},{"rootY":12.1,"hips":[0,0],"chest":[13.2,-97.6],"neck":[18.8,-165.6],"head":[19.2,-201.3],"shR":[68.8,-155.8],"elR":[127.2,-178.4],"haR":[66.6,-197.6],"shL":[-32.7,-164.7],"elL":[-84.9,-215.5],"haL":[-133.8,-259.8],"hipR":[25,12],"knR":[42.5,126.9],"ftR":[45.3,241.9],"hipL":[-27.4,3.5],"knL":[-109.9,89.5],"ftL":[-193,183.2]},{"rootY":14,"hips":[0,0],"chest":[13.6,-97.3],"neck":[19.5,-165.5],"head":[20.1,-201.1],"shR":[69.4,-155.1],"elR":[127.9,-176.8],"haR":[66.2,-195.3],"shL":[-31.9,-165.1],"elL":[-83.3,-216.8],"haL":[-131.4,-261.9],"hipR":[25,12.1],"knR":[45.5,126.5],"ftR":[51.9,239.9],"hipL":[-27.5,3.4],"knL":[-109,90.4],"ftL":[-190.8,185.3]},{"rootY":15.8,"hips":[0,0],"chest":[14.2,-97],"neck":[20.8,-165.2],"head":[21.7,-200.8],"shR":[70.7,-154.3],"elR":[129.7,-174.8],"haR":[67.4,-193],"shL":[-30.5,-165.5],"elL":[-81.8,-217.3],"haL":[-129.8,-262.5],"hipR":[25,12.2],"knR":[49.2,126],"ftR":[59.6,238],"hipL":[-27.5,3.2],"knL":[-107.2,92.5],"ftL":[-186.8,189.3]},{"rootY":17.8,"hips":[0,0],"chest":[15,-96.7],"neck":[22.5,-165],"head":[23.9,-200.5],"shR":[72.4,-153.3],"elR":[132.4,-172.2],"haR":[69.9,-190.6],"shL":[-28.9,-165.7],"elL":[-80.4,-217.1],"haL":[-128.8,-261.9],"hipR":[24.9,12.3],"knR":[54,125.4],"ftR":[68.4,236.1],"hipL":[-27.5,3.1],"knL":[-104.2,95.6],"ftL":[-180.7,194.8]},{"rootY":20.3,"hips":[0,0],"chest":[15.5,-96.5],"neck":[24.4,-164.8],"head":[26.6,-200.2],"shR":[74.3,-151.8],"elR":[135.6,-168.5],"haR":[73.5,-188.1],"shL":[-27.4,-165.5],"elL":[-79.4,-216.2],"haL":[-128.3,-260.3],"hipR":[24.8,12.4],"knR":[59.7,124.2],"ftR":[78.2,233.7],"hipL":[-27.5,3],"knL":[-100,99.4],"ftL":[-172.7,201.5]},{"rootY":23.7,"hips":[0,0],"chest":[15.5,-96.4],"neck":[26.2,-164.6],"head":[29.6,-199.9],"shR":[76,-149.5],"elR":[139.1,-163.1],"haR":[77.7,-185.3],"shL":[-26.3,-165],"elL":[-79.5,-214.7],"haL":[-129.1,-257.8],"hipR":[24.8,12.3],"knR":[66,122.2],"ftR":[88.9,230.3],"hipL":[-27.3,3.2],"knL":[-95.9,102.9],"ftL":[-164.8,207.6]},{"rootY":28.3,"hips":[0,0],"chest":[14.5,-96.4],"neck":[27.4,-164.3],"head":[32.7,-199.5],"shR":[77.1,-146.3],"elR":[141.8,-155.8],"haR":[81.6,-181.7],"shL":[-25.8,-164.7],"elL":[-80.7,-212.5],"haL":[-131.9,-254],"hipR":[24.8,11.9],"knR":[72.3,119.5],"ftR":[99.8,225.9],"hipL":[-27.1,3.6],"knL":[-93.5,105.3],"ftL":[-159.6,211.5]},{"rootY":33.4,"hips":[0,0],"chest":[12.9,-96.5],"neck":[28,-164.1],"head":[35.8,-198.9],"shR":[77.3,-142.6],"elR":[143.3,-148.4],"haR":[84.6,-177.8],"shL":[-25.9,-164.4],"elL":[-82.4,-209.6],"haL":[-135.9,-248.3],"hipR":[24.7,11.5],"knR":[78,116.4],"ftR":[110.4,221.1],"hipL":[-26.7,4],"knL":[-92.2,107],"ftL":[-156.4,213.7]},{"rootY":36.8,"hips":[0,0],"chest":[11.3,-96.8],"neck":[27.7,-164],"head":[38.4,-198.1],"shR":[76.5,-138.8],"elR":[143.8,-142.9],"haR":[85.6,-173.7],"shL":[-27,-163.2],"elL":[-84.4,-205.8],"haL":[-140.1,-240.9],"hipR":[24.6,11.4],"knR":[82.5,114.5],"ftR":[119.5,218.1],"hipL":[-26.6,4.1],"knL":[-90.3,108.9],"ftL":[-152.8,216.1]},{"rootY":36.8,"hips":[0,0],"chest":[10.1,-97],"neck":[26.9,-164.2],"head":[40.1,-197.5],"shR":[75.1,-135.6],"elR":[143.7,-140.1],"haR":[85,-170.3],"shL":[-28.7,-161.1],"elL":[-87,-201.1],"haL":[-143.9,-233.1],"hipR":[24.4,11.8],"knR":[84.6,114.8],"ftR":[126.3,218.2],"hipL":[-26.6,3.7],"knL":[-87.2,110.8],"ftL":[-148,219.4]},{"rootY":34.3,"hips":[0,0],"chest":[9.2,-97.4],"neck":[25.8,-164.7],"head":[40.3,-197.4],"shR":[73.9,-135.1],"elR":[143.9,-140.5],"haR":[84.1,-169.4],"shL":[-30.4,-159.4],"elL":[-89.8,-197.3],"haL":[-147.1,-227.7],"hipR":[24.3,11.8],"knR":[84.6,116.3],"ftR":[130.7,220.5],"hipL":[-26.6,3.6],"knL":[-84.5,112.4],"ftL":[-143.4,222.6]},{"rootY":31.7,"hips":[0,0],"chest":[8.4,-98],"neck":[24.6,-165.5],"head":[39,-198.2],"shR":[73.1,-136.9],"elR":[144.6,-143.7],"haR":[84.2,-171.5],"shL":[-31.7,-158.8],"elL":[-92.2,-196],"haL":[-149.6,-226.3],"hipR":[24.5,11.2],"knR":[84.1,117.2],"ftR":[133,222.9],"hipL":[-26.6,4.3],"knL":[-83.1,113.6],"ftL":[-140.6,224.8]},{"rootY":30.4,"hips":[0,0],"chest":[7.6,-98.4],"neck":[23.1,-166.1],"head":[36.9,-199.2],"shR":[72,-138.8],"elR":[144.9,-147.9],"haR":[85.1,-175.4],"shL":[-33.1,-158.6],"elL":[-94,-196.6],"haL":[-151.2,-227.8],"hipR":[24.7,10.5],"knR":[84.6,117.1],"ftR":[134.5,224.4],"hipL":[-26.5,5.1],"knL":[-82.5,114.7],"ftL":[-139.4,226.2]},{"rootY":29.8,"hips":[0,0],"chest":[6.5,-98.8],"neck":[21.4,-166.5],"head":[34.4,-200],"shR":[70.5,-139.4],"elR":[144.3,-151.1],"haR":[85.6,-178.5],"shL":[-34.8,-158],"elL":[-95.4,-197.3],"haL":[-152.1,-230],"hipR":[24.9,10],"knR":[85.8,116.4],"ftR":[135.5,225.1],"hipL":[-26.4,5.6],"knL":[-82.1,115.4],"ftL":[-138.8,227]},{"rootY":29.5,"hips":[0,0],"chest":[5.3,-99],"neck":[19.8,-166.7],"head":[32.1,-200.7],"shR":[68.8,-139.4],"elR":[142.9,-152.3],"haR":[84.9,-179.7],"shL":[-36.6,-157.3],"elL":[-96.9,-197.5],"haL":[-153,-231.2],"hipR":[24.9,9.6],"knR":[86.5,115.7],"ftR":[135.8,225.6],"hipL":[-26.3,6],"knL":[-81.9,115.8],"ftL":[-138.6,227.5]},{"rootY":29.1,"hips":[0,0],"chest":[4.1,-99.3],"neck":[18.4,-166.9],"head":[30,-201.2],"shR":[67.5,-139.3],"elR":[141.6,-151.8],"haR":[83.5,-179.3],"shL":[-38,-156.6],"elL":[-98.1,-197.1],"haL":[-154,-231.1],"hipR":[24.9,9.1],"knR":[86.3,115.5],"ftR":[135.7,226],"hipL":[-26.1,6.5],"knL":[-82,116.1],"ftL":[-138.9,227.7]},{"rootY":28.9,"hips":[0,0],"chest":[3.1,-99.4],"neck":[17.4,-167.1],"head":[28.5,-201.5],"shR":[66.6,-139.1],"elR":[140.6,-151],"haR":[82.3,-178.5],"shL":[-38.9,-155.9],"elL":[-98.7,-196.3],"haL":[-154.6,-230.2],"hipR":[25,8.7],"knR":[85.6,115.6],"ftR":[135.5,226.2],"hipL":[-25.9,6.9],"knL":[-82.1,116.4],"ftL":[-139.2,227.9]},{"rootY":28.8,"hips":[0,0],"chest":[2.5,-99.5],"neck":[16.8,-167.1],"head":[27.6,-201.6],"shR":[65.9,-138.5],"elR":[139.8,-150.4],"haR":[81.8,-177.9],"shL":[-39.6,-155.2],"elL":[-99,-195.3],"haL":[-154.7,-228.9],"hipR":[25,8.4],"knR":[85.1,115.7],"ftR":[135.5,226.4],"hipL":[-25.9,7.1],"knL":[-82,116.7],"ftL":[-139.2,228.1]},{"rootY":28.6,"hips":[0,0],"chest":[2.2,-99.4],"neck":[16.6,-167],"head":[27.2,-201.6],"shR":[65.6,-137.9],"elR":[139.5,-149.8],"haR":[81.8,-177.6],"shL":[-39.9,-154.8],"elL":[-99,-194.3],"haL":[-154.6,-227.3],"hipR":[25,8.4],"knR":[85,115.8],"ftR":[135.9,226.6],"hipL":[-25.8,7.2],"knL":[-81.9,116.8],"ftL":[-138.9,228.3]},{"rootY":28.5,"hips":[0,0],"chest":[2.1,-99.4],"neck":[16.5,-166.9],"head":[27.1,-201.5],"shR":[65.5,-137.7],"elR":[139.5,-149.3],"haR":[82,-177.5],"shL":[-39.9,-154.6],"elL":[-98.8,-193.5],"haL":[-154.4,-225.9],"hipR":[25,8.4],"knR":[85,115.9],"ftR":[136.3,226.8],"hipL":[-25.8,7.1],"knL":[-81.8,116.8],"ftL":[-138.6,228.4]},{"rootY":28.4,"hips":[0,0],"chest":[2,-99.4],"neck":[16.6,-166.9],"head":[27.1,-201.5],"shR":[65.4,-137.3],"elR":[139.4,-149],"haR":[82.2,-177.6],"shL":[-39.8,-154.4],"elL":[-98.6,-192.8],"haL":[-154.2,-224.7],"hipR":[24.9,8.5],"knR":[84.9,116],"ftR":[136.7,226.9],"hipL":[-25.9,7.1],"knL":[-81.6,116.8],"ftL":[-138.3,228.5]},{"rootY":28.3,"hips":[0,0],"chest":[1.7,-99.5],"neck":[16.4,-166.9],"head":[27.1,-201.5],"shR":[65,-136.6],"elR":[139.1,-148.9],"haR":[82.3,-177.7],"shL":[-40,-154.2],"elL":[-98.7,-192.2],"haL":[-154.2,-223.8],"hipR":[25,8.5],"knR":[84.8,116.2],"ftR":[137,227],"hipL":[-25.9,7.1],"knL":[-81.5,116.8],"ftL":[-138,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[1.1,-99.5],"neck":[15.9,-166.9],"head":[26.8,-201.5],"shR":[64.3,-136],"elR":[138.6,-148.8],"haR":[82.2,-177.7],"shL":[-40.4,-153.9],"elL":[-99.1,-191.7],"haL":[-154.6,-223],"hipR":[25,8.5],"knR":[84.6,116.2],"ftR":[137.1,227],"hipL":[-25.9,7.1],"knL":[-81.5,116.9],"ftL":[-137.9,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[0.4,-99.6],"neck":[15.1,-167],"head":[26.2,-201.5],"shR":[63.4,-135.9],"elR":[138,-148.8],"haR":[82,-177.7],"shL":[-41.1,-153.9],"elL":[-99.8,-191.3],"haL":[-155.3,-222.3],"hipR":[25.1,8.3],"knR":[84.5,116.2],"ftR":[136.8,227.1],"hipL":[-25.9,7.2],"knL":[-81.7,116.9],"ftL":[-138.2,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[-0.5,-99.6],"neck":[14.1,-167.1],"head":[25.4,-201.5],"shR":[62.5,-135.9],"elR":[137.3,-148.8],"haR":[81.5,-177.9],"shL":[-42,-153.8],"elL":[-100.6,-191],"haL":[-156.2,-221.8],"hipR":[25.1,8.1],"knR":[84.4,116.1],"ftR":[136.4,227.1],"hipL":[-25.9,7.5],"knL":[-81.8,117],"ftL":[-138.6,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[-1.4,-99.7],"neck":[13.1,-167.1],"head":[24.6,-201.5],"shR":[61.4,-136],"elR":[136.4,-149],"haR":[80.9,-178.2],"shL":[-42.9,-153.6],"elL":[-101.5,-190.6],"haL":[-157.1,-221.3],"hipR":[25.1,7.9],"knR":[84.3,115.9],"ftR":[136,227],"hipL":[-25.8,7.7],"knL":[-82,117.1],"ftL":[-139,228.7]},{"rootY":28.3,"hips":[0,0],"chest":[-2.2,-99.7],"neck":[12.3,-167.1],"head":[23.7,-201.5],"shR":[60.6,-136.1],"elR":[135.6,-149.3],"haR":[80.2,-178.4],"shL":[-43.6,-153.3],"elL":[-102.4,-190.2],"haL":[-158,-220.8],"hipR":[25.1,7.7],"knR":[84.1,115.8],"ftR":[135.6,227],"hipL":[-25.7,7.9],"knL":[-82.1,117.2],"ftL":[-139.4,228.6]},{"rootY":28.3,"hips":[0,0],"chest":[-3,-99.7],"neck":[11.6,-167.1],"head":[23,-201.6],"shR":[59.8,-136.2],"elR":[134.9,-149.6],"haR":[79.6,-178.5],"shL":[-44.3,-153.1],"elL":[-103.2,-189.7],"haL":[-158.8,-220.2],"hipR":[25.1,7.4],"knR":[83.9,115.7],"ftR":[135.3,227.1],"hipL":[-25.6,8.1],"knL":[-82.2,117.3],"ftL":[-139.7,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-3.8,-99.7],"neck":[11,-167.1],"head":[22.3,-201.6],"shR":[59.1,-136.2],"elR":[134.2,-150],"haR":[79.1,-178.6],"shL":[-44.8,-152.9],"elL":[-103.8,-189.4],"haL":[-159.6,-219.6],"hipR":[25.1,7.2],"knR":[83.6,115.5],"ftR":[135,227.1],"hipL":[-25.4,8.3],"knL":[-82.3,117.4],"ftL":[-140,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[-4.7,-99.7],"neck":[10.4,-167.1],"head":[21.7,-201.5],"shR":[58.3,-136],"elR":[133.6,-150.2],"haR":[78.7,-178.7],"shL":[-45.4,-152.7],"elL":[-104.5,-189.1],"haL":[-160.3,-219.2],"hipR":[25,6.9],"knR":[83.3,115.4],"ftR":[134.8,227.2],"hipL":[-25.3,8.6],"knL":[-82.4,117.6],"ftL":[-140.3,228.6]},{"rootY":28.1,"hips":[0,0],"chest":[-5.5,-99.7],"neck":[9.7,-167],"head":[21,-201.5],"shR":[57.5,-136],"elR":[132.9,-150.3],"haR":[78.2,-178.8],"shL":[-46.1,-152.6],"elL":[-105.2,-188.9],"haL":[-161,-219],"hipR":[25,6.7],"knR":[83,115.4],"ftR":[134.5,227.3],"hipL":[-25.2,8.8],"knL":[-82.4,117.7],"ftL":[-140.6,228.6]},{"rootY":28.1,"hips":[0,0],"chest":[-6.4,-99.7],"neck":[8.9,-167],"head":[20.3,-201.5],"shR":[56.7,-136],"elR":[132.2,-150.2],"haR":[77.8,-178.8],"shL":[-46.7,-152.7],"elL":[-106,-188.9],"haL":[-161.8,-219.1],"hipR":[25,6.4],"knR":[82.7,115.2],"ftR":[134.1,227.3],"hipL":[-25.1,9.1],"knL":[-82.6,117.8],"ftL":[-140.9,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[-7.4,-99.7],"neck":[8,-167],"head":[19.4,-201.4],"shR":[55.7,-136.1],"elR":[131.5,-150.2],"haR":[77.3,-178.8],"shL":[-47.5,-152.8],"elL":[-106.8,-189],"haL":[-162.6,-219.2],"hipR":[25,6.1],"knR":[82.5,115],"ftR":[133.6,227.2],"hipL":[-24.9,9.3],"knL":[-82.7,117.9],"ftL":[-141.4,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-8.5,-99.6],"neck":[7,-167],"head":[18.5,-201.4],"shR":[54.7,-136.1],"elR":[130.6,-150],"haR":[76.9,-178.8],"shL":[-48.4,-152.9],"elL":[-107.8,-189.1],"haL":[-163.5,-219.4],"hipR":[25,5.8],"knR":[82.3,114.8],"ftR":[133,227.1],"hipL":[-24.8,9.7],"knL":[-82.9,118.1],"ftL":[-142,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-9.7,-99.5],"neck":[6,-166.8],"head":[17.5,-201.3],"shR":[53.6,-136],"elR":[129.7,-149.8],"haR":[76.5,-178.9],"shL":[-49.3,-153.1],"elL":[-108.7,-189.4],"haL":[-164.4,-219.7],"hipR":[25,5.4],"knR":[81.9,114.7],"ftR":[132.2,227.2],"hipL":[-24.7,10],"knL":[-83.1,118.3],"ftL":[-142.6,228.4]},{"rootY":28.2,"hips":[0,0],"chest":[-10.9,-99.4],"neck":[5,-166.7],"head":[16.6,-201.1],"shR":[52.5,-136],"elR":[128.9,-149.5],"haR":[76.1,-178.9],"shL":[-50.2,-153.3],"elL":[-109.6,-189.7],"haL":[-165.2,-220.1],"hipR":[25.1,5],"knR":[81.6,114.5],"ftR":[131.5,227.2],"hipL":[-24.5,10.4],"knL":[-83.4,118.5],"ftL":[-143.3,228.3]},{"rootY":28.2,"hips":[0,0],"chest":[-11.8,-99.3],"neck":[4.2,-166.6],"head":[15.9,-200.9],"shR":[51.6,-135.9],"elR":[128.2,-149.2],"haR":[76,-178.8],"shL":[-50.9,-153.5],"elL":[-110.2,-190],"haL":[-165.7,-220.6],"hipR":[25.1,4.6],"knR":[81.3,114.2],"ftR":[130.9,227.2],"hipL":[-24.4,10.7],"knL":[-83.6,118.6],"ftL":[-144,228.3]},{"rootY":28.2,"hips":[0,0],"chest":[-12.5,-99.2],"neck":[3.6,-166.5],"head":[15.5,-200.8],"shR":[50.9,-135.8],"elR":[127.8,-148.7],"haR":[76.2,-178.7],"shL":[-51.3,-153.7],"elL":[-110.6,-190.1],"haL":[-166,-220.9],"hipR":[25.1,4.4],"knR":[81.1,114.1],"ftR":[130.6,227.1],"hipL":[-24.3,11],"knL":[-83.8,118.8],"ftL":[-144.4,228.2]},{"rootY":28.1,"hips":[0,0],"chest":[-12.9,-99.2],"neck":[3.3,-166.4],"head":[15.4,-200.7],"shR":[50.5,-135.6],"elR":[127.6,-148.3],"haR":[76.6,-178.6],"shL":[-51.5,-153.9],"elL":[-110.7,-190.3],"haL":[-165.9,-221],"hipR":[25.2,4.2],"knR":[80.9,114.1],"ftR":[130.2,227.2],"hipL":[-24.3,11.1],"knL":[-83.8,118.9],"ftL":[-144.6,228.2]},{"rootY":28.1,"hips":[0,0],"chest":[-12.9,-99.2],"neck":[3.3,-166.4],"head":[15.7,-200.6],"shR":[50.4,-135.4],"elR":[127.7,-147.5],"haR":[77.6,-178.3],"shL":[-51.3,-154.2],"elL":[-110.4,-190.3],"haL":[-165.5,-220.8],"hipR":[25.2,4.2],"knR":[81,114],"ftR":[130.1,227.2],"hipL":[-24.3,11.1],"knL":[-83.9,118.9],"ftL":[-144.7,228.3]},{"rootY":28.1,"hips":[0,0],"chest":[-12.4,-99.4],"neck":[3.9,-166.4],"head":[16.4,-200.5],"shR":[50.8,-135.2],"elR":[128.6,-146],"haR":[79.7,-177.6],"shL":[-50.6,-154.2],"elL":[-109.8,-189.5],"haL":[-164.5,-219.6],"hipR":[25.2,4.2],"knR":[81.3,114],"ftR":[130.6,227.1],"hipL":[-24.4,11.1],"knL":[-83.8,118.9],"ftL":[-144.5,228.4]},{"rootY":28.1,"hips":[0,0],"chest":[-11.3,-99.6],"neck":[5,-166.4],"head":[17.7,-200.5],"shR":[51.9,-134.9],"elR":[130.2,-142.9],"haR":[83.4,-176.1],"shL":[-49.3,-153.7],"elL":[-109,-187.4],"haL":[-163.4,-216.4],"hipR":[25.2,4.5],"knR":[81.7,114],"ftR":[131.5,226.9],"hipL":[-24.5,10.8],"knL":[-83.6,118.9],"ftL":[-144,228.5]},{"rootY":28.1,"hips":[0,0],"chest":[-9.5,-99.9],"neck":[6.8,-166.5],"head":[19.6,-200.4],"shR":[53.6,-134.8],"elR":[132.5,-137.4],"haR":[89,-172.8],"shL":[-47.3,-152.8],"elL":[-108.2,-183.4],"haL":[-161.9,-210.3],"hipR":[25.1,4.8],"knR":[82.2,114],"ftR":[132.3,226.7],"hipL":[-24.6,10.5],"knL":[-83.2,118.8],"ftL":[-143.3,228.5]},{"rootY":28.3,"hips":[0,0],"chest":[-7,-100.2],"neck":[9.4,-166.3],"head":[22.3,-200.3],"shR":[56.2,-134.6],"elR":[135.1,-129],"haR":[96.7,-166.9],"shL":[-44.5,-151.1],"elL":[-107.4,-176.7],"haL":[-159.6,-200.1],"hipR":[24.9,5.2],"knR":[82.9,113.8],"ftR":[133.1,226.5],"hipL":[-24.7,10.1],"knL":[-82.8,118.6],"ftL":[-142.4,228.3]},{"rootY":28.9,"hips":[0,0],"chest":[-4,-100.3],"neck":[12.8,-165.9],"head":[25.5,-199.9],"shR":[59.4,-133.6],"elR":[137.1,-117.8],"haR":[106.5,-157.8],"shL":[-41,-148.4],"elL":[-106.1,-166.8],"haL":[-156,-184.8],"hipR":[24.8,5.5],"knR":[83.7,113.5],"ftR":[133.8,225.9],"hipL":[-24.8,9.8],"knL":[-82.3,118.2],"ftL":[-141.1,227.6]},{"rootY":30.5,"hips":[0,0],"chest":[-1,-99.8],"neck":[16.8,-164.6],"head":[28.8,-198.9],"shR":[63.4,-132.4],"elR":[138,-105.5],"haR":[117.5,-145.2],"shL":[-36.9,-146.2],"elL":[-103.7,-154.1],"haL":[-150.9,-164.7],"hipR":[25,5.4],"knR":[84.3,112.6],"ftR":[134.6,224.2],"hipL":[-24.8,9.9],"knL":[-82.3,116.6],"ftL":[-139.2,225.3]},{"rootY":34.2,"hips":[0,0],"chest":[1.6,-98.8],"neck":[21.4,-162.3],"head":[32.4,-196.9],"shR":[68,-131.2],"elR":[138,-94.6],"haR":[128.2,-129.3],"shL":[-32.3,-145.7],"elL":[-99.6,-140.6],"haL":[-143.9,-141.2],"hipR":[25.2,5.1],"knR":[85.2,110.5],"ftR":[135.1,220.2],"hipL":[-24.6,10.3],"knL":[-82.5,113.3],"ftL":[-137.6,220.3]},{"rootY":40.7,"hips":[0,0],"chest":[3.7,-97.7],"neck":[25.7,-159.4],"head":[35.6,-194.2],"shR":[72,-129.1],"elR":[137.6,-86.7],"haR":[137.2,-111.6],"shL":[-27.6,-145.3],"elL":[-95.1,-127.4],"haL":[-134.9,-117.8],"hipR":[25.1,5.2],"knR":[86.3,106.8],"ftR":[135,213.7],"hipL":[-24.3,10.3],"knL":[-83.6,108.6],"ftL":[-137.9,213.2]},{"rootY":48.5,"hips":[0,0],"chest":[5.1,-97.1],"neck":[28.3,-157.2],"head":[37.4,-192.2],"shR":[73.8,-125.3],"elR":[136.7,-80.8],"haR":[143.5,-94.2],"shL":[-24.7,-142.1],"elL":[-92.5,-113.9],"haL":[-126.2,-96.3],"hipR":[24.7,5.7],"knR":[85.9,102.8],"ftR":[133,206.1],"hipL":[-24.2,9.8],"knL":[-87.3,103.2],"ftL":[-141.4,206.1]},{"rootY":54.4,"hips":[0,0],"chest":[5.7,-97.1],"neck":[28.5,-156.8],"head":[36.4,-192],"shR":[72.4,-120.9],"elR":[133.5,-75.6],"haR":[147.1,-77],"shL":[-25.2,-137.2],"elL":[-92.2,-100.1],"haL":[-120.6,-75.7],"hipR":[24.6,6.2],"knR":[82.4,101.2],"ftR":[127.8,200.8],"hipL":[-24.4,9.3],"knL":[-92.9,99.1],"ftL":[-147.6,201.3]},{"rootY":55.5,"hips":[0,0],"chest":[5.3,-97.5],"neck":[26.1,-158.1],"head":[32.5,-193.5],"shR":[68.9,-118.8],"elR":[126.8,-71.5],"haR":[148.4,-57.7],"shL":[-28.3,-133.8],"elL":[-91.8,-87.8],"haL":[-119.4,-55.2],"hipR":[24.8,6.6],"knR":[76.5,103.1],"ftR":[119.4,199.8],"hipL":[-24.7,9],"knL":[-97,98.3],"ftL":[-155.9,199.7]},{"rootY":51.9,"hips":[0,0],"chest":[4.5,-97.9],"neck":[21.8,-160.1],"head":[26.5,-195.6],"shR":[65.9,-120.9],"elR":[118.7,-70],"haR":[147.8,-36.9],"shL":[-32.9,-132.4],"elL":[-91.6,-79.3],"haL":[-122.9,-37.6],"hipR":[25,7.3],"knR":[70.6,106.9],"ftR":[109,203.3],"hipL":[-25.1,8.4],"knL":[-98.3,100.3],"ftL":[-164.1,200.3]},{"rootY":45.9,"hips":[0,0],"chest":[4.2,-98.4],"neck":[16.3,-162],"head":[19.6,-197.5],"shR":[63.6,-125.7],"elR":[111.1,-71.3],"haR":[145,-21.1],"shL":[-37.5,-130.4],"elL":[-93.9,-74.6],"haL":[-130.3,-27],"hipR":[25,8.1],"knR":[66.4,110.9],"ftR":[98.3,209.1],"hipL":[-25.5,7.5],"knL":[-98.4,102.2],"ftL":[-169.2,201.4]},{"rootY":39.6,"hips":[0,0],"chest":[3.6,-98.7],"neck":[9.3,-163.3],"head":[12,-198.8],"shR":[60.1,-130.6],"elR":[102.8,-74.2],"haR":[139,-15.6],"shL":[-42.8,-127.8],"elL":[-99.4,-72.3],"haL":[-140.4,-23],"hipR":[25.5,8.6],"knR":[62.8,114.9],"ftR":[87.6,215.5],"hipL":[-26.2,7.1],"knL":[-98.3,102.6],"ftL":[-169.9,202]},{"rootY":33.5,"hips":[0,0],"chest":[1.5,-98.8],"neck":[0.9,-163.8],"head":[4,-199.2],"shR":[54.1,-133.8],"elR":[93.4,-77.9],"haR":[130.7,-19.5],"shL":[-49.3,-126.5],"elL":[-106.9,-72],"haL":[-151,-23.3],"hipR":[26.5,8.1],"knR":[58,119],"ftR":[77.2,221.6],"hipL":[-26.7,7.6],"knL":[-97.7,102.4],"ftL":[-167.5,202.1]},{"rootY":28,"hips":[0,0],"chest":[-1.7,-98.6],"neck":[-7,-164],"head":[-2.8,-199.2],"shR":[47,-135],"elR":[86,-81.7],"haR":[124.8,-27.8],"shL":[-56.4,-127.4],"elL":[-115,-74.1],"haL":[-161.3,-26.5],"hipR":[27,7.1],"knR":[51,122.8],"ftR":[68.4,226.7],"hipL":[-26.5,8.6],"knL":[-95.2,103.3],"ftL":[-161.9,204]},{"rootY":23.3,"hips":[0,0],"chest":[-4.2,-98.6],"neck":[-12.9,-164.3],"head":[-7.3,-199.1],"shR":[41.3,-135.7],"elR":[82.6,-85.4],"haR":[124.8,-36],"shL":[-62.2,-129.4],"elL":[-122.9,-78.5],"haL":[-171.8,-32.6],"hipR":[26.7,6.4],"knR":[42.1,126],"ftR":[62.3,231.3],"hipL":[-25.8,9.2],"knL":[-91,105.6],"ftL":[-151.1,210.6]},{"rootY":19.7,"hips":[0,0],"chest":[-4.7,-98.8],"neck":[-14.9,-164.6],"head":[-8.4,-199.2],"shR":[39.4,-136.7],"elR":[83.7,-88.9],"haR":[131.2,-42.7],"shL":[-64.7,-131.9],"elL":[-128.4,-85],"haL":[-180.8,-41.9],"hipR":[26,6.3],"knR":[34.5,128.1],"ftR":[59.4,235.1],"hipL":[-25,9.3],"knL":[-83.2,110.4],"ftL":[-133.6,221.5]},{"rootY":17.3,"hips":[0,0],"chest":[-2.6,-99.2],"neck":[-11,-165],"head":[-5.1,-199.8],"shR":[42.5,-135.9],"elR":[89.1,-90],"haR":[144.3,-49.1],"shL":[-61.9,-134.8],"elL":[-128.5,-92.1],"haL":[-184.6,-52.9],"hipR":[26,6.9],"knR":[33.1,129.1],"ftR":[60.4,237.7],"hipL":[-25.2,8.7],"knL":[-70.5,117.3],"ftL":[-113.4,232.5]},{"rootY":15.9,"hips":[0,0],"chest":[1.5,-99.5],"neck":[-1.4,-165.4],"head":[2.3,-200.6],"shR":[50,-132.9],"elR":[98,-86.4],"haR":[161.1,-56.4],"shL":[-53.6,-137.1],"elL":[-122.6,-98.1],"haL":[-181.9,-63.5],"hipR":[26.7,8],"knR":[39.2,129],"ftR":[64.9,238.8],"hipL":[-26.6,7.6],"knL":[-57,122.8],"ftL":[-97.7,239.4]},{"rootY":15.4,"hips":[0,0],"chest":[7.5,-99.2],"neck":[11.4,-165.3],"head":[11.7,-200.5],"shR":[60.8,-130.7],"elR":[107.8,-78.7],"haR":[174.9,-66.5],"shL":[-41.5,-137.3],"elL":[-111.2,-100.4],"haL":[-173.7,-73.1],"hipR":[25.2,10.3],"knR":[49.2,127.7],"ftR":[71,238.7],"hipL":[-26.9,5.3],"knL":[-49.8,124.1],"ftL":[-89.1,241.1]},{"rootY":15.6,"hips":[0,0],"chest":[14.5,-97.9],"neck":[24.2,-163.8],"head":[20.6,-198.7],"shR":[72.9,-131.7],"elR":[115.5,-70.9],"haR":[178.4,-81],"shL":[-28.1,-134.7],"elL":[-94.8,-95.4],"haL":[-160,-80],"hipR":[19.8,13.2],"knR":[56.7,126],"ftR":[75.9,238.4],"hipL":[-23.7,2],"knL":[-48.9,122],"ftL":[-85.4,240]},{"rootY":16.7,"hips":[0,0],"chest":[19.4,-96.3],"neck":[33.9,-161.1],"head":[27.4,-195.6],"shR":[82.5,-135.6],"elR":[119.8,-69.2],"haR":[170.1,-95.9],"shL":[-18,-129.6],"elL":[-78,-82.8],"haL":[-142.6,-83.7],"hipR":[14.2,14.9],"knR":[58.7,124.9],"ftR":[77.8,237.8],"hipL":[-19.2,-0.1],"knL":[-47.5,119.7],"ftL":[-85.3,237.6]},{"rootY":18.6,"hips":[0,0],"chest":[19.4,-95.5],"neck":[36.1,-159.2],"head":[29.4,-193.7],"shR":[85.1,-139.6],"elR":[122.8,-74.8],"haR":[157.3,-105.4],"shL":[-15.7,-123.8],"elL":[-68.6,-67.6],"haL":[-127,-85.5],"hipR":[12.4,15.5],"knR":[56.3,125],"ftR":[76.2,236.2],"hipL":[-17.5,-0.8],"knL":[-45,119.1],"ftL":[-90.5,234.7]},{"rootY":20.9,"hips":[0,0],"chest":[15.9,-96.2],"neck":[28.7,-160.2],"head":[25.6,-195.2],"shR":[79.3,-142.2],"elR":[126.3,-87.6],"haR":[150,-115.1],"shL":[-22.1,-121.1],"elL":[-71.4,-59.2],"haL":[-119.2,-87.9],"hipR":[15.5,15.2],"knR":[52.6,125.4],"ftR":[72.6,234],"hipL":[-20.1,-0.4],"knL":[-44.4,119.3],"ftL":[-99.3,230.7]},{"rootY":22.5,"hips":[0,0],"chest":[9.3,-97.7],"neck":[13.1,-163],"head":[16.1,-197.9],"shR":[66.2,-144.3],"elR":[124.6,-103.6],"haR":[150,-128.3],"shL":[-36.8,-124],"elL":[-86.5,-62.9],"haL":[-119.7,-94.5],"hipR":[21,13.5],"knR":[49.6,125.2],"ftR":[65.7,232.4],"hipL":[-24.4,1.8],"knL":[-52.8,116.7],"ftL":[-107.6,227]},{"rootY":22.4,"hips":[0,0],"chest":[-0.9,-98.4],"neck":[-5.1,-164.5],"head":[3.4,-198.4],"shR":[49.8,-148.6],"elR":[116.8,-118.2],"haR":[157,-142.8],"shL":[-55.7,-131.2],"elL":[-108.8,-77],"haL":[-120.6,-107.5],"hipR":[25.8,9.5],"knR":[47.3,124.1],"ftR":[55.3,231.4],"hipL":[-26.8,6.1],"knL":[-65.3,112.8],"ftL":[-111.7,225.9]},{"rootY":19.9,"hips":[0,0],"chest":[-10.1,-97.5],"neck":[-18.8,-163.5],"head":[-6.9,-196.4],"shR":[36.2,-152.9],"elR":[109.6,-129],"haR":[165.6,-156.7],"shL":[-70.2,-137.7],"elL":[-126.9,-96.8],"haL":[-112,-123.6],"hipR":[27.1,5.8],"knR":[44.7,123.2],"ftR":[48.3,230.5],"hipL":[-26,9.8],"knL":[-69.1,114.1],"ftL":[-110,229.4]},{"rootY":17.6,"hips":[0,0],"chest":[-15.5,-96.6],"neck":[-26.2,-162.1],"head":[-12.5,-194.2],"shR":[28.6,-152.9],"elR":[105.5,-135.2],"haR":[168.8,-164.1],"shL":[-77.6,-142.2],"elL":[-134.2,-120.5],"haL":[-94.6,-138.8],"hipR":[26,3.9],"knR":[39,122.5],"ftR":[50.4,228.7],"hipL":[-23.9,11.6],"knL":[-65.5,118.6],"ftL":[-106.6,234.8]},{"rootY":17.7,"hips":[0,0],"chest":[-16.8,-96.3],"neck":[-28,-161.3],"head":[-14.2,-193.3],"shR":[26.4,-151.5],"elR":[103.1,-131.5],"haR":[161.4,-169.6],"shL":[-78.9,-147],"elL":[-131.1,-146.6],"haL":[-76.6,-151.8],"hipR":[24.5,3.6],"knR":[29.5,123.1],"ftR":[60.1,226.6],"hipL":[-22.1,11.8],"knL":[-62.8,120.6],"ftL":[-104.3,237.4]},{"rootY":19.8,"hips":[0,0],"chest":[-13.9,-96.7],"neck":[-23.7,-161.3],"head":[-12,-194],"shR":[30.7,-148.7],"elR":[105.2,-121.6],"haR":[148.1,-176.7],"shL":[-73.7,-153.3],"elL":[-121.8,-170],"haL":[-63.9,-165.6],"hipR":[23.8,4.8],"knR":[21.9,125.4],"ftR":[70.5,225.3],"hipL":[-21.9,10.7],"knL":[-63.8,118.4],"ftL":[-102,236]},{"rootY":21.1,"hips":[0,0],"chest":[-8,-97.4],"neck":[-12.9,-162.2],"head":[-4.8,-195.9],"shR":[41.2,-142.8],"elR":[115.2,-114.4],"haR":[135.7,-180.8],"shL":[-62.2,-159.5],"elL":[-112.4,-185.7],"haL":[-58.3,-182.6],"hipR":[24.8,6.5],"knR":[22.8,126.9],"ftR":[77,225.3],"hipL":[-24,9.2],"knL":[-64.8,115.9],"ftL":[-97.5,234.6]},{"rootY":19.5,"hips":[0,0],"chest":[0.2,-98.1],"neck":[3.4,-163.1],"head":[7.1,-197.4],"shR":[55.8,-136.9],"elR":[132,-115.2],"haR":[128.5,-181.8],"shL":[-46.3,-163.7],"elL":[-104.3,-191.7],"haL":[-59.4,-202.1],"hipR":[26.4,8.5],"knR":[33.9,125.7],"ftR":[82.7,225.8],"hipL":[-26.8,7.2],"knL":[-61.3,116.8],"ftL":[-88.9,236.2]},{"rootY":16.2,"hips":[0,0],"chest":[10.4,-97.6],"neck":[21.4,-162.7],"head":[21.3,-197],"shR":[72.6,-137.2],"elR":[151.5,-129.6],"haR":[129.2,-182.7],"shL":[-28.7,-165.4],"elL":[-95.9,-190.1],"haL":[-65.1,-220.9],"hipR":[24.7,10.9],"knR":[51.1,121.4],"ftR":[91.6,226.1],"hipL":[-26.6,4.6],"knL":[-52.4,119.9],"ftL":[-77.6,239.4]},{"rootY":13.5,"hips":[0,0],"chest":[17.9,-96.2],"neck":[34,-161.1],"head":[32.5,-195.1],"shR":[84.1,-142.3],"elR":[161.8,-158.4],"haR":[134.1,-185],"shL":[-16.2,-162.9],"elL":[-89.2,-184],"haL":[-74.8,-235.4],"hipR":[19.5,12.4],"knR":[63.2,117.7],"ftR":[97.3,227.9],"hipL":[-22.6,2.9],"knL":[-43.7,122.4],"ftL":[-73.2,241.3]},{"rootY":13.6,"hips":[0,0],"chest":[18.8,-95.7],"neck":[38.1,-160.1],"head":[37.6,-194],"shR":[84.9,-151.1],"elR":[153.7,-190.4],"haR":[139.6,-189.8],"shL":[-11.7,-157],"elL":[-86.6,-177.7],"haL":[-88.9,-243.2],"hipR":[14.2,12.7],"knR":[66.3,117],"ftR":[92.6,231.3],"hipL":[-17.4,2.5],"knL":[-40.1,123.2],"ftL":[-81.3,240]},{"rootY":17.4,"hips":[0,0],"chest":[13.2,-96.7],"neck":[33.9,-160.6],"head":[37.2,-194.6],"shR":[75.4,-161.8],"elR":[135.2,-212.7],"haR":[142.8,-200.5],"shL":[-14.1,-151.7],"elL":[-88.6,-172.7],"haL":[-104.9,-240.6],"hipR":[11.1,12.6],"knR":[66.5,117.1],"ftR":[80.1,233.5],"hipL":[-13.9,2.7],"knL":[-41,122.7],"ftL":[-94.4,235.8]},{"rootY":23.2,"hips":[0,0],"chest":[5.8,-97.4],"neck":[26.1,-161.2],"head":[34.7,-194.8],"shR":[63.7,-168.5],"elR":[118.4,-217.2],"haR":[147.4,-215.9],"shL":[-20.2,-149.3],"elL":[-93.9,-163.7],"haL":[-118.2,-228.9],"hipR":[11.3,13.2],"knR":[71.7,115.1],"ftR":[71.5,231.2],"hipL":[-13.6,2.2],"knL":[-41.6,121.9],"ftL":[-102.9,231.2]},{"rootY":28.2,"hips":[0,0],"chest":[1.9,-97.1],"neck":[20,-161],"head":[31.7,-194.3],"shR":[58.3,-166.6],"elR":[109.3,-202.6],"haR":[152,-229.5],"shL":[-25.9,-144.9],"elL":[-98.2,-143.9],"haL":[-126.8,-207.6],"hipR":[14.6,13.9],"knR":[80.6,112.1],"ftR":[70.3,226.4],"hipL":[-16.7,1.3],"knL":[-39.6,121.7],"ftL":[-105.8,228]},{"rootY":30.2,"hips":[0,0],"chest":[1.6,-96.9],"neck":[15,-161.2],"head":[26.7,-194.7],"shR":[57.5,-159.4],"elR":[106.2,-175.6],"haR":[150.7,-226.1],"shL":[-30,-137.9],"elL":[-98.5,-116.3],"haL":[-130.3,-175.9],"hipR":[19.7,13.3],"knR":[84.3,111.7],"ftR":[68.8,224],"hipL":[-22.2,2],"knL":[-38.5,121.9],"ftL":[-108.7,225.7]},{"rootY":28.5,"hips":[0,0],"chest":[-0.1,-97.1],"neck":[7,-161.4],"head":[17.1,-195.5],"shR":[54.1,-153.4],"elR":[99.2,-143],"haR":[143.4,-195.4],"shL":[-36.3,-132.8],"elL":[-96.7,-91.8],"haL":[-129.7,-132.8],"hipR":[24.5,11.1],"knR":[75.3,116.2],"ftR":[60.3,226.2],"hipL":[-26.4,4.5],"knL":[-43.7,121.7],"ftL":[-115,224.5]},{"rootY":24.6,"hips":[0,0],"chest":[-4.7,-96.9],"neck":[-2.6,-160.4],"head":[5.1,-195],"shR":[47.8,-147],"elR":[82.2,-115.5],"haR":[130.9,-150],"shL":[-45,-132.1],"elL":[-94.1,-76.9],"haL":[-112.8,-84.7],"hipR":[26.4,9.2],"knR":[57.9,121.7],"ftR":[52.2,229.7],"hipL":[-27.2,6.5],"knL":[-52.1,120.2],"ftL":[-115.9,225.8]},{"rootY":21.9,"hips":[0,0],"chest":[-9.2,-96.6],"neck":[-10.2,-158.7],"head":[-5.2,-193.2],"shR":[41,-137.7],"elR":[60.9,-96.2],"haR":[119,-92.9],"shL":[-52.5,-133.4],"elL":[-88.3,-68.7],"haL":[-75.4,-52.5],"hipR":[25.9,8.1],"knR":[41.4,124.8],"ftR":[55,230.2],"hipL":[-25.7,7.5],"knL":[-62,117.2],"ftL":[-101.2,229.3]},{"rootY":22.9,"hips":[0,0],"chest":[-11.3,-96.6],"neck":[-14.2,-157.6],"head":[-11.9,-191.6],"shR":[35.6,-131],"elR":[47.2,-84.4],"haR":[102,-46.1],"shL":[-57.2,-134.8],"elL":[-78.6,-64.4],"haL":[-31.5,-48.2],"hipR":[24.8,7.1],"knR":[30.1,126.4],"ftR":[68.5,227.2],"hipL":[-24,8.5],"knL":[-72.8,114.8],"ftL":[-84.8,231]},{"rootY":25.9,"hips":[0,0],"chest":[-10.3,-96.8],"neck":[-14,-157.8],"head":[-12.8,-191.5],"shR":[35.6,-128.8],"elR":[47.5,-73],"haR":[91.7,-19.1],"shL":[-59,-135.8],"elL":[-65.3,-65.3],"haL":[-0.6,-64.1],"hipR":[24.4,6.7],"knR":[27.4,127.5],"ftR":[82.1,224.3],"hipL":[-23.5,8.9],"knL":[-80,112.7],"ftL":[-78.3,229.5]},{"rootY":27.3,"hips":[0,0],"chest":[-8,-97.1],"neck":[-10.5,-159.3],"head":[-8,-193.2],"shR":[41.3,-129.6],"elR":[54.6,-64.7],"haR":[90.1,-11.9],"shL":[-57.2,-138.2],"elL":[-55,-73.4],"haL":[11.6,-89.7],"hipR":[25.3,7],"knR":[32.5,127.7],"ftR":[90,224.1],"hipL":[-24.7,8.6],"knL":[-81.4,112.1],"ftL":[-76.7,227.2]},{"rootY":24.7,"hips":[0,0],"chest":[-5.1,-97.4],"neck":[-3.7,-160.8],"head":[1.3,-195],"shR":[48.7,-130.3],"elR":[69.6,-62.3],"haR":[100.2,-23.3],"shL":[-52,-142.5],"elL":[-54.6,-88.2],"haL":[9.4,-115.5],"hipR":[26.5,7.9],"knR":[42.4,126.9],"ftR":[95.7,226],"hipL":[-26.5,7.8],"knL":[-74.7,115],"ftL":[-72.8,226.8]},{"rootY":18.7,"hips":[0,0],"chest":[-2.8,-97.5],"neck":[4,-161.2],"head":[11.6,-195.7],"shR":[55.7,-132.1],"elR":[94.1,-68.5],"haR":[115.5,-47.4],"shL":[-45.2,-145],"elL":[-64.5,-109.7],"haL":[-0.6,-137.2],"hipR":[26.2,9.1],"knR":[52.4,125.2],"ftR":[101,228.3],"hipL":[-26.9,6.6],"knL":[-62.2,119.2],"ftL":[-71.3,227.6]},{"rootY":11.4,"hips":[0,0],"chest":[-2,-97.4],"neck":[9.8,-161],"head":[19.4,-195.5],"shR":[60.4,-136],"elR":[120.7,-89.1],"haR":[128.5,-81],"shL":[-38.6,-144.8],"elL":[-77.5,-137.6],"haL":[-12.6,-156.3],"hipR":[24.2,10.2],"knR":[60,122.4],"ftR":[99.6,229.8],"hipL":[-25.3,5.4],"knL":[-49.4,122.2],"ftL":[-80.9,227.4]},{"rootY":6.5,"hips":[0,0],"chest":[-1.3,-97.5],"neck":[13.1,-161.3],"head":[23.2,-195.9],"shR":[62.4,-141],"elR":[138.1,-124.7],"haR":[137,-118.2],"shL":[-33,-147.5],"elL":[-80.9,-167.2],"haL":[-28,-178.9],"hipR":[21.1,11.1],"knR":[66.9,117.6],"ftR":[84.9,229.2],"hipL":[-22.5,4.5],"knL":[-40.8,124.1],"ftL":[-98.2,225.6]},{"rootY":6.5,"hips":[0,0],"chest":[0.1,-97.7],"neck":[14.4,-162.6],"head":[23.2,-197.2],"shR":[62.6,-150.8],"elR":[138.5,-167.2],"haR":[141.8,-159],"shL":[-29,-153.7],"elL":[-72.4,-193.5],"haL":[-49.9,-209.5],"hipR":[18,11.8],"knR":[73.5,113.5],"ftR":[58.5,227.7],"hipL":[-19.6,3.7],"knL":[-40.7,124],"ftL":[-113.5,223.4]},{"rootY":10.7,"hips":[0,0],"chest":[1.1,-97.9],"neck":[14.9,-163.7],"head":[21.2,-197.8],"shR":[59.5,-164.1],"elR":[124.3,-204.7],"haR":[138,-201.8],"shL":[-25.2,-160.4],"elL":[-59.1,-208.5],"haL":[-65.8,-236],"hipR":[16.5,12],"knR":[76.1,114.2],"ftR":[35.7,228.3],"hipL":[-18.1,3.5],"knL":[-46.8,122.2],"ftL":[-123,221.6]},{"rootY":17.5,"hips":[0,0],"chest":[1.5,-98],"neck":[15.5,-164.1],"head":[20,-197],"shR":[53.8,-174.6],"elR":[104.7,-227.3],"haR":[128.2,-239.8],"shL":[-19.6,-165.2],"elL":[-52.2,-213.6],"haL":[-69.2,-253.5],"hipR":[16.2,11.9],"knR":[76.9,116.2],"ftR":[24.2,228.5],"hipL":[-17.9,3.6],"knL":[-53.4,119.8],"ftL":[-129,219.7]},{"rootY":24.7,"hips":[0,0],"chest":[1,-98.1],"neck":[14.8,-163.9],"head":[19.8,-196.4],"shR":[50.2,-177.4],"elR":[92.3,-232.7],"haR":[117.5,-271.1],"shL":[-10.4,-169.6],"elL":[-58,-212.3],"haL":[-69.3,-266.5],"hipR":[16.2,11.9],"knR":[79.6,115.9],"ftR":[20.9,225.8],"hipL":[-17.9,3.6],"knL":[-57.9,118.2],"ftL":[-134.5,217.1]},{"rootY":29.3,"hips":[0,0],"chest":[0.5,-98],"neck":[12.5,-164],"head":[19.2,-196.5],"shR":[50.4,-174.3],"elR":[93.4,-226.1],"haR":[109.4,-285.9],"shL":[-15.3,-170.4],"elL":[-69.1,-203.5],"haL":[-78.7,-261],"hipR":[16.9,11.9],"knR":[82.6,114.5],"ftR":[20.5,221.8],"hipL":[-18.5,3.5],"knL":[-59.7,118.1],"ftL":[-138.9,215.1]},{"rootY":28.8,"hips":[0,0],"chest":[0.9,-97.9],"neck":[10.1,-164.4],"head":[18.3,-196.8],"shR":[50.9,-170.5],"elR":[99.5,-212.7],"haR":[107.1,-281.7],"shL":[-32.5,-155.2],"elL":[-80.6,-194.1],"haL":[-99.9,-235.4],"hipR":[19.3,11.8],"knR":[81.4,115.2],"ftR":[19.8,220.6],"hipL":[-21,3.7],"knL":[-59.1,118.8],"ftL":[-140,214.5]},{"rootY":24,"hips":[0,0],"chest":[0.5,-97.6],"neck":[6,-164],"head":[15.6,-196.1],"shR":[49.2,-167.2],"elR":[98,-194.3],"haR":[117.6,-259.5],"shL":[-39.8,-150.8],"elL":[-97,-177.4],"haL":[-125.1,-196.5],"hipR":[23.2,11],"knR":[71.9,118.2],"ftR":[21.3,221.6],"hipL":[-24.7,4.5],"knL":[-59.4,117.3],"ftL":[-136.6,214.4]},{"rootY":18.3,"hips":[0,0],"chest":[-1.5,-96.9],"neck":[1.2,-162.3],"head":[11.1,-194.4],"shR":[46.9,-161.9],"elR":[87.9,-175.1],"haR":[133.9,-217.2],"shL":[-46.1,-147.7],"elL":[-110.2,-154.6],"haL":[-142.2,-153.8],"hipR":[26,9.6],"knR":[53.5,121.8],"ftR":[32.2,220.6],"hipL":[-26.9,6],"knL":[-64.8,111.5],"ftL":[-126.7,215.6]},{"rootY":14.9,"hips":[0,0],"chest":[-3.9,-96.4],"neck":[-3.3,-160.6],"head":[5.9,-193],"shR":[44.6,-152.9],"elR":[78.7,-155.4],"haR":[137.5,-167],"shL":[-50.8,-144.9],"elL":[-116.6,-125.9],"haL":[-150,-112],"hipR":[26.4,8.3],"knR":[33.7,125.3],"ftR":[55.5,217.6],"hipL":[-26.8,7.4],"knL":[-73.4,106],"ftL":[-110.2,220.4]},{"rootY":15.8,"hips":[0,0],"chest":[-6.2,-96.3],"neck":[-7.8,-159.7],"head":[0.1,-192.5],"shR":[41.5,-145.9],"elR":[74.5,-131.1],"haR":[135.4,-112.2],"shL":[-54.6,-141.8],"elL":[-114.4,-96.8],"haL":[-150.2,-77.2],"hipR":[25.7,7.2],"knR":[21.3,128.5],"ftR":[84.2,215.7],"hipL":[-25.6,8.4],"knL":[-80.3,105.3],"ftL":[-93.9,226.7]},{"rootY":20.6,"hips":[0,0],"chest":[-6.7,-96.6],"neck":[-10.4,-159],"head":[-4.7,-192.2],"shR":[40.7,-143.6],"elR":[71.5,-104.8],"haR":[124.1,-61.9],"shL":[-57.1,-137],"elL":[-104.9,-74.8],"haL":[-136.2,-50.8],"hipR":[25.1,7.2],"knR":[25.3,130.2],"ftR":[107.7,216.3],"hipL":[-24.8,8.5],"knL":[-82.6,106.1],"ftL":[-83.3,229.4]},{"rootY":25.5,"hips":[0,0],"chest":[-6.5,-96.6],"neck":[-11.2,-157.4],"head":[-8.5,-190.6],"shR":[42.2,-139.1],"elR":[67.9,-83.7],"haR":[109.8,-27.7],"shL":[-59.1,-131.9],"elL":[-97.9,-62.7],"haL":[-115.1,-37.7],"hipR":[25.5,7.1],"knR":[37.3,129.4],"ftR":[119.2,218.6],"hipL":[-25,8.6],"knL":[-84.5,104.9],"ftL":[-79,227.6]},{"rootY":27.8,"hips":[0,0],"chest":[-5.7,-96.5],"neck":[-10.5,-155.9],"head":[-10,-188.8],"shR":[44.4,-134.5],"elR":[71.2,-71.6],"haR":[99.1,-11.7],"shL":[-60.8,-130],"elL":[-95.9,-58.9],"haL":[-93.8,-39.2],"hipR":[26.3,7.3],"knR":[50,126.8],"ftR":[123.1,219.5],"hipL":[-26,8.3],"knL":[-86.5,102.5],"ftL":[-77,224.1]},{"rootY":25.7,"hips":[0,0],"chest":[-4.2,-96.9],"neck":[-8.4,-156.3],"head":[-7.3,-188.8],"shR":[46.6,-132.1],"elR":[84.3,-66],"haR":[90.3,-13],"shL":[-60.5,-131.1],"elL":[-96.9,-61.4],"haL":[-80.6,-52.6],"hipR":[26.5,8.6],"knR":[59.4,124.6],"ftR":[124.8,220.6],"hipL":[-26.9,7.1],"knL":[-85.2,102.7],"ftL":[-74.7,223.7]},{"rootY":19.1,"hips":[0,0],"chest":[-2.4,-97.6],"neck":[-5.6,-158.3],"head":[-1.9,-190.1],"shR":[48.9,-131.4],"elR":[96,-67.7],"haR":[84.3,-28.9],"shL":[-58.1,-133.7],"elL":[-100.8,-68.9],"haL":[-80.9,-69.1],"hipR":[26.2,9.5],"knR":[64.4,124.7],"ftR":[124.3,224.7],"hipL":[-27.2,6.1],"knL":[-79,106.7],"ftL":[-71.7,228.1]},{"rootY":12.1,"hips":[0,0],"chest":[-0.8,-97.9],"neck":[-2.5,-160.5],"head":[3.9,-191.8],"shR":[51.6,-133.9],"elR":[101.4,-76],"haR":[79.9,-53.9],"shL":[-55.8,-137.5],"elL":[-109.1,-83.4],"haL":[-89.8,-96.3],"hipR":[26.1,9.9],"knR":[67.2,125.2],"ftR":[116.5,229.6],"hipL":[-27.3,5.7],"knL":[-71.9,111.6],"ftL":[-68.8,233.3]},{"rootY":7.9,"hips":[0,0],"chest":[0.2,-98],"neck":[-0.3,-162],"head":[7.6,-193.9],"shR":[53.6,-138.7],"elR":[103,-88],"haR":[75.7,-83.3],"shL":[-54.1,-139.8],"elL":[-120,-106.7],"haL":[-102.4,-133.2],"hipR":[26,10.1],"knR":[68,125.6],"ftR":[99.1,233.8],"hipL":[-27.4,5.5],"knL":[-68.3,114.7],"ftL":[-69.2,236.1]},{"rootY":6.9,"hips":[0,0],"chest":[0.8,-98],"neck":[0.7,-163.2],"head":[8.4,-196.5],"shR":[53.9,-143.8],"elR":[104,-104.1],"haR":[72.9,-114.2],"shL":[-53.6,-143.8],"elL":[-126.7,-134.3],"haL":[-113.1,-172.1],"hipR":[25.6,10.7],"knR":[67.2,126.4],"ftR":[77.5,237.4],"hipL":[-27.3,4.9],"knL":[-66,116],"ftL":[-75.7,236.3]},{"rootY":8.8,"hips":[0,0],"chest":[1.4,-98.2],"neck":[1.9,-164.4],"head":[7.8,-198.9],"shR":[54.1,-148.1],"elR":[106.3,-122.7],"haR":[72.8,-144.7],"shL":[-52.5,-149.5],"elL":[-127,-161.1],"haL":[-122.2,-206.6],"hipR":[24.8,11.5],"knR":[65.6,127.4],"ftR":[60.2,240],"hipL":[-27,4],"knL":[-60.9,117.6],"ftL":[-85.6,234.9]},{"rootY":12,"hips":[0,0],"chest":[2.1,-98.3],"neck":[3.6,-164.8],"head":[6.5,-200.2],"shR":[54.9,-151.7],"elR":[109.9,-140.1],"haR":[75.5,-173],"shL":[-50.3,-154.2],"elL":[-121.8,-182.8],"haL":[-130.8,-233.9],"hipR":[24.1,12],"knR":[64.5,127.6],"ftR":[52.3,240],"hipL":[-26.5,3.5],"knL":[-55.2,119.6],"ftL":[-92.8,233.2]},{"rootY":13.5,"hips":[0,0],"chest":[2.6,-98.2],"neck":[4,-164.2],"head":[2.8,-200],"shR":[54.4,-154.8],"elR":[113.6,-149.9],"haR":[81.3,-193.3],"shL":[-48.4,-157.9],"elL":[-118.1,-192.5],"haL":[-136.8,-249],"hipR":[23.8,12.2],"knR":[62.8,128.1],"ftR":[50.6,239.4],"hipL":[-26.3,3.3],"knL":[-55,120.1],"ftL":[-95.5,233]},{"rootY":11.6,"hips":[0,0],"chest":[2,-98.4],"neck":[0.8,-163.7],"head":[-4,-199.4],"shR":[50.8,-156.7],"elR":[113.4,-147.9],"haR":[88.8,-200.8],"shL":[-49.3,-161.2],"elL":[-122.4,-187.6],"haL":[-139.8,-250.8],"hipR":[24.4,11.8],"knR":[58.8,129.4],"ftR":[48.9,241],"hipL":[-26.8,3.6],"knL":[-60.8,119.4],"ftL":[-97.6,234.9]},{"rootY":7.8,"hips":[0,0],"chest":[0,-99.1],"neck":[-5.6,-164.1],"head":[-12.3,-199.4],"shR":[45.3,-156.2],"elR":[106.8,-136.5],"haR":[95,-194.5],"shL":[-55.3,-160.1],"elL":[-131.1,-171.9],"haL":[-145.9,-238.4],"hipR":[25.4,10.7],"knR":[52.3,130.7],"ftR":[46.4,243.9],"hipL":[-27.3,4.8],"knL":[-65.9,119.9],"ftL":[-101.2,237.7]},{"rootY":5,"hips":[0,0],"chest":[-2.6,-99.7],"neck":[-11.9,-164.9],"head":[-19.4,-199.8],"shR":[40.5,-154.2],"elR":[97.9,-121.7],"haR":[98.6,-175.2],"shL":[-62.8,-154.5],"elL":[-138.1,-149.4],"haL":[-154.3,-214.9],"hipR":[26.3,9.3],"knR":[47,130.8],"ftR":[48.3,244.4],"hipL":[-27.2,6.2],"knL":[-66,122.2],"ftL":[-101.7,240.7]},{"rootY":4.4,"hips":[0,0],"chest":[-4.2,-99.9],"neck":[-16,-165.3],"head":[-23.4,-199.9],"shR":[37.6,-151.1],"elR":[93.4,-108.7],"haR":[99.8,-145.9],"shL":[-67.3,-146.2],"elL":[-138.5,-123.6],"haL":[-159.7,-182.5],"hipR":[26.6,8.5],"knR":[46.5,129.8],"ftR":[58.5,241.9],"hipL":[-26.9,7],"knL":[-63.6,124.1],"ftL":[-94.5,243.3]},{"rootY":6.9,"hips":[0,0],"chest":[-4.7,-99.6],"neck":[-18.3,-165.2],"head":[-24.4,-199.7],"shR":[36,-146.5],"elR":[93.8,-101],"haR":[96.4,-115.9],"shL":[-68.1,-137.6],"elL":[-132.4,-99.1],"haL":[-157.2,-141.9],"hipR":[26.6,8.1],"knR":[50.2,128.5],"ftR":[74.6,237.2],"hipL":[-26.6,7.5],"knL":[-65.1,123.3],"ftL":[-82.5,242.7]},{"rootY":13.4,"hips":[0,0],"chest":[-5.2,-98.9],"neck":[-19.3,-164.7],"head":[-23.5,-199.4],"shR":[34.5,-141.9],"elR":[95,-97.8],"haR":[88.9,-90.5],"shL":[-67.3,-131.8],"elL":[-125.2,-82.7],"haL":[-145.2,-102],"hipR":[26.6,7.2],"knR":[54.1,126.9],"ftR":[90.4,229.3],"hipL":[-26,8.5],"knL":[-71.7,119.7],"ftL":[-74.6,236.6]},{"rootY":20.8,"hips":[0,0],"chest":[-5,-98.1],"neck":[-18.2,-163.8],"head":[-20.3,-199],"shR":[34.9,-137.3],"elR":[96.8,-95],"haR":[82.7,-75.4],"shL":[-65.5,-128.5],"elL":[-120.4,-74.5],"haL":[-130,-68.6],"hipR":[26.4,6.6],"knR":[57.3,125.9],"ftR":[101.6,219.8],"hipL":[-25.7,9],"knL":[-76.5,116.2],"ftL":[-72.1,229.4]},{"rootY":24.4,"hips":[0,0],"chest":[-4,-97.6],"neck":[-14.7,-162.9],"head":[-14.9,-198.5],"shR":[38,-133.5],"elR":[99.8,-89.2],"haR":[81.1,-68.5],"shL":[-62.3,-126.5],"elL":[-117.7,-71.4],"haL":[-117.9,-47.2],"hipR":[26.6,6.8],"knR":[61.1,125],"ftR":[107.6,214],"hipL":[-26,8.8],"knL":[-75.9,115.8],"ftL":[-70.5,226.3]},{"rootY":21.2,"hips":[0,0],"chest":[-3.1,-97.6],"neck":[-9.8,-162.6],"head":[-8.1,-198.2],"shR":[42.9,-131.5],"elR":[104.5,-84.3],"haR":[87.6,-71.2],"shL":[-59.1,-126.3],"elL":[-115.6,-71],"haL":[-112.2,-39.9],"hipR":[26.9,6.9],"knR":[64.7,124.1],"ftR":[110.7,215.5],"hipL":[-26.4,8.8],"knL":[-70.7,119.1],"ftL":[-67.7,228.3]},{"rootY":13.4,"hips":[0,0],"chest":[-3.1,-97.9],"neck":[-5.3,-163.1],"head":[-1.4,-198.6],"shR":[47.4,-132.1],"elR":[110.9,-86.7],"haR":[96.1,-86.2],"shL":[-56.8,-129.1],"elL":[-116.1,-76.5],"haL":[-113.9,-51.4],"hipR":[27.1,6.7],"knR":[66.8,123.3],"ftR":[110.2,220.6],"hipL":[-26.4,9],"knL":[-64.2,123.1],"ftL":[-66.9,232.8]},{"rootY":4.8,"hips":[0,0],"chest":[-4.2,-98.2],"neck":[-2.6,-164],"head":[3.7,-198.9],"shR":[50,-134.1],"elR":[118.7,-98.1],"haR":[103.5,-111.6],"shL":[-56,-133.7],"elL":[-121.8,-89.8],"haL":[-119.5,-80.8],"hipR":[26.9,6.5],"knR":[67.5,122.8],"ftR":[103.1,224.1],"hipL":[-26.2,9.2],"knL":[-58.6,125.8],"ftL":[-72.4,236.3]},{"rootY":-1.7,"hips":[0,0],"chest":[-6.2,-98.1],"neck":[-2.3,-164.7],"head":[6.5,-198.6],"shR":[50.5,-137.7],"elR":[124.2,-116.6],"haR":[108.3,-141.2],"shL":[-56.4,-137.2],"elL":[-129.3,-110.9],"haL":[-124.6,-119.6],"hipR":[26.1,6.8],"knR":[68.5,122.3],"ftR":[89.5,226.2],"hipL":[-25.6,8.8],"knL":[-53.9,126.5],"ftL":[-84.8,234.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-8.8,-98],"neck":[-4.8,-165.8],"head":[6.9,-197.7],"shR":[48.6,-144.4],"elR":[124.7,-140.3],"haR":[111.1,-170.1],"shL":[-58.3,-142.1],"elL":[-131.3,-136.9],"haL":[-126.3,-160.2],"hipR":[24.8,7.4],"knR":[68.7,121.8],"ftR":[75.4,230.6],"hipL":[-24.5,8.3],"knL":[-50.6,125.6],"ftL":[-100.1,227.6]}]},"dance_glide":{"name":"dance_glide","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":-0.1,"hips":[0,0],"chest":[4.4,-86.4],"neck":[4.4,-86.4],"head":[3.1,-155.3],"shR":[-59.4,-99.3],"elR":[-69.9,2.2],"haR":[-69.5,53.5],"shL":[68.8,-95.4],"elL":[111.7,5.8],"haL":[102.4,55.2],"hipR":[-27.5,39.2],"knR":[-15.5,174.5],"ftR":[81.2,275],"hipL":[28.7,39.5],"knL":[-11.5,165.3],"ftL":[-21.6,316.3]},{"rootY":-0.4,"hips":[0,0],"chest":[3.9,-86.3],"neck":[3.9,-86.3],"head":[2.2,-155.4],"shR":[-59.9,-99.4],"elR":[-71.5,1.1],"haR":[-69.6,52.3],"shL":[68.2,-95.1],"elL":[112.7,5.6],"haL":[102.3,54.8],"hipR":[-27.4,39],"knR":[-15.2,174.3],"ftR":[81.9,275.3],"hipL":[28.4,39.7],"knL":[-12.1,165.6],"ftL":[-21.5,316.7]},{"rootY":-0.8,"hips":[0,0],"chest":[3.6,-86.3],"neck":[3.6,-86.3],"head":[1.7,-155.5],"shR":[-60,-99.3],"elR":[-73.4,0],"haR":[-69.9,51],"shL":[67.6,-95],"elL":[114.3,5],"haL":[102.1,53.9],"hipR":[-27.1,38.7],"knR":[-15,174],"ftR":[82.8,275.7],"hipL":[28.1,40],"knL":[-12.6,165.8],"ftL":[-21.4,316.9]},{"rootY":-1.1,"hips":[0,0],"chest":[3.4,-86.2],"neck":[3.4,-86.2],"head":[1.1,-155.4],"shR":[-60.1,-99.5],"elR":[-75.6,-1.4],"haR":[-70.2,49.4],"shL":[67.1,-94.5],"elL":[116.7,4.4],"haL":[102.5,52.8],"hipR":[-26.7,38.7],"knR":[-14.7,174],"ftR":[83.5,276.1],"hipL":[27.7,40],"knL":[-13.9,165.8],"ftL":[-21.1,317.2]},{"rootY":-1.3,"hips":[0,0],"chest":[3.3,-86.1],"neck":[3.3,-86.1],"head":[1,-155.4],"shR":[-60,-99.6],"elR":[-77.3,-2.4],"haR":[-70.6,48.1],"shL":[66.6,-94.1],"elL":[119,3.6],"haL":[102.7,51.4],"hipR":[-26.6,38.4],"knR":[-13.5,173.6],"ftR":[84.8,275.7],"hipL":[27.4,40.2],"knL":[-14.7,166],"ftL":[-20.7,317.4]},{"rootY":-1.6,"hips":[0,0],"chest":[3.5,-86],"neck":[3.5,-86],"head":[1.3,-155.4],"shR":[-59.5,-99.8],"elR":[-78.1,-3.2],"haR":[-70.4,47.1],"shL":[66.5,-93.5],"elL":[120.9,3.4],"haL":[102.8,50.5],"hipR":[-26,38.3],"knR":[-12.8,173.4],"ftR":[86.1,276.3],"hipL":[27.1,40.3],"knL":[-16,166.1],"ftL":[-19.8,317.7]},{"rootY":-1.5,"hips":[0,0],"chest":[3.7,-85.8],"neck":[3.7,-85.8],"head":[1.7,-155.2],"shR":[-59.2,-100],"elR":[-79.1,-4],"haR":[-70.9,46.3],"shL":[66.6,-92.9],"elL":[122.9,3],"haL":[103.7,49.7],"hipR":[-25.8,38.1],"knR":[-11.1,173.1],"ftR":[87.5,275.9],"hipL":[26.8,40.5],"knL":[-15.3,166.5],"ftL":[-19.2,317.8]},{"rootY":-1.6,"hips":[0,0],"chest":[4.1,-85.7],"neck":[4.1,-85.7],"head":[2.2,-155.2],"shR":[-58.5,-100.5],"elR":[-78.4,-4.4],"haR":[-70.8,46],"shL":[66.9,-92.2],"elL":[124.3,3.1],"haL":[104.5,49.5],"hipR":[-25.9,37.9],"knR":[-8.9,172.6],"ftR":[88.7,275.6],"hipL":[26.6,40.7],"knL":[-15.3,166.9],"ftL":[-18.1,317.9]},{"rootY":-1.8,"hips":[0,0],"chest":[4.9,-85.5],"neck":[4.9,-85.5],"head":[3,-154.9],"shR":[-57.7,-100.3],"elR":[-76.6,-4],"haR":[-70.4,46.6],"shL":[67.8,-92.1],"elL":[124.9,3.3],"haL":[105,49.6],"hipR":[-25.8,37.8],"knR":[-6.9,172.1],"ftR":[88.6,275.2],"hipL":[26.8,40.8],"knL":[-15.2,167.1],"ftL":[-16.9,318]},{"rootY":-1.7,"hips":[0,0],"chest":[6.2,-85.4],"neck":[6.2,-85.4],"head":[4,-154.6],"shR":[-56.6,-100.5],"elR":[-73.9,-3.4],"haR":[-69.8,47.6],"shL":[69.4,-91.7],"elL":[125.2,4.3],"haL":[105.8,50.7],"hipR":[-26.2,37.7],"knR":[-4.4,171.4],"ftR":[86.9,274.5],"hipL":[26.6,40.9],"knL":[-14.4,167.6],"ftL":[-15.8,318.3]},{"rootY":-1.8,"hips":[0,0],"chest":[6.8,-85.4],"neck":[6.8,-85.4],"head":[4.4,-154.7],"shR":[-56.2,-100.7],"elR":[-70.7,-2.6],"haR":[-69.7,48.6],"shL":[70.6,-91.6],"elL":[123.3,5.7],"haL":[105.5,52.3],"hipR":[-27.2,37.1],"knR":[-3.9,170],"ftR":[82,274.1],"hipL":[26.6,41.4],"knL":[-15.4,168],"ftL":[-14.9,318.5]},{"rootY":-1.8,"hips":[0,0],"chest":[7.6,-85.4],"neck":[7.6,-85.4],"head":[4.8,-154.6],"shR":[-55.8,-100.6],"elR":[-67.3,-0.8],"haR":[-69.4,50.4],"shL":[72,-91.9],"elL":[119.9,7.3],"haL":[105,54.4],"hipR":[-27.8,37],"knR":[-4.5,169.1],"ftR":[74.5,273.7],"hipL":[26.8,41.5],"knL":[-15.3,168.2],"ftL":[-14.2,318.5]},{"rootY":-2.2,"hips":[0,0],"chest":[7.9,-85.6],"neck":[7.9,-85.6],"head":[4.6,-154.7],"shR":[-55.9,-100.4],"elR":[-63.9,1.6],"haR":[-70,52.4],"shL":[73.1,-92.6],"elL":[113.7,9.1],"haL":[103.8,56.9],"hipR":[-29.2,36.4],"knR":[-7.7,168],"ftR":[63.4,271.8],"hipL":[26.6,42],"knL":[-15.8,168.9],"ftL":[-13.8,319]},{"rootY":-3.6,"hips":[0,0],"chest":[8.4,-85.6],"neck":[8.4,-85.6],"head":[4.2,-154.7],"shR":[-56,-100],"elR":[-61.7,4.8],"haR":[-71,54.6],"shL":[74.3,-93.2],"elL":[105.9,11],"haL":[102.9,59.4],"hipR":[-30,35.9],"knR":[-14.1,167.5],"ftR":[48.5,269.6],"hipL":[26.2,42.5],"knL":[-14.6,170.1],"ftL":[-13.8,320.1]},{"rootY":-4.3,"hips":[0,0],"chest":[8.4,-85.8],"neck":[8.4,-85.8],"head":[3.3,-154.7],"shR":[-56.6,-99.4],"elR":[-62.5,8.1],"haR":[-74,56.5],"shL":[75.2,-94.4],"elL":[97,11.9],"haL":[101.8,60.7],"hipR":[-31.3,34.9],"knR":[-22.8,165.9],"ftR":[31.9,266.6],"hipL":[25.6,43.3],"knL":[-16.4,170.9],"ftL":[-14.5,320.9]},{"rootY":-4.9,"hips":[0,0],"chest":[8.2,-86],"neck":[8.2,-86],"head":[2.1,-154.8],"shR":[-57.4,-98.9],"elR":[-66.6,10.1],"haR":[-78.6,57.5],"shL":[75.9,-95.3],"elL":[91.4,12.2],"haL":[101.1,61],"hipR":[-32.2,34.6],"knR":[-31.1,165],"ftR":[12.1,264.7],"hipL":[25.5,43.5],"knL":[-15.8,171.6],"ftL":[-15.7,321.5]},{"rootY":-5.3,"hips":[0,0],"chest":[7.8,-86.1],"neck":[7.8,-86.1],"head":[0.8,-154.8],"shR":[-58.5,-97.9],"elR":[-73.1,11.5],"haR":[-86.2,57.8],"shL":[76.1,-96.8],"elL":[88.9,10.7],"haL":[101.2,59.5],"hipR":[-33.3,34.2],"knR":[-40.1,164],"ftR":[-11.2,263.4],"hipL":[25.4,43.8],"knL":[-14.9,172.3],"ftL":[-17.5,321.8]},{"rootY":-5.4,"hips":[0,0],"chest":[7.2,-86.2],"neck":[7.2,-86.2],"head":[-0.7,-154.9],"shR":[-59.5,-97.1],"elR":[-81.1,11.3],"haR":[-95.7,56],"shL":[76.3,-97.9],"elL":[90.3,8.6],"haL":[105.5,56.7],"hipR":[-34.4,34],"knR":[-48.7,162.9],"ftR":[-36.3,262.3],"hipL":[25.5,44],"knL":[-15.9,172.3],"ftL":[-19.3,321.7]},{"rootY":-5.2,"hips":[0,0],"chest":[6.2,-86.3],"neck":[6.2,-86.3],"head":[-2.5,-154.9],"shR":[-61,-96.1],"elR":[-92.1,10.1],"haR":[-108.8,52.6],"shL":[75.9,-99.2],"elL":[95.5,5.3],"haL":[114.2,51.6],"hipR":[-35.3,33.6],"knR":[-57.5,162],"ftR":[-62,261.9],"hipL":[25.7,44.2],"knL":[-15.1,172.6],"ftL":[-21.8,321.4]},{"rootY":-4.7,"hips":[0,0],"chest":[4.9,-86.4],"neck":[4.9,-86.4],"head":[-4.7,-154.7],"shR":[-62.5,-94.8],"elR":[-105.5,7.7],"haR":[-126.4,47.2],"shL":[74.8,-100.7],"elL":[103.6,-0.1],"haL":[126.5,43.1],"hipR":[-35.8,33.7],"knR":[-67.3,161.1],"ftR":[-87.4,261.5],"hipL":[26,44.2],"knL":[-15.4,172.4],"ftL":[-24.8,320.8]},{"rootY":-3.9,"hips":[0,0],"chest":[3.6,-86.5],"neck":[3.6,-86.5],"head":[-6.9,-154.7],"shR":[-64,-93.4],"elR":[-120.6,2.8],"haR":[-146.7,38.5],"shL":[73.5,-102.3],"elL":[113.8,-8.4],"haL":[141.8,29.7],"hipR":[-36,34.2],"knR":[-74.4,161.3],"ftR":[-111.1,262.2],"hipL":[26.8,43.8],"knL":[-15.5,171.8],"ftL":[-27.5,320]},{"rootY":-2.8,"hips":[0,0],"chest":[2.6,-86.5],"neck":[2.6,-86.5],"head":[-8.5,-154.7],"shR":[-65,-91.7],"elR":[-134.3,-3.7],"haR":[-167.6,27.3],"shL":[72.4,-104.1],"elL":[125.7,-20.5],"haL":[159.2,11.2],"hipR":[-36.1,34.8],"knR":[-78.4,162.2],"ftR":[-132.5,264],"hipL":[27.7,43.4],"knL":[-14.1,171.5],"ftL":[-30.5,319]},{"rootY":-1.8,"hips":[0,0],"chest":[1.7,-86.5],"neck":[1.7,-86.5],"head":[-10.3,-154.7],"shR":[-65.9,-90.1],"elR":[-147.8,-12.3],"haR":[-188.4,12.9],"shL":[71.1,-105.8],"elL":[137.9,-35.7],"haL":[176.7,-11.9],"hipR":[-36.2,35.5],"knR":[-78.8,164],"ftR":[-149.9,267.4],"hipL":[28.7,42.9],"knL":[-12.1,171.2],"ftL":[-33,318.3]},{"rootY":-1,"hips":[0,0],"chest":[0.9,-86.4],"neck":[0.9,-86.4],"head":[-12.2,-154.6],"shR":[-66.4,-88.1],"elR":[-160.6,-23.7],"haR":[-207.1,-4.7],"shL":[69.9,-107.7],"elL":[149.1,-54.9],"haL":[192.2,-40.3],"hipR":[-36.4,35.7],"knR":[-77.4,165.2],"ftR":[-162.1,272.7],"hipL":[29.2,42.7],"knL":[-11.1,171],"ftL":[-35.9,317.5]},{"rootY":-0.4,"hips":[0,0],"chest":[0.4,-86.4],"neck":[0.4,-86.4],"head":[-13.5,-154.4],"shR":[-66.6,-86],"elR":[-171.2,-37.9],"haR":[-220.9,-25.2],"shL":[68.7,-109.6],"elL":[158,-77],"haL":[204.3,-72.2],"hipR":[-36.2,36.1],"knR":[-73.7,165.7],"ftR":[-166.8,279.4],"hipL":[30,42.4],"knL":[-9.7,170.5],"ftL":[-38.9,316.9]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-86.3],"neck":[-0.4,-86.3],"head":[-15,-154.3],"shR":[-66.9,-84],"elR":[-178.1,-53.6],"haR":[-228.1,-47.5],"shL":[67.1,-111.4],"elL":[164.1,-100.3],"haL":[211.4,-105.9],"hipR":[-35.8,36.6],"knR":[-65.8,165.3],"ftR":[-162.5,286.3],"hipL":[30.8,41.9],"knL":[-7.9,170.1],"ftL":[-41.7,316.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-86.1],"neck":[-1.1,-86.1],"head":[-16.3,-154.3],"shR":[-66.9,-82.6],"elR":[-180.3,-71.1],"haR":[-227.8,-70.7],"shL":[65.5,-112.7],"elL":[165.5,-124.1],"haL":[212.2,-139.6],"hipR":[-35.2,36.7],"knR":[-55.3,162.7],"ftR":[-150.4,292.2],"hipL":[31.1,41.7],"knL":[-6.6,170],"ftL":[-44.9,316.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-1.5,-86],"neck":[-1.5,-86],"head":[-17.2,-154.1],"shR":[-66.4,-80.9],"elR":[-177.2,-88.5],"haR":[-219.6,-92.8],"shL":[64.2,-113.9],"elL":[163,-147],"haL":[206.9,-171.4],"hipR":[-34.1,36.9],"knR":[-39.1,159.8],"ftR":[-130.4,296.2],"hipL":[31.3,41.4],"knL":[-3.5,170.1],"ftL":[-47.5,316]},{"rootY":-0.3,"hips":[0,0],"chest":[-1.3,-86],"neck":[-1.3,-86],"head":[-17.1,-154.1],"shR":[-65,-79.8],"elR":[-168.7,-100.1],"haR":[-204.7,-111.3],"shL":[63.3,-114.9],"elL":[157.6,-167.3],"haL":[196.3,-199.6],"hipR":[-32.4,37.3],"knR":[-24.9,153.2],"ftR":[-104.7,297.2],"hipL":[31.6,41],"knL":[-1.4,169.9],"ftL":[-50.1,315.6]},{"rootY":-0.2,"hips":[0,0],"chest":[-0.3,-86],"neck":[-0.3,-86],"head":[-16.4,-154.1],"shR":[-62.9,-79.1],"elR":[-156.3,-110.4],"haR":[-184.8,-128.2],"shL":[63.4,-115.7],"elL":[150.5,-183.8],"haL":[182.2,-222.2],"hipR":[-30.1,38],"knR":[-10.3,145.2],"ftR":[-75.2,295.3],"hipL":[32.1,40.2],"knL":[0.3,169.6],"ftL":[-52.1,315.2]},{"rootY":0.2,"hips":[0,0],"chest":[0.7,-86],"neck":[0.7,-86],"head":[-15.9,-153.9],"shR":[-60.4,-78.6],"elR":[-141.7,-118.5],"haR":[-161.6,-142.5],"shL":[63.4,-116.3],"elL":[141.5,-196.3],"haL":[165.3,-239],"hipR":[-27.7,38.6],"knR":[5.3,135.8],"ftR":[-41.5,290.4],"hipL":[32.4,39.4],"knL":[1.6,169],"ftL":[-55.8,314.1]},{"rootY":1,"hips":[0,0],"chest":[1.5,-86.1],"neck":[1.5,-86.1],"head":[-15,-154],"shR":[-58.1,-78.5],"elR":[-124.7,-125.7],"haR":[-135.8,-155.2],"shL":[63,-116.5],"elL":[131.4,-204.3],"haL":[146.8,-249.7],"hipR":[-25.1,38.9],"knR":[20.3,126.9],"ftR":[-7.5,284.2],"hipL":[32.6,38.8],"knL":[1.6,168.6],"ftL":[-61.3,312.4]},{"rootY":2.3,"hips":[0,0],"chest":[1.3,-86.2],"neck":[1.3,-86.2],"head":[-14.8,-154.1],"shR":[-56.6,-78.4],"elR":[-106.1,-131.1],"haR":[-109.9,-165.9],"shL":[61.4,-117],"elL":[118.5,-208.7],"haL":[126.3,-255.2],"hipR":[-23.1,39],"knR":[32.9,119.7],"ftR":[23,278.4],"hipL":[32.2,38.5],"knL":[0.9,168.4],"ftL":[-68.3,310.7]},{"rootY":3.3,"hips":[0,0],"chest":[1,-86.3],"neck":[1,-86.3],"head":[-14.9,-154.3],"shR":[-55.1,-78.1],"elR":[-90,-137.1],"haR":[-86.2,-174.9],"shL":[59.5,-117.6],"elL":[104.5,-211.1],"haL":[106,-257.2],"hipR":[-21,39.2],"knR":[43.7,115],"ftR":[49.8,274.3],"hipL":[31.5,38.3],"knL":[0.3,168.2],"ftL":[-74.9,308.4]},{"rootY":5.2,"hips":[0,0],"chest":[1,-86.4],"neck":[1,-86.4],"head":[-14.3,-154.4],"shR":[-53.2,-77.7],"elR":[-75,-142.2],"haR":[-65,-182.1],"shL":[57.7,-118.2],"elL":[93.5,-212.1],"haL":[88.4,-256.3],"hipR":[-18.3,39.4],"knR":[51.1,112.2],"ftR":[72.9,272.4],"hipL":[30.5,37.9],"knL":[1.4,168.1],"ftL":[-80.1,304.7]},{"rootY":6.8,"hips":[0,0],"chest":[0.9,-86.5],"neck":[0.9,-86.5],"head":[-14,-154.6],"shR":[-50.8,-76.6],"elR":[-61.9,-145.3],"haR":[-46.4,-186.9],"shL":[55.2,-119.5],"elL":[84.2,-213.1],"haL":[72.5,-254.3],"hipR":[-14.7,40.2],"knR":[59.1,112.9],"ftR":[89.9,273.8],"hipL":[29.6,36.8],"knL":[4.7,167.6],"ftL":[-84.2,299.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.5],"neck":[-0.4,-86.5],"head":[-15.6,-154.5],"shR":[-48.9,-75.6],"elR":[-50.6,-147.9],"haR":[-31.1,-190.8],"shL":[50.8,-120.6],"elL":[75.4,-214.3],"haL":[59.2,-252.2],"hipR":[-10.8,40.2],"knR":[66.7,115.4],"ftR":[99,276.9],"hipL":[28,36.4],"knL":[7.4,167.6],"ftL":[-89.5,293.4]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-18.5,-154.2],"shR":[-47.4,-74.9],"elR":[-42.4,-150.9],"haR":[-19.6,-194.6],"shL":[44.9,-121.3],"elL":[67.2,-215.7],"haL":[48.1,-250.6],"hipR":[-7.3,40.4],"knR":[73.3,120.9],"ftR":[100.7,281.9],"hipL":[26.7,35.8],"knL":[10.5,167.9],"ftL":[-95.3,288.1]},{"rootY":10.5,"hips":[0,0],"chest":[-6.1,-86.2],"neck":[-6.1,-86.2],"head":[-23.1,-153.5],"shR":[-46.9,-74.6],"elR":[-36.1,-154],"haR":[-12,-198.5],"shL":[37,-121.4],"elL":[57.7,-217.2],"haL":[36.3,-249],"hipR":[-4.3,40.2],"knR":[80.1,127.7],"ftR":[95.9,288.7],"hipL":[24.7,35.8],"knL":[11.5,168.7],"ftL":[-102.2,282.9]},{"rootY":11.1,"hips":[0,0],"chest":[-10,-85.7],"neck":[-10,-85.7],"head":[-28.3,-152.7],"shR":[-47.3,-74.3],"elR":[-32.3,-156.8],"haR":[-8.1,-201.9],"shL":[29.2,-121],"elL":[49.2,-218.9],"haL":[26.9,-247.2],"hipR":[-1.6,40.5],"knR":[83.9,134.2],"ftR":[86.9,295.7],"hipL":[22.6,35.4],"knL":[15.6,169.2],"ftL":[-107,276.1]},{"rootY":11.9,"hips":[0,0],"chest":[-13.6,-85.1],"neck":[-13.6,-85.1],"head":[-32.7,-151.8],"shR":[-47.3,-73.7],"elR":[-29.6,-159.3],"haR":[-6.6,-204.9],"shL":[21.8,-120.5],"elL":[40.5,-220.3],"haL":[18.9,-246.6],"hipR":[1.3,40],"knR":[85.9,138.2],"ftR":[76.7,299.1],"hipL":[20.7,35.6],"knL":[23.8,170.1],"ftL":[-106.7,269.4]},{"rootY":13,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35.6,-151.3],"shR":[-44.5,-74.4],"elR":[-26.1,-163.7],"haR":[-3.9,-209.1],"shL":[15.2,-119.6],"elL":[32.9,-220.9],"haL":[13.6,-247.5],"hipR":[3.9,39.5],"knR":[87.2,139.8],"ftR":[71.3,299.2],"hipL":[19.4,35.7],"knL":[34.8,169.8],"ftL":[-98.5,264.3]},{"rootY":13.6,"hips":[0,0],"chest":[-16.3,-84.7],"neck":[-16.3,-84.7],"head":[-37.4,-150.8],"shR":[-42,-75.3],"elR":[-23,-167],"haR":[-1.8,-212.3],"shL":[10.8,-118.4],"elL":[28.8,-221.1],"haL":[10.9,-248.5],"hipR":[5.5,37.3],"knR":[86.7,140.7],"ftR":[68.1,298.7],"hipL":[18.2,37.7],"knL":[46.7,170.2],"ftL":[-84.6,262.4]},{"rootY":15.1,"hips":[0,0],"chest":[-16.5,-84.6],"neck":[-16.5,-84.6],"head":[-37.6,-150.8],"shR":[-39,-75.9],"elR":[-18.2,-168.8],"haR":[-0.1,-215.3],"shL":[7.6,-117.8],"elL":[26.7,-222.2],"haL":[9.6,-250.3],"hipR":[6,36.6],"knR":[87,141.2],"ftR":[65.4,297.8],"hipL":[18.4,38.1],"knL":[57.1,168.2],"ftL":[-70.9,259.6]},{"rootY":17.3,"hips":[0,0],"chest":[-16.8,-84.5],"neck":[-16.8,-84.5],"head":[-38.2,-150.6],"shR":[-37.7,-76.7],"elR":[-14.6,-169.2],"haR":[2.1,-215.9],"shL":[5.9,-116.9],"elL":[26.9,-222.6],"haL":[10.7,-251.4],"hipR":[5.9,36.5],"knR":[88.3,140.7],"ftR":[62.7,296.1],"hipL":[18.3,38.2],"knL":[66,165.4],"ftL":[-59.8,257.6]},{"rootY":19.1,"hips":[0,0],"chest":[-17,-84.5],"neck":[-17,-84.5],"head":[-38.3,-150.7],"shR":[-37.3,-78.2],"elR":[-12.5,-169.6],"haR":[5,-215.8],"shL":[5.2,-115.5],"elL":[29,-221.5],"haL":[14.2,-251.2],"hipR":[5.8,36.3],"knR":[89.5,140],"ftR":[60.7,294.5],"hipL":[18.2,38.5],"knL":[73.3,162.4],"ftL":[-51.3,257.8]},{"rootY":18.6,"hips":[0,0],"chest":[-16.7,-84.6],"neck":[-16.7,-84.6],"head":[-36.9,-151.2],"shR":[-36.9,-78.5],"elR":[-11.2,-167.7],"haR":[9.3,-212.4],"shL":[5.8,-115.3],"elL":[32.7,-221.1],"haL":[18.4,-251.5],"hipR":[6.2,36],"knR":[89.9,140.2],"ftR":[59.6,294.4],"hipL":[18.2,38.6],"knL":[77.8,160],"ftL":[-44.5,262.7]},{"rootY":16.3,"hips":[0,0],"chest":[-16.1,-84.7],"neck":[-16.1,-84.7],"head":[-35,-151.7],"shR":[-38.1,-78.3],"elR":[-11.4,-164.3],"haR":[13,-206.6],"shL":[8.4,-115.6],"elL":[39.3,-219.7],"haL":[25.2,-248.8],"hipR":[5.9,35.7],"knR":[89,140.8],"ftR":[58,295.4],"hipL":[18.7,38.7],"knL":[78.6,159],"ftL":[-38.2,271.8]},{"rootY":14.2,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35,-151.5],"shR":[-39.5,-79.6],"elR":[-9,-161.2],"haR":[18.6,-201.2],"shL":[11.4,-114.5],"elL":[46.5,-216.4],"haL":[31.9,-242.8],"hipR":[4.5,35.9],"knR":[87.6,140.9],"ftR":[57.8,295.9],"hipL":[19.6,38.7],"knL":[75.4,159],"ftL":[-33.1,282]},{"rootY":11.3,"hips":[0,0],"chest":[-13.9,-85],"neck":[-13.9,-85],"head":[-31.9,-152.2],"shR":[-42.4,-78.2],"elR":[-7.8,-152.1],"haR":[22.8,-189.4],"shL":[17.7,-116],"elL":[57.6,-214.6],"haL":[41.1,-238.6],"hipR":[1.9,36.2],"knR":[85.8,140.3],"ftR":[57.3,296.4],"hipL":[21.1,38.6],"knL":[68,160.3],"ftL":[-29.2,291.5]},{"rootY":8.7,"hips":[0,0],"chest":[-11.6,-85.3],"neck":[-11.6,-85.3],"head":[-26.8,-153.3],"shR":[-43.8,-80.5],"elR":[-3,-146.4],"haR":[29.4,-182.3],"shL":[24.2,-114.3],"elL":[69.1,-207.4],"haL":[49.5,-230.5],"hipR":[-1.5,36.8],"knR":[84,138],"ftR":[58.2,295.2],"hipL":[23.9,38.1],"knL":[57.9,161.5],"ftL":[-27.3,298.1]},{"rootY":8.7,"hips":[0,0],"chest":[-9.1,-85.6],"neck":[-9.1,-85.6],"head":[-22.7,-154],"shR":[-47,-80.4],"elR":[0.6,-133.8],"haR":[32.5,-169.3],"shL":[32.9,-114.9],"elL":[82.7,-200.1],"haL":[60.3,-224.1],"hipR":[-6,37],"knR":[76.3,135.3],"ftR":[58.2,292.9],"hipL":[26.4,38.2],"knL":[47.1,162.3],"ftL":[-27.2,303.1]},{"rootY":6.9,"hips":[0,0],"chest":[-6.1,-86.1],"neck":[-6.1,-86.1],"head":[-18.4,-154.7],"shR":[-48.6,-83.5],"elR":[7.7,-122.8],"haR":[39.3,-161.6],"shL":[41,-112.5],"elL":[95.6,-186.6],"haL":[72.4,-215],"hipR":[-11.1,36.3],"knR":[68.5,134.3],"ftR":[55.3,296],"hipL":[28.8,38.9],"knL":[39.8,164.1],"ftL":[-27.4,307.3]},{"rootY":6.6,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-15.2,-155.3],"shR":[-52.3,-83.4],"elR":[10.8,-108.9],"haR":[40.6,-150.3],"shL":[50.6,-112.8],"elL":[107,-172.1],"haL":[86.4,-206.3],"hipR":[-14.6,36.1],"knR":[58.9,134.3],"ftR":[51.5,298.2],"hipL":[30.2,39.2],"knL":[34.4,164.2],"ftL":[-28.8,309.4]},{"rootY":6.6,"hips":[0,0],"chest":[-0.8,-86.7],"neck":[-0.8,-86.7],"head":[-10.6,-156],"shR":[-52.3,-84.9],"elR":[18,-97.3],"haR":[46,-139.8],"shL":[56.1,-111.6],"elL":[111.2,-154.5],"haL":[96.2,-193.5],"hipR":[-17.6,36],"knR":[49.3,132.6],"ftR":[43.1,297.1],"hipL":[30.9,39.5],"knL":[35.3,163.1],"ftL":[-24.9,309.1]},{"rootY":6.2,"hips":[0,0],"chest":[0.9,-86.8],"neck":[0.9,-86.8],"head":[-6.8,-156.3],"shR":[-54.7,-84.6],"elR":[20.8,-87],"haR":[47.1,-127.1],"shL":[61.4,-111.8],"elL":[111.3,-138.7],"haL":[104.3,-180.7],"hipR":[-19.8,36.7],"knR":[38.7,131.6],"ftR":[26.3,295.3],"hipL":[31.5,39.3],"knL":[36.6,162.2],"ftL":[-21.5,308.9]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-86.8],"neck":[1.4,-86.8],"head":[-4.9,-156.6],"shR":[-54.9,-85.7],"elR":[21.3,-82.2],"haR":[46,-116.3],"shL":[63.2,-110.4],"elL":[106.8,-123.6],"haL":[110.1,-165.7],"hipR":[-22.2,37.2],"knR":[32.2,136.9],"ftR":[-2.9,293.9],"hipL":[31.9,39.3],"knL":[36.4,161.9],"ftL":[-20.3,309.4]},{"rootY":6.2,"hips":[0,0],"chest":[2,-86.8],"neck":[2,-86.8],"head":[-4.7,-156.6],"shR":[-55.1,-87.5],"elR":[16.6,-81.8],"haR":[38.5,-108.3],"shL":[64.8,-108.5],"elL":[105.9,-109.5],"haL":[116.5,-148.1],"hipR":[-24.3,37.5],"knR":[18.1,143.3],"ftR":[-38.9,291.5],"hipL":[32.4,39.4],"knL":[35.4,160.9],"ftL":[-19.9,308.1]},{"rootY":6.8,"hips":[0,0],"chest":[1.6,-86.8],"neck":[1.6,-86.8],"head":[-4.5,-156.6],"shR":[-55.2,-89.1],"elR":[7.3,-83.7],"haR":[24.2,-100.8],"shL":[64.6,-106.9],"elL":[108,-98.4],"haL":[124.5,-131.3],"hipR":[-26,37.9],"knR":[6.7,149.5],"ftR":[-65.7,289.5],"hipL":[32.9,39.3],"knL":[34.5,160.2],"ftL":[-19.7,307.5]},{"rootY":7.2,"hips":[0,0],"chest":[1.3,-86.8],"neck":[1.3,-86.8],"head":[-4,-156.7],"shR":[-56.5,-89.7],"elR":[-9.2,-88.4],"haR":[1.7,-93.4],"shL":[65.4,-106.3],"elL":[112.9,-91.5],"haL":[134.9,-117.3],"hipR":[-26.5,38.9],"knR":[-8.4,156.7],"ftR":[-97.1,288.5],"hipL":[34.3,38.4],"knL":[34.7,159.6],"ftL":[-19.4,306.9]},{"rootY":8.3,"hips":[0,0],"chest":[0.6,-86.7],"neck":[0.6,-86.7],"head":[-4.8,-156.6],"shR":[-58.4,-89.6],"elR":[-33.7,-90.3],"haR":[-28.5,-86],"shL":[65.5,-106.3],"elL":[120,-87],"haL":[146.6,-105.3],"hipR":[-26.8,39.7],"knR":[-23.8,164.6],"ftR":[-128.5,286.3],"hipL":[34.8,37.9],"knL":[34.1,158.7],"ftL":[-20.1,305.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.7],"neck":[-0.4,-86.7],"head":[-5.6,-156.6],"shR":[-60,-89.3],"elR":[-58.4,-87.9],"haR":[-60,-78],"shL":[65.1,-106.4],"elL":[127.7,-83.5],"haL":[157.7,-96.5],"hipR":[-27.6,39.4],"knR":[-129.3,128.2],"ftR":[-154.9,283.2],"hipL":[34.2,38.4],"knL":[33.6,158.4],"ftL":[-20.8,304.8]},{"rootY":9.7,"hips":[0,0],"chest":[-0.2,-86.5],"neck":[-0.2,-86.5],"head":[-5.8,-156.3],"shR":[-60.9,-89.7],"elR":[-81.7,-85],"haR":[-92.5,-73.5],"shL":[66.1,-105.6],"elL":[138.2,-78.9],"haL":[170.4,-87.6],"hipR":[-28.7,39.4],"knR":[-134.6,124.5],"ftR":[-173.1,280.6],"hipL":[33.8,38.8],"knL":[32.8,158.1],"ftL":[-21.1,304.1]},{"rootY":10.3,"hips":[0,0],"chest":[0.6,-86.3],"neck":[0.6,-86.3],"head":[-5.5,-156.1],"shR":[-60.6,-89.7],"elR":[-102.3,-82.4],"haR":[-122.9,-70.3],"shL":[67.4,-105.2],"elL":[147.7,-76],"haL":[183.4,-80.5],"hipR":[-30,39.6],"knR":[-58.5,170.8],"ftR":[-180.6,280],"hipL":[33.5,38.9],"knL":[31.9,157.6],"ftL":[-21,303.3]},{"rootY":10.8,"hips":[0,0],"chest":[1.7,-86.1],"neck":[1.7,-86.1],"head":[-4.6,-155.7],"shR":[-60.4,-89.5],"elR":[-121.3,-81.6],"haR":[-150.8,-69],"shL":[69.2,-104.7],"elL":[157.9,-72.1],"haL":[195.9,-73.8],"hipR":[-31.3,39.4],"knR":[-63.5,170.9],"ftR":[-179.2,280.2],"hipL":[33.2,39.3],"knL":[31.6,157.4],"ftL":[-20.6,302.5]},{"rootY":11,"hips":[0,0],"chest":[3,-85.6],"neck":[3,-85.6],"head":[-3.3,-155.2],"shR":[-59.9,-89.8],"elR":[-136.9,-82.8],"haR":[-173.6,-70.7],"shL":[71.3,-103.4],"elL":[166.5,-69.5],"haL":[207.3,-68.9],"hipR":[-32.2,39.3],"knR":[-63.1,171.5],"ftR":[-172,279.5],"hipL":[33,39.4],"knL":[31.6,157.6],"ftL":[-19.8,302.2]},{"rootY":11.3,"hips":[0,0],"chest":[4.2,-85],"neck":[4.2,-85],"head":[-1.8,-154.5],"shR":[-59.6,-90.7],"elR":[-148.9,-85.1],"haR":[-191.4,-74.8],"shL":[73.5,-101.2],"elL":[173.8,-67.7],"haL":[217.4,-66.2],"hipR":[-32.3,39.6],"knR":[-60.3,171.1],"ftR":[-158.4,277.5],"hipL":[33.5,39],"knL":[31.1,157.3],"ftL":[-18.7,301.7]},{"rootY":11.9,"hips":[0,0],"chest":[5.3,-84.3],"neck":[5.3,-84.3],"head":[0.3,-153.7],"shR":[-59.2,-91.4],"elR":[-158.2,-89.3],"haR":[-204.8,-81.2],"shL":[75.4,-98.6],"elL":[180,-66.9],"haL":[225.6,-65.3],"hipR":[-32.3,39.8],"knR":[-56.4,170],"ftR":[-139.1,274.2],"hipL":[34.1,38.6],"knL":[29.8,156.6],"ftL":[-17.7,301.1]},{"rootY":12.3,"hips":[0,0],"chest":[6.9,-83.2],"neck":[6.9,-83.2],"head":[2.9,-152.6],"shR":[-58.3,-91.9],"elR":[-163.9,-95.3],"haR":[-213,-89.6],"shL":[77.7,-95.7],"elL":[184.6,-66.5],"haL":[231.6,-65.5],"hipR":[-31.9,39.9],"knR":[-49.3,168.5],"ftR":[-114.7,270.1],"hipL":[34.8,38.1],"knL":[28.6,156.2],"ftL":[-15.7,300.9]},{"rootY":12.6,"hips":[0,0],"chest":[7.6,-82.1],"neck":[7.6,-82.1],"head":[4.5,-151.6],"shR":[-57.9,-92.9],"elR":[-167.3,-102.3],"haR":[-217.8,-99.3],"shL":[79,-92.3],"elL":[187.6,-66],"haL":[235.4,-65.6],"hipR":[-32,39.2],"knR":[-42.2,166.1],"ftR":[-86.9,264.9],"hipL":[34.7,38.4],"knL":[26.4,156.3],"ftL":[-13.3,301]},{"rootY":13,"hips":[0,0],"chest":[8.7,-80.9],"neck":[8.7,-80.9],"head":[7,-150.4],"shR":[-57.1,-93.4],"elR":[-168.3,-109.8],"haR":[-219.3,-109.5],"shL":[80.4,-89],"elL":[189.7,-65.2],"haL":[238.1,-65.6],"hipR":[-31.4,38.8],"knR":[-35.1,164.4],"ftR":[-55.8,258.8],"hipL":[34.8,38.5],"knL":[23.9,156.4],"ftL":[-10.2,301.4]},{"rootY":13.4,"hips":[0,0],"chest":[9.6,-79.7],"neck":[9.6,-79.7],"head":[9.1,-149.2],"shR":[-56.4,-93.8],"elR":[-167.6,-117.2],"haR":[-218.8,-120],"shL":[81.3,-85.8],"elL":[191.1,-64.6],"haL":[239.8,-66],"hipR":[-30.1,38.7],"knR":[-26.3,163],"ftR":[-25.4,253.4],"hipL":[35.1,38.4],"knL":[20.7,155.7],"ftL":[-8.1,300.3]},{"rootY":15,"hips":[0,0],"chest":[9.1,-79],"neck":[9.1,-79],"head":[9.5,-148.6],"shR":[-56.7,-95.4],"elR":[-167.1,-125.8],"haR":[-217.9,-131.7],"shL":[80.6,-82.5],"elL":[190.9,-63.9],"haL":[239.3,-66],"hipR":[-30.5,37.6],"knR":[-17.8,159.6],"ftR":[2.3,247.1],"hipL":[34,39.3],"knL":[16.5,155.1],"ftL":[-7.2,299.4]},{"rootY":15.9,"hips":[0,0],"chest":[8.8,-78.4],"neck":[8.8,-78.4],"head":[10.2,-148.1],"shR":[-56.6,-96.7],"elR":[-165.6,-132.9],"haR":[-215.9,-141.8],"shL":[79.9,-79.9],"elL":[190.5,-63.1],"haL":[238.6,-65.8],"hipR":[-29.6,37.2],"knR":[-8.5,157.2],"ftR":[27.5,242.3],"hipL":[33.7,39.6],"knL":[13.6,154.8],"ftL":[-6,298.8]},{"rootY":16.5,"hips":[0,0],"chest":[8.6,-77.9],"neck":[8.6,-77.9],"head":[10.8,-147.6],"shR":[-56.3,-98],"elR":[-163.8,-139.1],"haR":[-213.3,-151],"shL":[79,-77.5],"elL":[189.7,-61.8],"haL":[237.3,-64.9],"hipR":[-28.6,37.2],"knR":[-1.1,156.7],"ftR":[49.3,240.6],"hipL":[33.5,39.6],"knL":[12.1,154.8],"ftL":[-4.6,298.1]},{"rootY":16.8,"hips":[0,0],"chest":[8.7,-77.5],"neck":[8.7,-77.5],"head":[11.5,-147.3],"shR":[-55.7,-98.9],"elR":[-161.6,-143.8],"haR":[-210.3,-158.4],"shL":[78.2,-75.5],"elL":[188.7,-59.8],"haL":[235.6,-63],"hipR":[-26.8,37.6],"knR":[6.2,157.5],"ftR":[67.7,240.9],"hipL":[33.7,39.1],"knL":[11.6,154.8],"ftL":[-3.6,297.9]},{"rootY":17.3,"hips":[0,0],"chest":[6.5,-78.2],"neck":[6.5,-78.2],"head":[10.1,-147.9],"shR":[-57.4,-100.7],"elR":[-162.3,-148.4],"haR":[-210.2,-164.9],"shL":[75.1,-74.5],"elL":[184.9,-58.3],"haL":[231,-61.4],"hipR":[-26.8,36.9],"knR":[8.5,156.9],"ftR":[79.9,242.8],"hipL":[33.1,39.7],"knL":[8.7,155.3],"ftL":[-4.3,297.3]},{"rootY":18.1,"hips":[0,0],"chest":[4.8,-78.4],"neck":[4.8,-78.4],"head":[9.5,-148.2],"shR":[-58.1,-102.2],"elR":[-162.4,-151.2],"haR":[-209.7,-169.3],"shL":[72.2,-73.5],"elL":[181.2,-56.5],"haL":[226.3,-58.9],"hipR":[-26.2,37.2],"knR":[11.9,158.8],"ftR":[89.1,247.4],"hipL":[33,39.5],"knL":[6.4,154.7],"ftL":[-4.2,296.3]},{"rootY":18.6,"hips":[0,0],"chest":[4.7,-77.6],"neck":[4.7,-77.6],"head":[9.2,-147.3],"shR":[-57.9,-102.4],"elR":[-162.1,-151.9],"haR":[-208.8,-170.7],"shL":[71.9,-71.2],"elL":[179.5,-52.4],"haL":[223.3,-54.1],"hipR":[-25.1,38],"knR":[15.4,161.7],"ftR":[95.5,252.6],"hipL":[33.3,38.9],"knL":[5.9,154.5],"ftL":[-4.1,296.2]},{"rootY":19.2,"hips":[0,0],"chest":[4.1,-76.8],"neck":[4.1,-76.8],"head":[8.9,-146.6],"shR":[-58,-101.8],"elR":[-162.6,-150.4],"haR":[-208.8,-169.8],"shL":[70.3,-70.5],"elL":[175.7,-49.3],"haL":[218.4,-50.2],"hipR":[-24.9,38.1],"knR":[15.2,163.8],"ftR":[98.7,257.5],"hipL":[32.8,39.1],"knL":[5.5,154.6],"ftL":[-4.9,295.7]},{"rootY":19.6,"hips":[0,0],"chest":[3.7,-76.4],"neck":[3.7,-76.4],"head":[8.5,-146.3],"shR":[-57.8,-102.2],"elR":[-163.5,-148.6],"haR":[-209.4,-168.5],"shL":[69.3,-69.5],"elL":[171.9,-45.5],"haL":[213.2,-45],"hipR":[-24.3,38.6],"knR":[15.9,165.1],"ftR":[101.4,259.5],"hipL":[32.8,38.8],"knL":[6.6,154.8],"ftL":[-5.3,295]},{"rootY":20.3,"hips":[0,0],"chest":[2.5,-76.7],"neck":[2.5,-76.7],"head":[7.4,-146.5],"shR":[-58.5,-103],"elR":[-165.1,-147.3],"haR":[-210.8,-167.4],"shL":[67.5,-69],"elL":[166.6,-41.9],"haL":[205.4,-40.3],"hipR":[-25,38.6],"knR":[14.9,164.9],"ftR":[101.1,259],"hipL":[32.4,39],"knL":[7,155],"ftL":[-6.4,294.3]},{"rootY":21.6,"hips":[0,0],"chest":[1.9,-76.7],"neck":[1.9,-76.7],"head":[6.8,-146.5],"shR":[-59.1,-102.7],"elR":[-166.2,-145.5],"haR":[-211.8,-165.9],"shL":[66.6,-69.1],"elL":[161.9,-39.4],"haL":[198.1,-36.5],"hipR":[-25.1,38.8],"knR":[15.6,164.5],"ftR":[99.8,258.1],"hipL":[32.7,38.8],"knL":[6.7,154.2],"ftL":[-7.6,292.7]},{"rootY":22,"hips":[0,0],"chest":[1.2,-76],"neck":[1.2,-76],"head":[5.9,-145.8],"shR":[-59.8,-101.5],"elR":[-167,-144.2],"haR":[-212,-165.5],"shL":[65.5,-69.1],"elL":[157.9,-38.8],"haL":[192,-35.7],"hipR":[-26,38.1],"knR":[15.9,162.2],"ftR":[98.5,255.5],"hipL":[32.5,39.4],"knL":[4,153.1],"ftL":[-9.8,291.1]},{"rootY":22.6,"hips":[0,0],"chest":[0.4,-75.1],"neck":[0.4,-75.1],"head":[4.6,-144.9],"shR":[-60.5,-100],"elR":[-167.1,-143.9],"haR":[-211.6,-166.5],"shL":[64,-68.8],"elL":[155.2,-40.6],"haL":[187.5,-38.4],"hipR":[-26.5,37],"knR":[15.8,159.4],"ftR":[98.2,249.5],"hipL":[32,40.1],"knL":[0.2,152.6],"ftL":[-12.1,290.4]},{"rootY":19.7,"hips":[0,0],"chest":[-0.4,-73.9],"neck":[-0.4,-73.9],"head":[4.2,-143.6],"shR":[-61,-98.9],"elR":[-166.8,-144.7],"haR":[-210.7,-168.8],"shL":[62.3,-67.3],"elL":[153.8,-43.3],"haL":[186.3,-42.3],"hipR":[-25.7,35.7],"knR":[17.7,154.8],"ftR":[101.7,237.7],"hipL":[31.3,40.7],"knL":[-2.8,154.1],"ftL":[-12.8,292.7]},{"rootY":15.2,"hips":[0,0],"chest":[-1.7,-73.3],"neck":[-1.7,-73.3],"head":[3.3,-142.8],"shR":[-62.2,-98.2],"elR":[-166.8,-146.9],"haR":[-209.6,-173],"shL":[60.7,-66.6],"elL":[154.2,-47],"haL":[186.7,-47.9],"hipR":[-25.2,33.5],"knR":[20.9,145.1],"ftR":[108.8,216.1],"hipL":[30,41.9],"knL":[-5.9,156.7],"ftL":[-13.5,296.5]},{"rootY":8.7,"hips":[0,0],"chest":[-2.6,-72.8],"neck":[-2.6,-72.8],"head":[2.6,-142.1],"shR":[-62.6,-98.1],"elR":[-165.4,-150.3],"haR":[-207.1,-178.3],"shL":[59,-65.3],"elL":[155.6,-50],"haL":[189.2,-52.2],"hipR":[-23.7,31.8],"knR":[24.4,133.8],"ftR":[118.7,186.4],"hipL":[29,42.6],"knL":[-8.1,160.5],"ftL":[-13,302.1]},{"rootY":1.9,"hips":[0,0],"chest":[-3.5,-72.9],"neck":[-3.5,-72.9],"head":[1.9,-142.1],"shR":[-63.1,-98.5],"elR":[-163.8,-154.6],"haR":[-204,-184.7],"shL":[57.4,-65],"elL":[156.6,-53],"haL":[191.8,-56.2],"hipR":[-23.2,29],"knR":[27.1,119.1],"ftR":[128.8,148.7],"hipL":[27.4,43.8],"knL":[-11,164.3],"ftL":[-10.9,307.8]},{"rootY":-6.7,"hips":[0,0],"chest":[-4.2,-72.8],"neck":[-4.2,-72.8],"head":[1.6,-141.9],"shR":[-62.9,-99.4],"elR":[-161.7,-158.8],"haR":[-200.3,-190.8],"shL":[55.7,-63.9],"elL":[157.5,-54.3],"haL":[194.3,-58],"hipR":[-23.5,25.2],"knR":[29,102.2],"ftR":[137.4,109],"hipL":[25.1,45.4],"knL":[-14.1,167.9],"ftL":[-7.4,314]},{"rootY":-17.3,"hips":[0,0],"chest":[-4,-71.8],"neck":[-4,-71.8],"head":[2.3,-140.8],"shR":[-61.7,-99.2],"elR":[-158.5,-161.6],"haR":[-195.6,-195.1],"shL":[54.9,-62.2],"elL":[159.2,-52.6],"haL":[198.3,-56.3],"hipR":[-22.2,23],"knR":[30.1,88.7],"ftR":[144.8,70.4],"hipL":[23.3,46.4],"knL":[-15.2,171.3],"ftL":[-5.7,319.9]},{"rootY":-27.4,"hips":[0,0],"chest":[-3.9,-71.2],"neck":[-3.9,-71.2],"head":[2.8,-140.2],"shR":[-60.8,-99.8],"elR":[-155.9,-164.3],"haR":[-191.8,-199],"shL":[54.4,-60.6],"elL":[160.5,-49.4],"haL":[201,-52.3],"hipR":[-22.1,19.2],"knR":[29.7,72.7],"ftR":[150.1,32.4],"hipL":[21.2,47.5],"knL":[-18.7,173.3],"ftL":[-4.1,324.5]},{"rootY":-37.7,"hips":[0,0],"chest":[-3.8,-70.5],"neck":[-3.8,-70.5],"head":[3.5,-139.4],"shR":[-60,-99.9],"elR":[-153.5,-165.9],"haR":[-188.3,-201.8],"shL":[54.1,-59.1],"elL":[161.3,-44.8],"haL":[203.2,-46.3],"hipR":[-22.4,15.3],"knR":[26.8,56.5],"ftR":[153.3,-0.8],"hipL":[18.6,48.5],"knL":[-22.7,174.7],"ftL":[-2.4,328.3]},{"rootY":-46.8,"hips":[0,0],"chest":[-4.2,-69.9],"neck":[-4.2,-69.9],"head":[3.7,-138.8],"shR":[-59,-100.8],"elR":[-151.3,-167.8],"haR":[-184.9,-204.8],"shL":[52.5,-57.1],"elL":[160.4,-38],"haL":[203.7,-37.4],"hipR":[-23.5,10.7],"knR":[24.2,38.5],"ftR":[154.7,-31.7],"hipL":[16,49.1],"knL":[-25.3,175.6],"ftL":[-0.8,331.9]},{"rootY":-54,"hips":[0,0],"chest":[-4.2,-69.5],"neck":[-4.2,-69.5],"head":[4.7,-138.3],"shR":[-57.5,-101.8],"elR":[-148.7,-169.8],"haR":[-181.6,-207.6],"shL":[51.2,-55.3],"elL":[158.7,-30.6],"haL":[203,-27.8],"hipR":[-23.7,8],"knR":[20.4,21.3],"ftR":[154.8,-57.4],"hipL":[13.9,49.4],"knL":[-25,177.2],"ftL":[3.1,335.2]},{"rootY":-59.1,"hips":[0,0],"chest":[-4,-69.5],"neck":[-4,-69.5],"head":[5.9,-138.2],"shR":[-56.5,-102.6],"elR":[-146.7,-171.1],"haR":[-178.9,-209.9],"shL":[50.7,-54.8],"elL":[157.4,-24.8],"haL":[202.2,-19.3],"hipR":[-23.7,4.3],"knR":[17.4,5.3],"ftR":[153.5,-79.3],"hipL":[12.5,49.2],"knL":[-19.9,179],"ftL":[7.9,338.3]},{"rootY":-60.4,"hips":[0,0],"chest":[-4.5,-70.6],"neck":[-4.5,-70.6],"head":[6.2,-139.2],"shR":[-55.6,-104.4],"elR":[-144.9,-173.8],"haR":[-176.5,-213.5],"shL":[49,-55.4],"elL":[154.7,-20.6],"haL":[199.6,-12.6],"hipR":[-26,-1.4],"knR":[14.7,-9.1],"ftR":[150.8,-97.7],"hipL":[9.9,48.1],"knL":[-16.1,179.4],"ftL":[10.8,339.9]},{"rootY":-60.7,"hips":[0,0],"chest":[-3.5,-71.1],"neck":[-3.5,-71.1],"head":[8,-139.5],"shR":[-53.8,-105.7],"elR":[-142,-176.4],"haR":[-172.8,-217],"shL":[49.4,-55.1],"elL":[153.4,-15.2],"haL":[198.5,-5.8],"hipR":[-24.8,-2.1],"knR":[14.5,-16.6],"ftR":[148.3,-110.5],"hipL":[10,48],"knL":[-11.8,180.8],"ftL":[12.1,342.1]},{"rootY":-59.5,"hips":[0,0],"chest":[-2.8,-71.4],"neck":[-2.8,-71.4],"head":[9.5,-139.6],"shR":[-52.8,-106.9],"elR":[-139.9,-178.7],"haR":[-169.8,-220],"shL":[50.1,-54.3],"elL":[153,-11.4],"haL":[198.1,-0.7],"hipR":[-24.3,-2.8],"knR":[16.1,-19.7],"ftR":[145.8,-119.5],"hipL":[10,47.8],"knL":[-9.4,181.4],"ftL":[11,343.3]},{"rootY":-57.6,"hips":[0,0],"chest":[-2,-71.2],"neck":[-2,-71.2],"head":[11.1,-139.1],"shR":[-52.1,-107.5],"elR":[-138.6,-180],"haR":[-167.8,-222],"shL":[51.1,-52.8],"elL":[153.4,-8.4],"haL":[198.2,3.1],"hipR":[-24.6,-3.3],"knR":[17.8,-17.9],"ftR":[144.4,-121.4],"hipL":[9.6,47.6],"knL":[-11,181.1],"ftL":[9.2,343]},{"rootY":-56.1,"hips":[0,0],"chest":[-1.1,-70.3],"neck":[-1.1,-70.3],"head":[12.5,-138],"shR":[-51.3,-107.6],"elR":[-137.3,-180],"haR":[-166.2,-222.3],"shL":[52.2,-50.3],"elL":[153.8,-4.7],"haL":[198.7,7.4],"hipR":[-23.9,-2.1],"knR":[19.8,-13.6],"ftR":[146.2,-116.4],"hipL":[10.4,47.9],"knL":[-13.8,180.7],"ftL":[8.5,342]},{"rootY":-54.7,"hips":[0,0],"chest":[-0.8,-69.8],"neck":[-0.8,-69.8],"head":[13.6,-137.1],"shR":[-51.6,-107.5],"elR":[-137.8,-179.6],"haR":[-166.9,-221.7],"shL":[52.8,-48.8],"elL":[154.4,-2.9],"haL":[199,9.7],"hipR":[-23.9,-0.7],"knR":[20,-7.6],"ftR":[149.6,-104],"hipL":[10.8,48.2],"knL":[-17,180],"ftL":[8,340.6]},{"rootY":-53.3,"hips":[0,0],"chest":[-1.3,-69.3],"neck":[-1.3,-69.3],"head":[12.9,-136.7],"shR":[-52.5,-107.2],"elR":[-139.6,-178.3],"haR":[-169.2,-220],"shL":[52.6,-47.5],"elL":[154.2,-1.7],"haL":[198.7,11.4],"hipR":[-25.4,-0.9],"knR":[19.3,-1.2],"ftR":[153.6,-86.7],"hipL":[9.9,48.3],"knL":[-20.6,179.2],"ftL":[7.2,339.2]},{"rootY":-53.3,"hips":[0,0],"chest":[-0.5,-68.8],"neck":[-0.5,-68.8],"head":[13,-136.3],"shR":[-52.4,-106.2],"elR":[-141,-175.9],"haR":[-171.6,-217],"shL":[53.9,-47.1],"elL":[155.5,-1.2],"haL":[199.4,12.3],"hipR":[-22.4,3.6],"knR":[19.7,8],"ftR":[158,-65],"hipL":[11.3,49.5],"knL":[-21.9,180],"ftL":[7.3,339.1]},{"rootY":-52.1,"hips":[0,0],"chest":[-0.3,-69.3],"neck":[-0.3,-69.3],"head":[12.2,-137.1],"shR":[-52.6,-106.5],"elR":[-143.5,-174.3],"haR":[-175.2,-214.4],"shL":[54.1,-47.5],"elL":[155.9,-2.1],"haL":[199.3,11.4],"hipR":[-22.6,3.9],"knR":[19.4,16.2],"ftR":[159.9,-44.4],"hipL":[11,49.7],"knL":[-24.4,179.4],"ftL":[6.4,338]},{"rootY":-52.3,"hips":[0,0],"chest":[0,-69.3],"neck":[0,-69.3],"head":[11.2,-137.7],"shR":[-52.8,-105.8],"elR":[-146.1,-171.3],"haR":[-179.2,-210.3],"shL":[55,-48.3],"elL":[156.6,-3],"haL":[199.7,10.4],"hipR":[-22.7,4.4],"knR":[19.4,25.6],"ftR":[160.6,-23.5],"hipL":[10.7,49.9],"knL":[-25.7,179.4],"ftL":[5.9,337.7]},{"rootY":-51,"hips":[0,0],"chest":[0,-69.7],"neck":[0,-69.7],"head":[9.7,-138.5],"shR":[-53.5,-105],"elR":[-148.9,-168],"haR":[-183.4,-205.9],"shL":[55.4,-50.1],"elL":[156.7,-4.4],"haL":[199.4,9.3],"hipR":[-23,5.3],"knR":[18.6,34.4],"ftR":[158.8,-5.2],"hipL":[10.4,50.1],"knL":[-28.2,178.7],"ftL":[3.5,337.1]},{"rootY":-50.4,"hips":[0,0],"chest":[-0.9,-70],"neck":[-0.9,-70],"head":[7.8,-139.2],"shR":[-55.1,-103.9],"elR":[-153.1,-163.7],"haR":[-189.2,-200],"shL":[55,-52.2],"elL":[154.9,-4.3],"haL":[197.2,10.2],"hipR":[-23.4,6.6],"knR":[17.8,43.5],"ftR":[155.7,13.5],"hipL":[10.2,50.4],"knL":[-32.1,177.6],"ftL":[0.6,335.4]},{"rootY":-47.9,"hips":[0,0],"chest":[-2.7,-71],"neck":[-2.7,-71],"head":[4.4,-140.4],"shR":[-58,-102.9],"elR":[-158.9,-158.5],"haR":[-196.7,-193.1],"shL":[53.6,-55.5],"elL":[151.3,-4.3],"haL":[192.9,11.8],"hipR":[-24.6,6.9],"knR":[14.9,51.7],"ftR":[149.4,31.1],"hipL":[10.2,50.4],"knL":[-36.2,175.9],"ftL":[-6.2,334.2]},{"rootY":-42.9,"hips":[0,0],"chest":[-5.1,-72.1],"neck":[-5.1,-72.1],"head":[0.3,-141.5],"shR":[-61.3,-102.1],"elR":[-164.6,-153.5],"haR":[-204.2,-186],"shL":[51.6,-58.7],"elL":[146.9,-3.3],"haL":[187.1,14.6],"hipR":[-24.9,9.7],"knR":[11.8,62],"ftR":[141.2,49.1],"hipL":[10.9,50.6],"knL":[-31,174.7],"ftL":[-18.8,332.4]},{"rootY":-34.4,"hips":[0,0],"chest":[-8.1,-73.4],"neck":[-8.1,-73.4],"head":[-4.2,-142.3],"shR":[-65.4,-101.2],"elR":[-170.9,-147.7],"haR":[-211.8,-178.2],"shL":[49.1,-62],"elL":[140.8,-1.8],"haL":[180,17.9],"hipR":[-25.7,11.6],"knR":[9,72.3],"ftR":[131.1,67.5],"hipL":[11.3,50.6],"knL":[-28.6,173.5],"ftL":[-31,329.4]},{"rootY":-24.3,"hips":[0,0],"chest":[-11,-74.3],"neck":[-11,-74.3],"head":[-9.1,-143.2],"shR":[-69.4,-99.7],"elR":[-176.7,-140.7],"haR":[-218.4,-169.4],"shL":[46.5,-65.3],"elL":[134,0.5],"haL":[172,22.2],"hipR":[-26.8,13.5],"knR":[8.3,82.4],"ftR":[119.2,88.7],"hipL":[11.2,50.8],"knL":[-31,172.6],"ftL":[-36.1,326.8]},{"rootY":-12.3,"hips":[0,0],"chest":[-12.3,-74.9],"neck":[-12.3,-74.9],"head":[-11.7,-143.7],"shR":[-71.4,-98.3],"elR":[-179.6,-133.7],"haR":[-221.7,-160.6],"shL":[45.2,-67.5],"elL":[128.1,3.6],"haL":[164.5,27.9],"hipR":[-26.8,15.3],"knR":[8.8,93],"ftR":[107.6,112.9],"hipL":[11.8,50.6],"knL":[-31,171],"ftL":[-36.5,323.2]},{"rootY":-3.5,"hips":[0,0],"chest":[-12.3,-74],"neck":[-12.3,-74],"head":[-12.6,-142.8],"shR":[-71.9,-96.3],"elR":[-180.5,-125.7],"haR":[-222.6,-150.5],"shL":[45.1,-67.3],"elL":[122.6,10.2],"haL":[157.5,37.6],"hipR":[-24.9,19.7],"knR":[6.9,110.7],"ftR":[97.5,144.4],"hipL":[15.2,49.5],"knL":[-23.6,165],"ftL":[-38.9,313.6]},{"rootY":4.2,"hips":[0,0],"chest":[-11.2,-74],"neck":[-11.2,-74],"head":[-11.6,-142.7],"shR":[-71.4,-95.8],"elR":[-179.1,-121.1],"haR":[-220.6,-144.1],"shL":[46.8,-67.5],"elL":[118.9,16],"haL":[151.9,46.9],"hipR":[-23.2,23.7],"knR":[4,127.1],"ftR":[89.2,177.4],"hipL":[19.2,47.9],"knL":[-16.2,160.9],"ftL":[-39.1,307.2]},{"rootY":6.3,"hips":[0,0],"chest":[-11.4,-74],"neck":[-11.4,-74],"head":[-11.8,-142.6],"shR":[-71.6,-95.7],"elR":[-176.6,-119.4],"haR":[-217.3,-141.7],"shL":[46.4,-67.6],"elL":[113.2,21.2],"haL":[144.3,55.6],"hipR":[-22.9,26.6],"knR":[2.3,139],"ftR":[81.2,211.5],"hipL":[20.9,46.8],"knL":[-10.6,159.6],"ftL":[-40.1,304.8]},{"rootY":9.4,"hips":[0,0],"chest":[-12.1,-75],"neck":[-12.1,-75],"head":[-12.7,-143.3],"shR":[-71.7,-97.5],"elR":[-174.1,-122.5],"haR":[-212.5,-145.6],"shL":[45.3,-67.8],"elL":[105.5,26.1],"haL":[135.1,63.7],"hipR":[-24.9,26.4],"knR":[-1.7,146.7],"ftR":[76,236.4],"hipL":[19.7,47.3],"knL":[-13.5,156.9],"ftL":[-41.4,302.1]},{"rootY":11.3,"hips":[0,0],"chest":[-11.5,-76.1],"neck":[-11.5,-76.1],"head":[-12.8,-144.2],"shR":[-70.9,-99.1],"elR":[-168.9,-128.6],"haR":[-205,-153.4],"shL":[45.8,-68.7],"elL":[99.9,29.2],"haL":[127.5,69.5],"hipR":[-25.1,27.8],"knR":[-6.3,155.3],"ftR":[73.5,256],"hipL":[19.2,47],"knL":[-16.8,154.8],"ftL":[-42.3,300.2]},{"rootY":10.4,"hips":[0,0],"chest":[-9.6,-77.3],"neck":[-9.6,-77.3],"head":[-11.7,-145.3],"shR":[-67.8,-101.3],"elR":[-162.4,-136.1],"haR":[-194.2,-163.6],"shL":[46.6,-69.2],"elL":[94.8,31.6],"haL":[120.4,74.1],"hipR":[-25.6,28.9],"knR":[-10,160.8],"ftR":[72.1,272.1],"hipL":[18.8,46.7],"knL":[-20.7,153.6],"ftL":[-42.8,300.6]},{"rootY":9.7,"hips":[0,0],"chest":[-7.5,-79.1],"neck":[-7.5,-79.1],"head":[-10.5,-147.1],"shR":[-64.8,-104.3],"elR":[-156.6,-145.9],"haR":[-183.2,-176.6],"shL":[47.8,-70.2],"elL":[90.3,32.7],"haL":[113.8,77],"hipR":[-26.1,30.3],"knR":[-11.8,164.4],"ftR":[70.9,282.7],"hipL":[18.8,46.2],"knL":[-24.8,152.9],"ftL":[-43.1,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-5.3,-80.4],"neck":[-5.3,-80.4],"head":[-8.6,-148.3],"shR":[-61.9,-106],"elR":[-150.1,-156.2],"haR":[-171.1,-190],"shL":[49.7,-71.6],"elL":[86,32.9],"haL":[107.5,78.5],"hipR":[-26.1,32.5],"knR":[-12.5,167.5],"ftR":[70.5,289.6],"hipL":[19.3,45],"knL":[-26.9,152.1],"ftL":[-43.2,301.9]},{"rootY":9.5,"hips":[0,0],"chest":[-3.1,-81.9],"neck":[-3.1,-81.9],"head":[-6.6,-149.9],"shR":[-58.9,-107.8],"elR":[-142.8,-166.7],"haR":[-158.2,-202.7],"shL":[51.2,-73.3],"elL":[82.8,32],"haL":[102.1,78.6],"hipR":[-26.2,33.7],"knR":[-14.9,169],"ftR":[68.7,293.9],"hipL":[19.1,44.2],"knL":[-27.3,151.7],"ftL":[-43.2,301.8]},{"rootY":9.5,"hips":[0,0],"chest":[-3,-82.3],"neck":[-3,-82.3],"head":[-6.2,-150.4],"shR":[-57.4,-108.5],"elR":[-136.6,-176.5],"haR":[-146.5,-214.3],"shL":[49.9,-74.3],"elL":[78.5,30.9],"haL":[94.5,78.6],"hipR":[-27.2,34.4],"knR":[-16.6,169.5],"ftR":[68.6,296.4],"hipL":[19.3,43.7],"knL":[-28.1,150],"ftL":[-44.7,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-2.2,-83.7],"neck":[-2.2,-83.7],"head":[-5.2,-151.9],"shR":[-56,-109.7],"elR":[-131.5,-185.4],"haR":[-135.4,-224.6],"shL":[50.2,-76.2],"elL":[77.2,28.4],"haL":[90.2,76.8],"hipR":[-27,34.9],"knR":[-16.4,170],"ftR":[69.5,297.8],"hipL":[18.7,43.3],"knL":[-28.7,149.7],"ftL":[-45.3,301.3]},{"rootY":10.8,"hips":[0,0],"chest":[-1.8,-84.3],"neck":[-1.8,-84.3],"head":[-4.4,-152.5],"shR":[-54.7,-110.3],"elR":[-128.4,-194],"haR":[-125.3,-233.5],"shL":[49.6,-77.1],"elL":[75.9,26.6],"haL":[86.5,75.3],"hipR":[-27,35.3],"knR":[-16.3,170.1],"ftR":[69.3,298.6],"hipL":[18.5,43],"knL":[-29.3,147.8],"ftL":[-46.9,300]},{"rootY":11.7,"hips":[0,0],"chest":[-1.6,-84.4],"neck":[-1.6,-84.4],"head":[-4,-152.8],"shR":[-53.4,-109.5],"elR":[-124.3,-198.7],"haR":[-115.6,-237.7],"shL":[48.5,-78.9],"elL":[76.3,23.7],"haL":[85.3,72.5],"hipR":[-27.1,35.2],"knR":[-15.1,170],"ftR":[68.8,300.7],"hipL":[19,43],"knL":[-28.4,146.6],"ftL":[-48.9,299.5]},{"rootY":12.4,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-4.6,-153.1],"shR":[-53.6,-109.2],"elR":[-122.8,-201.4],"haR":[-109.5,-239.1],"shL":[47.3,-79.4],"elL":[84.5,19.8],"haL":[87.6,69.4],"hipR":[-26.4,35.7],"knR":[-14.7,170.4],"ftR":[67.6,303.2],"hipL":[19.1,42.6],"knL":[-28.9,144.8],"ftL":[-51.6,298.6]},{"rootY":12.8,"hips":[0,0],"chest":[-3.6,-84.4],"neck":[-3.6,-84.4],"head":[-6.8,-153.1],"shR":[-54.6,-107.9],"elR":[-123.7,-199.8],"haR":[-107.4,-235.7],"shL":[45,-81],"elL":[90.3,15.9],"haL":[87.1,65],"hipR":[-26.9,35.4],"knR":[-17.6,170.1],"ftR":[64.4,303.9],"hipL":[18.3,42.8],"knL":[-30.3,142.8],"ftL":[-54,297.6]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-84.4],"neck":[-4.4,-84.4],"head":[-8.2,-153.1],"shR":[-53.7,-107],"elR":[-123.7,-195.1],"haR":[-106.3,-229.6],"shL":[41.7,-81.9],"elL":[93,13.9],"haL":[85.9,62.3],"hipR":[-27.8,34.3],"knR":[-19.7,169.1],"ftR":[61.4,304.9],"hipL":[17.2,43.6],"knL":[-31.2,140.8],"ftL":[-55.7,296]},{"rootY":12.7,"hips":[0,0],"chest":[-4.2,-84.6],"neck":[-4.2,-84.6],"head":[-8.5,-153.3],"shR":[-52.2,-106],"elR":[-122.7,-187.6],"haR":[-106.8,-222.4],"shL":[39.8,-83.4],"elL":[96.8,11.3],"haL":[86.7,58.9],"hipR":[-27.8,34],"knR":[-21.3,168.7],"ftR":[59.6,305.4],"hipL":[17.2,43.9],"knL":[-29.6,137.2],"ftL":[-56.3,292.3]},{"rootY":12,"hips":[0,0],"chest":[-4.1,-84.8],"neck":[-4.1,-84.8],"head":[-9.3,-153.6],"shR":[-52.1,-104.7],"elR":[-121.9,-176.4],"haR":[-109.6,-212.5],"shL":[39.7,-85.4],"elL":[101.6,7.6],"haL":[86.3,53],"hipR":[-27.9,34.5],"knR":[-22.1,168.9],"ftR":[58.5,305.9],"hipL":[17.9,43.6],"knL":[-27.9,133.9],"ftL":[-56.5,289.8]},{"rootY":11,"hips":[0,0],"chest":[-4.4,-84.6],"neck":[-4.4,-84.6],"head":[-9.7,-153.4],"shR":[-51.8,-103.5],"elR":[-119.5,-162.1],"haR":[-112.3,-200.5],"shL":[38.6,-86.5],"elL":[103.7,4.3],"haL":[85.4,48.3],"hipR":[-27.9,35.3],"knR":[-20.7,169.1],"ftR":[58,306.7],"hipL":[18.7,42.9],"knL":[-26.5,130.3],"ftL":[-57.7,287.4]},{"rootY":9.9,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-9.9,-153.4],"shR":[-51.9,-102.7],"elR":[-115.9,-144.6],"haR":[-115.1,-185.7],"shL":[37.5,-87.6],"elL":[104,-0.7],"haL":[82.5,42.3],"hipR":[-28.4,35.4],"knR":[-19.5,168.9],"ftR":[57.9,307.4],"hipL":[18.7,42.7],"knL":[-25.6,126.6],"ftL":[-61.3,283.7]},{"rootY":8.4,"hips":[0,0],"chest":[-4.6,-84.9],"neck":[-4.6,-84.9],"head":[-9.5,-153.8],"shR":[-51.5,-101.3],"elR":[-110.1,-124.6],"haR":[-117.8,-168],"shL":[37.8,-89.9],"elL":[104.4,-8.9],"haL":[79.4,32.9],"hipR":[-28,36.2],"knR":[-17.8,169.7],"ftR":[58.2,308.7],"hipL":[19.7,42.1],"knL":[-22.7,123.6],"ftL":[-63.4,279.9]},{"rootY":8,"hips":[0,0],"chest":[-3.6,-85.3],"neck":[-3.6,-85.3],"head":[-8.7,-154.2],"shR":[-50.6,-100.4],"elR":[-102.4,-105.1],"haR":[-119.6,-149.1],"shL":[38.7,-91.9],"elL":[103.2,-19.6],"haL":[74.7,21.1],"hipR":[-28.5,35.5],"knR":[-16.1,168.8],"ftR":[58.7,308.9],"hipL":[18.9,42.6],"knL":[-22.1,120.9],"ftL":[-62.9,277.5]},{"rootY":6.4,"hips":[0,0],"chest":[-2.6,-85.5],"neck":[-2.6,-85.5],"head":[-6.7,-154.5],"shR":[-48.7,-99],"elR":[-93.7,-86],"haR":[-119.8,-128.7],"shL":[38.9,-94.2],"elL":[98.8,-33.3],"haL":[67,5.9],"hipR":[-28.3,36.1],"knR":[-14.8,169.5],"ftR":[59.5,309.9],"hipL":[19.1,42.1],"knL":[-20.7,119.5],"ftL":[-60.7,276.6]},{"rootY":6,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-5,-154.4],"shR":[-48.3,-98.2],"elR":[-87,-69.5],"haR":[-119.7,-108.8],"shL":[40.3,-95.2],"elL":[93.2,-50.2],"haL":[58.4,-13.9],"hipR":[-28,37],"knR":[-13.7,170.2],"ftR":[60.5,310.2],"hipL":[20.3,41.3],"knL":[-17.9,117.2],"ftL":[-58.3,274.5]},{"rootY":6.1,"hips":[0,0],"chest":[-0.9,-85.4],"neck":[-0.9,-85.4],"head":[-2.9,-154.3],"shR":[-48.4,-97.9],"elR":[-81.5,-57.6],"haR":[-119.2,-90.8],"shL":[43.2,-95.7],"elL":[88.7,-69],"haL":[51.4,-37.6],"hipR":[-28,37.1],"knR":[-12.3,169.9],"ftR":[61.8,310],"hipL":[20.3,41.2],"knL":[-16.8,114.7],"ftL":[-55.9,272.7]},{"rootY":5.6,"hips":[0,0],"chest":[0.2,-85.4],"neck":[0.2,-85.4],"head":[-1.1,-154],"shR":[-46.7,-97],"elR":[-76.6,-48.8],"haR":[-116.3,-74.8],"shL":[44,-97],"elL":[81.8,-90.4],"haL":[42.7,-65.6],"hipR":[-27.9,37.3],"knR":[-12.1,170.2],"ftR":[62.6,309.9],"hipL":[20.9,41.1],"knL":[-14.5,113.3],"ftL":[-53.8,271.5]},{"rootY":5.3,"hips":[0,0],"chest":[1.3,-85.4],"neck":[1.3,-85.4],"head":[0.7,-153.5],"shR":[-47,-98],"elR":[-74.2,-43.7],"haR":[-113.8,-62.7],"shL":[47,-96.1],"elL":[76.8,-108.6],"haL":[36.8,-92.1],"hipR":[-27.3,37.6],"knR":[-10.7,170.4],"ftR":[63.4,310.5],"hipL":[21.4,40.9],"knL":[-12.2,111.9],"ftL":[-52,270.2]},{"rootY":5,"hips":[0,0],"chest":[1.6,-85.2],"neck":[1.6,-85.2],"head":[2.4,-152.1],"shR":[-47.8,-98.7],"elR":[-74.3,-40.3],"haR":[-112.6,-51.8],"shL":[49.2,-95.1],"elL":[71.4,-123.1],"haL":[31.3,-116.8],"hipR":[-27.3,37.4],"knR":[-9.9,170.2],"ftR":[63.8,310.6],"hipL":[21.3,41.1],"knL":[-10.5,111],"ftL":[-50.6,269.4]},{"rootY":4.8,"hips":[0,0],"chest":[1.7,-84.9],"neck":[1.7,-84.9],"head":[4.3,-150.2],"shR":[-47.4,-98.5],"elR":[-74.4,-36.7],"haR":[-108.9,-41.2],"shL":[49.3,-94.9],"elL":[66.4,-135.5],"haL":[27.4,-141.3],"hipR":[-27.1,37.3],"knR":[-9.9,170.1],"ftR":[64,310.5],"hipL":[21.1,41.2],"knL":[-9.4,110.5],"ftL":[-49.2,269.1]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-84.6],"neck":[1.4,-84.6],"head":[6.2,-148.1],"shR":[-47.2,-98],"elR":[-75.2,-34.8],"haR":[-106.1,-32.3],"shL":[48.8,-94.8],"elL":[60.3,-144.8],"haL":[23.5,-161.8],"hipR":[-27.1,37.1],"knR":[-9.6,169.7],"ftR":[64.2,310.3],"hipL":[20.8,41.4],"knL":[-8.8,109.5],"ftL":[-48.1,268.4]},{"rootY":5.5,"hips":[0,0],"chest":[1.5,-84.3],"neck":[1.5,-84.3],"head":[8.4,-145.9],"shR":[-46.4,-97.8],"elR":[-75.7,-32.6],"haR":[-102.7,-24.7],"shL":[48.6,-94.6],"elL":[53.4,-152.3],"haL":[19.9,-179.4],"hipR":[-26.5,37.2],"knR":[-9.9,169.8],"ftR":[64.3,310.3],"hipL":[20.8,41.3],"knL":[-8,109.1],"ftL":[-47.1,268]},{"rootY":5.4,"hips":[0,0],"chest":[1.5,-84.2],"neck":[1.5,-84.2],"head":[10.2,-144.3],"shR":[-45.6,-97.6],"elR":[-76.1,-30.6],"haR":[-99.8,-18.1],"shL":[48.2,-94.7],"elL":[46.3,-158.1],"haL":[16.8,-192.9],"hipR":[-26.1,37.1],"knR":[-10.7,170.1],"ftR":[64.3,310.3],"hipL":[20.8,41.4],"knL":[-6.9,109.2],"ftL":[-46.6,268]},{"rootY":5.8,"hips":[0,0],"chest":[1.3,-83.9],"neck":[1.3,-83.9],"head":[11.1,-143],"shR":[-45.6,-97.3],"elR":[-77.7,-28.1],"haR":[-98.8,-12.2],"shL":[47.9,-94.6],"elL":[39.2,-162.9],"haL":[14.1,-203.1],"hipR":[-26.3,36.8],"knR":[-10.4,169.7],"ftR":[64,310.4],"hipL":[20.8,41.8],"knL":[-6.2,109],"ftL":[-46.8,267.5]},{"rootY":6,"hips":[0,0],"chest":[1.2,-83.8],"neck":[1.2,-83.8],"head":[12.2,-141.8],"shR":[-45.1,-96.9],"elR":[-78,-25.6],"haR":[-97.6,-7.4],"shL":[47.3,-94.7],"elL":[32.9,-167.9],"haL":[11.4,-211.5],"hipR":[-26.2,36.5],"knR":[-11.4,169.6],"ftR":[63.7,310.2],"hipL":[20.9,42],"knL":[-6.1,108.9],"ftL":[-47.1,267.3]},{"rootY":6.4,"hips":[0,0],"chest":[1.2,-83.6],"neck":[1.2,-83.6],"head":[12.7,-141.1],"shR":[-44.5,-97],"elR":[-77.3,-24.1],"haR":[-96.2,-4.2],"shL":[47,-94.2],"elL":[28.5,-172.3],"haL":[9.5,-217.9],"hipR":[-26,36.3],"knR":[-12.6,169.5],"ftR":[63.2,310.1],"hipL":[20.8,42.2],"knL":[-6.3,108.6],"ftL":[-47.2,267]},{"rootY":6.1,"hips":[0,0],"chest":[1,-83],"neck":[1,-83],"head":[13.3,-140],"shR":[-44.7,-96.4],"elR":[-78.1,-22],"haR":[-96.1,-0.9],"shL":[46.8,-93.8],"elL":[25.4,-176.1],"haL":[7.9,-222.6],"hipR":[-24.9,37.1],"knR":[-12,170.1],"ftR":[63.3,310.6],"hipL":[21.2,41.6],"knL":[-5.9,109],"ftL":[-47.3,267.4]},{"rootY":6.3,"hips":[0,0],"chest":[0.6,-82.8],"neck":[0.6,-82.8],"head":[13.4,-139.8],"shR":[-44.7,-96.3],"elR":[-78.1,-21.5],"haR":[-95.7,0.6],"shL":[46.1,-93.5],"elL":[24,-179.1],"haL":[6.7,-225.9],"hipR":[-25.1,36.8],"knR":[-12.8,169.8],"ftR":[62.9,310.5],"hipL":[20.9,41.8],"knL":[-6,108.9],"ftL":[-47.2,267.4]},{"rootY":6.2,"hips":[0,0],"chest":[0.5,-82.8],"neck":[0.5,-82.8],"head":[13.4,-139.9],"shR":[-45,-96.4],"elR":[-78.6,-21],"haR":[-95.7,1.6],"shL":[46.4,-93.3],"elL":[23.4,-180.8],"haL":[5.9,-227.6],"hipR":[-24.9,36.8],"knR":[-12.4,169.8],"ftR":[63,310.5],"hipL":[20.9,41.8],"knL":[-6,109.1],"ftL":[-47.1,267.6]},{"rootY":6.4,"hips":[0,0],"chest":[0.1,-82.8],"neck":[0.1,-82.8],"head":[12.8,-140.5],"shR":[-45.3,-96.6],"elR":[-79.4,-21.5],"haR":[-96.2,1.3],"shL":[46.2,-93.1],"elL":[22.5,-181.8],"haL":[4.7,-228.6],"hipR":[-25.4,36.3],"knR":[-13.3,169.5],"ftR":[62.5,310.4],"hipL":[20.8,42.2],"knL":[-6,109.1],"ftL":[-47.2,267.5]},{"rootY":6.5,"hips":[0,0],"chest":[-0.1,-82.5],"neck":[-0.1,-82.5],"head":[11.9,-140.6],"shR":[-45.9,-96.3],"elR":[-80.5,-22.5],"haR":[-97.5,-0.3],"shL":[46.3,-92.8],"elL":[22.2,-181.4],"haL":[4,-228],"hipR":[-25.3,36.4],"knR":[-12.9,169.4],"ftR":[62.3,310.8],"hipL":[20.9,42.1],"knL":[-6.9,109],"ftL":[-47.3,267.7]},{"rootY":6.8,"hips":[0,0],"chest":[-0.5,-82.5],"neck":[-0.5,-82.5],"head":[10.9,-141.2],"shR":[-46.3,-95.6],"elR":[-82.4,-23.8],"haR":[-99.8,-2.7],"shL":[45.8,-93.7],"elL":[22.5,-182.4],"haL":[3.4,-228.7],"hipR":[-25.5,36],"knR":[-13.6,169],"ftR":[62,310.2],"hipL":[20.8,42.4],"knL":[-7.5,109.1],"ftL":[-47.5,267.9]},{"rootY":7,"hips":[0,0],"chest":[-1.1,-82.4],"neck":[-1.1,-82.4],"head":[9.6,-141.6],"shR":[-47.4,-95.5],"elR":[-84.9,-26.4],"haR":[-102.7,-6.7],"shL":[45.7,-93.5],"elL":[22.9,-182.5],"haL":[3.9,-228.8],"hipR":[-25.5,35.9],"knR":[-13.9,168.8],"ftR":[61.8,309.9],"hipL":[20.9,42.5],"knL":[-7.5,109.2],"ftL":[-48.1,267.9]},{"rootY":6.9,"hips":[0,0],"chest":[-1.7,-82.4],"neck":[-1.7,-82.4],"head":[8.6,-141.7],"shR":[-48.8,-96.2],"elR":[-88.2,-29.8],"haR":[-106.3,-11.5],"shL":[46.1,-92.7],"elL":[24.3,-181.3],"haL":[5.7,-227.8],"hipR":[-25.2,36.1],"knR":[-14.1,169],"ftR":[61.2,310.4],"hipL":[20.6,42.4],"knL":[-7.6,109.3],"ftL":[-48.4,268]},{"rootY":7.2,"hips":[0,0],"chest":[-2.5,-82.5],"neck":[-2.5,-82.5],"head":[7.4,-142.4],"shR":[-49.9,-96.8],"elR":[-90.9,-33.5],"haR":[-109.6,-16.8],"shL":[45.7,-92.3],"elL":[26.1,-181.1],"haL":[7.9,-227.8],"hipR":[-26.3,35.3],"knR":[-15.2,168.5],"ftR":[60.7,309.9],"hipL":[20.2,43],"knL":[-6.9,108.7],"ftL":[-48,267.3]},{"rootY":7,"hips":[0,0],"chest":[-3.1,-82.5],"neck":[-3.1,-82.5],"head":[6.9,-143],"shR":[-50.1,-96.7],"elR":[-92.3,-35.5],"haR":[-112.6,-20.4],"shL":[44.5,-92.4],"elL":[28.2,-180.1],"haL":[10.6,-227],"hipR":[-26.2,35.6],"knR":[-16,168.9],"ftR":[60.4,310.1],"hipL":[21,42.8],"knL":[-5,109],"ftL":[-47.5,267.3]},{"rootY":7.4,"hips":[0,0],"chest":[-4,-82.6],"neck":[-4,-82.6],"head":[6,-144],"shR":[-51.1,-97.3],"elR":[-94.7,-36.9],"haR":[-116.3,-23.1],"shL":[43.8,-92],"elL":[31.9,-176.5],"haL":[14.8,-223.7],"hipR":[-26.9,35.2],"knR":[-15.9,168.3],"ftR":[60.4,309.4],"hipL":[21,43.1],"knL":[-4.7,108.6],"ftL":[-46.7,267]},{"rootY":7.1,"hips":[0,0],"chest":[-4.4,-82.5],"neck":[-4.4,-82.5],"head":[6.2,-144.7],"shR":[-51.6,-96.7],"elR":[-94.7,-34.7],"haR":[-118.9,-22.2],"shL":[43,-92.4],"elL":[37.6,-171.6],"haL":[19.5,-218.6],"hipR":[-26.2,36],"knR":[-14.3,168.6],"ftR":[61.1,309.6],"hipL":[21.4,42.5],"knL":[-3.8,108.8],"ftL":[-46,267.2]},{"rootY":6.7,"hips":[0,0],"chest":[-5,-82.4],"neck":[-5,-82.4],"head":[6.3,-145.3],"shR":[-50.9,-96.5],"elR":[-92.2,-30.2],"haR":[-119.4,-18.4],"shL":[40.6,-92.2],"elL":[43,-162.6],"haL":[23.5,-209.1],"hipR":[-25.4,36.9],"knR":[-13,169.1],"ftR":[61.5,310.1],"hipL":[22.1,41.7],"knL":[-3.1,109.3],"ftL":[-45.5,267.7]},{"rootY":6.7,"hips":[0,0],"chest":[-6.2,-82.5],"neck":[-6.2,-82.5],"head":[5.8,-146],"shR":[-52.3,-95.6],"elR":[-90.6,-23.8],"haR":[-120,-11.9],"shL":[39.3,-93.4],"elL":[49.5,-150.7],"haL":[28.5,-196.5],"hipR":[-25.6,36.7],"knR":[-12.6,168.8],"ftR":[61.5,310.1],"hipL":[21.9,41.9],"knL":[-3.2,109.4],"ftL":[-45.5,267.9]},{"rootY":6.7,"hips":[0,0],"chest":[-6.8,-82.9],"neck":[-6.8,-82.9],"head":[6.5,-147.7],"shR":[-52.8,-95.1],"elR":[-88.5,-17],"haR":[-119.1,-3.3],"shL":[37.9,-94.6],"elL":[54.6,-134.9],"haL":[33.1,-180.2],"hipR":[-25.4,36.8],"knR":[-12.7,169],"ftR":[61.8,310.1],"hipL":[22.2,41.8],"knL":[-2.6,109.6],"ftL":[-45.7,267.8]},{"rootY":6.4,"hips":[0,0],"chest":[-7.8,-83.1],"neck":[-7.8,-83.1],"head":[5.9,-148.8],"shR":[-53.7,-94.3],"elR":[-85.5,-10.3],"haR":[-116.9,6.4],"shL":[36.3,-95.8],"elL":[58.3,-116.6],"haL":[37.2,-161.3],"hipR":[-25.2,37],"knR":[-12.6,169.3],"ftR":[62.2,310],"hipL":[22.4,41.7],"knL":[-2.5,110.2],"ftL":[-46.6,268.1]},{"rootY":6.6,"hips":[0,0],"chest":[-8.5,-83.2],"neck":[-8.5,-83.2],"head":[5.1,-149.3],"shR":[-55.6,-95],"elR":[-82.6,-5.1],"haR":[-114.4,15.3],"shL":[36.6,-95.1],"elL":[64.1,-93.8],"haL":[43.6,-136.8],"hipR":[-25,37.1],"knR":[-12.6,169.4],"ftR":[62.6,309.8],"hipL":[22.4,41.5],"knL":[-3,111],"ftL":[-48.3,268.4]},{"rootY":7,"hips":[0,0],"chest":[-9.2,-83.3],"neck":[-9.2,-83.3],"head":[3.8,-150.1],"shR":[-56.3,-94.6],"elR":[-78.9,0.2],"haR":[-109.8,24.8],"shL":[35.4,-95.7],"elL":[68.7,-70.7],"haL":[48.8,-110],"hipR":[-24.7,37.4],"knR":[-13.5,170],"ftR":[62.4,310.1],"hipL":[22.6,41.2],"knL":[-3.5,111.8],"ftL":[-50.8,268.5]},{"rootY":7.2,"hips":[0,0],"chest":[-10.2,-83.3],"neck":[-10.2,-83.3],"head":[2.3,-150.3],"shR":[-57.1,-94.5],"elR":[-75.5,4.8],"haR":[-104.4,33.9],"shL":[33.7,-95.5],"elL":[70.1,-48],"haL":[51.7,-81],"hipR":[-24.8,37.3],"knR":[-12.4,169.7],"ftR":[63.2,309.3],"hipL":[22.3,41.3],"knL":[-5.3,112.6],"ftL":[-54.2,268.6]},{"rootY":7.9,"hips":[0,0],"chest":[-10.8,-83.3],"neck":[-10.8,-83.3],"head":[1.2,-150.7],"shR":[-58.4,-94.4],"elR":[-73.1,8.3],"haR":[-99.1,42.3],"shL":[33.4,-95.5],"elL":[70.5,-29.2],"haL":[54.6,-53],"hipR":[-24.8,37.1],"knR":[-12.9,169.7],"ftR":[63.7,308.8],"hipL":[21.9,41.5],"knL":[-6.9,114.1],"ftL":[-57.3,269.2]},{"rootY":8.7,"hips":[0,0],"chest":[-11.3,-83.6],"neck":[-11.3,-83.6],"head":[0.2,-151.1],"shR":[-59.6,-94.4],"elR":[-71.4,11.5],"haR":[-93.5,49.4],"shL":[33.2,-95.7],"elL":[70.2,-13.8],"haL":[57.1,-26.5],"hipR":[-24.8,36.9],"knR":[-12.7,169.6],"ftR":[64.3,308.3],"hipL":[21.6,41.7],"knL":[-8.8,115.6],"ftL":[-60.2,269.9]},{"rootY":9.7,"hips":[0,0],"chest":[-11.5,-83.8],"neck":[-11.5,-83.8],"head":[-0.5,-151.5],"shR":[-60.3,-94.7],"elR":[-68.5,13.7],"haR":[-87.2,54.8],"shL":[33.2,-95.5],"elL":[69.4,-2.8],"haL":[58.5,-3.2],"hipR":[-24.9,36.6],"knR":[-12,169.3],"ftR":[65.3,307.4],"hipL":[21.3,42],"knL":[-11.7,118],"ftL":[-62.7,271.8]},{"rootY":10.5,"hips":[0,0],"chest":[-11,-84.4],"neck":[-11,-84.4],"head":[-0.6,-152.2],"shR":[-60.3,-95.3],"elR":[-64.9,15.1],"haR":[-81.2,58.5],"shL":[33.6,-95.8],"elL":[67.7,4.7],"haL":[59.8,16.5],"hipR":[-25.1,36.1],"knR":[-10.7,169.1],"ftR":[67.2,306.1],"hipL":[20.5,42.4],"knL":[-14.4,121.6],"ftL":[-64.6,274.7]},{"rootY":11.4,"hips":[0,0],"chest":[-10.4,-84.9],"neck":[-10.4,-84.9],"head":[0.1,-152.8],"shR":[-60.7,-96.3],"elR":[-64,16.1],"haR":[-76.8,61.2],"shL":[35,-95.4],"elL":[66.3,9.6],"haL":[61.9,33.4],"hipR":[-24.4,36.1],"knR":[-9.5,169.3],"ftR":[69.1,305.4],"hipL":[20.4,42.4],"knL":[-17.6,126.1],"ftL":[-65.2,279.1]},{"rootY":12.6,"hips":[0,0],"chest":[-9.1,-85.4],"neck":[-9.1,-85.4],"head":[1.3,-153.4],"shR":[-59.3,-97.4],"elR":[-57.7,16],"haR":[-70,62.3],"shL":[36,-95.1],"elL":[64.1,12.7],"haL":[64.6,46.6],"hipR":[-24,35.8],"knR":[-9.4,169.3],"ftR":[71.9,303.3],"hipL":[20.3,42.7],"knL":[-20.4,130.3],"ftL":[-64,283.1]},{"rootY":14.9,"hips":[0,0],"chest":[-8.1,-85.6],"neck":[-8.1,-85.6],"head":[2.1,-153.5],"shR":[-57.4,-96.9],"elR":[-53.3,17],"haR":[-64.6,64.4],"shL":[35.8,-96],"elL":[61,13],"haL":[66.3,54.7],"hipR":[-23.7,35.7],"knR":[-8.3,169.4],"ftR":[74.7,301.4],"hipL":[20.1,42.7],"knL":[-24.7,133.3],"ftL":[-61.6,286.5]},{"rootY":17.1,"hips":[0,0],"chest":[-6.1,-85.8],"neck":[-6.1,-85.8],"head":[4.2,-153.6],"shR":[-54.8,-97.3],"elR":[-47.8,16.9],"haR":[-58.7,64.9],"shL":[37.2,-96.2],"elL":[58.7,13.2],"haL":[68.7,59.5],"hipR":[-23.3,35.4],"knR":[-7.3,169.4],"ftR":[78.5,299.2],"hipL":[19.7,42.9],"knL":[-27.6,135.6],"ftL":[-57.7,288.8]},{"rootY":19.4,"hips":[0,0],"chest":[-4.2,-85.9],"neck":[-4.2,-85.9],"head":[6.6,-153.5],"shR":[-52.2,-97.1],"elR":[-44.2,17.2],"haR":[-54.4,65.5],"shL":[38.5,-96.8],"elL":[57.6,12.1],"haL":[70.4,60.2],"hipR":[-22.4,35.4],"knR":[-6.1,169.7],"ftR":[81.7,297.3],"hipL":[19.4,42.9],"knL":[-30.3,136.7],"ftL":[-54.8,289.3]},{"rootY":21.7,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.6,-153.5],"shR":[-50.7,-98],"elR":[-41.6,16.3],"haR":[-51.8,64.7],"shL":[40.2,-96.4],"elL":[58.5,11.6],"haL":[72.9,59.9],"hipR":[-23.1,35.5],"knR":[-3.1,169.6],"ftR":[85.8,294.9],"hipL":[18.9,42.9],"knL":[-32.1,137.3],"ftL":[-52.1,288.9]},{"rootY":23.6,"hips":[0,0],"chest":[-0.6,-86.2],"neck":[-0.6,-86.2],"head":[11.8,-153.4],"shR":[-48.2,-98],"elR":[-40,16.3],"haR":[-50.3,64.7],"shL":[42.4,-96.8],"elL":[61.3,9.2],"haL":[75.8,57.4],"hipR":[-22.6,35.2],"knR":[0.2,169],"ftR":[90.8,292.6],"hipL":[18,43.1],"knL":[-33.7,137.4],"ftL":[-48.3,287.3]},{"rootY":25.8,"hips":[0,0],"chest":[0.8,-86.2],"neck":[0.8,-86.2],"head":[14.1,-153.1],"shR":[-47.1,-98.8],"elR":[-40.4,15.6],"haR":[-51.3,63.8],"shL":[44.4,-95.9],"elL":[64.2,8.1],"haL":[78.2,56.5],"hipR":[-22.2,35.6],"knR":[2.6,169.1],"ftR":[94.7,290.3],"hipL":[17.5,42.8],"knL":[-35.1,136.8],"ftL":[-45.1,284.8]}]},"dance_spin":{"name":"dance_spin","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":0.3,"hips":[0,0],"chest":[-0.4,-86.4],"neck":[-0.4,-86.4],"head":[-4.7,-154.9],"shR":[-68.2,-91.5],"elR":[-84.1,15.3],"haR":[-93.3,65.6],"shL":[69.1,-103.8],"elL":[88.1,-3.6],"haL":[95.4,45.8],"hipR":[-34.9,37.4],"knR":[-6.5,167],"ftR":[19.1,322.5],"hipL":[30.9,41.1],"knL":[20.1,174.6],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-5.8,-154.4],"shR":[-68.2,-91.6],"elR":[-83.8,15.4],"haR":[-92.7,65.7],"shL":[69,-103.9],"elL":[87.8,-3.5],"haL":[95.2,45.9],"hipR":[-35.1,37.3],"knR":[-6.8,167],"ftR":[19.1,322.4],"hipL":[30.8,41.2],"knL":[19.9,174.7],"ftL":[-39.5,279.9]},{"rootY":0.6,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-7.1,-154.5],"shR":[-68.2,-91.5],"elR":[-83.1,16.2],"haR":[-92,66.5],"shL":[69,-104.1],"elL":[87.2,-3.4],"haL":[94.9,46],"hipR":[-35.1,37.2],"knR":[-7.2,167.1],"ftR":[18.9,322.3],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-39.7,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.6,-86.4],"neck":[-0.6,-86.4],"head":[-8.3,-154.2],"shR":[-68.3,-91.4],"elR":[-82.6,16.5],"haR":[-91.2,66.8],"shL":[69,-104.3],"elL":[86.7,-3.5],"haL":[94.4,45.9],"hipR":[-35.2,37.1],"knR":[-7.6,166.9],"ftR":[18.8,322.2],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-39.9,279.5]},{"rootY":0.5,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-9.4,-153.8],"shR":[-68.1,-91.4],"elR":[-81.5,16.7],"haR":[-90.1,67.1],"shL":[69.2,-104.4],"elL":[86.5,-3.5],"haL":[94.1,45.9],"hipR":[-35.1,37.2],"knR":[-7.3,166.8],"ftR":[18.7,322],"hipL":[30.9,41.3],"knL":[19,174.3],"ftL":[-39.6,279.7]},{"rootY":0.7,"hips":[0,0],"chest":[-0.7,-86.4],"neck":[-0.7,-86.4],"head":[-10.7,-153.6],"shR":[-68.3,-91.5],"elR":[-80.7,16.7],"haR":[-89,67.1],"shL":[69,-104.3],"elL":[86,-3.4],"haL":[93.4,46],"hipR":[-35.2,37.2],"knR":[-7.7,167],"ftR":[18.7,322],"hipL":[30.8,41.3],"knL":[19,174.4],"ftL":[-39.5,279.8]},{"rootY":0.4,"hips":[0,0],"chest":[-0.9,-86.4],"neck":[-0.9,-86.4],"head":[-11.6,-153.3],"shR":[-68.5,-91.6],"elR":[-79.6,17.1],"haR":[-87.8,67.5],"shL":[68.8,-104.3],"elL":[85.1,-3.4],"haL":[92.4,46.1],"hipR":[-35.2,37.1],"knR":[-7.8,166.8],"ftR":[18.4,321.9],"hipL":[30.7,41.4],"knL":[18.7,174.4],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-1.1,-86.4],"neck":[-1.1,-86.4],"head":[-12.2,-153.4],"shR":[-68.6,-91.7],"elR":[-78.6,17],"haR":[-86.4,67.5],"shL":[68.7,-104.1],"elL":[84.4,-3.3],"haL":[91.5,46.2],"hipR":[-35.3,37.1],"knR":[-7.8,166.9],"ftR":[18.4,321.9],"hipL":[30.6,41.4],"knL":[18.7,174.4],"ftL":[-39.9,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-1.3,-86.4],"neck":[-1.3,-86.4],"head":[-13.1,-153.1],"shR":[-68.8,-91.7],"elR":[-77.6,17],"haR":[-85.1,67.6],"shL":[68.6,-104],"elL":[83.4,-3.6],"haL":[90,46.1],"hipR":[-35.3,37],"knR":[-7.9,167],"ftR":[18.4,322],"hipL":[30.6,41.4],"knL":[18.5,174.5],"ftL":[-40.2,279.3]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.8,-152.9],"shR":[-69,-91.9],"elR":[-77,16.7],"haR":[-84,67.4],"shL":[68.3,-103.9],"elL":[82.9,-3.9],"haL":[89,45.9],"hipR":[-35.5,36.9],"knR":[-8.2,166.8],"ftR":[18.2,321.8],"hipL":[30.4,41.6],"knL":[18.2,174.6],"ftL":[-40.6,279.4]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.6,-153.1],"shR":[-69.1,-91.9],"elR":[-76.4,16.7],"haR":[-83.2,67.4],"shL":[68.3,-103.8],"elL":[82.5,-4.1],"haL":[88.1,45.8],"hipR":[-35.5,36.8],"knR":[-8.4,166.9],"ftR":[18.1,321.9],"hipL":[30.3,41.6],"knL":[18.5,174.8],"ftL":[-40.9,279.2]},{"rootY":0.4,"hips":[0,0],"chest":[-1.5,-86.4],"neck":[-1.5,-86.4],"head":[-13.4,-153.1],"shR":[-69,-91.5],"elR":[-76,17.1],"haR":[-82.9,67.8],"shL":[68.4,-103.9],"elL":[82,-4.7],"haL":[87.4,45.3],"hipR":[-35.5,36.8],"knR":[-8.2,166.9],"ftR":[18.3,321.8],"hipL":[30.3,41.6],"knL":[18.8,174.9],"ftL":[-41.1,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-13.5,-153.1],"shR":[-69.2,-91.4],"elR":[-76.9,16.7],"haR":[-83.9,67.4],"shL":[68,-104],"elL":[81.3,-5.4],"haL":[86.4,44.8],"hipR":[-35.6,36.8],"knR":[-9,166.9],"ftR":[17.9,321.6],"hipL":[30.3,41.7],"knL":[18.2,174.8],"ftL":[-41.9,278.5]},{"rootY":0.8,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-12.4,-153.4],"shR":[-68.6,-91.7],"elR":[-76.9,16],"haR":[-84,66.7],"shL":[68.7,-103.7],"elL":[81.6,-5.9],"haL":[86.6,44.3],"hipR":[-35.3,37.1],"knR":[-7.2,167],"ftR":[18.9,321.8],"hipL":[30.6,41.4],"knL":[19.4,174.7],"ftL":[-41.5,278.8]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-86.5],"neck":[-1.5,-86.5],"head":[-12.4,-153.5],"shR":[-68.8,-91.7],"elR":[-77.9,15.8],"haR":[-85.3,66.4],"shL":[68.5,-103.7],"elL":[81.3,-6.4],"haL":[86.2,43.8],"hipR":[-35.3,37],"knR":[-7.5,167.1],"ftR":[18.5,321.8],"hipL":[30.6,41.5],"knL":[19.4,174.7],"ftL":[-41.6,278.4]},{"rootY":0.8,"hips":[0,0],"chest":[-1.4,-86.4],"neck":[-1.4,-86.4],"head":[-11.8,-153.6],"shR":[-68.7,-91.7],"elR":[-78.7,15],"haR":[-85.8,65.7],"shL":[68.6,-103.6],"elL":[81.4,-6.5],"haL":[86.3,43.7],"hipR":[-35.2,37.1],"knR":[-7.1,167.1],"ftR":[18.6,321.9],"hipL":[30.7,41.4],"knL":[19.5,174.5],"ftL":[-41,278.7]},{"rootY":0.6,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-11.1,-153.7],"shR":[-68.4,-91.7],"elR":[-79.1,14.8],"haR":[-86.1,65.5],"shL":[68.8,-103.4],"elL":[81.3,-6.9],"haL":[86.3,43.3],"hipR":[-35.1,37.2],"knR":[-6.1,166.9],"ftR":[18.9,322],"hipL":[30.7,41.2],"knL":[20,174.6],"ftL":[-40.8,279.2]},{"rootY":0.7,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.5,-153.9],"shR":[-68.3,-91.7],"elR":[-79.8,14.5],"haR":[-86.5,65.2],"shL":[69,-103.4],"elL":[81.3,-7.1],"haL":[86.4,43.1],"hipR":[-35,37.4],"knR":[-5.3,166.8],"ftR":[19.2,321.9],"hipL":[30.9,41],"knL":[19.8,174.4],"ftL":[-40.8,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.1,-154.1],"shR":[-68.1,-91.8],"elR":[-80.5,14],"haR":[-87.2,64.8],"shL":[69.1,-103.2],"elL":[81.2,-6.9],"haL":[86.5,43.3],"hipR":[-34.9,37.4],"knR":[-4.7,166.5],"ftR":[18.8,321.8],"hipL":[31,41],"knL":[19.4,174.3],"ftL":[-41.3,279]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-10.6,-154.1],"shR":[-68.8,-91.8],"elR":[-82.3,13.7],"haR":[-88.6,64.5],"shL":[68.4,-103.1],"elL":[80.3,-7],"haL":[85.7,43.2],"hipR":[-35.2,37.2],"knR":[-6.7,166.9],"ftR":[18.3,321.9],"hipL":[30.6,41.2],"knL":[19.1,174.5],"ftL":[-42.3,278.6]},{"rootY":0.5,"hips":[0,0],"chest":[-2.1,-86.4],"neck":[-2.1,-86.4],"head":[-10.5,-154.2],"shR":[-69.2,-91.6],"elR":[-83.6,14],"haR":[-89.9,64.8],"shL":[68,-103.2],"elL":[80,-6.9],"haL":[85.4,43.2],"hipR":[-35.4,36.9],"knR":[-7.7,166.7],"ftR":[17.6,321.8],"hipL":[30.4,41.5],"knL":[18.5,174.7],"ftL":[-43,278.7]},{"rootY":0.4,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-9.8,-154.4],"shR":[-68.9,-91.4],"elR":[-84.2,14],"haR":[-90.4,64.9],"shL":[68.3,-103.3],"elL":[80.3,-7],"haL":[85.8,43.1],"hipR":[-35.2,37.2],"knR":[-7,166.8],"ftR":[17.8,321.9],"hipL":[30.7,41.2],"knL":[18.9,174.4],"ftL":[-42.9,278.8]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.4],"neck":[-2.2,-86.4],"head":[-10.1,-154.4],"shR":[-69.4,-91.2],"elR":[-86.2,13.9],"haR":[-92,64.8],"shL":[67.8,-103.5],"elL":[80.1,-7.3],"haL":[85.4,42.8],"hipR":[-35.5,36.9],"knR":[-8.4,166.9],"ftR":[17.5,321.8],"hipL":[30.3,41.5],"knL":[18.6,174.8],"ftL":[-43.3,278.6]},{"rootY":0.6,"hips":[0,0],"chest":[-2.4,-86.4],"neck":[-2.4,-86.4],"head":[-9.8,-154.7],"shR":[-69.5,-91.3],"elR":[-87.6,13.6],"haR":[-93.1,64.5],"shL":[67.7,-103.3],"elL":[80,-7.3],"haL":[85.4,42.9],"hipR":[-35.4,36.9],"knR":[-8.5,166.7],"ftR":[17.1,321.6],"hipL":[30.3,41.5],"knL":[18.5,174.8],"ftL":[-43.6,278.6]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.3],"neck":[-2.2,-86.3],"head":[-9.3,-154.8],"shR":[-69.3,-91.4],"elR":[-88.9,13],"haR":[-94,63.9],"shL":[67.9,-103.2],"elL":[80.2,-7.3],"haL":[85.6,42.9],"hipR":[-35.4,37],"knR":[-8.2,166.7],"ftR":[17.4,321.6],"hipL":[30.4,41.4],"knL":[19,174.8],"ftL":[-43.5,278.5]},{"rootY":0.6,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.1,-154.8],"shR":[-69.2,-91.3],"elR":[-90.1,13],"haR":[-95.2,64],"shL":[68,-103.3],"elL":[80.7,-7.4],"haL":[86,42.7],"hipR":[-35.3,37],"knR":[-7.9,166.7],"ftR":[17.3,321.7],"hipL":[30.5,41.4],"knL":[19.4,174.8],"ftL":[-43.2,278.6]},{"rootY":0.9,"hips":[0,0],"chest":[-1.9,-86.3],"neck":[-1.9,-86.3],"head":[-8.7,-154.9],"shR":[-69,-91.3],"elR":[-91.6,12.8],"haR":[-96.5,63.8],"shL":[68.2,-103.4],"elL":[81.1,-7.4],"haL":[86.5,42.8],"hipR":[-35.2,37.1],"knR":[-7.5,166.9],"ftR":[17.9,322],"hipL":[30.6,41.3],"knL":[19.8,174.8],"ftL":[-42.7,278.6]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-8.8,-154.9],"shR":[-68.8,-91.3],"elR":[-92.9,12.6],"haR":[-97.8,63.5],"shL":[68.3,-103.4],"elL":[81.6,-7.2],"haL":[87.1,43],"hipR":[-35.2,37.1],"knR":[-7.1,166.9],"ftR":[18,322],"hipL":[30.7,41.3],"knL":[19.7,174.7],"ftL":[-41.9,278.9]},{"rootY":0.8,"hips":[0,0],"chest":[-1.6,-86.3],"neck":[-1.6,-86.3],"head":[-8.6,-154.9],"shR":[-68.8,-91.1],"elR":[-94.3,12.6],"haR":[-99.1,63.5],"shL":[68.4,-103.5],"elL":[81.9,-7],"haL":[87.4,43.1],"hipR":[-35.2,37.2],"knR":[-7.3,166.9],"ftR":[17.9,322],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-41.5,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-8.8,-155],"shR":[-69,-91.1],"elR":[-95.9,12.7],"haR":[-100.6,63.5],"shL":[68.2,-103.7],"elL":[81.8,-7],"haL":[87.5,43.1],"hipR":[-35.3,37.1],"knR":[-7.6,166.9],"ftR":[17.7,322.1],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-41.6,279.4]},{"rootY":1.1,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.5,-154.8],"shR":[-69.3,-91],"elR":[-97.1,12.8],"haR":[-101.8,63.6],"shL":[67.8,-103.9],"elL":[81.6,-6.7],"haL":[87.5,43.4],"hipR":[-35.4,37],"knR":[-7.8,166.8],"ftR":[17.4,321.9],"hipL":[30.6,41.5],"knL":[18.9,174.7],"ftL":[-42.1,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.3],"neck":[-2.4,-86.3],"head":[-9.7,-154.8],"shR":[-69.6,-90.9],"elR":[-98.2,12.7],"haR":[-102.8,63.4],"shL":[67.5,-104],"elL":[81.6,-6.6],"haL":[87.4,43.5],"hipR":[-35.5,36.9],"knR":[-7.9,166.7],"ftR":[17.1,321.8],"hipL":[30.5,41.6],"knL":[18.6,174.8],"ftL":[-42.7,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-10.2,-154.9],"shR":[-69.9,-91.1],"elR":[-98.9,12.8],"haR":[-103.4,63.5],"shL":[67.2,-104],"elL":[81.6,-6.5],"haL":[87.6,43.5],"hipR":[-35.5,36.8],"knR":[-8.5,166.8],"ftR":[16.7,321.8],"hipL":[30.4,41.6],"knL":[18.5,174.7],"ftL":[-43.3,278.8]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.9,-154.7],"shR":[-70.4,-90.9],"elR":[-99.6,13.3],"haR":[-104,63.9],"shL":[66.6,-104.3],"elL":[81.3,-6.3],"haL":[87.3,43.7],"hipR":[-35.7,36.6],"knR":[-9.5,166.8],"ftR":[16.2,321.8],"hipL":[30.2,41.8],"knL":[18.2,174.9],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.7,-154.9],"shR":[-70.4,-90.6],"elR":[-99.4,13.9],"haR":[-103.7,64.5],"shL":[66.5,-104.7],"elL":[81.3,-6.4],"haL":[87.4,43.6],"hipR":[-35.5,36.9],"knR":[-9.4,167],"ftR":[16,321.9],"hipL":[30.5,41.6],"knL":[18.1,174.6],"ftL":[-43.9,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3,-86.4],"neck":[-3,-86.4],"head":[-11,-154.8],"shR":[-70.3,-90.4],"elR":[-98.2,14.5],"haR":[-102.7,65.1],"shL":[66.6,-104.9],"elL":[81.8,-6.5],"haL":[87.9,43.6],"hipR":[-35.4,36.9],"knR":[-9.1,166.9],"ftR":[15.9,321.8],"hipL":[30.5,41.6],"knL":[17.9,174.6],"ftL":[-43.9,278.7]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.6,-154.6],"shR":[-70.4,-90.2],"elR":[-96.9,15.3],"haR":[-101.7,65.9],"shL":[66.4,-105.2],"elL":[81.8,-6.5],"haL":[88,43.5],"hipR":[-35.5,36.9],"knR":[-9,166.6],"ftR":[15.5,321.7],"hipL":[30.5,41.6],"knL":[17.6,174.6],"ftL":[-44,279.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.4],"neck":[-3.1,-86.4],"head":[-11.9,-154.6],"shR":[-70.4,-89.9],"elR":[-94.8,16],"haR":[-99.7,66.5],"shL":[66.4,-105.4],"elL":[81.8,-6.5],"haL":[88.1,43.5],"hipR":[-35.4,36.9],"knR":[-8.7,166.6],"ftR":[15.6,321.7],"hipL":[30.5,41.6],"knL":[17.5,174.6],"ftL":[-44,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.7,-154.7],"shR":[-70.5,-89.8],"elR":[-92,17.2],"haR":[-97.1,67.7],"shL":[66.3,-105.6],"elL":[81.8,-6.4],"haL":[88.1,43.6],"hipR":[-35.3,37],"knR":[-8.6,166.9],"ftR":[15.7,322],"hipL":[30.6,41.5],"knL":[17.8,174.6],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-12.1,-154.6],"shR":[-70.5,-89.7],"elR":[-89,17.9],"haR":[-94.4,68.4],"shL":[66.3,-105.7],"elL":[81.7,-6.2],"haL":[88.1,43.7],"hipR":[-35.3,37],"knR":[-8.6,167],"ftR":[15.7,322.1],"hipL":[30.7,41.5],"knL":[17.8,174.6],"ftL":[-43.6,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-12.6,-154.5],"shR":[-70.7,-89.8],"elR":[-86,18.6],"haR":[-91.9,69.2],"shL":[66.1,-105.7],"elL":[81.5,-5.8],"haL":[87.9,44.1],"hipR":[-35.4,37],"knR":[-9.3,167.1],"ftR":[15.7,322],"hipL":[30.7,41.6],"knL":[17.7,174.6],"ftL":[-43.8,278.5]},{"rootY":1.1,"hips":[0,0],"chest":[-3.6,-86.4],"neck":[-3.6,-86.4],"head":[-13,-154.5],"shR":[-71,-89.7],"elR":[-83.6,19],"haR":[-89.4,69.6],"shL":[65.8,-105.9],"elL":[81.1,-5.9],"haL":[87.3,44.1],"hipR":[-35.4,36.9],"knR":[-10.2,167.2],"ftR":[15.3,322],"hipL":[30.6,41.7],"knL":[17.3,174.5],"ftL":[-44.3,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.5,-86.4],"neck":[-3.5,-86.4],"head":[-13.1,-154.4],"shR":[-70.9,-89.5],"elR":[-81.1,19.6],"haR":[-87.1,70.3],"shL":[65.9,-106.2],"elL":[80.9,-6.2],"haL":[86.9,43.7],"hipR":[-35.3,37],"knR":[-9.3,167.2],"ftR":[15.5,321.9],"hipL":[30.7,41.6],"knL":[17.5,174.5],"ftL":[-44.2,278.2]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-13,-154.5],"shR":[-70.8,-89.5],"elR":[-78.6,20.2],"haR":[-84.8,70.9],"shL":[65.9,-106.2],"elL":[80.7,-6.1],"haL":[86.6,43.8],"hipR":[-35.3,37],"knR":[-9.4,167.1],"ftR":[15.6,321.9],"hipL":[30.7,41.6],"knL":[17.6,174.6],"ftL":[-44.2,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.5],"neck":[-3.7,-86.5],"head":[-13.3,-154.5],"shR":[-71.1,-89.6],"elR":[-76.8,20.4],"haR":[-83,71.2],"shL":[65.7,-106.1],"elL":[80.2,-5.7],"haL":[86.2,44.2],"hipR":[-35.5,36.8],"knR":[-9.9,167.1],"ftR":[15.5,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44.3,278.2]},{"rootY":1.2,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-13.4,-154.5],"shR":[-71.3,-89.5],"elR":[-75.2,20.6],"haR":[-81.2,71.5],"shL":[65.5,-106.1],"elL":[80,-5.6],"haL":[85.8,44.3],"hipR":[-35.5,36.8],"knR":[-10.1,167.1],"ftR":[15.7,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44,278.7]},{"rootY":1.1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.7],"elR":[-73.4,20.8],"haR":[-79.3,71.6],"shL":[65.5,-105.9],"elL":[79.9,-5.3],"haL":[85.5,44.6],"hipR":[-35.6,36.7],"knR":[-9.9,167],"ftR":[15.8,321.9],"hipL":[30.4,41.8],"knL":[17.5,174.9],"ftL":[-43.8,279.1]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.8],"elR":[-71.9,20.7],"haR":[-77.5,71.6],"shL":[65.5,-105.9],"elL":[79.7,-5.1],"haL":[85.2,44.9],"hipR":[-35.7,36.6],"knR":[-9.9,166.9],"ftR":[15.9,321.8],"hipL":[30.2,41.9],"knL":[17.9,175.1],"ftL":[-43.5,279.3]},{"rootY":1.1,"hips":[0,0],"chest":[-4.1,-86.5],"neck":[-4.1,-86.5],"head":[-13.6,-154.6],"shR":[-71.6,-89.8],"elR":[-70.8,21],"haR":[-76.2,71.9],"shL":[65.3,-105.9],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.8,166.9],"ftR":[15.4,321.8],"hipL":[30,42.1],"knL":[17.6,175.2],"ftL":[-43.6,279.2]},{"rootY":1.3,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.6],"shR":[-71.5,-89.6],"elR":[-69.9,21.3],"haR":[-75,72.2],"shL":[65.4,-106],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.7,166.9],"ftR":[15.6,321.9],"hipL":[30.1,42.1],"knL":[17.4,175.1],"ftL":[-43.1,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.7],"shR":[-71.5,-90],"elR":[-69,21.1],"haR":[-74,71.9],"shL":[65.5,-105.7],"elL":[79.6,-5.1],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.4,166.7],"ftR":[15.5,321.8],"hipL":[30.2,42],"knL":[17.4,175],"ftL":[-42.4,279.5]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13,-154.7],"shR":[-71.4,-89.8],"elR":[-68.5,21.4],"haR":[-73.4,72.3],"shL":[65.5,-105.8],"elL":[79.7,-5.2],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.1,166.7],"ftR":[15.6,321.9],"hipL":[30.3,42],"knL":[17.5,175],"ftL":[-42,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.9,-154.8],"shR":[-71.6,-89.9],"elR":[-68.6,21.4],"haR":[-73.6,72.2],"shL":[65.4,-105.7],"elL":[79.8,-5.2],"haL":[85,44.8],"hipR":[-36.1,36.3],"knR":[-11.6,166.6],"ftR":[15.5,321.9],"hipL":[30,42.2],"knL":[17.4,175.2],"ftL":[-42.1,279.8]},{"rootY":0.7,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.8,-154.9],"shR":[-71.6,-90.1],"elR":[-68.8,21.2],"haR":[-73.9,72],"shL":[65.4,-105.6],"elL":[79.9,-5.1],"haL":[85.1,44.9],"hipR":[-36.1,36.3],"knR":[-11.9,166.5],"ftR":[15.4,321.8],"hipL":[30,42.2],"knL":[17.3,175.2],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-12.7,-154.9],"shR":[-71.5,-90.2],"elR":[-69.2,21],"haR":[-74.6,71.8],"shL":[65.6,-105.4],"elL":[80,-5],"haL":[85.4,45.1],"hipR":[-36.2,36.2],"knR":[-12.1,166.5],"ftR":[15.5,321.8],"hipL":[30,42.2],"knL":[17.4,175.4],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-12.4,-154.9],"shR":[-71.4,-90.3],"elR":[-69.8,20.8],"haR":[-75.5,71.6],"shL":[65.7,-105.3],"elL":[80.2,-4.9],"haL":[85.6,45.1],"hipR":[-36.1,36.3],"knR":[-11.7,166.4],"ftR":[15.7,321.8],"hipL":[30.1,42.2],"knL":[17.5,175.4],"ftL":[-42,280]},{"rootY":0.8,"hips":[0,0],"chest":[-3.6,-86.6],"neck":[-3.6,-86.6],"head":[-12.1,-155],"shR":[-71.2,-90.3],"elR":[-70.6,20.7],"haR":[-76.2,71.5],"shL":[65.8,-105.4],"elL":[80.3,-5.1],"haL":[85.7,45],"hipR":[-35.8,36.6],"knR":[-10.7,166.5],"ftR":[15.7,321.8],"hipL":[30.4,42],"knL":[17.7,175],"ftL":[-41.9,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.4,-86.5],"neck":[-3.4,-86.5],"head":[-11.9,-154.9],"shR":[-71,-90.2],"elR":[-71.7,20.4],"haR":[-77.3,71.2],"shL":[66.1,-105.4],"elL":[80.7,-5.1],"haL":[86,44.9],"hipR":[-35.7,36.7],"knR":[-10.2,166.7],"ftR":[16.2,321.9],"hipL":[30.4,41.9],"knL":[18,175.1],"ftL":[-41.7,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.5],"neck":[-3.1,-86.5],"head":[-11.8,-154.9],"shR":[-70.8,-90.2],"elR":[-73.3,20.1],"haR":[-78.8,70.9],"shL":[66.3,-105.4],"elL":[81,-5.1],"haL":[86.1,45],"hipR":[-35.7,36.6],"knR":[-10.3,166.7],"ftR":[16.3,321.9],"hipL":[30.4,41.9],"knL":[17.9,175.1],"ftL":[-41.8,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.6],"neck":[-3.1,-86.6],"head":[-11.9,-154.9],"shR":[-70.7,-90.3],"elR":[-75.3,19.7],"haR":[-81,70.6],"shL":[66.4,-105.3],"elL":[81,-5.1],"haL":[86,45],"hipR":[-35.7,36.6],"knR":[-10.6,166.7],"ftR":[15.9,322],"hipL":[30.4,41.9],"knL":[17.8,175.2],"ftL":[-42,279.6]},{"rootY":1.3,"hips":[0,0],"chest":[-3,-86.5],"neck":[-3,-86.5],"head":[-11.9,-154.9],"shR":[-70.6,-90.3],"elR":[-77.6,19.3],"haR":[-83.4,70.2],"shL":[66.5,-105.2],"elL":[81.1,-4.9],"haL":[86,45.2],"hipR":[-35.7,36.6],"knR":[-11.2,166.7],"ftR":[15.7,321.9],"hipL":[30.4,41.9],"knL":[17.6,175.2],"ftL":[-42.4,279.4]},{"rootY":1.4,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-12.2,-154.8],"shR":[-70.9,-90.4],"elR":[-80.9,18.6],"haR":[-86.8,69.5],"shL":[66.2,-105.1],"elL":[80.7,-4.9],"haL":[85.6,45.2],"hipR":[-35.9,36.4],"knR":[-12,166.7],"ftR":[15.1,321.9],"hipL":[30.1,42.1],"knL":[17.1,175.3],"ftL":[-43.1,279.1]},{"rootY":1.3,"hips":[0,0],"chest":[-3.2,-86.6],"neck":[-3.2,-86.6],"head":[-12.1,-154.9],"shR":[-70.8,-90.6],"elR":[-83.6,17.8],"haR":[-89.6,68.7],"shL":[66.4,-104.9],"elL":[80.7,-4.7],"haL":[85.7,45.4],"hipR":[-35.9,36.4],"knR":[-11.9,166.7],"ftR":[15.2,321.9],"hipL":[30.2,42.1],"knL":[17.2,175.3],"ftL":[-43.3,279.2]},{"rootY":1.2,"hips":[0,0],"chest":[-2.8,-86.5],"neck":[-2.8,-86.5],"head":[-11.6,-154.9],"shR":[-70.3,-90.9],"elR":[-85.9,17.2],"haR":[-92.5,68],"shL":[66.9,-104.5],"elL":[81.2,-4.5],"haL":[86.2,45.6],"hipR":[-35.8,36.6],"knR":[-11,166.6],"ftR":[15.8,321.9],"hipL":[30.3,41.9],"knL":[17.9,175.4],"ftL":[-43,279.3]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-88.4,16.6],"haR":[-95.7,67.3],"shL":[67.2,-104.3],"elL":[81.8,-4.3],"haL":[86.7,45.8],"hipR":[-35.6,36.8],"knR":[-10.2,166.6],"ftR":[16,322.1],"hipL":[30.4,41.7],"knL":[18.2,175.3],"ftL":[-42.9,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.7,-86.5],"neck":[-2.7,-86.5],"head":[-11.3,-154.9],"shR":[-70.2,-91.1],"elR":[-91.6,15.8],"haR":[-99.3,66.4],"shL":[67.1,-104.1],"elL":[81.9,-4.2],"haL":[86.9,45.9],"hipR":[-35.7,36.6],"knR":[-10.6,166.5],"ftR":[15.8,322.1],"hipL":[30.3,41.9],"knL":[18.1,175.5],"ftL":[-43.1,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11,-154.9],"shR":[-70.1,-91],"elR":[-94.3,15.1],"haR":[-102.8,65.6],"shL":[67.2,-104.2],"elL":[82.1,-4.1],"haL":[87.3,46],"hipR":[-35.7,36.7],"knR":[-10.5,166.6],"ftR":[15.9,322.2],"hipL":[30.3,41.8],"knL":[18.1,175.4],"ftL":[-43,279.8]},{"rootY":1,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.1,-154.8],"shR":[-70.1,-91.3],"elR":[-96.9,14],"haR":[-106.2,64.3],"shL":[67.2,-103.8],"elL":[82.6,-4],"haL":[87.7,46.1],"hipR":[-35.7,36.7],"knR":[-10.3,166.4],"ftR":[16.1,322.1],"hipL":[30.3,41.8],"knL":[18,175.5],"ftL":[-42.8,280]},{"rootY":0.7,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-11,-154.9],"shR":[-70,-91.2],"elR":[-99.4,13.3],"haR":[-109.5,63.5],"shL":[67.3,-103.9],"elL":[82.6,-4.4],"haL":[87.9,45.7],"hipR":[-35.6,36.7],"knR":[-9.9,166.2],"ftR":[15.6,321.9],"hipL":[30.4,41.8],"knL":[18.1,175.4],"ftL":[-42.5,279.9]},{"rootY":0.7,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-154.9],"shR":[-69.8,-91],"elR":[-101.7,12.6],"haR":[-112.6,62.7],"shL":[67.4,-104.1],"elL":[82.8,-4.6],"haL":[88.1,45.4],"hipR":[-35.6,36.8],"knR":[-9.8,166.3],"ftR":[16,321.9],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.9,280.2]},{"rootY":0.6,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-103.5,12.1],"haR":[-115.2,62],"shL":[67.2,-104],"elL":[82.7,-4.8],"haL":[88,45.3],"hipR":[-35.6,36.8],"knR":[-10,166.3],"ftR":[15.8,322],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.6,280.3]},{"rootY":0.4,"hips":[0,0],"chest":[-2.8,-86.3],"neck":[-2.8,-86.3],"head":[-11.5,-154.9],"shR":[-70.3,-90.6],"elR":[-104,12.3],"haR":[-116.8,61.9],"shL":[66.9,-104.2],"elL":[82.2,-4.8],"haL":[87.8,45.3],"hipR":[-35.7,36.7],"knR":[-10.7,166],"ftR":[15.4,321.9],"hipL":[30.4,41.8],"knL":[18.6,175.5],"ftL":[-41.7,280.6]},{"rootY":0.6,"hips":[0,0],"chest":[-3,-86.3],"neck":[-3,-86.3],"head":[-11.9,-154.8],"shR":[-70.5,-90.5],"elR":[-103.3,12.9],"haR":[-116.9,62.2],"shL":[66.7,-104.2],"elL":[82.1,-5.1],"haL":[87.5,45],"hipR":[-35.7,36.7],"knR":[-10.6,166.2],"ftR":[15.4,322],"hipL":[30.4,41.7],"knL":[18.8,175.5],"ftL":[-42,280.4]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.3],"neck":[-3.1,-86.3],"head":[-12.1,-154.8],"shR":[-70.5,-90.3],"elR":[-101.1,13.8],"haR":[-114.8,63],"shL":[66.6,-104.2],"elL":[81.9,-5.5],"haL":[87.2,44.7],"hipR":[-35.7,36.7],"knR":[-10.5,166.2],"ftR":[15.6,322.1],"hipL":[30.5,41.7],"knL":[19.3,175.7],"ftL":[-42.1,280.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.2],"neck":[-3.3,-86.2],"head":[-12.3,-154.8],"shR":[-70.7,-90.3],"elR":[-97.7,14.9],"haR":[-111,64],"shL":[66.5,-104.2],"elL":[81.5,-5.3],"haL":[86.9,44.8],"hipR":[-35.6,36.8],"knR":[-10,166.1],"ftR":[15.7,322.1],"hipL":[30.5,41.7],"knL":[19.6,175.7],"ftL":[-42.1,280.1]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.3],"neck":[-3.7,-86.3],"head":[-12.9,-154.9],"shR":[-71,-90.2],"elR":[-92.7,16.8],"haR":[-105.8,65.7],"shL":[66,-104.4],"elL":[80.9,-5.5],"haL":[86,44.6],"hipR":[-35.6,36.7],"knR":[-10.7,166.3],"ftR":[15.3,322],"hipL":[30.7,41.8],"knL":[19.1,175.5],"ftL":[-42.7,278.9]},{"rootY":0.9,"hips":[0,0],"chest":[-3.7,-86.2],"neck":[-3.7,-86.2],"head":[-12.8,-154.8],"shR":[-70.9,-90.4],"elR":[-86.6,18.1],"haR":[-96.5,67.6],"shL":[66.1,-104.1],"elL":[80.3,-5],"haL":[85.4,45.1],"hipR":[-35.5,36.9],"knR":[-9.7,166.2],"ftR":[15.8,322.1],"hipL":[30.7,41.7],"knL":[19.7,175.7],"ftL":[-42.5,279.6]},{"rootY":0.8,"hips":[0,0],"chest":[-4.2,-86.2],"neck":[-4.2,-86.2],"head":[-13.3,-154.8],"shR":[-71.4,-90.6],"elR":[-81.4,19.5],"haR":[-88,69.4],"shL":[65.7,-104],"elL":[79.6,-4.8],"haL":[84.4,45.4],"hipR":[-35.6,36.7],"knR":[-11,166.1],"ftR":[15.2,321.9],"hipL":[30.6,41.9],"knL":[19.2,175.7],"ftL":[-43,279.2]},{"rootY":0.6,"hips":[0,0],"chest":[-3.3,-86.1],"neck":[-3.3,-86.1],"head":[-12.5,-154.7],"shR":[-70.5,-90.5],"elR":[-75.7,20.6],"haR":[-80,70.8],"shL":[66.5,-103.9],"elL":[80.1,-4.4],"haL":[84.6,45.7],"hipR":[-35.2,37.1],"knR":[-8.6,165.9],"ftR":[16.2,322.1],"hipL":[31,41.5],"knL":[20.2,175.6],"ftL":[-42.3,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.3],"neck":[-3.2,-86.3],"head":[-12.7,-154.8],"shR":[-70.3,-90.2],"elR":[-72,21.8],"haR":[-74.2,72.2],"shL":[66.6,-104.3],"elL":[79.8,-4.7],"haL":[84,45.5],"hipR":[-35.4,37],"knR":[-9.5,166],"ftR":[16.2,322],"hipL":[30.8,41.6],"knL":[20.2,175.9],"ftL":[-42.6,279.9]},{"rootY":0.5,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-12.8,-154.8],"shR":[-70.5,-90.1],"elR":[-70.8,21.7],"haR":[-73.5,72.4],"shL":[66.5,-104.4],"elL":[80.3,-4.6],"haL":[83.9,45.7],"hipR":[-35.4,36.9],"knR":[-9.6,165.9],"ftR":[15.9,322],"hipL":[30.7,41.7],"knL":[20.1,175.9],"ftL":[-43,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-13.1,-154.8],"shR":[-70.6,-89.9],"elR":[-73.2,21.4],"haR":[-77,72.3],"shL":[66.4,-104.7],"elL":[80.8,-4.8],"haL":[83.8,45.4],"hipR":[-35.7,36.6],"knR":[-11,165.8],"ftR":[15.5,321.8],"hipL":[30.4,42],"knL":[19.4,176.1],"ftL":[-43.9,279.2]},{"rootY":0.8,"hips":[0,0],"chest":[-2.6,-86.3],"neck":[-2.6,-86.3],"head":[-13,-154.8],"shR":[-69.9,-90.2],"elR":[-79.9,19.8],"haR":[-82.6,71],"shL":[67.1,-104.6],"elL":[82.9,-4.6],"haL":[85.3,45.7],"hipR":[-35.4,36.9],"knR":[-9.7,165.8],"ftR":[16.1,322],"hipL":[30.7,41.7],"knL":[19.9,176.1],"ftL":[-44,279.8]},{"rootY":0.6,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-13.5,-154.8],"shR":[-70.1,-90],"elR":[-94.4,17],"haR":[-94,67.7],"shL":[66.9,-104.9],"elL":[84.4,-5.2],"haL":[86.2,45.1],"hipR":[-35.6,36.7],"knR":[-10.8,165.6],"ftR":[15.3,321.9],"hipL":[30.5,41.9],"knL":[19.7,176.4],"ftL":[-45,279.4]},{"rootY":0.9,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-14.2,-154.7],"shR":[-70.2,-89.8],"elR":[-111.7,11.8],"haR":[-107.5,61.1],"shL":[66.9,-105.3],"elL":[86.6,-6.4],"haL":[87.7,43.9],"hipR":[-35.7,36.6],"knR":[-11.6,165.7],"ftR":[14.9,322],"hipL":[30.4,42],"knL":[19.5,176.5],"ftL":[-46.3,278.7]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.5],"neck":[-2.4,-86.5],"head":[-14.7,-154.6],"shR":[-70.2,-89.3],"elR":[-129.7,3.6],"haR":[-121.5,51.2],"shL":[66.7,-106],"elL":[89.9,-7.8],"haL":[89.8,42.5],"hipR":[-35.8,36.5],"knR":[-11.6,165.6],"ftR":[14.7,322],"hipL":[30.3,42.1],"knL":[19.3,176.6],"ftL":[-47.4,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-2.3,-86.6],"neck":[-2.3,-86.6],"head":[-15.3,-154.4],"shR":[-70.2,-88.7],"elR":[-144.9,-6.2],"haR":[-131.9,38.3],"shL":[66.4,-106.8],"elL":[93.5,-9.7],"haL":[92.3,40.6],"hipR":[-36,36.2],"knR":[-11.8,165],"ftR":[14.1,321.6],"hipL":[30.1,42.3],"knL":[18.8,176.7],"ftL":[-48.1,278.4]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-15.9,-154.2],"shR":[-70.1,-87.8],"elR":[-155.4,-14.3],"haR":[-137.5,25],"shL":[66.1,-107.9],"elL":[97.1,-11.5],"haL":[95.3,38.7],"hipR":[-36.4,36],"knR":[-12.6,164.8],"ftR":[14.2,321.3],"hipL":[29.8,42.5],"knL":[18.4,177],"ftL":[-48,278.3]},{"rootY":1.8,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-16.7,-153.9],"shR":[-70.1,-87.7],"elR":[-159.9,-18.8],"haR":[-139.6,11.3],"shL":[65.9,-108.2],"elL":[99.5,-11.7],"haL":[97.6,38.5],"hipR":[-36.5,35.9],"knR":[-13.4,164.8],"ftR":[14.6,321.3],"hipL":[29.7,42.6],"knL":[17.9,177],"ftL":[-47,278.5]},{"rootY":1.7,"hips":[0,0],"chest":[-1.9,-86.6],"neck":[-1.9,-86.6],"head":[-17.1,-153.7],"shR":[-69.8,-87.7],"elR":[-159.1,-17],"haR":[-138.2,-1.3],"shL":[66.1,-108.3],"elL":[101.1,-10.9],"haL":[99.4,39.2],"hipR":[-36.5,35.9],"knR":[-13.7,164.7],"ftR":[15,321.1],"hipL":[29.8,42.6],"knL":[17.2,176.8],"ftL":[-45.1,278.9]},{"rootY":1.9,"hips":[0,0],"chest":[-1.3,-86.5],"neck":[-1.3,-86.5],"head":[-17,-153.5],"shR":[-69.3,-87.9],"elR":[-152.5,-9.3],"haR":[-131.7,-10.8],"shL":[66.7,-108.4],"elL":[101.5,-10.2],"haL":[100,39.7],"hipR":[-36.6,35.7],"knR":[-14.8,164.9],"ftR":[15.8,321.1],"hipL":[29.6,42.7],"knL":[17,177],"ftL":[-43.3,279.3]},{"rootY":1.5,"hips":[0,0],"chest":[-1,-86.5],"neck":[-1,-86.5],"head":[-16.9,-153.6],"shR":[-69,-88],"elR":[-139.9,2.9],"haR":[-121.3,-15.5],"shL":[67.2,-108.4],"elL":[101.5,-9.5],"haL":[99.8,40.2],"hipR":[-36.7,35.6],"knR":[-15,164.8],"ftR":[16.4,321],"hipL":[29.6,42.8],"knL":[16.9,177.1],"ftL":[-41.6,280.1]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.4],"neck":[-0.8,-86.4],"head":[-16.2,-154.1],"shR":[-68.8,-87.5],"elR":[-123.4,14],"haR":[-108.5,-17.6],"shL":[67.2,-109],"elL":[100.6,-9.4],"haL":[98.9,40.1],"hipR":[-36.7,35.6],"knR":[-16,164.9],"ftR":[17.3,320.8],"hipL":[29.5,42.8],"knL":[17.6,177.2],"ftL":[-40.5,280.1]},{"rootY":1.9,"hips":[0,0],"chest":[-0.2,-86.3],"neck":[-0.2,-86.3],"head":[-15.5,-154.2],"shR":[-68.2,-86.8],"elR":[-108.1,19.6],"haR":[-96.7,-20.4],"shL":[67.7,-109.7],"elL":[100.3,-9.3],"haL":[99.2,40.2],"hipR":[-36.4,36],"knR":[-14.7,164.8],"ftR":[18.9,320.8],"hipL":[29.9,42.5],"knL":[18.8,177.2],"ftL":[-39.3,280.1]},{"rootY":2.2,"hips":[0,0],"chest":[-0.6,-86.3],"neck":[-0.6,-86.3],"head":[-16,-153.9],"shR":[-68.5,-85.8],"elR":[-96.1,19],"haR":[-87.9,-27.4],"shL":[67,-110.7],"elL":[99.1,-9.7],"haL":[98.8,39.9],"hipR":[-36.5,35.9],"knR":[-15.3,165.1],"ftR":[19.4,320.8],"hipL":[29.9,42.5],"knL":[19.2,177.2],"ftL":[-38.8,280]},{"rootY":1.8,"hips":[0,0],"chest":[-0.6,-86.1],"neck":[-0.6,-86.1],"head":[-15.8,-153.3],"shR":[-68.5,-84.2],"elR":[-87.8,13.3],"haR":[-82.2,-36.3],"shL":[66.4,-112.3],"elL":[98.7,-11.2],"haL":[98.8,38.4],"hipR":[-36.3,36.1],"knR":[-14.6,165.1],"ftR":[20,320.9],"hipL":[30.1,42.4],"knL":[19.8,177],"ftL":[-37.9,280.6]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.1],"neck":[-0.8,-86.1],"head":[-16.1,-152],"shR":[-68.7,-82.5],"elR":[-82.9,2.5],"haR":[-78.5,-48.4],"shL":[65.6,-113.8],"elL":[99.1,-12.9],"haL":[98.7,36.6],"hipR":[-36.2,36.2],"knR":[-12.7,164.9],"ftR":[20.4,320.9],"hipL":[30.2,42.3],"knL":[20.4,177],"ftL":[-37.3,280.9]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86],"neck":[-2.1,-86],"head":[-17.4,-151],"shR":[-69.8,-81.8],"elR":[-80.4,-14.2],"haR":[-76.6,-65.1],"shL":[64.1,-114.5],"elL":[98.6,-13.9],"haL":[98.1,35.5],"hipR":[-35.9,36.5],"knR":[-11.6,165.2],"ftR":[20,321.4],"hipL":[30.6,42],"knL":[20.8,176.6],"ftL":[-37.6,281]},{"rootY":1,"hips":[0,0],"chest":[-3.4,-86],"neck":[-3.4,-86],"head":[-18.6,-149.4],"shR":[-71,-81.3],"elR":[-79.9,-33.7],"haR":[-76.1,-83.5],"shL":[62.6,-115],"elL":[98.1,-14.9],"haL":[97.7,34.5],"hipR":[-35.8,36.6],"knR":[-11.1,165.4],"ftR":[19.8,321.7],"hipL":[30.6,42],"knL":[21.2,176.5],"ftL":[-37.9,281.3]},{"rootY":0.7,"hips":[0,0],"chest":[-4.3,-85.9],"neck":[-4.3,-85.9],"head":[-19.3,-147.9],"shR":[-71.7,-80.2],"elR":[-79.6,-54.1],"haR":[-75.1,-102.7],"shL":[61.3,-115.9],"elL":[97.6,-16.4],"haL":[97.6,33.1],"hipR":[-35,37.3],"knR":[-8.7,165.8],"ftR":[20,322.2],"hipL":[31.3,41.4],"knL":[21.7,175.9],"ftL":[-37.7,281.5]},{"rootY":0.4,"hips":[0,0],"chest":[-5.4,-85.8],"neck":[-5.4,-85.8],"head":[-20.4,-146.7],"shR":[-72.6,-79.8],"elR":[-78.8,-74.5],"haR":[-73.7,-121.9],"shL":[59.9,-116.1],"elL":[96.5,-17.2],"haL":[97.2,32.2],"hipR":[-34.9,37.3],"knR":[-8.1,165.9],"ftR":[20.2,322.6],"hipL":[31.4,41.3],"knL":[21.8,175.9],"ftL":[-38.1,282]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.5,-85.6],"neck":[-6.5,-85.6],"head":[-21.7,-144.8],"shR":[-73.5,-79.6],"elR":[-77.5,-93],"haR":[-72,-139.1],"shL":[58.6,-116],"elL":[95.8,-18.1],"haL":[97.3,31.3],"hipR":[-34.7,37.5],"knR":[-7.4,166],"ftR":[20,322.8],"hipL":[31.5,41.2],"knL":[21.6,175.8],"ftL":[-38.9,282.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-8,-85.4],"neck":[-8,-85.4],"head":[-22.7,-143.5],"shR":[-74.7,-78.6],"elR":[-76.1,-108.1],"haR":[-70,-153.8],"shL":[56.6,-116.6],"elL":[94.1,-19.5],"haL":[96.5,30],"hipR":[-34.7,37.4],"knR":[-8.9,166.3],"ftR":[19.2,322.9],"hipL":[31.4,41.3],"knL":[20.8,175.6],"ftL":[-40.1,281.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-9,-85.2],"neck":[-9,-85.2],"head":[-23.7,-142.3],"shR":[-75.3,-77.8],"elR":[-73.5,-120.5],"haR":[-67.4,-166.1],"shL":[55.1,-117],"elL":[93.2,-20.7],"haL":[96.4,28.8],"hipR":[-34.9,37.3],"knR":[-9.1,166.4],"ftR":[19.4,323.1],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-40.6,282.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.2,-85],"neck":[-9.2,-85],"head":[-24.1,-141.3],"shR":[-75.2,-77.1],"elR":[-69.6,-129.5],"haR":[-63.8,-175.6],"shL":[54.6,-117.4],"elL":[93.4,-22],"haL":[97.4,27.5],"hipR":[-34.1,38],"knR":[-6.3,166.5],"ftR":[20.1,323.4],"hipL":[31.8,40.7],"knL":[21.9,175.3],"ftL":[-40.1,282.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.9,-84.8],"neck":[-9.9,-84.8],"head":[-24.7,-140.6],"shR":[-75.8,-76.7],"elR":[-65.3,-136.2],"haR":[-60.1,-183.3],"shL":[53.6,-117.3],"elL":[93.5,-23.4],"haL":[97.8,26.1],"hipR":[-33.9,38.1],"knR":[-5.2,166.5],"ftR":[20.5,323.4],"hipL":[32,40.6],"knL":[22.6,175.2],"ftL":[-39.5,282.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.6,-84.6],"neck":[-10.6,-84.6],"head":[-25.6,-139.9],"shR":[-76.2,-76.6],"elR":[-60.5,-140.5],"haR":[-56,-188.9],"shL":[52.7,-117.1],"elL":[94.2,-24.7],"haL":[98.5,24.7],"hipR":[-34,38.1],"knR":[-5.2,166.5],"ftR":[21,323.3],"hipL":[31.8,40.6],"knL":[23.2,175.3],"ftL":[-39.4,282.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-11.5,-84.5],"neck":[-11.5,-84.5],"head":[-26,-140.1],"shR":[-77,-76.7],"elR":[-55.2,-140.9],"haR":[-51.5,-190.5],"shL":[51.7,-116.8],"elL":[95.9,-26.3],"haL":[99.2,23.1],"hipR":[-33.9,38.2],"knR":[-4.9,166.3],"ftR":[20.7,322.9],"hipL":[32.1,40.5],"knL":[23.3,175.1],"ftL":[-39.8,281.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-12.4,-84.4],"neck":[-12.4,-84.4],"head":[-26.3,-141.5],"shR":[-78,-77.3],"elR":[-50.3,-137.7],"haR":[-46.2,-188.2],"shL":[51.2,-116.1],"elL":[98.6,-28.4],"haL":[99.7,20.6],"hipR":[-34,38.1],"knR":[-4.3,166],"ftR":[21.1,322.6],"hipL":[31.9,40.6],"knL":[23.9,175.3],"ftL":[-39.8,281.7]},{"rootY":0,"hips":[0,0],"chest":[-12.8,-84.4],"neck":[-12.8,-84.4],"head":[-25.9,-142],"shR":[-78.9,-77.5],"elR":[-47.3,-126.8],"haR":[-41.3,-177.3],"shL":[51.3,-115.8],"elL":[101.4,-31.1],"haL":[100.5,17],"hipR":[-33.9,38.2],"knR":[-4.5,166.2],"ftR":[21.6,322.6],"hipL":[32,40.5],"knL":[24.6,175.2],"ftL":[-39.4,281.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.9,-84.6],"neck":[-12.9,-84.6],"head":[-25,-145.3],"shR":[-79.4,-79.4],"elR":[-46.2,-108.4],"haR":[-37,-158.7],"shL":[52.1,-114.4],"elL":[103.7,-31.3],"haL":[101.4,15.2],"hipR":[-34,38.1],"knR":[-3.7,165.8],"ftR":[21.8,322.3],"hipL":[32,40.6],"knL":[25,175.3],"ftL":[-38.8,281.4]},{"rootY":-0.2,"hips":[0,0],"chest":[-12,-84.9],"neck":[-12,-84.9],"head":[-24.6,-146],"shR":[-79,-81.8],"elR":[-47.5,-83.3],"haR":[-33.6,-132.5],"shL":[54.2,-112.6],"elL":[104.8,-30.1],"haL":[102.6,13.6],"hipR":[-34.4,37.8],"knR":[-2.6,165.3],"ftR":[22.7,321.8],"hipL":[31.6,40.9],"knL":[25.3,175.7],"ftL":[-37.6,282]},{"rootY":0,"hips":[0,0],"chest":[-10.2,-85.3],"neck":[-10.2,-85.3],"head":[-22.7,-147.8],"shR":[-77.4,-85.5],"elR":[-50.7,-54.6],"haR":[-31.3,-101.8],"shL":[57.3,-109.7],"elL":[103.7,-25.3],"haL":[103.7,14.9],"hipR":[-33.8,38.4],"knR":[-1.7,165.6],"ftR":[23.4,322],"hipL":[32.4,40.3],"knL":[25.1,175],"ftL":[-36.6,281.6]},{"rootY":0.1,"hips":[0,0],"chest":[-8.2,-85.6],"neck":[-8.2,-85.6],"head":[-20.5,-148.1],"shR":[-75.6,-86.8],"elR":[-56.6,-22.7],"haR":[-32.8,-65.8],"shL":[59.9,-108.9],"elL":[99.6,-20.3],"haL":[103.3,16.7],"hipR":[-33.7,38.4],"knR":[-2.1,165.7],"ftR":[24,322],"hipL":[32.5,40.3],"knL":[25,175],"ftL":[-35.9,281.6]},{"rootY":0.3,"hips":[0,0],"chest":[-6.2,-85.8],"neck":[-6.2,-85.8],"head":[-18.7,-148.5],"shR":[-73.4,-88.5],"elR":[-63.5,4.4],"haR":[-38.1,-32],"shL":[62.3,-107.6],"elL":[94.3,-15.3],"haL":[103,20.1],"hipR":[-34.2,38],"knR":[-4.4,165.8],"ftR":[24.1,321.8],"hipL":[32.1,40.7],"knL":[25.1,175.4],"ftL":[-35.5,281.8]},{"rootY":0.7,"hips":[0,0],"chest":[-3.7,-85.9],"neck":[-3.7,-85.9],"head":[-16.9,-148.5],"shR":[-70.6,-88.5],"elR":[-71.1,22.4],"haR":[-47.8,-1],"shL":[64.6,-107.7],"elL":[89.1,-14.4],"haL":[103.3,22],"hipR":[-34.4,37.9],"knR":[-6.3,165.9],"ftR":[24.3,321.7],"hipL":[31.9,40.8],"knL":[25.1,175.6],"ftL":[-34.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-2.5,-85.5],"neck":[-2.5,-85.5],"head":[-17.1,-147.2],"shR":[-69.2,-87.7],"elR":[-77.5,27.3],"haR":[-60.6,22.3],"shL":[65.5,-107.8],"elL":[84.5,-16],"haL":[104,23.5],"hipR":[-34.8,37.5],"knR":[-8.9,166],"ftR":[23.9,321.9],"hipL":[31.4,41.1],"knL":[25.1,176.1],"ftL":[-34.8,281.2]},{"rootY":1.1,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-18.6,-146.9],"shR":[-68.8,-86.6],"elR":[-79.3,22.9],"haR":[-74.3,36.9],"shL":[65.9,-108.4],"elL":[82.9,-21.4],"haL":[104.8,21.8],"hipR":[-35.4,37],"knR":[-11,165.4],"ftR":[23.2,321.3],"hipL":[30.9,41.5],"knL":[24.7,176.5],"ftL":[-35.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-1.8,-85.2],"neck":[-1.8,-85.2],"head":[-20,-146.1],"shR":[-69,-84.8],"elR":[-81.3,15.1],"haR":[-87.8,44.5],"shL":[66,-109.7],"elL":[84.1,-28.5],"haL":[107.3,16.3],"hipR":[-35.4,37],"knR":[-10.3,165.2],"ftR":[22.9,321.3],"hipL":[30.9,41.4],"knL":[24.4,176.5],"ftL":[-38.2,281.3]},{"rootY":0.9,"hips":[0,0],"chest":[-1.7,-84.7],"neck":[-1.7,-84.7],"head":[-20.5,-144.5],"shR":[-69.3,-83.1],"elR":[-85.6,5.7],"haR":[-100.8,44.4],"shL":[65.8,-110.1],"elL":[88.6,-36.3],"haL":[113.8,6.6],"hipR":[-34.5,37.8],"knR":[-7.5,165.8],"ftR":[23.2,322.1],"hipL":[31.7,40.8],"knL":[24.3,175.7],"ftL":[-40.2,280.2]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-83.7],"neck":[-2.1,-83.7],"head":[-21.6,-143.4],"shR":[-69.9,-80.5],"elR":[-91.8,-2.2],"haR":[-113.8,40.7],"shL":[64.7,-110.5],"elL":[95.4,-45.8],"haL":[123.4,-8],"hipR":[-34.6,37.8],"knR":[-7.9,165.3],"ftR":[21.9,322.3],"hipL":[31.8,40.7],"knL":[23.5,175.7],"ftL":[-42.3,281.4]},{"rootY":-0.4,"hips":[0,0],"chest":[-2.8,-82.6],"neck":[-2.8,-82.6],"head":[-22.9,-141.9],"shR":[-70.6,-77.6],"elR":[-99.9,-8.7],"haR":[-127.4,34.4],"shL":[63.1,-111],"elL":[104.3,-56.3],"haL":[135.6,-25.8],"hipR":[-34.5,37.9],"knR":[-8,165.1],"ftR":[21.1,322.5],"hipL":[31.9,40.6],"knL":[23.2,175.6],"ftL":[-44.3,281.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-3.2,-81.7],"neck":[-3.2,-81.7],"head":[-23.7,-140.7],"shR":[-70.8,-74.7],"elR":[-108.3,-14.1],"haR":[-140.1,25.1],"shL":[61.7,-111.7],"elL":[115,-69.2],"haL":[150.3,-47.1],"hipR":[-33.6,38.6],"knR":[-5.2,165.3],"ftR":[20.8,323],"hipL":[32.7,40],"knL":[23.6,175.1],"ftL":[-45.3,281]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.7,-79.9],"neck":[-4.7,-79.9],"head":[-25.4,-138.5],"shR":[-72,-70.5],"elR":[-118.4,-16.8],"haR":[-153.6,16],"shL":[58.9,-111.9],"elL":[124.4,-83.6],"haL":[163.9,-69.6],"hipR":[-33.9,38.4],"knR":[-7.1,164.8],"ftR":[19.4,322.7],"hipL":[32.3,40.2],"knL":[23.6,175.5],"ftL":[-47,281.1]},{"rootY":0,"hips":[0,0],"chest":[-5.3,-78.5],"neck":[-5.3,-78.5],"head":[-26.5,-137.2],"shR":[-72.2,-66.8],"elR":[-128.6,-18.5],"haR":[-166.6,7.5],"shL":[57,-112.2],"elL":[134.4,-98.6],"haL":[178,-92.1],"hipR":[-34,38.3],"knR":[-7.7,164.3],"ftR":[18.5,322.6],"hipL":[32.2,40.3],"knL":[24,175.8],"ftL":[-48.7,280.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.7,-76.9],"neck":[-6.7,-76.9],"head":[-28.3,-135.4],"shR":[-73.2,-63.5],"elR":[-139,-20.7],"haR":[-179.6,-0.2],"shL":[54.5,-111.8],"elL":[142.4,-112.7],"haL":[189.1,-112.7],"hipR":[-34.1,38.1],"knR":[-8.1,163.7],"ftR":[16.6,322.5],"hipL":[32,40.5],"knL":[23.4,176],"ftL":[-51.1,280.4]},{"rootY":0.2,"hips":[0,0],"chest":[-7.9,-75.4],"neck":[-7.9,-75.4],"head":[-30.1,-134],"shR":[-74.1,-60.6],"elR":[-149.4,-22.9],"haR":[-192.8,-6],"shL":[52.3,-111.2],"elL":[148.7,-124.8],"haL":[197.4,-130.6],"hipR":[-34.4,37.9],"knR":[-9.2,163],"ftR":[15.2,322.2],"hipL":[31.7,40.6],"knL":[22.9,176.1],"ftL":[-53.9,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-8.5,-74],"neck":[-8.5,-74],"head":[-31.3,-132.9],"shR":[-74.3,-58.1],"elR":[-158.6,-24.5],"haR":[-204.5,-10.1],"shL":[50.9,-110.5],"elL":[153,-134.8],"haL":[202.3,-144.8],"hipR":[-34.1,38.2],"knR":[-9.5,162.7],"ftR":[14.6,322.2],"hipL":[32.1,40.3],"knL":[22.5,175.8],"ftL":[-56.3,278.5]},{"rootY":0.9,"hips":[0,0],"chest":[-9.8,-72.7],"neck":[-9.8,-72.7],"head":[-33,-131.8],"shR":[-75.3,-56.1],"elR":[-168,-24.7],"haR":[-216,-12.1],"shL":[49,-109.5],"elL":[154.1,-141.7],"haL":[202.7,-154.2],"hipR":[-34.5,37.9],"knR":[-11.4,162.1],"ftR":[12.5,321.8],"hipL":[31.7,40.7],"knL":[21.6,176],"ftL":[-58.8,278.4]},{"rootY":1.3,"hips":[0,0],"chest":[-10.5,-71],"neck":[-10.5,-71],"head":[-33.7,-130.5],"shR":[-75.8,-53.5],"elR":[-175.6,-23.3],"haR":[-225.1,-11.8],"shL":[47.5,-108.3],"elL":[153,-145.6],"haL":[199.6,-158.7],"hipR":[-34.6,37.8],"knR":[-12.6,161.3],"ftR":[11.4,321.4],"hipL":[31.6,40.7],"knL":[21.2,176],"ftL":[-60.8,277.7]},{"rootY":1.5,"hips":[0,0],"chest":[-11.4,-69.8],"neck":[-11.4,-69.8],"head":[-34.7,-129.5],"shR":[-76.5,-51.8],"elR":[-181.8,-20.4],"haR":[-231.9,-9.8],"shL":[46.4,-107.1],"elL":[149.5,-146.3],"haL":[192.5,-158.6],"hipR":[-34.8,37.6],"knR":[-13.9,160.7],"ftR":[9.9,321.1],"hipL":[31.4,40.9],"knL":[20.9,176.2],"ftL":[-62.2,277.3]},{"rootY":1.9,"hips":[0,0],"chest":[-11.8,-68.9],"neck":[-11.8,-68.9],"head":[-35.1,-129.1],"shR":[-76.8,-50.7],"elR":[-185.3,-16.2],"haR":[-235.1,-6],"shL":[45.8,-106.1],"elL":[143.9,-143.9],"haL":[181.9,-153.9],"hipR":[-34.7,37.7],"knR":[-14.1,160.2],"ftR":[9.5,320.8],"hipL":[31.5,40.9],"knL":[21.5,176],"ftL":[-62.5,276.8]},{"rootY":2.2,"hips":[0,0],"chest":[-12.4,-68.2],"neck":[-12.4,-68.2],"head":[-36,-128.8],"shR":[-77.4,-50],"elR":[-185.5,-9.6],"haR":[-234.8,0.1],"shL":[45.2,-105.1],"elL":[136,-137.9],"haL":[167.6,-144.6],"hipR":[-34.7,37.7],"knR":[-15.6,159.7],"ftR":[8.3,320.4],"hipL":[31.6,40.8],"knL":[21.7,175.9],"ftL":[-63.2,276.1]},{"rootY":2.6,"hips":[0,0],"chest":[-12.5,-67.6],"neck":[-12.5,-67.6],"head":[-36.3,-128.4],"shR":[-77.4,-49.2],"elR":[-180.6,-2.9],"haR":[-228.5,8],"shL":[44.9,-104.2],"elL":[125.9,-128.7],"haL":[150.1,-131.5],"hipR":[-34.8,37.6],"knR":[-16.4,159],"ftR":[7.7,320],"hipL":[31.6,40.9],"knL":[21.8,175.8],"ftL":[-63.3,276]},{"rootY":3.4,"hips":[0,0],"chest":[-12.4,-67.6],"neck":[-12.4,-67.6],"head":[-36.3,-128.8],"shR":[-77.4,-49.9],"elR":[-171.1,1.9],"haR":[-216.8,15.3],"shL":[45.4,-103.2],"elL":[114.6,-113.8],"haL":[130.2,-113.5],"hipR":[-35.3,37],"knR":[-21,157.8],"ftR":[6.3,319],"hipL":[31.2,41.2],"knL":[21.1,175.8],"ftL":[-63.5,276.1]},{"rootY":3.7,"hips":[0,0],"chest":[-11.9,-67.7],"neck":[-11.9,-67.7],"head":[-35.9,-129.3],"shR":[-77.3,-51],"elR":[-158.2,5.6],"haR":[-200,23.5],"shL":[46.4,-102.1],"elL":[99.1,-94],"haL":[106.6,-91.5],"hipR":[-35.6,36.7],"knR":[-22.5,157.3],"ftR":[6.1,318.5],"hipL":[31,41.4],"knL":[20.8,175.9],"ftL":[-62.9,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10.9,-68],"neck":[-10.9,-68],"head":[-34.5,-130.4],"shR":[-76.3,-51.7],"elR":[-141,9.1],"haR":[-177.2,32.4],"shL":[47.7,-102.2],"elL":[76.4,-73],"haL":[78.8,-68.5],"hipR":[-35.4,36.9],"knR":[-22.7,157.6],"ftR":[6.9,318.5],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-61.5,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10,-68.5],"neck":[-10,-68.5],"head":[-33.6,-131.2],"shR":[-75.7,-53.2],"elR":[-122.4,10.7],"haR":[-150.5,39.7],"shL":[49.4,-101.7],"elL":[54.3,-58.2],"haL":[50.6,-48.9],"hipR":[-35.7,36.6],"knR":[-24.9,157.2],"ftR":[6.7,317.9],"hipL":[30.9,41.7],"knL":[20.3,176],"ftL":[-60.8,275.9]},{"rootY":3.9,"hips":[0,0],"chest":[-9.3,-69.5],"neck":[-9.3,-69.5],"head":[-32.8,-132.6],"shR":[-75.3,-55.2],"elR":[-103.8,12.2],"haR":[-120.9,46.2],"shL":[50.7,-101.7],"elL":[33.4,-44.9],"haL":[23.5,-30.4],"hipR":[-36,36.3],"knR":[-27.2,157.5],"ftR":[6.3,317.7],"hipL":[30.5,42],"knL":[18.8,176.3],"ftL":[-60.8,275.5]},{"rootY":4.2,"hips":[0,0],"chest":[-8.1,-70.8],"neck":[-8.1,-70.8],"head":[-31,-134.6],"shR":[-74.3,-57.3],"elR":[-83.1,12.4],"haR":[-88,49.4],"shL":[52.1,-102.6],"elL":[18.6,-36],"haL":[1,-17],"hipR":[-35.9,36.4],"knR":[-28.2,157.5],"ftR":[6.6,317.1],"hipL":[30.6,42],"knL":[17.8,176.2],"ftL":[-60.9,274.3]},{"rootY":5.9,"hips":[0,0],"chest":[-6.1,-71.6],"neck":[-6.1,-71.6],"head":[-28.7,-135.9],"shR":[-72.5,-59.6],"elR":[-59.7,11.4],"haR":[-55.4,48.4],"shL":[54.8,-101.9],"elL":[11.8,-28.3],"haL":[-15.1,-6.9],"hipR":[-35.7,36.5],"knR":[-25.6,156.4],"ftR":[9.1,315.7],"hipL":[30.8,41.9],"knL":[17.6,175.5],"ftL":[-60.8,271.5]},{"rootY":8.3,"hips":[0,0],"chest":[-3.8,-72.8],"neck":[-3.8,-72.8],"head":[-26.3,-137.5],"shR":[-70.5,-62],"elR":[-36.2,8.4],"haR":[-25.3,42.6],"shL":[57.6,-102],"elL":[5.1,-23.9],"haL":[-27.5,-1.2],"hipR":[-35.8,36.5],"knR":[-24.5,155.1],"ftR":[11.9,313.5],"hipL":[30.7,42],"knL":[17.8,174.8],"ftL":[-62.9,265.8]},{"rootY":10.6,"hips":[0,0],"chest":[-2.9,-74.7],"neck":[-2.9,-74.7],"head":[-24.4,-140.2],"shR":[-69.8,-65.2],"elR":[-15.4,3.6],"haR":[0.7,34.9],"shL":[59.4,-102.7],"elL":[-1.2,-23.2],"haL":[-36.5,0.2],"hipR":[-35.8,36.6],"knR":[-26.1,153.9],"ftR":[13.2,310.4],"hipL":[30.7,42],"knL":[18,174.2],"ftL":[-67.1,259.2]},{"rootY":14.2,"hips":[0,0],"chest":[-2.2,-76.8],"neck":[-2.2,-76.8],"head":[-23.5,-142.7],"shR":[-69.5,-69.3],"elR":[0.5,1.1],"haR":[20.3,26.6],"shL":[61.3,-102.8],"elL":[0.2,-22.1],"haL":[-39.8,-1.5],"hipR":[-36.1,36.4],"knR":[-26.3,151.9],"ftR":[15.4,306.7],"hipL":[30.4,42.1],"knL":[18.3,173.2],"ftL":[-70.2,254.4]},{"rootY":18.5,"hips":[0,0],"chest":[-1.3,-78.1],"neck":[-1.3,-78.1],"head":[-21.8,-144.2],"shR":[-68.8,-70.6],"elR":[5.8,0.4],"haR":[31.5,18.6],"shL":[63,-104.2],"elL":[6.9,-22.3],"haL":[-37.7,-7.2],"hipR":[-36.2,36.1],"knR":[-25.3,149.6],"ftR":[17.4,302],"hipL":[30.2,42.2],"knL":[19.4,172.1],"ftL":[-73.7,251.3]},{"rootY":23.2,"hips":[0,0],"chest":[-1.1,-79.2],"neck":[-1.1,-79.2],"head":[-20.3,-145.6],"shR":[-68.8,-72.4],"elR":[-0.1,7.2],"haR":[34.4,13.9],"shL":[64.4,-105.1],"elL":[20.3,-26],"haL":[-28.6,-18],"hipR":[-36.3,35.7],"knR":[-23.1,147],"ftR":[19.9,297],"hipL":[30.2,42.2],"knL":[21.6,171],"ftL":[-76.5,250.8]},{"rootY":26.4,"hips":[0,0],"chest":[-1.8,-80.2],"neck":[-1.8,-80.2],"head":[-19.5,-146.8],"shR":[-69.2,-73.7],"elR":[-12.7,13.4],"haR":[29.5,10],"shL":[64.8,-106],"elL":[38.8,-32.6],"haL":[-11.6,-30.5],"hipR":[-35.9,35.2],"knR":[-20.3,145.7],"ftR":[22.4,293.6],"hipL":[30.2,42.1],"knL":[25,170.2],"ftL":[-79,252.9]},{"rootY":28.6,"hips":[0,0],"chest":[-1.7,-80.9],"neck":[-1.7,-80.9],"head":[-18,-147.7],"shR":[-68.4,-73.4],"elR":[-26.4,17.8],"haR":[20.9,8.7],"shL":[65,-107.8],"elL":[69.8,-43.4],"haL":[19.8,-41.7],"hipR":[-35.2,35.3],"knR":[-16.4,144.4],"ftR":[25.4,290.9],"hipL":[30.7,41.9],"knL":[28.4,169.6],"ftL":[-79.8,256.8]},{"rootY":27.7,"hips":[0,0],"chest":[-1.3,-80.8],"neck":[-1.3,-80.8],"head":[-16,-147.9],"shR":[-66,-73.2],"elR":[-38.9,20],"haR":[10.7,8.7],"shL":[65.1,-108.6],"elL":[109.8,-57.4],"haL":[59.9,-49.7],"hipR":[-33.6,35.8],"knR":[-10.9,146],"ftR":[29.8,291.9],"hipL":[31.2,41.6],"knL":[32.1,169.9],"ftL":[-80.3,260.2]},{"rootY":22.7,"hips":[0,0],"chest":[0.2,-81],"neck":[0.2,-81],"head":[-14.3,-148],"shR":[-61.5,-71.1],"elR":[-51.3,24.2],"haR":[-1.1,14.6],"shL":[64.8,-110.9],"elL":[145.1,-78.8],"haL":[99.2,-60.9],"hipR":[-32.5,36],"knR":[-4.7,149.3],"ftR":[32.9,296.5],"hipL":[31,41.6],"knL":[32.7,171],"ftL":[-78.8,268.1]},{"rootY":14.5,"hips":[0,0],"chest":[2.7,-81],"neck":[2.7,-81],"head":[-12.5,-147.7],"shR":[-55,-69.5],"elR":[-63.4,27.4],"haR":[-12.4,24.6],"shL":[64.2,-112.8],"elL":[168.1,-98.7],"haL":[131.5,-74.4],"hipR":[-30,37.2],"knR":[3.4,155],"ftR":[35.6,304.8],"hipL":[31.2,40.8],"knL":[31.3,171.9],"ftL":[-76.6,277]},{"rootY":5.8,"hips":[0,0],"chest":[5.5,-80.4],"neck":[5.5,-80.4],"head":[-11.1,-146.8],"shR":[-47.9,-67.2],"elR":[-74.5,29.1],"haR":[-23.7,35.8],"shL":[63.6,-113.8],"elL":[175.5,-115.3],"haL":[153.5,-88.5],"hipR":[-28.4,37.9],"knR":[11.6,159],"ftR":[34.7,312.3],"hipL":[29.9,40.5],"knL":[28.2,172.8],"ftL":[-72.9,287.4]},{"rootY":-3.5,"hips":[0,0],"chest":[8,-80.1],"neck":[8,-80.1],"head":[-10.1,-146.7],"shR":[-40,-66.3],"elR":[-83.7,26.9],"haR":[-35.2,43],"shL":[61.4,-114.7],"elL":[165.6,-129.7],"haL":[162.6,-101.6],"hipR":[-24.8,39.8],"knR":[18.5,163.9],"ftR":[23.9,319.5],"hipL":[29,38.8],"knL":[23.3,172.7],"ftL":[-70.1,297]},{"rootY":-13.1,"hips":[0,0],"chest":[10.7,-79.7],"neck":[10.7,-79.7],"head":[-9,-145.8],"shR":[-31.9,-63.3],"elR":[-86.4,25],"haR":[-41.9,49.1],"shL":[59,-117.1],"elL":[144.3,-139.6],"haL":[159.8,-115.4],"hipR":[-21.8,41.1],"knR":[22,167.9],"ftR":[10.7,325.6],"hipL":[26.9,37.4],"knL":[18.6,172.2],"ftL":[-66.1,305.9]},{"rootY":-21.2,"hips":[0,0],"chest":[13.1,-78.7],"neck":[13.1,-78.7],"head":[-9.2,-143.9],"shR":[-24.8,-59.8],"elR":[-85.6,24.7],"haR":[-46.4,54.1],"shL":[56.5,-118.7],"elL":[112.3,-145.7],"haL":[144.2,-125.4],"hipR":[-20.4,41.2],"knR":[20.6,169.9],"ftR":[-0.1,328.9],"hipL":[22.6,37.3],"knL":[14.6,172.2],"ftL":[-63.9,311.9]},{"rootY":-27.3,"hips":[0,0],"chest":[14.9,-77.8],"neck":[14.9,-77.8],"head":[-9.6,-142.1],"shR":[-17.5,-56.4],"elR":[-82.3,23.5],"haR":[-48.2,56.5],"shL":[53.2,-120.2],"elL":[75.6,-148.3],"haL":[118.9,-135],"hipR":[-18.5,40.9],"knR":[19.2,171.2],"ftR":[-9.2,330.8],"hipL":[17.9,37.5],"knL":[13.1,172.4],"ftL":[-62.4,315.9]},{"rootY":-31.2,"hips":[0,0],"chest":[17,-77.9],"neck":[17,-77.9],"head":[-9,-141.2],"shR":[-9.7,-53.9],"elR":[-75.9,21.9],"haR":[-46.9,57.5],"shL":[50.1,-122.7],"elL":[43.7,-149.3],"haL":[93.3,-143.3],"hipR":[-15.4,41.4],"knR":[19.6,172.6],"ftR":[-16.5,332],"hipL":[14,36.9],"knL":[13.5,172],"ftL":[-58.8,318.7]},{"rootY":-33.5,"hips":[0,0],"chest":[19.4,-77.9],"neck":[19.4,-77.9],"head":[-7.8,-139.9],"shR":[1.9,-53.7],"elR":[-62.6,20.4],"haR":[-38.3,56.6],"shL":[43.9,-123.4],"elL":[10.6,-147.7],"haL":[60.5,-149.9],"hipR":[-11.2,42.2],"knR":[22.6,173.8],"ftR":[-18.5,332.7],"hipL":[10.4,35.9],"knL":[15.1,170.8],"ftL":[-52.4,320.4]},{"rootY":-34.5,"hips":[0,0],"chest":[21.6,-78.1],"neck":[21.6,-78.1],"head":[-6.6,-138.7],"shR":[10.9,-52.5],"elR":[-47.9,21.5],"haR":[-27.8,58],"shL":[39.5,-125.1],"elL":[-16,-145],"haL":[29.5,-154.9],"hipR":[-6.2,41.7],"knR":[24.9,173.8],"ftR":[-19.2,332.2],"hipL":[5.3,36.7],"knL":[17.7,171.3],"ftL":[-45.6,322.4]},{"rootY":-34.9,"hips":[0,0],"chest":[22.4,-78.4],"neck":[22.4,-78.4],"head":[-7.1,-136.7],"shR":[20.1,-51.6],"elR":[-29.7,25.8],"haR":[-13.2,60.6],"shL":[32.7,-126.6],"elL":[-39.7,-142.4],"haL":[-2.5,-159.2],"hipR":[-0.5,41.2],"knR":[25,174.4],"ftR":[-21.6,332.3],"hipL":[0.5,37.4],"knL":[18.8,171.6],"ftL":[-42,323.2]},{"rootY":-34.9,"hips":[0,0],"chest":[24.5,-78.8],"neck":[24.5,-78.8],"head":[-5.4,-135],"shR":[33,-52],"elR":[-5.8,26.2],"haR":[9.4,59.8],"shL":[24.5,-127.5],"elL":[-60.4,-138.6],"haL":[-33.6,-161.1],"hipR":[5,40.4],"knR":[26.2,174.1],"ftR":[-22.6,331.4],"hipL":[-5.5,38.2],"knL":[18,171.9],"ftL":[-36,325.6]},{"rootY":-34.9,"hips":[0,0],"chest":[26.4,-78.9],"neck":[26.4,-78.9],"head":[-3.6,-132.3],"shR":[45.9,-53],"elR":[19.5,25.2],"haR":[34.3,57.2],"shL":[15.6,-127],"elL":[-79,-133],"haL":[-64.2,-159.6],"hipR":[10.5,40.4],"knR":[26.8,174.7],"ftR":[-22.9,331],"hipL":[-11.3,38.2],"knL":[15.7,171.3],"ftL":[-30.3,326.4]},{"rootY":-36.2,"hips":[0,0],"chest":[27.3,-79.3],"neck":[27.3,-79.3],"head":[0.1,-131.3],"shR":[55.5,-52.5],"elR":[42.6,27.6],"haR":[58.6,58.8],"shL":[8.5,-128.3],"elL":[-94.1,-128.9],"haL":[-92.1,-157.4],"hipR":[15.8,40.1],"knR":[26.2,175],"ftR":[-22.1,330.5],"hipL":[-15.7,38.5],"knL":[13.9,170.8],"ftL":[-24.6,327.3]},{"rootY":-35.4,"hips":[0,0],"chest":[28.2,-79.8],"neck":[28.2,-79.8],"head":[4.9,-130.3],"shR":[66.8,-54],"elR":[68.3,27.3],"haR":[87,58],"shL":[-0.9,-128.1],"elL":[-108.6,-123.6],"haL":[-118.7,-153.2],"hipR":[20.4,40.2],"knR":[28.8,175],"ftR":[-16.4,330.7],"hipL":[-20.7,38.5],"knL":[10.2,169.4],"ftL":[-16.5,327.4]},{"rootY":-35.2,"hips":[0,0],"chest":[27.9,-80.4],"neck":[27.9,-80.4],"head":[10.2,-129.9],"shR":[75,-54.5],"elR":[96.7,32.7],"haR":[115.3,61.5],"shL":[-9.4,-128.9],"elL":[-120.7,-119.3],"haL":[-141,-147.2],"hipR":[25,39.1],"knR":[29.6,174.1],"ftR":[-12.5,329.5],"hipL":[-23.5,39.5],"knL":[8.1,169.4],"ftL":[-9.9,328.2]},{"rootY":-34,"hips":[0,0],"chest":[27.9,-80.6],"neck":[27.9,-80.6],"head":[17.3,-128.4],"shR":[83.3,-57.2],"elR":[112.9,28.4],"haR":[139.6,59],"shL":[-18.1,-127.1],"elL":[-128.2,-112],"haL":[-157.9,-139.5],"hipR":[30.2,37.9],"knR":[29.6,173],"ftR":[-6.4,328.5],"hipL":[-25.7,40.7],"knL":[5.1,168.8],"ftL":[-2.8,327.9]},{"rootY":-32.7,"hips":[0,0],"chest":[26,-81.5],"neck":[26,-81.5],"head":[24.3,-128.6],"shR":[87.7,-60.5],"elR":[130.9,27.8],"haR":[162.1,58.5],"shL":[-26.9,-126],"elL":[-132.7,-105.6],"haL":[-170.6,-132],"hipR":[33.1,37.7],"knR":[27.8,172.6],"ftR":[0.6,327.5],"hipL":[-28.4,40.7],"knL":[-1.6,167.5],"ftL":[3.3,327.3]},{"rootY":-31.5,"hips":[0,0],"chest":[24.1,-81.8],"neck":[24.1,-81.8],"head":[32.6,-127.8],"shR":[89.1,-62.9],"elR":[143.2,27.6],"haR":[178,58.6],"shL":[-33.4,-124.4],"elL":[-129.8,-97.2],"haL":[-173,-121.6],"hipR":[35.4,36.9],"knR":[26.1,171.6],"ftR":[10.7,326.2],"hipL":[-29.8,41.4],"knL":[-8.3,166],"ftL":[7.4,326.1]},{"rootY":-30.3,"hips":[0,0],"chest":[23.3,-82],"neck":[23.3,-82],"head":[43.5,-127.2],"shR":[88.6,-65.2],"elR":[149.6,26.2],"haR":[187.8,57.5],"shL":[-36.2,-122.5],"elL":[-119.7,-88.4],"haL":[-165.4,-109.4],"hipR":[36.9,35.2],"knR":[25,170],"ftR":[20.9,324.6],"hipL":[-29.4,42.7],"knL":[-17,165.2],"ftL":[7.7,325.3]},{"rootY":-28.3,"hips":[0,0],"chest":[17.6,-82.8],"neck":[17.6,-82.8],"head":[49.8,-128.7],"shR":[80.5,-68.7],"elR":[146.9,23.2],"haR":[187,54.7],"shL":[-41.3,-121.1],"elL":[-107.3,-81.3],"haL":[-152.1,-98.5],"hipR":[34.6,35.5],"knR":[16,169.5],"ftR":[22.7,323.6],"hipL":[-30.1,42.4],"knL":[-30.4,164.1],"ftL":[-0.5,324.8]},{"rootY":-25.3,"hips":[0,0],"chest":[11.9,-83.7],"neck":[11.9,-83.7],"head":[53,-129.6],"shR":[68.2,-72.1],"elR":[138.3,19.4],"haR":[179,50.1],"shL":[-43,-119.4],"elL":[-90.1,-75.6],"haL":[-131.2,-89.5],"hipR":[30.8,35.7],"knR":[7.4,168.9],"ftR":[24.3,321.5],"hipL":[-29.4,42.1],"knL":[-42.1,164.6],"ftL":[-8.1,325.1]},{"rootY":-21.8,"hips":[0,0],"chest":[6.3,-84.3],"neck":[6.3,-84.3],"head":[53.3,-132.1],"shR":[54,-75.1],"elR":[125.9,14.8],"haR":[165.9,44.3],"shL":[-42.1,-117.7],"elL":[-69.5,-70.2],"haL":[-104.1,-81.3],"hipR":[26.4,35.1],"knR":[-1.2,167.7],"ftR":[26.3,319],"hipL":[-26.4,42.6],"knL":[-50.3,165.6],"ftL":[-13.1,325.4]},{"rootY":-18.6,"hips":[0,0],"chest":[0.6,-84.7],"neck":[0.6,-84.7],"head":[46.7,-136.5],"shR":[38.2,-78.3],"elR":[109.7,9.3],"haR":[147.3,37.2],"shL":[-39.7,-115.5],"elL":[-47.7,-65.2],"haL":[-74.1,-73.5],"hipR":[21,34.8],"knR":[-11.6,166.5],"ftR":[27.4,316.5],"hipL":[-23.3,42.8],"knL":[-58.4,165.9],"ftL":[-18.1,324.8]},{"rootY":-16.8,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[39.6,-139.2],"shR":[23.1,-76.6],"elR":[91.3,8.5],"haR":[125,34.6],"shL":[-33.4,-117.9],"elL":[-22.6,-64.4],"haL":[-40,-70.3],"hipR":[14.2,35.2],"knR":[-20,166.7],"ftR":[31.1,315.2],"hipL":[-19.4,42.5],"knL":[-63.5,166.2],"ftL":[-18.5,323.1]},{"rootY":-13.7,"hips":[0,0],"chest":[-7.7,-85.4],"neck":[-7.7,-85.4],"head":[28.1,-142.4],"shR":[6.5,-82.3],"elR":[70,0.9],"haR":[98.4,25.5],"shL":[-27.4,-112.6],"elL":[0.7,-57.3],"haL":[-7.5,-61.1],"hipR":[8.2,31],"knR":[-26,162.1],"ftR":[32.6,310.5],"hipL":[-14.4,45.2],"knL":[-72.5,166.6],"ftL":[-25.2,322.5]},{"rootY":-14.1,"hips":[0,0],"chest":[-9.4,-85.4],"neck":[-9.4,-85.4],"head":[19.4,-144.9],"shR":[-10.2,-85.6],"elR":[45.9,-4.3],"haR":[69.3,19.3],"shL":[-15,-109.2],"elL":[29.7,-52],"haL":[30.2,-53.1],"hipR":[-0.2,33.8],"knR":[-30.1,165.9],"ftR":[38.8,312.1],"hipL":[-9.3,43.5],"knL":[-68.9,165.4],"ftL":[-25.7,320.6]},{"rootY":-13.8,"hips":[0,0],"chest":[-11.5,-85.5],"neck":[-11.5,-85.5],"head":[9.5,-147.1],"shR":[-24.3,-87.5],"elR":[23.6,-7.7],"haR":[40.9,15],"shL":[-5.7,-107.4],"elL":[52.6,-49.3],"haL":[61.7,-47.5],"hipR":[-7.8,34],"knR":[-34,166.5],"ftR":[40.9,311.4],"hipL":[-4.7,43.2],"knL":[-65,164.7],"ftL":[-32,321.7]},{"rootY":-14.3,"hips":[0,0],"chest":[-13,-85.4],"neck":[-13,-85.4],"head":[2.6,-148.6],"shR":[-36.8,-87.7],"elR":[0.7,-10.1],"haR":[11.7,11.9],"shL":[3.7,-106.8],"elL":[70,-45.8],"haL":[89.2,-42],"hipR":[-13.5,34],"knR":[-34.1,167.3],"ftR":[43.2,312.2],"hipL":[0.8,43.3],"knL":[-57.9,164.5],"ftL":[-38.2,323.7]},{"rootY":-14.6,"hips":[0,0],"chest":[-13.6,-85.5],"neck":[-13.6,-85.5],"head":[-3.2,-149.9],"shR":[-46.9,-88.7],"elR":[-21.5,-11.1],"haR":[-16.7,10.9],"shL":[13,-105.7],"elL":[88.2,-42.1],"haL":[115,-34.9],"hipR":[-20,33.3],"knR":[-33.5,167.4],"ftR":[46.5,311.4],"hipL":[5.2,43.8],"knL":[-51.2,164.4],"ftL":[-42,324.8]}]},"jump":{"name":"jump","fps":30,"height":520,"groundY":343,"frameCount":104,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.2],"elR":[-68.8,9.9],"haR":[-82.2,74.4],"shL":[70,-99.6],"elL":[68.4,5.1],"haL":[77.1,73.3],"hipR":[-31.9,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.6,185.6],"ftL":[40.8,338.2]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.2,74.3],"shL":[70.1,-99.5],"elL":[68.4,5.2],"haL":[77.2,73.3],"hipR":[-32,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.1,74.4],"shL":[70.1,-99.5],"elL":[68.5,5.2],"haL":[77.3,73.3],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.3],"shL":[70.1,-99.4],"elL":[68.4,5.3],"haL":[77.3,73.4],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.2],"shL":[70.1,-99.4],"elL":[68.3,5.3],"haL":[77.1,73.5],"hipR":[-32,38.3],"knR":[-30.3,182.2],"ftR":[-39,336.5],"hipL":[29.3,38],"knL":[30.5,185.6],"ftL":[40.7,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11.1,-145.8],"shR":[-54.4,-107.5],"elR":[-68.6,9.7],"haR":[-81.8,74],"shL":[70.2,-99.3],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.9,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.7],"haR":[-81.7,74],"shL":[70.3,-99.2],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32.1,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77,73.6],"hipR":[-32.1,38.2],"knR":[-30.2,182.1],"ftR":[-38.7,336.4],"hipL":[29.2,38.2],"knL":[30.5,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.9,-145.8],"shR":[-54.2,-107.6],"elR":[-68.5,9.6],"haR":[-81.6,73.9],"shL":[70.4,-99.1],"elL":[68.3,5.6],"haL":[76.9,73.8],"hipR":[-32.1,38.2],"knR":[-30.1,182.1],"ftR":[-38.7,336.4],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.8,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.8,73.8],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.4],"hipL":[29.4,38.1],"knL":[30.6,185.6],"ftL":[41,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.6,-145.9],"shR":[-54.3,-107.6],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-32,38.3],"knR":[-30.1,182.2],"ftR":[-38.8,336.4],"hipL":[29.3,38.1],"knL":[30.7,185.6],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.5,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-31.9,38.4],"knR":[-30.1,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.4,-145.9],"shR":[-54.3,-107.7],"elR":[-68.5,9.4],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.9,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.1,-145.9],"shR":[-54.5,-107.7],"elR":[-68.5,9.3],"haR":[-81.9,73.7],"shL":[70.2,-99],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.3],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.9,-145.9],"shR":[-54.6,-107.8],"elR":[-68.7,9.3],"haR":[-81.9,73.8],"shL":[70.1,-99.1],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.8,38.4],"knR":[-30.1,182.3],"ftR":[-39,336.3],"hipL":[29.6,37.9],"knL":[30.8,185.5],"ftL":[40.8,337.9]},{"rootY":0.4,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.8,-145.9],"shR":[-54.7,-107.6],"elR":[-68.8,9.4],"haR":[-82,74.1],"shL":[70,-99.3],"elL":[68.1,5.3],"haL":[76.8,73.7],"hipR":[-31.8,38.4],"knR":[-30.2,182.3],"ftR":[-39.1,336.3],"hipL":[29.5,38],"knL":[30.7,185.5],"ftL":[40.8,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.7,-145.9],"shR":[-54.7,-107.5],"elR":[-68.8,9.4],"haR":[-81.8,74.3],"shL":[70,-99.3],"elL":[68.3,5.3],"haL":[77,73.7],"hipR":[-31.7,38.6],"knR":[-30,182.5],"ftR":[-39.3,336.4],"hipL":[29.7,37.9],"knL":[30.7,185.4],"ftL":[40.6,337.7]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.4,-145.9],"shR":[-54.8,-107.5],"elR":[-68.9,9.4],"haR":[-82,74.3],"shL":[69.9,-99.4],"elL":[68.3,5.2],"haL":[77.1,73.6],"hipR":[-31.6,38.6],"knR":[-29.9,182.5],"ftR":[-39.4,336.5],"hipL":[29.8,37.9],"knL":[30.7,185.5],"ftL":[40.5,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-77.8],"neck":[0.6,-77.8],"head":[9.2,-145.9],"shR":[-55,-107.5],"elR":[-69.1,9.2],"haR":[-82.1,74.2],"shL":[69.7,-99.4],"elL":[68.3,5.1],"haL":[77.1,73.6],"hipR":[-31.8,38.5],"knR":[-30,182.4],"ftR":[-39.6,336.6],"hipL":[29.6,38.2],"knL":[30.4,185.9],"ftL":[40.4,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.4,-77.8],"neck":[0.4,-77.8],"head":[8.9,-145.8],"shR":[-55.3,-107.4],"elR":[-69.3,9.2],"haR":[-82.2,74.5],"shL":[69.5,-99.5],"elL":[68.4,5],"haL":[77.4,73.7],"hipR":[-31.8,38.5],"knR":[-29.7,182.4],"ftR":[-39.6,336.6],"hipL":[29.7,38.5],"knL":[30.4,186.1],"ftL":[40.4,337.9]},{"rootY":0,"hips":[0,0],"chest":[0.1,-77.6],"neck":[0.1,-77.6],"head":[8.4,-145.7],"shR":[-55.7,-107.3],"elR":[-69.7,9],"haR":[-82.6,74.5],"shL":[69.1,-99.4],"elL":[68.3,4.9],"haL":[77.4,73.8],"hipR":[-31.8,38.6],"knR":[-30,182.4],"ftR":[-40.2,336.7],"hipL":[29.7,38.6],"knL":[30,186.2],"ftL":[39.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[-0.3,-77.4],"neck":[-0.3,-77.4],"head":[7.9,-145.6],"shR":[-56.1,-107.2],"elR":[-70.3,8.7],"haR":[-83,74.3],"shL":[68.7,-99.3],"elL":[68.3,4.9],"haL":[77.7,73.7],"hipR":[-31.8,38.7],"knR":[-30.4,182.4],"ftR":[-41.2,336.8],"hipL":[29.6,38.6],"knL":[29.4,186.2],"ftL":[39.2,337.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.9,-77.1],"neck":[-0.9,-77.1],"head":[7.3,-145.2],"shR":[-56.8,-106.9],"elR":[-71.1,8.6],"haR":[-83.8,74.4],"shL":[68,-99.1],"elL":[68.3,4.8],"haL":[77.7,73.6],"hipR":[-32,38.5],"knR":[-30.9,182.2],"ftR":[-42.2,336.6],"hipL":[29.4,38.8],"knL":[28.4,186.3],"ftL":[38.6,337.2]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-76.6],"neck":[-1.5,-76.6],"head":[6.4,-144.7],"shR":[-57.7,-106.2],"elR":[-72.2,8.7],"haR":[-84.8,74.7],"shL":[67.3,-99],"elL":[68.2,4.4],"haL":[78,73.2],"hipR":[-32.2,38.4],"knR":[-30.9,181.9],"ftR":[-43.2,336.2],"hipL":[29.1,39.1],"knL":[27.4,186.4],"ftL":[37.8,336.8]},{"rootY":1.6,"hips":[0,0],"chest":[-1.8,-75.8],"neck":[-1.8,-75.8],"head":[5.8,-143.8],"shR":[-58.1,-105.1],"elR":[-73,8.9],"haR":[-85.5,75.2],"shL":[66.8,-98.4],"elL":[68.6,4.3],"haL":[78.5,73.2],"hipR":[-31.7,38.8],"knR":[-29.6,181.8],"ftR":[-43.7,335.5],"hipL":[29.6,38.9],"knL":[27.4,185.8],"ftL":[37.3,336.2]},{"rootY":2.4,"hips":[0,0],"chest":[-2.3,-74.7],"neck":[-2.3,-74.7],"head":[4.8,-142.5],"shR":[-58.8,-103.9],"elR":[-74.4,9],"haR":[-86.7,75.4],"shL":[66.2,-97.5],"elL":[69.2,4.4],"haL":[79.1,73.4],"hipR":[-31.2,39.2],"knR":[-28.4,181.4],"ftR":[-44.4,334.3],"hipL":[30.1,38.7],"knL":[26.8,185.1],"ftL":[36.5,335.3]},{"rootY":3.7,"hips":[0,0],"chest":[-2.5,-73.5],"neck":[-2.5,-73.5],"head":[4.3,-141],"shR":[-59.1,-102.4],"elR":[-75.4,9.4],"haR":[-87.6,76.3],"shL":[65.8,-96.2],"elL":[70.3,4.5],"haL":[80.2,73.7],"hipR":[-30.6,39.6],"knR":[-27,180.9],"ftR":[-44.7,333],"hipL":[30.6,38.4],"knL":[26.8,184.2],"ftL":[36.1,334.1]},{"rootY":5,"hips":[0,0],"chest":[-2.8,-72.1],"neck":[-2.8,-72.1],"head":[3.4,-139.2],"shR":[-59.6,-100.6],"elR":[-76.5,10],"haR":[-88.7,77.2],"shL":[65.3,-94.9],"elL":[71.5,4.7],"haL":[81.3,74.3],"hipR":[-30.1,40],"knR":[-26.1,180.2],"ftR":[-45.6,331.6],"hipL":[31.1,38.2],"knL":[26.8,183.2],"ftL":[35.5,332.9]},{"rootY":6.3,"hips":[0,0],"chest":[-3.3,-70.6],"neck":[-3.3,-70.6],"head":[2.5,-137.2],"shR":[-60.2,-98.9],"elR":[-77.3,10.5],"haR":[-89.7,78],"shL":[64.7,-93.2],"elL":[72.7,5.2],"haL":[82.7,75.2],"hipR":[-29.8,40.2],"knR":[-25.3,179.5],"ftR":[-46.5,330.3],"hipL":[31.5,38],"knL":[27.2,182.1],"ftL":[34.7,331.6]},{"rootY":7.7,"hips":[0,0],"chest":[-3.5,-69.1],"neck":[-3.5,-69.1],"head":[1.9,-135.2],"shR":[-60.6,-97],"elR":[-77.8,11.1],"haR":[-90.5,79],"shL":[64.4,-91.9],"elL":[73.9,5.6],"haL":[84.5,75.8],"hipR":[-29.7,40.2],"knR":[-24.6,178.7],"ftR":[-47,328.9],"hipL":[31.7,37.9],"knL":[27.6,181.2],"ftL":[34.3,330.4]},{"rootY":9,"hips":[0,0],"chest":[-3.6,-67.8],"neck":[-3.6,-67.8],"head":[1.5,-133.3],"shR":[-61,-95.1],"elR":[-78.2,11.6],"haR":[-91,79.8],"shL":[64.1,-90.8],"elL":[75,5.4],"haL":[86.4,75.7],"hipR":[-29.3,40.5],"knR":[-23.7,178.2],"ftR":[-47.5,327.6],"hipL":[32.1,37.7],"knL":[28.2,180.2],"ftL":[33.9,329.2]},{"rootY":10,"hips":[0,0],"chest":[-3.9,-66.6],"neck":[-3.9,-66.6],"head":[0.9,-131.6],"shR":[-61.4,-93.5],"elR":[-78.2,11.5],"haR":[-91.4,80.1],"shL":[63.7,-89.7],"elL":[76.1,4.9],"haL":[88.4,75.3],"hipR":[-29.1,40.6],"knR":[-23.3,177.7],"ftR":[-47.9,326.6],"hipL":[32.3,37.5],"knL":[28.1,179.5],"ftL":[33.5,328.2]},{"rootY":10.8,"hips":[0,0],"chest":[-4,-65.5],"neck":[-4,-65.5],"head":[0.7,-130],"shR":[-61.6,-92],"elR":[-78.3,10.7],"haR":[-91.6,79.6],"shL":[63.6,-88.7],"elL":[77.2,3.8],"haL":[90.8,74],"hipR":[-28.6,41],"knR":[-22.9,177.5],"ftR":[-47.9,325.7],"hipL":[32.8,37.1],"knL":[28.3,178.8],"ftL":[33.2,327.4]},{"rootY":11.1,"hips":[0,0],"chest":[-4.1,-64.5],"neck":[-4.1,-64.5],"head":[0.3,-128.8],"shR":[-61.8,-90.5],"elR":[-78.3,9.5],"haR":[-91.6,78.7],"shL":[63.4,-87.9],"elL":[78.2,1.8],"haL":[93.2,71.5],"hipR":[-28.5,41],"knR":[-23.2,177.3],"ftR":[-48.2,325.3],"hipL":[33,37],"knL":[28.2,178.7],"ftL":[32.9,327.1]},{"rootY":11.2,"hips":[0,0],"chest":[-4.2,-63.4],"neck":[-4.2,-63.4],"head":[0,-127.5],"shR":[-62,-89.1],"elR":[-78.6,7.2],"haR":[-91.8,76.4],"shL":[63.2,-86.9],"elL":[79.1,-0.8],"haL":[95.9,67.6],"hipR":[-28.3,41],"knR":[-23.5,177.3],"ftR":[-48.4,325.1],"hipL":[33.1,36.9],"knL":[28.5,178.7],"ftL":[32.8,326.9]},{"rootY":11.6,"hips":[0,0],"chest":[-4.3,-62.4],"neck":[-4.3,-62.4],"head":[-0.3,-126.3],"shR":[-62.1,-87.9],"elR":[-79,4.5],"haR":[-92.2,73.2],"shL":[63.2,-85.7],"elL":[80.4,-4.2],"haL":[98.9,62.1],"hipR":[-28.4,40.9],"knR":[-23.5,177.2],"ftR":[-48.5,324.6],"hipL":[33.1,37],"knL":[29.2,178.5],"ftL":[32.9,326.4]},{"rootY":12,"hips":[0,0],"chest":[-4.4,-61.3],"neck":[-4.4,-61.3],"head":[-0.5,-125],"shR":[-62.3,-86.5],"elR":[-79.3,1.4],"haR":[-92.9,68.9],"shL":[63,-84.4],"elL":[81.3,-8.1],"haL":[101.6,55.1],"hipR":[-28.4,40.8],"knR":[-23.6,177.1],"ftR":[-48.6,324.1],"hipL":[33.1,37],"knL":[29.3,178.4],"ftL":[32.8,325.9]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-60.1],"neck":[-4.4,-60.1],"head":[-0.5,-123.5],"shR":[-62.3,-85.1],"elR":[-79.3,-2.2],"haR":[-93.6,63.5],"shL":[63,-83.1],"elL":[82.1,-12.3],"haL":[103.8,47],"hipR":[-28.4,40.8],"knR":[-23.2,176.9],"ftR":[-48.6,323.1],"hipL":[33.1,36.9],"knL":[29.6,178.1],"ftL":[32.9,324.8]},{"rootY":14.7,"hips":[0,0],"chest":[-4.3,-58.9],"neck":[-4.3,-58.9],"head":[-0.3,-121.9],"shR":[-62.3,-83.3],"elR":[-79,-5.5],"haR":[-94,57.8],"shL":[63.1,-81.9],"elL":[82.7,-16.6],"haL":[105.6,38.7],"hipR":[-28.2,40.8],"knR":[-22.8,176.3],"ftR":[-48.6,321.4],"hipL":[33.3,36.8],"knL":[29.8,177.2],"ftL":[33.2,322.9]},{"rootY":17.6,"hips":[0,0],"chest":[-4,-57.4],"neck":[-4,-57.4],"head":[0,-120.1],"shR":[-62,-81.2],"elR":[-78.9,-8],"haR":[-94.2,52.8],"shL":[63.4,-80.3],"elL":[83.2,-19.5],"haL":[107,32.1],"hipR":[-27.9,41],"knR":[-21.9,175.3],"ftR":[-48.1,318.7],"hipL":[33.6,36.4],"knL":[30.9,175.7],"ftL":[33.7,320.3]},{"rootY":21,"hips":[0,0],"chest":[-3.7,-56],"neck":[-3.7,-56],"head":[0.4,-118.3],"shR":[-61.7,-79.3],"elR":[-78.7,-10],"haR":[-94.4,48.4],"shL":[63.7,-79.1],"elL":[83.2,-22.5],"haL":[107.4,26.5],"hipR":[-27.5,41.3],"knR":[-21.2,174],"ftR":[-47.4,315.5],"hipL":[34.1,35.8],"knL":[32,173.9],"ftL":[34.4,317]},{"rootY":25.3,"hips":[0,0],"chest":[-3.6,-54.7],"neck":[-3.6,-54.7],"head":[0.6,-116.7],"shR":[-61.6,-77.3],"elR":[-78.4,-10.2],"haR":[-94.3,46],"shL":[63.8,-78.1],"elL":[82.2,-23.7],"haL":[106.7,23.6],"hipR":[-27.2,41.5],"knR":[-20.8,172.1],"ftR":[-46.5,311.3],"hipL":[34.3,35.5],"knL":[32.8,172.1],"ftL":[34.9,313.1]},{"rootY":29.7,"hips":[0,0],"chest":[-3.3,-53.6],"neck":[-3.3,-53.6],"head":[0.9,-115.2],"shR":[-61.3,-75.6],"elR":[-77.8,-8.7],"haR":[-93.3,45.9],"shL":[64,-77.3],"elL":[81.7,-23.1],"haL":[105.7,23.9],"hipR":[-26.7,41.8],"knR":[-20,170.3],"ftR":[-45.4,306.6],"hipL":[34.7,35.1],"knL":[33.9,170.2],"ftL":[35.7,309]},{"rootY":33.9,"hips":[0,0],"chest":[-3.6,-53.6],"neck":[-3.6,-53.6],"head":[0.2,-115.1],"shR":[-61.7,-74.9],"elR":[-78,-5.7],"haR":[-93.5,48.1],"shL":[63.6,-77.8],"elL":[80.4,-21.5],"haL":[103.6,26.7],"hipR":[-25.9,42.4],"knR":[-19.9,169.9],"ftR":[-45.3,302.5],"hipL":[35.4,34.4],"knL":[34.8,168.7],"ftL":[35.4,304.8]},{"rootY":38.7,"hips":[0,0],"chest":[-3.5,-53.6],"neck":[-3.5,-53.6],"head":[0,-115.5],"shR":[-61.7,-74.5],"elR":[-77.6,-1.3],"haR":[-92.6,52.7],"shL":[63.6,-78.4],"elL":[79.4,-18.1],"haL":[101.5,32.5],"hipR":[-26.2,42.3],"knR":[-19.3,168.3],"ftR":[-44.5,297],"hipL":[35.2,34.6],"knL":[35.6,167.5],"ftL":[35.8,300.5]},{"rootY":43.9,"hips":[0,0],"chest":[-4.2,-53.4],"neck":[-4.2,-53.4],"head":[-1.1,-115.7],"shR":[-62.5,-73.8],"elR":[-78,4.3],"haR":[-92.4,60.2],"shL":[62.7,-78.9],"elL":[77.3,-14],"haL":[98.1,40.8],"hipR":[-25.6,42.8],"knR":[-19.5,166.9],"ftR":[-44.1,291.2],"hipL":[35.7,34.1],"knL":[35.5,165.4],"ftL":[35.3,294.3]},{"rootY":49.8,"hips":[0,0],"chest":[-4.2,-53.7],"neck":[-4.2,-53.7],"head":[-1.3,-116.6],"shR":[-62.6,-73.7],"elR":[-77.4,10.2],"haR":[-90.9,69.5],"shL":[62.5,-79.9],"elL":[76.1,-9.3],"haL":[95.1,50.3],"hipR":[-25.7,42.8],"knR":[-19.6,164.8],"ftR":[-43.5,283.5],"hipL":[35.6,34.2],"knL":[35.5,163.5],"ftL":[36,287.6]},{"rootY":55.7,"hips":[0,0],"chest":[-4.3,-54],"neck":[-4.3,-54],"head":[-1.8,-117.6],"shR":[-62.9,-73.9],"elR":[-76.8,16.4],"haR":[-88.9,80.3],"shL":[62.3,-80.8],"elL":[74.8,-3.5],"haL":[91.7,60.9],"hipR":[-25.5,43],"knR":[-20.5,161.9],"ftR":[-43.7,274.5],"hipL":[35.7,34.1],"knL":[34.9,161],"ftL":[36.9,279.3]},{"rootY":61.2,"hips":[0,0],"chest":[-4.6,-55],"neck":[-4.6,-55],"head":[-2.3,-119.2],"shR":[-63.2,-75],"elR":[-75.9,22.8],"haR":[-86.3,90.9],"shL":[61.9,-82.1],"elL":[74.1,3],"haL":[87.9,71.4],"hipR":[-25.1,43.3],"knR":[-22.3,159.3],"ftR":[-44.3,265.1],"hipL":[36,33.9],"knL":[34.4,158.8],"ftL":[36.7,270.8]},{"rootY":66.4,"hips":[0,0],"chest":[-4.7,-57],"neck":[-4.7,-57],"head":[-2.6,-122.2],"shR":[-63.3,-77.3],"elR":[-74.5,28.1],"haR":[-81.9,98.1],"shL":[61.7,-84.6],"elL":[73.6,8.3],"haL":[83.7,79.1],"hipR":[-24.3,43.8],"knR":[-24.5,157.6],"ftR":[-44.5,256.3],"hipL":[36.7,33.3],"knL":[34.2,158],"ftL":[36.8,264.3]},{"rootY":70.5,"hips":[0,0],"chest":[-4.7,-59.7],"neck":[-4.7,-59.7],"head":[-3,-126.1],"shR":[-63.4,-80.4],"elR":[-72.6,31.8],"haR":[-78,99.6],"shL":[61.6,-88],"elL":[73.1,11.2],"haL":[79.4,78.6],"hipR":[-25.2,43.3],"knR":[-25,157.4],"ftR":[-44.3,249.6],"hipL":[35.9,34.1],"knL":[34.1,159.6],"ftL":[37.5,259.8]},{"rootY":71,"hips":[0,0],"chest":[-4.5,-62.8],"neck":[-4.5,-62.8],"head":[-3,-130.4],"shR":[-63.2,-83.8],"elR":[-73.5,32.8],"haR":[-76.2,91.3],"shL":[61.7,-91.9],"elL":[77.2,11.2],"haL":[77.9,63.6],"hipR":[-25.8,42.9],"knR":[-24.3,161],"ftR":[-45.8,247.2],"hipL":[35.5,34.7],"knL":[33.1,163.5],"ftL":[37.5,257.4]},{"rootY":68.3,"hips":[0,0],"chest":[-3.3,-65.2],"neck":[-3.3,-65.2],"head":[-1.7,-133.5],"shR":[-62.1,-87.1],"elR":[-77.4,30.1],"haR":[-77.8,70.4],"shL":[62.9,-94.4],"elL":[86.9,6.5],"haL":[82,33.9],"hipR":[-26.4,42.5],"knR":[-21.8,165.4],"ftR":[-45.4,249.3],"hipL":[35,35.2],"knL":[35.1,167.4],"ftL":[37.9,259.8]},{"rootY":60,"hips":[0,0],"chest":[-2.7,-68],"neck":[-2.7,-68],"head":[-1,-136.5],"shR":[-61.5,-91.2],"elR":[-84.2,19.7],"haR":[-82.2,35],"shL":[63.8,-96.5],"elL":[98.9,-6.3],"haL":[88.8,-7.4],"hipR":[-27.2,41.9],"knR":[-22.1,172.3],"ftR":[-45.1,256.7],"hipL":[34.3,35.7],"knL":[38.2,174.4],"ftL":[37.5,266.8]},{"rootY":46.6,"hips":[0,0],"chest":[-2.8,-71.3],"neck":[-2.8,-71.3],"head":[-0.8,-139.7],"shR":[-61.5,-95.5],"elR":[-93.8,2.7],"haR":[-89,-5.9],"shL":[63.9,-99.5],"elL":[108.5,-25],"haL":[96.2,-48.8],"hipR":[-27.6,41.6],"knR":[-25.5,179.3],"ftR":[-45.8,267.9],"hipL":[33.9,35.8],"knL":[40.8,180.3],"ftL":[38.1,276.2]},{"rootY":27.3,"hips":[0,0],"chest":[-3.3,-74.6],"neck":[-3.3,-74.6],"head":[-1.2,-142.4],"shR":[-62.1,-98.9],"elR":[-104.3,-16.6],"haR":[-96.9,-40.3],"shL":[63.2,-103.1],"elL":[115.2,-43.3],"haL":[102.9,-80.8],"hipR":[-27.7,41.5],"knR":[-28.2,184.4],"ftR":[-48.3,280.8],"hipL":[33.8,35.6],"knL":[41.3,183],"ftL":[41.1,286]},{"rootY":2.7,"hips":[0,0],"chest":[-4.3,-77.3],"neck":[-4.3,-77.3],"head":[-2.7,-144.3],"shR":[-63.1,-100.8],"elR":[-113.3,-31.6],"haR":[-105.5,-62.2],"shL":[62.2,-105.8],"elL":[117,-54.7],"haL":[107,-98.7],"hipR":[-28.8,40.7],"knR":[-28.5,184.4],"ftR":[-53.6,294],"hipL":[32.9,36.5],"knL":[39.9,183],"ftL":[46.2,297.1]},{"rootY":-21.4,"hips":[0,0],"chest":[-5.5,-77.7],"neck":[-5.5,-77.7],"head":[-4.3,-144.1],"shR":[-64,-101.6],"elR":[-119,-38.8],"haR":[-113.4,-71.8],"shL":[61.3,-104.4],"elL":[115.9,-54.5],"haL":[110.2,-101],"hipR":[-30,39.8],"knR":[-29.3,182.1],"ftR":[-59,302.7],"hipL":[31.8,37.6],"knL":[38.2,182.3],"ftL":[52,305.8]},{"rootY":-40.6,"hips":[0,0],"chest":[-5.9,-77.5],"neck":[-5.9,-77.5],"head":[-4.8,-143.5],"shR":[-64.4,-101.3],"elR":[-121.8,-38.1],"haR":[-120.4,-69],"shL":[61,-103.6],"elL":[114.4,-47.3],"haL":[114.7,-92.3],"hipR":[-30.2,39.6],"knR":[-26.9,182.5],"ftR":[-57.5,302.2],"hipL":[31.6,37.7],"knL":[37.8,183.4],"ftL":[51.1,306.1]},{"rootY":-56.4,"hips":[0,0],"chest":[-5,-77.7],"neck":[-5,-77.7],"head":[-3.9,-143.7],"shR":[-63.5,-101.7],"elR":[-121.6,-32.5],"haR":[-125.1,-57.6],"shL":[61.9,-103.7],"elL":[112,-37.2],"haL":[120.5,-76.3],"hipR":[-29.4,39.8],"knR":[-23.9,183.6],"ftR":[-51.3,299.2],"hipL":[32.4,36.5],"knL":[38.7,183.5],"ftL":[48.4,305.4]},{"rootY":-69.3,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4,-144.2],"shR":[-63.2,-102.1],"elR":[-120.9,-26],"haR":[-129.8,-42.3],"shL":[62.2,-104],"elL":[108.2,-27.4],"haL":[124.9,-55.2],"hipR":[-29,39.5],"knR":[-24,183.2],"ftR":[-47.8,301.2],"hipL":[32.7,35.6],"knL":[40,183],"ftL":[47.3,308.9]},{"rootY":-78.8,"hips":[0,0],"chest":[-4.7,-77.8],"neck":[-4.7,-77.8],"head":[-3.9,-144.7],"shR":[-63.1,-102.3],"elR":[-119.7,-19.3],"haR":[-133.2,-24.7],"shL":[62.2,-104.2],"elL":[103.5,-20.2],"haL":[127.2,-33.1],"hipR":[-28.4,39.6],"knR":[-24.4,182.8],"ftR":[-46.1,309],"hipL":[33.2,34.8],"knL":[41.1,182.1],"ftL":[47.2,315.3]},{"rootY":-84.2,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4.1,-145.1],"shR":[-63.2,-102.3],"elR":[-117.9,-13],"haR":[-135.1,-6.7],"shL":[62.2,-104.5],"elL":[99.7,-14.7],"haL":[126.8,-10.6],"hipR":[-29.3,39.2],"knR":[-24.7,181.2],"ftR":[-43.8,318],"hipL":[32.4,35.6],"knL":[40.7,182.2],"ftL":[47.6,323.4]},{"rootY":-85.7,"hips":[0,0],"chest":[-4.8,-77.7],"neck":[-4.8,-77.7],"head":[-4.3,-145.4],"shR":[-63.3,-102.2],"elR":[-116.2,-7.1],"haR":[-135.6,10.8],"shL":[62,-104.8],"elL":[97.1,-10.9],"haL":[124.4,10],"hipR":[-29.4,39.1],"knR":[-24.7,180.1],"ftR":[-42,325.8],"hipL":[32.4,35.7],"knL":[39.8,181],"ftL":[48.3,328.8]},{"rootY":-83.7,"hips":[0,0],"chest":[-4.9,-77.6],"neck":[-4.9,-77.6],"head":[-4.5,-145.6],"shR":[-63.4,-102.2],"elR":[-114.3,-2],"haR":[-134.8,26.9],"shL":[62,-104.9],"elL":[94.9,-8],"haL":[120.5,28.4],"hipR":[-29.6,38.8],"knR":[-25.3,179],"ftR":[-41.5,331.5],"hipL":[32.2,35.8],"knL":[39.1,179.5],"ftL":[50.1,332.4]},{"rootY":-77.8,"hips":[0,0],"chest":[-4.6,-77.5],"neck":[-4.6,-77.5],"head":[-4.2,-145.7],"shR":[-63.1,-102.2],"elR":[-111.7,2],"haR":[-132.9,40.8],"shL":[62.3,-104.9],"elL":[92.6,-5.7],"haL":[116.8,42.9],"hipR":[-29.8,38.5],"knR":[-26.2,177.8],"ftR":[-41,334.5],"hipL":[32,36],"knL":[38.8,177.7],"ftL":[52.5,333.6]},{"rootY":-67.9,"hips":[0,0],"chest":[-4.2,-77.4],"neck":[-4.2,-77.4],"head":[-3.9,-145.8],"shR":[-62.6,-102.4],"elR":[-108.7,5],"haR":[-129.8,51.9],"shL":[62.8,-104.6],"elL":[89.9,-3.6],"haL":[111.9,53.8],"hipR":[-29.5,38.6],"knR":[-27.1,176.8],"ftR":[-40.5,335.3],"hipL":[32.2,35.7],"knL":[39,175.3],"ftL":[53.8,332.2]},{"rootY":-53.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-3.3,-145.9],"shR":[-62.2,-102.7],"elR":[-105.4,7.1],"haR":[-125.9,60.5],"shL":[63.2,-104.3],"elL":[87.3,-2.3],"haL":[106.9,60.7],"hipR":[-29,39],"knR":[-28,175.6],"ftR":[-41.1,334.1],"hipL":[32.7,35],"knL":[39.9,173],"ftL":[55.1,329.3]},{"rootY":-35,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-3.8,-146.1],"shR":[-62.5,-102.9],"elR":[-102.1,8.7],"haR":[-121.5,66.8],"shL":[62.9,-104.2],"elL":[83.7,-2.1],"haL":[101.4,64],"hipR":[-28.9,39],"knR":[-29,173.6],"ftR":[-42.8,331.5],"hipL":[32.8,34.5],"knL":[40.6,170.8],"ftL":[55.4,326.5]},{"rootY":-11.7,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.7,-146.3],"shR":[-63.2,-102.9],"elR":[-99.1,10],"haR":[-117.3,71.3],"shL":[62.2,-104.3],"elL":[79.7,-2.8],"haL":[96.3,64.9],"hipR":[-29.6,38.2],"knR":[-29.3,169.3],"ftR":[-43.6,327.6],"hipL":[32.1,34.2],"knL":[39.8,167.6],"ftL":[53.8,324.2]},{"rootY":17.4,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.5,-146.3],"shR":[-63.1,-102.9],"elR":[-94.9,11.1],"haR":[-112.4,74.2],"shL":[62.3,-104.1],"elL":[76.6,-3.4],"haL":[92.3,65.2],"hipR":[-29.7,37.5],"knR":[-27.8,159.9],"ftR":[-40.4,317.2],"hipL":[31.9,33.1],"knL":[40.3,159.5],"ftL":[49.4,315.4]},{"rootY":42.4,"hips":[0,0],"chest":[-3.7,-77.6],"neck":[-3.7,-77.6],"head":[-1.6,-146.3],"shR":[-61.6,-103.1],"elR":[-87.3,12.3],"haR":[-103.8,77.1],"shL":[63.8,-103.9],"elL":[74.2,-3.6],"haL":[88.9,65.7],"hipR":[-27.1,37.6],"knR":[-23.8,144.3],"ftR":[-37.1,294],"hipL":[34.1,28.9],"knL":[41.2,143.7],"ftL":[48,293.3]},{"rootY":59.8,"hips":[0,0],"chest":[-3.3,-77.4],"neck":[-3.3,-77.4],"head":[-0.5,-146.2],"shR":[-61.5,-102.7],"elR":[-80.1,14.1],"haR":[-95.7,80.8],"shL":[63.9,-104.3],"elL":[71.9,-2.1],"haL":[85.8,68.1],"hipR":[-26.3,36.6],"knR":[-24.3,133.2],"ftR":[-32.6,275],"hipL":[34.6,26.3],"knL":[43.3,132.1],"ftL":[48.6,274.1]},{"rootY":69.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-1.2,-146.1],"shR":[-62,-102.8],"elR":[-73.5,15],"haR":[-87.6,83.2],"shL":[63.4,-103.9],"elL":[68.6,-0.6],"haL":[82.6,69.5],"hipR":[-27.6,36.2],"knR":[-27.3,131.8],"ftR":[-30.8,268.3],"hipL":[33.6,27.4],"knL":[46.3,132.2],"ftL":[46.6,269.6]},{"rootY":77.4,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-1.1,-146.1],"shR":[-62.2,-103.1],"elR":[-69.2,15.1],"haR":[-80,84],"shL":[63.2,-103.6],"elL":[67.8,-0.3],"haL":[81.3,69.8],"hipR":[-27.8,36.4],"knR":[-29.1,128.9],"ftR":[-30.5,260.8],"hipL":[33.3,27.9],"knL":[47.6,129.6],"ftL":[47.4,262.3]},{"rootY":80.1,"hips":[0,0],"chest":[-3.4,-77.4],"neck":[-3.4,-77.4],"head":[0,-146.2],"shR":[-61.3,-103.2],"elR":[-66.1,14.7],"haR":[-74.1,83.6],"shL":[64,-103.7],"elL":[68.9,-0.5],"haL":[82.4,69.4],"hipR":[-27.7,36.3],"knR":[-29.3,129],"ftR":[-28.5,257.7],"hipL":[33.4,27.7],"knL":[47,129.4],"ftL":[48.4,259.4]},{"rootY":79.4,"hips":[0,0],"chest":[-3,-77.4],"neck":[-3,-77.4],"head":[1.1,-146.1],"shR":[-60.7,-103.7],"elR":[-64.5,14.1],"haR":[-70.5,83.1],"shL":[64.6,-103.4],"elL":[70.7,-0.1],"haL":[84,69.3],"hipR":[-28.1,36.4],"knR":[-29,131],"ftR":[-27.2,258.4],"hipL":[33.1,28.3],"knL":[45.1,131.7],"ftL":[49.1,260]},{"rootY":76.9,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2,-146.1],"shR":[-60.1,-104],"elR":[-62.8,13.7],"haR":[-68.2,82.9],"shL":[65.2,-103.1],"elL":[72.1,0.5],"haL":[85.8,69.5],"hipR":[-28.2,36.7],"knR":[-28.2,133.4],"ftR":[-26.1,261.1],"hipL":[33,28.6],"knL":[42.3,134.5],"ftL":[49.6,262.3]},{"rootY":72.4,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[2.2,-146.2],"shR":[-59.8,-104.2],"elR":[-62.2,13.6],"haR":[-68.1,83],"shL":[65.5,-102.9],"elL":[73.5,0.9],"haL":[87.5,69.5],"hipR":[-28.6,37],"knR":[-27.8,136.9],"ftR":[-25.3,265.5],"hipL":[32.5,29.4],"knL":[39.6,138.7],"ftL":[50.3,266.6]},{"rootY":66.8,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2.4,-146.2],"shR":[-59.8,-104.4],"elR":[-63.6,13.5],"haR":[-69.8,82.8],"shL":[65.4,-102.7],"elL":[74.7,1.3],"haL":[88.8,69.5],"hipR":[-29,37.4],"knR":[-27.8,141.3],"ftR":[-24.8,271.3],"hipL":[32.1,30.2],"knL":[37.3,143.4],"ftL":[50.8,272]},{"rootY":60.4,"hips":[0,0],"chest":[-2.8,-77.5],"neck":[-2.8,-77.5],"head":[2.3,-146.2],"shR":[-59.9,-104.7],"elR":[-65.2,13.3],"haR":[-72,82.4],"shL":[65.1,-102.5],"elL":[75.7,1.5],"haL":[90,69.5],"hipR":[-29.1,37.7],"knR":[-28.1,146],"ftR":[-24.6,277.7],"hipL":[31.9,30.6],"knL":[35.7,148.3],"ftL":[51.4,278.2]},{"rootY":53.8,"hips":[0,0],"chest":[-3,-77.5],"neck":[-3,-77.5],"head":[2.3,-146.2],"shR":[-60,-104.7],"elR":[-66.8,13.3],"haR":[-74.5,82],"shL":[64.9,-102.5],"elL":[75.9,1.5],"haL":[90.1,69.2],"hipR":[-29.5,37.8],"knR":[-28.4,150.6],"ftR":[-24.7,284.4],"hipL":[31.5,31.2],"knL":[34.4,153.2],"ftL":[51.8,284.7]},{"rootY":47.3,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.2,13.3],"haR":[-76.9,81.5],"shL":[64.7,-102.5],"elL":[76,1.5],"haL":[89.9,69.1],"hipR":[-29.5,38.1],"knR":[-28.4,155],"ftR":[-24.5,290.8],"hipL":[31.5,31.6],"knL":[33.6,157.6],"ftL":[52,290.9]},{"rootY":40.7,"hips":[0,0],"chest":[-3.3,-77.6],"neck":[-3.3,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.9,13.3],"haR":[-79.3,80.9],"shL":[64.5,-102.5],"elL":[75.4,1.6],"haL":[88.9,69.1],"hipR":[-29.8,38.2],"knR":[-27.8,159.4],"ftR":[-24.5,297.2],"hipL":[31.1,32.2],"knL":[32.5,162],"ftL":[52.1,297.2]},{"rootY":34.8,"hips":[0,0],"chest":[-3.4,-77.6],"neck":[-3.4,-77.6],"head":[2.7,-146.2],"shR":[-59.8,-104.6],"elR":[-70.1,13.3],"haR":[-81.8,80.3],"shL":[64.3,-102.6],"elL":[74.5,1.6],"haL":[87.4,69.1],"hipR":[-30.2,38.3],"knR":[-26.7,163.1],"ftR":[-24.5,303.1],"hipL":[30.7,32.8],"knL":[31.8,166],"ftL":[52.4,302.9]},{"rootY":29.4,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[2.7,-146.2],"shR":[-59.7,-104.5],"elR":[-71,13.4],"haR":[-84,79.9],"shL":[64.1,-102.8],"elL":[73.5,1.5],"haL":[85.6,69.2],"hipR":[-30.3,38.5],"knR":[-25.8,166.5],"ftR":[-24.6,308.2],"hipL":[30.6,33.4],"knL":[31.3,169.5],"ftL":[52.4,308.1]},{"rootY":24.5,"hips":[0,0],"chest":[-3.5,-77.7],"neck":[-3.5,-77.7],"head":[2.9,-146.2],"shR":[-59.6,-104.4],"elR":[-72,13.4],"haR":[-85.9,79.5],"shL":[64,-102.9],"elL":[72.6,1.4],"haL":[83.9,69.3],"hipR":[-30.4,38.7],"knR":[-25.2,169.6],"ftR":[-24.7,312.8],"hipL":[30.4,33.7],"knL":[31.5,172.6],"ftL":[52.8,312.9]},{"rootY":20,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[3.1,-146.3],"shR":[-59.4,-104.3],"elR":[-72.8,13.4],"haR":[-87.7,79.1],"shL":[63.9,-103],"elL":[71.7,1.4],"haL":[82.3,69.5],"hipR":[-30.4,38.8],"knR":[-24.9,172.4],"ftR":[-24.9,317.2],"hipL":[30.3,34],"knL":[32.1,175.2],"ftL":[53.1,317.1]},{"rootY":16.2,"hips":[0,0],"chest":[-3.6,-77.7],"neck":[-3.6,-77.7],"head":[3.2,-146.2],"shR":[-59.3,-104.3],"elR":[-73.6,13.3],"haR":[-89.2,78.7],"shL":[63.8,-102.9],"elL":[70.7,1.6],"haL":[80.8,69.9],"hipR":[-30.5,38.9],"knR":[-24.9,174.6],"ftR":[-24.9,320.9],"hipL":[30.1,34.4],"knL":[32.9,177.4],"ftL":[53.1,320.8]},{"rootY":13.1,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.5,-146.2],"shR":[-59.3,-104.2],"elR":[-74,13.3],"haR":[-90.2,78.6],"shL":[63.7,-103],"elL":[70,1.5],"haL":[79.7,69.8],"hipR":[-30.3,39.2],"knR":[-24.9,176.6],"ftR":[-25.2,323.8],"hipL":[30.3,34.5],"knL":[33.7,179],"ftL":[53.1,324.1]},{"rootY":10.5,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.6,-146.2],"shR":[-59.2,-104.2],"elR":[-74.5,13.3],"haR":[-91.2,78.4],"shL":[63.6,-103],"elL":[69.5,1.6],"haL":[78.9,70],"hipR":[-30.2,39.4],"knR":[-24.6,178.2],"ftR":[-25.5,326.2],"hipL":[30.4,34.7],"knL":[34.1,180.2],"ftL":[53,326.5]},{"rootY":8.6,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.7,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-91.7,78.4],"shL":[63.6,-103],"elL":[69.2,1.5],"haL":[78.3,70],"hipR":[-30.4,39.3],"knR":[-24.2,179.2],"ftR":[-25.6,328],"hipL":[30.3,35.1],"knL":[34.1,181.3],"ftL":[52.8,328.3]},{"rootY":7,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.9,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-92.1,78.5],"shL":[63.7,-103.1],"elL":[69.1,1.5],"haL":[78,70],"hipR":[-30.6,39.2],"knR":[-23.8,179.9],"ftR":[-25.5,329.2],"hipL":[30.1,35.5],"knL":[34.2,182.2],"ftL":[52.6,330]},{"rootY":5.7,"hips":[0,0],"chest":[-3.3,-77.8],"neck":[-3.3,-77.8],"head":[4.2,-146.2],"shR":[-58.9,-104.2],"elR":[-74.2,13.3],"haR":[-91.7,78.6],"shL":[64,-103],"elL":[69.2,1.5],"haL":[78.1,70.1],"hipR":[-30.7,39.2],"knR":[-23.3,180.5],"ftR":[-25.3,330.3],"hipL":[30.2,35.7],"knL":[34.3,182.8],"ftL":[52.5,331.2]},{"rootY":4.9,"hips":[0,0],"chest":[-3.1,-77.8],"neck":[-3.1,-77.8],"head":[4.5,-146.2],"shR":[-58.7,-104.3],"elR":[-73.8,13.2],"haR":[-91.2,78.7],"shL":[64.3,-102.9],"elL":[69.6,1.7],"haL":[78.7,70.3],"hipR":[-30.6,39.3],"knR":[-23,181],"ftR":[-25.1,331],"hipL":[30.3,35.7],"knL":[34.5,183],"ftL":[52.3,332]},{"rootY":4.2,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[4.9,-146.2],"shR":[-58.6,-104.3],"elR":[-73.5,13.2],"haR":[-90.6,79.1],"shL":[64.5,-102.9],"elL":[69.8,1.6],"haL":[79.1,70.1],"hipR":[-30.5,39.3],"knR":[-23,181.4],"ftR":[-25.1,331.4],"hipL":[30.4,35.8],"knL":[34.7,183.3],"ftL":[52.1,332.6]},{"rootY":3.9,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[5,-146.2],"shR":[-58.5,-104.5],"elR":[-72.9,13],"haR":[-89.7,79.1],"shL":[64.6,-102.7],"elL":[70.4,1.8],"haL":[79.9,70.3],"hipR":[-30.7,39.2],"knR":[-23.2,181.5],"ftR":[-25.4,331.6],"hipL":[30.2,36],"knL":[34.6,183.6],"ftL":[52,333]},{"rootY":3.8,"hips":[0,0],"chest":[-2.8,-77.8],"neck":[-2.8,-77.8],"head":[5.4,-146.2],"shR":[-58.3,-104.7],"elR":[-72.4,12.8],"haR":[-88.6,79.1],"shL":[64.9,-102.5],"elL":[70.9,2],"haL":[80.8,70.5],"hipR":[-30.8,39.1],"knR":[-23.1,181.6],"ftR":[-25.4,331.6],"hipL":[30.2,36.2],"knL":[34.7,183.7],"ftL":[52.2,333.4]},{"rootY":3.8,"hips":[0,0],"chest":[-2.5,-77.9],"neck":[-2.5,-77.9],"head":[5.9,-146.1],"shR":[-58,-104.7],"elR":[-71.6,12.8],"haR":[-87.7,79.1],"shL":[65.2,-102.4],"elL":[71.3,2],"haL":[81.6,70.5],"hipR":[-30.6,39.2],"knR":[-22.8,181.8],"ftR":[-25.4,331.6],"hipL":[30.4,36.1],"knL":[35,183.6],"ftL":[52.4,333.4]},{"rootY":3.7,"hips":[0,0],"chest":[-2.3,-77.9],"neck":[-2.3,-77.9],"head":[6.3,-146.1],"shR":[-57.7,-104.9],"elR":[-70.7,12.6],"haR":[-86.1,79.3],"shL":[65.5,-102.2],"elL":[71.9,2.1],"haL":[82.4,70.8],"hipR":[-30.6,39.2],"knR":[-22.6,181.9],"ftR":[-25.4,331.7],"hipL":[30.4,36],"knL":[35.3,183.6],"ftL":[52.3,333.5]},{"rootY":3.4,"hips":[0,0],"chest":[-2.2,-77.9],"neck":[-2.2,-77.9],"head":[6.5,-146.1],"shR":[-57.6,-105],"elR":[-70.2,12.5],"haR":[-85.6,79.2],"shL":[65.5,-102.1],"elL":[72,2.2],"haL":[82.8,70.9],"hipR":[-30.8,39.1],"knR":[-22.8,181.9],"ftR":[-25.7,331.9],"hipL":[30.3,36.2],"knL":[35,183.8],"ftL":[51.9,333.6]}]},"kick":{"name":"kick","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-87.6],"neck":[0.6,-87.6],"head":[0.4,-152.5],"shR":[-58.7,-112.6],"elR":[-171.2,-96.8],"haR":[-238.3,-87.4],"shL":[65.5,-107.1],"elL":[168.9,-92.6],"haL":[234.9,-83.3],"hipR":[-23.1,36.4],"knR":[-20.5,186.4],"ftR":[-17.8,340.7],"hipL":[27.2,36.4],"knL":[24.7,179.8],"ftL":[21.8,343.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.3,-152.4],"shR":[-32.2,-108.8],"elR":[-33.7,4.3],"haR":[-63.2,64.9],"shL":[62.6,-110.4],"elL":[70.1,-6.5],"haL":[57,52.4],"hipR":[-31,34.6],"knR":[-64.3,179.9],"ftR":[-51.8,320.6],"hipL":[8.7,38.3],"knL":[-5,180.7],"ftL":[38.3,325.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.5,-152.4],"shR":[-32.3,-108.7],"elR":[-34.3,4.5],"haR":[-64.3,64.9],"shL":[62.7,-110.4],"elL":[70,-6.6],"haL":[56.9,52.5],"hipR":[-30.9,34.6],"knR":[-64.5,180],"ftR":[-52.1,320.6],"hipL":[8.7,38.3],"knL":[-5.2,180.6],"ftL":[38,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14,-152.3],"shR":[-32.2,-108.8],"elR":[-34.8,4.4],"haR":[-65,64.8],"shL":[62.9,-110.4],"elL":[69.8,-6.5],"haL":[56.9,52.7],"hipR":[-30.9,34.7],"knR":[-64.5,180],"ftR":[-52.2,320.5],"hipL":[8.9,38.2],"knL":[-5,180.6],"ftL":[37.9,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14.2,-152.3],"shR":[-32.6,-108.6],"elR":[-35.2,4.6],"haR":[-65.6,64.7],"shL":[63.1,-110.5],"elL":[69.8,-6.6],"haL":[57,52.7],"hipR":[-30.8,34.8],"knR":[-64.6,180],"ftR":[-52.4,320.5],"hipL":[9,38.2],"knL":[-5,180.5],"ftL":[37.8,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.7,-108.6],"elR":[-35.2,4.5],"haR":[-65.6,64.6],"shL":[63.3,-110.5],"elL":[69.9,-6.5],"haL":[57.3,53],"hipR":[-30.7,34.8],"knR":[-64.4,180.1],"ftR":[-52.4,320.4],"hipL":[9.3,38.1],"knL":[-4.8,180.5],"ftL":[37.7,325]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.8,-108.7],"elR":[-35.1,4.5],"haR":[-65.5,64.4],"shL":[63.5,-110.4],"elL":[69.6,-6.4],"haL":[57.3,53.2],"hipR":[-30.8,34.8],"knR":[-64.1,180.2],"ftR":[-52.4,320.5],"hipL":[9.5,38.2],"knL":[-4.5,180.5],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[14.9,-152.2],"shR":[-33.6,-109.3],"elR":[-35.7,3.8],"haR":[-65.9,63.8],"shL":[64.3,-109.9],"elL":[70.1,-5.9],"haL":[58,53.8],"hipR":[-30.7,34.9],"knR":[-63.9,180.3],"ftR":[-52.4,320.4],"hipL":[9.7,38.1],"knL":[-4.3,180.4],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[15.1,-152.2],"shR":[-34.1,-109.7],"elR":[-36.1,3.5],"haR":[-65.9,63.6],"shL":[64.5,-109.5],"elL":[70.1,-5.5],"haL":[58.5,54.3],"hipR":[-30.9,34.7],"knR":[-63.8,180.2],"ftR":[-52.5,320.3],"hipL":[9.7,38.1],"knL":[-4.2,180.4],"ftL":[37.3,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.4,-152.2],"shR":[-34.3,-109.6],"elR":[-35.9,3.7],"haR":[-65.3,63.8],"shL":[64.9,-109.6],"elL":[70.6,-5.6],"haL":[59.1,54.4],"hipR":[-31,34.7],"knR":[-63.8,180.2],"ftR":[-52.4,320.4],"hipL":[9.7,38.2],"knL":[-4.2,180.4],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.8,-152.1],"shR":[-34.6,-109.6],"elR":[-35.9,3.7],"haR":[-65,64],"shL":[65.2,-109.6],"elL":[70.8,-5.5],"haL":[59.4,54.5],"hipR":[-31.1,34.5],"knR":[-63.9,180.1],"ftR":[-52.4,320.3],"hipL":[9.6,38.2],"knL":[-4.3,180.5],"ftL":[37.4,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16,-152.1],"shR":[-34.6,-109.5],"elR":[-35.5,3.8],"haR":[-64.3,64.1],"shL":[65.4,-109.6],"elL":[71.1,-5.5],"haL":[60.4,55.2],"hipR":[-31.2,34.4],"knR":[-63.8,180.1],"ftR":[-52.3,320.3],"hipL":[9.5,38.3],"knL":[-4.3,180.6],"ftL":[37.3,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16.1,-152.1],"shR":[-35.1,-109.3],"elR":[-35.7,4.1],"haR":[-64.1,64.5],"shL":[65.8,-109.7],"elL":[71.4,-5.6],"haL":[60.6,54.8],"hipR":[-31.3,34.4],"knR":[-63.7,180],"ftR":[-52.3,320.3],"hipL":[9.6,38.4],"knL":[-4.3,180.6],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[16.3,-152.1],"shR":[-34.8,-109.6],"elR":[-35.3,3.8],"haR":[-63.5,64.2],"shL":[65.8,-109.5],"elL":[71.4,-5.3],"haL":[60.8,55.2],"hipR":[-31.3,34.4],"knR":[-63.6,180.1],"ftR":[-52.2,320.2],"hipL":[9.7,38.3],"knL":[-4,180.6],"ftL":[37.4,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.4],"neck":[7.8,-87.4],"head":[17,-152],"shR":[-34.8,-109.7],"elR":[-35.1,3.8],"haR":[-63.2,64],"shL":[66.2,-109.4],"elL":[71.7,-5.2],"haL":[61.1,55.3],"hipR":[-31.1,34.6],"knR":[-63.5,180.2],"ftR":[-52.1,320.3],"hipL":[10,38.2],"knL":[-3.7,180.5],"ftL":[37.5,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.2,-152],"shR":[-34.9,-109.6],"elR":[-35,3.9],"haR":[-62.9,64],"shL":[66.4,-109.4],"elL":[71.7,-5.2],"haL":[61.3,55.5],"hipR":[-31,34.7],"knR":[-63.3,180.3],"ftR":[-51.9,320.3],"hipL":[10.3,38.1],"knL":[-3.2,180.3],"ftL":[37.7,325]},{"rootY":0.4,"hips":[0,0],"chest":[8,-87.4],"neck":[8,-87.4],"head":[17.4,-152],"shR":[-35,-109.7],"elR":[-35.2,3.8],"haR":[-63,63.9],"shL":[66.6,-109.2],"elL":[71.5,-5],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.4,180.3],"ftR":[-51.9,320.2],"hipL":[10.4,38],"knL":[-2.9,180.3],"ftL":[37.8,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.4,-152],"shR":[-35.2,-109.9],"elR":[-35.5,3.6],"haR":[-63.3,63.7],"shL":[66.8,-109.1],"elL":[71.6,-4.8],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.3,180.3],"ftR":[-51.8,320.2],"hipL":[10.4,38.1],"knL":[-2.9,180.4],"ftL":[37.9,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.3,-152],"shR":[-35.8,-109.4],"elR":[-36.3,4.1],"haR":[-64,64.2],"shL":[67,-109.2],"elL":[71.6,-5],"haL":[62.7,56.6],"hipR":[-30.9,34.7],"knR":[-63.1,180.4],"ftR":[-51.8,320.3],"hipL":[10.8,38.1],"knL":[-2.6,180.4],"ftL":[38,325.1]},{"rootY":0.5,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.5,-151.9],"shR":[-36.3,-110.1],"elR":[-37,3.4],"haR":[-64.7,63.4],"shL":[67.3,-108.9],"elL":[71.6,-4.6],"haL":[62.7,57],"hipR":[-31,34.6],"knR":[-62.9,180.4],"ftR":[-51.7,320.1],"hipL":[11,38.1],"knL":[-1.9,180.4],"ftL":[38.1,325.1]},{"rootY":0.4,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.6,-151.9],"shR":[-36.4,-110.1],"elR":[-37.6,3.4],"haR":[-65.2,63.6],"shL":[67.4,-108.8],"elL":[71.4,-4.6],"haL":[62.4,56.7],"hipR":[-30.9,34.7],"knR":[-62.5,180.6],"ftR":[-51.5,320.1],"hipL":[11.5,38.1],"knL":[-1.4,180.3],"ftL":[38.2,325.2]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.8,-151.9],"shR":[-36.7,-110],"elR":[-38,3.4],"haR":[-65.6,63.6],"shL":[67.6,-108.9],"elL":[71.6,-4.6],"haL":[62.5,56.4],"hipR":[-30.8,34.8],"knR":[-62,180.8],"ftR":[-51.3,320.2],"hipL":[12,38.1],"knL":[-0.4,180.3],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-37.4,-110.2],"elR":[-39,3.2],"haR":[-66.4,63.6],"shL":[67.9,-108.7],"elL":[72,-4.4],"haL":[62.9,56.4],"hipR":[-30.9,34.7],"knR":[-61.8,180.8],"ftR":[-51.1,320],"hipL":[12.1,38.1],"knL":[0,180.4],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[17.4,-151.9],"shR":[-38,-110.3],"elR":[-39.8,3.1],"haR":[-66.8,63.6],"shL":[68.2,-108.7],"elL":[72.5,-4.4],"haL":[63.2,56.2],"hipR":[-31,34.5],"knR":[-61.2,180.7],"ftR":[-50.8,320.1],"hipL":[12.1,38.3],"knL":[0.3,180.5],"ftL":[38.6,325.6]},{"rootY":0.2,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-39,-110.8],"elR":[-41,2.6],"haR":[-67.9,63.3],"shL":[69,-108.4],"elL":[73.4,-4.1],"haL":[64,56.2],"hipR":[-30.9,34.7],"knR":[-60.7,180.9],"ftR":[-50.5,320.2],"hipL":[12.5,38.3],"knL":[0.7,180.5],"ftL":[38.8,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[17.7,-152],"shR":[-39.6,-110.7],"elR":[-41.6,2.6],"haR":[-68.3,63.4],"shL":[69.1,-108.4],"elL":[74,-4.2],"haL":[64.6,55.9],"hipR":[-30.9,34.6],"knR":[-60.1,181],"ftR":[-50.1,320.2],"hipL":[12.8,38.4],"knL":[1.4,180.5],"ftL":[39.2,325.7]},{"rootY":0,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[17.6,-152],"shR":[-40.5,-110.7],"elR":[-42.7,2.7],"haR":[-69.2,63.5],"shL":[69.3,-108.5],"elL":[74.7,-4.3],"haL":[65.4,55.6],"hipR":[-31,34.6],"knR":[-59.5,181.1],"ftR":[-49.7,320.2],"hipL":[13,38.5],"knL":[1.9,180.6],"ftL":[39.4,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[17.4,-152.1],"shR":[-41.3,-110.7],"elR":[-43.8,2.5],"haR":[-70.4,63.4],"shL":[69.5,-108.5],"elL":[75.4,-4.3],"haL":[66.7,55.3],"hipR":[-30.8,34.7],"knR":[-59.1,181.3],"ftR":[-49.3,320.3],"hipL":[13.5,38.3],"knL":[2.4,180.4],"ftL":[39.8,325.8]},{"rootY":0,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[17.1,-152.2],"shR":[-42,-110.6],"elR":[-44.3,2.6],"haR":[-71.3,63.2],"shL":[69.5,-108.7],"elL":[76.5,-4.6],"haL":[68.5,54.8],"hipR":[-30.5,34.9],"knR":[-58.7,181.5],"ftR":[-49,320.4],"hipL":[14,38.2],"knL":[3.3,180.3],"ftL":[40,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[16.8,-152.2],"shR":[-42.9,-110.4],"elR":[-45.2,2.7],"haR":[-73,62.9],"shL":[69.5,-108.9],"elL":[78.2,-4.9],"haL":[71,54.1],"hipR":[-30.5,34.9],"knR":[-58.2,181.6],"ftR":[-48.5,320.3],"hipL":[14.2,38.2],"knL":[3.8,180.3],"ftL":[40.3,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.5,-87.6],"neck":[6.5,-87.6],"head":[16.3,-152.3],"shR":[-43.7,-110.1],"elR":[-46.2,2.8],"haR":[-74.9,62.4],"shL":[69.3,-109.2],"elL":[79.9,-5.5],"haL":[74.1,53.2],"hipR":[-30.7,34.7],"knR":[-58.1,181.5],"ftR":[-48.2,320.2],"hipL":[14,38.3],"knL":[4,180.4],"ftL":[40.5,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[6.1,-87.6],"neck":[6.1,-87.6],"head":[15.6,-152.3],"shR":[-44.7,-110.3],"elR":[-47.3,2.5],"haR":[-77.2,61.5],"shL":[69.2,-109.2],"elL":[81.7,-5.7],"haL":[77.4,52.3],"hipR":[-30.7,34.7],"knR":[-57.8,181.5],"ftR":[-47.9,320.1],"hipL":[14.1,38.3],"knL":[4.1,180.4],"ftL":[40.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[15.2,-152.3],"shR":[-45.2,-110.4],"elR":[-48.8,2.4],"haR":[-79.7,60.9],"shL":[69.1,-109.2],"elL":[83.3,-6.1],"haL":[81.2,51.6],"hipR":[-30.7,34.7],"knR":[-57.3,181.5],"ftR":[-47.4,320.2],"hipL":[14.1,38.5],"knL":[4.3,180.4],"ftL":[41.1,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.8,-152.3],"shR":[-45.5,-110],"elR":[-50.4,2.7],"haR":[-82.1,60.8],"shL":[68.8,-109.6],"elL":[84.5,-6.8],"haL":[84.7,50.4],"hipR":[-30.6,34.8],"knR":[-57.3,181.6],"ftR":[-47.2,320.3],"hipL":[14.3,38.4],"knL":[4.7,180.4],"ftL":[41.1,325.8]},{"rootY":0,"hips":[0,0],"chest":[5.6,-87.6],"neck":[5.6,-87.6],"head":[14.3,-152.3],"shR":[-45.9,-109.9],"elR":[-52.1,2.7],"haR":[-84.3,60.7],"shL":[68.7,-109.8],"elL":[85.7,-7.4],"haL":[88.1,49.3],"hipR":[-30.6,34.7],"knR":[-57,181.6],"ftR":[-46.8,320.3],"hipL":[14.3,38.4],"knL":[4.9,180.3],"ftL":[41.2,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14,-152.3],"shR":[-46,-109.5],"elR":[-53.9,3.1],"haR":[-86.5,60.9],"shL":[68.3,-110.2],"elL":[85.8,-8.1],"haL":[90.4,48.3],"hipR":[-30.5,34.9],"knR":[-57.8,181.5],"ftR":[-47.1,320.3],"hipL":[14.2,38.3],"knL":[4.2,180.3],"ftL":[41,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.3,-87.6],"neck":[5.3,-87.6],"head":[13.5,-152.3],"shR":[-46.1,-109.3],"elR":[-54.7,3.3],"haR":[-87.7,61],"shL":[68.1,-110.4],"elL":[86.5,-8.5],"haL":[92.6,47.7],"hipR":[-30.5,34.9],"knR":[-58,181.5],"ftR":[-47,320.4],"hipL":[14,38.2],"knL":[3.6,180.2],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.9,-87.7],"neck":[4.9,-87.7],"head":[12.8,-152.4],"shR":[-46.3,-109.1],"elR":[-55.4,3.6],"haR":[-88.7,61.1],"shL":[67.6,-110.5],"elL":[86.3,-9],"haL":[93.7,47.1],"hipR":[-30.6,34.8],"knR":[-58.3,181.4],"ftR":[-47,320.5],"hipL":[13.7,38.3],"knL":[3.2,180.3],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.6,-87.7],"neck":[4.6,-87.7],"head":[12.2,-152.4],"shR":[-46.5,-108.7],"elR":[-55.2,4],"haR":[-89.2,61.2],"shL":[67.2,-110.8],"elL":[85.7,-9.5],"haL":[93.9,46.7],"hipR":[-30.5,34.9],"knR":[-59,181.4],"ftR":[-47.3,320.6],"hipL":[13.6,38.2],"knL":[2.8,180.3],"ftL":[40.8,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.5,-87.7],"neck":[4.5,-87.7],"head":[11.7,-152.4],"shR":[-46.1,-108.2],"elR":[-54.3,4.6],"haR":[-88.7,61.2],"shL":[66.6,-111.4],"elL":[85,-10.1],"haL":[93.4,46],"hipR":[-30.6,34.9],"knR":[-59.6,181.2],"ftR":[-47.8,320.7],"hipL":[13,38.3],"knL":[1.7,180.4],"ftL":[40.5,325.7]},{"rootY":-0.3,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[11.1,-152.5],"shR":[-45.7,-107.7],"elR":[-53.4,5.1],"haR":[-88.5,61.3],"shL":[66,-111.6],"elL":[84.4,-10.5],"haL":[92.3,45.7],"hipR":[-30.7,34.8],"knR":[-59.8,181.1],"ftR":[-47.8,320.8],"hipL":[12.7,38.4],"knL":[1.4,180.5],"ftL":[40.6,325.8]},{"rootY":-0.3,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.8,-152.6],"shR":[-45,-107.7],"elR":[-51.8,5.2],"haR":[-87.8,60.8],"shL":[65.3,-111.7],"elL":[83.4,-10.6],"haL":[90.4,45.6],"hipR":[-30.3,35.2],"knR":[-60.6,181.2],"ftR":[-48.4,321],"hipL":[12.8,38.2],"knL":[1.1,180.3],"ftL":[40.2,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.6,-152.6],"shR":[-44.1,-107.5],"elR":[-49.6,5.6],"haR":[-86.3,60.7],"shL":[64.7,-111.9],"elL":[82,-10.8],"haL":[87.9,45.2],"hipR":[-30.3,35.3],"knR":[-61.2,181.1],"ftR":[-48.9,321.3],"hipL":[12.5,38.3],"knL":[0.4,180.3],"ftL":[39.9,325.8]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.8],"neck":[3.9,-87.8],"head":[10.5,-152.7],"shR":[-42.9,-107.3],"elR":[-47.5,5.8],"haR":[-84.9,60.6],"shL":[63.9,-112],"elL":[80.4,-11],"haL":[84.8,44.7],"hipR":[-30.3,35.3],"knR":[-62.2,180.8],"ftR":[-49.5,321.4],"hipL":[11.7,38.4],"knL":[-1.1,180.5],"ftL":[39.8,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.4,-152.8],"shR":[-41.3,-107.3],"elR":[-45.1,5.9],"haR":[-83.1,60.5],"shL":[63.2,-112.1],"elL":[79.1,-11.2],"haL":[81.6,44.2],"hipR":[-30.1,35.4],"knR":[-63.2,180.7],"ftR":[-50.1,321.6],"hipL":[11.2,38.4],"knL":[-2.2,180.5],"ftL":[39.6,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.8],"shR":[-39.4,-107.7],"elR":[-42.5,5.5],"haR":[-80.9,60.1],"shL":[62.3,-111.8],"elL":[77,-11],"haL":[77.4,44],"hipR":[-29.9,35.5],"knR":[-64.3,180.5],"ftR":[-51,321.9],"hipL":[10.6,38.3],"knL":[-3.2,180.4],"ftL":[39.4,325.6]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.9],"shR":[-37.3,-107.4],"elR":[-40,5.8],"haR":[-78.6,60.6],"shL":[60.9,-112],"elL":[74.1,-11.2],"haL":[72.2,43.3],"hipR":[-29.8,35.6],"knR":[-65.4,180.2],"ftR":[-51.6,322],"hipL":[9.8,38.4],"knL":[-4.5,180.5],"ftL":[39.4,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.1,-152.9],"shR":[-34.9,-107],"elR":[-37.3,6.3],"haR":[-75.9,61.3],"shL":[59.2,-112.3],"elL":[70.5,-11.5],"haL":[66.3,42.5],"hipR":[-29.7,35.6],"knR":[-66.6,179.9],"ftR":[-52.5,321.9],"hipL":[8.9,38.4],"knL":[-5.9,180.5],"ftL":[39.2,325.7]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.7],"neck":[3.9,-87.7],"head":[9.9,-152.9],"shR":[-32.4,-106.6],"elR":[-34.5,6.7],"haR":[-73,62.2],"shL":[57.2,-112.6],"elL":[67.3,-11.6],"haL":[60.3,42.1],"hipR":[-29.4,35.7],"knR":[-67.7,179.7],"ftR":[-53.2,322],"hipL":[8.4,38.3],"knL":[-6.7,180.5],"ftL":[39.1,325.7]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-31,-107.2],"elR":[-32.8,6],"haR":[-70.8,62],"shL":[55.9,-112.2],"elL":[64.2,-11.2],"haL":[54.3,41.7],"hipR":[-29.2,35.8],"knR":[-68.6,179.4],"ftR":[-53.7,322],"hipL":[7.9,38.3],"knL":[-7.6,180.5],"ftL":[39,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-28.5,-107.2],"elR":[-29.8,6.1],"haR":[-67.1,62.7],"shL":[54.2,-112.2],"elL":[61,-11.2],"haL":[48,41.3],"hipR":[-29.2,35.8],"knR":[-68.4,179.4],"ftR":[-53.9,322],"hipL":[7.4,38.3],"knL":[-8.3,180.5],"ftL":[39.1,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.4,-152.8],"shR":[-26.1,-107],"elR":[-26.5,6.2],"haR":[-63,63.2],"shL":[52.8,-112.2],"elL":[58.3,-11.2],"haL":[42.3,40.8],"hipR":[-29.1,35.8],"knR":[-68.4,179.4],"ftR":[-53.8,322],"hipL":[7,38.2],"knL":[-8.5,180.5],"ftL":[39.1,325.3]},{"rootY":0,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.2,-152.9],"shR":[-24.2,-106.8],"elR":[-23.3,6.3],"haR":[-58.8,63.8],"shL":[51.3,-112.4],"elL":[55.2,-11.4],"haL":[36.3,39.5],"hipR":[-29.1,35.8],"knR":[-68.8,179.2],"ftR":[-54.1,321.7],"hipL":[6.7,38],"knL":[-9,180.3],"ftL":[39,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[10.3,-152.8],"shR":[-22.3,-106.6],"elR":[-19.6,6.3],"haR":[-54.2,64.2],"shL":[49.8,-112.7],"elL":[52.2,-11.6],"haL":[30.6,38.4],"hipR":[-29.2,35.7],"knR":[-68.9,179.1],"ftR":[-54.2,321.5],"hipL":[6.3,38],"knL":[-9.5,180.3],"ftL":[38.9,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[4,-87.6],"neck":[4,-87.6],"head":[9.8,-152.9],"shR":[-21.4,-106.5],"elR":[-17.3,6.2],"haR":[-51.3,64.2],"shL":[48.5,-112.9],"elL":[49.7,-11.8],"haL":[25.7,37.3],"hipR":[-29.9,35],"knR":[-68.9,178.6],"ftR":[-54.3,321],"hipL":[5.4,38.4],"knL":[-10.5,180.7],"ftL":[38.8,324.9]},{"rootY":0.5,"hips":[0,0],"chest":[4.8,-87.6],"neck":[4.8,-87.6],"head":[10,-152.8],"shR":[-19.1,-106.2],"elR":[-14.5,6.5],"haR":[-47.2,64.7],"shL":[48.2,-113],"elL":[48.6,-11.6],"haL":[22.9,36.9],"hipR":[-29.2,35.7],"knR":[-69.2,179],"ftR":[-54.2,321],"hipL":[6.1,37.7],"knL":[-9.3,180.1],"ftL":[38.9,324.6]},{"rootY":0.7,"hips":[0,0],"chest":[5,-87.6],"neck":[5,-87.6],"head":[10,-152.9],"shR":[-18.4,-106.5],"elR":[-13.7,6],"haR":[-45.5,64.4],"shL":[48.1,-112.7],"elL":[48,-12.2],"haL":[20.3,35.2],"hipR":[-29.3,35.6],"knR":[-69.1,179],"ftR":[-54.1,320.9],"hipL":[5.8,37.8],"knL":[-9.5,180.2],"ftL":[38.9,324.5]},{"rootY":0.6,"hips":[0,0],"chest":[5.3,-87.5],"neck":[5.3,-87.5],"head":[9.5,-152.9],"shR":[-17.9,-106.8],"elR":[-13.3,5.6],"haR":[-44.8,63.9],"shL":[48.2,-112.4],"elL":[47.6,-11.3],"haL":[19.5,35.8],"hipR":[-29.3,35.6],"knR":[-68.9,179],"ftR":[-53.9,320.9],"hipL":[5.7,37.8],"knL":[-9.5,180.3],"ftL":[39,324.5]},{"rootY":0.7,"hips":[0,0],"chest":[5.7,-87.5],"neck":[5.7,-87.5],"head":[9.7,-152.8],"shR":[-17.3,-106.9],"elR":[-13.4,5.5],"haR":[-44.9,63.5],"shL":[48.4,-112.3],"elL":[47.4,-11.6],"haL":[18.8,35],"hipR":[-29,35.9],"knR":[-69.2,179.2],"ftR":[-53.8,320.8],"hipL":[6.1,37.4],"knL":[-8.9,179.9],"ftL":[39,324.4]},{"rootY":0.7,"hips":[0,0],"chest":[6,-87.5],"neck":[6,-87.5],"head":[9.6,-152.8],"shR":[-17.1,-106.9],"elR":[-14.3,5.4],"haR":[-46.4,63],"shL":[48.9,-112.2],"elL":[48.4,-11.2],"haL":[20,35.4],"hipR":[-28.9,36],"knR":[-69.3,179.3],"ftR":[-53.7,320.7],"hipL":[6.4,37.3],"knL":[-8.3,179.8],"ftL":[39.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[6.2,-87.5],"neck":[6.2,-87.5],"head":[9.7,-152.7],"shR":[-17.5,-107.1],"elR":[-15.9,5.1],"haR":[-49.2,62.1],"shL":[49.4,-112.1],"elL":[49.8,-10.8],"haL":[22.3,35.9],"hipR":[-29.2,35.8],"knR":[-68.9,179.2],"ftR":[-53.2,320.6],"hipL":[6.1,37.5],"knL":[-8.4,180],"ftL":[39.6,324.3]},{"rootY":0.6,"hips":[0,0],"chest":[6.3,-87.5],"neck":[6.3,-87.5],"head":[10,-152.7],"shR":[-18.6,-107.3],"elR":[-18.3,4.8],"haR":[-53.1,61],"shL":[50.6,-111.8],"elL":[51.2,-10.8],"haL":[25.2,36.4],"hipR":[-29.6,35.5],"knR":[-68.3,179.2],"ftR":[-52.9,320.8],"hipL":[6.1,37.8],"knL":[-8.6,180.3],"ftL":[39.7,324.4]},{"rootY":0.5,"hips":[0,0],"chest":[6.3,-87.4],"neck":[6.3,-87.4],"head":[9.9,-152.7],"shR":[-20,-107.5],"elR":[-20.9,4.3],"haR":[-57.7,59.7],"shL":[51.8,-111.5],"elL":[53.4,-10.5],"haL":[29.1,37.2],"hipR":[-30,35.1],"knR":[-67.2,179.1],"ftR":[-52.4,320.7],"hipL":[6.2,38.3],"knL":[-8.6,180.7],"ftL":[39.8,324.7]},{"rootY":0.5,"hips":[0,0],"chest":[6.7,-87.4],"neck":[6.7,-87.4],"head":[10.4,-152.7],"shR":[-20.9,-107.8],"elR":[-24.8,4.2],"haR":[-62.9,58.8],"shL":[53.4,-111.2],"elL":[55.9,-10.1],"haL":[33.8,38.2],"hipR":[-30.2,35],"knR":[-67,179.2],"ftR":[-51.9,320.7],"hipL":[6.4,38.2],"knL":[-8,180.6],"ftL":[40.3,324.5]},{"rootY":0.4,"hips":[0,0],"chest":[7.2,-87.4],"neck":[7.2,-87.4],"head":[11.3,-152.6],"shR":[-22.8,-108.4],"elR":[-28.2,3.5],"haR":[-68.3,57.2],"shL":[55.9,-110.6],"elL":[59.3,-9.3],"haL":[39.8,39.6],"hipR":[-30,35.4],"knR":[-65.8,179.7],"ftR":[-51,320.7],"hipL":[7.9,38],"knL":[-5.5,180.4],"ftL":[40.5,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.4],"neck":[7.4,-87.4],"head":[11.6,-152.6],"shR":[-24.8,-108.7],"elR":[-32.4,3.1],"haR":[-74,56],"shL":[58,-110.2],"elL":[62.2,-8.5],"haL":[45.7,40.7],"hipR":[-30,35.4],"knR":[-65.1,180],"ftR":[-50.6,320.7],"hipL":[8.8,37.9],"knL":[-4.6,180.3],"ftL":[40.7,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.4],"neck":[7.7,-87.4],"head":[12.2,-152.5],"shR":[-26.7,-108.7],"elR":[-36.5,3],"haR":[-79.5,55.1],"shL":[60,-110.1],"elL":[65,-8.3],"haL":[51.6,41.8],"hipR":[-29.9,35.5],"knR":[-64.1,180.4],"ftR":[-50,320.7],"hipL":[9.7,37.9],"knL":[-3.4,180.3],"ftL":[41,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[8.2,-87.3],"neck":[8.2,-87.3],"head":[12.8,-152.5],"shR":[-27.9,-108.2],"elR":[-39.9,3.5],"haR":[-84.1,54.8],"shL":[62,-110.4],"elL":[67.7,-8.6],"haL":[57.4,42.1],"hipR":[-30.1,35.4],"knR":[-63,180.6],"ftR":[-49.3,320.6],"hipL":[10.3,38],"knL":[-2.3,180.4],"ftL":[41.3,325.1]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.6,-152.4],"shR":[-31.1,-109.3],"elR":[-45.4,2.3],"haR":[-90.3,53.1],"shL":[64.3,-109.6],"elL":[70.7,-7.5],"haL":[63.5,44],"hipR":[-30.1,35.4],"knR":[-62,180.8],"ftR":[-48.9,320.6],"hipL":[11.3,38.1],"knL":[-1.1,180.3],"ftL":[41.4,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.4,-152.5],"shR":[-33.2,-109],"elR":[-49.9,2.4],"haR":[-95.3,52.6],"shL":[65.6,-109.8],"elL":[73.3,-7.2],"haL":[69.2,45],"hipR":[-30.2,35.4],"knR":[-61.1,181],"ftR":[-48.5,320.5],"hipL":[12,38.1],"knL":[-0.2,180.3],"ftL":[41.3,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.3,-87.4],"neck":[8.3,-87.4],"head":[13.7,-152.4],"shR":[-35.4,-109.8],"elR":[-54,1.5],"haR":[-99.6,51.1],"shL":[67.4,-109.2],"elL":[76,-6.4],"haL":[74.9,46.4],"hipR":[-29.8,35.6],"knR":[-60.2,181.4],"ftR":[-48.1,320.6],"hipL":[13.2,37.9],"knL":[1.6,180],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[13.5,-152.4],"shR":[-38.2,-111.2],"elR":[-58.4,0.2],"haR":[-103.9,49.3],"shL":[68.3,-108.1],"elL":[78.4,-5.3],"haL":[80.3,47.8],"hipR":[-30.1,35.3],"knR":[-59.3,181.4],"ftR":[-47.7,320.5],"hipL":[13.6,38.1],"knL":[2.4,180.1],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[13.9,-152.5],"shR":[-40.7,-110.3],"elR":[-62.2,0.9],"haR":[-107.4,49.2],"shL":[69.3,-108.8],"elL":[80.6,-5.8],"haL":[85.1,47.4],"hipR":[-29.9,35.4],"knR":[-58.2,181.7],"ftR":[-47.3,320.4],"hipL":[14.7,38.1],"knL":[4.1,180],"ftL":[41.4,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.2,-152.5],"shR":[-43.3,-109.8],"elR":[-66.1,1.3],"haR":[-110.6,49.2],"shL":[70.1,-109.2],"elL":[82.2,-6.1],"haL":[89.5,47.4],"hipR":[-29.2,35.8],"knR":[-57.5,182.2],"ftR":[-47.3,320.6],"hipL":[16.4,37.7],"knL":[5.8,179.4],"ftL":[41.1,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7,-87.5],"neck":[7,-87.5],"head":[14.4,-152.5],"shR":[-45.3,-110.5],"elR":[-69.1,0.5],"haR":[-112.7,47.8],"shL":[70.8,-108.9],"elL":[83.6,-5.7],"haL":[93.7,48],"hipR":[-29.7,35.4],"knR":[-55.9,182.1],"ftR":[-46.4,320.3],"hipL":[16.4,38.1],"knL":[6.8,179.7],"ftL":[41.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[14.5,-152.5],"shR":[-47.2,-110.4],"elR":[-71.9,0.4],"haR":[-114.3,47.3],"shL":[71.2,-108.9],"elL":[84.6,-5.8],"haL":[97.4,48.1],"hipR":[-29.7,35.1],"knR":[-54.7,182.1],"ftR":[-46,320.4],"hipL":[17,38.3],"knL":[8,179.7],"ftL":[42.2,326.3]},{"rootY":-0.2,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.5],"shR":[-48.6,-110.6],"elR":[-74,0.1],"haR":[-115.3,46.7],"shL":[71.6,-108.9],"elL":[85.5,-5.7],"haL":[100.6,48.3],"hipR":[-29.6,35.1],"knR":[-53.1,182.4],"ftR":[-45.2,320.4],"hipL":[17.9,38.5],"knL":[9.9,179.7],"ftL":[42.5,326.5]},{"rootY":-0.4,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.6],"shR":[-50,-110.9],"elR":[-75.9,-0.3],"haR":[-115.5,45.9],"shL":[71.8,-108.7],"elL":[86.4,-5.6],"haL":[104,48.7],"hipR":[-29.1,35.2],"knR":[-51.7,182.7],"ftR":[-44.6,320.6],"hipL":[19,38.5],"knL":[11.7,179.6],"ftL":[42.8,326.8]},{"rootY":-0.7,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[14.5,-152.5],"shR":[-51,-110.4],"elR":[-77.3,0.1],"haR":[-115.6,46.1],"shL":[72,-109],"elL":[87,-5.9],"haL":[106.6,47.7],"hipR":[-28.7,35.3],"knR":[-50.2,183],"ftR":[-44,320.7],"hipL":[19.8,38.6],"knL":[13.1,179.4],"ftL":[43.1,327.2]},{"rootY":-0.8,"hips":[0,0],"chest":[6.3,-87.6],"neck":[6.3,-87.6],"head":[14.7,-152.4],"shR":[-52.2,-111.3],"elR":[-78.6,-0.8],"haR":[-115.2,45.1],"shL":[71.5,-108.3],"elL":[87.3,-5.3],"haL":[108.5,48],"hipR":[-28.2,35.4],"knR":[-48.9,183.2],"ftR":[-43.6,320.8],"hipL":[20.9,38.6],"knL":[14.9,179.1],"ftL":[43.2,327.4]},{"rootY":-0.9,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[14.6,-152.4],"shR":[-53.2,-111.7],"elR":[-79.8,-1.3],"haR":[-114.6,44.5],"shL":[70.9,-108.2],"elL":[87.2,-5.2],"haL":[110.1,48.4],"hipR":[-27.8,35.4],"knR":[-48.1,183.3],"ftR":[-43.3,320.8],"hipL":[21.5,38.6],"knL":[16,178.9],"ftL":[43,327.5]},{"rootY":-1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.7,-152.4],"shR":[-54,-111.5],"elR":[-80.7,-1.2],"haR":[-113.8,44.6],"shL":[70.3,-108.5],"elL":[86.7,-5.5],"haL":[111.1,47.8],"hipR":[-27.5,35.5],"knR":[-47.5,183.4],"ftR":[-43.3,320.8],"hipL":[22.1,38.6],"knL":[17.1,178.7],"ftL":[42.7,327.5]},{"rootY":-1.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14.3,-152.5],"shR":[-54.5,-111.7],"elR":[-80.9,-1.4],"haR":[-112.4,44.4],"shL":[69.8,-108.5],"elL":[86,-5.4],"haL":[111.6,47.5],"hipR":[-27.5,35.4],"knR":[-46.7,183.4],"ftR":[-42.9,320.8],"hipL":[22.2,38.8],"knL":[17.7,178.6],"ftL":[43,327.8]},{"rootY":-1.3,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[14.1,-152.4],"shR":[-55.2,-111.7],"elR":[-81.1,-1.4],"haR":[-111,44.4],"shL":[69.1,-108.7],"elL":[85.2,-5.6],"haL":[111.4,47.6],"hipR":[-27.3,35.4],"knR":[-46.2,183.5],"ftR":[-42.9,321],"hipL":[22.5,38.8],"knL":[18.2,178.5],"ftL":[42.9,327.9]},{"rootY":-1.5,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[13.8,-152.5],"shR":[-55.4,-111.6],"elR":[-80.2,-1.2],"haR":[-108.9,44.5],"shL":[68.7,-108.8],"elL":[84.4,-5.6],"haL":[110.9,47.8],"hipR":[-27.4,35.3],"knR":[-45.4,183.4],"ftR":[-42.6,321.1],"hipL":[22.4,39],"knL":[19,178.5],"ftL":[43.1,328]},{"rootY":-1.6,"hips":[0,0],"chest":[4.7,-87.6],"neck":[4.7,-87.6],"head":[13.5,-152.4],"shR":[-55.8,-111.3],"elR":[-79.6,-0.6],"haR":[-106.9,44.8],"shL":[68.2,-109.1],"elL":[83.1,-5.8],"haL":[109.8,48],"hipR":[-27.2,35.4],"knR":[-45.8,183.5],"ftR":[-43.1,321.3],"hipL":[22.6,39],"knL":[18.7,178.4],"ftL":[42.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[4.5,-87.6],"neck":[4.5,-87.6],"head":[13,-152.5],"shR":[-56.2,-111.1],"elR":[-78.3,-0.1],"haR":[-104.4,45.2],"shL":[67.8,-109.2],"elL":[82,-5.8],"haL":[108.3,48.6],"hipR":[-27.2,35.4],"knR":[-45.9,183.5],"ftR":[-43.4,321.4],"hipL":[22.6,39],"knL":[18.4,178.4],"ftL":[42.3,328.2]},{"rootY":-1.8,"hips":[0,0],"chest":[4.6,-87.6],"neck":[4.6,-87.6],"head":[12.6,-152.5],"shR":[-56.1,-111],"elR":[-76.6,0.4],"haR":[-101.5,45.8],"shL":[67.9,-109.5],"elL":[81.2,-6],"haL":[106.8,49.3],"hipR":[-27.5,35.3],"knR":[-45.9,183.4],"ftR":[-43.4,321.5],"hipL":[22.3,39.2],"knL":[18.1,178.5],"ftL":[42.4,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.3,-87.6],"neck":[4.3,-87.6],"head":[11.7,-152.6],"shR":[-56.3,-110.9],"elR":[-75.1,0.8],"haR":[-99.1,46.7],"shL":[67.8,-109.8],"elL":[80.2,-6.2],"haL":[105,50],"hipR":[-27.5,35.5],"knR":[-46.7,183.4],"ftR":[-44,321.6],"hipL":[22.2,39.1],"knL":[17.3,178.5],"ftL":[41.8,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[11.1,-152.6],"shR":[-56.4,-110.8],"elR":[-73.3,1.3],"haR":[-96.6,47.7],"shL":[67.9,-109.8],"elL":[79.5,-6.2],"haL":[103.1,50.8],"hipR":[-27.6,35.6],"knR":[-47.3,183.3],"ftR":[-44.4,321.7],"hipL":[22.1,39.1],"knL":[16.6,178.5],"ftL":[41.4,328.3]},{"rootY":-1.7,"hips":[0,0],"chest":[3.8,-87.6],"neck":[3.8,-87.6],"head":[10.1,-152.6],"shR":[-56.6,-110.6],"elR":[-71.8,1.8],"haR":[-94.8,49.1],"shL":[67.7,-110.1],"elL":[78.5,-6.3],"haL":[100.5,51.7],"hipR":[-27.8,35.5],"knR":[-48.6,183.1],"ftR":[-45.3,321.6],"hipL":[21.6,39],"knL":[15.3,178.5],"ftL":[40.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[3.5,-87.5],"neck":[3.5,-87.5],"head":[9.7,-152.6],"shR":[-56.7,-110.3],"elR":[-70,2.4],"haR":[-93.2,50.8],"shL":[67.6,-110.4],"elL":[77.8,-6.6],"haL":[98.2,52.3],"hipR":[-28,35.6],"knR":[-49.8,182.9],"ftR":[-46.3,321.5],"hipL":[21.2,38.9],"knL":[13.8,178.5],"ftL":[39.6,328]},{"rootY":-1.7,"hips":[0,0],"chest":[3.1,-87.5],"neck":[3.1,-87.5],"head":[8.2,-152.6],"shR":[-56.8,-110.2],"elR":[-68.3,2.8],"haR":[-91.9,52.5],"shL":[67.4,-110.6],"elL":[76.9,-6.7],"haL":[95.5,52.7],"hipR":[-28,35.8],"knR":[-51.3,182.8],"ftR":[-47.7,321.5],"hipL":[20.9,38.8],"knL":[11.9,178.4],"ftL":[38.3,327.8]},{"rootY":-1.7,"hips":[0,0],"chest":[2.8,-87.5],"neck":[2.8,-87.5],"head":[7,-152.5],"shR":[-56.5,-109.9],"elR":[-66.6,3.2],"haR":[-90.8,54.2],"shL":[67.2,-111],"elL":[76.2,-7.1],"haL":[92.7,53],"hipR":[-28.3,35.8],"knR":[-52.8,182.5],"ftR":[-49.1,321.5],"hipL":[20.1,38.8],"knL":[10.2,178.4],"ftL":[37,327.8]},{"rootY":-1.8,"hips":[0,0],"chest":[2.5,-87.4],"neck":[2.5,-87.4],"head":[5.4,-152.5],"shR":[-56.2,-109.8],"elR":[-64.7,3.5],"haR":[-89.9,56],"shL":[66.7,-111.3],"elL":[75.2,-7.3],"haL":[89.7,53],"hipR":[-28.4,36],"knR":[-54.9,182.2],"ftR":[-51.1,321.7],"hipL":[19.7,38.6],"knL":[8.2,178.3],"ftL":[35.4,327.7]},{"rootY":-1.7,"hips":[0,0],"chest":[2.2,-87.4],"neck":[2.2,-87.4],"head":[4.1,-152.3],"shR":[-55.6,-109.6],"elR":[-62.6,3.7],"haR":[-88.9,57.6],"shL":[66.1,-111.5],"elL":[74.4,-7.5],"haL":[86.6,53],"hipR":[-28.6,36.1],"knR":[-57.2,181.8],"ftR":[-53.6,322],"hipL":[18.8,38.6],"knL":[5.8,178.3],"ftL":[33.8,327.8]},{"rootY":-1.5,"hips":[0,0],"chest":[1.7,-87.3],"neck":[1.7,-87.3],"head":[2.8,-152],"shR":[-54.8,-109.5],"elR":[-60.5,3.9],"haR":[-88.2,58.9],"shL":[65.1,-111.6],"elL":[73.4,-7.6],"haL":[83.5,52.9],"hipR":[-28.6,36.3],"knR":[-60.1,181.2],"ftR":[-56.3,322.1],"hipL":[18.1,38.5],"knL":[3.2,178.1],"ftL":[32,327.5]},{"rootY":-1,"hips":[0,0],"chest":[1.2,-87.2],"neck":[1.2,-87.2],"head":[1.1,-151.8],"shR":[-53.7,-109.5],"elR":[-58.2,3.9],"haR":[-87.2,59.6],"shL":[63.9,-111.6],"elL":[72.4,-7.7],"haL":[80.4,52.8],"hipR":[-28.6,36.5],"knR":[-62.9,180.6],"ftR":[-58.7,321.8],"hipL":[17.2,38.4],"knL":[0.5,178],"ftL":[30.5,327.2]},{"rootY":-0.5,"hips":[0,0],"chest":[0.9,-87.1],"neck":[0.9,-87.1],"head":[-0.1,-151.6],"shR":[-52.3,-109.4],"elR":[-55.4,3.8],"haR":[-85.7,60.3],"shL":[62.5,-111.7],"elL":[72,-7.8],"haL":[77.9,52.5],"hipR":[-28.4,36.7],"knR":[-65.6,179.9],"ftR":[-60.9,321.5],"hipL":[16.5,38.1],"knL":[-2.2,177.6],"ftL":[29,326.8]},{"rootY":-0.1,"hips":[0,0],"chest":[0.6,-87],"neck":[0.6,-87],"head":[-1.8,-151.1],"shR":[-50.8,-109.6],"elR":[-52.4,3.5],"haR":[-84,60.6],"shL":[61,-111.5],"elL":[71,-7.6],"haL":[75,52.6],"hipR":[-28.3,36.8],"knR":[-67.9,179.2],"ftR":[-62.8,321.1],"hipL":[15.7,38],"knL":[-4.1,177.5],"ftL":[27.5,326.5]},{"rootY":0.1,"hips":[0,0],"chest":[0.3,-86.9],"neck":[0.3,-86.9],"head":[-3.2,-150.8],"shR":[-48.9,-109.7],"elR":[-48.9,3.2],"haR":[-81.3,60.6],"shL":[59.2,-111.3],"elL":[69.5,-7.4],"haL":[72,52.8],"hipR":[-28.3,36.9],"knR":[-69.9,178.5],"ftR":[-64.7,320.8],"hipL":[14.6,37.8],"knL":[-6.3,177.3],"ftL":[25.8,326.3]},{"rootY":0.2,"hips":[0,0],"chest":[0,-86.8],"neck":[0,-86.8],"head":[-4.8,-150.4],"shR":[-47,-109.9],"elR":[-44.9,2.7],"haR":[-77.9,60.6],"shL":[57.3,-111],"elL":[68,-7.2],"haL":[69.1,52.9],"hipR":[-28.3,36.9],"knR":[-70.9,178.2],"ftR":[-65.7,320.7],"hipL":[13.8,37.7],"knL":[-8,177.2],"ftL":[24.5,326.2]},{"rootY":0.1,"hips":[0,0],"chest":[-0.4,-86.8],"neck":[-0.4,-86.8],"head":[-6.1,-150.2],"shR":[-45.6,-110],"elR":[-41.4,2.2],"haR":[-74.6,60.6],"shL":[55.5,-110.9],"elL":[66,-7.1],"haL":[66,52.7],"hipR":[-28.2,36.9],"knR":[-72,178],"ftR":[-67,320.9],"hipL":[12.9,37.7],"knL":[-10,177.3],"ftL":[23.3,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-0.6,-86.7],"neck":[-0.6,-86.7],"head":[-6.8,-149.9],"shR":[-43.8,-110.4],"elR":[-37.7,1.4],"haR":[-70.6,60.3],"shL":[53.5,-110.6],"elL":[63.5,-6.8],"haL":[62.3,52.7],"hipR":[-28.1,37],"knR":[-72.9,177.7],"ftR":[-68.4,320.9],"hipL":[12.1,37.7],"knL":[-11.6,177.3],"ftL":[22,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-1.3,-86.6],"neck":[-1.3,-86.6],"head":[-8.5,-149.7],"shR":[-42.4,-110.1],"elR":[-34.1,1],"haR":[-66.3,60.6],"shL":[51.1,-110.6],"elL":[60.9,-6.8],"haL":[58.3,52.5],"hipR":[-27.9,37.1],"knR":[-74,177.5],"ftR":[-69.8,321.1],"hipL":[11.5,37.6],"knL":[-13.2,177.3],"ftL":[20.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-9.7,-149.6],"shR":[-41.3,-110.4],"elR":[-30.8,0.1],"haR":[-62.1,60.2],"shL":[49,-110.1],"elL":[57.7,-6.4],"haL":[53.8,52.5],"hipR":[-27.8,37.1],"knR":[-74.8,177.3],"ftR":[-70.8,321.2],"hipL":[10.7,37.8],"knL":[-14.7,177.4],"ftL":[19.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-149.4],"shR":[-39.6,-110.7],"elR":[-27,-0.8],"haR":[-56.9,59.9],"shL":[46.7,-109.7],"elL":[54.2,-6],"haL":[48.7,52.6],"hipR":[-27.6,37.2],"knR":[-75.7,177],"ftR":[-71.8,321.3],"hipL":[10,37.8],"knL":[-16.2,177.5],"ftL":[19.1,326]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-86.2],"neck":[-3.2,-86.2],"head":[-12.1,-149.1],"shR":[-39.1,-111.4],"elR":[-24.2,-2.2],"haR":[-52.5,59.1],"shL":[44.8,-108.8],"elL":[51.3,-5.2],"haL":[44.9,53.9],"hipR":[-27.6,37],"knR":[-76.2,176.7],"ftR":[-72.3,321.4],"hipL":[9.3,38.2],"knL":[-17.3,177.8],"ftL":[18.6,326.2]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-86.2],"neck":[-3.4,-86.2],"head":[-12.9,-149.1],"shR":[-37.4,-110.8],"elR":[-20.8,-2],"haR":[-47.4,59.6],"shL":[42.5,-109.3],"elL":[47.8,-5.6],"haL":[38.9,52.1],"hipR":[-27.5,37],"knR":[-77.5,176.4],"ftR":[-73.4,321.3],"hipL":[8.3,38.2],"knL":[-19.1,178],"ftL":[17.9,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-3.8,-86],"neck":[-3.8,-86],"head":[-14.2,-148.7],"shR":[-36.4,-110.9],"elR":[-18.1,-2.5],"haR":[-42.8,59.6],"shL":[40.6,-109],"elL":[44.5,-5.4],"haL":[33.9,51.9],"hipR":[-27.2,37],"knR":[-78.3,176.1],"ftR":[-73.9,321.1],"hipL":[7.8,38.3],"knL":[-20.2,178.1],"ftL":[17.6,325.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.6,-85.9],"neck":[-4.6,-85.9],"head":[-15.4,-148.4],"shR":[-37.2,-111.5],"elR":[-17,-3.7],"haR":[-40.1,58.5],"shL":[39.6,-108.2],"elL":[42.1,-4.6],"haL":[29.6,52.4],"hipR":[-27.2,36.9],"knR":[-79.2,175.7],"ftR":[-74.2,320.8],"hipL":[7.4,38.6],"knL":[-20.5,178.5],"ftL":[17.2,326.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-85.7],"neck":[-5,-85.7],"head":[-16,-148.3],"shR":[-36.7,-111.9],"elR":[-14.6,-4.4],"haR":[-36.3,58],"shL":[38.2,-107.5],"elL":[39.6,-4.1],"haL":[25.2,52.9],"hipR":[-26.7,37.2],"knR":[-80,175.5],"ftR":[-74.7,320.6],"hipL":[7.5,38.5],"knL":[-20.7,178.5],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.5,-85.5],"neck":[-5.5,-85.5],"head":[-17.2,-147.9],"shR":[-36.8,-111.8],"elR":[-13.1,-4.7],"haR":[-33.7,57.9],"shL":[37,-107.3],"elL":[37.2,-3.8],"haL":[20.9,52.7],"hipR":[-26.6,37.2],"knR":[-80.6,175.3],"ftR":[-75,320.2],"hipL":[7.2,38.8],"knL":[-21.2,178.7],"ftL":[17.1,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.8,-85.3],"neck":[-5.8,-85.3],"head":[-18.2,-147.4],"shR":[-36.1,-111.9],"elR":[-10.6,-5.1],"haR":[-30.9,57.7],"shL":[35.5,-106.9],"elL":[34.2,-3.3],"haL":[16.3,53],"hipR":[-26.4,37.2],"knR":[-81,175],"ftR":[-74.8,319.8],"hipL":[7.2,38.9],"knL":[-20.8,179],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-85.1],"neck":[-6.4,-85.1],"head":[-19.1,-147.1],"shR":[-36.3,-112.3],"elR":[-9.5,-5.8],"haR":[-29.2,57.1],"shL":[34.4,-106.2],"elL":[31.6,-2.7],"haL":[12.3,53.2],"hipR":[-26.5,37],"knR":[-81.4,174.6],"ftR":[-73.6,319.5],"hipL":[6.7,39.2],"knL":[-21.2,179.3],"ftL":[17.6,326]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.9],"neck":[-7,-84.9],"head":[-20,-146.8],"shR":[-36.3,-112.3],"elR":[-8.8,-5.7],"haR":[-28,57.1],"shL":[33,-105.8],"elL":[28.5,-2.3],"haL":[8.3,53.4],"hipR":[-26.4,36.9],"knR":[-81.9,174.2],"ftR":[-72.4,318.9],"hipL":[6.7,39.5],"knL":[-21.3,179.7],"ftL":[18,326.2]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.6],"neck":[-7,-84.6],"head":[-20.6,-146.3],"shR":[-36.4,-112.4],"elR":[-7.7,-6.4],"haR":[-27.2,56.4],"shL":[32.8,-105.2],"elL":[27.1,-1.7],"haL":[5.7,53.7],"hipR":[-26,37.2],"knR":[-82.4,174.1],"ftR":[-70.6,318.3],"hipL":[7.2,39.5],"knL":[-20.2,179.8],"ftL":[19.1,326.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-7.2,-84.7],"neck":[-7.2,-84.7],"head":[-21,-146.3],"shR":[-36.4,-112.8],"elR":[-7.3,-7],"haR":[-27,55.9],"shL":[32.5,-104.9],"elL":[25.8,-1.4],"haL":[3.4,53.6],"hipR":[-25.8,37.2],"knR":[-83.5,173.6],"ftR":[-69,317.1],"hipL":[6.6,39.4],"knL":[-20.5,180],"ftL":[20.5,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-22.1,-145.4],"shR":[-36.8,-112.2],"elR":[-7.6,-6.3],"haR":[-27.5,56.5],"shL":[31.2,-104.2],"elL":[23.4,-0.8],"haL":[0.3,54],"hipR":[-25.7,37.3],"knR":[-83.2,173.4],"ftR":[-67.1,316.5],"hipL":[8.1,39.9],"knL":[-18.1,180.5],"ftL":[21.6,326.1]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.1,-83.8],"neck":[-8.1,-83.8],"head":[-22.7,-145.1],"shR":[-36.9,-112.4],"elR":[-7.8,-6.7],"haR":[-28.4,56],"shL":[30.8,-103.6],"elL":[22.1,-0.2],"haL":[-1.6,54.4],"hipR":[-25.5,37.4],"knR":[-83.8,173.1],"ftR":[-65.4,315.3],"hipL":[8.4,39.9],"knL":[-17.1,180.7],"ftL":[23.1,325.7]},{"rootY":0.2,"hips":[0,0],"chest":[-8.3,-83.6],"neck":[-8.3,-83.6],"head":[-23.2,-144.7],"shR":[-37.5,-112.4],"elR":[-8.2,-6.9],"haR":[-30,55.6],"shL":[30.6,-103.3],"elL":[21.1,0],"haL":[-2.7,54.6],"hipR":[-25.2,37.6],"knR":[-84.6,172.9],"ftR":[-63.5,313.9],"hipL":[8.9,39.9],"knL":[-15.3,181],"ftL":[24.9,325.2]},{"rootY":0.4,"hips":[0,0],"chest":[-8.8,-83.3],"neck":[-8.8,-83.3],"head":[-24,-144.3],"shR":[-38.5,-112.2],"elR":[-9.2,-6.8],"haR":[-32,55.5],"shL":[30.6,-102.7],"elL":[20.5,0.6],"haL":[-3.2,54.9],"hipR":[-25.4,37.5],"knR":[-84.5,172.7],"ftR":[-61.4,312.5],"hipL":[9.1,40.2],"knL":[-14.4,181.5],"ftL":[27,325.2]},{"rootY":0.6,"hips":[0,0],"chest":[-8.8,-83.2],"neck":[-8.8,-83.2],"head":[-24.1,-144.1],"shR":[-39.2,-112.5],"elR":[-10.6,-7.2],"haR":[-34.1,54.7],"shL":[31,-102.4],"elL":[20.7,0.9],"haL":[-2.7,55.4],"hipR":[-25.2,37.5],"knR":[-84.8,172.6],"ftR":[-58.8,311],"hipL":[9.3,40.3],"knL":[-12.9,181.9],"ftL":[29.9,324.6]},{"rootY":1.3,"hips":[0,0],"chest":[-8.9,-82.9],"neck":[-8.9,-82.9],"head":[-24.6,-143.7],"shR":[-39.3,-112.2],"elR":[-11.5,-7.2],"haR":[-36.1,54.2],"shL":[30.9,-102.1],"elL":[20.8,1.1],"haL":[-2.2,55.6],"hipR":[-25.1,37.6],"knR":[-84.4,172.9],"ftR":[-55.6,309.5],"hipL":[10,40.4],"knL":[-10.6,182.3],"ftL":[32.8,324]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-83.1],"neck":[-8.9,-83.1],"head":[-24.6,-143.7],"shR":[-40.3,-112.6],"elR":[-12.7,-8],"haR":[-38.6,53],"shL":[31.8,-102],"elL":[21.6,1.2],"haL":[-0.2,55.6],"hipR":[-25.1,37.5],"knR":[-84.3,173],"ftR":[-51.8,307.6],"hipL":[9.6,40.5],"knL":[-9.4,182.7],"ftL":[36.3,322.8]},{"rootY":3,"hips":[0,0],"chest":[-9.1,-82.5],"neck":[-9.1,-82.5],"head":[-24.9,-143.1],"shR":[-42.7,-112.6],"elR":[-15,-8.4],"haR":[-42.1,52.1],"shL":[33.8,-100.9],"elL":[24,2],"haL":[3.6,56.4],"hipR":[-24.9,37.8],"knR":[-82.9,173.6],"ftR":[-46.7,305.9],"hipL":[10.9,40.6],"knL":[-6,183],"ftL":[40.3,322.1]},{"rootY":4,"hips":[0,0],"chest":[-8.9,-82.3],"neck":[-8.9,-82.3],"head":[-24.8,-142.9],"shR":[-43,-112.6],"elR":[-16,-8.8],"haR":[-44.6,51.2],"shL":[34.5,-100.5],"elL":[25.9,2.3],"haL":[7.2,56.5],"hipR":[-24.9,37.7],"knR":[-81.6,174.3],"ftR":[-41.7,304],"hipL":[11.4,40.8],"knL":[-3.2,183.5],"ftL":[44.8,321]},{"rootY":5.2,"hips":[0,0],"chest":[-8.9,-82],"neck":[-8.9,-82],"head":[-24.7,-142.5],"shR":[-43.2,-112.4],"elR":[-16.5,-9.4],"haR":[-46.8,50],"shL":[34.7,-100.2],"elL":[28.2,2.4],"haL":[11.2,56.3],"hipR":[-24.9,37.7],"knR":[-79.8,175],"ftR":[-37,302.1],"hipL":[11.8,41.1],"knL":[-0.7,183.9],"ftL":[49.5,319.6]},{"rootY":6.8,"hips":[0,0],"chest":[-8.5,-81.8],"neck":[-8.5,-81.8],"head":[-24.2,-142.1],"shR":[-43.1,-112.2],"elR":[-17.3,-9.4],"haR":[-49.5,49.3],"shL":[35.3,-99.8],"elL":[31.9,2.3],"haL":[17.2,55.7],"hipR":[-25.4,37.4],"knR":[-77.4,175.8],"ftR":[-31.2,299.7],"hipL":[11.8,41.4],"knL":[2.5,184.5],"ftL":[55,317.6]},{"rootY":8.6,"hips":[0,0],"chest":[-7.7,-81.3],"neck":[-7.7,-81.3],"head":[-23.2,-141.6],"shR":[-42.1,-111.6],"elR":[-18.2,-8.9],"haR":[-52.2,48.9],"shL":[36,-99.6],"elL":[37,2.2],"haL":[25.1,54.5],"hipR":[-25.7,37],"knR":[-73.9,176.7],"ftR":[-24.7,297.3],"hipL":[11.8,42],"knL":[4.9,185.2],"ftL":[60.8,315.1]},{"rootY":10.9,"hips":[0,0],"chest":[-8,-81.5],"neck":[-8,-81.5],"head":[-23.2,-141.7],"shR":[-43.3,-111.9],"elR":[-22.1,-9],"haR":[-58.3,47.8],"shL":[36.5,-99.5],"elL":[42.3,1.4],"haL":[34.2,52.3],"hipR":[-26.5,36.5],"knR":[-71.6,177.5],"ftR":[-19.2,293.9],"hipL":[11.2,42.2],"knL":[4.8,185.4],"ftL":[65.9,309.7]},{"rootY":12.9,"hips":[0,0],"chest":[-8.2,-81.1],"neck":[-8.2,-81.1],"head":[-23,-141.2],"shR":[-44.1,-111.8],"elR":[-27.4,-8.1],"haR":[-65.9,47.4],"shL":[37.1,-98.9],"elL":[48.6,0.4],"haL":[45,49.7],"hipR":[-27.2,36.1],"knR":[-68.7,178.2],"ftR":[-14.2,289.9],"hipL":[11.2,42.6],"knL":[4.5,185.7],"ftL":[71.1,300.8]},{"rootY":15,"hips":[0,0],"chest":[-8.9,-80.7],"neck":[-8.9,-80.7],"head":[-23.3,-140.6],"shR":[-45.6,-111.3],"elR":[-34.2,-7.3],"haR":[-75.5,46.4],"shL":[36.7,-98.7],"elL":[55.5,-1.9],"haL":[57.2,45.1],"hipR":[-28,35.7],"knR":[-66.6,178.8],"ftR":[-10.4,285.5],"hipL":[12,42.9],"knL":[1.9,184.4],"ftL":[72,287.3]},{"rootY":17.9,"hips":[0,0],"chest":[-9.4,-80.4],"neck":[-9.4,-80.4],"head":[-23.3,-140.3],"shR":[-48.6,-110.5],"elR":[-44.6,-6],"haR":[-89.2,44.9],"shL":[38.1,-99],"elL":[64.9,-6.3],"haL":[73.1,37.7],"hipR":[-28.6,35.4],"knR":[-65.3,179.2],"ftR":[-6.8,280.9],"hipL":[12.2,43.2],"knL":[-1.8,180.2],"ftL":[66.7,272.3]},{"rootY":20.8,"hips":[0,0],"chest":[-10.2,-80.2],"neck":[-10.2,-80.2],"head":[-23,-140.2],"shR":[-52.3,-109.6],"elR":[-58.9,-5.2],"haR":[-107.6,41],"shL":[39.5,-99.7],"elL":[74.5,-12.2],"haL":[90,27.9],"hipR":[-29.7,34.5],"knR":[-63.4,179.6],"ftR":[-2.5,277.3],"hipL":[11.3,43.7],"knL":[-5,172.7],"ftL":[56,260.3]},{"rootY":22.6,"hips":[0,0],"chest":[-10.7,-79.8],"neck":[-10.7,-79.8],"head":[-22.5,-140.1],"shR":[-54.6,-108.8],"elR":[-74,-4.9],"haR":[-126.6,33.7],"shL":[40.7,-99.6],"elL":[86.9,-18.9],"haL":[109,14.6],"hipR":[-29.8,34.4],"knR":[-58.7,181.1],"ftR":[2.9,275.6],"hipL":[11.5,43.9],"knL":[-6.9,161.3],"ftL":[41.4,256]},{"rootY":20.9,"hips":[0,0],"chest":[-10.4,-79.9],"neck":[-10.4,-79.9],"head":[-21.4,-140.4],"shR":[-56.4,-108.8],"elR":[-88.5,-6.2],"haR":[-143.2,21.3],"shL":[43.1,-99.9],"elL":[100.3,-28.3],"haL":[129.8,-1.4],"hipR":[-30.1,34],"knR":[-50.7,182.6],"ftR":[9.6,277.2],"hipL":[11.2,44.2],"knL":[-10.2,149.4],"ftL":[26.5,260.6]},{"rootY":16.3,"hips":[0,0],"chest":[-9.3,-80.5],"neck":[-9.3,-80.5],"head":[-20.1,-141],"shR":[-56.8,-108.7],"elR":[-100.1,-8],"haR":[-153.8,6.5],"shL":[45.8,-101.1],"elL":[113.6,-37.6],"haL":[149.5,-18.3],"hipR":[-30.8,33.4],"knR":[-40.7,182.2],"ftR":[15.3,280],"hipL":[10.6,44.6],"knL":[-15.2,141.4],"ftL":[12.1,272.7]},{"rootY":9.6,"hips":[0,0],"chest":[-7.7,-80.9],"neck":[-7.7,-80.9],"head":[-18.4,-141.7],"shR":[-56,-107.7],"elR":[-108.5,-9.8],"haR":[-158.1,-6.9],"shL":[48,-103],"elL":[123.3,-46.5],"haL":[166.5,-34.1],"hipR":[-31.9,32.2],"knR":[-33.9,178.4],"ftR":[16.7,281.5],"hipL":[9.3,45.3],"knL":[-20.9,139.2],"ftL":[-1.5,287.7]},{"rootY":1.2,"hips":[0,0],"chest":[-5.7,-82],"neck":[-5.7,-82],"head":[-17,-143],"shR":[-54.4,-106.5],"elR":[-115.1,-11.8],"haR":[-159.8,-17.8],"shL":[50.4,-106.1],"elL":[133.3,-54.9],"haL":[181.6,-48.7],"hipR":[-32.9,31.2],"knR":[-30.8,172.2],"ftR":[9.3,283.3],"hipL":[8,45.6],"knL":[-25.4,143.1],"ftL":[-14.3,302.7]},{"rootY":-5.2,"hips":[0,0],"chest":[-2.8,-83.3],"neck":[-2.8,-83.3],"head":[-14.3,-144.8],"shR":[-51.7,-105.4],"elR":[-118.9,-14.1],"haR":[-159.5,-26.7],"shL":[53.2,-109.6],"elL":[142.1,-64.3],"haL":[194.7,-63.6],"hipR":[-33.6,30.6],"knR":[-29.7,164.2],"ftR":[2.6,276.6],"hipL":[7.2,45.5],"knL":[-27.4,149.3],"ftL":[-25.3,312.7]},{"rootY":-6.7,"hips":[0,0],"chest":[0,-84.7],"neck":[0,-84.7],"head":[-11.6,-146.7],"shR":[-50.4,-105.6],"elR":[-120.6,-16.4],"haR":[-159.8,-33.6],"shL":[57.5,-111.7],"elL":[151.2,-73.2],"haL":[206.4,-77.3],"hipR":[-35.2,29.2],"knR":[-33.6,157.1],"ftR":[0.8,255.8],"hipL":[5.2,45.4],"knL":[-30.3,153.3],"ftL":[-34.1,315.6]},{"rootY":-2.9,"hips":[0,0],"chest":[2.6,-86],"neck":[2.6,-86],"head":[-8.6,-148.5],"shR":[-48.3,-105.3],"elR":[-119.4,-16.7],"haR":[-159.3,-36],"shL":[60.8,-113.9],"elL":[158.2,-82.6],"haL":[214.5,-90.8],"hipR":[-36.8,27.7],"knR":[-43.1,151.2],"ftR":[-2.8,226.7],"hipL":[3.5,44.9],"knL":[-32.4,153.5],"ftL":[-41.2,315.2]},{"rootY":5.7,"hips":[0,0],"chest":[5.5,-86.6],"neck":[5.5,-86.6],"head":[-5,-149.5],"shR":[-46.1,-104.3],"elR":[-116.1,-14.9],"haR":[-158.4,-33.9],"shL":[64.8,-115],"elL":[164.6,-89.2],"haL":[221.1,-101.6],"hipR":[-37.8,26.9],"knR":[-54.8,147.1],"ftR":[-9.9,194.8],"hipL":[3.6,44.1],"knL":[-29.1,151],"ftL":[-46.4,313.1]},{"rootY":18.4,"hips":[0,0],"chest":[8,-86.9],"neck":[8,-86.9],"head":[-1.5,-150.3],"shR":[-44.2,-103.4],"elR":[-110.7,-11.3],"haR":[-156.9,-28.3],"shL":[68.1,-115.4],"elL":[168.7,-91.8],"haL":[224.3,-108.4],"hipR":[-38.6,25.8],"knR":[-69.4,144.1],"ftR":[-21.8,164.3],"hipL":[3.4,43.3],"knL":[-23.8,148.1],"ftL":[-52.5,308]},{"rootY":29,"hips":[0,0],"chest":[9.4,-87],"neck":[9.4,-87],"head":[-0.1,-150.4],"shR":[-43.5,-103],"elR":[-101,-5],"haR":[-153.2,-17.3],"shL":[70.4,-115],"elL":[169.5,-87.8],"haL":[223.8,-107.4],"hipR":[-38.6,25.6],"knR":[-86,145.3],"ftR":[-39.7,146.2],"hipL":[4.3,41.7],"knL":[-21,142.8],"ftL":[-50.4,298.1]},{"rootY":37.7,"hips":[0,0],"chest":[9.3,-87.1],"neck":[9.3,-87.1],"head":[-1.5,-150.3],"shR":[-43.5,-102.9],"elR":[-87.7,1.7],"haR":[-145.4,0.3],"shL":[70.4,-115.1],"elL":[164.9,-77],"haL":[217.4,-97],"hipR":[-37.5,26.6],"knR":[-104.4,149.1],"ftR":[-63.3,145.1],"hipL":[6.3,39.4],"knL":[-19.2,139.5],"ftL":[-46.1,289]},{"rootY":42.8,"hips":[0,0],"chest":[7.3,-87.3],"neck":[7.3,-87.3],"head":[-4.7,-150],"shR":[-45.1,-102.5],"elR":[-74.4,7],"haR":[-133.7,20.7],"shL":[67.9,-115.9],"elL":[154.3,-63.5],"haL":[205.1,-80],"hipR":[-36.1,28],"knR":[-122.2,148.8],"ftR":[-90.5,165.4],"hipL":[8.1,36.8],"knL":[-19.8,140.2],"ftL":[-46.3,284]},{"rootY":46,"hips":[0,0],"chest":[3.8,-87.4],"neck":[3.8,-87.4],"head":[-9.2,-149.8],"shR":[-47.5,-101.4],"elR":[-60.9,10.8],"haR":[-118.2,38.5],"shL":[63.3,-117.3],"elL":[139.6,-52.7],"haL":[187.5,-61.3],"hipR":[-35,28.7],"knR":[-134.1,140.4],"ftR":[-119.6,204],"hipL":[9.6,34.7],"knL":[-22.1,141.3],"ftL":[-47.1,280.7]},{"rootY":48.2,"hips":[0,0],"chest":[1.2,-87.4],"neck":[1.2,-87.4],"head":[-12.8,-149.5],"shR":[-49,-100.7],"elR":[-46.7,11.4],"haR":[-98.4,51.6],"shL":[59.1,-118.6],"elL":[123.8,-43.8],"haL":[166.6,-41.7],"hipR":[-33.2,29.6],"knR":[-133.3,130.9],"ftR":[-148.3,248.9],"hipL":[12.2,31.7],"knL":[-22.5,142.1],"ftL":[-46.1,277.7]},{"rootY":47.4,"hips":[0,0],"chest":[-0.6,-87.3],"neck":[-0.6,-87.3],"head":[-15.8,-149.2],"shR":[-49,-99.3],"elR":[-33,10.8],"haR":[-76.6,61.6],"shL":[55,-120.3],"elL":[106.6,-36],"haL":[139.6,-22.9],"hipR":[-31.7,30.7],"knR":[-123.4,124.8],"ftR":[-169.4,270.8],"hipL":[13.6,29.6],"knL":[-22.6,144.9],"ftL":[-44.9,278.5]},{"rootY":41.8,"hips":[0,0],"chest":[-1.3,-87.2],"neck":[-1.3,-87.2],"head":[-17,-149],"shR":[-47.4,-98.7],"elR":[-18.7,8.2],"haR":[-53.6,66.1],"shL":[52.1,-121],"elL":[89.2,-29.4],"haL":[110.3,-6.1],"hipR":[-31,31.5],"knR":[-114.7,117.7],"ftR":[-158.6,259],"hipL":[14,28.9],"knL":[-21.9,149.8],"ftL":[-43.7,283.7]},{"rootY":39.1,"hips":[0,0],"chest":[-2.6,-87.2],"neck":[-2.6,-87.2],"head":[-18.5,-149.1],"shR":[-45.9,-98],"elR":[-7.3,5.6],"haR":[-33,68.3],"shL":[48.3,-122.1],"elL":[69,-25.2],"haL":[77.3,5.9],"hipR":[-30.7,32.1],"knR":[-105,107.4],"ftR":[-142,233.5],"hipL":[14.3,29.6],"knL":[-22.3,152.6],"ftL":[-42.6,287.3]},{"rootY":36.8,"hips":[0,0],"chest":[-2.6,-87.3],"neck":[-2.6,-87.3],"head":[-18.2,-149.5],"shR":[-42.7,-97.5],"elR":[3.9,2.8],"haR":[-13.4,67.7],"shL":[45.3,-122.9],"elL":[50.7,-23.2],"haL":[44.3,13.2],"hipR":[-28.2,33.2],"knR":[-90,97.1],"ftR":[-111.8,216.9],"hipL":[16.9,26.2],"knL":[-23,152.2],"ftL":[-39.4,287.1]},{"rootY":36.7,"hips":[0,0],"chest":[-3.8,-87.3],"neck":[-3.8,-87.3],"head":[-19.1,-149.9],"shR":[-40.6,-97.8],"elR":[12.1,-0.6],"haR":[1.5,64.9],"shL":[41.7,-122.8],"elL":[35.5,-22.1],"haL":[12.5,16.8],"hipR":[-27.5,33],"knR":[-72.9,83.9],"ftR":[-70.2,203],"hipL":[18.5,25.8],"knL":[-21.6,153.8],"ftL":[-38.6,287.3]},{"rootY":34.5,"hips":[0,0],"chest":[-2.2,-87.4],"neck":[-2.2,-87.4],"head":[-17.6,-150.2],"shR":[-35.9,-98.2],"elR":[19.8,-2.5],"haR":[15.1,62.6],"shL":[40.7,-122.8],"elL":[25.3,-22.3],"haL":[-13.1,16.2],"hipR":[-27,32.6],"knR":[-53.1,72.2],"ftR":[-30.6,193.9],"hipL":[20,26],"knL":[-17.1,156.3],"ftL":[-35.5,289.6]},{"rootY":31.3,"hips":[0,0],"chest":[-0.8,-87.4],"neck":[-0.8,-87.4],"head":[-16,-150.3],"shR":[-31.4,-98.1],"elR":[24.6,-2.3],"haR":[24.8,61.9],"shL":[39.8,-122.8],"elL":[17,-23.6],"haL":[-33.5,12.1],"hipR":[-27.4,32.2],"knR":[-33.2,66.2],"ftR":[3.4,188.9],"hipL":[20.3,27.8],"knL":[-14.4,159.7],"ftL":[-32.4,292]},{"rootY":29.3,"hips":[0,0],"chest":[0.2,-87.5],"neck":[0.2,-87.5],"head":[-14.3,-150.7],"shR":[-28.8,-98.3],"elR":[27,-2.3],"haR":[30.3,60.9],"shL":[39.8,-122.8],"elL":[8.9,-25.7],"haL":[-48.9,5.8],"hipR":[-25.6,33],"knR":[-15.9,63.5],"ftR":[31.6,187.2],"hipL":[22.5,27.1],"knL":[-10.2,161],"ftL":[-32,293.5]},{"rootY":25.9,"hips":[0,0],"chest":[0.3,-87.5],"neck":[0.3,-87.5],"head":[-13.2,-151],"shR":[-29.2,-98.8],"elR":[27.4,-3.3],"haR":[31.5,59.2],"shL":[40.7,-122.2],"elL":[0.7,-28.2],"haL":[-60.5,-1.7],"hipR":[-24.6,33],"knR":[-1.6,66.3],"ftR":[56.2,191.8],"hipL":[24.2,27.7],"knL":[-4.8,164],"ftL":[-31.9,297.3]},{"rootY":23.7,"hips":[0,0],"chest":[0.8,-87.6],"neck":[0.8,-87.6],"head":[-11.8,-151.4],"shR":[-30.5,-97.6],"elR":[26.7,-2.7],"haR":[30.9,59.5],"shL":[42.6,-123.4],"elL":[-7.2,-33.4],"haL":[-69.4,-11.2],"hipR":[-22.3,34],"knR":[11.5,74.6],"ftR":[75.8,201.6],"hipL":[27.3,28.4],"knL":[1.5,165.8],"ftL":[-31.2,298.4]},{"rootY":20.5,"hips":[0,0],"chest":[1.4,-87.6],"neck":[1.4,-87.6],"head":[-10.8,-151.7],"shR":[-33.8,-97.5],"elR":[23.1,-3],"haR":[26.5,59.5],"shL":[45.7,-123.6],"elL":[-12.2,-37.9],"haL":[-74.6,-19.8],"hipR":[-20.8,34.5],"knR":[23.3,85.9],"ftR":[88.9,216.7],"hipL":[29.2,29.7],"knL":[7.3,168.2],"ftL":[-30.3,300.9]},{"rootY":18.4,"hips":[0,0],"chest":[1.6,-87.6],"neck":[1.6,-87.6],"head":[-10.1,-151.9],"shR":[-36.3,-96.5],"elR":[18.3,-1.5],"haR":[20.8,61.3],"shL":[47.3,-124.5],"elL":[-15.9,-41.9],"haL":[-78.9,-27.9],"hipR":[-18.8,35.4],"knR":[32.5,97.3],"ftR":[93.3,234.3],"hipL":[31.2,30.4],"knL":[11.3,169.9],"ftL":[-31,302.9]},{"rootY":17,"hips":[0,0],"chest":[1.7,-87.5],"neck":[1.7,-87.5],"head":[-9.5,-151.9],"shR":[-41.8,-97.1],"elR":[8.7,-1.1],"haR":[9.7,62.4],"shL":[51.6,-123.7],"elL":[-14.2,-43.3],"haL":[-77.2,-32.8],"hipR":[-14.9,36.3],"knR":[41,108.6],"ftR":[90.9,253],"hipL":[34.4,28.9],"knL":[13.7,169.4],"ftL":[-33.5,303.2]},{"rootY":15.9,"hips":[0,0],"chest":[2.2,-87.3],"neck":[2.2,-87.3],"head":[-8.7,-151.8],"shR":[-45.8,-97.8],"elR":[-3.2,1.1],"haR":[-4.5,65],"shL":[55.3,-122.5],"elL":[-11.4,-43.3],"haL":[-74.7,-35.4],"hipR":[-16.5,35.6],"knR":[47.8,120.2],"ftR":[85.2,269.7],"hipL":[32.9,31.7],"knL":[15.2,172.9],"ftL":[-33.4,305.7]},{"rootY":16.5,"hips":[0,0],"chest":[0,-87.4],"neck":[0,-87.4],"head":[-10.6,-152],"shR":[-51.7,-97.5],"elR":[-18.3,3.9],"haR":[-24.2,68.4],"shL":[55.7,-122.5],"elL":[-9.1,-43.6],"haL":[-72.3,-36.5],"hipR":[-13,36.5],"knR":[49.6,133.7],"ftR":[72.5,286.3],"hipL":[35.2,31.1],"knL":[16.4,172.2],"ftL":[-37.7,302.4]},{"rootY":17.9,"hips":[0,0],"chest":[-1.4,-87.3],"neck":[-1.4,-87.3],"head":[-11.2,-152.1],"shR":[-56,-98.1],"elR":[-32.9,5.8],"haR":[-45.3,70.4],"shL":[56.4,-121.5],"elL":[-3.6,-42.8],"haL":[-67.7,-35.3],"hipR":[-12.3,36.6],"knR":[48.5,145.7],"ftR":[59.8,299],"hipL":[35.2,32],"knL":[17.2,173.2],"ftL":[-41.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[-1.8,-87.2],"neck":[-1.8,-87.2],"head":[-11.3,-152],"shR":[-59.5,-98.8],"elR":[-48,7.4],"haR":[-67.5,71.2],"shL":[57.6,-120.4],"elL":[4.9,-41.5],"haL":[-60.3,-31.4],"hipR":[-11.6,35.9],"knR":[50.5,151.2],"ftR":[61.4,304.6],"hipL":[34.7,33.1],"knL":[19,174.6],"ftL":[-43.3,299.4]},{"rootY":19.3,"hips":[0,0],"chest":[-1.3,-87.6],"neck":[-1.3,-87.6],"head":[-10.4,-152.4],"shR":[-60.8,-98],"elR":[-60.7,10.4],"haR":[-88,71.9],"shL":[58.7,-120.7],"elL":[15.7,-41.7],"haL":[-49.2,-26.7],"hipR":[-13,35.4],"knR":[48.1,152.6],"ftR":[64.4,305.2],"hipL":[33.7,34],"knL":[18.2,175.3],"ftL":[-44.9,297.5]},{"rootY":21.4,"hips":[0,0],"chest":[0.5,-87.7],"neck":[0.5,-87.7],"head":[-8.4,-152.5],"shR":[-60.8,-97.4],"elR":[-70.6,12],"haR":[-105.7,70],"shL":[60.1,-121.4],"elL":[29.1,-41.4],"haL":[-33.1,-21.5],"hipR":[-12.5,35.6],"knR":[47.6,153.1],"ftR":[65,305.4],"hipL":[34.1,33.6],"knL":[17.4,174.7],"ftL":[-44.7,295.5]},{"rootY":22.5,"hips":[0,0],"chest":[0,-87.6],"neck":[0,-87.6],"head":[-7.6,-152.6],"shR":[-62.3,-99.4],"elR":[-79.9,10.8],"haR":[-121.2,63.7],"shL":[60.1,-119.9],"elL":[42,-38.6],"haL":[-13,-14],"hipR":[-11.7,35.4],"knR":[49.7,151.8],"ftR":[65.1,304],"hipL":[34.6,33.2],"knL":[17.8,174.4],"ftL":[-44.1,294.9]},{"rootY":22.8,"hips":[0,0],"chest":[-0.3,-87.5],"neck":[-0.3,-87.5],"head":[-6.3,-152.6],"shR":[-63.1,-100.5],"elR":[-88.3,9.4],"haR":[-133.2,56.4],"shL":[59.9,-119],"elL":[52.6,-35.4],"haL":[11.5,-6.6],"hipR":[-11.4,34.7],"knR":[51.7,151],"ftR":[65.9,303.1],"hipL":[34.3,33.6],"knL":[19.6,175],"ftL":[-42.7,294.9]},{"rootY":22.9,"hips":[0,0],"chest":[-0.4,-87.6],"neck":[-0.4,-87.6],"head":[-4.6,-152.8],"shR":[-63.3,-101.8],"elR":[-95.3,7],"haR":[-141.3,46.8],"shL":[60,-117.7],"elL":[61.1,-32.5],"haL":[40.8,-0.3],"hipR":[-10.3,34.7],"knR":[54.5,150.7],"ftR":[67.9,303],"hipL":[34.7,33.4],"knL":[22.3,175],"ftL":[-39.9,294.9]},{"rootY":21.9,"hips":[0,0],"chest":[-0.7,-87.6],"neck":[-0.7,-87.6],"head":[-3.3,-152.9],"shR":[-63.7,-103.4],"elR":[-101.9,3.6],"haR":[-147.1,35.8],"shL":[59.8,-116.3],"elL":[69.5,-30.5],"haL":[71.1,1.9],"hipR":[-9.3,34.8],"knR":[56.4,151.5],"ftR":[69.9,304.1],"hipL":[35,33.3],"knL":[24.4,175],"ftL":[-37.4,296]},{"rootY":20.5,"hips":[0,0],"chest":[-0.6,-87.6],"neck":[-0.6,-87.6],"head":[-1.6,-152.9],"shR":[-63.6,-104.2],"elR":[-108.1,0.3],"haR":[-150.2,25],"shL":[59.4,-115.3],"elL":[80.6,-29.8],"haL":[101.2,1.3],"hipR":[-9,34.9],"knR":[57,152.8],"ftR":[72.8,305.5],"hipL":[34.9,33.5],"knL":[25.9,175.5],"ftL":[-34.5,298.4]},{"rootY":19.3,"hips":[0,0],"chest":[-0.2,-87.7],"neck":[-0.2,-87.7],"head":[0.1,-152.9],"shR":[-62.9,-105.6],"elR":[-113.1,-3.7],"haR":[-150.2,14.5],"shL":[59.3,-114.3],"elL":[93.5,-30.6],"haL":[130.6,-2.3],"hipR":[-8.7,35.4],"knR":[56.8,154],"ftR":[75.5,306.5],"hipL":[35,33.5],"knL":[26.2,175.7],"ftL":[-31.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[0.4,-87.7],"neck":[0.4,-87.7],"head":[2,-152.9],"shR":[-62,-106.6],"elR":[-116.6,-7.1],"haR":[-149.3,5.6],"shL":[59.3,-113.5],"elL":[107.1,-31],"haL":[155,-6.9],"hipR":[-8.6,36],"knR":[55.3,155],"ftR":[77.2,307.3],"hipL":[35.1,33.5],"knL":[25.8,175.7],"ftL":[-28.5,303.3]},{"rootY":16.8,"hips":[0,0],"chest":[1.6,-87.7],"neck":[1.6,-87.7],"head":[4.3,-152.8],"shR":[-60.4,-107.6],"elR":[-118.4,-10.2],"haR":[-147,-1.6],"shL":[60,-112.8],"elL":[120.1,-32.5],"haL":[175.9,-11],"hipR":[-9.4,36.5],"knR":[53.3,155.3],"ftR":[77.9,307.4],"hipL":[34.8,33.7],"knL":[25.5,176.2],"ftL":[-25.1,306.4]},{"rootY":16.1,"hips":[0,0],"chest":[3,-87.7],"neck":[3,-87.7],"head":[6.9,-152.6],"shR":[-58.4,-108.6],"elR":[-118.6,-13],"haR":[-143.5,-6.9],"shL":[61.3,-111.9],"elL":[129.8,-34.1],"haL":[190.2,-14.6],"hipR":[-10.2,36.8],"knR":[50.2,155.7],"ftR":[75.6,307.8],"hipL":[34.6,33.9],"knL":[25.5,176.6],"ftL":[-21.9,308.9]},{"rootY":15.9,"hips":[0,0],"chest":[4.4,-87.6],"neck":[4.4,-87.6],"head":[9.3,-152.4],"shR":[-56.4,-109.5],"elR":[-117.7,-15],"haR":[-139.8,-10],"shL":[62.7,-111.4],"elL":[135,-36.4],"haL":[198.3,-18.2],"hipR":[-11,37.2],"knR":[46.6,155.7],"ftR":[70.5,308],"hipL":[34.4,34.2],"knL":[25,176.9],"ftL":[-19,311]},{"rootY":15.1,"hips":[0,0],"chest":[5.6,-87.5],"neck":[5.6,-87.5],"head":[11.7,-151.9],"shR":[-54.8,-109.9],"elR":[-116.2,-16.1],"haR":[-135.9,-10.5],"shL":[63.5,-111.1],"elL":[134.7,-38.4],"haL":[199.1,-21.3],"hipR":[-11.6,37.4],"knR":[42.7,155.5],"ftR":[60.9,308.5],"hipL":[34.1,34.4],"knL":[24.1,177.2],"ftL":[-16.7,312.7]}]},"march":{"name":"march","fps":30,"height":520,"groundY":342,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.1,-86.1],"neck":[1.1,-86.1],"head":[2,-151.3],"shR":[-51.8,-120.1],"elR":[-155.8,-105.5],"haR":[-222.9,-96.1],"shL":[58.6,-114],"elL":[159.3,-99.8],"haL":[225.6,-90.5],"hipR":[-21.8,38.1],"knR":[-19.3,184.4],"ftR":[-16.5,341.7],"hipL":[25.5,38.1],"knL":[22.9,183.4],"ftL":[20.2,338.8]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.4],"neck":[-6.3,-84.4],"head":[-27.5,-144.7],"shR":[46.2,-120.7],"elR":[65.5,-17.5],"haR":[73.1,36.4],"shL":[-63.6,-112.6],"elL":[-58.1,-16.3],"haL":[-67.7,49],"hipR":[27.5,34.4],"knR":[17.9,175.6],"ftR":[12.4,313.9],"hipL":[-19.2,41.9],"knL":[-28.3,162.4],"ftL":[-38.2,316.8]},{"rootY":2.8,"hips":[0,0],"chest":[-6.7,-84.2],"neck":[-6.7,-84.2],"head":[-28.7,-144.1],"shR":[45.2,-121.3],"elR":[65.2,-18.2],"haR":[73,34.5],"shL":[-64.1,-111.7],"elL":[-56.9,-15.8],"haL":[-66.6,50.2],"hipR":[27.6,34.3],"knR":[18.6,175],"ftR":[14.5,308.9],"hipL":[-19.1,42],"knL":[-27.4,163.1],"ftL":[-36.6,318.2]},{"rootY":1.7,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-30.3,-143.6],"shR":[43.6,-121.7],"elR":[64,-18.7],"haR":[72.1,33.8],"shL":[-65.3,-110.9],"elL":[-56.4,-15.3],"haL":[-65.8,51],"hipR":[26.6,35],"knR":[18,175.5],"ftR":[16.2,304.2],"hipL":[-20.2,41.6],"knL":[-27.8,163],"ftL":[-35.3,318.3]},{"rootY":0.4,"hips":[0,0],"chest":[-8.7,-83.9],"neck":[-8.7,-83.9],"head":[-31.7,-143.4],"shR":[42.2,-122.3],"elR":[62.6,-19.4],"haR":[70.8,33.8],"shL":[-66.1,-110],"elL":[-55.8,-14.7],"haL":[-64.8,51.6],"hipR":[25.5,35.5],"knR":[16.9,177],"ftR":[17.8,297.6],"hipL":[-21.4,41.3],"knL":[-28.8,164.2],"ftL":[-34,319.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-9,-84],"neck":[-9,-84],"head":[-32.6,-143.1],"shR":[41.7,-122.4],"elR":[62.3,-19.7],"haR":[70.2,34.5],"shL":[-66.2,-110],"elL":[-54.8,-15.3],"haL":[-63.4,50.8],"hipR":[25,35.5],"knR":[16.7,178.9],"ftR":[18.5,289.7],"hipL":[-21.8,41.1],"knL":[-30.1,165.8],"ftL":[-32.3,320.5]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.4,-84],"neck":[-9.4,-84],"head":[-33,-143.4],"shR":[41.2,-122.6],"elR":[62.1,-20],"haR":[69.5,35.2],"shL":[-66.5,-109.9],"elL":[-54.4,-15.7],"haL":[-62.7,50.4],"hipR":[23.8,35.8],"knR":[16.9,181.1],"ftR":[18.3,280.7],"hipL":[-23,40.5],"knL":[-32.1,166.9],"ftL":[-30.4,320.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.3,-84.2],"neck":[-9.3,-84.2],"head":[-33,-143.5],"shR":[41.4,-122.6],"elR":[62,-20.1],"haR":[68.8,35.9],"shL":[-66.3,-110],"elL":[-54.1,-16.5],"haL":[-62.4,49.8],"hipR":[22.1,36.4],"knR":[18.4,182.6],"ftR":[19,272],"hipL":[-24.8,39.4],"knL":[-32.7,168],"ftL":[-26.9,319.9]},{"rootY":0.8,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-32.4,-143.8],"shR":[41.9,-122.3],"elR":[61.4,-19.8],"haR":[67.9,37.4],"shL":[-66.1,-110.7],"elL":[-54.5,-16.9],"haL":[-62.6,49.5],"hipR":[20.2,36.9],"knR":[20.9,182.7],"ftR":[19.5,265],"hipL":[-26.7,37.9],"knL":[-31.7,168.8],"ftL":[-23.1,318.6]},{"rootY":1.9,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-31.8,-144],"shR":[42.4,-121.6],"elR":[60,-18.9],"haR":[66.5,39.5],"shL":[-66,-111.4],"elL":[-55.6,-17.1],"haL":[-64.1,49.3],"hipR":[19.9,36.8],"knR":[23,180.6],"ftR":[17.8,259.3],"hipL":[-27.1,37.4],"knL":[-29.8,169.9],"ftL":[-21.1,317.6]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-84.4],"neck":[-8.9,-84.4],"head":[-30.7,-144.4],"shR":[43.1,-121.2],"elR":[57.9,-18.3],"haR":[64.6,41.6],"shL":[-65.7,-112],"elL":[-56.7,-16.3],"haL":[-65.9,50],"hipR":[19.5,37],"knR":[25.1,177.3],"ftR":[17.7,258.8],"hipL":[-27.6,36.6],"knL":[-28.3,171.5],"ftL":[-19.3,317.2]},{"rootY":2.3,"hips":[0,0],"chest":[-8.3,-84.5],"neck":[-8.3,-84.5],"head":[-29,-144.5],"shR":[44,-121],"elR":[55.5,-17.7],"haR":[62.4,43.5],"shL":[-65.1,-112.4],"elL":[-57.7,-15.4],"haL":[-67.7,50.7],"hipR":[19.3,37.3],"knR":[26.4,173.3],"ftR":[18.6,263.7],"hipL":[-27.9,36],"knL":[-26.3,173.5],"ftL":[-17.5,317.1]},{"rootY":1.1,"hips":[0,0],"chest":[-7.5,-84.6],"neck":[-7.5,-84.6],"head":[-27,-145.2],"shR":[45.2,-120.6],"elR":[53.4,-17],"haR":[60.4,45.3],"shL":[-64.5,-112.9],"elL":[-59,-15],"haL":[-69.6,50.7],"hipR":[19,37.4],"knR":[26.7,169.2],"ftR":[18.6,273.6],"hipL":[-28.1,35.7],"knL":[-24.4,174.6],"ftL":[-15.6,317.2]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-84.7],"neck":[-6.9,-84.7],"head":[-25.1,-145.7],"shR":[46.3,-120],"elR":[51.8,-16.4],"haR":[58.2,47.2],"shL":[-63.9,-113.7],"elL":[-60.5,-15.1],"haL":[-71.5,50],"hipR":[18.8,37.6],"knR":[26.6,165.2],"ftR":[18.9,286.1],"hipL":[-28.4,35.4],"knL":[-22.9,176.3],"ftL":[-14,317.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-6.4,-84.7],"neck":[-6.4,-84.7],"head":[-23.4,-146.4],"shR":[47,-119.3],"elR":[50.5,-15.8],"haR":[56.5,48.7],"shL":[-63.4,-114.2],"elL":[-62.9,-15.1],"haL":[-74,49.1],"hipR":[18.6,37.9],"knR":[26.6,162.3],"ftR":[20.3,298.7],"hipL":[-28.6,35],"knL":[-21.3,177.8],"ftL":[-12.4,318.3]},{"rootY":-3.2,"hips":[0,0],"chest":[-5.8,-84.7],"neck":[-5.8,-84.7],"head":[-21,-146.8],"shR":[47.7,-118.8],"elR":[49.2,-15.6],"haR":[54.6,49.3],"shL":[-62.8,-114.8],"elL":[-65.8,-15.3],"haL":[-76.4,47.7],"hipR":[18.8,38.2],"knR":[25.8,161],"ftR":[22.3,310],"hipL":[-28.4,35.2],"knL":[-20.5,179.2],"ftL":[-12,319.7]},{"rootY":-4.9,"hips":[0,0],"chest":[-5.7,-84.6],"neck":[-5.7,-84.6],"head":[-18.8,-147.4],"shR":[48,-118.2],"elR":[48,-15.3],"haR":[52.7,50.1],"shL":[-62.6,-115.4],"elL":[-69.7,-15.9],"haL":[-79.4,45.3],"hipR":[18.4,38.6],"knR":[24.3,161.7],"ftR":[25.3,317.7],"hipL":[-28.8,35.1],"knL":[-20.8,179.9],"ftL":[-12,320.6]},{"rootY":-4.1,"hips":[0,0],"chest":[-5.4,-84.7],"neck":[-5.4,-84.7],"head":[-18.2,-146.9],"shR":[48.2,-117.7],"elR":[46.4,-15.1],"haR":[51,50.7],"shL":[-62.2,-116],"elL":[-73.6,-16.3],"haL":[-82.7,43],"hipR":[18.1,38.9],"knR":[22.6,162.9],"ftR":[28.3,319.9],"hipL":[-29,35],"knL":[-21.3,180],"ftL":[-12.5,319.8]},{"rootY":-3.4,"hips":[0,0],"chest":[-4.9,-84.7],"neck":[-4.9,-84.7],"head":[-16.7,-147.1],"shR":[48.7,-117.6],"elR":[45.2,-15.2],"haR":[49.7,50.7],"shL":[-61.5,-116.3],"elL":[-76.8,-16.7],"haL":[-85.1,40.7],"hipR":[17.3,39.2],"knR":[21.8,164.1],"ftR":[30.4,318.6],"hipL":[-29.7,34.6],"knL":[-22,179],"ftL":[-13.2,319.1]},{"rootY":-2,"hips":[0,0],"chest":[-4.5,-84.7],"neck":[-4.5,-84.7],"head":[-15.4,-147.5],"shR":[49.1,-117.1],"elR":[44,-15],"haR":[48.5,51.1],"shL":[-60.8,-116.8],"elL":[-79.6,-17.4],"haL":[-87.3,38.4],"hipR":[17.3,39.4],"knR":[21.9,164.4],"ftR":[30.6,317.3],"hipL":[-29.7,34.7],"knL":[-22.6,178.6],"ftL":[-13.8,317.5]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.1,-84.6],"neck":[-4.1,-84.6],"head":[-14.1,-147.4],"shR":[49.6,-116.5],"elR":[43.1,-14.5],"haR":[48,52],"shL":[-60,-117.3],"elL":[-81.2,-18.1],"haL":[-88.7,35.8],"hipR":[17.4,39.7],"knR":[22.7,163.1],"ftR":[29.8,317],"hipL":[-29.6,34.6],"knL":[-22.8,177.7],"ftL":[-15.3,314.3]},{"rootY":1.5,"hips":[0,0],"chest":[-3.5,-84.5],"neck":[-3.5,-84.5],"head":[-12.8,-147.5],"shR":[50.1,-116.1],"elR":[42.1,-14.2],"haR":[47.1,52.5],"shL":[-59.2,-117.7],"elL":[-81.6,-18.6],"haL":[-89.5,33.8],"hipR":[17.4,39.8],"knR":[22.6,162.4],"ftR":[28.5,318],"hipL":[-29.6,34.5],"knL":[-23,176.4],"ftL":[-16.6,310.7]},{"rootY":1,"hips":[0,0],"chest":[-3,-84.5],"neck":[-3,-84.5],"head":[-11.3,-147.6],"shR":[50.6,-115.5],"elR":[41.7,-13.5],"haR":[46.9,53.5],"shL":[-58.3,-118.3],"elL":[-80.9,-19.2],"haL":[-89.5,32.3],"hipR":[17.5,39.8],"knR":[22,162.5],"ftR":[27.4,319.1],"hipL":[-29.5,34.7],"knL":[-23.3,175.1],"ftL":[-17.9,306.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-9.6,-147.8],"shR":[51.5,-114.8],"elR":[41.6,-12.7],"haR":[47.1,54.5],"shL":[-57,-118.9],"elL":[-79.1,-19.8],"haL":[-88.3,31.6],"hipR":[18.7,39.5],"knR":[22.8,163.5],"ftR":[27.6,320.5],"hipL":[-28.4,35.5],"knL":[-22.9,175.5],"ftL":[-19.7,302.6]},{"rootY":-2.6,"hips":[0,0],"chest":[-1.8,-84.5],"neck":[-1.8,-84.5],"head":[-8.4,-148],"shR":[51.9,-114.3],"elR":[41.5,-12.4],"haR":[47.2,54.9],"shL":[-56.2,-119.4],"elL":[-78.2,-20.5],"haL":[-87.3,31.4],"hipR":[19.8,39.2],"knR":[23.3,165],"ftR":[25.3,322.2],"hipL":[-27.3,36.2],"knL":[-23.1,176.5],"ftL":[-22.8,297.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-1.7,-84.6],"neck":[-1.7,-84.6],"head":[-8,-148.4],"shR":[51.9,-114.2],"elR":[41.2,-12.2],"haR":[47.1,55.1],"shL":[-55.9,-119.7],"elL":[-78.1,-20.9],"haL":[-86.4,31.7],"hipR":[20.3,39],"knR":[23.2,167.1],"ftR":[23.6,324],"hipL":[-26.8,36.3],"knL":[-23.6,178.1],"ftL":[-25,291.7]},{"rootY":-5.3,"hips":[0,0],"chest":[-1.5,-84.7],"neck":[-1.5,-84.7],"head":[-7.4,-148.8],"shR":[52,-113.9],"elR":[41.6,-12],"haR":[47.7,55.1],"shL":[-55.6,-120],"elL":[-77.9,-21.5],"haL":[-85.1,32.2],"hipR":[21.2,38.6],"knR":[23,168.6],"ftR":[21.1,324.8],"hipL":[-26,36.7],"knL":[-24.4,180.3],"ftL":[-26,286.1]},{"rootY":-5.4,"hips":[0,0],"chest":[-1.5,-84.8],"neck":[-1.5,-84.8],"head":[-7.1,-149.1],"shR":[52.1,-113.7],"elR":[42.4,-11.9],"haR":[48.9,55.1],"shL":[-55.6,-120.2],"elL":[-78.2,-22.1],"haL":[-83.8,32.2],"hipR":[22.1,38],"knR":[21.7,169.7],"ftR":[18.4,324.5],"hipL":[-25.1,36.9],"knL":[-26.1,181.9],"ftL":[-27.6,278.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-1.9,-84.8],"neck":[-1.9,-84.8],"head":[-7.6,-149.2],"shR":[51.8,-114],"elR":[43.5,-11.8],"haR":[50.3,54.9],"shL":[-56.1,-119.9],"elL":[-78.5,-22.1],"haL":[-82.7,32.7],"hipR":[22.9,37.2],"knR":[19.6,170.6],"ftR":[15.2,323.5],"hipL":[-24.3,37],"knL":[-28.3,182.2],"ftL":[-28.9,271.1]},{"rootY":-3.5,"hips":[0,0],"chest":[-2.2,-84.8],"neck":[-2.2,-84.8],"head":[-8.8,-149.8],"shR":[51.7,-114.5],"elR":[45.3,-11.8],"haR":[52.5,54.6],"shL":[-56.8,-119.6],"elL":[-77.6,-21.7],"haL":[-81.3,33.8],"hipR":[23.6,36.4],"knR":[17.3,171.7],"ftR":[12.7,322.4],"hipL":[-23.6,37],"knL":[-30.6,181.2],"ftL":[-29.2,264.6]},{"rootY":-3.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-9.4,-149.9],"shR":[51.6,-114.7],"elR":[47.2,-11.3],"haR":[55.1,54.7],"shL":[-57.4,-119.6],"elL":[-74.8,-21.3],"haL":[-78.5,35.2],"hipR":[24.6,35.4],"knR":[16.1,172.9],"ftR":[11.1,321.9],"hipL":[-22.5,37.6],"knL":[-32.5,179.5],"ftL":[-29.7,263.1]},{"rootY":-3.4,"hips":[0,0],"chest":[-3.1,-85.1],"neck":[-3.1,-85.1],"head":[-10,-150.3],"shR":[51.5,-114.9],"elR":[49.2,-10.9],"haR":[57.7,54.8],"shL":[-58,-119.5],"elL":[-71.5,-20.8],"haL":[-75.9,36.9],"hipR":[25,34.9],"knR":[15.6,174.6],"ftR":[10.1,322],"hipL":[-22.2,37.9],"knL":[-33.3,176.9],"ftL":[-30,266.1]},{"rootY":-4.2,"hips":[0,0],"chest":[-3.4,-85.2],"neck":[-3.4,-85.2],"head":[-10.6,-150.5],"shR":[51.5,-115.2],"elR":[51.2,-10.8],"haR":[60.4,54.4],"shL":[-58.5,-119.3],"elL":[-68.2,-20.3],"haL":[-73.1,38.7],"hipR":[25.5,34.5],"knR":[15.4,176.3],"ftR":[9.6,322.2],"hipL":[-21.6,38.3],"knL":[-33.3,173.9],"ftL":[-30,273.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-11.4,-150.6],"shR":[51.5,-115.7],"elR":[53.3,-11.1],"haR":[62.9,53.3],"shL":[-58.9,-118.8],"elL":[-65.3,-19.8],"haL":[-70.6,40.5],"hipR":[26.4,33.8],"knR":[15.6,177.4],"ftR":[9.2,322.4],"hipL":[-20.6,38.8],"knL":[-32.5,170.9],"ftL":[-29.1,282.8]},{"rootY":-5.5,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-12.5,-150.5],"shR":[51.5,-116.1],"elR":[55.6,-11.5],"haR":[65.3,52],"shL":[-59.1,-118.1],"elL":[-63.3,-19.5],"haL":[-68.7,41.8],"hipR":[26.7,33.8],"knR":[15.4,178.5],"ftR":[9.2,322.7],"hipL":[-20.3,39.2],"knL":[-31.1,168],"ftL":[-28,293.8]},{"rootY":-7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-12.8,-150.6],"shR":[52.1,-116.8],"elR":[58.8,-12.3],"haR":[68.1,49.8],"shL":[-58.5,-117.7],"elL":[-61.1,-19.5],"haL":[-66.2,43.1],"hipR":[26.7,33.8],"knR":[16.7,179.5],"ftR":[10.1,323.2],"hipL":[-20.2,39.5],"knL":[-28.8,166.7],"ftL":[-26.2,304.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-14.2,-150.4],"shR":[51.9,-117.3],"elR":[61.4,-13],"haR":[70.3,48.8],"shL":[-58.5,-117.2],"elL":[-59.7,-19.4],"haL":[-64.8,44.1],"hipR":[27,33.8],"knR":[17.1,179.7],"ftR":[10.1,323.6],"hipL":[-19.9,40],"knL":[-27.1,165.7],"ftL":[-25.8,313.5]},{"rootY":-7,"hips":[0,0],"chest":[-3.2,-85.1],"neck":[-3.2,-85.1],"head":[-15.5,-150.1],"shR":[51.6,-117.7],"elR":[63.9,-13.6],"haR":[72,46.3],"shL":[-58.7,-116.4],"elL":[-58.3,-19.1],"haL":[-63.8,45.2],"hipR":[28.1,33.4],"knR":[17.4,178.9],"ftR":[9.7,322.9],"hipL":[-18.6,40.9],"knL":[-24.8,165.4],"ftL":[-26.7,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-3.6,-85],"neck":[-3.6,-85],"head":[-16.6,-149.9],"shR":[50.9,-118.1],"elR":[66,-14.3],"haR":[73.2,44.3],"shL":[-59.1,-116],"elL":[-57.1,-19.2],"haL":[-63.1,45.8],"hipR":[28.1,33.7],"knR":[17.9,178.3],"ftR":[10,322.4],"hipL":[-18.6,41.3],"knL":[-22.8,165.9],"ftL":[-27.7,321.3]},{"rootY":-5.2,"hips":[0,0],"chest":[-3.9,-84.9],"neck":[-3.9,-84.9],"head":[-17.5,-149.7],"shR":[50.3,-118.6],"elR":[67.3,-15.1],"haR":[74.1,42],"shL":[-59.5,-115.3],"elL":[-55.3,-18.6],"haL":[-62.2,47.1],"hipR":[28.6,33.6],"knR":[19.1,176.7],"ftR":[10.8,320.9],"hipL":[-18,41.7],"knL":[-21.1,165.5],"ftL":[-27.5,319.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-4.2,-84.8],"neck":[-4.2,-84.8],"head":[-18.3,-149.4],"shR":[49.8,-118.8],"elR":[68.4,-15.5],"haR":[75.1,40.3],"shL":[-59.7,-114.9],"elL":[-53.9,-18.2],"haL":[-61.5,47.9],"hipR":[28.7,33.6],"knR":[20,175.2],"ftR":[12.5,317.9],"hipL":[-17.8,41.9],"knL":[-21,164.9],"ftL":[-27.1,319]},{"rootY":-1.3,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-19.4,-149.1],"shR":[48.9,-119],"elR":[68.2,-15.8],"haR":[75,38.9],"shL":[-60.4,-114.4],"elL":[-53.1,-18],"haL":[-61.1,48.3],"hipR":[28.3,33.8],"knR":[20.2,174.5],"ftR":[14.4,313.9],"hipL":[-18.2,42],"knL":[-21.9,164.1],"ftL":[-25.9,319.1]},{"rootY":-1.8,"hips":[0,0],"chest":[-5.8,-84.3],"neck":[-5.8,-84.3],"head":[-20.6,-148.9],"shR":[47.4,-119.4],"elR":[66.9,-16.3],"haR":[74.1,38],"shL":[-61.3,-113.7],"elL":[-53.3,-17],"haL":[-61.3,49.5],"hipR":[27.5,34.2],"knR":[19.7,174.1],"ftR":[16,309.5],"hipL":[-19.2,41.8],"knL":[-22.4,162.9],"ftL":[-24.4,318.3]},{"rootY":-3,"hips":[0,0],"chest":[-7,-84.2],"neck":[-7,-84.2],"head":[-22.1,-148.7],"shR":[45.8,-119.8],"elR":[64.8,-16.7],"haR":[72.4,37.8],"shL":[-62.4,-113.1],"elL":[-53.8,-16],"haL":[-62.1,50.5],"hipR":[26.2,34.9],"knR":[18.5,175.7],"ftR":[17.4,303.4],"hipL":[-20.6,41.4],"knL":[-23.4,164.2],"ftL":[-22.8,319.7]},{"rootY":-4.8,"hips":[0,0],"chest":[-7.3,-84.4],"neck":[-7.3,-84.4],"head":[-22.6,-148.8],"shR":[45.2,-120.2],"elR":[63.5,-17.1],"haR":[71.3,38.2],"shL":[-62.6,-112.9],"elL":[-53.7,-15.9],"haL":[-62.3,50.5],"hipR":[25.7,35],"knR":[18.9,177.5],"ftR":[19.6,296],"hipL":[-21.1,41.1],"knL":[-23.4,166.7],"ftL":[-20.2,321.8]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.5,-84.4],"neck":[-7.5,-84.4],"head":[-22.6,-148.9],"shR":[45.1,-120.3],"elR":[62.9,-17.3],"haR":[70.4,39],"shL":[-62.6,-112.7],"elL":[-53.6,-15.8],"haL":[-62.6,50.5],"hipR":[25.3,35.1],"knR":[20.6,180],"ftR":[20.9,289],"hipL":[-21.6,40.9],"knL":[-23.8,169],"ftL":[-17.9,323.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-23,-149],"shR":[44.6,-120.3],"elR":[62.1,-17.3],"haR":[69.1,39.9],"shL":[-63.2,-112.8],"elL":[-54.5,-16.2],"haL":[-63.8,50],"hipR":[24.1,35.6],"knR":[23,181.9],"ftR":[22,280.5],"hipL":[-22.9,40.2],"knL":[-24.6,170.8],"ftL":[-15.6,324.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-8.5,-84.5],"neck":[-8.5,-84.5],"head":[-23,-149.1],"shR":[44.3,-120.1],"elR":[61.1,-17.2],"haR":[67.6,40.8],"shL":[-63.7,-112.9],"elL":[-56.5,-16.3],"haL":[-65.8,49.7],"hipR":[22.4,36.3],"knR":[25.1,182.1],"ftR":[23.6,272.8],"hipL":[-24.6,39.1],"knL":[-25.7,171.9],"ftL":[-13,323.8]},{"rootY":-6.8,"hips":[0,0],"chest":[-8.3,-84.6],"neck":[-8.3,-84.6],"head":[-22.3,-149.3],"shR":[44.8,-119.8],"elR":[60.4,-16.8],"haR":[66.5,42],"shL":[-63.5,-113.6],"elL":[-58,-16.2],"haL":[-67.6,49.3],"hipR":[21.1,36.5],"knR":[27.8,180.5],"ftR":[25.1,266.5],"hipL":[-25.9,38],"knL":[-25.1,172.9],"ftL":[-9.8,323]},{"rootY":-6.2,"hips":[0,0],"chest":[-8.4,-84.7],"neck":[-8.4,-84.7],"head":[-21.8,-149.5],"shR":[45.1,-119.5],"elR":[58.5,-16.4],"haR":[64.5,42.9],"shL":[-63.5,-114.1],"elL":[-60,-15.8],"haL":[-70.2,49.3],"hipR":[20.5,36.4],"knR":[29.2,177.3],"ftR":[25.3,263],"hipL":[-26.5,37.4],"knL":[-24.1,174.3],"ftL":[-7.8,322.4]},{"rootY":-5.7,"hips":[0,0],"chest":[-8.2,-84.9],"neck":[-8.2,-84.9],"head":[-21.1,-149.8],"shR":[45.6,-119.2],"elR":[56.7,-15.9],"haR":[62.6,44.2],"shL":[-63.2,-114.5],"elL":[-62,-15.1],"haL":[-72.9,49.3],"hipR":[19.4,36.8],"knR":[29.2,173.4],"ftR":[26.1,263.9],"hipL":[-27.7,36.4],"knL":[-23.1,175.3],"ftL":[-5.5,321.8]},{"rootY":-6.2,"hips":[0,0],"chest":[-7.8,-85],"neck":[-7.8,-85],"head":[-20.2,-150],"shR":[46.3,-119],"elR":[54.8,-15.3],"haR":[60.5,46.2],"shL":[-62.8,-115],"elL":[-64,-14.6],"haL":[-75.6,49.1],"hipR":[18.6,37.1],"knR":[27,169.7],"ftR":[26.7,270.5],"hipL":[-28.4,36],"knL":[-22.8,176.1],"ftL":[-4,321.3]},{"rootY":-5.6,"hips":[0,0],"chest":[-7.4,-85.2],"neck":[-7.4,-85.2],"head":[-19,-150.2],"shR":[47,-118.6],"elR":[53,-14.8],"haR":[58.7,47.7],"shL":[-62.3,-115.3],"elL":[-65.4,-14.3],"haL":[-77.9,48.4],"hipR":[17.8,37.2],"knR":[24,165.7],"ftR":[26.6,279.9],"hipL":[-29.1,35.5],"knL":[-22.3,177.1],"ftL":[-2.4,320.5]},{"rootY":-5.3,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[-18.1,-150.4],"shR":[47.3,-118.2],"elR":[51.3,-14.3],"haR":[56.8,49.2],"shL":[-62.2,-115.8],"elL":[-67.3,-14.6],"haL":[-80.4,47],"hipR":[17.2,37.3],"knR":[20.1,162.3],"ftR":[24.5,291.2],"hipL":[-29.6,35.2],"knL":[-21.6,178.1],"ftL":[-0.5,320.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-7.2,-85.3],"neck":[-7.2,-85.3],"head":[-17.5,-150.4],"shR":[47.7,-117.7],"elR":[50.4,-13.9],"haR":[55.5,50.3],"shL":[-62.1,-116.3],"elL":[-69.1,-15],"haL":[-82.4,45.1],"hipR":[16.2,37.8],"knR":[16.8,160.8],"ftR":[21.8,303.1],"hipL":[-30.4,34.9],"knL":[-21.2,178.8],"ftL":[1.1,320]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.1,-85.3],"neck":[-7.1,-85.3],"head":[-16.7,-150.5],"shR":[48.1,-117.2],"elR":[49.9,-13.5],"haR":[54.5,51.3],"shL":[-61.7,-117],"elL":[-70.7,-15.7],"haL":[-83.7,42.6],"hipR":[15.5,38],"knR":[13.5,161.1],"ftR":[18.3,313.4],"hipL":[-30.9,34.8],"knL":[-20.5,179.4],"ftL":[2.9,320.2]},{"rootY":-7,"hips":[0,0],"chest":[-7,-85.3],"neck":[-7,-85.3],"head":[-15.7,-150.6],"shR":[48.5,-116.8],"elR":[49.7,-13.2],"haR":[53.6,52.1],"shL":[-61.4,-117.4],"elL":[-72.9,-16.4],"haL":[-84.8,39.7],"hipR":[15,38.4],"knR":[10.8,162.6],"ftR":[14.1,319.5],"hipL":[-31.3,34.9],"knL":[-19.4,179.6],"ftL":[4.7,320.1]},{"rootY":-6.6,"hips":[0,0],"chest":[-6.7,-85.4],"neck":[-6.7,-85.4],"head":[-14.7,-150.7],"shR":[48.9,-116.6],"elR":[49.4,-13.3],"haR":[52.9,52.3],"shL":[-61,-117.9],"elL":[-74.3,-17.1],"haL":[-85.6,36.8],"hipR":[14,38.7],"knR":[7.8,164.7],"ftR":[10.8,321.1],"hipL":[-32,34.6],"knL":[-18.4,178.8],"ftL":[6.2,319.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-6.9,-85.4],"neck":[-6.9,-85.4],"head":[-14.3,-150.7],"shR":[49,-116.1],"elR":[48.7,-13.2],"haR":[51.9,52.7],"shL":[-60.9,-118.4],"elL":[-75.9,-17.8],"haL":[-86.4,33.7],"hipR":[13.8,39],"knR":[4.5,165.1],"ftR":[7,319.4],"hipL":[-32.1,34.7],"knL":[-18,178.1],"ftL":[6,318.2]},{"rootY":-3,"hips":[0,0],"chest":[-6.7,-85.3],"neck":[-6.7,-85.3],"head":[-13.5,-150.7],"shR":[49.3,-115.8],"elR":[48.6,-13],"haR":[51.6,53.1],"shL":[-60.6,-118.7],"elL":[-76.9,-18.3],"haL":[-86.8,31.3],"hipR":[13.5,39.2],"knR":[3.7,164.3],"ftR":[4.3,319],"hipL":[-32.3,34.7],"knL":[-17.8,177.3],"ftL":[6.6,315]},{"rootY":-1.4,"hips":[0,0],"chest":[-6.4,-85.2],"neck":[-6.4,-85.2],"head":[-12.7,-150.7],"shR":[49.7,-115.5],"elR":[48.2,-13.1],"haR":[51.4,53.3],"shL":[-60.2,-118.9],"elL":[-77.3,-18.7],"haL":[-86.6,29.5],"hipR":[13.3,39.2],"knR":[2,163],"ftR":[3.5,319],"hipL":[-32.5,34.5],"knL":[-17,175.8],"ftL":[7.1,311.7]},{"rootY":-1.4,"hips":[0,0],"chest":[-6,-85.2],"neck":[-6,-85.2],"head":[-11,-150.7],"shR":[50.7,-114.6],"elR":[48.1,-12],"haR":[51.7,54.6],"shL":[-59.2,-120.1],"elL":[-75.9,-19.8],"haL":[-85.3,28.5],"hipR":[13.4,39.2],"knR":[0.8,162.6],"ftR":[4.1,319.3],"hipL":[-32.4,34.7],"knL":[-15.9,174.9],"ftL":[7.9,307.9]},{"rootY":-2.2,"hips":[0,0],"chest":[-5.4,-85.2],"neck":[-5.4,-85.2],"head":[-9.4,-150.6],"shR":[51.4,-114.1],"elR":[48,-11.6],"haR":[52.1,55.3],"shL":[-58.6,-120.2],"elL":[-74,-19.8],"haL":[-83.8,29.3],"hipR":[14.8,38.9],"knR":[1,163.3],"ftR":[4.9,320.5],"hipL":[-31.2,35.7],"knL":[-15.3,175.8],"ftL":[7.9,303.4]},{"rootY":-4,"hips":[0,0],"chest":[-5.1,-85.1],"neck":[-5.1,-85.1],"head":[-8.8,-150.6],"shR":[52.2,-113.3],"elR":[48.2,-10.9],"haR":[52.6,55.9],"shL":[-57.7,-121.1],"elL":[-71.9,-20.7],"haL":[-81.8,30.2],"hipR":[15,39],"knR":[1.7,165.4],"ftR":[6.1,322.5],"hipL":[-31,35.9],"knL":[-15.9,176.3],"ftL":[6.8,298.6]},{"rootY":-6.1,"hips":[0,0],"chest":[-4.5,-85.1],"neck":[-4.5,-85.1],"head":[-7.7,-150.6],"shR":[53.1,-112.7],"elR":[49,-10.4],"haR":[53.5,56.4],"shL":[-56.7,-121.8],"elL":[-69.8,-21.6],"haL":[-79.5,31.2],"hipR":[15.4,38.7],"knR":[2.6,167.7],"ftR":[7,324.3],"hipL":[-30.6,36.2],"knL":[-17.8,177.9],"ftL":[6.1,293.1]},{"rootY":-8.5,"hips":[0,0],"chest":[-4,-85.1],"neck":[-4,-85.1],"head":[-6.9,-150.6],"shR":[53.6,-112.5],"elR":[49.9,-10.3],"haR":[54.3,56.4],"shL":[-56.2,-121.6],"elL":[-68.9,-22],"haL":[-78,33.3],"hipR":[16.4,38.3],"knR":[3.1,170.1],"ftR":[7,326],"hipL":[-29.8,36.9],"knL":[-21.6,180.7],"ftL":[4,288.3]},{"rootY":-9.4,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.8,-150.6],"shR":[53.7,-112.5],"elR":[50.9,-10.4],"haR":[55,56.1],"shL":[-56,-121.6],"elL":[-67.9,-22.3],"haL":[-76.4,34.7],"hipR":[17.4,37.7],"knR":[3.5,171.7],"ftR":[7.1,326.6],"hipL":[-28.8,37.4],"knL":[-26.3,182.4],"ftL":[2.6,281.7]},{"rootY":-9.9,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.9,-150.6],"shR":[53.6,-112.7],"elR":[52.4,-10.5],"haR":[56.2,55.7],"shL":[-55.8,-121.5],"elL":[-66.8,-22.7],"haL":[-74.9,35.7],"hipR":[18.3,37],"knR":[3,173],"ftR":[7.1,326.7],"hipL":[-27.9,37.9],"knL":[-31.9,183],"ftL":[0.7,275.5]},{"rootY":-10,"hips":[0,0],"chest":[-4.4,-84.9],"neck":[-4.4,-84.9],"head":[-7.6,-150.5],"shR":[52.8,-113],"elR":[53.3,-10.5],"haR":[56.9,55.3],"shL":[-56.4,-120.9],"elL":[-65.9,-22.7],"haL":[-73.9,36.8],"hipR":[19,36.2],"knR":[1.8,173.9],"ftR":[6.7,326.1],"hipL":[-27.2,38.2],"knL":[-37.9,182.2],"ftL":[-1.4,269.7]},{"rootY":-9.2,"hips":[0,0],"chest":[-4.8,-84.8],"neck":[-4.8,-84.8],"head":[-8.3,-150.4],"shR":[52.2,-113.4],"elR":[54.4,-10.5],"haR":[58,54.8],"shL":[-56.6,-120.6],"elL":[-63.8,-22.8],"haL":[-72.2,37.9],"hipR":[19.2,35.7],"knR":[1.5,174.9],"ftR":[7.1,325.4],"hipL":[-26.9,38.4],"knL":[-43.9,179.9],"ftL":[-4,267]},{"rootY":-9.3,"hips":[0,0],"chest":[-5.3,-84.8],"neck":[-5.3,-84.8],"head":[-9.4,-150.4],"shR":[51.5,-113.7],"elR":[55.2,-10.4],"haR":[59.1,54.4],"shL":[-56.7,-120.3],"elL":[-60.9,-22.6],"haL":[-70.3,39.2],"hipR":[19.2,35.5],"knR":[1.5,176.1],"ftR":[8,325],"hipL":[-26.7,38.6],"knL":[-48.5,177.1],"ftL":[-7.5,269.3]},{"rootY":-9.2,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[-10.6,-150.4],"shR":[50.6,-113.8],"elR":[55.9,-10.2],"haR":[60.1,53.9],"shL":[-56.3,-120.4],"elL":[-57.1,-22.8],"haL":[-67.7,39.8],"hipR":[19.6,35.1],"knR":[1.7,177.2],"ftR":[9.4,324.4],"hipL":[-26.1,39.1],"knL":[-51.8,174.2],"ftL":[-12.1,275.2]},{"rootY":-9.2,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-11.8,-150.4],"shR":[49.7,-114.1],"elR":[57,-10.5],"haR":[61.3,52.9],"shL":[-56.1,-120],"elL":[-53.6,-22],"haL":[-65.2,41.5],"hipR":[20.3,34.5],"knR":[2.5,177.7],"ftR":[11,323.7],"hipL":[-25.2,39.7],"knL":[-54,171.4],"ftL":[-17.1,284.3]},{"rootY":-9.9,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-12.6,-150.4],"shR":[48.9,-114.5],"elR":[58.6,-10.7],"haR":[62.5,51.9],"shL":[-55.5,-119.7],"elL":[-50.4,-21.6],"haL":[-62.8,42.5],"hipR":[20.4,34.3],"knR":[4.2,178.6],"ftR":[13.4,323.3],"hipL":[-24.9,40],"knL":[-54.6,169.1],"ftL":[-21.9,295.3]},{"rootY":-11.1,"hips":[0,0],"chest":[-6.2,-84.7],"neck":[-6.2,-84.7],"head":[-13.9,-150.2],"shR":[48,-115],"elR":[60,-11.3],"haR":[63.5,50.4],"shL":[-55.1,-119],"elL":[-48.3,-21.2],"haL":[-60.6,43.5],"hipR":[20.8,34],"knR":[6.5,179.2],"ftR":[15.7,323.3],"hipL":[-24.2,40.6],"knL":[-54.6,167.8],"ftL":[-28,306.7]},{"rootY":-11.6,"hips":[0,0],"chest":[-7.8,-84.4],"neck":[-7.8,-84.4],"head":[-16.3,-149.9],"shR":[45.6,-115.2],"elR":[60.1,-11.5],"haR":[62.6,49.3],"shL":[-56.2,-118.4],"elL":[-47.8,-21],"haL":[-60.2,43.9],"hipR":[21.2,33.8],"knR":[7,179.4],"ftR":[16.7,323.5],"hipL":[-23.6,41],"knL":[-54.5,167.1],"ftL":[-37.3,316.2]},{"rootY":-12.4,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-16.9,-149.9],"shR":[44.5,-115.8],"elR":[61.3,-12.4],"haR":[62.7,47.6],"shL":[-55.5,-117.8],"elL":[-45.9,-20.7],"haL":[-58.2,44.4],"hipR":[20.1,34.6],"knR":[9.9,180.5],"ftR":[20.7,324.1],"hipL":[-24.5,40.8],"knL":[-52.9,168.1],"ftL":[-44.8,322.6]},{"rootY":-11.8,"hips":[0,0],"chest":[-7.8,-84.7],"neck":[-7.8,-84.7],"head":[-17.1,-150.1],"shR":[44.1,-116.5],"elR":[63.3,-13.3],"haR":[63.6,45.9],"shL":[-55,-117.6],"elL":[-44.2,-20.9],"haL":[-56.6,44.3],"hipR":[20,34.6],"knR":[14.4,179.9],"ftR":[25,323.9],"hipL":[-24.4,41.1],"knL":[-51,168.6],"ftL":[-52.1,324.1]},{"rootY":-10.4,"hips":[0,0],"chest":[-7.4,-84.9],"neck":[-7.4,-84.9],"head":[-17,-150.2],"shR":[43.9,-117.1],"elR":[64.2,-14.1],"haR":[63.8,43.7],"shL":[-54.2,-117.4],"elL":[-42.2,-20.7],"haL":[-54.5,44.6],"hipR":[19.5,34.9],"knR":[19.3,178.9],"ftR":[30.1,323],"hipL":[-24.7,41.1],"knL":[-50.8,167.4],"ftL":[-56.3,322]},{"rootY":-7.5,"hips":[0,0],"chest":[-8.7,-84.5],"neck":[-8.7,-84.5],"head":[-18.5,-149.8],"shR":[42,-117.1],"elR":[63.1,-14.3],"haR":[61.9,42.2],"shL":[-55.3,-116.7],"elL":[-41.9,-20.1],"haL":[-54.6,45.2],"hipR":[21.4,33.8],"knR":[20,177.1],"ftR":[31.5,319.9],"hipL":[-22.3,42.4],"knL":[-51.3,166.5],"ftL":[-59.5,320.7]},{"rootY":-5,"hips":[0,0],"chest":[-10.2,-84.4],"neck":[-10.2,-84.4],"head":[-19.8,-149.7],"shR":[40,-117.2],"elR":[61.3,-14.4],"haR":[59.9,41.2],"shL":[-56.6,-116.5],"elL":[-41.8,-19.7],"haL":[-54.4,45.7],"hipR":[20.6,34.2],"knR":[20.3,177],"ftR":[35.1,316.4],"hipL":[-23,42.1],"knL":[-51.9,166],"ftL":[-57.1,320.9]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-84.3],"neck":[-10.4,-84.3],"head":[-19.6,-149.7],"shR":[38.9,-117.7],"elR":[60.1,-15],"haR":[58.6,40.2],"shL":[-55.7,-115.6],"elL":[-39.8,-18.4],"haL":[-52,47.3],"hipR":[21.4,33.8],"knR":[22.6,175.5],"ftR":[39.3,312.4],"hipL":[-22.5,42.3],"knL":[-51.1,166.1],"ftL":[-52.9,321.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-11.3,-84.3],"neck":[-11.3,-84.3],"head":[-20.5,-149.6],"shR":[37.4,-118.6],"elR":[57.4,-15.6],"haR":[56,39.8],"shL":[-56.3,-114.5],"elL":[-39.3,-17.1],"haL":[-51.3,48.7],"hipR":[19.9,35.1],"knR":[21.7,176.7],"ftR":[43.3,308.5],"hipL":[-24.1,41.5],"knL":[-50.6,166.7],"ftL":[-48.3,322.2]},{"rootY":-7.4,"hips":[0,0],"chest":[-11.2,-84.5],"neck":[-11.2,-84.5],"head":[-20.8,-149.6],"shR":[37.2,-119],"elR":[55.6,-15.7],"haR":[54.2,40],"shL":[-56.3,-114.4],"elL":[-38.8,-16.4],"haL":[-50.3,49.5],"hipR":[18.7,35.5],"knR":[20.1,178.3],"ftR":[47.2,302.2],"hipL":[-25.1,41.1],"knL":[-50.2,168.7],"ftL":[-42.6,323.9]},{"rootY":-8.9,"hips":[0,0],"chest":[-11,-84.7],"neck":[-11,-84.7],"head":[-20.1,-149.8],"shR":[37.6,-119.1],"elR":[55.4,-15.6],"haR":[53.3,40.9],"shL":[-55.9,-114.6],"elL":[-37.8,-16.8],"haL":[-48.8,49.1],"hipR":[18.5,35.2],"knR":[19.1,179.6],"ftR":[49.6,294.8],"hipL":[-25.2,40.9],"knL":[-49.8,170.9],"ftL":[-38,325.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-10.7,-84.8],"neck":[-10.7,-84.8],"head":[-19.3,-150],"shR":[38.2,-119.2],"elR":[55.5,-15.7],"haR":[52.8,41.2],"shL":[-55.6,-114.5],"elL":[-38,-16.4],"haL":[-48.3,49.7],"hipR":[17.6,35.3],"knR":[18,181.2],"ftR":[50.8,287.5],"hipL":[-26,40.4],"knL":[-49.5,172.3],"ftL":[-32.7,326]},{"rootY":-9.2,"hips":[0,0],"chest":[-10.9,-84.9],"neck":[-10.9,-84.9],"head":[-18.8,-150.1],"shR":[38.3,-119.2],"elR":[55.1,-15.7],"haR":[51.6,41.2],"shL":[-55.7,-114.6],"elL":[-38.5,-16.8],"haL":[-49.2,48.9],"hipR":[15.3,36.4],"knR":[16.2,182.7],"ftR":[51.5,280.1],"hipL":[-28.1,39.2],"knL":[-48.7,172.9],"ftL":[-26.4,325.3]},{"rootY":-7.9,"hips":[0,0],"chest":[-10.5,-85],"neck":[-10.5,-85],"head":[-17.7,-150.3],"shR":[39.1,-119],"elR":[54.9,-15.5],"haR":[50.3,41.6],"shL":[-55.4,-114.8],"elL":[-40.1,-16.8],"haL":[-51.1,48.5],"hipR":[13.6,36.6],"knR":[14.7,181.8],"ftR":[51.6,272.6],"hipL":[-29.5,38.1],"knL":[-47.5,173.2],"ftL":[-20.1,323.9]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.9,-150.3],"shR":[39.8,-118.3],"elR":[54.1,-14.6],"haR":[49.2,43.1],"shL":[-55,-115.7],"elL":[-42.6,-16.7],"haL":[-54.9,48.1],"hipR":[13.7,36],"knR":[12.3,178.9],"ftR":[49.1,266.5],"hipL":[-29.4,38.1],"knL":[-46.2,174],"ftL":[-15.6,322.6]},{"rootY":-4.9,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.2,-150.3],"shR":[40,-117.8],"elR":[52.7,-14.1],"haR":[47.4,44.5],"shL":[-54.8,-116.3],"elL":[-44.8,-16.6],"haL":[-59.1,47.4],"hipR":[13.1,35.8],"knR":[8.7,175.4],"ftR":[45.5,263.8],"hipL":[-30,37.6],"knL":[-45.4,174.4],"ftL":[-11.5,320.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-10.4,-85],"neck":[-10.4,-85],"head":[-15.3,-150.6],"shR":[40.3,-117.2],"elR":[50.6,-13.3],"haR":[46.1,46.5],"shL":[-54.8,-117],"elL":[-47,-16.9],"haL":[-63.7,45.8],"hipR":[11.1,36.7],"knR":[4,171.9],"ftR":[42.5,266.6],"hipL":[-31.6,36.4],"knL":[-44.2,174.5],"ftL":[-7.4,319.3]},{"rootY":-2.7,"hips":[0,0],"chest":[-9.5,-85.2],"neck":[-9.5,-85.2],"head":[-13.8,-150.8],"shR":[41.5,-117],"elR":[49.7,-12.8],"haR":[45.9,48.2],"shL":[-53.8,-117.5],"elL":[-48.3,-17],"haL":[-67.6,44],"hipR":[9.8,37],"knR":[-0.7,168.6],"ftR":[39.1,273.2],"hipL":[-32.6,35.6],"knL":[-42.2,175.2],"ftL":[-2.4,318.1]},{"rootY":-2.4,"hips":[0,0],"chest":[-9.4,-85.2],"neck":[-9.4,-85.2],"head":[-13.4,-150.7],"shR":[41.9,-116.6],"elR":[48.1,-12.3],"haR":[45.2,49.8],"shL":[-53.3,-117.7],"elL":[-50.2,-17.1],"haL":[-72,41.9],"hipR":[9.1,36.9],"knR":[-7.2,165.1],"ftR":[32.5,283],"hipL":[-33,35.3],"knL":[-40.3,176.3],"ftL":[0.9,317.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-12.3,-150.9],"shR":[42.4,-116.4],"elR":[47.6,-12.1],"haR":[45.4,51],"shL":[-52.5,-117.8],"elL":[-51.8,-17.2],"haL":[-76.1,39.6],"hipR":[7.6,37.4],"knR":[-12.6,163],"ftR":[25.1,294.6],"hipL":[-33.9,34.6],"knL":[-37.4,176.9],"ftL":[5.3,317.7]},{"rootY":-4.5,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-11.7,-150.9],"shR":[42.4,-115.7],"elR":[47.3,-11.6],"haR":[45.2,52.1],"shL":[-52.5,-118.5],"elL":[-54.4,-18],"haL":[-80.5,36.9],"hipR":[7.7,37.6],"knR":[-17.3,162.2],"ftR":[15.5,306],"hipL":[-33.6,35],"knL":[-34.7,178.4],"ftL":[7.9,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-10.5,-151],"shR":[43.3,-115.3],"elR":[48.5,-11.4],"haR":[46.5,52.8],"shL":[-51.3,-119],"elL":[-55.6,-18.7],"haL":[-83.8,34.2],"hipR":[5.1,38],"knR":[-19.8,163.5],"ftR":[7.6,316],"hipL":[-34.8,33.9],"knL":[-31.3,178.3],"ftL":[12.6,319.2]},{"rootY":-8.3,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-9.8,-151.1],"shR":[43.3,-115],"elR":[49.7,-11.4],"haR":[47.1,53.4],"shL":[-50.8,-119.1],"elL":[-57.3,-19],"haL":[-86.7,32.2],"hipR":[6.6,37.8],"knR":[-22,164.7],"ftR":[-2.5,320.7],"hipL":[-33.4,35.3],"knL":[-28.5,180.2],"ftL":[13.9,320.9]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.9,-85.4],"neck":[-8.9,-85.4],"head":[-9.2,-151.1],"shR":[42.8,-114.8],"elR":[49.9,-11.5],"haR":[47.1,53.5],"shL":[-49.8,-119.4],"elL":[-58.2,-19.7],"haL":[-89.2,29.7],"hipR":[4.3,38.4],"knR":[-19.7,169.6],"ftR":[-4.4,324.8],"hipL":[-34.3,34.5],"knL":[-28.3,179.5],"ftL":[16,318.1]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-9,-151.1],"shR":[41.9,-114.3],"elR":[49.9,-11.4],"haR":[46.9,53.9],"shL":[-49.5,-119.9],"elL":[-59.3,-20.4],"haL":[-91.7,27.9],"hipR":[3.3,38.6],"knR":[-18.9,171.4],"ftR":[-14.7,324.6],"hipL":[-34.3,34.5],"knL":[-28.5,179.6],"ftL":[17.5,316.4]},{"rootY":-2.5,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-8.7,-150.8],"shR":[41.1,-114.3],"elR":[50.2,-11.8],"haR":[47,53.9],"shL":[-47.8,-119.7],"elL":[-58.5,-20.4],"haL":[-92.3,26.8],"hipR":[3,38.5],"knR":[-20.7,170.6],"ftR":[-17.3,323.8],"hipL":[-33.9,34.8],"knL":[-27.5,179.9],"ftL":[20.6,314.7]},{"rootY":0.8,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[-9.2,-151],"shR":[39.3,-114.3],"elR":[48.9,-12.3],"haR":[45.9,53.5],"shL":[-47.6,-119.4],"elL":[-57.6,-20.2],"haL":[-93.6,26.4],"hipR":[1,38.9],"knR":[-25.5,170.1],"ftR":[-16.3,324.3],"hipL":[-34.7,33.8],"knL":[-28.4,178.9],"ftL":[22.9,310.3]},{"rootY":3.3,"hips":[0,0],"chest":[-11,-85.1],"neck":[-11,-85.1],"head":[-9.4,-150.8],"shR":[37.5,-114.1],"elR":[47.3,-11.7],"haR":[44.6,54.8],"shL":[-47.6,-120],"elL":[-56.2,-20.7],"haL":[-92.9,25.9],"hipR":[-0.4,38.8],"knR":[-29.5,170.7],"ftR":[-14.6,325.6],"hipL":[-34.7,33.6],"knL":[-29.5,178.7],"ftL":[24.9,306.2]},{"rootY":2.7,"hips":[0,0],"chest":[-11.3,-85.1],"neck":[-11.3,-85.1],"head":[-9.1,-150.8],"shR":[36.1,-113.9],"elR":[45.7,-11.5],"haR":[43.6,55.4],"shL":[-46.9,-120.4],"elL":[-53.4,-20.4],"haL":[-91.9,27.8],"hipR":[-1.4,38.8],"knR":[-34.6,170.2],"ftR":[-18.9,325.4],"hipL":[-34.3,33.7],"knL":[-29.4,178.6],"ftL":[27.2,303.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-11.7,-85],"neck":[-11.7,-85],"head":[-9.1,-150.7],"shR":[34,-113.8],"elR":[44.2,-11.4],"haR":[42.7,55.7],"shL":[-44.5,-120],"elL":[-47.7,-20],"haL":[-86.4,29.8],"hipR":[-1.5,38.3],"knR":[-43.8,166.3],"ftR":[-26.4,321.8],"hipL":[-33.5,34.4],"knL":[-24.7,178.4],"ftL":[28.8,305.4]},{"rootY":-4,"hips":[0,0],"chest":[-11.9,-85],"neck":[-11.9,-85],"head":[-9.1,-150.8],"shR":[32,-114.2],"elR":[43.1,-11.7],"haR":[41.7,55.5],"shL":[-42.7,-119.6],"elL":[-39.9,-21.9],"haL":[-77.2,28.3],"hipR":[-1.5,38.2],"knR":[-45.6,166.8],"ftR":[-24.2,322.4],"hipL":[-32.8,35],"knL":[-25.4,178.7],"ftL":[28.8,302.6]},{"rootY":-5.5,"hips":[0,0],"chest":[-12.2,-85],"neck":[-12.2,-85],"head":[-9.3,-150.7],"shR":[29.8,-114],"elR":[42,-11.3],"haR":[39.7,55.8],"shL":[-41.1,-119.9],"elL":[-37,-20.3],"haL":[-72.8,34.5],"hipR":[-2.2,37.8],"knR":[-47.3,168.3],"ftR":[-21.9,323.5],"hipL":[-32,35.5],"knL":[-26.1,179],"ftL":[29.2,300.1]},{"rootY":-6.7,"hips":[0,0],"chest":[-12.4,-84.9],"neck":[-12.4,-84.9],"head":[-9.4,-150.7],"shR":[26.9,-114.4],"elR":[40.3,-11.6],"haR":[36.7,55.3],"shL":[-38.3,-119.4],"elL":[-31.4,-20],"haL":[-64.2,37.7],"hipR":[-2.8,37.6],"knR":[-48,170],"ftR":[-19.3,324.5],"hipL":[-31.1,36],"knL":[-26.6,179.3],"ftL":[31.3,297.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[-10.5,-150.7],"shR":[24.4,-113.6],"elR":[39.2,-10.6],"haR":[33.9,55.9],"shL":[-37.8,-120.2],"elL":[-29.1,-21],"haL":[-58.3,39],"hipR":[-3.4,37.2],"knR":[-48.3,171.3],"ftR":[-17.1,325.2],"hipL":[-29.4,37.1],"knL":[-28.3,180.5],"ftL":[34,295.5]},{"rootY":-8.2,"hips":[0,0],"chest":[-14.4,-84.6],"neck":[-14.4,-84.6],"head":[-11.2,-150.5],"shR":[20.4,-112.8],"elR":[38.3,-9.8],"haR":[30,56.1],"shL":[-36,-120.8],"elL":[-24.1,-22.1],"haL":[-49.9,39.7],"hipR":[-4.8,37.3],"knR":[-49.6,172.4],"ftR":[-15.5,325.5],"hipL":[-28.1,37.4],"knL":[-29.6,181],"ftL":[39,292]},{"rootY":-8.9,"hips":[0,0],"chest":[-15.6,-84.4],"neck":[-15.6,-84.4],"head":[-13.1,-150.3],"shR":[16,-112.5],"elR":[35.3,-9.5],"haR":[24.8,55.6],"shL":[-34.4,-120.7],"elL":[-20.7,-21.9],"haL":[-42.7,41.2],"hipR":[-6.4,37.3],"knR":[-50.2,173.6],"ftR":[-13.8,325.9],"hipL":[-26.6,37.8],"knL":[-30.4,181.6],"ftL":[46.1,288.4]},{"rootY":-9.2,"hips":[0,0],"chest":[-17.5,-84],"neck":[-17.5,-84],"head":[-15.2,-149.9],"shR":[11.1,-111.4],"elR":[31.8,-8.5],"haR":[18.8,55.6],"shL":[-34.2,-121.4],"elL":[-16.8,-23.2],"haL":[-37.1,40.3],"hipR":[-7.8,37.6],"knR":[-51.5,174.8],"ftR":[-12.6,326.2],"hipL":[-25.4,37.9],"knL":[-32,181.6],"ftL":[54,284.5]},{"rootY":-10.1,"hips":[0,0],"chest":[-18.9,-83.8],"neck":[-18.9,-83.8],"head":[-16.4,-149.6],"shR":[4.9,-111.1],"elR":[27.1,-8.6],"haR":[11.9,54.6],"shL":[-31.7,-121.3],"elL":[-11.7,-23.6],"haL":[-30.7,40.2],"hipR":[-9,37.7],"knR":[-52.4,175.8],"ftR":[-12,326.7],"hipL":[-23.7,38.2],"knL":[-34.5,181.8],"ftL":[60.6,283.4]},{"rootY":-10.8,"hips":[0,0],"chest":[-19.6,-83.6],"neck":[-19.6,-83.6],"head":[-18.2,-149.4],"shR":[-0.8,-110.6],"elR":[22.5,-8.6],"haR":[5.1,53.6],"shL":[-28.6,-121.6],"elL":[-5.2,-24.9],"haL":[-24.1,38.8],"hipR":[-10.6,38.1],"knR":[-53.5,176.8],"ftR":[-11.1,327.1],"hipL":[-21.7,38.3],"knL":[-35.7,181.8],"ftL":[66.1,284.2]},{"rootY":-11.1,"hips":[0,0],"chest":[-20.5,-83.4],"neck":[-20.5,-83.4],"head":[-19.2,-149.2],"shR":[-6.9,-110.6],"elR":[17.9,-9.6],"haR":[-1.8,51.9],"shL":[-25.1,-121.2],"elL":[1.4,-25.1],"haL":[-18.2,38.2],"hipR":[-12.2,38.3],"knR":[-54.7,177.7],"ftR":[-10.1,327.4],"hipL":[-19.8,38.2],"knL":[-36,181.7],"ftL":[70.5,286.5]},{"rootY":-11.4,"hips":[0,0],"chest":[-20.8,-83.4],"neck":[-20.8,-83.4],"head":[-19.8,-149.1],"shR":[-12.1,-110.4],"elR":[12.3,-10],"haR":[-8.9,50.8],"shL":[-20.9,-121.4],"elL":[7.9,-25.6],"haL":[-13,37.1],"hipR":[-14.1,38.2],"knR":[-55.5,178.4],"ftR":[-8.5,327.4],"hipL":[-18.1,38.3],"knL":[-35,181.5],"ftL":[73.6,290]},{"rootY":-11.7,"hips":[0,0],"chest":[-20.6,-83.4],"neck":[-20.6,-83.4],"head":[-20.4,-149.4],"shR":[-16.8,-109.8],"elR":[7.4,-10.1],"haR":[-15.8,50.2],"shL":[-16.1,-122.1],"elL":[14.6,-26.5],"haL":[-7.5,35.5],"hipR":[-15.6,38.6],"knR":[-56.5,179],"ftR":[-7,327.4],"hipL":[-15.4,38.3],"knL":[-31.9,181.8],"ftL":[75.9,293.6]},{"rootY":-11.2,"hips":[0,0],"chest":[-20.7,-83.4],"neck":[-20.7,-83.4],"head":[-20.4,-149.3],"shR":[-20.9,-109.4],"elR":[2.6,-10.5],"haR":[-22.5,49.4],"shL":[-12.1,-122.3],"elL":[19.8,-26.7],"haL":[-3.3,34.6],"hipR":[-17.6,38.4],"knR":[-57.1,179.3],"ftR":[-5.6,327.2],"hipL":[-13.2,38.3],"knL":[-28.3,181.8],"ftL":[75.3,296.9]},{"rootY":-11,"hips":[0,0],"chest":[-19.9,-83.6],"neck":[-19.9,-83.6],"head":[-19.4,-149.5],"shR":[-24.7,-109.6],"elR":[-2.1,-11.3],"haR":[-28.8,48.3],"shL":[-7.8,-122.5],"elL":[24.5,-26.6],"haL":[0.7,34],"hipR":[-19.3,38.4],"knR":[-57.6,179.5],"ftR":[-4.3,326.9],"hipL":[-10.6,38.4],"knL":[-23.7,182.3],"ftL":[72.8,300.7]},{"rootY":-10.4,"hips":[0,0],"chest":[-19.7,-83.6],"neck":[-19.7,-83.6],"head":[-18.5,-149.5],"shR":[-28.7,-109.8],"elR":[-7.5,-11.3],"haR":[-35.4,48.1],"shL":[-3.3,-122.3],"elL":[28.6,-26.1],"haL":[4.6,33.9],"hipR":[-21.2,38.1],"knR":[-59,179.1],"ftR":[-3.8,326],"hipL":[-7.9,38.8],"knL":[-18.6,183.1],"ftL":[67.6,304.4]},{"rootY":-10.2,"hips":[0,0],"chest":[-19.2,-83.6],"neck":[-19.2,-83.6],"head":[-18.8,-149.6],"shR":[-32.1,-109],"elR":[-12.2,-10.6],"haR":[-41.5,48.8],"shL":[0.7,-122.9],"elL":[32,-26.2],"haL":[7.9,33.2],"hipR":[-22.7,38.1],"knR":[-60.3,178.7],"ftR":[-3,325],"hipL":[-5.1,39],"knL":[-13.4,183.5],"ftL":[59.7,307.7]},{"rootY":-1.9,"hips":[0,0],"chest":[-18,-83.8],"neck":[-18,-83.8],"head":[-16.7,-149.7],"shR":[-35.5,-109.3],"elR":[-18,-10.2],"haR":[-47.4,49.4],"shL":[6.2,-122.8],"elL":[36.4,-25.8],"haL":[13.3,33.5],"hipR":[-23.7,38.4],"knR":[-52.9,180.5],"ftR":[4.3,324.3],"hipL":[-2.5,38.6],"knL":[-14.2,182.6],"ftL":[50.3,302.8]},{"rootY":-1.2,"hips":[0,0],"chest":[-17.1,-83.8],"neck":[-17.1,-83.8],"head":[-15.2,-149.6],"shR":[-38.7,-109.4],"elR":[-22.5,-9.8],"haR":[-52.8,49.9],"shL":[10.8,-122.8],"elL":[40.2,-25.5],"haL":[17.2,33.4],"hipR":[-24.8,38.4],"knR":[-52.9,180.3],"ftR":[5.2,324.1],"hipL":[0.7,38.7],"knL":[-10.8,183],"ftL":[44.2,304.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-14.1,-149.5],"shR":[-42,-109.3],"elR":[-27.4,-9],"haR":[-58.2,50.8],"shL":[15.7,-122.7],"elL":[44.1,-25.1],"haL":[21.8,33.6],"hipR":[-25.4,38.7],"knR":[-53.3,180.1],"ftR":[6.6,324.2],"hipL":[4.1,38.4],"knL":[-8.8,182.8],"ftL":[40.1,308.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-14.5,-83.9],"neck":[-14.5,-83.9],"head":[-12.5,-149.7],"shR":[-44.9,-109.7],"elR":[-31.4,-9.2],"haR":[-62.4,50.9],"shL":[20.8,-122.7],"elL":[48.9,-25.1],"haL":[26.1,33.4],"hipR":[-25.9,38.7],"knR":[-55.1,179.5],"ftR":[6.7,323.2],"hipL":[6,38.2],"knL":[-7.5,182.6],"ftL":[38.8,311]},{"rootY":0,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-11.2,-149.7],"shR":[-47.2,-110],"elR":[-34.4,-9.2],"haR":[-65.3,51],"shL":[26.3,-122.4],"elL":[53.2,-24.6],"haL":[33,33.5],"hipR":[-26.2,38.7],"knR":[-56.3,178.8],"ftR":[8.7,321.5],"hipL":[8.1,38.1],"knL":[-4,182.6],"ftL":[39.4,313.4]},{"rootY":1.1,"hips":[0,0],"chest":[-11.3,-84.2],"neck":[-11.3,-84.2],"head":[-9.4,-149.9],"shR":[-49.9,-111.1],"elR":[-38.6,-10.1],"haR":[-68.8,50.3],"shL":[30.8,-121.9],"elL":[56.8,-23.9],"haL":[38,33.9],"hipR":[-26.2,38.8],"knR":[-57.7,178.4],"ftR":[9.2,320.6],"hipL":[9.9,37.9],"knL":[-2.2,182.3],"ftL":[39.3,314.2]},{"rootY":1.8,"hips":[0,0],"chest":[-9.9,-83.8],"neck":[-9.9,-83.8],"head":[-7.5,-149.5],"shR":[-51.4,-109.6],"elR":[-41.9,-8.4],"haR":[-71,52],"shL":[34.3,-122.4],"elL":[59.3,-24.3],"haL":[42.5,33.3],"hipR":[-26.1,38.9],"knR":[-57.2,178.4],"ftR":[9.4,320.8],"hipL":[12.1,37.7],"knL":[0.2,181.7],"ftL":[37.1,314.3]},{"rootY":1.8,"hips":[0,0],"chest":[-9.3,-83.8],"neck":[-9.3,-83.8],"head":[-6.1,-149.5],"shR":[-53.4,-110.3],"elR":[-45.7,-8.9],"haR":[-73.3,51.4],"shL":[37.1,-121.8],"elL":[60.6,-23.5],"haL":[47.1,34],"hipR":[-25.8,39],"knR":[-59.2,177.6],"ftR":[7.2,320],"hipL":[14.1,37.4],"knL":[1.4,181],"ftL":[34.5,314.4]},{"rootY":2.2,"hips":[0,0],"chest":[-8.8,-83.7],"neck":[-8.8,-83.7],"head":[-4.8,-149.4],"shR":[-55.6,-110.9],"elR":[-49.5,-9.3],"haR":[-75.6,50.7],"shL":[40.1,-121],"elL":[61.8,-22.4],"haL":[52.3,35.3],"hipR":[-25.5,39.1],"knR":[-61.3,176.4],"ftR":[5.3,318.7],"hipL":[15.7,37.1],"knL":[2.3,180.1],"ftL":[32.3,314.3]},{"rootY":2.5,"hips":[0,0],"chest":[-7.8,-83.6],"neck":[-7.8,-83.6],"head":[-3.1,-149.2],"shR":[-56.8,-111.2],"elR":[-52.7,-9.7],"haR":[-76.8,49.8],"shL":[42.7,-120.5],"elL":[62.6,-21.7],"haL":[57.5,35.4],"hipR":[-25.2,39.1],"knR":[-63.3,174.9],"ftR":[3.8,316.6],"hipL":[16.9,36.8],"knL":[3.4,179.4],"ftL":[30.3,314.4]},{"rootY":2.7,"hips":[0,0],"chest":[-6.5,-83.5],"neck":[-6.5,-83.5],"head":[-0.8,-149.1],"shR":[-57.4,-111.2],"elR":[-55.7,-9.7],"haR":[-77.9,49.3],"shL":[45.2,-120.2],"elL":[63.7,-21.5],"haL":[63.2,36.6],"hipR":[-24.9,39],"knR":[-63.7,173.9],"ftR":[3.5,314.6],"hipL":[18.2,36.6],"knL":[4.8,179],"ftL":[29,314.9]},{"rootY":-6.3,"hips":[0,0],"chest":[-5.8,-83.7],"neck":[-5.8,-83.7],"head":[0.7,-149.3],"shR":[-58.6,-114],"elR":[-58.5,-12.1],"haR":[-78.8,46.4],"shL":[47.9,-118.6],"elL":[65,-19.5],"haL":[69.6,39.2],"hipR":[-24.8,38.9],"knR":[-66.7,172.1],"ftR":[-17.7,314],"hipL":[19.1,36.6],"knL":[9.1,180.4],"ftL":[28.7,320.5]},{"rootY":-6.3,"hips":[0,0],"chest":[-4.1,-84],"neck":[-4.1,-84],"head":[3.2,-149.4],"shR":[-57,-113.2],"elR":[-58.5,-11],"haR":[-77.4,47.1],"shL":[49.9,-119.1],"elL":[66,-20.2],"haL":[74.7,39.4],"hipR":[-24.3,38.9],"knR":[-62.1,173.3],"ftR":[-21.6,314.2],"hipL":[20.3,36.4],"knL":[12.6,180.8],"ftL":[28.2,324.1]},{"rootY":-6.9,"hips":[0,0],"chest":[-2.5,-84.1],"neck":[-2.5,-84.1],"head":[5.5,-149.6],"shR":[-55.9,-113.6],"elR":[-58.3,-11],"haR":[-75.7,47.1],"shL":[52.1,-118.9],"elL":[67.6,-20],"haL":[80.4,40.6],"hipR":[-24.2,38.6],"knR":[-55.4,175.2],"ftR":[-26.7,316.3],"hipL":[21,36.5],"knL":[14.1,180.9],"ftL":[28.3,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[-1.2,-84.2],"neck":[-1.2,-84.2],"head":[7.7,-149.5],"shR":[-55.1,-114.3],"elR":[-57.8,-11.5],"haR":[-73.8,46.5],"shL":[54,-118.3],"elL":[69.6,-19.6],"haL":[85.5,41.7],"hipR":[-23.8,38.4],"knR":[-46.9,177.4],"ftR":[-29.7,319.1],"hipL":[22.4,36.6],"knL":[16.3,180.9],"ftL":[29.5,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[0.6,-84.5],"neck":[0.6,-84.5],"head":[10.6,-149.6],"shR":[-53.6,-115.2],"elR":[-56.8,-12.3],"haR":[-71.1,45.8],"shL":[56.3,-117.8],"elL":[72.3,-19.3],"haL":[90.4,42.4],"hipR":[-23,38.2],"knR":[-37.3,179.6],"ftR":[-30.3,321.5],"hipL":[23.8,36.8],"knL":[19.8,181],"ftL":[31.3,324.7]},{"rootY":-6.3,"hips":[0,0],"chest":[1.9,-84.5],"neck":[1.9,-84.5],"head":[12.9,-149.5],"shR":[-52.4,-115.9],"elR":[-56,-13],"haR":[-68.9,45.4],"shL":[58,-116.9],"elL":[74.4,-18.8],"haL":[94.4,43.3],"hipR":[-22.2,38.4],"knR":[-31.2,181.2],"ftR":[-30.6,323.2],"hipL":[24.7,36.6],"knL":[21.6,180.8],"ftL":[32.1,324.4]},{"rootY":-6.5,"hips":[0,0],"chest":[2.9,-84.4],"neck":[2.9,-84.4],"head":[14.5,-149.3],"shR":[-51.6,-116.2],"elR":[-55.8,-13.3],"haR":[-66.6,45.8],"shL":[58.9,-116.4],"elL":[75.1,-18.3],"haL":[96.5,44.1],"hipR":[-22.3,38.1],"knR":[-28,181.4],"ftR":[-28.1,323.7],"hipL":[24.8,36.9],"knL":[22.8,181.1],"ftL":[33.2,324.8]},{"rootY":-6.9,"hips":[0,0],"chest":[3.1,-84.7],"neck":[3.1,-84.7],"head":[15.2,-149.4],"shR":[-51.5,-116.9],"elR":[-56.1,-14],"haR":[-65.4,45.6],"shL":[59.1,-116.3],"elL":[74.3,-18],"haL":[96.5,44.7],"hipR":[-22.2,37.7],"knR":[-26.1,181.4],"ftR":[-26,323.4],"hipL":[25.1,37.1],"knL":[23.9,181.4],"ftL":[33.8,324.9]},{"rootY":-7.2,"hips":[0,0],"chest":[3.7,-84.6],"neck":[3.7,-84.6],"head":[16,-149.3],"shR":[-50.9,-117.2],"elR":[-56.3,-14.4],"haR":[-64.2,45.8],"shL":[59.6,-115.8],"elL":[73,-17.6],"haL":[95.4,45.2],"hipR":[-21.9,37.6],"knR":[-25.1,181.4],"ftR":[-24.2,323.1],"hipL":[25.4,37.4],"knL":[25.6,181.6],"ftL":[35.2,325.3]},{"rootY":-7.1,"hips":[0,0],"chest":[4.3,-84.6],"neck":[4.3,-84.6],"head":[16.8,-149.3],"shR":[-50.4,-117.1],"elR":[-56.3,-14.5],"haR":[-63,46.3],"shL":[60,-115.9],"elL":[71.2,-17.7],"haL":[93.1,45.3],"hipR":[-22,37.7],"knR":[-26.5,181.6],"ftR":[-24.3,323.5],"hipL":[25.3,37.3],"knL":[25.7,181.6],"ftL":[35.8,325]},{"rootY":-7,"hips":[0,0],"chest":[5.3,-84.6],"neck":[5.3,-84.6],"head":[17.6,-149.2],"shR":[-49.5,-117.1],"elR":[-55.6,-14.6],"haR":[-61.4,46.6],"shL":[60.8,-115.5],"elL":[69.5,-17.9],"haL":[90.6,45.4],"hipR":[-21.2,37.8],"knR":[-25.7,182],"ftR":[-22.9,323.5],"hipL":[26.1,37.3],"knL":[28.5,181.7],"ftL":[38,325.1]},{"rootY":-6.9,"hips":[0,0],"chest":[5.4,-84.6],"neck":[5.4,-84.6],"head":[18,-149.2],"shR":[-49.3,-117.4],"elR":[-55.1,-14.7],"haR":[-60.5,46.8],"shL":[60.8,-115.8],"elL":[67.4,-18.4],"haL":[87.3,45.3],"hipR":[-21.5,37.8],"knR":[-26.6,182.1],"ftR":[-22.4,323.6],"hipL":[25.8,37.3],"knL":[28.2,181.8],"ftL":[38.9,324.9]},{"rootY":-6.6,"hips":[0,0],"chest":[5.5,-84.4],"neck":[5.5,-84.4],"head":[18,-148.9],"shR":[-49,-117.6],"elR":[-54.1,-15],"haR":[-58.8,46.8],"shL":[61.1,-115.1],"elL":[65.4,-18],"haL":[84,46.1],"hipR":[-21.6,37.6],"knR":[-25.2,182.3],"ftR":[-19.8,323.6],"hipL":[25.7,37.7],"knL":[29.2,182.1],"ftL":[40.6,324.8]},{"rootY":-6.5,"hips":[0,0],"chest":[6,-84.7],"neck":[6,-84.7],"head":[18.4,-149.4],"shR":[-48.6,-117.7],"elR":[-53.3,-15.2],"haR":[-57.9,46.8],"shL":[61.4,-115.5],"elL":[63.3,-18.7],"haL":[80.5,45.7],"hipR":[-21.9,37.3],"knR":[-22.6,182.3],"ftR":[-16.9,323.3],"hipL":[25.4,38.1],"knL":[30.4,182.5],"ftL":[42.9,324.6]},{"rootY":-6.4,"hips":[0,0],"chest":[6.9,-84.8],"neck":[6.9,-84.8],"head":[19.4,-149.4],"shR":[-47.6,-117.9],"elR":[-52.1,-15.2],"haR":[-56,47.4],"shL":[62.4,-115.8],"elL":[62.1,-19],"haL":[77.9,45.7],"hipR":[-21.1,37.2],"knR":[-18.1,182.6],"ftR":[-13.1,322.7],"hipL":[26,38.5],"knL":[33,182.6],"ftL":[46.4,324]},{"rootY":-5.9,"hips":[0,0],"chest":[6.3,-84.5],"neck":[6.3,-84.5],"head":[18.4,-149.3],"shR":[-48.2,-117.6],"elR":[-52.3,-15.1],"haR":[-56.1,47.4],"shL":[61.8,-115.3],"elL":[59.4,-18.8],"haL":[73.6,46.1],"hipR":[-23.2,36.8],"knR":[-20.5,182],"ftR":[-13.3,323.1],"hipL":[24,38.7],"knL":[29.3,182.9],"ftL":[45.6,322.6]},{"rootY":-5.5,"hips":[0,0],"chest":[6.5,-84.4],"neck":[6.5,-84.4],"head":[18.6,-149.2],"shR":[-48,-117.5],"elR":[-52.1,-15.1],"haR":[-55.7,47.6],"shL":[62.1,-115.6],"elL":[58.4,-19.1],"haL":[71,45.9],"hipR":[-23.8,36.4],"knR":[-19.5,181.7],"ftR":[-11.4,322.9],"hipL":[23.4,39.2],"knL":[29,182.9],"ftL":[47.1,320.5]},{"rootY":-5,"hips":[0,0],"chest":[7.9,-84.3],"neck":[7.9,-84.3],"head":[19.9,-149.1],"shR":[-46.7,-117.3],"elR":[-50.9,-14.9],"haR":[-54.5,48.3],"shL":[63.5,-115.5],"elL":[58.9,-19.3],"haL":[69.9,45.6],"hipR":[-23.2,35.8],"knR":[-14.8,181.4],"ftR":[-6.4,322],"hipL":[23.7,39.7],"knL":[32,182.4],"ftL":[50.9,317]},{"rootY":-4.5,"hips":[0,0],"chest":[8.4,-84],"neck":[8.4,-84],"head":[20.5,-149],"shR":[-46,-117.3],"elR":[-50.4,-15],"haR":[-54,48.5],"shL":[64.2,-115],"elL":[59.4,-18.8],"haL":[69,46],"hipR":[-23.7,35.3],"knR":[-13.1,180.9],"ftR":[-3.5,321.8],"hipL":[23.1,40.2],"knL":[32.6,180.9],"ftL":[54.1,311.8]},{"rootY":-4.1,"hips":[0,0],"chest":[8.4,-84.1],"neck":[8.4,-84.1],"head":[20.6,-149.1],"shR":[-45.9,-117.7],"elR":[-50.5,-15.3],"haR":[-54.4,48.5],"shL":[64.2,-115.2],"elL":[59.6,-18.9],"haL":[68.3,45.5],"hipR":[-24.6,34.7],"knR":[-12.5,180.3],"ftR":[-1,321.3],"hipL":[22.2,40.5],"knL":[32.6,178.3],"ftL":[57.2,304.5]},{"rootY":-3.4,"hips":[0,0],"chest":[7.2,-83.6],"neck":[7.2,-83.6],"head":[19.4,-148.6],"shR":[-46.9,-117.5],"elR":[-51.8,-15.4],"haR":[-55.9,48.3],"shL":[63.2,-114.5],"elL":[59,-18.2],"haL":[66.7,45.3],"hipR":[-26.7,34.2],"knR":[-15.7,179.7],"ftR":[-0.6,321.2],"hipL":[20.2,40.7],"knL":[29.5,174.1],"ftL":[57.5,297]},{"rootY":-2.5,"hips":[0,0],"chest":[7,-83.6],"neck":[7,-83.6],"head":[19.2,-148.6],"shR":[-47.1,-117.6],"elR":[-52.5,-15.5],"haR":[-56.8,48.2],"shL":[63,-114.5],"elL":[59.2,-18.5],"haL":[66.5,44],"hipR":[-27.3,33.4],"knR":[-14.4,178.8],"ftR":[2.4,319.7],"hipL":[19.4,40.9],"knL":[29.7,170.1],"ftL":[58.7,290.6]},{"rootY":-1.1,"hips":[0,0],"chest":[6.6,-83.5],"neck":[6.6,-83.5],"head":[19.2,-148.5],"shR":[-47.3,-117.6],"elR":[-52.9,-15.8],"haR":[-57.2,47.9],"shL":[62.8,-114.4],"elL":[59,-18.7],"haL":[66.5,42.7],"hipR":[-27.5,33.3],"knR":[-14,178.7],"ftR":[4.4,318.8],"hipL":[19.2,40.7],"knL":[29,166.3],"ftL":[57.3,287.6]},{"rootY":-1.2,"hips":[0,0],"chest":[6.6,-83.4],"neck":[6.6,-83.4],"head":[19.3,-148.3],"shR":[-47.4,-117.3],"elR":[-53,-15.6],"haR":[-57.4,47.9],"shL":[62.7,-114.3],"elL":[58.9,-18.8],"haL":[67,41.6],"hipR":[-27.5,33.4],"knR":[-13.4,178.9],"ftR":[6.1,318.5],"hipL":[19.3,40.5],"knL":[29.1,163.4],"ftL":[54.4,288.4]},{"rootY":-1.3,"hips":[0,0],"chest":[6.2,-83.1],"neck":[6.2,-83.1],"head":[19.3,-148],"shR":[-47.7,-117.3],"elR":[-53,-15.6],"haR":[-57.5,47.9],"shL":[62.3,-113.9],"elL":[58.2,-18.5],"haL":[67.2,41.4],"hipR":[-27.6,33.5],"knR":[-13,179],"ftR":[7.3,318.6],"hipL":[19.2,40.6],"knL":[29,160.6],"ftL":[50.4,292.4]},{"rootY":-2.6,"hips":[0,0],"chest":[5.6,-83.1],"neck":[5.6,-83.1],"head":[18.9,-148],"shR":[-48.3,-117.4],"elR":[-53.6,-15.9],"haR":[-58,47.8],"shL":[61.7,-113.6],"elL":[57.2,-18.6],"haL":[67,41.4],"hipR":[-27.4,34],"knR":[-12.9,179.6],"ftR":[7.8,319.7],"hipL":[19.4,40.7],"knL":[28.3,159.6],"ftL":[45.5,298.9]},{"rootY":-3.7,"hips":[0,0],"chest":[5.7,-83.5],"neck":[5.7,-83.5],"head":[19.4,-148.2],"shR":[-48.4,-117.5],"elR":[-54,-16.2],"haR":[-58.2,47.7],"shL":[61.5,-114.2],"elL":[56.6,-19.3],"haL":[67,41],"hipR":[-27.1,34.2],"knR":[-11.5,179.5],"ftR":[9.2,320],"hipL":[19.8,40.9],"knL":[28.5,159.8],"ftL":[41.7,306.2]},{"rootY":-5.9,"hips":[0,0],"chest":[5.1,-83.3],"neck":[5.1,-83.3],"head":[18.7,-148.1],"shR":[-48.9,-117.4],"elR":[-54.9,-16.3],"haR":[-58.7,47.9],"shL":[60.6,-114],"elL":[55.3,-19.5],"haL":[66.2,41.1],"hipR":[-27.3,34.7],"knR":[-12.1,179.9],"ftR":[9.1,321.2],"hipL":[19.5,41.1],"knL":[26.3,161],"ftL":[36.8,312.8]},{"rootY":-7.5,"hips":[0,0],"chest":[4.5,-83.2],"neck":[4.5,-83.2],"head":[18.4,-147.9],"shR":[-49.5,-117.3],"elR":[-56.2,-16.4],"haR":[-59.2,47.9],"shL":[60,-113.8],"elL":[54.2,-19.9],"haL":[66.1,41.4],"hipR":[-27.4,35.1],"knR":[-12.4,180],"ftR":[8.9,322],"hipL":[19.4,41.2],"knL":[24.1,163.1],"ftL":[32.6,317.7]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.3],"neck":[3.9,-83.3],"head":[18.2,-147.8],"shR":[-50.1,-117.2],"elR":[-57.3,-16.4],"haR":[-59.6,48],"shL":[59.3,-114.1],"elL":[53,-20.7],"haL":[65.3,41.2],"hipR":[-28,35.2],"knR":[-12.6,179.5],"ftR":[8.5,321.7],"hipL":[18.8,41.7],"knL":[21.6,164.8],"ftL":[29,320.2]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.1],"neck":[3.9,-83.1],"head":[18.3,-147.6],"shR":[-50.3,-116.7],"elR":[-58,-15.7],"haR":[-60.6,48.5],"shL":[59.1,-114.4],"elL":[52.2,-21.7],"haL":[64.4,41],"hipR":[-27.9,35.4],"knR":[-12,178.6],"ftR":[9.1,321.5],"hipL":[18.9,41.8],"knL":[20.2,165.7],"ftL":[26.3,320.6]},{"rootY":-7.3,"hips":[0,0],"chest":[3.5,-82.5],"neck":[3.5,-82.5],"head":[18,-146.9],"shR":[-50.5,-116.4],"elR":[-58.7,-15.2],"haR":[-61.2,48.6],"shL":[58.8,-113.3],"elL":[51.6,-21.7],"haL":[63.8,41.8],"hipR":[-28.3,35.2],"knR":[-11.8,177.4],"ftR":[8.7,320.1],"hipL":[18.4,42.1],"knL":[18.3,165.8],"ftL":[23.3,320.2]},{"rootY":-5.4,"hips":[0,0],"chest":[3.4,-82.7],"neck":[3.4,-82.7],"head":[17.9,-147.1],"shR":[-50.6,-116.5],"elR":[-58.9,-15.1],"haR":[-61.4,48.2],"shL":[58.7,-114.1],"elL":[51.3,-23.1],"haL":[63.5,41.2],"hipR":[-28.2,35.3],"knR":[-12,176.9],"ftR":[8.7,318.5],"hipL":[18.4,42.2],"knL":[16.8,165.9],"ftL":[20.8,320.4]},{"rootY":-3.2,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18.1,-146.8],"shR":[-50.9,-116],"elR":[-59.3,-14.4],"haR":[-61.5,48.1],"shL":[58.6,-113.9],"elL":[51.1,-23.4],"haL":[63.2,41.6],"hipR":[-28.6,35.1],"knR":[-12.2,175.9],"ftR":[8.1,316.1],"hipL":[18,42.5],"knL":[15.5,166.2],"ftL":[18.9,321.4]},{"rootY":-3.1,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18,-146.9],"shR":[-50.9,-116.1],"elR":[-58.7,-14.2],"haR":[-61.5,47.8],"shL":[58.5,-114],"elL":[51,-23.2],"haL":[62.7,42.4],"hipR":[-28,35.5],"knR":[-11.8,174.6],"ftR":[7.5,314.3],"hipL":[18.7,42.4],"knL":[14.3,164.6],"ftL":[17.5,320]},{"rootY":-3,"hips":[0,0],"chest":[3.1,-82.1],"neck":[3.1,-82.1],"head":[17.9,-146.4],"shR":[-50.8,-115.9],"elR":[-58.1,-13.9],"haR":[-61.4,47.6],"shL":[58.6,-113.3],"elL":[51.1,-22],"haL":[62.7,44],"hipR":[-27.7,35.8],"knR":[-12.1,173.8],"ftR":[6,311.6],"hipL":[19.1,42.3],"knL":[13.2,164.4],"ftL":[16.2,319.8]},{"rootY":-3.9,"hips":[0,0],"chest":[2.7,-81.8],"neck":[2.7,-81.8],"head":[17.6,-146.1],"shR":[-51.2,-115.9],"elR":[-58.4,-13.9],"haR":[-61.9,47.4],"shL":[58.4,-113],"elL":[51,-21.2],"haL":[62.4,44.7],"hipR":[-27.8,35.8],"knR":[-13.7,174.1],"ftR":[3,307.5],"hipL":[19,42.4],"knL":[12.3,165.8],"ftL":[14.8,321]},{"rootY":-5.7,"hips":[0,0],"chest":[2.8,-82.2],"neck":[2.8,-82.2],"head":[17.3,-146.6],"shR":[-51.2,-116.2],"elR":[-58.8,-14.2],"haR":[-62.3,47.1],"shL":[58.6,-113.4],"elL":[51.7,-21.1],"haL":[62.5,44.6],"hipR":[-27.7,36],"knR":[-15.8,175.2],"ftR":[0.2,302.9],"hipL":[19.1,42.1],"knL":[11.9,168],"ftL":[13.3,322.8]},{"rootY":-7.3,"hips":[0,0],"chest":[2.9,-83.1],"neck":[2.9,-83.1],"head":[16.9,-147.6],"shR":[-51.3,-116.9],"elR":[-59.2,-15.1],"haR":[-63,46],"shL":[58.8,-114],"elL":[52.7,-21.3],"haL":[63.1,44.2],"hipR":[-27.2,36.3],"knR":[-18.5,177.6],"ftR":[-3,297.2],"hipL":[19.6,41.6],"knL":[12.1,170.1],"ftL":[11.7,324.2]},{"rootY":-8.6,"hips":[0,0],"chest":[2.7,-83.2],"neck":[2.7,-83.2],"head":[16.1,-147.9],"shR":[-51.3,-117.2],"elR":[-58.9,-15.2],"haR":[-63.3,45.7],"shL":[59,-114.1],"elL":[54.1,-21.2],"haL":[64.2,44.4],"hipR":[-26.5,36.6],"knR":[-22.1,180.4],"ftR":[-6.8,291.6],"hipL":[20.4,40.9],"knL":[12.8,171.8],"ftL":[10.2,324.7]},{"rootY":-7.6,"hips":[0,0],"chest":[3.1,-83.7],"neck":[3.1,-83.7],"head":[15.9,-148.5],"shR":[-51,-117.1],"elR":[-58.4,-15.2],"haR":[-63.4,45.5],"shL":[59.5,-114.5],"elL":[56,-21.4],"haL":[66.3,44.3],"hipR":[-25.7,36.8],"knR":[-25.5,182.5],"ftR":[-9.6,285.2],"hipL":[21.3,40.1],"knL":[13.4,172.5],"ftL":[8.7,323.9]},{"rootY":-7.1,"hips":[0,0],"chest":[3,-83.7],"neck":[3,-83.7],"head":[15.6,-148.6],"shR":[-51.1,-117.1],"elR":[-57.5,-14.8],"haR":[-63.4,45.6],"shL":[59.5,-115],"elL":[58.4,-20.9],"haL":[68.6,45],"hipR":[-24.6,37.2],"knR":[-29.2,183.4],"ftR":[-13.9,277.4],"hipL":[22.5,39],"knL":[13.4,173.5],"ftL":[7.7,323.3]},{"rootY":-5.2,"hips":[0,0],"chest":[3,-84],"neck":[3,-84],"head":[15.2,-148.9],"shR":[-51,-117.1],"elR":[-56.1,-14.6],"haR":[-63.4,45.8],"shL":[59.6,-115.4],"elL":[61.4,-20],"haL":[71.7,46.1],"hipR":[-23.7,37.4],"knR":[-32.7,182.7],"ftR":[-18,268],"hipL":[23.4,37.8],"knL":[13.1,173.9],"ftL":[6.3,321.6]},{"rootY":-4.2,"hips":[0,0],"chest":[3.2,-84.3],"neck":[3.2,-84.3],"head":[14.9,-149.4],"shR":[-50.8,-116.7],"elR":[-54.1,-14.1],"haR":[-62.9,46.3],"shL":[59.6,-116],"elL":[64.1,-19.1],"haL":[74.9,46.9],"hipR":[-22.5,37.7],"knR":[-35.6,180.2],"ftR":[-19.2,263.9],"hipL":[24.7,36.6],"knL":[13.4,174.4],"ftL":[5.5,320.4]},{"rootY":-3.4,"hips":[0,0],"chest":[2.4,-84.3],"neck":[2.4,-84.3],"head":[13.9,-149.4],"shR":[-51.4,-116.7],"elR":[-52.6,-13.9],"haR":[-62.5,47.1],"shL":[58.8,-116.2],"elL":[65.7,-17.8],"haL":[77,48],"hipR":[-21.7,38],"knR":[-38.9,176.3],"ftR":[-21.9,263.5],"hipL":[25.3,35.6],"knL":[13,175.1],"ftL":[4.2,319.5]},{"rootY":-3.2,"hips":[0,0],"chest":[2.4,-84.5],"neck":[2.4,-84.5],"head":[13.5,-149.7],"shR":[-51.3,-116.6],"elR":[-50.5,-14],"haR":[-61.1,47.7],"shL":[58.7,-116.7],"elL":[67.8,-17.3],"haL":[79.1,47.7],"hipR":[-20.7,38.1],"knR":[-38.5,172],"ftR":[-23,267.6],"hipL":[26.4,35.1],"knL":[14.2,175.8],"ftL":[4.4,319]},{"rootY":-3.1,"hips":[0,0],"chest":[1.9,-84.6],"neck":[1.9,-84.6],"head":[12.7,-149.9],"shR":[-51.8,-116.5],"elR":[-49.4,-13.9],"haR":[-60,48.9],"shL":[58.1,-117.1],"elL":[69.2,-16.9],"haL":[80.6,47.1],"hipR":[-20.2,38.2],"knR":[-37.9,167.8],"ftR":[-25.3,276.3],"hipL":[26.9,34.7],"knL":[14.4,176.9],"ftL":[3.9,318.8]},{"rootY":-3.3,"hips":[0,0],"chest":[1.8,-84.7],"neck":[1.8,-84.7],"head":[12.1,-150],"shR":[-51.8,-115.8],"elR":[-48.2,-13.5],"haR":[-58.6,50.3],"shL":[57.6,-117.8],"elL":[70.6,-17.3],"haL":[81.3,44.8],"hipR":[-20,38.4],"knR":[-36.7,163.2],"ftR":[-27.1,287.3],"hipL":[27,34.5],"knL":[13.5,177.6],"ftL":[3,318.4]},{"rootY":-4.2,"hips":[0,0],"chest":[1.6,-84.6],"neck":[1.6,-84.6],"head":[11.2,-150],"shR":[-52,-115.2],"elR":[-47.2,-13.4],"haR":[-57.2,51.1],"shL":[57.2,-118],"elL":[72.2,-17.5],"haL":[81.3,42],"hipR":[-20,38.7],"knR":[-34.8,160.1],"ftR":[-28.6,298.9],"hipL":[27,34.6],"knL":[13.2,178.5],"ftL":[2.5,318.9]}]},"run":{"name":"run","fps":30,"height":520,"groundY":345,"frameCount":38,"frames":[{"rootY":0,"hips":[0,0],"chest":[-0.1,-78.3],"neck":[-0.1,-78.3],"head":[0.8,-147.2],"shR":[-62.2,-107.2],"elR":[-178.8,-90.8],"haR":[-251.1,-80.6],"shL":[63.5,-104.3],"elL":[173.6,-88.9],"haL":[245.1,-78.8],"hipR":[-31.4,37.4],"knR":[-28.8,187],"ftR":[-26.1,343.4],"hipL":[31.7,37.4],"knL":[29,189.2],"ftL":[26.3,344.6]},{"rootY":4.5,"hips":[0,0],"chest":[4.7,-75.6],"neck":[4.7,-75.6],"head":[11.9,-144.3],"shR":[-55.1,-110.3],"elR":[-84.8,-7.9],"haR":[-79.1,42.7],"shL":[70.1,-99.4],"elL":[75.5,4.8],"haL":[60.3,6.5],"hipR":[-32.9,36.1],"knR":[-38.4,185.5],"ftR":[-30.1,178.3],"hipL":[30.1,39.3],"knL":[15.4,179.1],"ftL":[3.3,323.8]},{"rootY":8.2,"hips":[0,0],"chest":[5.5,-75],"neck":[5.5,-75],"head":[12.5,-143.5],"shR":[-54.1,-110.2],"elR":[-77.4,-10.3],"haR":[-81,45.7],"shL":[71.2,-98.8],"elL":[77.8,10.7],"haL":[57.2,-1],"hipR":[-31.1,37.9],"knR":[-45.3,180.7],"ftR":[-31.1,181.7],"hipL":[31.9,38],"knL":[15.3,183.5],"ftL":[2.9,319.7]},{"rootY":5.6,"hips":[0,0],"chest":[4.7,-75],"neck":[4.7,-75],"head":[10.8,-143.6],"shR":[-54.7,-110.1],"elR":[-72.4,-13.6],"haR":[-82,45.1],"shL":[70.5,-98.8],"elL":[78.7,11.9],"haL":[53.7,-8.5],"hipR":[-30.5,38.5],"knR":[-45,170],"ftR":[-32.4,200],"hipL":[32.6,37.7],"knL":[16,187.9],"ftL":[1.5,316]},{"rootY":-0.4,"hips":[0,0],"chest":[4.7,-74.9],"neck":[4.7,-74.9],"head":[9.5,-143.7],"shR":[-54.6,-109],"elR":[-67.8,-17],"haR":[-80.3,42.8],"shL":[70.2,-99.6],"elL":[81.9,11],"haL":[52.1,-14.9],"hipR":[-29,39.5],"knR":[-39.4,160.3],"ftR":[-31.8,228.3],"hipL":[33.8,36.9],"knL":[19.4,187.5],"ftL":[3.9,310]},{"rootY":-8,"hips":[0,0],"chest":[4,-75.3],"neck":[4,-75.3],"head":[7.2,-144.3],"shR":[-55.1,-108.4],"elR":[-63.1,-21],"haR":[-77.7,39.7],"shL":[69,-101],"elL":[85.9,8.9],"haL":[50.9,-20.4],"hipR":[-29.2,39.6],"knR":[-31.9,154.5],"ftR":[-30.4,260.8],"hipL":[33.7,37.2],"knL":[22.4,183.6],"ftL":[9.2,305.1]},{"rootY":-14.3,"hips":[0,0],"chest":[2.9,-75.7],"neck":[2.9,-75.7],"head":[4.8,-145.1],"shR":[-56.1,-107.2],"elR":[-58.7,-24.2],"haR":[-75.7,37.5],"shL":[67,-103],"elL":[89.9,5.8],"haL":[50.1,-23.5],"hipR":[-29.6,39.7],"knR":[-28,153.7],"ftR":[-29.4,290.2],"hipL":[33.4,37.3],"knL":[23.8,173.6],"ftL":[14.6,298.4]},{"rootY":-20.1,"hips":[0,0],"chest":[1.3,-76],"neck":[1.3,-76],"head":[1.5,-145.5],"shR":[-57.7,-106.8],"elR":[-55.5,-27.1],"haR":[-74.3,34.7],"shL":[65.2,-103.8],"elL":[93.4,3.7],"haL":[50.1,-23],"hipR":[-28.9,40.4],"knR":[-25.4,159.4],"ftR":[-28.5,312.6],"hipL":[34,36.7],"knL":[26.8,158.9],"ftL":[19.3,284]},{"rootY":-21.4,"hips":[0,0],"chest":[0.1,-76.1],"neck":[0.1,-76.1],"head":[-0.6,-145.6],"shR":[-59.2,-106.5],"elR":[-53.9,-26.8],"haR":[-73.7,34.1],"shL":[63.6,-104.4],"elL":[95.4,2],"haL":[50.7,-19.7],"hipR":[-27.2,41.6],"knR":[-21.1,167.2],"ftR":[-24.9,323.5],"hipL":[35.5,35.2],"knL":[24.7,163.6],"ftL":[20.8,261.4]},{"rootY":-18.9,"hips":[0,0],"chest":[-1,-76.2],"neck":[-1,-76.2],"head":[-2.1,-145.6],"shR":[-60.9,-105.5],"elR":[-55.8,-22.2],"haR":[-75.3,37.2],"shL":[61.8,-106],"elL":[94.5,-0.8],"haL":[50.4,-13.6],"hipR":[-27.5,41.5],"knR":[-19.1,172.8],"ftR":[-18.1,328.1],"hipL":[35.2,35.2],"knL":[22,171.8],"ftL":[24,235.3]},{"rootY":-13,"hips":[0,0],"chest":[-2.6,-76.2],"neck":[-2.6,-76.2],"head":[-3.8,-145.6],"shR":[-62.9,-104.3],"elR":[-61.3,-16.1],"haR":[-78.9,39.8],"shL":[59.6,-107.1],"elL":[92.2,-3.9],"haL":[51,-4.8],"hipR":[-29.4,40.1],"knR":[-19,176.7],"ftR":[-9.5,332.5],"hipL":[33.5,36.4],"knL":[21.9,180.5],"ftL":[24.9,205.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-3.1,-76.1],"neck":[-3.1,-76.1],"head":[-5.2,-145.3],"shR":[-64,-104.6],"elR":[-67.1,-8.8],"haR":[-81.5,38.6],"shL":[59.8,-106.4],"elL":[91.3,-6],"haL":[55.5,6.3],"hipR":[-31.8,38.2],"knR":[-16.4,175.9],"ftR":[-0.9,329.9],"hipL":[31.1,37.8],"knL":[32.3,188],"ftL":[25.7,178.4]},{"rootY":4.3,"hips":[0,0],"chest":[-3.7,-75.5],"neck":[-3.7,-75.5],"head":[-6.4,-144.6],"shR":[-65,-104.2],"elR":[-73.5,-0.1],"haR":[-82.5,35.3],"shL":[59.1,-106],"elL":[87.7,-10.1],"haL":[59.5,14.3],"hipR":[-34,36.3],"knR":[-13.5,174.6],"ftR":[2.2,320.5],"hipL":[28.7,39.2],"knL":[46.6,189.7],"ftL":[27.3,163.4]},{"rootY":7.7,"hips":[0,0],"chest":[-4.1,-75.2],"neck":[-4.1,-75.2],"head":[-6.9,-143.9],"shR":[-65.6,-104],"elR":[-79,6.9],"haR":[-81.6,29.5],"shL":[58.8,-105.7],"elL":[83.6,-15.6],"haL":[62.2,18.5],"hipR":[-34.9,35.5],"knR":[-13.7,179.3],"ftR":[2.2,316.2],"hipL":[27.8,40.3],"knL":[55.1,183.3],"ftL":[29.4,165.8]},{"rootY":6.4,"hips":[0,0],"chest":[-3.8,-75.2],"neck":[-3.8,-75.2],"head":[-6.5,-144.1],"shR":[-66.3,-103.5],"elR":[-83.1,10.2],"haR":[-78.6,20.5],"shL":[59,-106.1],"elL":[80.6,-20.2],"haL":[63.1,17.9],"hipR":[-34.9,35.3],"knR":[-13.4,183],"ftR":[2,311.1],"hipL":[27.9,40.5],"knL":[52.4,171.1],"ftL":[30.2,183.3]},{"rootY":0.7,"hips":[0,0],"chest":[-3.4,-75.6],"neck":[-3.4,-75.6],"head":[-4.9,-144.8],"shR":[-66.2,-104.3],"elR":[-85.6,10.2],"haR":[-73.8,10.4],"shL":[59.6,-105.7],"elL":[77.7,-23],"haL":[63.7,16],"hipR":[-36.1,34.7],"knR":[-16.6,182.2],"ftR":[-0.9,304.8],"hipL":[26.3,41.2],"knL":[44,162.3],"ftL":[29.8,211.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-4.1,-76.1],"neck":[-4.1,-76.1],"head":[-3.8,-145.7],"shR":[-66.8,-105.4],"elR":[-89.3,9.1],"haR":[-70.7,3.8],"shL":[58.9,-105.6],"elL":[71.6,-25.8],"haL":[62.6,13.6],"hipR":[-35.5,35.1],"knR":[-20.1,177.4],"ftR":[-7.9,297.6],"hipL":[27.2,41],"knL":[33.4,156.1],"ftL":[29.4,245.2]},{"rootY":-12.2,"hips":[0,0],"chest":[-3.7,-76.8],"neck":[-3.7,-76.8],"head":[-1.7,-146.5],"shR":[-66.1,-106.9],"elR":[-92.8,6.7],"haR":[-68.3,0.5],"shL":[59.3,-105.2],"elL":[65.9,-28],"haL":[61.7,11.5],"hipR":[-35,35.2],"knR":[-25.2,162.6],"ftR":[-16.5,289.6],"hipL":[27.8,40.7],"knL":[27.3,154.8],"ftL":[29.7,279.6]},{"rootY":-17.1,"hips":[0,0],"chest":[-3.1,-77.1],"neck":[-3.1,-77.1],"head":[-0.1,-146.9],"shR":[-64.9,-108.4],"elR":[-95.1,4.1],"haR":[-65.6,-0.8],"shL":[60,-104],"elL":[62.1,-27.8],"haL":[61,10.1],"hipR":[-34.9,35.3],"knR":[-28.6,154.4],"ftR":[-23.1,276],"hipL":[27.9,41],"knL":[23.9,158.9],"ftL":[29.9,306.7]},{"rootY":-17.4,"hips":[0,0],"chest":[-1.6,-76.9],"neck":[-1.6,-76.9],"head":[2.4,-146.8],"shR":[-63.1,-109],"elR":[-95.1,2.4],"haR":[-63.4,2.4],"shL":[61.7,-103.1],"elL":[60.8,-24.6],"haL":[60.9,9.9],"hipR":[-36.3,34.2],"knR":[-23.5,162.9],"ftR":[-27.5,254.8],"hipL":[26.3,41.8],"knL":[21.6,166.9],"ftL":[28.5,322]},{"rootY":-13.9,"hips":[0,0],"chest":[-0.5,-77.1],"neck":[-0.5,-77.1],"head":[4.3,-146.7],"shR":[-61.5,-109.8],"elR":[-94.3,0.1],"haR":[-63.8,8.7],"shL":[63.3,-102.8],"elL":[61.3,-19.1],"haL":[60.9,11.1],"hipR":[-35.2,34.5],"knR":[-19,168.4],"ftR":[-29.3,229.3],"hipL":[27.4,41.5],"knL":[24,172.5],"ftL":[25.5,327.3]},{"rootY":-7.6,"hips":[0,0],"chest":[1,-77],"neck":[1,-77],"head":[6.2,-146.6],"shR":[-59.5,-110.6],"elR":[-92.4,-2.2],"haR":[-66.7,17.4],"shL":[65.3,-101.6],"elL":[65.1,-11],"haL":[61.9,12],"hipR":[-34.1,35.4],"knR":[-19.4,177.4],"ftR":[-29.4,206.2],"hipL":[28.7,40.3],"knL":[24.2,176.4],"ftL":[18.9,331.5]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-77],"neck":[2.3,-77],"head":[7.9,-146.5],"shR":[-58,-111.1],"elR":[-89.1,-4],"haR":[-70.4,26.1],"shL":[67,-101.1],"elL":[70.1,-2.4],"haL":[61.5,8.9],"hipR":[-33,35.8],"knR":[-26,183.5],"ftR":[-27.5,186.2],"hipL":[29.9,39.5],"knL":[23.5,176.9],"ftL":[12.6,329.8]},{"rootY":4.6,"hips":[0,0],"chest":[4.5,-76.3],"neck":[4.5,-76.3],"head":[10.9,-145.6],"shR":[-55.5,-111],"elR":[-81.6,-6.6],"haR":[-72.3,32.6],"shL":[69.6,-100.2],"elL":[76.1,6.1],"haL":[61.6,3.1],"hipR":[-29.9,38.6],"knR":[-33.9,187.8],"ftR":[-26.9,180.9],"hipL":[33.2,36.5],"knL":[22,177.9],"ftL":[11.1,323.6]},{"rootY":5.1,"hips":[0,0],"chest":[3.6,-76.1],"neck":[3.6,-76.1],"head":[10.1,-145.2],"shR":[-56.2,-110.9],"elR":[-77.5,-10.7],"haR":[-75.6,35.1],"shL":[69,-99.9],"elL":[78,10.2],"haL":[57.6,-5.1],"hipR":[-30.8,38.2],"knR":[-37.5,181.4],"ftR":[-27,188.6],"hipL":[32.2,37.4],"knL":[19.5,184.5],"ftL":[10.7,322.1]},{"rootY":0.8,"hips":[0,0],"chest":[3.1,-76],"neck":[3.1,-76],"head":[9.3,-145.2],"shR":[-56.3,-111],"elR":[-74,-14.5],"haR":[-75.8,33.6],"shL":[68.9,-99.6],"elL":[77.8,11.3],"haL":[54.6,-14.4],"hipR":[-30,39.1],"knR":[-37,171.7],"ftR":[-27.2,209],"hipL":[33,36.8],"knL":[18.7,187.6],"ftL":[10.8,318.1]},{"rootY":-7.4,"hips":[0,0],"chest":[3.2,-76.1],"neck":[3.2,-76.1],"head":[8.2,-145.5],"shR":[-56,-110.1],"elR":[-70.6,-17.4],"haR":[-75.6,32.4],"shL":[68.8,-100.5],"elL":[77.5,10.2],"haL":[50.9,-23.4],"hipR":[-29.3,39.5],"knR":[-33.7,163.5],"ftR":[-26.8,238.3],"hipL":[33.7,36.6],"knL":[20.7,187],"ftL":[13,313.5]},{"rootY":-15.9,"hips":[0,0],"chest":[3.4,-76.3],"neck":[3.4,-76.3],"head":[7.5,-145.9],"shR":[-55.6,-109.3],"elR":[-66.5,-20.9],"haR":[-74.4,30.5],"shL":[68.6,-101.5],"elL":[78,8.7],"haL":[48.2,-30.3],"hipR":[-29.8,39.3],"knR":[-29.2,158.1],"ftR":[-25.2,269.7],"hipL":[33.3,37.1],"knL":[22.9,183.6],"ftL":[17.4,308.7]},{"rootY":-22.4,"hips":[0,0],"chest":[2.6,-76.6],"neck":[2.6,-76.6],"head":[5.8,-146.3],"shR":[-56.3,-108.5],"elR":[-62.3,-24.4],"haR":[-72.9,28.4],"shL":[67.5,-102.7],"elL":[78.8,7.1],"haL":[45,-35.3],"hipR":[-30.5,39.2],"knR":[-27.5,156.3],"ftR":[-25.6,296.6],"hipL":[32.5,37.6],"knL":[24.7,175.5],"ftL":[20.4,301.7]},{"rootY":-27.4,"hips":[0,0],"chest":[0.9,-76.7],"neck":[0.9,-76.7],"head":[3.8,-146.5],"shR":[-57.6,-108],"elR":[-58.9,-27.5],"haR":[-71.6,26.5],"shL":[65.8,-102.7],"elL":[80.1,6.8],"haL":[42.8,-36.2],"hipR":[-30.4,39.6],"knR":[-26.7,160.4],"ftR":[-27.6,314.9],"hipL":[32.6,37.3],"knL":[28,161.5],"ftL":[23.3,288.7]},{"rootY":-27.9,"hips":[0,0],"chest":[0,-76.9],"neck":[0,-76.9],"head":[3,-146.8],"shR":[-58.6,-108.2],"elR":[-57.2,-28.8],"haR":[-70.3,24.7],"shL":[64.7,-103.3],"elL":[81.6,6.2],"haL":[42,-33.7],"hipR":[-29,40.6],"knR":[-24.2,166.3],"ftR":[-28,322.2],"hipL":[33.8,36],"knL":[24.8,162.1],"ftL":[23.1,267.9]},{"rootY":-25.2,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[1.7,-147.1],"shR":[-60.5,-108.1],"elR":[-59,-26.7],"haR":[-71.3,24.6],"shL":[62.9,-104.4],"elL":[82.3,5.1],"haL":[41.7,-27.9],"hipR":[-29.2,40.5],"knR":[-25.7,170.6],"ftR":[-24.4,324.8],"hipL":[33.5,35.8],"knL":[18.6,169.8],"ftL":[23.5,242.7]},{"rootY":-18.4,"hips":[0,0],"chest":[-2.4,-77.5],"neck":[-2.4,-77.5],"head":[0.5,-147.2],"shR":[-61.6,-108],"elR":[-63.9,-21.6],"haR":[-74,25.4],"shL":[61.9,-105.1],"elL":[83.1,3.4],"haL":[44,-19.2],"hipR":[-30.9,39.2],"knR":[-25.1,175.3],"ftR":[-17.3,329.8],"hipL":[31.6,36.7],"knL":[15.1,178.7],"ftL":[22.4,212.9]},{"rootY":-8.2,"hips":[0,0],"chest":[-2.6,-77.6],"neck":[-2.6,-77.6],"head":[-0.1,-147.4],"shR":[-62.1,-107.9],"elR":[-69.8,-14.5],"haR":[-76.8,24.8],"shL":[61.7,-105.1],"elL":[83.6,1.4],"haL":[48.4,-8.7],"hipR":[-31.8,38.2],"knR":[-24.5,177],"ftR":[-10.6,332.8],"hipL":[30.8,36.8],"knL":[20.7,185.6],"ftL":[21,183.2]},{"rootY":1.3,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[-0.5,-147.3],"shR":[-62.2,-107.6],"elR":[-74.8,-6.2],"haR":[-77.9,22],"shL":[62,-105.1],"elL":[83.3,-1.3],"haL":[54.3,2.3],"hipR":[-33.1,36.7],"knR":[-20.6,177.1],"ftR":[-3.4,328.1],"hipL":[29.6,37.3],"knL":[33.3,189.1],"ftL":[21.2,163.9]},{"rootY":7.2,"hips":[0,0],"chest":[-3.2,-77.1],"neck":[-3.2,-77.1],"head":[-1.9,-146.8],"shR":[-63.8,-106.7],"elR":[-80.7,2],"haR":[-79.1,16.9],"shL":[60.8,-105.5],"elL":[79.7,-5.1],"haL":[58.5,12],"hipR":[-36.7,33.3],"knR":[-21.7,176.9],"ftR":[-3.3,320.3],"hipL":[25.5,40.7],"knL":[45.1,187.5],"ftL":[22.3,162.5]},{"rootY":8.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-0.7,-146.6],"shR":[-63.7,-106.1],"elR":[-82.9,6.8],"haR":[-76.6,7.9],"shL":[61.7,-106.3],"elL":[76.8,-9.8],"haL":[62.2,16.1],"hipR":[-36,34],"knR":[-20.2,180.9],"ftR":[-5,315.3],"hipL":[26.5,40.4],"knL":[43.6,176.2],"ftL":[23.3,175.7]},{"rootY":3.6,"hips":[0,0],"chest":[-1.9,-77],"neck":[-1.9,-77],"head":[-0.8,-146.7],"shR":[-64.1,-106.4],"elR":[-83.7,8.6],"haR":[-73.1,-3.4],"shL":[61.7,-105.8],"elL":[73.9,-12.2],"haL":[63.1,17.1],"hipR":[-37.2,32.9],"knR":[-20.9,181.7],"ftR":[-7.5,309.1],"hipL":[25.1,41.2],"knL":[36.2,164.2],"ftL":[23.4,201.2]}]},"shuffle":{"name":"shuffle","fps":30,"height":520,"groundY":256,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.2],"neck":[-3.8,-168.3],"head":[-1.6,-203.7],"shR":[50.1,-147],"elR":[128.4,-146.4],"haR":[193.7,-148.9],"shL":[-57.7,-145.7],"elL":[-134.6,-146.3],"haL":[-203,-146.3],"hipR":[26.6,7.9],"knR":[30.4,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.2],"neck":[-3.8,-168.3],"head":[-1.7,-203.6],"shR":[50.1,-147],"elR":[128.4,-146.4],"haR":[193.6,-148.7],"shL":[-57.7,-145.5],"elL":[-134.6,-145.9],"haL":[-203.1,-145.7],"hipR":[26.6,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-3.9,-168.3],"head":[-1.8,-203.6],"shR":[50.1,-146.9],"elR":[128.3,-146.4],"haR":[193.6,-148.6],"shL":[-57.7,-145.3],"elL":[-134.7,-145.3],"haL":[-203.2,-144.8],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.8],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-3.9,-168.3],"head":[-1.9,-203.6],"shR":[50,-146.9],"elR":[128.3,-146.4],"haR":[193.5,-148.6],"shL":[-57.7,-145],"elL":[-134.8,-144.6],"haL":[-203.3,-143.7],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.8],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-4.1,-168.2],"head":[-2,-203.6],"shR":[49.9,-146.9],"elR":[128.2,-146.4],"haR":[193.4,-148.6],"shL":[-57.8,-144.8],"elL":[-134.9,-143.9],"haL":[-203.5,-142.6],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.2,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-4.3,-168.2],"head":[-2.2,-203.6],"shR":[49.8,-147.1],"elR":[128.1,-146.4],"haR":[193.4,-148.6],"shL":[-58,-144.7],"elL":[-135.1,-143.3],"haL":[-203.7,-141.5],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.2,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.1],"neck":[-4.5,-168.2],"head":[-2.5,-203.5],"shR":[49.6,-147.2],"elR":[127.9,-146.5],"haR":[193.3,-148.5],"shL":[-58.1,-144.5],"elL":[-135.3,-142.6],"haL":[-203.9,-140.5],"hipR":[26.5,7.9],"knR":[30.4,129.6],"ftR":[30.1,254.7],"hipL":[-26.8,7.7],"knL":[-23.6,130.8],"ftL":[-20.5,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-100.1],"neck":[-4.7,-168.1],"head":[-2.8,-203.5],"shR":[49.4,-147.2],"elR":[127.8,-146.6],"haR":[193.3,-148.5],"shL":[-58.3,-144.3],"elL":[-135.4,-142],"haL":[-204.1,-139.5],"hipR":[26.5,7.9],"knR":[30.4,129.6],"ftR":[30,254.7],"hipL":[-26.8,7.7],"knL":[-23.6,130.8],"ftL":[-20.6,256]},{"rootY":0,"hips":[0,0],"chest":[-3.5,-100.1],"neck":[-4.9,-168.1],"head":[-3.1,-203.5],"shR":[49.3,-147.3],"elR":[127.6,-146.7],"haR":[193.2,-148.5],"shL":[-58.5,-144.1],"elL":[-135.6,-141.5],"haL":[-204.3,-138.7],"hipR":[26.5,7.9],"knR":[30.3,129.6],"ftR":[29.9,254.7],"hipL":[-26.8,7.7],"knL":[-23.7,130.8],"ftL":[-20.7,256]},{"rootY":0,"hips":[0,0],"chest":[-3.7,-100.1],"neck":[-5.2,-168.1],"head":[-3.4,-203.5],"shR":[49,-147.3],"elR":[127.4,-146.8],"haR":[193.1,-148.7],"shL":[-58.7,-143.8],"elL":[-135.8,-141],"haL":[-204.5,-138],"hipR":[26.5,7.9],"knR":[30.3,129.6],"ftR":[29.7,254.7],"hipL":[-26.8,7.7],"knL":[-23.7,130.8],"ftL":[-20.8,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.8,-100.1],"neck":[-5.4,-168.1],"head":[-3.7,-203.5],"shR":[48.8,-147.3],"elR":[127.2,-146.9],"haR":[193,-149],"shL":[-58.9,-143.6],"elL":[-136,-140.6],"haL":[-204.7,-137.4],"hipR":[26.5,7.9],"knR":[30.2,129.6],"ftR":[29.6,254.7],"hipL":[-26.8,7.7],"knL":[-23.8,130.9],"ftL":[-21,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4,-100.1],"neck":[-5.7,-168.1],"head":[-4,-203.5],"shR":[48.6,-147.3],"elR":[127,-147.1],"haR":[192.9,-149.3],"shL":[-59.1,-143.3],"elL":[-136.3,-140.2],"haL":[-205,-137],"hipR":[26.5,7.9],"knR":[30.1,129.6],"ftR":[29.4,254.7],"hipL":[-26.8,7.7],"knL":[-23.9,130.9],"ftL":[-21.1,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4.1,-100.1],"neck":[-6,-168.1],"head":[-4.4,-203.5],"shR":[48.4,-147.3],"elR":[126.8,-147.3],"haR":[192.8,-149.7],"shL":[-59.3,-143.1],"elL":[-136.5,-139.9],"haL":[-205.2,-136.6],"hipR":[26.5,7.8],"knR":[30,129.6],"ftR":[29.3,254.7],"hipL":[-26.7,7.7],"knL":[-23.9,130.9],"ftL":[-21.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4.2,-100.1],"neck":[-6.3,-168],"head":[-4.8,-203.5],"shR":[48.1,-147.3],"elR":[126.6,-147.5],"haR":[192.6,-150],"shL":[-59.5,-142.8],"elL":[-136.8,-139.7],"haL":[-205.5,-136.3],"hipR":[26.5,7.8],"knR":[29.9,129.6],"ftR":[29,254.8],"hipL":[-26.7,7.7],"knL":[-24,130.9],"ftL":[-21.5,256.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.2,-100.1],"neck":[-6.7,-168],"head":[-5.2,-203.5],"shR":[47.8,-147.4],"elR":[126.3,-147.7],"haR":[192.4,-150.3],"shL":[-59.8,-142.6],"elL":[-137.1,-139.4],"haL":[-205.9,-136.1],"hipR":[26.5,7.8],"knR":[29.8,129.6],"ftR":[28.8,254.8],"hipL":[-26.7,7.8],"knL":[-24.2,130.9],"ftL":[-21.8,256.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.4,-100.1],"neck":[-7.1,-168],"head":[-5.7,-203.5],"shR":[47.5,-147.4],"elR":[126.1,-147.9],"haR":[192.1,-150.6],"shL":[-60.1,-142.2],"elL":[-137.4,-139.2],"haL":[-206.2,-135.8],"hipR":[26.5,7.8],"knR":[29.6,129.6],"ftR":[28.4,254.8],"hipL":[-26.7,7.8],"knL":[-24.3,131],"ftL":[-22.1,256.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.5,-100.1],"neck":[-7.5,-167.9],"head":[-6.1,-203.4],"shR":[47.2,-147.3],"elR":[125.8,-148],"haR":[191.8,-150.9],"shL":[-60.4,-141.9],"elL":[-137.7,-138.9],"haL":[-206.5,-135.5],"hipR":[26.6,7.7],"knR":[29.4,129.7],"ftR":[28.1,254.9],"hipL":[-26.7,7.8],"knL":[-24.5,131],"ftL":[-22.5,256.3]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.6,-100.1],"neck":[-7.8,-167.9],"head":[-6.5,-203.4],"shR":[47,-147.2],"elR":[125.5,-148.1],"haR":[191.6,-151.1],"shL":[-60.6,-141.7],"elL":[-137.9,-138.6],"haL":[-206.7,-135.2],"hipR":[26.6,7.7],"knR":[29.2,129.7],"ftR":[27.7,254.9],"hipL":[-26.7,7.9],"knL":[-24.7,131.1],"ftL":[-22.9,256.3]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.7,-100.1],"neck":[-7.9,-167.9],"head":[-6.9,-203.4],"shR":[46.8,-147.1],"elR":[125.4,-148.2],"haR":[191.4,-151.3],"shL":[-60.7,-141.5],"elL":[-138,-138.4],"haL":[-206.8,-134.9],"hipR":[26.6,7.6],"knR":[29,129.8],"ftR":[27.4,255],"hipL":[-26.7,7.9],"knL":[-24.9,131.1],"ftL":[-23.2,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.7,-100.1],"neck":[-8.1,-167.9],"head":[-7.2,-203.4],"shR":[46.7,-147.1],"elR":[125.2,-148.2],"haR":[191.2,-151.5],"shL":[-60.8,-141.4],"elL":[-138.1,-138.1],"haL":[-207,-134.6],"hipR":[26.6,7.6],"knR":[28.8,129.8],"ftR":[27.1,255.1],"hipL":[-26.7,8],"knL":[-25,131.1],"ftL":[-23.6,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.9,-100.1],"neck":[-8.2,-167.9],"head":[-7.4,-203.5],"shR":[46.5,-147],"elR":[125.1,-148.3],"haR":[191,-151.7],"shL":[-60.9,-141.3],"elL":[-138.3,-138],"haL":[-207.1,-134.3],"hipR":[26.6,7.6],"knR":[28.5,129.9],"ftR":[26.7,255.1],"hipL":[-26.7,8],"knL":[-25.2,131.2],"ftL":[-23.9,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.3,-167.9],"head":[-7.7,-203.5],"shR":[46.4,-147],"elR":[125,-148.4],"haR":[190.9,-151.9],"shL":[-61,-141.2],"elL":[-138.4,-137.9],"haL":[-207.3,-134.2],"hipR":[26.6,7.6],"knR":[28.3,129.9],"ftR":[26.4,255.2],"hipL":[-26.7,8],"knL":[-25.3,131.2],"ftL":[-24.2,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.4,-167.9],"head":[-7.9,-203.5],"shR":[46.4,-147],"elR":[124.9,-148.6],"haR":[190.8,-152.1],"shL":[-61.1,-141.2],"elL":[-138.6,-137.8],"haL":[-207.5,-134.2],"hipR":[26.6,7.5],"knR":[28.1,129.9],"ftR":[26.1,255.2],"hipL":[-26.7,8],"knL":[-25.5,131.2],"ftL":[-24.5,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.5,-167.8],"head":[-8.2,-203.4],"shR":[46.3,-147],"elR":[124.8,-148.7],"haR":[190.7,-152.3],"shL":[-61.1,-141.2],"elL":[-138.8,-137.8],"haL":[-207.8,-134.1],"hipR":[26.6,7.5],"knR":[27.9,130],"ftR":[25.8,255.3],"hipL":[-26.7,8.1],"knL":[-25.7,131.2],"ftL":[-24.9,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.6,-167.8],"head":[-8.4,-203.4],"shR":[46.2,-147],"elR":[124.7,-148.8],"haR":[190.6,-152.5],"shL":[-61.2,-141.2],"elL":[-139,-137.7],"haL":[-208.1,-134],"hipR":[26.6,7.5],"knR":[27.7,130],"ftR":[25.5,255.3],"hipL":[-26.7,8.1],"knL":[-25.9,131.3],"ftL":[-25.3,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.7,-167.7],"head":[-8.5,-203.3],"shR":[46.2,-147],"elR":[124.7,-148.9],"haR":[190.7,-152.7],"shL":[-61.2,-141.1],"elL":[-139.1,-137.6],"haL":[-208.3,-133.8],"hipR":[26.6,7.4],"knR":[27.5,130],"ftR":[25.3,255.3],"hipL":[-26.7,8.1],"knL":[-26,131.3],"ftL":[-25.5,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.8,-100.1],"neck":[-8.6,-167.7],"head":[-8.5,-203.3],"shR":[46.2,-146.9],"elR":[124.8,-149],"haR":[190.8,-152.9],"shL":[-61.1,-141],"elL":[-139.1,-137.4],"haL":[-208.3,-133.5],"hipR":[26.7,7.4],"knR":[27.4,130.1],"ftR":[25.2,255.4],"hipL":[-26.7,8.1],"knL":[-26.1,131.3],"ftL":[-25.7,256.5]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.6,-100.1],"neck":[-8.5,-167.7],"head":[-8.4,-203.3],"shR":[46.3,-146.8],"elR":[124.9,-149],"haR":[190.9,-152.9],"shL":[-61,-140.9],"elL":[-139,-137.1],"haL":[-208.3,-133.1],"hipR":[26.7,7.4],"knR":[27.3,130.1],"ftR":[25.2,255.4],"hipL":[-26.7,8.1],"knL":[-26.1,131.3],"ftL":[-25.7,256.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.4,-100.2],"neck":[-8.3,-167.7],"head":[-8.3,-203.2],"shR":[46.5,-146.7],"elR":[125,-148.8],"haR":[191,-152.7],"shL":[-60.8,-140.8],"elL":[-138.8,-136.7],"haL":[-208.1,-132.5],"hipR":[26.7,7.4],"knR":[27.3,130.1],"ftR":[25.3,255.4],"hipL":[-26.7,8.1],"knL":[-26,131.3],"ftL":[-25.6,256.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.2,-100.2],"neck":[-8,-167.7],"head":[-8.1,-203.2],"shR":[46.8,-146.6],"elR":[125.2,-148.6],"haR":[191,-152.2],"shL":[-60.5,-140.8],"elL":[-138.5,-136.3],"haL":[-207.8,-131.8],"hipR":[26.7,7.4],"knR":[27.4,130.1],"ftR":[25.5,255.4],"hipL":[-26.7,8.1],"knL":[-25.9,131.3],"ftL":[-25.3,256.5]},{"rootY":-0.5,"hips":[0,0],"chest":[-4,-100.2],"neck":[-7.9,-167.6],"head":[-8,-203.1],"shR":[46.9,-146.4],"elR":[125.1,-148.1],"haR":[190.6,-151.5],"shL":[-60.4,-140.6],"elL":[-138.2,-136],"haL":[-207.4,-131.3],"hipR":[26.7,7.4],"knR":[27.6,130.1],"ftR":[25.8,255.4],"hipL":[-26.7,8.1],"knL":[-25.8,131.3],"ftL":[-25,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4,-100.1],"neck":[-7.9,-167.3],"head":[-8.1,-202.9],"shR":[46.9,-146.3],"elR":[124.8,-147.6],"haR":[189.8,-150.4],"shL":[-60.5,-140.5],"elL":[-138,-135.6],"haL":[-207,-130.7],"hipR":[26.7,7.4],"knR":[27.7,130.1],"ftR":[26.1,255.4],"hipL":[-26.7,8.2],"knL":[-25.6,131.3],"ftL":[-24.7,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.2,-100],"neck":[-8,-167.1],"head":[-8.2,-202.7],"shR":[46.7,-146.3],"elR":[124.1,-147],"haR":[188.4,-149.2],"shL":[-60.7,-140.5],"elL":[-137.7,-135.5],"haL":[-206.5,-130.4],"hipR":[26.8,7.3],"knR":[27.9,130.1],"ftR":[26.4,255.4],"hipL":[-26.7,8.2],"knL":[-25.5,131.4],"ftL":[-24.4,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.3,-100],"neck":[-8,-166.9],"head":[-8.3,-202.5],"shR":[46.6,-146.3],"elR":[123.3,-146.5],"haR":[186.5,-148.1],"shL":[-60.8,-140.5],"elL":[-137.1,-135.6],"haL":[-205.5,-130.5],"hipR":[26.8,7.3],"knR":[28.2,130],"ftR":[26.9,255.3],"hipL":[-26.6,8.3],"knL":[-25.2,131.4],"ftL":[-23.8,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.3,-99.9],"neck":[-8,-166.8],"head":[-8.4,-202.4],"shR":[46.5,-146.3],"elR":[122.1,-146.1],"haR":[183.9,-147.3],"shL":[-60.9,-140.6],"elL":[-136.2,-135.9],"haL":[-204,-131.2],"hipR":[26.7,7.2],"knR":[28.6,130],"ftR":[27.5,255.3],"hipL":[-26.6,8.3],"knL":[-24.8,131.4],"ftL":[-23.1,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.3,-99.9],"neck":[-8,-166.6],"head":[-8.4,-202.3],"shR":[46.5,-146.1],"elR":[120.5,-145.8],"haR":[180.3,-146.9],"shL":[-60.9,-140.6],"elL":[-134.9,-136.5],"haL":[-201.6,-132.2],"hipR":[26.7,7.2],"knR":[29,129.9],"ftR":[28.4,255.2],"hipL":[-26.6,8.4],"knL":[-24.3,131.5],"ftL":[-22.3,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.4,-99.8],"neck":[-7.8,-166.6],"head":[-8.2,-202.3],"shR":[46.5,-146.1],"elR":[118.4,-145.6],"haR":[175.5,-146.5],"shL":[-60.9,-141.1],"elL":[-132.9,-137.3],"haL":[-198.3,-133.3],"hipR":[26.7,7.1],"knR":[29.5,129.9],"ftR":[29.4,255.2],"hipL":[-26.5,8.5],"knL":[-23.7,131.5],"ftL":[-21.2,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.4,-99.8],"neck":[-7.5,-166.5],"head":[-7.9,-202.3],"shR":[46.6,-146.1],"elR":[115.9,-145.6],"haR":[169.7,-146.5],"shL":[-60.8,-141.8],"elL":[-129.8,-138.3],"haL":[-193.5,-134.5],"hipR":[26.7,7.1],"knR":[30.2,129.8],"ftR":[30.8,255.2],"hipL":[-26.5,8.5],"knL":[-22.9,131.6],"ftL":[-19.8,256.3]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.3,-99.7],"neck":[-7.2,-166.5],"head":[-7.6,-202.4],"shR":[46.8,-146.1],"elR":[112.7,-145.7],"haR":[162.6,-146.9],"shL":[-60.6,-142.5],"elL":[-125.7,-139.5],"haL":[-186.9,-135.8],"hipR":[26.6,7.1],"knR":[31.1,129.8],"ftR":[32.4,255.1],"hipL":[-26.5,8.5],"knL":[-22,131.6],"ftL":[-18.2,256.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.2,-99.6],"neck":[-6.9,-166.4],"head":[-7.2,-202.4],"shR":[46.9,-145.9],"elR":[108.7,-146],"haR":[154,-147.7],"shL":[-60.4,-143.3],"elL":[-121,-140.7],"haL":[-178.7,-137.5],"hipR":[26.6,7.1],"knR":[32.4,129.6],"ftR":[34.1,254.9],"hipL":[-26.4,8.5],"knL":[-21.1,131.5],"ftL":[-16.4,256.1]},{"rootY":0.1,"hips":[0,0],"chest":[-4.1,-99.6],"neck":[-6.7,-166.5],"head":[-6.7,-202.5],"shR":[47,-146],"elR":[104.1,-146.5],"haR":[144.2,-148.6],"shL":[-60.4,-144.2],"elL":[-115.7,-142.3],"haL":[-169,-139.7],"hipR":[26.6,7.3],"knR":[34,129.4],"ftR":[36,254.5],"hipL":[-26.5,8.3],"knL":[-20.4,131.3],"ftL":[-14.5,255.7]},{"rootY":0.8,"hips":[0,0],"chest":[-4.1,-99.7],"neck":[-6.7,-166.7],"head":[-6.4,-202.7],"shR":[47,-146.5],"elR":[99.2,-147.2],"haR":[133.5,-149.7],"shL":[-60.4,-145.4],"elL":[-110,-144.4],"haL":[-158.1,-142.5],"hipR":[26.4,7.8],"knR":[35.8,129],"ftR":[38,253.6],"hipL":[-26.7,7.8],"knL":[-19.7,130.7],"ftL":[-12.5,255]},{"rootY":1.8,"hips":[0,0],"chest":[-4.1,-99.6],"neck":[-7,-166.7],"head":[-6.3,-202.8],"shR":[46.8,-147],"elR":[93.9,-148],"haR":[122.2,-150.9],"shL":[-60.5,-146.3],"elL":[-104,-146.4],"haL":[-146.5,-145.6],"hipR":[26.3,8.5],"knR":[36.9,128.3],"ftR":[39.7,252],"hipL":[-26.9,7.1],"knL":[-19.1,129.9],"ftL":[-10.6,254]},{"rootY":2.5,"hips":[0,0],"chest":[-4.1,-99.3],"neck":[-7.5,-166.5],"head":[-6.7,-202.7],"shR":[46.4,-147.3],"elR":[88.3,-148.4],"haR":[110.5,-151.7],"shL":[-60.9,-146.7],"elL":[-98.1,-147.9],"haL":[-134.6,-148.3],"hipR":[26.1,9.1],"knR":[37.5,127.3],"ftR":[40.5,249.7],"hipL":[-27,6.5],"knL":[-18.6,129.4],"ftL":[-9.2,253.2]},{"rootY":2.8,"hips":[0,0],"chest":[-4.4,-99.1],"neck":[-8.1,-166.3],"head":[-7.3,-202.5],"shR":[45.9,-147.2],"elR":[82.6,-148.4],"haR":[98.9,-152.1],"shL":[-61.3,-146.7],"elL":[-92.4,-149.1],"haL":[-122.7,-150.5],"hipR":[26.1,9.3],"knR":[37.6,125.9],"ftR":[40.2,247],"hipL":[-27,6.3],"knL":[-18.1,129.1],"ftL":[-8.1,252.9]},{"rootY":3,"hips":[0,0],"chest":[-4.7,-98.9],"neck":[-8.5,-166.3],"head":[-7.9,-202.5],"shR":[45.4,-147.1],"elR":[77,-148.2],"haR":[88.1,-152.1],"shL":[-61.6,-146.8],"elL":[-86.9,-150.1],"haL":[-111.4,-152.5],"hipR":[26.1,9.3],"knR":[37.2,124.3],"ftR":[39,244.4],"hipL":[-27,6.3],"knL":[-17.7,129.1],"ftL":[-7.2,252.7]},{"rootY":3,"hips":[0,0],"chest":[-5.2,-98.7],"neck":[-9,-166.3],"head":[-8.7,-202.5],"shR":[44.9,-146.8],"elR":[71.5,-147.7],"haR":[78.4,-151.7],"shL":[-62,-146.8],"elL":[-81.7,-151],"haL":[-101.1,-154.4],"hipR":[26.1,9.2],"knR":[36.4,122.8],"ftR":[37.5,242.5],"hipL":[-27,6.4],"knL":[-17.5,129.2],"ftL":[-6.6,252.6]},{"rootY":3,"hips":[0,0],"chest":[-5.7,-98.6],"neck":[-9.7,-166.2],"head":[-9.6,-202.4],"shR":[44.2,-146.7],"elR":[66.3,-147],"haR":[69.8,-150.8],"shL":[-62.5,-146.7],"elL":[-77,-152],"haL":[-92.1,-156.1],"hipR":[26.2,9.1],"knR":[35.5,121.5],"ftR":[36.1,241.4],"hipL":[-27,6.5],"knL":[-17.5,129.4],"ftL":[-6.4,252.5]},{"rootY":3,"hips":[0,0],"chest":[-6.2,-98.5],"neck":[-10.3,-166.1],"head":[-10.4,-202.3],"shR":[43.5,-146.8],"elR":[61.5,-146.1],"haR":[62.5,-149.2],"shL":[-62.9,-147],"elL":[-72.7,-152.8],"haL":[-84.3,-157.4],"hipR":[26.2,9],"knR":[34.8,120.2],"ftR":[35.4,240.9],"hipL":[-27,6.6],"knL":[-17.5,129.4],"ftL":[-6.2,252.5]},{"rootY":3,"hips":[0,0],"chest":[-6.5,-98.5],"neck":[-10.9,-166.1],"head":[-11.2,-202.4],"shR":[42.9,-147.1],"elR":[57.5,-145.1],"haR":[56.3,-147.2],"shL":[-63.2,-147.6],"elL":[-68.8,-153.6],"haL":[-77.4,-158.1],"hipR":[26.2,9],"knR":[34.5,118.9],"ftR":[35.3,240.8],"hipL":[-27,6.6],"knL":[-17.5,129.4],"ftL":[-5.9,252.4]},{"rootY":2.9,"hips":[0,0],"chest":[-6.7,-98.5],"neck":[-11.4,-166.2],"head":[-12.2,-202.4],"shR":[42.5,-147.2],"elR":[54.2,-144.2],"haR":[51.1,-145.1],"shL":[-63.4,-148.1],"elL":[-65.4,-154],"haL":[-71.5,-158.4],"hipR":[26.2,9],"knR":[34.4,117.8],"ftR":[35.3,241.1],"hipL":[-27,6.6],"knL":[-17.5,129.5],"ftL":[-5.8,252.3]},{"rootY":2.9,"hips":[0,0],"chest":[-7.1,-98.4],"neck":[-12,-166.1],"head":[-13.3,-202.4],"shR":[41.9,-147],"elR":[51.4,-143.3],"haR":[46.6,-143.3],"shL":[-63.8,-148.2],"elL":[-62.9,-154.1],"haL":[-66.7,-158.4],"hipR":[26.3,8.8],"knR":[34.2,117.2],"ftR":[35.1,241.6],"hipL":[-26.9,6.8],"knL":[-17.6,129.7],"ftL":[-6.1,252.3]},{"rootY":2.8,"hips":[0,0],"chest":[-7.3,-98.3],"neck":[-12.5,-166],"head":[-14.5,-202.2],"shR":[41.3,-146.8],"elR":[49.1,-142.6],"haR":[42.9,-142.2],"shL":[-64.1,-148.1],"elL":[-61,-153.8],"haL":[-62.8,-158],"hipR":[26.4,8.7],"knR":[33.8,116.9],"ftR":[34.8,242],"hipL":[-26.9,7],"knL":[-17.9,129.9],"ftL":[-6.6,252.4]},{"rootY":2.9,"hips":[0,0],"chest":[-7.2,-98.2],"neck":[-12.7,-165.9],"head":[-15.5,-202.2],"shR":[41.1,-146.7],"elR":[47.5,-142.4],"haR":[40,-142.1],"shL":[-64.2,-148.2],"elL":[-59.3,-153.5],"haL":[-59.5,-157.2],"hipR":[26.5,8.6],"knR":[33.5,116.8],"ftR":[34.4,242.2],"hipL":[-26.9,7.1],"knL":[-18.3,129.9],"ftL":[-7,252.2]},{"rootY":3.1,"hips":[0,0],"chest":[-6.7,-98.3],"neck":[-12.6,-166],"head":[-16.3,-202.2],"shR":[41.2,-146.6],"elR":[46.4,-142.8],"haR":[37.6,-143],"shL":[-63.9,-148.5],"elL":[-57.6,-153],"haL":[-56.7,-155.8],"hipR":[26.5,8.6],"knR":[33.2,117],"ftR":[34,242],"hipL":[-27,7],"knL":[-18.6,129.9],"ftL":[-7.4,252]},{"rootY":3.3,"hips":[0,0],"chest":[-6.2,-98.3],"neck":[-12.4,-166.1],"head":[-17.3,-202.1],"shR":[41.4,-146.7],"elR":[45.7,-143.6],"haR":[35.5,-144.6],"shL":[-63.6,-148.7],"elL":[-56.1,-151.9],"haL":[-54.7,-153.6],"hipR":[26.5,8.6],"knR":[32.7,117.2],"ftR":[33.6,241.7],"hipL":[-27,7],"knL":[-19.2,130],"ftL":[-8.1,251.7]},{"rootY":3.5,"hips":[0,0],"chest":[-5.6,-98.3],"neck":[-12.3,-166.1],"head":[-18.5,-201.9],"shR":[41.5,-146.9],"elR":[45.1,-144.7],"haR":[33.5,-146.7],"shL":[-63.4,-148.6],"elL":[-54.8,-150.4],"haL":[-53.4,-150.4],"hipR":[26.6,8.6],"knR":[32,117.6],"ftR":[32.9,241.5],"hipL":[-27,7.1],"knL":[-19.9,130],"ftL":[-9,251.5]},{"rootY":3.8,"hips":[0,0],"chest":[-4.8,-98.4],"neck":[-12,-166.1],"head":[-19.7,-201.6],"shR":[41.8,-147.3],"elR":[44.8,-146.3],"haR":[31.9,-149.4],"shL":[-63.1,-148.3],"elL":[-53.7,-148.4],"haL":[-52.5,-146.8],"hipR":[26.6,8.6],"knR":[31.3,118.1],"ftR":[32.4,241.6],"hipL":[-27,7],"knL":[-20.4,130],"ftL":[-10,251.3]},{"rootY":4.1,"hips":[0,0],"chest":[-3.8,-98.5],"neck":[-11.4,-166.3],"head":[-20.6,-201.4],"shR":[42.3,-147.7],"elR":[44.6,-148.2],"haR":[30.8,-152.6],"shL":[-62.5,-147.6],"elL":[-52.7,-146.2],"haL":[-51.9,-142.9],"hipR":[26.5,8.8],"knR":[30.7,118.7],"ftR":[31.9,242.1],"hipL":[-27.1,6.9],"knL":[-20.8,129.8],"ftL":[-10.9,251]},{"rootY":4.5,"hips":[0,0],"chest":[-2.7,-98.6],"neck":[-10.7,-166.4],"head":[-21.5,-201.1],"shR":[43.1,-147.8],"elR":[44.6,-150.2],"haR":[29.9,-155.9],"shL":[-61.8,-146.6],"elL":[-51.9,-143.9],"haL":[-51.6,-139.2],"hipR":[26.5,8.9],"knR":[30.2,119.3],"ftR":[31.5,242.8],"hipL":[-27.1,6.7],"knL":[-21.2,129.5],"ftL":[-12,250.7]},{"rootY":5,"hips":[0,0],"chest":[-1.5,-98.7],"neck":[-9.9,-166.5],"head":[-22.3,-200.6],"shR":[44,-147.9],"elR":[44.8,-151.9],"haR":[29.1,-159.2],"shL":[-61,-145.9],"elL":[-51.2,-141.9],"haL":[-51.6,-135.8],"hipR":[26.4,9.1],"knR":[29.4,119.9],"ftR":[30.7,243.9],"hipL":[-27.1,6.6],"knL":[-21.7,129.1],"ftL":[-13.3,250.2]},{"rootY":5.5,"hips":[0,0],"chest":[-0.3,-98.8],"neck":[-8.9,-166.6],"head":[-23,-200.1],"shR":[45,-147.9],"elR":[45.2,-153.5],"haR":[28.7,-162.2],"shL":[-60.1,-145.5],"elL":[-50.5,-140.2],"haL":[-51.7,-132.8],"hipR":[26.4,9.2],"knR":[28.5,120.9],"ftR":[29.2,245.5],"hipL":[-27.2,6.4],"knL":[-22.3,128.7],"ftL":[-14.8,249.5]},{"rootY":5.9,"hips":[0,0],"chest":[1,-99],"neck":[-7.8,-166.8],"head":[-23.6,-199.5],"shR":[46.1,-147.6],"elR":[45.7,-154.7],"haR":[28.4,-164.9],"shL":[-59,-144.9],"elL":[-49.9,-138.7],"haL":[-51.9,-130.4],"hipR":[26.4,9.2],"knR":[27.5,122.3],"ftR":[27,247.2],"hipL":[-27.1,6.5],"knL":[-23.2,128.5],"ftL":[-16.7,248.8]},{"rootY":6,"hips":[0,0],"chest":[2.2,-99],"neck":[-6.5,-166.9],"head":[-24.2,-198.6],"shR":[47.3,-146.6],"elR":[46.3,-155.4],"haR":[28.3,-167],"shL":[-57.9,-144],"elL":[-49.4,-137.1],"haL":[-52.2,-128.3],"hipR":[26.5,8.8],"knR":[26.3,123.6],"ftR":[24.6,248.6],"hipL":[-27.1,6.8],"knL":[-24.4,128.6],"ftL":[-18.9,248.2]},{"rootY":5.9,"hips":[0,0],"chest":[3.6,-99],"neck":[-4.9,-166.9],"head":[-24.4,-197.4],"shR":[48.8,-146.1],"elR":[47.3,-156],"haR":[28.7,-168.8],"shL":[-56.3,-143],"elL":[-48.7,-135.7],"haL":[-52.3,-126.6],"hipR":[26.6,8.6],"knR":[25.1,124.2],"ftR":[22.3,249.3],"hipL":[-27,7.1],"knL":[-25.6,128.6],"ftL":[-21.2,247.2]},{"rootY":5.8,"hips":[0,0],"chest":[5.7,-99],"neck":[-2.7,-167],"head":[-23.8,-196.3],"shR":[50.8,-146.8],"elR":[49,-157.4],"haR":[30.2,-170.9],"shL":[-54.2,-142.7],"elL":[-47.5,-134.9],"haL":[-51.9,-125.4],"hipR":[26.5,8.8],"knR":[23.7,124.2],"ftR":[20.6,249.4],"hipL":[-27.1,6.8],"knL":[-26.7,128],"ftL":[-23.2,245.7]},{"rootY":5.8,"hips":[0,0],"chest":[8.1,-99],"neck":[-0.5,-167.1],"head":[-22.6,-195.5],"shR":[53,-148.4],"elR":[51.1,-159.7],"haR":[32.4,-173.5],"shL":[-51.8,-143],"elL":[-46,-134.5],"haL":[-51.1,-124.4],"hipR":[26.3,9.5],"knR":[22.1,124.1],"ftR":[19.3,249.4],"hipL":[-27.2,6.1],"knL":[-27.8,127.2],"ftL":[-24.8,243.8]},{"rootY":5.7,"hips":[0,0],"chest":[10.1,-98.9],"neck":[1.2,-167.1],"head":[-21.3,-195],"shR":[54.4,-149.6],"elR":[52.8,-162.3],"haR":[34.4,-176.6],"shL":[-50,-143.2],"elL":[-44.9,-134.1],"haL":[-50.3,-123.4],"hipR":[26.1,10],"knR":[20,124.5],"ftR":[17.8,249.5],"hipL":[-27.3,5.5],"knL":[-29.5,126.6],"ftL":[-26.7,242.1]},{"rootY":5.5,"hips":[0,0],"chest":[11.3,-98.9],"neck":[2.2,-167.1],"head":[-20.1,-195],"shR":[55.2,-150],"elR":[54,-164.4],"haR":[36,-179.8],"shL":[-49.1,-143.1],"elL":[-44.5,-133.7],"haL":[-49.9,-122.7],"hipR":[26,10],"knR":[17.7,125.2],"ftR":[16,249.7],"hipL":[-27.2,5.5],"knL":[-31.5,126.5],"ftL":[-28.9,240.7]},{"rootY":5.4,"hips":[0,0],"chest":[11.6,-98.9],"neck":[2.9,-167.2],"head":[-18.7,-195.4],"shR":[55.5,-149.8],"elR":[54.8,-165.8],"haR":[37,-182.7],"shL":[-48.6,-143.5],"elL":[-44.5,-133.6],"haL":[-50.1,-122.2],"hipR":[26.1,9.8],"knR":[16,125.8],"ftR":[13.8,249.9],"hipL":[-27.1,5.8],"knL":[-33.4,126.7],"ftL":[-31,239.1]},{"rootY":5.4,"hips":[0,0],"chest":[11.8,-98.9],"neck":[3.7,-167.4],"head":[-16.9,-196.1],"shR":[55.9,-149.7],"elR":[55.6,-166.8],"haR":[37.8,-184.8],"shL":[-48,-144.4],"elL":[-44.4,-134],"haL":[-50.4,-122.1],"hipR":[26.1,9.6],"knR":[15.2,126.5],"ftR":[11.9,250.2],"hipL":[-27,5.9],"knL":[-35.1,126.8],"ftL":[-32.8,237.1]},{"rootY":5.4,"hips":[0,0],"chest":[12.1,-98.8],"neck":[4.5,-167.5],"head":[-14.8,-196.9],"shR":[56.4,-149.9],"elR":[56,-167.4],"haR":[38.1,-185.9],"shL":[-47.3,-145.1],"elL":[-44.1,-134.5],"haL":[-50.7,-122.3],"hipR":[26.1,9.7],"knR":[14.9,127.3],"ftR":[10.4,250.6],"hipL":[-27.1,5.9],"knL":[-37.4,127.1],"ftL":[-34.6,234.2]},{"rootY":5.4,"hips":[0,0],"chest":[12.2,-98.8],"neck":[4.9,-167.6],"head":[-13,-197.9],"shR":[56.8,-150.2],"elR":[55.7,-167.9],"haR":[37.6,-186.2],"shL":[-46.9,-145.2],"elL":[-44,-134.8],"haL":[-51,-122.9],"hipR":[26.1,9.7],"knR":[14.4,128],"ftR":[9,250.7],"hipL":[-27.1,5.9],"knL":[-40.7,127.5],"ftL":[-36.9,230.5]},{"rootY":5.5,"hips":[0,0],"chest":[12.1,-98.8],"neck":[4.6,-167.6],"head":[-11.5,-198.9],"shR":[56.7,-150.8],"elR":[54.6,-168.2],"haR":[36.5,-185.9],"shL":[-47.1,-144.7],"elL":[-44.3,-135],"haL":[-51.3,-123.7],"hipR":[26.1,9.6],"knR":[13.6,128.3],"ftR":[7.7,250.5],"hipL":[-27.1,6],"knL":[-44.7,127.7],"ftL":[-39.5,226.6]},{"rootY":5.6,"hips":[0,0],"chest":[11.9,-98.8],"neck":[4.3,-167.6],"head":[-10.4,-199.6],"shR":[56.4,-151.3],"elR":[53.2,-168.2],"haR":[35.2,-185.1],"shL":[-47.3,-144.2],"elL":[-44.8,-135],"haL":[-51.6,-124.2],"hipR":[26.2,9.5],"knR":[12.8,128.6],"ftR":[6.8,250.2],"hipL":[-27.1,6.1],"knL":[-48.7,127.3],"ftL":[-42,223.8]},{"rootY":5.4,"hips":[0,0],"chest":[11.9,-98.6],"neck":[4.2,-167.4],"head":[-9.5,-199.9],"shR":[56.4,-151.6],"elR":[52,-167.7],"haR":[33.8,-183.6],"shL":[-47.2,-143.8],"elL":[-45.2,-134.7],"haL":[-51.7,-124.2],"hipR":[26.2,9.6],"knR":[12.8,129],"ftR":[6.3,250],"hipL":[-27.1,6],"knL":[-52.2,126.6],"ftL":[-44.8,223.8]},{"rootY":5.1,"hips":[0,0],"chest":[12,-98.5],"neck":[4.3,-167.2],"head":[-8.9,-200],"shR":[56.5,-152],"elR":[51,-166.9],"haR":[32.6,-181.3],"shL":[-47.1,-143.6],"elL":[-45.4,-134.4],"haL":[-51.8,-123.8],"hipR":[26.2,9.6],"knR":[13.5,129.6],"ftR":[6.2,250],"hipL":[-27.2,6],"knL":[-55.5,125.6],"ftL":[-49,226.5]},{"rootY":4.8,"hips":[0,0],"chest":[12,-98.3],"neck":[4.4,-167.1],"head":[-8.6,-199.9],"shR":[56.6,-152.3],"elR":[50.2,-165.7],"haR":[31.4,-178.8],"shL":[-47,-143.6],"elL":[-45.5,-134.2],"haL":[-51.9,-123.5],"hipR":[26.2,9.7],"knR":[14.4,130.2],"ftR":[5.9,250.2],"hipL":[-27.2,5.9],"knL":[-58.5,124.5],"ftL":[-54.8,230.6]},{"rootY":4.7,"hips":[0,0],"chest":[11.9,-98.2],"neck":[4.3,-167],"head":[-8.5,-199.8],"shR":[56.6,-152.6],"elR":[49.7,-164.7],"haR":[30.7,-176.5],"shL":[-46.9,-143.7],"elL":[-45.5,-134.1],"haL":[-51.9,-123.4],"hipR":[26.2,9.8],"knR":[15,130.8],"ftR":[5.5,250.2],"hipL":[-27.3,5.8],"knL":[-60.9,123.3],"ftL":[-61.6,234.6]},{"rootY":4.9,"hips":[0,0],"chest":[12,-98.1],"neck":[4.4,-166.8],"head":[-8.4,-199.7],"shR":[56.7,-152.8],"elR":[49.5,-163.8],"haR":[30.4,-174.4],"shL":[-46.8,-143.7],"elL":[-45.3,-134.2],"haL":[-51.8,-123.4],"hipR":[26.1,10],"knR":[15.4,131.1],"ftR":[5.6,249.9],"hipL":[-27.4,5.6],"knL":[-62.2,122.1],"ftL":[-68.7,237.8]},{"rootY":5.3,"hips":[0,0],"chest":[12.3,-98],"neck":[4.8,-166.7],"head":[-8,-199.6],"shR":[57.1,-152.9],"elR":[49.7,-162.9],"haR":[30.7,-172.7],"shL":[-46.4,-143.6],"elL":[-44.9,-134.1],"haL":[-51.6,-123.5],"hipR":[26,10.1],"knR":[15.9,131.4],"ftR":[6.1,249.4],"hipL":[-27.4,5.4],"knL":[-62.5,121],"ftL":[-75.4,240.1]},{"rootY":5.9,"hips":[0,0],"chest":[12.6,-97.9],"neck":[5.3,-166.6],"head":[-7.5,-199.6],"shR":[57.6,-152.8],"elR":[50.3,-162],"haR":[31.5,-171.1],"shL":[-45.9,-143.4],"elL":[-44.3,-134],"haL":[-51.1,-123.4],"hipR":[25.9,10.3],"knR":[16.5,131.7],"ftR":[6.9,248.7],"hipL":[-27.4,5.3],"knL":[-62.1,120.1],"ftL":[-81,241.4]},{"rootY":6.4,"hips":[0,0],"chest":[12.9,-97.8],"neck":[5.9,-166.5],"head":[-6.8,-199.6],"shR":[58.2,-152.4],"elR":[51.2,-161],"haR":[32.7,-169.6],"shL":[-45.3,-143.2],"elL":[-43.6,-133.8],"haL":[-50.5,-123],"hipR":[25.9,10.4],"knR":[17.4,132.1],"ftR":[8.1,248.2],"hipL":[-27.4,5.1],"knL":[-61.2,119.4],"ftL":[-84.7,241.8]},{"rootY":6.7,"hips":[0,0],"chest":[13.2,-97.6],"neck":[6.6,-166.4],"head":[-5.9,-199.6],"shR":[58.9,-152.1],"elR":[52.4,-160],"haR":[34.4,-168],"shL":[-44.7,-143.2],"elL":[-42.9,-133.5],"haL":[-49.8,-122.5],"hipR":[25.8,10.5],"knR":[18.5,132.5],"ftR":[9.6,247.8],"hipL":[-27.4,5.1],"knL":[-59.8,118.9],"ftL":[-86.4,241.4]},{"rootY":6.9,"hips":[0,0],"chest":[13.4,-97.5],"neck":[7.2,-166.3],"head":[-4.9,-199.7],"shR":[59.7,-151.8],"elR":[53.5,-159.1],"haR":[36.2,-166.6],"shL":[-44.1,-143.2],"elL":[-42.1,-133.2],"haL":[-48.9,-122],"hipR":[25.8,10.5],"knR":[19.8,132.9],"ftR":[11.5,247.4],"hipL":[-27.4,5],"knL":[-58.2,118.3],"ftL":[-86.1,240.2]},{"rootY":7.1,"hips":[0,0],"chest":[13.5,-97.4],"neck":[7.7,-166.2],"head":[-3.9,-199.9],"shR":[60.2,-151.7],"elR":[54.6,-158.3],"haR":[38.2,-165.3],"shL":[-43.7,-143.1],"elL":[-41.4,-133.2],"haL":[-47.9,-122],"hipR":[25.8,10.5],"knR":[21.2,133.2],"ftR":[13.6,246.9],"hipL":[-27.4,5.1],"knL":[-56.3,117.6],"ftL":[-83.7,238.7]},{"rootY":7.3,"hips":[0,0],"chest":[13.2,-97.3],"neck":[7.7,-166.2],"head":[-3,-200.3],"shR":[60.3,-151.7],"elR":[55.5,-157.8],"haR":[39.9,-164.2],"shL":[-43.7,-142.7],"elL":[-41,-133.4],"haL":[-47.1,-122.6],"hipR":[25.7,10.4],"knR":[22.8,133.3],"ftR":[15.8,246.4],"hipL":[-27.3,5.2],"knL":[-54.1,117.1],"ftL":[-79.8,237.6]},{"rootY":7.5,"hips":[0,0],"chest":[12.5,-97.4],"neck":[7.1,-166.3],"head":[-2.3,-200.9],"shR":[59.8,-151.7],"elR":[56,-157.4],"haR":[41.4,-163.2],"shL":[-44.3,-142.2],"elL":[-41.2,-133.9],"haL":[-46.6,-124],"hipR":[25.7,10.2],"knR":[24.6,133.3],"ftR":[18.1,245.7],"hipL":[-27.2,5.4],"knL":[-51.5,116.9],"ftL":[-75.1,236.9]},{"rootY":7.9,"hips":[0,0],"chest":[11.3,-97.4],"neck":[6.1,-166.5],"head":[-1.6,-201.5],"shR":[58.9,-151.5],"elR":[56.1,-157],"haR":[42.6,-162.5],"shL":[-45.2,-141.9],"elL":[-42,-134.9],"haL":[-46.6,-126.2],"hipR":[25.8,9.9],"knR":[26.3,133.1],"ftR":[20.5,244.8],"hipL":[-27.1,5.7],"knL":[-48.4,117.2],"ftL":[-69.8,236.7]},{"rootY":8.5,"hips":[0,0],"chest":[10,-97.5],"neck":[5,-166.7],"head":[-0.9,-202],"shR":[58.1,-151.2],"elR":[55.9,-156.6],"haR":[43.4,-162],"shL":[-46.3,-141.9],"elL":[-43.1,-136.5],"haL":[-47,-129.3],"hipR":[25.8,9.6],"knR":[28,132.8],"ftR":[23.2,243.4],"hipL":[-27,6],"knL":[-44.9,117.9],"ftL":[-63.2,237.3]},{"rootY":9.3,"hips":[0,0],"chest":[8.7,-97.5],"neck":[4.3,-166.8],"head":[-0.1,-202.4],"shR":[57.5,-150.7],"elR":[55.9,-156.1],"haR":[44.1,-161.5],"shL":[-47.1,-142.2],"elL":[-43.8,-138.3],"haL":[-47.3,-132.9],"hipR":[25.9,9.4],"knR":[30.1,132.3],"ftR":[26.3,241.6],"hipL":[-26.9,6.2],"knL":[-40.8,119.5],"ftL":[-55.3,239.2]},{"rootY":10,"hips":[0,0],"chest":[7.6,-97.4],"neck":[3.8,-166.8],"head":[1,-202.6],"shR":[57.2,-149.6],"elR":[56.2,-155.2],"haR":[45.1,-160.8],"shL":[-47.6,-142.2],"elL":[-44.1,-140.4],"haL":[-47.4,-136.8],"hipR":[25.8,9.4],"knR":[32.8,131.9],"ftR":[30.2,239.6],"hipL":[-26.8,6.2],"knL":[-36.7,121.5],"ftL":[-47.4,241.5]},{"rootY":10.5,"hips":[0,0],"chest":[6.8,-97],"neck":[3.4,-166.5],"head":[2.1,-202.3],"shR":[56.9,-147.4],"elR":[56.8,-153.6],"haR":[46.6,-160],"shL":[-48,-141.6],"elL":[-44,-142.3],"haL":[-46.9,-141],"hipR":[25.4,10],"knR":[36,131.8],"ftR":[34.9,237.3],"hipL":[-26.8,5.6],"knL":[-33.6,122.9],"ftL":[-41,243.4]},{"rootY":10.4,"hips":[0,0],"chest":[6.3,-96.1],"neck":[2.6,-165.7],"head":[3.3,-201.5],"shR":[56.5,-144.9],"elR":[57.5,-151.7],"haR":[48.4,-158.7],"shL":[-48.4,-140.4],"elL":[-43.7,-143.7],"haL":[-45.8,-145],"hipR":[25,11.2],"knR":[39.2,132.1],"ftR":[39.9,234.5],"hipL":[-26.9,4.3],"knL":[-31.3,123],"ftL":[-36.3,244.5]},{"rootY":9.5,"hips":[0,0],"chest":[6.2,-94.9],"neck":[1.2,-164.6],"head":[4.3,-200.2],"shR":[55.6,-143.9],"elR":[58.1,-149.8],"haR":[49.8,-156.2],"shL":[-49.2,-138.8],"elL":[-43.7,-144.7],"haL":[-44.6,-148.2],"hipR":[24.5,12.4],"knR":[41.9,132.3],"ftR":[44.9,231.2],"hipL":[-27,3],"knL":[-28.9,122.8],"ftL":[-32.1,245.6]},{"rootY":8,"hips":[0,0],"chest":[5.4,-93.9],"neck":[-1,-163.6],"head":[4.6,-199],"shR":[53.9,-144.6],"elR":[57.9,-148.3],"haR":[50.6,-152.7],"shL":[-50.9,-137.4],"elL":[-44.4,-145.5],"haL":[-44,-151],"hipR":[24.2,13],"knR":[44.3,132.4],"ftR":[49.1,227.5],"hipL":[-27,2.4],"knL":[-26.9,123.3],"ftL":[-28.1,247.2]},{"rootY":6.6,"hips":[0,0],"chest":[3.6,-93.2],"neck":[-3.5,-162.9],"head":[4.3,-197.8],"shR":[51.6,-145.5],"elR":[56.7,-147],"haR":[50.9,-149.3],"shL":[-53.2,-136.7],"elL":[-45.8,-146.7],"haL":[-44.1,-154],"hipR":[24,13.1],"knR":[47,132.8],"ftR":[51.7,222.7],"hipL":[-26.8,2.2],"knL":[-25.6,124.2],"ftL":[-24.9,248.6]},{"rootY":6.3,"hips":[0,0],"chest":[1.5,-92.8],"neck":[-5.7,-162.5],"head":[3.5,-197],"shR":[49.5,-145.3],"elR":[55.4,-146],"haR":[51,-147.3],"shL":[-55.3,-136.9],"elL":[-47,-149],"haL":[-44.5,-158.2],"hipR":[23.7,13.5],"knR":[50.3,133.5],"ftR":[52.5,216.4],"hipL":[-26.6,1.7],"knL":[-24.7,124.3],"ftL":[-22.5,249]},{"rootY":6.8,"hips":[0,0],"chest":[0,-92.5],"neck":[-7.2,-162.2],"head":[2.3,-196.6],"shR":[48.2,-144.5],"elR":[54.7,-145],"haR":[50.9,-146.2],"shL":[-56.8,-137.5],"elL":[-47.5,-151.7],"haL":[-44.7,-162.8],"hipR":[23.3,14.3],"knR":[53.5,133.7],"ftR":[51.7,209.8],"hipL":[-26.5,0.8],"knL":[-24,123.8],"ftL":[-20.4,248.6]},{"rootY":7.1,"hips":[0,0],"chest":[-1,-92.3],"neck":[-8.5,-161.9],"head":[0.5,-196.5],"shR":[47.1,-144.1],"elR":[54.4,-143.5],"haR":[50.3,-144.1],"shL":[-57.9,-137.3],"elL":[-47.5,-153.4],"haL":[-44.4,-166.2],"hipR":[23.1,14.7],"knR":[55.4,132.9],"ftR":[49.7,205.5],"hipL":[-26.5,0.3],"knL":[-23.6,123.4],"ftL":[-18.7,248.3]},{"rootY":6.8,"hips":[0,0],"chest":[-1.9,-92.1],"neck":[-9.8,-161.7],"head":[-1.7,-196.7],"shR":[45.9,-144.5],"elR":[53.9,-141.7],"haR":[49.5,-140.7],"shL":[-59,-136.4],"elL":[-47.3,-153.8],"haL":[-43.3,-167.8],"hipR":[23.2,14.5],"knR":[55.9,131.1],"ftR":[47.1,205.4],"hipL":[-26.6,0.4],"knL":[-23.3,123.6],"ftL":[-17.8,248.6]},{"rootY":6.2,"hips":[0,0],"chest":[-2.8,-92.2],"neck":[-11.1,-161.7],"head":[-4.2,-197],"shR":[44.7,-145.1],"elR":[53,-140],"haR":[48.8,-137],"shL":[-60.2,-135.5],"elL":[-46.9,-153.5],"haL":[-41.1,-167.9],"hipR":[23.5,14.2],"knR":[55.5,128.7],"ftR":[45.4,209.5],"hipL":[-26.7,0.9],"knL":[-22.8,124],"ftL":[-17.6,249.2]},{"rootY":5.8,"hips":[0,0],"chest":[-3.7,-92.4],"neck":[-12.3,-161.8],"head":[-6.6,-197.4],"shR":[43.4,-145.5],"elR":[51.6,-138.7],"haR":[48.1,-134.1],"shL":[-61.4,-135],"elL":[-46.1,-153.1],"haL":[-38.1,-167.7],"hipR":[23.8,13.9],"knR":[54.4,125.9],"ftR":[45.6,216.6],"hipL":[-26.8,1.2],"knL":[-22.3,124.3],"ftL":[-17.6,249.6]},{"rootY":5.5,"hips":[0,0],"chest":[-4.5,-92.5],"neck":[-13.3,-161.8],"head":[-8.7,-197.6],"shR":[42.3,-145.5],"elR":[50.2,-137.6],"haR":[47,-131.6],"shL":[-62.4,-134.7],"elL":[-45,-152.6],"haL":[-35.1,-167.2],"hipR":[24,13.6],"knR":[53,123.3],"ftR":[47.8,225.3],"hipL":[-26.9,1.6],"knL":[-22.1,124.7],"ftL":[-17.7,249.9]},{"rootY":5.3,"hips":[0,0],"chest":[-4.9,-92.5],"neck":[-13.9,-161.8],"head":[-10.1,-197.7],"shR":[41.6,-145.4],"elR":[49.3,-136.3],"haR":[46,-129.2],"shL":[-63,-134.6],"elL":[-43.7,-152.1],"haL":[-32.2,-166.4],"hipR":[24.2,13.3],"knR":[52.4,121.2],"ftR":[50.9,234.4],"hipL":[-27,1.8],"knL":[-22.1,124.9],"ftL":[-17.7,250.1]},{"rootY":5.3,"hips":[0,0],"chest":[-4.7,-92.5],"neck":[-13.8,-161.7],"head":[-10.7,-197.8],"shR":[41.6,-145.2],"elR":[49.1,-134.9],"haR":[45.3,-126.8],"shL":[-63,-134.6],"elL":[-42.3,-151.5],"haL":[-29.8,-165.2],"hipR":[24.4,13.2],"knR":[52.9,120.2],"ftR":[54.5,241.5],"hipL":[-27.1,2],"knL":[-22.4,125.1],"ftL":[-17.8,250.2]},{"rootY":5.3,"hips":[0,0],"chest":[-4.1,-92.6],"neck":[-13.3,-161.8],"head":[-10.5,-197.9],"shR":[42,-144.9],"elR":[49.2,-133.4],"haR":[44.9,-124.6],"shL":[-62.7,-134.5],"elL":[-41.2,-150.7],"haL":[-28,-163.7],"hipR":[24.5,13.1],"knR":[53.7,119.9],"ftR":[58.5,244.9],"hipL":[-27.2,2.1],"knL":[-22.6,125.1],"ftL":[-18,250.3]},{"rootY":5.2,"hips":[0,0],"chest":[-3.4,-92.8],"neck":[-12.4,-161.9],"head":[-9.7,-198.1],"shR":[42.5,-144.1],"elR":[48.9,-132],"haR":[44,-122.6],"shL":[-62.1,-134.6],"elL":[-40.6,-149.8],"haL":[-27.2,-162],"hipR":[24.6,12.9],"knR":[53.1,120.5],"ftR":[62.9,244.6],"hipL":[-27.3,2.3],"knL":[-22.8,125.3],"ftL":[-18.4,250.3]},{"rootY":5.3,"hips":[0,0],"chest":[-2.9,-92.9],"neck":[-11.3,-162.1],"head":[-8.8,-198.2],"shR":[43.2,-143.3],"elR":[48.3,-130.8],"haR":[42.3,-121],"shL":[-61.5,-135.2],"elL":[-40.4,-149.1],"haL":[-27.4,-160.2],"hipR":[24.7,12.9],"knR":[51,121.7],"ftR":[66.8,241.5],"hipL":[-27.4,2.4],"knL":[-23.3,125.3],"ftL":[-19.4,250.3]},{"rootY":5.6,"hips":[0,0],"chest":[-2.3,-92.9],"neck":[-9.9,-162.2],"head":[-7.8,-198.4],"shR":[44.1,-142.8],"elR":[47.6,-129.9],"haR":[40.2,-120],"shL":[-60.8,-136.6],"elL":[-40.5,-148.9],"haL":[-28.4,-158.7],"hipR":[24.7,12.9],"knR":[49.3,122.1],"ftR":[69.9,237.4],"hipL":[-27.5,2.3],"knL":[-23.9,125.2],"ftL":[-20.8,250]},{"rootY":5.8,"hips":[0,0],"chest":[-1.6,-92.8],"neck":[-8.5,-162.3],"head":[-6.8,-198.5],"shR":[45,-142.4],"elR":[47,-129.1],"haR":[38.2,-119.2],"shL":[-60,-137.7],"elL":[-40.6,-148.7],"haL":[-29.8,-157.3],"hipR":[24.8,12.8],"knR":[49.6,121.1],"ftR":[72.5,234.2],"hipL":[-27.6,2.4],"knL":[-24.8,125.3],"ftL":[-22.6,249.8]},{"rootY":5.8,"hips":[0,0],"chest":[-1.1,-92.7],"neck":[-7.2,-162.2],"head":[-5.8,-198.5],"shR":[45.8,-141.8],"elR":[46.5,-128.5],"haR":[36.3,-118.8],"shL":[-59.2,-138.2],"elL":[-40.7,-148.4],"haL":[-31.3,-156.2],"hipR":[25,12.4],"knR":[51.3,118.9],"ftR":[74.6,232.5],"hipL":[-27.7,2.8],"knL":[-25.8,125.5],"ftL":[-24.7,249.7]},{"rootY":5.9,"hips":[0,0],"chest":[-0.8,-92.3],"neck":[-6.3,-161.9],"head":[-5.2,-198.2],"shR":[46.3,-141],"elR":[45.9,-128.1],"haR":[34.4,-119],"shL":[-58.7,-138.8],"elL":[-41.1,-148.3],"haL":[-32.8,-155.5],"hipR":[25.2,12],"knR":[52.8,116.4],"ftR":[75.5,232.3],"hipL":[-27.6,3.2],"knL":[-27.2,125.7],"ftL":[-27.3,249.6]},{"rootY":6.2,"hips":[0,0],"chest":[-0.5,-92.1],"neck":[-5.7,-161.7],"head":[-4.9,-198],"shR":[46.6,-140.2],"elR":[45.1,-128.1],"haR":[32.5,-119.9],"shL":[-58.4,-139.9],"elL":[-41.8,-148.7],"haL":[-34.4,-155.3],"hipR":[25.4,11.6],"knR":[53,113.9],"ftR":[74.8,232.8],"hipL":[-27.6,3.7],"knL":[-28.9,125.7],"ftL":[-30.6,249.2]},{"rootY":6.9,"hips":[0,0],"chest":[-0.1,-91.9],"neck":[-5.2,-161.6],"head":[-4.8,-197.9],"shR":[46.8,-139.6],"elR":[44.4,-128.6],"haR":[30.9,-121.6],"shL":[-58.1,-140.8],"elL":[-42.5,-149.3],"haL":[-36,-155.6],"hipR":[25.5,11.3],"knR":[51.4,111.6],"ftR":[72.9,233.2],"hipL":[-27.6,4],"knL":[-30.9,125.4],"ftL":[-34.5,248.4]},{"rootY":8.3,"hips":[0,0],"chest":[0.5,-91.7],"neck":[-4.7,-161.5],"head":[-4.9,-197.7],"shR":[47.3,-139.3],"elR":[44.1,-129.8],"haR":[29.7,-124.1],"shL":[-57.6,-140.9],"elL":[-43.1,-149.9],"haL":[-37.7,-156.6],"hipR":[25.6,11.2],"knR":[48.2,110.6],"ftR":[70.1,233.7],"hipL":[-27.6,4.1],"knL":[-33.1,124.7],"ftL":[-38.9,247]},{"rootY":10.3,"hips":[0,0],"chest":[1.6,-91.5],"neck":[-4,-161.2],"head":[-5.1,-197.4],"shR":[47.9,-139.2],"elR":[44.2,-131.5],"haR":[29,-127.5],"shL":[-56.9,-140.4],"elL":[-43.4,-150.5],"haL":[-39,-158.1],"hipR":[25.5,11.3],"knR":[44.3,111.8],"ftR":[66.3,235.2],"hipL":[-27.6,4.1],"knL":[-35.5,123.7],"ftL":[-43.7,244.9]},{"rootY":12.9,"hips":[0,0],"chest":[2.9,-91.4],"neck":[-3.5,-161.1],"head":[-5.6,-197.2],"shR":[48.6,-139.1],"elR":[44.4,-133.8],"haR":[28.4,-132.4],"shL":[-56.2,-139.7],"elL":[-43.9,-150.9],"haL":[-40.3,-159.6],"hipR":[25.5,11.3],"knR":[39.3,113.9],"ftR":[60.9,236.8],"hipL":[-27.6,4],"knL":[-38.2,122.8],"ftL":[-49.2,242.2]},{"rootY":16,"hips":[0,0],"chest":[3.7,-91.6],"neck":[-3.4,-161.4],"head":[-6.8,-197.2],"shR":[48.7,-138.9],"elR":[44.1,-136.9],"haR":[26.7,-139.3],"shL":[-55.9,-138.3],"elL":[-44.8,-150.6],"haL":[-42.3,-160],"hipR":[25.6,11.1],"knR":[32.3,115],"ftR":[54,236.6],"hipL":[-27.6,4.3],"knL":[-41.5,122.3],"ftL":[-55.7,238.9]},{"rootY":18.6,"hips":[0,0],"chest":[3.3,-92],"neck":[-4.2,-161.7],"head":[-8.8,-197.2],"shR":[47.9,-138.7],"elR":[43.2,-140.8],"haR":[23.4,-148.5],"shL":[-56.3,-135.9],"elL":[-46.2,-148.3],"haL":[-44.8,-157.3],"hipR":[26,10.2],"knR":[23.7,114.6],"ftR":[46.2,234.6],"hipL":[-27.4,5.3],"knL":[-45.1,122.6],"ftL":[-62.9,235.3]},{"rootY":19.5,"hips":[0,0],"chest":[1.7,-92.2],"neck":[-5.8,-161.9],"head":[-10.9,-197.2],"shR":[46.2,-138.7],"elR":[41.9,-145.2],"haR":[19.3,-158.8],"shL":[-57.3,-133.3],"elL":[-47.4,-143.8],"haL":[-46.2,-150.5],"hipR":[26.5,8.9],"knR":[16.3,114.6],"ftR":[38.6,233.3],"hipL":[-27.1,6.6],"knL":[-48.3,123.9],"ftL":[-69.5,231.7]},{"rootY":18.2,"hips":[0,0],"chest":[-0.4,-92.5],"neck":[-8,-162.2],"head":[-12.4,-197.5],"shR":[44.2,-139.5],"elR":[40.9,-150],"haR":[15.4,-169.3],"shL":[-59,-132],"elL":[-47.9,-138.1],"haL":[-45.5,-140.8],"hipR":[26.9,7.6],"knR":[12,115.9],"ftR":[31.7,234.6],"hipL":[-26.7,8],"knL":[-51.1,126.3],"ftL":[-73.8,227.8]},{"rootY":15.7,"hips":[0,0],"chest":[-2.4,-93.2],"neck":[-10.2,-162.8],"head":[-13.1,-198.3],"shR":[42.3,-141.2],"elR":[40,-155.3],"haR":[12.3,-179.5],"shL":[-60.9,-132.2],"elL":[-47.9,-133.1],"haL":[-43.5,-131.2],"hipR":[27.1,6.4],"knR":[10.1,117.8],"ftR":[25.7,237.3],"hipL":[-26.4,9.1],"knL":[-54,128.5],"ftL":[-75.1,222.9]},{"rootY":13.4,"hips":[0,0],"chest":[-3.6,-94],"neck":[-11.6,-163.6],"head":[-12.9,-199.2],"shR":[41.3,-143.7],"elR":[39.4,-161],"haR":[10.8,-189],"shL":[-62.3,-133.2],"elL":[-47.6,-129.5],"haL":[-41.3,-123.7],"hipR":[27.3,5.6],"knR":[8.8,119.4],"ftR":[21,239.6],"hipL":[-26,10],"knL":[-56.3,129.4],"ftL":[-73.6,217.2]},{"rootY":11.7,"hips":[0,0],"chest":[-3.9,-94.6],"neck":[-11.8,-164.2],"head":[-11.8,-199.9],"shR":[41.4,-146],"elR":[39.6,-166.3],"haR":[11.1,-196.8],"shL":[-62.6,-134],"elL":[-47.1,-127.1],"haL":[-39.7,-118.3],"hipR":[27.3,5.1],"knR":[8.2,120.6],"ftR":[17.7,241.1],"hipL":[-25.8,10.4],"knL":[-57.1,128.8],"ftL":[-70.2,212]},{"rootY":10.6,"hips":[0,0],"chest":[-3.5,-95],"neck":[-11,-164.7],"head":[-9.9,-200.5],"shR":[42.3,-147.4],"elR":[40.6,-170.2],"haR":[12.6,-202.2],"shL":[-62,-134.5],"elL":[-46.7,-125.2],"haL":[-38.8,-114.4],"hipR":[27.3,5.1],"knR":[8.7,121.6],"ftR":[15.5,242.2],"hipL":[-25.8,10.5],"knL":[-57.2,126.9],"ftL":[-66,209.1]},{"rootY":9.9,"hips":[0,0],"chest":[-2.8,-95.3],"neck":[-9.7,-164.9],"head":[-7.8,-200.8],"shR":[43.4,-147.7],"elR":[42,-172.1],"haR":[14.5,-204.7],"shL":[-61,-135.1],"elL":[-46.6,-123.9],"haL":[-38.8,-111.6],"hipR":[27.3,5.3],"knR":[9.9,122.6],"ftR":[13.8,243],"hipL":[-25.9,10.3],"knL":[-57.3,124.3],"ftL":[-61.9,209.7]},{"rootY":9.3,"hips":[0,0],"chest":[-2.3,-95.4],"neck":[-8.3,-165],"head":[-5.7,-201],"shR":[44.6,-147.3],"elR":[43.5,-171.9],"haR":[16.6,-204.4],"shL":[-60,-135.9],"elL":[-46.7,-123.2],"haL":[-39.7,-109.9],"hipR":[27.3,5.5],"knR":[11.1,123.3],"ftR":[12.4,243.5],"hipL":[-26,10.1],"knL":[-57.6,121.6],"ftL":[-58.7,213.4]},{"rootY":8.8,"hips":[0,0],"chest":[-1.8,-95.4],"neck":[-7.1,-165],"head":[-3.8,-201],"shR":[45.8,-146.9],"elR":[45.4,-170.1],"haR":[18.9,-201.8],"shL":[-59.1,-136.9],"elL":[-46.8,-123.2],"haL":[-40.9,-109.1],"hipR":[27.3,5.6],"knR":[12,124.1],"ftR":[11.3,244],"hipL":[-26.1,10],"knL":[-57.4,119.4],"ftL":[-57.2,219.1]},{"rootY":8.1,"hips":[0,0],"chest":[-1.6,-95.2],"neck":[-6.3,-164.8],"head":[-2.1,-200.7],"shR":[46.6,-146.8],"elR":[47.3,-167.4],"haR":[21.3,-197.2],"shL":[-58.5,-137.6],"elL":[-47,-123.4],"haL":[-41.9,-108.7],"hipR":[27.3,5.7],"knR":[12.9,125.1],"ftR":[10.5,244.7],"hipL":[-26.1,9.8],"knL":[-56.8,117.6],"ftL":[-57.6,225.2]},{"rootY":7.4,"hips":[0,0],"chest":[-1.8,-95],"neck":[-5.9,-164.4],"head":[-0.7,-200.3],"shR":[47,-146.7],"elR":[48.7,-164.3],"haR":[23.5,-191.5],"shL":[-58.3,-138.4],"elL":[-47.3,-123.6],"haL":[-42.5,-108.6],"hipR":[27.3,5.8],"knR":[13.8,126],"ftR":[9.7,245.5],"hipL":[-26.2,9.8],"knL":[-56,116.2],"ftL":[-59.5,230.4]},{"rootY":6.8,"hips":[0,0],"chest":[-2.1,-94.8],"neck":[-5.5,-164.2],"head":[0.6,-200],"shR":[47.3,-146.3],"elR":[49.4,-161],"haR":[25.5,-185.2],"shL":[-58.2,-139.3],"elL":[-47.8,-123.8],"haL":[-43,-108.5],"hipR":[27.3,5.8],"knR":[14.6,126.7],"ftR":[9.2,246.1],"hipL":[-26.2,9.7],"knL":[-55,115],"ftL":[-61.8,234.1]},{"rootY":6.4,"hips":[0,0],"chest":[-2.1,-94.7],"neck":[-4.9,-164.1],"head":[2,-199.8],"shR":[47.8,-145.7],"elR":[49.8,-157.5],"haR":[27.3,-178.6],"shL":[-57.8,-140.2],"elL":[-48,-124.2],"haL":[-43.5,-108.5],"hipR":[27.3,5.9],"knR":[15.2,127.3],"ftR":[9.1,246.5],"hipL":[-26.2,9.7],"knL":[-53.7,113.9],"ftL":[-63.3,236.2]},{"rootY":6.1,"hips":[0,0],"chest":[-1.8,-94.8],"neck":[-4,-164],"head":[3.3,-199.6],"shR":[48.5,-145.2],"elR":[50.3,-154.1],"haR":[28.7,-172],"shL":[-57.1,-140.8],"elL":[-47.8,-124.6],"haL":[-43.7,-108.7],"hipR":[27.3,6],"knR":[16,127.9],"ftR":[9.3,246.7],"hipL":[-26.2,9.5],"knL":[-52.1,113],"ftL":[-63.9,237.1]},{"rootY":6,"hips":[0,0],"chest":[-1.6,-94.8],"neck":[-3.1,-164],"head":[4.4,-199.6],"shR":[49.3,-144.9],"elR":[50.9,-150.9],"haR":[29.7,-165.7],"shL":[-56.2,-141.4],"elL":[-47.4,-125.1],"haL":[-43.8,-109],"hipR":[27.2,6.2],"knR":[16.7,128.4],"ftR":[9.8,246.7],"hipL":[-26.2,9.3],"knL":[-50.5,112.5],"ftL":[-63.9,237.1]},{"rootY":6.1,"hips":[0,0],"chest":[-1.4,-94.9],"neck":[-2.5,-164.1],"head":[5.2,-199.6],"shR":[49.9,-144.7],"elR":[51.3,-148.1],"haR":[30.4,-160.1],"shL":[-55.5,-141.9],"elL":[-46.9,-125.6],"haL":[-43.7,-109.5],"hipR":[27.2,6.3],"knR":[17.4,128.8],"ftR":[10.4,246.5],"hipL":[-26.2,9.2],"knL":[-48.6,112.8],"ftL":[-62.9,236.7]},{"rootY":6.3,"hips":[0,0],"chest":[-1.4,-95.2],"neck":[-2.1,-164.3],"head":[5.8,-199.7],"shR":[50.3,-144.2],"elR":[51.5,-145.4],"haR":[30.8,-155.1],"shL":[-55.1,-142.4],"elL":[-46.6,-126.2],"haL":[-43.5,-109.9],"hipR":[27.2,6.2],"knR":[18.1,129],"ftR":[11,246.3],"hipL":[-26.2,9.3],"knL":[-46.3,113.8],"ftL":[-60.6,236]},{"rootY":6.6,"hips":[0,0],"chest":[-1.7,-95.6],"neck":[-2.1,-164.6],"head":[6,-200],"shR":[50.3,-143.7],"elR":[51.4,-143.1],"haR":[31.1,-150.8],"shL":[-55,-142.8],"elL":[-46.5,-126.7],"haL":[-43.3,-110.4],"hipR":[27.3,6],"knR":[18.9,128.9],"ftR":[11.7,245.9],"hipL":[-26.2,9.6],"knL":[-43.6,115.4],"ftL":[-57.2,235]},{"rootY":7.1,"hips":[0,0],"chest":[-2.2,-95.9],"neck":[-2.5,-164.9],"head":[5.9,-200.2],"shR":[49.9,-143.2],"elR":[51,-140.9],"haR":[31.1,-147],"shL":[-55.3,-143],"elL":[-46.7,-127.3],"haL":[-43.2,-111.6],"hipR":[27.4,5.7],"knR":[19.8,128.5],"ftR":[12.4,245.4],"hipL":[-26.1,9.9],"knL":[-40.5,117.6],"ftL":[-52.5,234.6]},{"rootY":7.7,"hips":[0,0],"chest":[-2.7,-96.2],"neck":[-2.8,-165.2],"head":[5.8,-200.5],"shR":[49.5,-142.6],"elR":[50.7,-138.6],"haR":[30.9,-143.1],"shL":[-55.6,-143],"elL":[-46.9,-128.3],"haL":[-43,-113.5],"hipR":[27.4,5.5],"knR":[20.9,127.9],"ftR":[13.6,244.7],"hipL":[-26,10.1],"knL":[-36.4,120.3],"ftL":[-45.7,235.9]},{"rootY":8.5,"hips":[0,0],"chest":[-3.2,-96.7],"neck":[-3,-165.7],"head":[5.8,-200.9],"shR":[49.3,-141.4],"elR":[50.5,-135.1],"haR":[30.6,-138.2],"shL":[-55.8,-142.5],"elL":[-46.8,-129.6],"haL":[-43.1,-116],"hipR":[27.4,5.6],"knR":[22,127.3],"ftR":[15.1,243.6],"hipL":[-26.1,10],"knL":[-31.5,123.4],"ftL":[-37.1,238.4]},{"rootY":9.4,"hips":[0,0],"chest":[-4,-97.1],"neck":[-3.2,-166.1],"head":[5.8,-201.3],"shR":[49,-139.6],"elR":[50.3,-130.4],"haR":[30.5,-131.4],"shL":[-56,-141.9],"elL":[-47.2,-131.1],"haL":[-43.2,-119.7],"hipR":[27.3,5.8],"knR":[23.2,126.9],"ftR":[16.8,242.2],"hipL":[-26.2,9.8],"knL":[-27.4,125.5],"ftL":[-29.6,240.4]},{"rootY":10.3,"hips":[0,0],"chest":[-4.2,-97.4],"neck":[-2.8,-166.3],"head":[5.9,-201.5],"shR":[48.9,-137.6],"elR":[49.8,-124.8],"haR":[31.1,-122.3],"shL":[-56.1,-141.2],"elL":[-48,-133],"haL":[-42.7,-125],"hipR":[27.1,6.6],"knR":[24.7,127],"ftR":[19.1,240.6],"hipL":[-26.4,9.1],"knL":[-25.3,125.7],"ftL":[-24.9,241]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-97.2],"neck":[-1.1,-166.1],"head":[6.9,-201.4],"shR":[50.1,-135.7],"elR":[49.6,-119],"haR":[32.9,-111.1],"shL":[-54.8,-140.6],"elL":[-48.3,-135.6],"haL":[-41.4,-131.5],"hipR":[26.7,8.1],"knR":[26.7,127.9],"ftR":[22.7,239.1],"hipL":[-26.9,7.5],"knL":[-24.4,124.5],"ftL":[-21.7,241.4]},{"rootY":9.3,"hips":[0,0],"chest":[1.2,-96.9],"neck":[2,-165.8],"head":[8.9,-201.3],"shR":[52.9,-135.1],"elR":[49.8,-113.7],"haR":[35,-99],"shL":[-51.9,-140.3],"elL":[-47.6,-139.1],"haL":[-39.7,-139],"hipR":[26.1,9.9],"knR":[29.2,129.1],"ftR":[27.2,237.4],"hipL":[-27.3,5.8],"knL":[-22.9,123.8],"ftL":[-18.1,242.7]},{"rootY":7.4,"hips":[0,0],"chest":[5,-96.7],"neck":[5.6,-165.8],"head":[10.9,-201.5],"shR":[56.2,-136.2],"elR":[50.1,-109.3],"haR":[36.2,-87.8],"shL":[-48.5,-140.5],"elL":[-46.7,-143.4],"haL":[-38.5,-147.4],"hipR":[25.7,10.9],"knR":[32.1,130],"ftR":[31.7,235],"hipL":[-27.5,4.6],"knL":[-20.9,124.2],"ftL":[-13.7,244.6]},{"rootY":5.9,"hips":[0,0],"chest":[7.6,-96.9],"neck":[8.3,-166.1],"head":[12.3,-201.9],"shR":[58.6,-137.8],"elR":[50.6,-105.9],"haR":[36.5,-79.4],"shL":[-46,-141.4],"elL":[-46.1,-148.7],"haL":[-37.9,-157.2],"hipR":[25.3,11.5],"knR":[35.5,130.9],"ftR":[35.8,231.8],"hipL":[-27.5,4.1],"knL":[-19.2,124.7],"ftL":[-10,246]},{"rootY":5.3,"hips":[0,0],"chest":[8.9,-97.1],"neck":[10,-166.3],"head":[13.5,-202.1],"shR":[60.1,-138.2],"elR":[51.7,-103],"haR":[37,-73.7],"shL":[-44.6,-142.5],"elL":[-45.6,-154.6],"haL":[-37.1,-167.5],"hipR":[24.9,12.2],"knR":[40,132.5],"ftR":[40.3,227.2],"hipL":[-27.6,3.2],"knL":[-17.7,124.5],"ftL":[-6.8,246.6]},{"rootY":5.5,"hips":[0,0],"chest":[9.6,-97.2],"neck":[10.9,-166.3],"head":[14.6,-202],"shR":[60.9,-137.3],"elR":[52.9,-100.1],"haR":[38,-69.6],"shL":[-43.8,-143.5],"elL":[-45.2,-160.1],"haL":[-35.5,-176.9],"hipR":[24.3,13.3],"knR":[45.6,134],"ftR":[45.7,220.7],"hipL":[-27.6,2.1],"knL":[-16.2,123.8],"ftL":[-3.7,246.6]},{"rootY":6.1,"hips":[0,0],"chest":[9.7,-97],"neck":[11.3,-166.1],"head":[15.4,-201.7],"shR":[61.3,-136.2],"elR":[53.7,-97.6],"haR":[38.6,-66.5],"shL":[-43.4,-144.6],"elL":[-44.5,-164.8],"haL":[-33.4,-184.6],"hipR":[23.6,14.4],"knR":[50.8,134.5],"ftR":[51.4,213],"hipL":[-27.5,0.8],"knL":[-14.8,122.9],"ftL":[-0.5,246.1]},{"rootY":6.7,"hips":[0,0],"chest":[9.4,-96.8],"neck":[11.2,-165.8],"head":[15.5,-201.4],"shR":[61.3,-135.6],"elR":[53.7,-95.7],"haR":[38.1,-64],"shL":[-43.4,-145.3],"elL":[-43.5,-167.9],"haL":[-31.7,-189.7],"hipR":[23,15.2],"knR":[53.4,133.3],"ftR":[55.4,206.2],"hipL":[-27.4,-0.2],"knL":[-13.8,122.2],"ftL":[1.6,245.7]},{"rootY":6.6,"hips":[0,0],"chest":[8.8,-96.7],"neck":[10.4,-165.5],"head":[14.7,-201.1],"shR":[60.8,-135.5],"elR":[53,-94.4],"haR":[36.9,-61.8],"shL":[-43.9,-145.3],"elL":[-42.5,-169],"haL":[-30.6,-191.7],"hipR":[22.8,15.4],"knR":[53,131.1],"ftR":[56.6,201.8],"hipL":[-27.4,-0.5],"knL":[-13.2,121.8],"ftL":[2.5,245.7]},{"rootY":5.8,"hips":[0,0],"chest":[7.5,-96.8],"neck":[8.6,-165.5],"head":[12.8,-201.2],"shR":[59.5,-136],"elR":[51.6,-93.7],"haR":[35.7,-60],"shL":[-45.3,-144.9],"elL":[-42.1,-168],"haL":[-30.2,-190.1],"hipR":[23.1,15.1],"knR":[50,128.3],"ftR":[55.1,201.6],"hipL":[-27.5,-0.1],"knL":[-12.9,122.2],"ftL":[2.2,246.5]},{"rootY":4.6,"hips":[0,0],"chest":[5.6,-97],"neck":[6.1,-165.7],"head":[10.3,-201.4],"shR":[57.4,-137],"elR":[50,-93.9],"haR":[34.9,-59.1],"shL":[-47.5,-144.7],"elL":[-42.5,-165.4],"haL":[-30.4,-185.2],"hipR":[23.7,14.3],"knR":[45.9,125.1],"ftR":[51.8,206.1],"hipL":[-27.6,0.8],"knL":[-13.2,123.2],"ftL":[1.4,247.6]},{"rootY":3.5,"hips":[0,0],"chest":[3.4,-97.2],"neck":[3.3,-165.7],"head":[7.6,-201.5],"shR":[55,-138.1],"elR":[48.5,-95],"haR":[34.8,-60],"shL":[-49.9,-144.9],"elL":[-43,-161.9],"haL":[-30.7,-178.2],"hipR":[24.3,13.6],"knR":[41.8,121.5],"ftR":[48.5,213.5],"hipL":[-27.7,1.7],"knL":[-13.9,124.1],"ftL":[0.2,248.6]},{"rootY":3,"hips":[0,0],"chest":[1.6,-97.1],"neck":[0.7,-165.6],"head":[5.1,-201.4],"shR":[52.8,-138.7],"elR":[47.6,-96.7],"haR":[35.3,-62.4],"shL":[-52.1,-144.6],"elL":[-43.3,-157.5],"haL":[-31.1,-169.8],"hipR":[24.5,13.2],"knR":[38.6,118.1],"ftR":[46.2,221.5],"hipL":[-27.8,2.1],"knL":[-14.5,124.6],"ftL":[-0.9,249.1]},{"rootY":2.8,"hips":[0,0],"chest":[0.4,-97],"neck":[-1.3,-165.3],"head":[3,-201.2],"shR":[51.2,-139],"elR":[47.2,-98.7],"haR":[36.2,-65.7],"shL":[-53.8,-143.4],"elL":[-43.5,-151.9],"haL":[-31.2,-160],"hipR":[24.7,13.1],"knR":[36.8,115.5],"ftR":[44.9,229.1],"hipL":[-27.8,2.2],"knL":[-15,124.8],"ftL":[-1.7,249.3]},{"rootY":3,"hips":[0,0],"chest":[0,-96.9],"neck":[-2.6,-165.1],"head":[1.5,-201.1],"shR":[50.4,-139.3],"elR":[47.7,-100.8],"haR":[37.5,-69.4],"shL":[-54.6,-142],"elL":[-43.3,-145.5],"haL":[-31.2,-149.1],"hipR":[24.7,13.1],"knR":[36.1,114],"ftR":[43.5,235.4],"hipL":[-27.8,2.3],"knL":[-15.3,124.8],"ftL":[-2.2,249.2]},{"rootY":3.3,"hips":[0,0],"chest":[0.3,-96.8],"neck":[-3,-164.9],"head":[0.4,-201],"shR":[50.3,-139.5],"elR":[49.1,-103],"haR":[39.2,-73.7],"shL":[-54.7,-141],"elL":[-42.3,-139.4],"haL":[-31.3,-138.1],"hipR":[24.6,13.2],"knR":[35.6,113.9],"ftR":[41.4,238.9],"hipL":[-27.8,2.1],"knL":[-15.4,124.6],"ftL":[-2.5,248.9]},{"rootY":3.9,"hips":[0,0],"chest":[0.7,-96.8],"neck":[-3.1,-164.7],"head":[-0.5,-200.9],"shR":[50.5,-139.5],"elR":[50.9,-105.1],"haR":[41.1,-78.5],"shL":[-54.3,-140.3],"elL":[-40.6,-134.2],"haL":[-31.7,-127.5],"hipR":[24.6,13.3],"knR":[34.7,115.1],"ftR":[38.7,238.8],"hipL":[-27.9,2],"knL":[-15.5,124.3],"ftL":[-2.8,248.3]},{"rootY":4.7,"hips":[0,0],"chest":[1.2,-96.7],"neck":[-3.3,-164.6],"head":[-1.6,-200.9],"shR":[50.6,-139.3],"elR":[52.7,-107.1],"haR":[42.9,-83.3],"shL":[-54.2,-139.1],"elL":[-39.2,-129.1],"haL":[-32.3,-117.5],"hipR":[24.6,13.3],"knR":[32.5,117.3],"ftR":[35.4,235.5],"hipL":[-27.9,2],"knL":[-15.8,124],"ftL":[-3.3,247.7]},{"rootY":5.7,"hips":[0,0],"chest":[1.5,-96.6],"neck":[-3.5,-164.5],"head":[-2.8,-200.8],"shR":[50.6,-139.4],"elR":[54.3,-109.1],"haR":[44.6,-88.2],"shL":[-54.4,-137.7],"elL":[-38.9,-123.8],"haL":[-32.6,-108.2],"hipR":[24.5,13.3],"knR":[28.7,119.1],"ftR":[30.8,231.1],"hipL":[-27.9,2],"knL":[-16.4,123.7],"ftL":[-4.2,246.7]},{"rootY":7.1,"hips":[0,0],"chest":[1.7,-96.5],"neck":[-3.7,-164.5],"head":[-3.8,-200.8],"shR":[50.6,-139.4],"elR":[55.9,-111.3],"haR":[46.4,-93.3],"shL":[-54.5,-136.6],"elL":[-38.7,-119.1],"haL":[-32.9,-100.7],"hipR":[24.5,13.4],"knR":[25,119.4],"ftR":[24.9,228.6],"hipL":[-27.9,2],"knL":[-17.2,123.4],"ftL":[-5.4,245.4]},{"rootY":8.6,"hips":[0,0],"chest":[1.7,-96.4],"neck":[-3.7,-164.4],"head":[-4.5,-200.7],"shR":[50.7,-139.4],"elR":[57.7,-113.4],"haR":[48.2,-98.6],"shL":[-54.4,-136.3],"elL":[-38.3,-116.3],"haL":[-33,-95.7],"hipR":[24.6,13.2],"knR":[22.4,118.8],"ftR":[19.1,228.8],"hipL":[-27.9,2.1],"knL":[-18,123.1],"ftL":[-6.6,243.7]},{"rootY":10.2,"hips":[0,0],"chest":[1.6,-96.4],"neck":[-3.4,-164.5],"head":[-5,-200.8],"shR":[50.9,-139.6],"elR":[59.4,-115.7],"haR":[50.2,-103.8],"shL":[-54.2,-136.6],"elL":[-38.1,-115.3],"haL":[-33.1,-93.3],"hipR":[24.8,12.9],"knR":[21,118.7],"ftR":[15.2,231],"hipL":[-27.8,2.5],"knL":[-18.9,123.1],"ftL":[-7.8,241.8]},{"rootY":12,"hips":[0,0],"chest":[1.7,-96.8],"neck":[-3.1,-164.9],"head":[-5.1,-201.2],"shR":[51.2,-139.7],"elR":[61,-118.6],"haR":[52.5,-109.6],"shL":[-53.9,-136.9],"elL":[-38.6,-115.4],"haL":[-34,-93.6],"hipR":[25.1,12.2],"knR":[19.8,119.6],"ftR":[12.6,234.1],"hipL":[-27.7,3.3],"knL":[-20.2,123.6],"ftL":[-9.1,239.9]},{"rootY":13.8,"hips":[0,0],"chest":[1.3,-97.3],"neck":[-3.3,-165.4],"head":[-5.3,-201.6],"shR":[50.7,-139],"elR":[61.7,-122.6],"haR":[54.6,-117.2],"shL":[-54.3,-136.1],"elL":[-41,-116.5],"haL":[-37.2,-96.7],"hipR":[25.7,10.9],"knR":[17.5,120.9],"ftR":[8.5,236.4],"hipL":[-27.5,4.6],"knL":[-22.3,124.7],"ftL":[-11.3,237.9]},{"rootY":14.5,"hips":[0,0],"chest":[-1.1,-97.4],"neck":[-4.4,-165.6],"head":[-5.9,-201.7],"shR":[48.8,-137.1],"elR":[61.4,-126.9],"haR":[55.4,-126.7],"shL":[-55.8,-134.9],"elL":[-45.8,-118.6],"haL":[-43.5,-102.3],"hipR":[26.6,8.6],"knR":[14.7,121.8],"ftR":[2.6,237.5],"hipL":[-27,7],"knL":[-24.6,126.4],"ftL":[-14.7,236]},{"rootY":13.9,"hips":[0,0],"chest":[-5.6,-97.3],"neck":[-5.7,-165.8],"head":[-5.8,-201.7],"shR":[46.6,-135.9],"elR":[61.2,-130.9],"haR":[55.5,-136.3],"shL":[-58.2,-135.9],"elL":[-52.2,-122.5],"haL":[-51.8,-109.3],"hipR":[27.3,5.9],"knR":[13,121.8],"ftR":[-1.6,238],"hipL":[-26.2,9.7],"knL":[-26.3,128.3],"ftL":[-18.1,233.7]},{"rootY":12,"hips":[0,0],"chest":[-9.1,-97.7],"neck":[-6.4,-166.3],"head":[-4.3,-202.2],"shR":[45.6,-136.7],"elR":[62.7,-134.2],"haR":[56.1,-144.7],"shL":[-59.9,-140.5],"elL":[-58.3,-128.8],"haL":[-60,-117.7],"hipR":[27.6,4.5],"knR":[12.5,121.5],"ftR":[-2.5,239],"hipL":[-25.7,11],"knL":[-27.7,130.6],"ftL":[-19.6,229.9]},{"rootY":9.9,"hips":[0,0],"chest":[-10.2,-98.4],"neck":[-6.5,-166.9],"head":[-2,-202.5],"shR":[45.7,-138.7],"elR":[65.3,-136.9],"haR":[57.7,-152.1],"shL":[-60.2,-145.7],"elL":[-63,-136.5],"haL":[-67,-128.2],"hipR":[27.6,4.1],"knR":[12.7,121.8],"ftR":[-2.2,240.8],"hipL":[-25.5,11.4],"knL":[-29.5,132.9],"ftL":[-19.2,224.1]},{"rootY":8.3,"hips":[0,0],"chest":[-10.4,-98.8],"neck":[-6.5,-167.1],"head":[0.3,-202.5],"shR":[46,-139.9],"elR":[68,-139.5],"haR":[59.4,-159.4],"shL":[-59.9,-148.4],"elL":[-66.8,-144.3],"haL":[-72.7,-140.8],"hipR":[27.7,3.7],"knR":[12.5,122.2],"ftR":[-2.8,242.3],"hipL":[-25.3,11.8],"knL":[-33.3,134.5],"ftL":[-18.1,216.8]},{"rootY":7.2,"hips":[0,0],"chest":[-10.4,-98.8],"neck":[-5.8,-166.9],"head":[2.4,-202.1],"shR":[46.4,-139.6],"elR":[70.2,-141.9],"haR":[61.1,-165.6],"shL":[-59.6,-149],"elL":[-69.9,-151.1],"haL":[-76.7,-153],"hipR":[27.8,2.8],"knR":[12.2,122.3],"ftR":[-3.3,243.3],"hipL":[-25,12.5],"knL":[-38.3,134.9],"ftL":[-17.2,210.3]},{"rootY":6.1,"hips":[0,0],"chest":[-10.5,-98.6],"neck":[-4.4,-166.6],"head":[4.8,-201.6],"shR":[47.1,-138.6],"elR":[72.1,-143.1],"haR":[63.1,-169.3],"shL":[-59,-149.6],"elL":[-72,-156.4],"haL":[-79,-162.7],"hipR":[27.9,2.1],"knR":[12.4,122.5],"ftR":[-2.6,244.2],"hipL":[-24.6,13.2],"knL":[-43.1,134.2],"ftL":[-17,207]},{"rootY":4.9,"hips":[0,0],"chest":[-10.1,-98.4],"neck":[-2.7,-166.2],"head":[7.3,-201.1],"shR":[48.2,-137.6],"elR":[73.5,-142.8],"haR":[65.2,-169.8],"shL":[-57.9,-151],"elL":[-73,-160.8],"haL":[-80,-170.2],"hipR":[27.9,1.9],"knR":[12.7,122.9],"ftR":[-1.6,245.4],"hipL":[-24.5,13.4],"knL":[-47.1,132.6],"ftL":[-18.2,207.6]},{"rootY":3.6,"hips":[0,0],"chest":[-9.2,-98.2],"neck":[-1.1,-165.9],"head":[9.6,-200.6],"shR":[49.4,-136.8],"elR":[74.3,-141.4],"haR":[67,-167.8],"shL":[-56.5,-152.3],"elL":[-72.9,-164.8],"haL":[-80.1,-176.6],"hipR":[27.9,1.9],"knR":[13,123.4],"ftR":[-1.4,246.6],"hipL":[-24.5,13.3],"knL":[-50.1,130.4],"ftL":[-21.2,211.5]},{"rootY":2.5,"hips":[0,0],"chest":[-7.9,-98.1],"neck":[0.6,-165.7],"head":[11.6,-200.3],"shR":[50.7,-136.3],"elR":[75.1,-139.8],"haR":[68.5,-164.2],"shL":[-55.1,-153],"elL":[-71.9,-168.4],"haL":[-79,-182.4],"hipR":[27.9,2.1],"knR":[13.2,123.9],"ftR":[-1.4,247.6],"hipL":[-24.6,13.2],"knL":[-52.3,127.7],"ftL":[-25.2,217.4]},{"rootY":1.7,"hips":[0,0],"chest":[-6.7,-98],"neck":[2.2,-165.5],"head":[13.3,-200.1],"shR":[52.1,-136.1],"elR":[75.7,-138.2],"haR":[69.7,-159.5],"shL":[-53.7,-153.6],"elL":[-70.4,-171.4],"haL":[-77.1,-187],"hipR":[27.8,2.3],"knR":[13.6,124.3],"ftR":[-1,248.4],"hipL":[-24.7,13.1],"knL":[-53.7,125],"ftL":[-29.5,224.5]},{"rootY":1.2,"hips":[0,0],"chest":[-5.8,-97.9],"neck":[3.5,-165.4],"head":[14.6,-200],"shR":[53.1,-136],"elR":[75.6,-136.5],"haR":[70.5,-153.6],"shL":[-52.5,-154.4],"elL":[-68.8,-173.6],"haL":[-74.9,-190.4],"hipR":[27.8,2.5],"knR":[13.9,124.7],"ftR":[-0.4,249.1],"hipL":[-24.8,12.9],"knL":[-54.3,122.5],"ftL":[-34.2,231.7]},{"rootY":0.8,"hips":[0,0],"chest":[-5.2,-97.9],"neck":[4.2,-165.3],"head":[15.6,-199.8],"shR":[53.7,-136],"elR":[74.8,-134.1],"haR":[71.1,-146.4],"shL":[-51.8,-155.1],"elL":[-67.6,-175.3],"haL":[-72.7,-193.1],"hipR":[27.8,2.6],"knR":[14,125],"ftR":[-0.2,249.5],"hipL":[-24.8,12.7],"knL":[-53.4,120.5],"ftL":[-39.6,237.9]}]},"sit":{"name":"sit","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-77.6],"neck":[-6.9,-77.6],"head":[-11.8,-146],"shR":[-17,-104.6],"elR":[8.8,9.2],"haR":[-16.1,74.9],"shL":[10.1,-102.7],"elL":[23,1.3],"haL":[16.4,71.3],"hipR":[-13.3,38],"knR":[-33,179.8],"ftR":[9.7,332.5],"hipL":[-3.7,38.4],"knL":[-16.3,185.5],"ftL":[32.2,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7,-77.5],"neck":[-7,-77.5],"head":[-12.1,-146],"shR":[-17.1,-104.5],"elR":[8.8,9.4],"haR":[-15.4,75.3],"shL":[9.7,-102.8],"elL":[22.3,1.2],"haL":[15,71],"hipR":[-13.1,38],"knR":[-32.5,179.8],"ftR":[10.3,332.5],"hipL":[-3.7,38.4],"knL":[-15.9,185.6],"ftL":[32.8,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.4,-77.5],"neck":[-7.4,-77.5],"head":[-12.5,-146],"shR":[-17.2,-104.4],"elR":[9,9.5],"haR":[-14.5,75.6],"shL":[9.1,-102.9],"elL":[21.5,1.2],"haL":[13.1,70.8],"hipR":[-13,37.9],"knR":[-32,179.9],"ftR":[10.6,332.6],"hipL":[-3.6,38.5],"knL":[-15.8,185.7],"ftL":[33.4,335.3]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.3,-77.5],"neck":[-7.3,-77.5],"head":[-12.9,-145.9],"shR":[-17.1,-104.2],"elR":[9.6,9.5],"haR":[-14,75.7],"shL":[8.9,-103.1],"elL":[20.9,0.9],"haL":[11.2,70.4],"hipR":[-12.6,38.3],"knR":[-31.8,180.2],"ftR":[11.3,332.8],"hipL":[-3.4,38.3],"knL":[-15,185.5],"ftL":[34.1,335.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.7,-77.5],"neck":[-7.7,-77.5],"head":[-13.6,-145.9],"shR":[-17.2,-104],"elR":[9,10],"haR":[-13.8,76.3],"shL":[8.2,-103.2],"elL":[19.9,0.9],"haL":[8.7,70.2],"hipR":[-12.6,38],"knR":[-31.9,179.9],"ftR":[11.5,332.4],"hipL":[-3.6,38.5],"knL":[-14.7,185.7],"ftL":[34.5,335.4]},{"rootY":0,"hips":[0,0],"chest":[-7.6,-77.5],"neck":[-7.6,-77.5],"head":[-14.3,-145.8],"shR":[-16.3,-103.8],"elR":[9.5,10.4],"haR":[-13.1,76.8],"shL":[7.3,-103.6],"elL":[19.2,0.5],"haL":[6.2,69.6],"hipR":[-12.4,38.1],"knR":[-31.8,179.9],"ftR":[12.1,332.3],"hipL":[-3.7,38.4],"knL":[-14.2,185.7],"ftL":[35.3,335.3]},{"rootY":0.1,"hips":[0,0],"chest":[-7.2,-77.5],"neck":[-7.2,-77.5],"head":[-14.5,-145.6],"shR":[-15,-103.8],"elR":[10,10.6],"haR":[-12.9,76.9],"shL":[6.7,-103.6],"elL":[18.8,0.5],"haL":[4.1,69.1],"hipR":[-12.2,38.2],"knR":[-31.6,180],"ftR":[12.8,332.3],"hipL":[-3.8,38.3],"knL":[-13.6,185.7],"ftL":[36.2,335.2]},{"rootY":0.2,"hips":[0,0],"chest":[-6.8,-77.6],"neck":[-6.8,-77.6],"head":[-15,-145.4],"shR":[-13.1,-103.5],"elR":[10.3,11.4],"haR":[-12.9,77.6],"shL":[5.6,-104],"elL":[19.4,-0.1],"haL":[2.7,68.1],"hipR":[-11.9,38.3],"knR":[-31.7,180],"ftR":[13.5,332.2],"hipL":[-4.3,38.2],"knL":[-12.8,185.6],"ftL":[37.5,335]},{"rootY":0.3,"hips":[0,0],"chest":[-6.7,-77.6],"neck":[-6.7,-77.6],"head":[-16,-145],"shR":[-10.9,-103.4],"elR":[10.8,11.9],"haR":[-13.5,77.6],"shL":[3.7,-104],"elL":[18.2,-0.3],"haL":[-0.2,67.5],"hipR":[-11.5,38.3],"knR":[-31.7,179.9],"ftR":[13.8,332],"hipL":[-4.9,38.2],"knL":[-12.6,185.6],"ftL":[38.3,334.8]},{"rootY":0.5,"hips":[0,0],"chest":[-6.3,-77.6],"neck":[-6.3,-77.6],"head":[-16.6,-144.7],"shR":[-7.9,-103.3],"elR":[12.7,12.4],"haR":[-13.1,77.4],"shL":[1.6,-104.2],"elL":[16.9,-0.6],"haL":[-2.9,66.8],"hipR":[-10.8,38.3],"knR":[-31.3,179.8],"ftR":[15,331.8],"hipL":[-5.5,38.2],"knL":[-12,185.7],"ftL":[39.5,334.6]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-77.7],"neck":[-5.8,-77.7],"head":[-17.1,-144.5],"shR":[-4.9,-103.2],"elR":[15.1,12.8],"haR":[-12.6,77],"shL":[-0.5,-104.4],"elL":[15.1,-0.8],"haL":[-5.6,66.4],"hipR":[-10.1,38.4],"knR":[-31.4,179.8],"ftR":[15.8,331.6],"hipL":[-6.4,38],"knL":[-11.3,185.6],"ftL":[41.1,334.2]},{"rootY":1,"hips":[0,0],"chest":[-5.1,-77.7],"neck":[-5.1,-77.7],"head":[-17.2,-144.4],"shR":[-1.8,-103.3],"elR":[17.9,12.8],"haR":[-11.8,76],"shL":[-2.3,-104.3],"elL":[13.5,-0.8],"haL":[-7.6,66.4],"hipR":[-9.3,37.9],"knR":[-30.4,179.4],"ftR":[17.3,331.2],"hipL":[-7.4,38.5],"knL":[-11.4,186.1],"ftL":[43.1,333.9]},{"rootY":1.5,"hips":[0,0],"chest":[-4.4,-77.7],"neck":[-4.4,-77.7],"head":[-17.1,-144.3],"shR":[1.7,-103.1],"elR":[21.5,13.1],"haR":[-9.8,75.4],"shL":[-4.5,-104.6],"elL":[11.8,-1.2],"haL":[-9,66.2],"hipR":[-8.4,37.8],"knR":[-30,179.3],"ftR":[18.4,330.9],"hipL":[-8.5,38.5],"knL":[-11.4,186.2],"ftL":[44.5,333.4]},{"rootY":1.8,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[-16.7,-144.2],"shR":[5.3,-102.6],"elR":[25.2,13.6],"haR":[-7.5,75.1],"shL":[-6.8,-105.2],"elL":[9,-1.8],"haL":[-11.1,65.8],"hipR":[-7.5,37.8],"knR":[-29.4,179.3],"ftR":[19.9,330.6],"hipL":[-9.7,38.4],"knL":[-11.6,186.1],"ftL":[46,332.7]},{"rootY":2.3,"hips":[0,0],"chest":[-3.2,-77.8],"neck":[-3.2,-77.8],"head":[-16.7,-144.2],"shR":[9.2,-102.3],"elR":[28.9,14],"haR":[-4.3,74.9],"shL":[-10,-105.6],"elL":[5.6,-2.2],"haL":[-13.7,65.6],"hipR":[-6.7,37.6],"knR":[-28.7,179],"ftR":[21,330.2],"hipL":[-10.4,38.7],"knL":[-13.4,186.3],"ftL":[46.7,331.8]},{"rootY":2.8,"hips":[0,0],"chest":[-2.5,-77.8],"neck":[-2.5,-77.8],"head":[-16.2,-144.2],"shR":[11.9,-102.2],"elR":[31.8,14.2],"haR":[-1.3,74.9],"shL":[-11.6,-105.7],"elL":[4,-2.4],"haL":[-14.9,65.4],"hipR":[-6.2,37.7],"knR":[-28.5,179.1],"ftR":[22.6,329.9],"hipL":[-11.5,38.4],"knL":[-15.2,185.9],"ftL":[47.4,330.4]},{"rootY":3.4,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-15.8,-144.2],"shR":[13.9,-102.3],"elR":[33.7,14.2],"haR":[1.5,75],"shL":[-12.7,-105.7],"elL":[2.6,-2.4],"haL":[-16.2,65.4],"hipR":[-5.6,37.4],"knR":[-27.7,178.8],"ftR":[24.1,329.4],"hipL":[-12.3,38.6],"knL":[-19,185.9],"ftL":[47.6,328.5]},{"rootY":3.8,"hips":[0,0],"chest":[-1.8,-77.8],"neck":[-1.8,-77.8],"head":[-15.8,-144.1],"shR":[15.5,-102.4],"elR":[36,14.1],"haR":[5.2,75.1],"shL":[-13.9,-105.5],"elL":[1.3,-2.3],"haL":[-17.8,65.5],"hipR":[-4.9,37.1],"knR":[-27.2,178.5],"ftR":[25.2,328.8],"hipL":[-13.2,38.8],"knL":[-23.8,185.7],"ftL":[47.7,326]},{"rootY":3.9,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-15.9,-144],"shR":[16.9,-102],"elR":[38.4,14.4],"haR":[9.5,76],"shL":[-15.4,-105.9],"elL":[-0.8,-2.7],"haL":[-20.5,64.8],"hipR":[-4.9,37.3],"knR":[-26.2,178.9],"ftR":[26.6,329.1],"hipL":[-13.8,38.5],"knL":[-30.8,184.5],"ftL":[47.1,321.4]},{"rootY":4.6,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-16.2,-143.9],"shR":[17.4,-101.8],"elR":[40.1,14.3],"haR":[13.7,76.8],"shL":[-16,-106.1],"elL":[-2.1,-2.8],"haL":[-22.9,64.3],"hipR":[-5,37.2],"knR":[-26,178.7],"ftR":[27.9,328.5],"hipL":[-13.9,38.5],"knL":[-38.2,183.4],"ftL":[45.4,316.8]},{"rootY":4.9,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-16.8,-143.7],"shR":[17.5,-101.6],"elR":[42.1,14.2],"haR":[18.4,77.6],"shL":[-16.7,-106.3],"elL":[-2.9,-3.1],"haL":[-25.2,63.6],"hipR":[-4.8,37.1],"knR":[-25.4,178.7],"ftR":[29.1,328.2],"hipL":[-14.4,38.5],"knL":[-46.9,181.6],"ftL":[42.3,311.3]},{"rootY":5.1,"hips":[0,0],"chest":[-2.1,-77.7],"neck":[-2.1,-77.7],"head":[-17.2,-143.6],"shR":[17.5,-101.6],"elR":[44,13.8],"haR":[22.9,78.1],"shL":[-17.1,-106.3],"elL":[-2.9,-3.2],"haL":[-27.1,63],"hipR":[-4.5,36.7],"knR":[-24.1,178.4],"ftR":[30.5,327.8],"hipL":[-14.9,38.8],"knL":[-55.6,179.7],"ftL":[38,306.1]},{"rootY":5.3,"hips":[0,0],"chest":[-2.4,-77.7],"neck":[-2.4,-77.7],"head":[-17.9,-143.5],"shR":[17.1,-101.8],"elR":[45.7,13.1],"haR":[27,78.3],"shL":[-17.6,-106],"elL":[-2.8,-3],"haL":[-28.8,62.5],"hipR":[-4.1,37],"knR":[-23.6,178.7],"ftR":[31.9,327.7],"hipL":[-15.6,38.5],"knL":[-63.1,177.4],"ftL":[32.5,302]},{"rootY":5.6,"hips":[0,0],"chest":[-2.8,-77.6],"neck":[-2.8,-77.6],"head":[-18.9,-143.3],"shR":[16.5,-101.8],"elR":[46.7,12.6],"haR":[30.3,78.6],"shL":[-18,-105.9],"elL":[-2.3,-3],"haL":[-29.6,62.1],"hipR":[-3.6,37.2],"knR":[-23.5,178.8],"ftR":[33,327.4],"hipL":[-16.3,38.2],"knL":[-70.1,175.1],"ftL":[24.9,300]},{"rootY":5.9,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[-19.6,-143.1],"shR":[16.2,-102],"elR":[47.7,12.1],"haR":[33.2,78.6],"shL":[-18.5,-105.6],"elL":[-1.9,-2.9],"haL":[-29.9,62],"hipR":[-3.1,37.2],"knR":[-23.2,178.9],"ftR":[34.6,326.9],"hipL":[-16.7,38.2],"knL":[-75.9,173.1],"ftL":[16.3,299.7]},{"rootY":6.2,"hips":[0,0],"chest":[-3.5,-77.5],"neck":[-3.5,-77.5],"head":[-20.6,-142.9],"shR":[15.8,-102.1],"elR":[48.7,11.6],"haR":[35.6,78.4],"shL":[-19.6,-105.5],"elL":[-1.6,-3],"haL":[-29.8,61.8],"hipR":[-2.7,37.4],"knR":[-22.9,178.9],"ftR":[36.3,326.5],"hipL":[-17.2,38],"knL":[-80.7,171.2],"ftL":[6.4,301.2]},{"rootY":6.5,"hips":[0,0],"chest":[-4,-77.5],"neck":[-4,-77.5],"head":[-21.6,-142.7],"shR":[15.5,-102.2],"elR":[49.5,11.1],"haR":[37.2,78.1],"shL":[-20.7,-105.2],"elL":[-1.5,-3],"haL":[-29.2,62.1],"hipR":[-2.3,37.4],"knR":[-22,179],"ftR":[38,326.1],"hipL":[-17.6,38],"knL":[-84.4,169.6],"ftL":[-4.7,304]},{"rootY":6.7,"hips":[0,0],"chest":[-4.5,-77.5],"neck":[-4.5,-77.5],"head":[-22.8,-142.5],"shR":[15.1,-102.5],"elR":[49.7,10.6],"haR":[38,77.6],"shL":[-21.7,-104.9],"elL":[-1.6,-2.8],"haL":[-28.2,62.8],"hipR":[-1.7,37.3],"knR":[-20.7,179],"ftR":[40.2,325.7],"hipL":[-17.9,38.1],"knL":[-86.5,168.8],"ftL":[-16.7,308.5]},{"rootY":7.1,"hips":[0,0],"chest":[-4.9,-77.5],"neck":[-4.9,-77.5],"head":[-23.8,-142.3],"shR":[14.9,-102.9],"elR":[49.9,10.1],"haR":[38.4,76.9],"shL":[-22.9,-104.4],"elL":[-1.9,-2.5],"haL":[-26.7,63.8],"hipR":[-1,37.2],"knR":[-18.7,179.1],"ftR":[41.8,325.8],"hipL":[-18,38.3],"knL":[-87.9,168.1],"ftL":[-30.3,313.4]},{"rootY":6.4,"hips":[0,0],"chest":[-5.4,-77.4],"neck":[-5.4,-77.4],"head":[-25,-142],"shR":[14.7,-103.2],"elR":[50.1,9.7],"haR":[38.4,76.2],"shL":[-24.3,-104],"elL":[-2.5,-2.3],"haL":[-25.2,64.7],"hipR":[-0.2,37.1],"knR":[-16.6,179.1],"ftR":[44.8,325.5],"hipL":[-18.1,38.5],"knL":[-87,168.8],"ftL":[-43.9,319.2]},{"rootY":5.8,"hips":[0,0],"chest":[-6,-77.4],"neck":[-6,-77.4],"head":[-26.2,-141.7],"shR":[15,-103.4],"elR":[50.7,9.4],"haR":[38.7,75.7],"shL":[-26.6,-103.8],"elL":[-4.1,-2.2],"haL":[-24.4,65.6],"hipR":[0.7,37.1],"knR":[-14.1,179.4],"ftR":[47.3,325.6],"hipL":[-18.4,38.7],"knL":[-85.7,169.5],"ftL":[-57.6,323.8]},{"rootY":5.2,"hips":[0,0],"chest":[-6.4,-77.4],"neck":[-6.4,-77.4],"head":[-27.4,-141.5],"shR":[15.1,-104],"elR":[51.2,8.7],"haR":[38.4,74.7],"shL":[-28.4,-103.2],"elL":[-5.1,-1.7],"haL":[-23,66.7],"hipR":[1.7,36.9],"knR":[-10.4,179.5],"ftR":[49.9,326.1],"hipL":[-18.6,38.9],"knL":[-83.7,170.7],"ftL":[-69,327.1]},{"rootY":5,"hips":[0,0],"chest":[-6.9,-77.4],"neck":[-6.9,-77.4],"head":[-28.6,-141.3],"shR":[14.9,-104.8],"elR":[51.9,7.5],"haR":[38,73.1],"shL":[-30,-102.2],"elL":[-5.9,-0.9],"haL":[-21.4,68.1],"hipR":[2.6,36.9],"knR":[-7.1,179.7],"ftR":[52.9,326.2],"hipL":[-18.9,39],"knL":[-82.7,171.2],"ftL":[-78.6,328.6]},{"rootY":4.7,"hips":[0,0],"chest":[-7.4,-77.3],"neck":[-7.4,-77.3],"head":[-29.8,-141],"shR":[14.6,-105.5],"elR":[52.5,6.4],"haR":[37.5,71.5],"shL":[-31.5,-101.3],"elL":[-6.6,-0.1],"haL":[-20.2,69.3],"hipR":[3.3,37],"knR":[-4.1,179.8],"ftR":[55.8,326.2],"hipL":[-19.1,39],"knL":[-80,172.3],"ftL":[-83.9,329.8]},{"rootY":4.7,"hips":[0,0],"chest":[-8,-77.3],"neck":[-8,-77.3],"head":[-31.2,-140.8],"shR":[14.2,-106.3],"elR":[53.3,5.1],"haR":[37.2,69.8],"shL":[-32.9,-100.3],"elL":[-7.7,0.8],"haL":[-19.4,70.5],"hipR":[4,36.6],"knR":[-0.7,179.5],"ftR":[59,325.9],"hipL":[-19,39.4],"knL":[-79.3,172.8],"ftL":[-87,330.2]},{"rootY":5,"hips":[0,0],"chest":[-8.7,-77.3],"neck":[-8.7,-77.3],"head":[-32.6,-140.5],"shR":[13.9,-106.9],"elR":[53.8,4.2],"haR":[36.8,68.5],"shL":[-34.7,-99.5],"elL":[-9,1.6],"haL":[-19.5,71.4],"hipR":[4.7,36.4],"knR":[2.2,179.4],"ftR":[62.2,325.4],"hipL":[-18.8,39.7],"knL":[-78.1,173.4],"ftL":[-86.2,330.7]},{"rootY":5.7,"hips":[0,0],"chest":[-9.5,-77.2],"neck":[-9.5,-77.2],"head":[-34.1,-140.1],"shR":[12,-108.2],"elR":[53.5,2.2],"haR":[36.2,66.2],"shL":[-35.2,-97.7],"elL":[-9.4,3.4],"haL":[-19.1,73.4],"hipR":[5.1,36.3],"knR":[4.4,179.2],"ftR":[66.2,324.5],"hipL":[-18.7,39.9],"knL":[-76.5,174],"ftL":[-82,331.5]},{"rootY":5.8,"hips":[0,0],"chest":[-10.4,-77.1],"neck":[-10.4,-77.1],"head":[-35.8,-139.7],"shR":[10.6,-109.1],"elR":[53.2,0.8],"haR":[36.3,64.7],"shL":[-36.3,-96.4],"elL":[-10.3,4.7],"haL":[-19.7,74.9],"hipR":[5.5,36.2],"knR":[6.6,179.1],"ftR":[69.3,323.8],"hipL":[-18.3,40.1],"knL":[-74.9,174.8],"ftL":[-77.8,332.4]},{"rootY":5,"hips":[0,0],"chest":[-11.4,-77],"neck":[-11.4,-77],"head":[-37.8,-139.1],"shR":[8.6,-110.2],"elR":[52.5,-0.9],"haR":[36.3,63.1],"shL":[-36.8,-94.7],"elL":[-10.8,6.5],"haL":[-20.2,76.7],"hipR":[5.6,36.3],"knR":[8.8,179],"ftR":[73.4,323.1],"hipL":[-17.8,40.2],"knL":[-73.6,175.3],"ftL":[-74.5,332.8]},{"rootY":4.1,"hips":[0,0],"chest":[-12.5,-76.8],"neck":[-12.5,-76.8],"head":[-40,-138.3],"shR":[6.3,-110.9],"elR":[51.5,-2.2],"haR":[36.4,61.9],"shL":[-37.3,-93.4],"elL":[-10.8,7.8],"haL":[-21,78],"hipR":[5.5,36.5],"knR":[9.6,179.2],"ftR":[76.7,322],"hipL":[-17.4,40.1],"knL":[-71.2,176.1],"ftL":[-70.1,333.7]},{"rootY":3.3,"hips":[0,0],"chest":[-13.2,-76.7],"neck":[-13.2,-76.7],"head":[-41.5,-137.6],"shR":[3.9,-111.9],"elR":[50.9,-4.3],"haR":[36.8,60.2],"shL":[-36.6,-91.7],"elL":[-9.8,9.5],"haL":[-21.2,79.6],"hipR":[5.8,36.4],"knR":[11,179],"ftR":[80.3,320.8],"hipL":[-16.7,40.4],"knL":[-68.9,177.1],"ftL":[-65.5,334.6]},{"rootY":2.5,"hips":[0,0],"chest":[-13.7,-76.5],"neck":[-13.7,-76.5],"head":[-42.7,-137],"shR":[2.3,-112.5],"elR":[51.8,-6.1],"haR":[38.3,58.7],"shL":[-36.4,-90.7],"elL":[-8.9,10.3],"haL":[-21.9,80.3],"hipR":[6,36.2],"knR":[13.5,178.9],"ftR":[84.2,319.8],"hipL":[-16.4,40.6],"knL":[-66.9,178],"ftL":[-60.6,335.4]},{"rootY":1.7,"hips":[0,0],"chest":[-13.8,-76.5],"neck":[-13.8,-76.5],"head":[-43.5,-136.4],"shR":[1.5,-112.9],"elR":[52.8,-7.9],"haR":[39.8,57.2],"shL":[-35.9,-89.9],"elL":[-7.8,11],"haL":[-22.7,80.7],"hipR":[6.4,35.9],"knR":[16.9,178.4],"ftR":[88.8,318.9],"hipL":[-16.3,40.8],"knL":[-64.4,179],"ftL":[-55.4,336.3]},{"rootY":0.8,"hips":[0,0],"chest":[-13.5,-76.5],"neck":[-13.5,-76.5],"head":[-43.6,-136.1],"shR":[1.6,-113.5],"elR":[53.2,-9.1],"haR":[40.7,56],"shL":[-35.3,-89.1],"elL":[-6.8,11.7],"haL":[-23.5,81],"hipR":[6.5,35.8],"knR":[19.7,178.4],"ftR":[93.3,317.9],"hipL":[-16.5,40.9],"knL":[-61.3,180],"ftL":[-49.3,337.1]},{"rootY":0.4,"hips":[0,0],"chest":[-13.1,-76.5],"neck":[-13.1,-76.5],"head":[-43.2,-135.9],"shR":[1.8,-114],"elR":[52.9,-9.7],"haR":[40.9,55.2],"shL":[-34.3,-88.6],"elL":[-5.8,12.3],"haL":[-24,81.3],"hipR":[6.6,35.8],"knR":[21.3,178.3],"ftR":[98.1,316.1],"hipL":[-16.7,40.9],"knL":[-58,181],"ftL":[-42.9,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[-12.4,-76.6],"neck":[-12.4,-76.6],"head":[-42.4,-135.8],"shR":[2.7,-114.6],"elR":[52.3,-10],"haR":[40.4,54.4],"shL":[-33.4,-87.9],"elL":[-5.4,13.1],"haL":[-24.6,81.8],"hipR":[6.8,36],"knR":[20.9,178.7],"ftR":[101.8,314.1],"hipL":[-16.9,40.7],"knL":[-55,181.8],"ftL":[-36.5,338.1]},{"rootY":0.2,"hips":[0,0],"chest":[-11.9,-76.6],"neck":[-11.9,-76.6],"head":[-41.6,-135.9],"shR":[3.3,-114.9],"elR":[51.6,-9.8],"haR":[39.2,53.7],"shL":[-32.6,-87.6],"elL":[-5.4,13.6],"haL":[-25.2,82.2],"hipR":[6.7,36.3],"knR":[18.5,179.4],"ftR":[104.6,311.6],"hipL":[-17.4,40.4],"knL":[-53.7,181.9],"ftL":[-31.1,337.7]},{"rootY":0.6,"hips":[0,0],"chest":[-11.4,-76.7],"neck":[-11.4,-76.7],"head":[-40.8,-136],"shR":[4.6,-115.1],"elR":[51.3,-9.6],"haR":[37.8,53.2],"shL":[-32.8,-87.3],"elL":[-6.6,14.2],"haL":[-26.8,82.7],"hipR":[6.3,36.3],"knR":[13.9,180],"ftR":[105.4,308.4],"hipL":[-17.8,40.3],"knL":[-53,182.1],"ftL":[-26.5,337.3]},{"rootY":0.8,"hips":[0,0],"chest":[-11.3,-76.7],"neck":[-11.3,-76.7],"head":[-40.4,-136.1],"shR":[5.1,-115.3],"elR":[50.3,-9.3],"haR":[35,52.6],"shL":[-32.5,-87.1],"elL":[-7.9,14.8],"haL":[-28.1,83.3],"hipR":[5.9,36.6],"knR":[7.2,180.6],"ftR":[103.7,305.4],"hipL":[-18.5,39.8],"knL":[-52.3,182],"ftL":[-22.6,336.7]},{"rootY":1.3,"hips":[0,0],"chest":[-10.8,-76.7],"neck":[-10.8,-76.7],"head":[-39.8,-136.2],"shR":[6,-115.5],"elR":[49.1,-8.9],"haR":[32.1,52.3],"shL":[-32.3,-86.8],"elL":[-9.1,15.4],"haL":[-29.5,83.9],"hipR":[5.4,37.1],"knR":[0.1,180.9],"ftR":[100.9,302.5],"hipL":[-19.2,39.3],"knL":[-50.9,182],"ftL":[-18.4,336.1]},{"rootY":1.4,"hips":[0,0],"chest":[-10.3,-76.7],"neck":[-10.3,-76.7],"head":[-39.1,-136.3],"shR":[7.1,-115.5],"elR":[48.6,-8.5],"haR":[29.6,52],"shL":[-32,-86.9],"elL":[-10.4,15.7],"haL":[-31.1,84.1],"hipR":[4.9,37.3],"knR":[-6.5,180.7],"ftR":[97.1,300.1],"hipL":[-19.7,39],"knL":[-49.6,182.1],"ftL":[-14.6,335.6]},{"rootY":1.7,"hips":[0,0],"chest":[-9.7,-76.8],"neck":[-9.7,-76.8],"head":[-38.3,-136.4],"shR":[8.1,-115.5],"elR":[48.4,-8.1],"haR":[27.3,51.7],"shL":[-31.4,-86.9],"elL":[-11.2,15.9],"haL":[-32.6,84.1],"hipR":[4.3,37.1],"knR":[-12.6,179.9],"ftR":[91.2,299.1],"hipL":[-19.7,38.9],"knL":[-48.3,182.4],"ftL":[-10.8,335.3]},{"rootY":2,"hips":[0,0],"chest":[-9.2,-76.8],"neck":[-9.2,-76.8],"head":[-37.6,-136.4],"shR":[8.5,-115.4],"elR":[48.2,-7.8],"haR":[25.3,51.5],"shL":[-30.2,-87.1],"elL":[-11.3,16],"haL":[-33.8,83.8],"hipR":[3.4,37],"knR":[-18.5,179],"ftR":[83,300.1],"hipL":[-19.4,38.9],"knL":[-47.1,182.6],"ftL":[-7.2,335]},{"rootY":2.6,"hips":[0,0],"chest":[-8.8,-76.8],"neck":[-8.8,-76.8],"head":[-36.9,-136.5],"shR":[8.6,-115.2],"elR":[48.2,-7.4],"haR":[23.9,51.4],"shL":[-29.1,-87.3],"elL":[-11.2,16],"haL":[-34.9,83.4],"hipR":[2.5,36.9],"knR":[-24.3,177.9],"ftR":[72.2,303.1],"hipL":[-19.2,38.9],"knL":[-46.8,182.7],"ftL":[-4.6,334.4]},{"rootY":3.2,"hips":[0,0],"chest":[-8.4,-76.8],"neck":[-8.4,-76.8],"head":[-36.6,-136.6],"shR":[8.2,-115.1],"elR":[47.8,-7.2],"haR":[22.7,51.5],"shL":[-27.7,-87.4],"elL":[-11,16.1],"haL":[-36.2,82.9],"hipR":[1.8,36.7],"knR":[-30,176.5],"ftR":[59.5,306.9],"hipL":[-18.9,39],"knL":[-46,182.8],"ftL":[-1.5,333.8]},{"rootY":4,"hips":[0,0],"chest":[-8.2,-76.7],"neck":[-8.2,-76.7],"head":[-36.3,-136.5],"shR":[7.7,-115.1],"elR":[47.3,-7.1],"haR":[21.6,51.8],"shL":[-26.4,-87.4],"elL":[-9.8,16.1],"haL":[-36.6,82.3],"hipR":[1,37],"knR":[-35.4,175.3],"ftR":[45.9,311.1],"hipL":[-18.8,38.7],"knL":[-45.6,182.6],"ftL":[1.7,332.8]},{"rootY":4.8,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.5,-136.4],"shR":[6.5,-115],"elR":[46.2,-7],"haR":[20.1,52],"shL":[-25.3,-87.3],"elL":[-8.7,16.1],"haL":[-37,81.7],"hipR":[0,37.5],"knR":[-41.5,173.8],"ftR":[31.3,314.6],"hipL":[-18.5,38.2],"knL":[-44.8,182.4],"ftL":[3.5,332.2]},{"rootY":4.9,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.7,-136.3],"shR":[5.5,-114.8],"elR":[45.1,-6.9],"haR":[18.9,52.5],"shL":[-24.1,-87.6],"elL":[-7.7,15.9],"haL":[-36.9,81],"hipR":[-0.8,37.7],"knR":[-46.9,172.3],"ftR":[17.6,317.5],"hipL":[-18.3,37.9],"knL":[-42.9,182.5],"ftL":[5.8,332.2]},{"rootY":4.5,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.8,-136.1],"shR":[4.3,-114.9],"elR":[44.1,-7.1],"haR":[17.6,52.4],"shL":[-22.5,-87.5],"elL":[-6.7,16],"haL":[-36.4,80.9],"hipR":[-1.6,37.8],"knR":[-51.5,170.8],"ftR":[4.5,319.8],"hipL":[-17.9,37.7],"knL":[-40.5,182.8],"ftL":[8,332.6]},{"rootY":4.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.6,-136],"shR":[3.3,-114.6],"elR":[43.6,-7.2],"haR":[16.8,52.4],"shL":[-21.2,-87.8],"elL":[-5.3,15.7],"haL":[-35.1,80.4],"hipR":[-2.2,38.3],"knR":[-55.9,169.6],"ftR":[-8.8,321.7],"hipL":[-17.2,37.4],"knL":[-37.6,182.9],"ftL":[10.1,333]},{"rootY":3.7,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[1.6,-114.4],"elR":[42,-7.3],"haR":[15,52.4],"shL":[-18.9,-88.1],"elL":[-2.6,15.3],"haL":[-31.8,80.2],"hipR":[-3.2,38.4],"knR":[-59.3,168.7],"ftR":[-21.4,322.8],"hipL":[-16.3,37.3],"knL":[-35,183.2],"ftL":[12.2,333.5]},{"rootY":3.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[0.2,-114.1],"elR":[40.4,-7.1],"haR":[13.2,52.7],"shL":[-17.3,-88.6],"elL":[-0.5,14.7],"haL":[-28.7,79.9],"hipR":[-4.6,38.2],"knR":[-61.7,168.1],"ftR":[-32.9,323.4],"hipL":[-15.4,37.4],"knL":[-32.6,183.7],"ftL":[14.3,334]},{"rootY":2.2,"hips":[0,0],"chest":[-8.6,-76.6],"neck":[-8.6,-76.6],"head":[-36.3,-136.1],"shR":[-1.3,-113.9],"elR":[38.6,-7],"haR":[11.5,52.8],"shL":[-15.6,-88.9],"elL":[1.8,14.4],"haL":[-25,80],"hipR":[-5.7,38.2],"knR":[-63.6,167.7],"ftR":[-43.6,323.4],"hipL":[-14.2,37.4],"knL":[-29.4,184.1],"ftL":[16.7,334.7]},{"rootY":1.6,"hips":[0,0],"chest":[-8.7,-76.7],"neck":[-8.7,-76.7],"head":[-36.1,-136.2],"shR":[-3.3,-113.7],"elR":[36.6,-7.1],"haR":[9.5,52.8],"shL":[-13.1,-89.2],"elL":[5.2,13.8],"haL":[-19.9,79.9],"hipR":[-6.8,37.9],"knR":[-64.4,167.7],"ftR":[-52.5,323.2],"hipL":[-12.7,37.8],"knL":[-26.1,184.7],"ftL":[19.2,335.5]},{"rootY":1.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-35.7,-136.2],"shR":[-5.3,-113.3],"elR":[34.4,-7.1],"haR":[7.2,53.2],"shL":[-10.4,-89.7],"elL":[8.9,13.2],"haL":[-14.5,79.7],"hipR":[-8.1,37.7],"knR":[-64.7,168],"ftR":[-59.4,322.6],"hipL":[-11.3,38],"knL":[-22.6,185.2],"ftL":[21.5,336.4]},{"rootY":0.8,"hips":[0,0],"chest":[-8,-76.5],"neck":[-8,-76.5],"head":[-34.9,-136.2],"shR":[-6.9,-112.8],"elR":[32.3,-6.8],"haR":[5.2,53.8],"shL":[-7.4,-90.2],"elL":[13,12.5],"haL":[-8.3,79.5],"hipR":[-9.2,39],"knR":[-65.3,169.7],"ftR":[-64.2,322.3],"hipL":[-9.3,37],"knL":[-16.4,184.5],"ftL":[24.6,336.5]},{"rootY":0.4,"hips":[0,0],"chest":[-7.7,-76.6],"neck":[-7.7,-76.6],"head":[-34.2,-136.3],"shR":[-9,-112.4],"elR":[29.5,-6.5],"haR":[2.5,54.4],"shL":[-4,-90.9],"elL":[17.5,11.6],"haL":[-1.5,78.9],"hipR":[-10.6,38.7],"knR":[-63.1,171.1],"ftR":[-67.4,322.4],"hipL":[-7.5,37.3],"knL":[-13.7,184.8],"ftL":[28.1,336.6]},{"rootY":0.7,"hips":[0,0],"chest":[-7.5,-76.7],"neck":[-7.5,-76.7],"head":[-33.4,-136.5],"shR":[-11,-112.2],"elR":[26.8,-6.5],"haR":[-0.2,54.7],"shL":[-1,-91.4],"elL":[21.5,10.9],"haL":[5,78.5],"hipR":[-12.6,38.1],"knR":[-61.4,172],"ftR":[-68.3,322.7],"hipL":[-6.2,37.8],"knL":[-11.7,185.2],"ftL":[31.5,336.5]},{"rootY":1.4,"hips":[0,0],"chest":[-7,-76.8],"neck":[-7,-76.8],"head":[-32.2,-136.6],"shR":[-13.4,-112],"elR":[23.5,-6.4],"haR":[-3.4,55.3],"shL":[3.1,-91.9],"elL":[26.8,10.1],"haL":[12.7,77.9],"hipR":[-14.2,37.8],"knR":[-59.6,173.3],"ftR":[-66.6,323.6],"hipL":[-4.4,38.1],"knL":[-9.4,185.4],"ftL":[35.6,336]},{"rootY":2.3,"hips":[0,0],"chest":[-6.3,-76.9],"neck":[-6.3,-76.9],"head":[-30.7,-136.9],"shR":[-15.5,-111.9],"elR":[20.7,-6.4],"haR":[-6.2,55.7],"shL":[7.3,-92.4],"elL":[31.9,9.4],"haL":[20.5,77.2],"hipR":[-15.8,37.9],"knR":[-57.2,174.9],"ftR":[-61.1,325.3],"hipL":[-2.2,38.2],"knL":[-6.9,185.2],"ftL":[40,335.1]},{"rootY":3.4,"hips":[0,0],"chest":[-5.9,-77],"neck":[-5.9,-77],"head":[-29.8,-137.1],"shR":[-17.9,-111.6],"elR":[17.3,-6.1],"haR":[-9.6,56.4],"shL":[11.4,-92.8],"elL":[37.5,8.6],"haL":[28.4,76.3],"hipR":[-17.1,38.5],"knR":[-54.9,177],"ftR":[-54.8,327.5],"hipL":[0.5,37.7],"knL":[-2.5,184.5],"ftL":[44.3,334.1]},{"rootY":4.4,"hips":[0,0],"chest":[-6.1,-77],"neck":[-6.1,-77],"head":[-29,-137.1],"shR":[-21.6,-111],"elR":[12.7,-5.7],"haR":[-13.9,57.4],"shL":[15.3,-93.8],"elL":[42.6,7.3],"haL":[35.7,74.7],"hipR":[-18.5,38.5],"knR":[-52.6,178.2],"ftR":[-48.9,329.4],"hipL":[2.4,37.9],"knL":[0.9,184.1],"ftL":[48.2,333.3]},{"rootY":5.1,"hips":[0,0],"chest":[-6.8,-77.1],"neck":[-6.8,-77.1],"head":[-29,-137.1],"shR":[-25.5,-110.8],"elR":[7.3,-5.4],"haR":[-18.7,58.4],"shL":[18.1,-94.2],"elL":[47,6.4],"haL":[42.1,73.1],"hipR":[-19.5,38.7],"knR":[-50.7,179.2],"ftR":[-43.7,330.6],"hipL":[4,37.7],"knL":[4.4,183.4],"ftL":[52.1,332.2]},{"rootY":5.2,"hips":[0,0],"chest":[-8.5,-77],"neck":[-8.5,-77],"head":[-31,-136.7],"shR":[-30.3,-109.3],"elR":[0.3,-4.1],"haR":[-24.8,60.5],"shL":[19,-95.8],"elL":[49.6,4.3],"haL":[46.4,70.5],"hipR":[-20.5,38.6],"knR":[-52.2,179],"ftR":[-42.4,330.6],"hipL":[5.2,37.8],"knL":[5.2,183.1],"ftL":[53.9,331.2]},{"rootY":5,"hips":[0,0],"chest":[-10.1,-76.8],"neck":[-10.1,-76.8],"head":[-33.2,-136.5],"shR":[-35,-107.8],"elR":[-6.9,-2.8],"haR":[-31.5,62.2],"shL":[19.6,-97.4],"elL":[52.7,2],"haL":[50.5,67.8],"hipR":[-21.7,38.2],"knR":[-52.4,178.7],"ftR":[-40.7,330.6],"hipL":[6.9,38.3],"knL":[4,182.8],"ftL":[54.7,330.4]},{"rootY":3.9,"hips":[0,0],"chest":[-11.1,-76.7],"neck":[-11.1,-76.7],"head":[-34.8,-136],"shR":[-39.3,-106.4],"elR":[-13.7,-1.4],"haR":[-38.4,63.6],"shL":[21.5,-98.8],"elL":[57.4,-0.4],"haL":[56.1,65.2],"hipR":[-22.4,39.2],"knR":[-50.7,179.9],"ftR":[-38.3,331.5],"hipL":[9.8,37.5],"knL":[5.4,181.3],"ftL":[54.6,329.5]},{"rootY":2.9,"hips":[0,0],"chest":[-12.2,-76.5],"neck":[-12.2,-76.5],"head":[-36.4,-135.5],"shR":[-43.5,-105],"elR":[-20.2,-0.7],"haR":[-45.6,64.1],"shL":[22.9,-100],"elL":[61,-2.3],"haL":[60.9,63.2],"hipR":[-23.5,39.5],"knR":[-48.9,180.5],"ftR":[-36.1,332],"hipL":[12.2,37.2],"knL":[5.9,180.1],"ftL":[53.9,328.9]},{"rootY":2.4,"hips":[0,0],"chest":[-13.7,-76.2],"neck":[-13.7,-76.2],"head":[-38.2,-135],"shR":[-48.1,-103.6],"elR":[-27,1.2],"haR":[-53.3,65.6],"shL":[24,-101.1],"elL":[64.1,-4.3],"haL":[65.7,61.3],"hipR":[-24.7,39.1],"knR":[-47.7,180.2],"ftR":[-35,332.2],"hipL":[14,37.8],"knL":[6.3,179.7],"ftL":[53,329.2]},{"rootY":1.2,"hips":[0,0],"chest":[-14.1,-76.2],"neck":[-14.1,-76.2],"head":[-38.6,-134.8],"shR":[-50.7,-102.5],"elR":[-32.2,1.6],"haR":[-59.6,65.7],"shL":[25.7,-102.2],"elL":[67.9,-6.4],"haL":[70.7,58.9],"hipR":[-24.8,39.8],"knR":[-46.2,181.1],"ftR":[-33.2,333.3],"hipL":[15.6,37],"knL":[10.4,179],"ftL":[55.3,329.1]},{"rootY":0.6,"hips":[0,0],"chest":[-14.6,-76],"neck":[-14.6,-76],"head":[-39.2,-134.4],"shR":[-53.5,-101.6],"elR":[-37.4,1.2],"haR":[-66.2,64.9],"shL":[27.2,-103],"elL":[71.2,-8],"haL":[75.6,56.8],"hipR":[-25.1,40.1],"knR":[-45.2,181.5],"ftR":[-32.3,334],"hipL":[16.7,36.7],"knL":[14,178.5],"ftL":[58.9,328.7]},{"rootY":0.2,"hips":[0,0],"chest":[-15,-75.9],"neck":[-15,-75.9],"head":[-39.6,-134],"shR":[-55.4,-100.9],"elR":[-43.5,2.7],"haR":[-72.9,66.1],"shL":[28.2,-103.5],"elL":[73.6,-9.3],"haL":[79.8,55.2],"hipR":[-25.5,40.1],"knR":[-44.4,181.4],"ftR":[-31.6,334.2],"hipL":[17.7,36.8],"knL":[17.1,178.2],"ftL":[63.6,328.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-15.2,-75.8],"neck":[-15.2,-75.8],"head":[-39.8,-133.5],"shR":[-57.4,-100.8],"elR":[-48.5,2.7],"haR":[-79.4,65.5],"shL":[29.8,-103.5],"elL":[77,-10.3],"haL":[84.4,53.3],"hipR":[-25.3,40.5],"knR":[-43.9,181.6],"ftR":[-31.4,334.4],"hipL":[18.9,36.4],"knL":[20.4,177.6],"ftL":[69.8,326.7]},{"rootY":-0.3,"hips":[0,0],"chest":[-15.7,-75.7],"neck":[-15.7,-75.7],"head":[-40.2,-133],"shR":[-59.1,-100.3],"elR":[-52.2,3.4],"haR":[-84.5,65.7],"shL":[30.1,-103.7],"elL":[78.9,-11.6],"haL":[87.4,51.7],"hipR":[-25.5,40.7],"knR":[-43.6,181.8],"ftR":[-31.7,334.5],"hipL":[20,36.2],"knL":[22.8,176.8],"ftL":[76.2,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[-16.4,-75.5],"neck":[-16.4,-75.5],"head":[-40.8,-132.4],"shR":[-60.8,-99.4],"elR":[-55.8,3.5],"haR":[-89.6,65.2],"shL":[29.9,-104.2],"elL":[80.6,-13.4],"haL":[89.2,49.2],"hipR":[-25.8,40.8],"knR":[-44.1,181.4],"ftR":[-32.8,334],"hipL":[20.9,36.2],"knL":[24.1,176.1],"ftL":[81.4,322.9]},{"rootY":0.9,"hips":[0,0],"chest":[-16.9,-75.3],"neck":[-16.9,-75.3],"head":[-41,-131.5],"shR":[-61,-98],"elR":[-58.3,4.1],"haR":[-93.6,65.1],"shL":[28.1,-105.2],"elL":[80.4,-15.9],"haL":[88.1,46],"hipR":[-26,40.9],"knR":[-44.6,181.2],"ftR":[-34.4,333.6],"hipL":[21.9,36.2],"knL":[25.2,175.1],"ftL":[86.1,320.4]},{"rootY":1.3,"hips":[0,0],"chest":[-17.7,-75],"neck":[-17.7,-75],"head":[-42.3,-130.6],"shR":[-64.5,-98],"elR":[-63.3,3.5],"haR":[-99.6,63.8],"shL":[30.1,-104.5],"elL":[83.8,-16.5],"haL":[90,44.6],"hipR":[-26,41],"knR":[-45.3,180.9],"ftR":[-36.3,333.2],"hipL":[22.6,36.1],"knL":[26.7,174.4],"ftL":[89.2,318.8]},{"rootY":1.7,"hips":[0,0],"chest":[-18.2,-74.7],"neck":[-18.2,-74.7],"head":[-42.8,-129.8],"shR":[-66.2,-97.6],"elR":[-66.8,3.5],"haR":[-103.9,63.2],"shL":[30.6,-104.4],"elL":[85.3,-17.7],"haL":[89.6,42.5],"hipR":[-25.9,41.2],"knR":[-46.2,180.7],"ftR":[-38.2,332.8],"hipL":[23.4,35.8],"knL":[28.8,174.2],"ftL":[91.2,318.3]},{"rootY":2.3,"hips":[0,0],"chest":[-18.5,-74.5],"neck":[-18.5,-74.5],"head":[-43.4,-128.9],"shR":[-67.8,-97.3],"elR":[-70.4,3.4],"haR":[-107.9,62.3],"shL":[31.3,-104],"elL":[86.6,-18.2],"haL":[88.4,40.9],"hipR":[-25.7,41.4],"knR":[-47.5,180.4],"ftR":[-40.4,332.2],"hipL":[24,35.7],"knL":[30.8,174.4],"ftL":[92,319]},{"rootY":3,"hips":[0,0],"chest":[-18.9,-74.2],"neck":[-18.9,-74.2],"head":[-43.5,-128],"shR":[-68.9,-96.9],"elR":[-73.6,3.4],"haR":[-111.3,61.6],"shL":[31.5,-103.9],"elL":[87.3,-19.1],"haL":[86.4,38.9],"hipR":[-25.6,41.5],"knR":[-49.4,179.9],"ftR":[-43.2,331.4],"hipL":[24.4,35.7],"knL":[32.3,175],"ftL":[90.9,320.8]},{"rootY":4.1,"hips":[0,0],"chest":[-19,-74],"neck":[-19,-74],"head":[-43.5,-127.2],"shR":[-69.7,-96.6],"elR":[-75.3,2.7],"haR":[-113,60.2],"shL":[31.7,-103.5],"elL":[87.9,-19.6],"haL":[84.2,37.4],"hipR":[-25.4,41.6],"knR":[-51.4,179.3],"ftR":[-46.1,330.4],"hipL":[24.8,35.7],"knL":[33.4,175.7],"ftL":[89.3,322.6]},{"rootY":5.2,"hips":[0,0],"chest":[-19.1,-73.7],"neck":[-19.1,-73.7],"head":[-43.4,-126.3],"shR":[-70.4,-96.4],"elR":[-77.9,2.7],"haR":[-115.3,59.4],"shL":[32,-102.9],"elL":[88.3,-19.6],"haL":[81.7,36.5],"hipR":[-25.3,41.6],"knR":[-53.7,178.6],"ftR":[-49.4,329.4],"hipL":[25,35.7],"knL":[33.3,176.2],"ftL":[86.9,324]},{"rootY":6,"hips":[0,0],"chest":[-19.2,-73.3],"neck":[-19.2,-73.3],"head":[-43.2,-125.3],"shR":[-71.2,-96.2],"elR":[-80.4,2.9],"haR":[-117.1,59],"shL":[32.7,-102.2],"elL":[88.9,-19],"haL":[79.4,36.3],"hipR":[-25.4,41.5],"knR":[-55.7,177.9],"ftR":[-52.8,328.7],"hipL":[25.2,35.9],"knL":[32.7,176.5],"ftL":[83.8,325.1]},{"rootY":7,"hips":[0,0],"chest":[-19.2,-72.9],"neck":[-19.2,-72.9],"head":[-42.6,-124.2],"shR":[-71.9,-96.1],"elR":[-82.4,3.1],"haR":[-118.2,58.7],"shL":[33.4,-101.3],"elL":[89.4,-17.7],"haL":[77,37.1],"hipR":[-25.5,41.4],"knR":[-57.8,177.2],"ftR":[-56.3,327.8],"hipL":[25.3,36],"knL":[31.6,176.7],"ftL":[79.9,326.3]},{"rootY":7.7,"hips":[0,0],"chest":[-19,-72.6],"neck":[-19,-72.6],"head":[-41.7,-123],"shR":[-72.5,-95.9],"elR":[-84.3,3.1],"haR":[-118.7,58.3],"shL":[34.4,-100.5],"elL":[89.9,-16.2],"haL":[74.9,38.2],"hipR":[-25.5,41.4],"knR":[-59.7,176.6],"ftR":[-59.6,327.1],"hipL":[25.7,36.2],"knL":[30.4,176.7],"ftL":[76,327.1]},{"rootY":8.5,"hips":[0,0],"chest":[-18.8,-72.1],"neck":[-18.8,-72.1],"head":[-40.8,-121.7],"shR":[-72.8,-95.8],"elR":[-86.7,3.7],"haR":[-119.2,59],"shL":[35.3,-99.4],"elL":[90.3,-14.5],"haL":[72.7,39.6],"hipR":[-25.6,41.3],"knR":[-61.2,175.9],"ftR":[-62.7,326.3],"hipL":[25.9,36.4],"knL":[28.9,176.4],"ftL":[72.6,327.3]},{"rootY":9.4,"hips":[0,0],"chest":[-18.4,-71.7],"neck":[-18.4,-71.7],"head":[-39.8,-120.4],"shR":[-73,-95.6],"elR":[-87.4,3.1],"haR":[-117.8,58.4],"shL":[36.3,-98.4],"elL":[90.6,-12.5],"haL":[70.6,41.2],"hipR":[-25.8,41.1],"knR":[-63,175],"ftR":[-65.8,325.4],"hipL":[25.9,36.7],"knL":[27.2,176.1],"ftL":[70,327.2]},{"rootY":10.4,"hips":[0,0],"chest":[-18.1,-71.1],"neck":[-18.1,-71.1],"head":[-38.8,-119],"shR":[-73.2,-95.4],"elR":[-88.7,2.8],"haR":[-116.8,58.3],"shL":[37.6,-97],"elL":[91.3,-10.3],"haL":[68.9,43.2],"hipR":[-26,40.9],"knR":[-64.6,174.1],"ftR":[-68.6,324.5],"hipL":[26,37],"knL":[25.7,175.5],"ftL":[68.2,326.7]},{"rootY":11.4,"hips":[0,0],"chest":[-17.5,-70.7],"neck":[-17.5,-70.7],"head":[-37.5,-117.7],"shR":[-73.2,-95.3],"elR":[-89.7,2.4],"haR":[-115.5,57.9],"shL":[39,-95.8],"elL":[91.4,-8],"haL":[67.1,45.3],"hipR":[-26.1,40.7],"knR":[-66,173.2],"ftR":[-71.1,323.6],"hipL":[26.1,37.2],"knL":[24.2,174.9],"ftL":[65.9,326.2]},{"rootY":12.5,"hips":[0,0],"chest":[-16.9,-70.3],"neck":[-16.9,-70.3],"head":[-36,-116.3],"shR":[-72.6,-95.3],"elR":[-90.2,1.8],"haR":[-114,57.5],"shL":[40.1,-94.7],"elL":[91.2,-5.7],"haL":[65,47.4],"hipR":[-26.3,40.6],"knR":[-67.6,172.3],"ftR":[-73.3,322.6],"hipL":[26.3,37.3],"knL":[22.7,173.8],"ftL":[63.7,325.2]},{"rootY":13.4,"hips":[0,0],"chest":[-16.1,-69.9],"neck":[-16.1,-69.9],"head":[-34.5,-115.4],"shR":[-72.1,-95.2],"elR":[-90.6,1.4],"haR":[-112.6,57.2],"shL":[41.4,-93.7],"elL":[91.3,-3.8],"haL":[63.2,49.1],"hipR":[-26.6,40.4],"knR":[-69.4,171.3],"ftR":[-75.4,321.5],"hipL":[26.3,37.6],"knL":[21.5,172.6],"ftL":[61.7,324.2]},{"rootY":15,"hips":[0,0],"chest":[-15.3,-69.6],"neck":[-15.3,-69.6],"head":[-32.8,-114.5],"shR":[-71.3,-95.5],"elR":[-91.2,0.8],"haR":[-111.3,56.6],"shL":[42.8,-92.5],"elL":[91.4,-1.7],"haL":[61.3,50.7],"hipR":[-27,40.1],"knR":[-71.5,169.9],"ftR":[-77.3,320],"hipL":[26.4,38],"knL":[20.6,171.3],"ftL":[59.9,322.9]},{"rootY":16.4,"hips":[0,0],"chest":[-14.4,-69.3],"neck":[-14.4,-69.3],"head":[-31.1,-113.9],"shR":[-70.4,-95.7],"elR":[-91.5,0.1],"haR":[-110,56.1],"shL":[44.3,-91.5],"elL":[91.5,0.2],"haL":[59.7,52.2],"hipR":[-27.6,39.7],"knR":[-73.7,168.5],"ftR":[-79.1,318.6],"hipL":[26.2,38.4],"knL":[19.7,170],"ftL":[58.5,321.6]},{"rootY":17.8,"hips":[0,0],"chest":[-13.5,-69.1],"neck":[-13.5,-69.1],"head":[-29.4,-113.3],"shR":[-69.5,-96],"elR":[-91.4,-0.7],"haR":[-108.7,55.5],"shL":[45.6,-90.5],"elL":[91.5,2],"haL":[57.8,53.6],"hipR":[-28.1,39.4],"knR":[-75.8,167.2],"ftR":[-80.7,317.2],"hipL":[26.1,38.7],"knL":[19,168.8],"ftL":[57.2,320.4]},{"rootY":19.2,"hips":[0,0],"chest":[-12.6,-68.9],"neck":[-12.6,-68.9],"head":[-27.6,-112.9],"shR":[-68.6,-96.3],"elR":[-91.5,-1.5],"haR":[-107.6,55],"shL":[47.2,-89.5],"elL":[92,3.7],"haL":[56.4,54.8],"hipR":[-28.4,39.2],"knR":[-77.3,166],"ftR":[-82.1,315.8],"hipL":[25.9,38.9],"knL":[18.1,167.4],"ftL":[55.8,319]},{"rootY":20.5,"hips":[0,0],"chest":[-11.8,-68.8],"neck":[-11.8,-68.8],"head":[-26.1,-112.8],"shR":[-67.8,-96.8],"elR":[-91.5,-2.2],"haR":[-106.6,54.5],"shL":[48.6,-88.7],"elL":[92.3,5],"haL":[55.1,55.9],"hipR":[-28.6,39.1],"knR":[-79.1,164.8],"ftR":[-83.3,314.5],"hipL":[25.7,39],"knL":[17,166.3],"ftL":[54.6,317.7]},{"rootY":21.8,"hips":[0,0],"chest":[-11.2,-68.7],"neck":[-11.2,-68.7],"head":[-24.6,-112.8],"shR":[-67.1,-97.1],"elR":[-91.4,-2.9],"haR":[-105.6,54],"shL":[49.7,-88],"elL":[92.5,6.3],"haL":[53.7,56.9],"hipR":[-28.8,39],"knR":[-80.3,163.7],"ftR":[-84.4,313.2],"hipL":[25.6,39.1],"knL":[15.7,165.1],"ftL":[53.3,316.3]},{"rootY":23.3,"hips":[0,0],"chest":[-10.7,-68.5],"neck":[-10.7,-68.5],"head":[-23.5,-112.7],"shR":[-66.5,-97.4],"elR":[-91.7,-3.4],"haR":[-105.1,53.8],"shL":[50.6,-87.1],"elL":[92.7,7.5],"haL":[52.6,57.8],"hipR":[-28.9,38.9],"knR":[-81.5,162.5],"ftR":[-85.5,311.9],"hipL":[25.4,39.1],"knL":[14.4,163.8],"ftL":[52.2,314.9]},{"rootY":24.5,"hips":[0,0],"chest":[-10.2,-68.4],"neck":[-10.2,-68.4],"head":[-22.5,-112.8],"shR":[-65.8,-97.8],"elR":[-91.7,-4],"haR":[-104.7,53.2],"shL":[51.5,-86.4],"elL":[92.5,8.5],"haL":[51.5,58.4],"hipR":[-29.1,38.8],"knR":[-82.5,161.4],"ftR":[-86.4,310.6],"hipL":[25.2,39.2],"knL":[13.3,162.8],"ftL":[51.2,313.8]},{"rootY":25.9,"hips":[0,0],"chest":[-9.8,-68.4],"neck":[-9.8,-68.4],"head":[-21.4,-112.9],"shR":[-65.1,-98.1],"elR":[-92,-4.6],"haR":[-104.7,52.5],"shL":[51.6,-86.1],"elL":[91.4,9.1],"haL":[49.5,58.6],"hipR":[-29.1,38.8],"knR":[-83.4,160.3],"ftR":[-87.3,309.2],"hipL":[25.1,39.2],"knL":[12.4,161.6],"ftL":[50.3,312.4]},{"rootY":27.2,"hips":[0,0],"chest":[-9.4,-68.3],"neck":[-9.4,-68.3],"head":[-20.7,-113],"shR":[-64.7,-98.2],"elR":[-92,-4.4],"haR":[-104.7,52.7],"shL":[52.2,-85.6],"elL":[90.8,10],"haL":[48.4,58.9],"hipR":[-29.4,38.6],"knR":[-84.1,159.1],"ftR":[-87.8,307.9],"hipL":[24.9,39.4],"knL":[11.7,160.4],"ftL":[49.5,311.1]},{"rootY":28.5,"hips":[0,0],"chest":[-9.2,-68.2],"neck":[-9.2,-68.2],"head":[-20.1,-113.1],"shR":[-64.4,-98.4],"elR":[-92,-4.6],"haR":[-104.9,52.3],"shL":[52.6,-85.1],"elL":[90.2,10.8],"haL":[47.2,59.2],"hipR":[-29.6,38.5],"knR":[-84.9,158],"ftR":[-88.3,306.5],"hipL":[24.9,39.4],"knL":[11.2,159.2],"ftL":[48.9,309.8]},{"rootY":29.8,"hips":[0,0],"chest":[-9,-68.1],"neck":[-9,-68.1],"head":[-19.7,-113.2],"shR":[-64.1,-98.6],"elR":[-92.1,-4.6],"haR":[-105.1,52.1],"shL":[52.9,-84.8],"elL":[89.7,11.4],"haL":[46.2,59.3],"hipR":[-29.8,38.4],"knR":[-85.9,156.8],"ftR":[-88.9,305.2],"hipL":[24.9,39.5],"knL":[10.8,157.9],"ftL":[48.3,308.6]},{"rootY":31.1,"hips":[0,0],"chest":[-8.5,-68],"neck":[-8.5,-68],"head":[-18.9,-113.2],"shR":[-63.5,-98.5],"elR":[-92.3,-4.6],"haR":[-105.3,51.9],"shL":[53.4,-84.5],"elL":[89.3,12.1],"haL":[45.3,59.6],"hipR":[-30,38.4],"knR":[-86.9,155.6],"ftR":[-89.1,303.9],"hipL":[24.8,39.5],"knL":[10.9,156.5],"ftL":[48.1,307.3]},{"rootY":32.4,"hips":[0,0],"chest":[-8.2,-68.1],"neck":[-8.2,-68.1],"head":[-18.3,-113.4],"shR":[-63.2,-98.7],"elR":[-92.6,-4.6],"haR":[-105.6,51.7],"shL":[54.1,-84.6],"elL":[89.4,12.5],"haL":[45.1,59.6],"hipR":[-30.3,38.3],"knR":[-88,154.4],"ftR":[-89.1,302.5],"hipL":[24.9,39.5],"knL":[11.2,155.3],"ftL":[48.1,306]},{"rootY":33.9,"hips":[0,0],"chest":[-7.6,-68.2],"neck":[-7.6,-68.2],"head":[-17.6,-113.8],"shR":[-62.6,-98.9],"elR":[-92.6,-4.6],"haR":[-105.5,51.4],"shL":[54.8,-84.6],"elL":[89.5,13],"haL":[45,59.7],"hipR":[-30.5,38.3],"knR":[-89.1,153.1],"ftR":[-88.9,301],"hipL":[24.8,39.5],"knL":[11.7,153.8],"ftL":[48.3,304.5]},{"rootY":35.3,"hips":[0,0],"chest":[-7.1,-68.5],"neck":[-7.1,-68.5],"head":[-16.9,-114.4],"shR":[-62.2,-99.1],"elR":[-92.9,-4.2],"haR":[-105.6,51.3],"shL":[55.4,-85.3],"elL":[89.6,12.7],"haL":[44.9,59.1],"hipR":[-30.9,38.2],"knR":[-90.1,151.8],"ftR":[-88.7,299.4],"hipL":[24.6,39.5],"knL":[12.2,152.3],"ftL":[48.6,303]},{"rootY":37,"hips":[0,0],"chest":[-7,-69],"neck":[-7,-69],"head":[-16.6,-115.3],"shR":[-62.2,-99.3],"elR":[-93.5,-3.7],"haR":[-105.9,51.2],"shL":[55.6,-86.2],"elL":[89.5,12.2],"haL":[44.7,58.2],"hipR":[-31.3,38],"knR":[-91.3,150.4],"ftR":[-88.7,297.6],"hipL":[24.5,39.5],"knL":[12.6,150.8],"ftL":[48.6,301.4]},{"rootY":38.6,"hips":[0,0],"chest":[-6.8,-69.6],"neck":[-6.8,-69.6],"head":[-16.3,-116.6],"shR":[-62.1,-99.6],"elR":[-93.7,-2.8],"haR":[-106,51.4],"shL":[56,-87.5],"elL":[89.6,11.3],"haL":[44.8,56.8],"hipR":[-31.5,38.1],"knR":[-92.2,149.2],"ftR":[-88.4,295.8],"hipL":[24.6,39.2],"knL":[13.3,149.3],"ftL":[48.8,299.9]},{"rootY":40,"hips":[0,0],"chest":[-6.7,-70.2],"neck":[-6.7,-70.2],"head":[-16.2,-118.2],"shR":[-62.2,-100],"elR":[-94.2,-1.8],"haR":[-106.1,51.6],"shL":[56.2,-88.9],"elL":[89.5,10.3],"haL":[44.7,55.2],"hipR":[-31.6,38.2],"knR":[-93.2,148],"ftR":[-88.2,294.1],"hipL":[24.6,38.9],"knL":[14.1,147.9],"ftL":[48.9,298.5]},{"rootY":41.1,"hips":[0,0],"chest":[-6.7,-71],"neck":[-6.7,-71],"head":[-16,-120],"shR":[-62.3,-100.3],"elR":[-94.8,-0.6],"haR":[-106.4,52],"shL":[56.2,-90.5],"elL":[89,8.9],"haL":[44.2,53.3],"hipR":[-31.9,38.2],"knR":[-94.5,146.5],"ftR":[-88.3,292.4],"hipL":[24.4,38.6],"knL":[14.7,146.7],"ftL":[48.9,297.3]},{"rootY":42.2,"hips":[0,0],"chest":[-6.7,-71.7],"neck":[-6.7,-71.7],"head":[-16,-122.1],"shR":[-62.4,-100.4],"elR":[-95.8,1],"haR":[-107,52.7],"shL":[56,-92.4],"elL":[88.1,7.4],"haL":[43.5,51.5],"hipR":[-32,38.2],"knR":[-95.6,145.2],"ftR":[-88.3,290.8],"hipL":[24.3,38.2],"knL":[14.9,145.6],"ftL":[48.9,296.2]},{"rootY":43.3,"hips":[0,0],"chest":[-6.8,-72.4],"neck":[-6.8,-72.4],"head":[-16,-124.1],"shR":[-62.5,-100.8],"elR":[-96.9,2.5],"haR":[-107.3,53.3],"shL":[55.9,-94],"elL":[86.9,6.1],"haL":[42.6,49.7],"hipR":[-32,38.3],"knR":[-97.1,143.9],"ftR":[-88.6,289.3],"hipL":[24.2,37.8],"knL":[15,144.4],"ftL":[48.6,295.1]},{"rootY":44.5,"hips":[0,0],"chest":[-6.9,-73],"neck":[-6.9,-73],"head":[-16.1,-126.1],"shR":[-62.6,-101],"elR":[-97.9,4.1],"haR":[-107.6,54],"shL":[55.6,-95.5],"elL":[85.5,4.8],"haL":[41.2,48],"hipR":[-32.3,38.1],"knR":[-98.4,142.2],"ftR":[-89.2,287.6],"hipL":[23.9,37.5],"knL":[14.8,143.2],"ftL":[48.2,294]},{"rootY":45.4,"hips":[0,0],"chest":[-6.9,-73.7],"neck":[-6.9,-73.7],"head":[-16.3,-128.1],"shR":[-62.4,-101.6],"elR":[-98.9,5],"haR":[-107.8,53.9],"shL":[55.4,-96.7],"elL":[84.2,3.8],"haL":[39.7,46.5],"hipR":[-32.5,38],"knR":[-99.7,141],"ftR":[-89.8,286.3],"hipL":[23.8,37.1],"knL":[14.4,142.1],"ftL":[47.5,292.8]},{"rootY":46.7,"hips":[0,0],"chest":[-6.8,-74.2],"neck":[-6.8,-74.2],"head":[-16.2,-130],"shR":[-62,-101.9],"elR":[-99.7,5.9],"haR":[-107.7,53.6],"shL":[55.4,-97.6],"elL":[82.8,3.1],"haL":[38,45.3],"hipR":[-32.8,37.8],"knR":[-101,139.2],"ftR":[-90.5,284.6],"hipL":[23.2,37],"knL":[13.8,140.8],"ftL":[46.8,291.6]},{"rootY":47.7,"hips":[0,0],"chest":[-6.5,-74.8],"neck":[-6.5,-74.8],"head":[-15.9,-131.8],"shR":[-61.5,-102.3],"elR":[-101.1,6.1],"haR":[-107.6,52.4],"shL":[55.6,-98.7],"elL":[82.1,1.8],"haL":[36.4,43.3],"hipR":[-32.9,37.8],"knR":[-102.4,137.9],"ftR":[-91.3,283.3],"hipL":[23.1,36.4],"knL":[13.3,139.8],"ftL":[46.1,290.5]},{"rootY":48.9,"hips":[0,0],"chest":[-6.2,-75.2],"neck":[-6.2,-75.2],"head":[-15.5,-133.3],"shR":[-61,-102.7],"elR":[-102.7,5.9],"haR":[-107.5,50.7],"shL":[55.9,-99.4],"elL":[81.9,0.7],"haL":[35.1,41.4],"hipR":[-33.4,37.4],"knR":[-103.6,136.2],"ftR":[-92.1,281.7],"hipL":[22.5,36.1],"knL":[12.7,138.5],"ftL":[45.5,289.3]},{"rootY":50.3,"hips":[0,0],"chest":[-5.9,-75.7],"neck":[-5.9,-75.7],"head":[-14.9,-134.7],"shR":[-60.5,-102.9],"elR":[-104.9,5.4],"haR":[-107.4,48.8],"shL":[56.2,-100.3],"elL":[82.2,-0.6],"haL":[34.4,39.3],"hipR":[-33.8,37],"knR":[-104.9,134.3],"ftR":[-93.1,279.9],"hipL":[22.1,35.8],"knL":[11.9,137],"ftL":[44.6,287.8]},{"rootY":51.3,"hips":[0,0],"chest":[-5.5,-76.1],"neck":[-5.5,-76.1],"head":[-14.2,-136.1],"shR":[-59.9,-103.2],"elR":[-107.4,4.4],"haR":[-107.4,46.4],"shL":[56.5,-101.1],"elL":[83.3,-2.4],"haL":[34.3,36.8],"hipR":[-34,36.8],"knR":[-106.3,132.9],"ftR":[-94,278.5],"hipL":[21.8,35.2],"knL":[10.9,135.8],"ftL":[43.6,286.6]},{"rootY":52.5,"hips":[0,0],"chest":[-5.3,-76.4],"neck":[-5.3,-76.4],"head":[-13.5,-137.3],"shR":[-59.4,-103.3],"elR":[-110.2,3],"haR":[-107.6,43.5],"shL":[56.7,-101.8],"elL":[85,-4.4],"haL":[34.9,34.1],"hipR":[-34.4,36.4],"knR":[-107.7,131.1],"ftR":[-95.2,276.8],"hipL":[21.4,34.8],"knL":[9.8,134.7],"ftL":[42.5,285.4]},{"rootY":53.5,"hips":[0,0],"chest":[-5.2,-76.7],"neck":[-5.2,-76.7],"head":[-12.9,-138.5],"shR":[-59.1,-103.3],"elR":[-113.4,1.5],"haR":[-108.2,40.3],"shL":[56.8,-102.4],"elL":[87.4,-6.8],"haL":[36,31.4],"hipR":[-34.8,36],"knR":[-108.9,129.2],"ftR":[-96.5,275],"hipL":[20.9,34.4],"knL":[8.5,133.5],"ftL":[41.2,284.3]},{"rootY":54.2,"hips":[0,0],"chest":[-5.1,-76.8],"neck":[-5.1,-76.8],"head":[-12.3,-139.5],"shR":[-58.9,-103.2],"elR":[-116.2,0],"haR":[-108.7,37.2],"shL":[56.9,-103],"elL":[90.3,-9.4],"haL":[37.8,28.4],"hipR":[-35.4,35.4],"knR":[-110.1,127.7],"ftR":[-97.8,273.8],"hipL":[20.2,34],"knL":[7.2,132.4],"ftL":[40,283.2]},{"rootY":54.8,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11.5,-140.5],"shR":[-58.4,-103],"elR":[-118.5,-1.5],"haR":[-109,34.3],"shL":[57.1,-103.5],"elL":[93.6,-12.2],"haL":[40.3,25.6],"hipR":[-35.7,35],"knR":[-111.3,126.4],"ftR":[-99.3,272.6],"hipL":[20,33.4],"knL":[6,131.1],"ftL":[38.9,281.9]},{"rootY":55.6,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11,-141.3],"shR":[-58.2,-103],"elR":[-120.7,-2.9],"haR":[-109.9,31.8],"shL":[57.1,-103.7],"elL":[96.8,-14.9],"haL":[43.1,23.3],"hipR":[-36.2,34.4],"knR":[-112.4,124.6],"ftR":[-100.9,271.1],"hipL":[19.4,33.1],"knL":[4.7,129.7],"ftL":[37.6,280.4]},{"rootY":56.2,"hips":[0,0],"chest":[-4.5,-77.1],"neck":[-4.5,-77.1],"head":[-10.2,-141.9],"shR":[-57.7,-102.9],"elR":[-122.2,-4.3],"haR":[-110.4,29.7],"shL":[57.3,-104],"elL":[100.1,-17.4],"haL":[46.2,21.4],"hipR":[-36.2,34.3],"knR":[-113.6,123],"ftR":[-102.3,269.7],"hipL":[19.4,32.3],"knL":[3.9,127.7],"ftL":[36.3,278.7]},{"rootY":56.8,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-9.2,-142.5],"shR":[-57.2,-102.8],"elR":[-123.7,-5.8],"haR":[-111,27.8],"shL":[57.7,-104.1],"elL":[103.5,-19.9],"haL":[49.5,19.6],"hipR":[-35.4,35],"knR":[-115.1,121.4],"ftR":[-104.1,268.5],"hipL":[20.3,31.2],"knL":[3.1,125],"ftL":[34.8,276.2]},{"rootY":57.3,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-8.7,-142.8],"shR":[-57,-102.8],"elR":[-125.6,-7.6],"haR":[-111.9,25.9],"shL":[57.6,-104.2],"elL":[106.4,-22.4],"haL":[52.5,18.1],"hipR":[-36.8,33.5],"knR":[-116.1,119.4],"ftR":[-105.3,266.8],"hipL":[18.6,31.7],"knL":[1.9,122.5],"ftL":[34,273.6]},{"rootY":57.8,"hips":[0,0],"chest":[-3.7,-77.2],"neck":[-3.7,-77.2],"head":[-7.7,-143.2],"shR":[-56.3,-103],"elR":[-127,-9.8],"haR":[-112.4,23.8],"shL":[58,-104],"elL":[110.2,-24.9],"haL":[56.1,16.5],"hipR":[-36.9,33.2],"knR":[-117.3,117.6],"ftR":[-106.8,265.2],"hipL":[18.4,31],"knL":[1.5,119.8],"ftL":[33.2,271]},{"rootY":58.2,"hips":[0,0],"chest":[-3.6,-77.2],"neck":[-3.6,-77.2],"head":[-7,-143.4],"shR":[-56,-103.1],"elR":[-129,-12.4],"haR":[-113.3,21.2],"shL":[58,-103.8],"elL":[113.9,-27.7],"haL":[59.9,14.7],"hipR":[-37.3,32.8],"knR":[-118.6,115.5],"ftR":[-108.7,263.4],"hipL":[17.9,30.9],"knL":[0.7,116.9],"ftL":[32.6,268.2]},{"rootY":58.7,"hips":[0,0],"chest":[-3.2,-77.2],"neck":[-3.2,-77.2],"head":[-6.3,-143.6],"shR":[-55.6,-103.4],"elR":[-131.4,-15.9],"haR":[-114.6,17.9],"shL":[58.5,-103.5],"elL":[118.5,-31],"haL":[64.5,12.3],"hipR":[-37.7,32.3],"knR":[-119.6,113.6],"ftR":[-110.1,261.8],"hipL":[17.4,30.7],"knL":[0.1,114.6],"ftL":[32.2,265.9]},{"rootY":58.9,"hips":[0,0],"chest":[-2.8,-77.2],"neck":[-2.8,-77.2],"head":[-5.4,-143.6],"shR":[-55,-103.7],"elR":[-133.7,-20],"haR":[-116.1,14.1],"shL":[59,-103.2],"elL":[123.2,-34.9],"haL":[69.3,9.1],"hipR":[-37.4,32.5],"knR":[-120.7,112.2],"ftR":[-111.4,260.3],"hipL":[17.8,30],"knL":[-0.3,112.8],"ftL":[31.9,264.2]},{"rootY":59.2,"hips":[0,0],"chest":[-2.6,-77.2],"neck":[-2.6,-77.2],"head":[-4.8,-143.7],"shR":[-54.6,-103.9],"elR":[-136,-24.1],"haR":[-117.8,10.6],"shL":[59.3,-103],"elL":[127.5,-38.7],"haL":[73.9,6.4],"hipR":[-37.7,32.2],"knR":[-121.5,110.5],"ftR":[-112.4,258.9],"hipL":[17.4,30],"knL":[-1,111.4],"ftL":[31.8,262.8]},{"rootY":59.4,"hips":[0,0],"chest":[-2.4,-77.2],"neck":[-2.4,-77.2],"head":[-4.2,-143.6],"shR":[-54.3,-104.1],"elR":[-138,-28.4],"haR":[-119.2,7.2],"shL":[59.7,-102.7],"elL":[131,-42],"haL":[77.9,4.1],"hipR":[-37.9,32],"knR":[-122.2,109.3],"ftR":[-113.1,257.8],"hipL":[17.2,30],"knL":[-1.5,110.6],"ftL":[31.6,261.9]},{"rootY":59.6,"hips":[0,0],"chest":[-2.1,-77.2],"neck":[-2.1,-77.2],"head":[-3.9,-143.4],"shR":[-53.9,-104.3],"elR":[-139.5,-32.5],"haR":[-120.1,4.4],"shL":[60,-102.5],"elL":[133.9,-44.5],"haL":[81.5,2.6],"hipR":[-38,31.9],"knR":[-122.6,108.4],"ftR":[-113.5,256.9],"hipL":[17,30.1],"knL":[-2.1,110.3],"ftL":[31.4,261.5]},{"rootY":59.8,"hips":[0,0],"chest":[-1.9,-77.3],"neck":[-1.9,-77.3],"head":[-3.7,-143.3],"shR":[-53.6,-104.5],"elR":[-140.7,-35.7],"haR":[-120.5,2.9],"shL":[60.3,-102.3],"elL":[135.7,-46],"haL":[83.8,1.8],"hipR":[-38,31.8],"knR":[-122.9,107.7],"ftR":[-113.8,256.3],"hipL":[16.9,30.1],"knL":[-2.6,110.1],"ftL":[31.3,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.8,-77.3],"neck":[-1.8,-77.3],"head":[-3.4,-143],"shR":[-53.3,-104.8],"elR":[-141.3,-38],"haR":[-120.1,2.4],"shL":[60.6,-102],"elL":[136.6,-46.6],"haL":[85.1,2],"hipR":[-38.1,31.7],"knR":[-123.1,107.2],"ftR":[-113.9,255.8],"hipL":[16.8,30.1],"knL":[-2.8,110.2],"ftL":[31.1,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.7,-77.3],"neck":[-1.7,-77.3],"head":[-3.4,-142.7],"shR":[-53.2,-105],"elR":[-141.6,-39.1],"haR":[-119.3,2.7],"shL":[60.9,-101.8],"elL":[136.7,-45.8],"haL":[85.9,3.8],"hipR":[-38.2,31.6],"knR":[-123.3,106.7],"ftR":[-114.5,255.3],"hipL":[16.8,30.2],"knL":[-3.1,110.1],"ftL":[30.7,261.1]},{"rootY":60.1,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[-3.3,-142.3],"shR":[-53,-105.1],"elR":[-141.3,-38.7],"haR":[-117.8,4.3],"shL":[61.1,-101.6],"elL":[135.9,-44.3],"haL":[85.3,5.8],"hipR":[-37.4,32.4],"knR":[-123.9,106.3],"ftR":[-115,254.9],"hipL":[17.8,29.6],"knL":[-3.1,109.7],"ftL":[30.4,260.8]},{"rootY":60.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-3.7,-142],"shR":[-53.3,-105.2],"elR":[-140.9,-37.4],"haR":[-116.5,6.6],"shL":[60.6,-101.5],"elL":[133.8,-42.3],"haL":[83.7,8.4],"hipR":[-38.7,31.1],"knR":[-124.1,105.4],"ftR":[-115.4,254.1],"hipL":[16.1,30.5],"knL":[-3.7,109.8],"ftL":[30.1,260.6]},{"rootY":60.5,"hips":[0,0],"chest":[-1.6,-77.2],"neck":[-1.6,-77.2],"head":[-3.6,-141.9],"shR":[-53.1,-105.3],"elR":[-139.6,-35.4],"haR":[-114.5,9.5],"shL":[60.9,-101.3],"elL":[132.1,-39.5],"haL":[82.6,11.8],"hipR":[-38.4,31.4],"knR":[-124.4,104.6],"ftR":[-115.8,253.4],"hipL":[16.5,30.3],"knL":[-3.7,109.2],"ftL":[30.2,260.1]},{"rootY":60.5,"hips":[0,0],"chest":[-1.8,-77.2],"neck":[-1.8,-77.2],"head":[-3.7,-141.9],"shR":[-53.4,-105.4],"elR":[-138.6,-33.3],"haR":[-112.7,12.5],"shL":[60.7,-101.1],"elL":[129.9,-36.7],"haL":[80.6,15],"hipR":[-38.4,31.4],"knR":[-125,103.7],"ftR":[-116.4,252.7],"hipL":[16.4,30.2],"knL":[-3.9,109],"ftL":[30.1,259.9]},{"rootY":60.8,"hips":[0,0],"chest":[-1.9,-77.1],"neck":[-1.9,-77.1],"head":[-3.7,-141.8],"shR":[-53.8,-105.3],"elR":[-137.3,-30.8],"haR":[-110.7,15.8],"shL":[60.4,-101.1],"elL":[127.7,-34.1],"haL":[78.6,17.8],"hipR":[-38.3,31.5],"knR":[-125.5,102.9],"ftR":[-116.9,252],"hipL":[16.6,30.1],"knL":[-4.1,108.6],"ftL":[29.9,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-2,-77],"neck":[-2,-77],"head":[-4,-141.8],"shR":[-54.1,-105.2],"elR":[-135.6,-28.6],"haR":[-108,18.3],"shL":[60.2,-101],"elL":[125.6,-31.5],"haL":[76.3,20.1],"hipR":[-38,31.8],"knR":[-125.9,102.4],"ftR":[-117.5,251.7],"hipL":[17,29.9],"knL":[-4.2,108.3],"ftL":[29.8,259.3]},{"rootY":60.8,"hips":[0,0],"chest":[-2.1,-77],"neck":[-2.1,-77],"head":[-4,-141.8],"shR":[-54.5,-105.2],"elR":[-134.4,-26.9],"haR":[-106.7,20],"shL":[60.1,-101],"elL":[124.5,-29.7],"haL":[74.6,21.3],"hipR":[-37.9,31.9],"knR":[-126.3,102],"ftR":[-117.9,251.3],"hipL":[17.1,30],"knL":[-4.2,108.2],"ftL":[29.6,259.3]},{"rootY":61,"hips":[0,0],"chest":[-2.4,-76.9],"neck":[-2.4,-76.9],"head":[-4.1,-141.9],"shR":[-55,-105.1],"elR":[-133.9,-26],"haR":[-106.6,20.8],"shL":[59.8,-100.8],"elL":[123.6,-28.6],"haL":[73.6,22.2],"hipR":[-37.7,32.2],"knR":[-126.6,101.7],"ftR":[-118.3,251],"hipL":[17.3,30],"knL":[-4.2,108.2],"ftL":[29.4,259.3]},{"rootY":60.9,"hips":[0,0],"chest":[-2.7,-76.9],"neck":[-2.7,-76.9],"head":[-4,-141.9],"shR":[-55.4,-105.1],"elR":[-134.2,-25.7],"haR":[-107,21.5],"shL":[59.5,-100.7],"elL":[123,-28.1],"haL":[73.3,23.1],"hipR":[-37.8,32.2],"knR":[-126.5,101.8],"ftR":[-118.4,251.1],"hipL":[17.2,30.2],"knL":[-4.2,108.5],"ftL":[29.3,259.5]},{"rootY":60.9,"hips":[0,0],"chest":[-2.9,-76.8],"neck":[-2.9,-76.8],"head":[-3.9,-142],"shR":[-55.6,-105.2],"elR":[-134.6,-25.5],"haR":[-107.1,22.5],"shL":[59.1,-100.5],"elL":[122.6,-27.8],"haL":[73.4,23.9],"hipR":[-37.8,32.2],"knR":[-126.4,101.9],"ftR":[-118.3,251.2],"hipL":[17.1,30.6],"knL":[-4.2,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.2,-76.7],"neck":[-3.2,-76.7],"head":[-3.5,-142.3],"shR":[-55.9,-105.3],"elR":[-135.4,-25.9],"haR":[-107.6,22.9],"shL":[58.9,-100.1],"elL":[122.6,-27.6],"haL":[73.7,24.3],"hipR":[-37.7,32.3],"knR":[-126.2,102],"ftR":[-118.2,251.2],"hipL":[17.3,30.7],"knL":[-4.1,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.3,-76.6],"neck":[-3.3,-76.6],"head":[-3.2,-142.5],"shR":[-56.2,-105.4],"elR":[-136.3,-26.3],"haR":[-108,23.1],"shL":[58.7,-99.7],"elL":[122.4,-27.3],"haL":[73.7,25],"hipR":[-37.7,32.3],"knR":[-126.1,102],"ftR":[-117.9,251.2],"hipL":[17.3,30.8],"knL":[-4,108.7],"ftL":[29.4,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.4,-76.6],"neck":[-3.4,-76.6],"head":[-3,-142.7],"shR":[-56.2,-105.4],"elR":[-137,-26.7],"haR":[-108.1,23.1],"shL":[58.4,-99.6],"elL":[122.3,-27.4],"haL":[73.7,25.1],"hipR":[-37.7,32.4],"knR":[-125.9,102],"ftR":[-117.6,251],"hipL":[17.3,31],"knL":[-4,108.7],"ftL":[29.6,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-3.5,-76.5],"neck":[-3.5,-76.5],"head":[-2.8,-143],"shR":[-56.4,-105.5],"elR":[-137.7,-27],"haR":[-108.3,23.2],"shL":[58.3,-99.3],"elL":[122.1,-27],"haL":[73.7,25.6],"hipR":[-37.5,32.7],"knR":[-125.8,102.2],"ftR":[-117.4,251.1],"hipL":[17.6,31],"knL":[-3.9,108.7],"ftL":[29.8,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.5],"neck":[-3.6,-76.5],"head":[-3.1,-143.1],"shR":[-56.6,-105.4],"elR":[-138.5,-27.4],"haR":[-108.6,23.3],"shL":[58.3,-99.2],"elL":[122,-27],"haL":[73.8,25.7],"hipR":[-37.6,32.5],"knR":[-125.6,102.2],"ftR":[-117.3,251],"hipL":[17.5,31.3],"knL":[-3.9,108.8],"ftL":[30,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.7,-76.4],"neck":[-3.7,-76.4],"head":[-3.5,-143.3],"shR":[-56.9,-105.4],"elR":[-139.1,-27.6],"haR":[-108.9,23.5],"shL":[58.3,-98.9],"elL":[122,-26.6],"haL":[73.9,26.3],"hipR":[-37.6,32.6],"knR":[-125.4,102.3],"ftR":[-117.2,250.9],"hipL":[17.5,31.4],"knL":[-3.9,109],"ftL":[30.3,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.3],"neck":[-3.6,-76.3],"head":[-3.8,-143.4],"shR":[-57,-105.2],"elR":[-139.6,-27.7],"haR":[-109,23.6],"shL":[58.4,-99.1],"elL":[122.1,-26.7],"haL":[74.1,26.3],"hipR":[-37.4,32.7],"knR":[-125.1,102.5],"ftR":[-117,250.9],"hipL":[17.7,31.3],"knL":[-3.9,109],"ftL":[30.5,259.5]},{"rootY":60.6,"hips":[0,0],"chest":[-3.8,-76.3],"neck":[-3.8,-76.3],"head":[-5,-143.5],"shR":[-57.2,-105],"elR":[-140,-27.8],"haR":[-109.1,23.6],"shL":[58.1,-99.3],"elL":[122.2,-27],"haL":[74.2,26.1],"hipR":[-37.5,32.7],"knR":[-124.8,102.6],"ftR":[-116.9,251],"hipL":[17.7,31.6],"knL":[-4.1,108.9],"ftL":[30.4,259.4]},{"rootY":60.5,"hips":[0,0],"chest":[-4,-76.2],"neck":[-4,-76.2],"head":[-6,-143.6],"shR":[-57.7,-104.7],"elR":[-140.6,-27.8],"haR":[-109.4,23.8],"shL":[58,-99.5],"elL":[122.3,-27.1],"haL":[74.4,25.9],"hipR":[-37.6,32.6],"knR":[-124.6,102.8],"ftR":[-117,251.2],"hipL":[17.6,31.7],"knL":[-4.2,109.1],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.1,-76.2],"neck":[-4.1,-76.2],"head":[-7.3,-143.5],"shR":[-58.1,-104.3],"elR":[-141,-27.7],"haR":[-109.5,23.8],"shL":[57.8,-99.7],"elL":[122.4,-27.2],"haL":[74.4,25.9],"hipR":[-37.4,32.8],"knR":[-124.6,102.8],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.4,109.1],"ftL":[30.3,259.6]},{"rootY":60.5,"hips":[0,0],"chest":[-4.3,-76.1],"neck":[-4.3,-76.1],"head":[-8.5,-143.5],"shR":[-58.6,-104],"elR":[-141.3,-27.5],"haR":[-109.5,23.8],"shL":[57.7,-99.9],"elL":[122.6,-27.3],"haL":[74.6,25.7],"hipR":[-37.4,32.8],"knR":[-124.6,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.6],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.4,-76],"neck":[-4.4,-76],"head":[-9.6,-143.4],"shR":[-58.9,-103.7],"elR":[-141.4,-27.3],"haR":[-109.5,23.9],"shL":[57.6,-100],"elL":[122.8,-27.4],"haL":[74.7,25.5],"hipR":[-37.5,32.7],"knR":[-124.5,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.4,-75.9],"neck":[-4.4,-75.9],"head":[-10.1,-143.3],"shR":[-59,-103.3],"elR":[-141.2,-27],"haR":[-109.2,24.1],"shL":[57.4,-100.3],"elL":[123,-27.6],"haL":[74.9,25.4],"hipR":[-37.4,32.8],"knR":[-124.4,102.8],"ftR":[-117,251.1],"hipL":[17.8,31.7],"knL":[-4.3,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.6,-75.9],"neck":[-4.6,-75.9],"head":[-10.4,-143.3],"shR":[-59.4,-103.1],"elR":[-141.3,-26.9],"haR":[-109.3,24.2],"shL":[57.1,-100.3],"elL":[123.3,-27.6],"haL":[75.2,25.3],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.6],"knL":[-4.2,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-103],"elR":[-141.3,-26.6],"haR":[-109.1,24.1],"shL":[56.8,-100.3],"elL":[123.5,-27.5],"haL":[75.2,25.2],"hipR":[-37.3,32.9],"knR":[-124.4,102.9],"ftR":[-117.1,251.2],"hipL":[18,31.7],"knL":[-4.1,108.9],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-102.9],"elR":[-141,-26.5],"haR":[-108.9,24.1],"shL":[56.6,-100.3],"elL":[123.9,-27.6],"haL":[75.5,25.1],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.7],"knL":[-3.7,109],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.9,-75.8],"neck":[-4.9,-75.8],"head":[-11,-143.2],"shR":[-59.7,-102.9],"elR":[-140.6,-26.3],"haR":[-108.8,24.2],"shL":[56.4,-100.3],"elL":[123.9,-27.5],"haL":[75.5,25.1],"hipR":[-37.2,33],"knR":[-124.2,103],"ftR":[-116.9,251.3],"hipL":[18.2,31.6],"knL":[-3.6,108.9],"ftL":[30.5,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.2],"shR":[-59.7,-102.9],"elR":[-140.1,-26],"haR":[-108.6,24.4],"shL":[56.3,-100.3],"elL":[124.1,-27.5],"haL":[75.6,25.1],"hipR":[-37.1,33.2],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.3,31.6],"knL":[-3.4,109],"ftL":[30.4,259.7]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.3],"shR":[-59.7,-102.9],"elR":[-139.8,-25.9],"haR":[-108.4,24.3],"shL":[56.2,-100.3],"elL":[124.2,-27.5],"haL":[75.7,25],"hipR":[-37,33.3],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.5,31.6],"knL":[-3.4,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.8],"neck":[-5.1,-75.8],"head":[-10.7,-143.3],"shR":[-59.6,-103],"elR":[-139.3,-25.7],"haR":[-108.1,24.3],"shL":[56.2,-100.3],"elL":[124.3,-27.5],"haL":[75.7,24.8],"hipR":[-36.8,33.4],"knR":[-124.2,103.1],"ftR":[-116.8,251.3],"hipL":[18.6,31.5],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.9],"neck":[-5,-75.9],"head":[-10.5,-143.3],"shR":[-59.6,-103],"elR":[-138.8,-25.5],"haR":[-107.9,24.3],"shL":[56.2,-100.4],"elL":[124.4,-27.7],"haL":[75.7,24.7],"hipR":[-36.6,33.6],"knR":[-124.3,103.2],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.9],"neck":[-5.1,-75.9],"head":[-10.5,-143.4],"shR":[-59.6,-103.1],"elR":[-138.5,-25.5],"haR":[-107.8,24.1],"shL":[56.1,-100.4],"elL":[124.5,-27.6],"haL":[75.8,24.7],"hipR":[-36.6,33.6],"knR":[-124.4,103.3],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.4,109],"ftL":[30.6,259.7]}]},"walk":{"name":"walk","fps":30,"height":520,"groundY":344,"frameCount":86,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-84.9],"neck":[0.6,-84.9],"head":[1.5,-149.1],"shR":[-71.5,-100.6],"elR":[-174.2,-86.2],"haR":[-242.9,-76.5],"shL":[73.7,-103.6],"elL":[173,-89.6],"haL":[241.5,-80],"hipR":[-33.2,37.2],"knR":[-30.5,193.6],"ftR":[-27.9,342.4],"hipL":[34.2,37.2],"knL":[31.4,193.7],"ftL":[28.8,344]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-84.6],"neck":[-5.8,-84.6],"head":[-7.3,-148.9],"shR":[-78.3,-97],"elR":[-92.1,2.9],"haR":[-91.3,39.8],"shL":[66,-107.6],"elL":[61.1,-12.8],"haL":[72.2,55.4],"hipR":[-36.8,35],"knR":[-14.6,185.3],"ftR":[9.1,317.4],"hipL":[29.5,37.8],"knL":[5.4,172],"ftL":[-8.4,320.6]},{"rootY":2.9,"hips":[0,0],"chest":[-4.6,-84.8],"neck":[-4.6,-84.8],"head":[-6.4,-148.9],"shR":[-77,-97.1],"elR":[-90.6,2.9],"haR":[-90.1,41.3],"shL":[67.1,-107.8],"elL":[61.5,-12.6],"haL":[72.1,55.7],"hipR":[-36.8,35.1],"knR":[-14.7,184.1],"ftR":[9.3,311.3],"hipL":[29.5,37.9],"knL":[3.6,172.2],"ftL":[-9.9,321.8]},{"rootY":3.8,"hips":[0,0],"chest":[-4,-84.8],"neck":[-4,-84.8],"head":[-5.5,-148.8],"shR":[-76.3,-98.1],"elR":[-88.1,2.4],"haR":[-88.2,44.1],"shL":[68,-106.8],"elL":[62.4,-10.8],"haL":[72.4,57.7],"hipR":[-36.9,34.9],"knR":[-15.7,184],"ftR":[8.1,303.8],"hipL":[29.4,38],"knL":[2.8,171.7],"ftL":[-8.7,321.3]},{"rootY":3.6,"hips":[0,0],"chest":[-2.9,-84.9],"neck":[-2.9,-84.9],"head":[-3.4,-148.8],"shR":[-75.1,-98.6],"elR":[-84.8,2.6],"haR":[-85.7,48.5],"shL":[69.3,-106.4],"elL":[64.2,-9.3],"haL":[73.8,59.2],"hipR":[-35.5,36.1],"knR":[-18,188.2],"ftR":[4.3,295.5],"hipL":[31,36.9],"knL":[4.4,172],"ftL":[-7.6,320.9]},{"rootY":2,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[-2.9,-148.7],"shR":[-75,-99.1],"elR":[-82.8,2.7],"haR":[-83.9,53.1],"shL":[69.4,-105.9],"elL":[64.8,-7.9],"haL":[74.2,60.6],"hipR":[-35.7,36],"knR":[-22.7,190.8],"ftR":[-2.9,287.7],"hipL":[30.7,37],"knL":[3.4,174.4],"ftL":[-7.8,322.1]},{"rootY":0.6,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.6,-148.6],"shR":[-74.7,-99.1],"elR":[-80.9,3.3],"haR":[-82.7,58.1],"shL":[69.5,-105.9],"elL":[65.4,-7.2],"haL":[74.4,60.8],"hipR":[-35,36.7],"knR":[-26.4,192.9],"ftR":[-9.8,279.5],"hipL":[31.4,36.2],"knL":[3.5,177.4],"ftL":[-7.6,323.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2,-148.6],"shR":[-74.1,-99.1],"elR":[-78.9,3.7],"haR":[-81.5,61.9],"shL":[69.9,-105.9],"elL":[67.2,-6.7],"haL":[75.3,60.3],"hipR":[-34,37.5],"knR":[-28.4,193.1],"ftR":[-14.1,272.3],"hipL":[32.5,35.2],"knL":[4.8,179.6],"ftL":[-6.8,325.2]},{"rootY":-2.8,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.1,-148.5],"shR":[-74.1,-98.8],"elR":[-77.2,4.5],"haR":[-80.6,65.5],"shL":[69.8,-106.2],"elL":[68.2,-6.6],"haL":[75.5,58.5],"hipR":[-33.8,37.5],"knR":[-30.4,190.8],"ftR":[-17.9,269.4],"hipL":[32.7,35],"knL":[5.4,182.4],"ftL":[-6.7,326.7]},{"rootY":-4.2,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.2,-148.6],"shR":[-74.2,-98.2],"elR":[-76.1,5.4],"haR":[-79.6,68.6],"shL":[69.6,-106.8],"elL":[69.7,-6.8],"haL":[75.2,55.4],"hipR":[-33.4,37.5],"knR":[-30.9,187.3],"ftR":[-22.4,270.9],"hipL":[33.4,34.9],"knL":[6.5,184.6],"ftL":[-6.7,327.8]},{"rootY":-5.4,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[-2.3,-148.7],"shR":[-74.1,-98.1],"elR":[-74.9,5.4],"haR":[-78.3,70.4],"shL":[70,-106.9],"elL":[71.6,-6.7],"haL":[75.1,51.5],"hipR":[-33.2,37.3],"knR":[-29.2,182.8],"ftR":[-26.9,276.6],"hipL":[34,35.2],"knL":[7.5,186.4],"ftL":[-6.1,328.4]},{"rootY":-5.1,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-2.2,-148.7],"shR":[-73.8,-97.8],"elR":[-73.5,5.2],"haR":[-76.8,71.6],"shL":[70.3,-107.2],"elL":[73.8,-7],"haL":[74.8,46.6],"hipR":[-32.7,37.4],"knR":[-26.7,178.5],"ftR":[-31.6,285.8],"hipL":[34.6,35.1],"knL":[8.8,187.6],"ftL":[-5.5,328]},{"rootY":-4.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.6,-148.8],"shR":[-73.2,-97.5],"elR":[-72.2,4.5],"haR":[-75.2,71.9],"shL":[71,-107.5],"elL":[76.1,-7.4],"haL":[74.4,40.8],"hipR":[-32.4,37.3],"knR":[-23.7,175],"ftR":[-34.6,297],"hipL":[34.9,35.1],"knL":[10,188.7],"ftL":[-4.5,327.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1.1,-148.8],"shR":[-72.6,-97],"elR":[-70.6,3.9],"haR":[-73.4,72.2],"shL":[71.5,-108],"elL":[78.2,-7.9],"haL":[74.1,35.1],"hipR":[-31.6,37.7],"knR":[-21.3,172.9],"ftR":[-36,308.4],"hipL":[35.7,34.9],"knL":[11.8,189.4],"ftL":[-3.9,327.3]},{"rootY":-5.9,"hips":[0,0],"chest":[0.3,-84.9],"neck":[0.3,-84.9],"head":[-0.9,-148.8],"shR":[-72.2,-97.2],"elR":[-68.7,2.5],"haR":[-71.2,71.5],"shL":[72.1,-107.9],"elL":[80.4,-7.9],"haL":[74.3,30.1],"hipR":[-31,38.1],"knR":[-19.7,172.5],"ftR":[-34.5,317.3],"hipL":[36.3,34.6],"knL":[13.5,189.5],"ftL":[-3,327.1]},{"rootY":-5.8,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-0.8,-148.7],"shR":[-72.3,-97],"elR":[-67.3,1.5],"haR":[-69.4,70.8],"shL":[71.9,-108.1],"elL":[81.5,-8.2],"haL":[73.5,25.8],"hipR":[-30.8,38],"knR":[-19.2,172.2],"ftR":[-29.4,320.6],"hipL":[36.4,34.8],"knL":[14.7,189.3],"ftL":[-2.6,326.4]},{"rootY":-5.6,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1,-148.7],"shR":[-72.8,-96.8],"elR":[-66.3,0.7],"haR":[-68.1,70],"shL":[71.5,-108.2],"elL":[81.8,-8.5],"haL":[73.1,23.2],"hipR":[-30.7,37.8],"knR":[-19.9,171.4],"ftR":[-22.8,319.6],"hipL":[36.5,35],"knL":[15.6,187.8],"ftL":[-2.7,325]},{"rootY":-5.1,"hips":[0,0],"chest":[0.1,-84.9],"neck":[0.1,-84.9],"head":[-1.2,-148.7],"shR":[-72.6,-96.3],"elR":[-64.8,0.8],"haR":[-66.5,69.9],"shL":[71.7,-108.8],"elL":[82.3,-9],"haL":[73.1,22],"hipR":[-30.1,38.2],"knR":[-19.1,170.5],"ftR":[-17.6,317.9],"hipL":[37,34.8],"knL":[16.5,185.2],"ftL":[-2,322]},{"rootY":-3.5,"hips":[0,0],"chest":[0.4,-84.9],"neck":[0.4,-84.9],"head":[-1.1,-148.6],"shR":[-72.4,-95.7],"elR":[-63.5,1.1],"haR":[-65.3,70.1],"shL":[71.7,-109.4],"elL":[81.9,-9.6],"haL":[72.9,22.9],"hipR":[-30.3,37.9],"knR":[-16.6,171.5],"ftR":[-14.3,319.3],"hipL":[36.8,35],"knL":[17.2,185],"ftL":[-0.1,316.8]},{"rootY":-1.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-1.1,-148.5],"shR":[-72.4,-95.5],"elR":[-62.7,1.7],"haR":[-64.3,70.5],"shL":[71.6,-109.4],"elL":[81.4,-9.7],"haL":[73.3,25.7],"hipR":[-30,38.1],"knR":[-13.6,171.9],"ftR":[-12.1,320.6],"hipL":[37,34.8],"knL":[18.1,184.1],"ftL":[2.1,310.2]},{"rootY":-1.7,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-2.3,-148.3],"shR":[-73.3,-95.1],"elR":[-63.2,2.7],"haR":[-64.7,71.5],"shL":[70.7,-109.7],"elL":[79.4,-10],"haL":[73,30.5],"hipR":[-31.4,36.9],"knR":[-13.6,171.6],"ftR":[-11.5,320.3],"hipL":[35.8,35.8],"knL":[17.9,185.6],"ftL":[3.7,302.5]},{"rootY":-1.9,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.9,-148.2],"shR":[-73.9,-94.4],"elR":[-63.8,4.2],"haR":[-65.6,73.2],"shL":[69.9,-110.3],"elL":[76.7,-10.4],"haL":[73.1,36],"hipR":[-32,36.4],"knR":[-13,172.7],"ftR":[-10.9,320.7],"hipL":[35.2,35.9],"knL":[19.1,187.8],"ftL":[6.4,292.8]},{"rootY":-2.7,"hips":[0,0],"chest":[-1.1,-84.9],"neck":[-1.1,-84.9],"head":[-3.1,-148],"shR":[-73.8,-94.7],"elR":[-64.2,4.9],"haR":[-66.4,74.1],"shL":[70.1,-109.9],"elL":[75.1,-10],"haL":[74.3,42.8],"hipR":[-32.6,36],"knR":[-11.9,174.6],"ftR":[-9.1,321.3],"hipL":[34.7,36.6],"knL":[22.4,191.3],"ftL":[11.3,284.7]},{"rootY":-5,"hips":[0,0],"chest":[-0.8,-84.9],"neck":[-0.8,-84.9],"head":[-2.8,-148],"shR":[-73.6,-95.1],"elR":[-64.8,5.6],"haR":[-67.6,74.9],"shL":[70.5,-109.6],"elL":[73.7,-9.7],"haL":[75.5,48.8],"hipR":[-32.9,35.5],"knR":[-12.4,177.7],"ftR":[-8,323],"hipL":[34.3,37],"knL":[25.5,193.3],"ftL":[15.1,276.3]},{"rootY":-6.5,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.8,-148],"shR":[-74,-95.6],"elR":[-66.4,6],"haR":[-69.5,75.1],"shL":[70.3,-109.1],"elL":[72.4,-9.1],"haL":[76.7,53.7],"hipR":[-33.7,34.9],"knR":[-14.4,180.4],"ftR":[-7.9,324.6],"hipL":[33.6,37.4],"knL":[27.5,193],"ftL":[15.3,270]},{"rootY":-8.3,"hips":[0,0],"chest":[-1,-84.9],"neck":[-1,-84.9],"head":[-2,-148.2],"shR":[-73.7,-96.5],"elR":[-67.6,6],"haR":[-71.2,74.3],"shL":[70.8,-108.2],"elL":[71.9,-8.3],"haL":[78.2,57.5],"hipR":[-34.1,34.7],"knR":[-14.9,182.9],"ftR":[-7.1,326.2],"hipL":[33.2,37.5],"knL":[29.1,190.3],"ftL":[16.1,268.6]},{"rootY":-9.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.3,-148.4],"shR":[-73.6,-97.1],"elR":[-70.2,6.2],"haR":[-73.6,72.9],"shL":[71,-107.7],"elL":[71.4,-7.9],"haL":[78.5,59.4],"hipR":[-34.5,34.6],"knR":[-15.5,185.1],"ftR":[-6.6,327.2],"hipL":[32.8,37.1],"knL":[29.2,185.9],"ftL":[18.2,272.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-1.8,-148.6],"shR":[-74.1,-98.3],"elR":[-73.7,5.3],"haR":[-76.7,69.5],"shL":[70.7,-106.6],"elL":[70.9,-7.3],"haL":[78.9,60.8],"hipR":[-35.3,34.4],"knR":[-17.6,186.4],"ftR":[-6.6,326.8],"hipL":[32,37.5],"knL":[27.1,181.2],"ftL":[20.5,280.6]},{"rootY":-8.9,"hips":[0,0],"chest":[-1.8,-84.9],"neck":[-1.8,-84.9],"head":[-1.3,-148.7],"shR":[-74.2,-98.8],"elR":[-77.4,4.8],"haR":[-78.5,64.8],"shL":[70.6,-106],"elL":[70.7,-7.8],"haL":[78.8,60.6],"hipR":[-35.3,34.8],"knR":[-18.5,187.9],"ftR":[-6.5,326.4],"hipL":[31.9,37.2],"knL":[24.5,175.9],"ftL":[22.1,290.9]},{"rootY":-8.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-1.6,-148.8],"shR":[-74.7,-99.1],"elR":[-81.1,4.1],"haR":[-82.1,59.5],"shL":[70.1,-105.8],"elL":[69.6,-8.7],"haL":[78.1,59.9],"hipR":[-35.9,34.5],"knR":[-19.9,189],"ftR":[-6.9,326.2],"hipL":[31.2,37.4],"knL":[21.5,172.3],"ftL":[22.3,302.5]},{"rootY":-9.7,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.3,-148.9],"shR":[-75,-99.5],"elR":[-84.8,3],"haR":[-84.3,52.2],"shL":[69.8,-105.4],"elL":[68.7,-9.4],"haL":[77,59.2],"hipR":[-35.9,34.7],"knR":[-20.7,190.2],"ftR":[-6.9,327],"hipL":[31.1,37.2],"knL":[19,170.1],"ftL":[21.5,313.1]},{"rootY":-10.3,"hips":[0,0],"chest":[-3.1,-84.9],"neck":[-3.1,-84.9],"head":[-2.7,-149],"shR":[-75.3,-99.6],"elR":[-87.9,2],"haR":[-86.1,44.8],"shL":[69.5,-105.3],"elL":[67.2,-10.4],"haL":[75.4,58.3],"hipR":[-36.3,34.5],"knR":[-21.7,190.2],"ftR":[-7.9,326.8],"hipL":[30.6,37.6],"knL":[17,170.4],"ftL":[19.2,319.8]},{"rootY":-10.1,"hips":[0,0],"chest":[-3.4,-84.9],"neck":[-3.4,-84.9],"head":[-3.4,-148.9],"shR":[-75.5,-99.4],"elR":[-91.1,1],"haR":[-87.8,37.8],"shL":[69.2,-105.5],"elL":[65.8,-11.4],"haL":[73.7,57.3],"hipR":[-36.8,34.2],"knR":[-22.6,189.2],"ftR":[-8.2,325.6],"hipL":[29.9,37.9],"knL":[15.4,171],"ftL":[16.7,321.1]},{"rootY":-9.6,"hips":[0,0],"chest":[-3.3,-84.9],"neck":[-3.3,-84.9],"head":[-4.2,-149],"shR":[-75.4,-99.6],"elR":[-92.3,-0.2],"haR":[-88.5,31.6],"shL":[69.3,-105.3],"elL":[64.8,-11.7],"haL":[72.4,56.9],"hipR":[-36.9,34.3],"knR":[-23.3,187.4],"ftR":[-9.3,323.9],"hipL":[29.7,37.7],"knL":[14.3,171.1],"ftL":[13.6,319.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-3.5,-84.9],"neck":[-3.5,-84.9],"head":[-5,-148.9],"shR":[-75.5,-99.5],"elR":[-93.6,-1.1],"haR":[-89.6,26.8],"shL":[69.1,-105.3],"elL":[63.8,-11.5],"haL":[70.9,57.2],"hipR":[-37.3,34],"knR":[-24,184.9],"ftR":[-10.3,319.8],"hipL":[29.2,37.9],"knL":[13.3,171.6],"ftL":[11.7,320.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-4.4,-149],"shR":[-74.6,-99.6],"elR":[-93.2,-1.4],"haR":[-89.7,24.1],"shL":[70,-105.3],"elL":[64.2,-10.6],"haL":[70.6,58],"hipR":[-37.1,34.3],"knR":[-24.1,184.3],"ftR":[-10.9,314.2],"hipL":[29.3,37.6],"knL":[12.9,172.8],"ftL":[10.4,322.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[-4.2,-149],"shR":[-73.6,-99.5],"elR":[-91.9,-1.1],"haR":[-88.9,24.3],"shL":[71,-105.2],"elL":[64.5,-9.7],"haL":[70.5,59.1],"hipR":[-36.7,34.6],"knR":[-24.3,182.5],"ftR":[-12.4,308.4],"hipL":[29.8,37.2],"knL":[12.6,172.4],"ftL":[8.9,322.7]},{"rootY":-7.4,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-3.5,-149.1],"shR":[-72.7,-99.9],"elR":[-89.2,-0.6],"haR":[-87,26.8],"shL":[71.9,-104.6],"elL":[65.6,-7.9],"haL":[71.5,61],"hipR":[-36.6,34.5],"knR":[-24.9,183.9],"ftR":[-14.6,299.9],"hipL":[30.1,37.4],"knL":[13.7,172.9],"ftL":[9.2,322.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-0.5,-84.9],"neck":[-0.5,-84.9],"head":[-2.8,-149.1],"shR":[-72.3,-100.3],"elR":[-87,0.3],"haR":[-85.5,31.8],"shL":[72.5,-104.1],"elL":[66.8,-6.2],"haL":[72.7,62.8],"hipR":[-35.4,35.4],"knR":[-26.6,188],"ftR":[-18.5,291.9],"hipL":[31.4,36.4],"knL":[14.5,174.4],"ftL":[8.8,323.4]},{"rootY":-10.4,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-3,-149.1],"shR":[-72.4,-100.3],"elR":[-85.6,1.1],"haR":[-84.7,37.5],"shL":[72.5,-104],"elL":[67.2,-5.5],"haL":[73.5,63.1],"hipR":[-35.1,35.8],"knR":[-28.8,191.3],"ftR":[-23.9,283.9],"hipL":[31.8,36.3],"knL":[13.8,177.6],"ftL":[7.2,325.5]},{"rootY":-12.3,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-2.6,-149.2],"shR":[-71.7,-99.4],"elR":[-82.9,2.6],"haR":[-83,44.9],"shL":[72.8,-104.9],"elL":[68.6,-5.9],"haL":[74.8,61.5],"hipR":[-33.6,37.3],"knR":[-29.9,193.6],"ftR":[-26.2,276.7],"hipL":[33.2,34.9],"knL":[13.7,179.9],"ftL":[6.1,326.8]},{"rootY":-14.1,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-3.2,-149.2],"shR":[-72,-99.7],"elR":[-81.3,2.9],"haR":[-82.5,51],"shL":[72.6,-104.7],"elL":[70.3,-5.3],"haL":[76.2,60],"hipR":[-33,37.5],"knR":[-30.9,192.6],"ftR":[-26.5,272.1],"hipL":[34,34.3],"knL":[14.5,182.4],"ftL":[5.2,328.3]},{"rootY":-15.8,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-3.4,-149.3],"shR":[-72.3,-98.8],"elR":[-79.5,4.4],"haR":[-81.8,58.3],"shL":[72.1,-105.6],"elL":[71.6,-5.9],"haL":[76.7,56.1],"hipR":[-33,37.3],"knR":[-31.6,189.3],"ftR":[-27.6,271.8],"hipL":[34.1,34.5],"knL":[14.6,184.9],"ftL":[4.1,329.6]},{"rootY":-16.2,"hips":[0,0],"chest":[-0.5,-85],"neck":[-0.5,-85],"head":[-4,-149.3],"shR":[-72.6,-98.4],"elR":[-77.3,5.1],"haR":[-80.8,63.8],"shL":[71.9,-106],"elL":[73.6,-6],"haL":[77.3,51.5],"hipR":[-32.6,37.1],"knR":[-31,185.1],"ftR":[-29.4,276.7],"hipL":[34.6,34.4],"knL":[14.6,186.4],"ftL":[2.9,329.4]},{"rootY":-15.6,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-4,-149.3],"shR":[-72.6,-97.9],"elR":[-75.5,5.6],"haR":[-79.3,68.5],"shL":[71.9,-106.6],"elL":[76.1,-6.5],"haL":[78.2,45.2],"hipR":[-32.2,37.2],"knR":[-29,180.4],"ftR":[-30.6,285.1],"hipL":[35.1,34.5],"knL":[15.2,187.6],"ftL":[2.6,328.9]},{"rootY":-14.5,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-4.4,-149.4],"shR":[-72.7,-97.4],"elR":[-73.4,5.9],"haR":[-78.2,71.7],"shL":[71.9,-107.1],"elL":[78.4,-7],"haL":[78.7,38.4],"hipR":[-31.9,36.9],"knR":[-26.6,176.2],"ftR":[-32.3,295.7],"hipL":[35.4,34.7],"knL":[15.6,188.8],"ftL":[1.8,328.1]},{"rootY":-14.5,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[-3.7,-149.4],"shR":[-72.4,-97.1],"elR":[-71.2,5.5],"haR":[-76.2,73.4],"shL":[72.2,-107.5],"elL":[81.2,-7.6],"haL":[79.6,31.4],"hipR":[-30.9,37.2],"knR":[-23.9,174.2],"ftR":[-33.1,307.9],"hipL":[36.4,34.1],"knL":[16.6,189.1],"ftL":[1.7,327.2]},{"rootY":-15.2,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.8,-149.4],"shR":[-72.3,-96.9],"elR":[-69.3,4.8],"haR":[-74.1,73.8],"shL":[72.4,-107.7],"elL":[83.2,-8],"haL":[79.9,25],"hipR":[-30.4,37.4],"knR":[-21.9,173.5],"ftR":[-33.4,317.7],"hipL":[36.8,34.2],"knL":[17.5,189.6],"ftL":[1.5,327.4]},{"rootY":-15.1,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-3.4,-149.4],"shR":[-72.2,-96.5],"elR":[-67.8,3.9],"haR":[-72.3,73.1],"shL":[72.5,-108.1],"elL":[85.1,-8.6],"haL":[80.5,19.4],"hipR":[-30.3,37.2],"knR":[-20.3,173.7],"ftR":[-29.8,322.1],"hipL":[36.8,34.6],"knL":[18.4,189.5],"ftL":[2.1,326.7]},{"rootY":-15.1,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.6,-149.4],"shR":[-72.5,-96.4],"elR":[-66.4,2.7],"haR":[-70.1,71.6],"shL":[72.1,-108.3],"elL":[85.8,-8.9],"haL":[80.6,15.8],"hipR":[-29.8,37.5],"knR":[-20.7,173],"ftR":[-24.2,321.2],"hipL":[37.2,34.5],"knL":[18.7,187.6],"ftL":[1.4,325.2]},{"rootY":-13.9,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.5,-149.3],"shR":[-72.7,-96.1],"elR":[-65.1,1.7],"haR":[-67.9,69.9],"shL":[71.9,-108.6],"elL":[86.2,-9.3],"haL":[80.6,13.9],"hipR":[-29.3,37.6],"knR":[-20.2,171.8],"ftR":[-17.6,319.2],"hipL":[37.5,34.5],"knL":[19.3,185],"ftL":[2,321.7]},{"rootY":-12.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.2,-149.2],"shR":[-72.5,-95.8],"elR":[-63.9,1.1],"haR":[-66.1,68.8],"shL":[72,-108.8],"elL":[86,-9.5],"haL":[80.9,14.6],"hipR":[-29.8,37.4],"knR":[-17.5,171.6],"ftR":[-14,319.5],"hipL":[37.1,34.8],"knL":[19.6,183.2],"ftL":[2.9,316.7]},{"rootY":-10.5,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-2.8,-149.1],"shR":[-72.1,-95.8],"elR":[-62.5,0.9],"haR":[-63.8,68.4],"shL":[72.3,-108.8],"elL":[85.8,-9.5],"haL":[81,17.5],"hipR":[-29.4,37.7],"knR":[-14.2,172.7],"ftR":[-11.4,321.3],"hipL":[37.5,34.4],"knL":[20.5,182],"ftL":[4.5,309.4]},{"rootY":-9.5,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-3.3,-149.1],"shR":[-72.9,-95.3],"elR":[-62.6,1.6],"haR":[-63.6,69.3],"shL":[71.3,-109.1],"elL":[83.6,-9.8],"haL":[80.2,22],"hipR":[-30.9,36.4],"knR":[-13.2,172],"ftR":[-11,320.7],"hipL":[36.1,35.6],"knL":[20.8,184.3],"ftL":[6,301.5]},{"rootY":-9,"hips":[0,0],"chest":[-0.3,-84.9],"neck":[-0.3,-84.9],"head":[-3.5,-149],"shR":[-72.8,-95.1],"elR":[-62.4,2.8],"haR":[-63.6,70.8],"shL":[71.2,-109.1],"elL":[81.2,-9.9],"haL":[79.7,29.2],"hipR":[-32,35.6],"knR":[-12.4,171.9],"ftR":[-10,319.7],"hipL":[35.1,36.2],"knL":[22.7,187.6],"ftL":[8.9,291.4]},{"rootY":-9.3,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-2.6,-149],"shR":[-72.3,-95.2],"elR":[-62.4,4],"haR":[-64.4,72.6],"shL":[71.7,-109.1],"elL":[79.1,-9.7],"haL":[79.2,36.8],"hipR":[-32.3,35.3],"knR":[-10.4,173.6],"ftR":[-8.2,320],"hipL":[34.9,36.3],"knL":[26.5,190.8],"ftL":[13.6,281.9]},{"rootY":-10.3,"hips":[0,0],"chest":[0.6,-85],"neck":[0.6,-85],"head":[-1.5,-149.1],"shR":[-71.9,-96],"elR":[-62.4,4.4],"haR":[-65,73.6],"shL":[72.3,-108.4],"elL":[77.4,-8.9],"haL":[79.3,44.8],"hipR":[-32.9,34.9],"knR":[-9.3,176.1],"ftR":[-6.5,321.1],"hipL":[34.2,37],"knL":[30.5,193.5],"ftL":[17.1,272.7]},{"rootY":-11.7,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-1.1,-149.2],"shR":[-72.4,-96.9],"elR":[-63.7,4.6],"haR":[-66.9,73.9],"shL":[72.1,-107.5],"elL":[74.8,-7.8],"haL":[78.6,52],"hipR":[-33.2,34.8],"knR":[-10.6,178.9],"ftR":[-6.7,322.6],"hipL":[34,37.1],"knL":[32.5,192.8],"ftL":[16.5,266.6]},{"rootY":-13.4,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-1.1,-149.2],"shR":[-72.8,-97.6],"elR":[-65.6,5],"haR":[-69.2,73.7],"shL":[71.8,-107],"elL":[71.9,-7],"haL":[77.5,57.3],"hipR":[-33.4,34.5],"knR":[-12.3,181.7],"ftR":[-7.3,323.6],"hipL":[33.8,36.8],"knL":[32.5,190.2],"ftL":[15.7,265.5]},{"rootY":-14.8,"hips":[0,0],"chest":[-0.1,-85],"neck":[-0.1,-85],"head":[-0.3,-149.3],"shR":[-72.4,-98.4],"elR":[-67.4,4.9],"haR":[-71.1,72],"shL":[72.3,-106.1],"elL":[70.3,-6.3],"haL":[76.5,60.6],"hipR":[-34,34.6],"knR":[-13.7,184.4],"ftR":[-7.2,325.4],"hipL":[33.4,36.7],"knL":[32,186.3],"ftL":[18,269.7]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[0.2,-149.4],"shR":[-72.5,-98.9],"elR":[-70.6,4.7],"haR":[-73.9,69],"shL":[72.2,-105.7],"elL":[68.5,-6.1],"haL":[74.8,62.1],"hipR":[-34.9,34.3],"knR":[-15.7,186.1],"ftR":[-7.5,325.9],"hipL":[32.4,37.1],"knL":[30.4,181.9],"ftL":[20.6,278.2]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.8,-85],"neck":[-0.8,-85],"head":[0.2,-149.4],"shR":[-72.7,-99.6],"elR":[-74.1,3.7],"haR":[-77.2,64.1],"shL":[72,-105],"elL":[67.1,-6.1],"haL":[73.1,62.7],"hipR":[-35.1,34.6],"knR":[-17.3,187.9],"ftR":[-7.7,325.8],"hipL":[32.2,36.8],"knL":[27.7,176.9],"ftL":[22.6,289]},{"rootY":-16.2,"hips":[0,0],"chest":[-1.1,-85],"neck":[-1.1,-85],"head":[0.2,-149.3],"shR":[-72.8,-100.2],"elR":[-77.6,2.4],"haR":[-80.1,57.4],"shL":[71.8,-104.5],"elL":[65.7,-6.7],"haL":[71.3,62.3],"hipR":[-35.3,34.7],"knR":[-19.3,189.5],"ftR":[-8.6,326.2],"hipL":[31.9,36.9],"knL":[25.2,173.1],"ftL":[24.3,301.1]},{"rootY":-16.8,"hips":[0,0],"chest":[-1.6,-85],"neck":[-1.6,-85],"head":[0.2,-149.3],"shR":[-73.2,-100.4],"elR":[-81.1,1.2],"haR":[-82.5,50],"shL":[71.3,-104.3],"elL":[64,-7.8],"haL":[69.1,61.2],"hipR":[-36.1,34.2],"knR":[-21.2,189.9],"ftR":[-9.6,326.4],"hipL":[31,37.5],"knL":[23.3,171.1],"ftL":[25.8,312.6]},{"rootY":-18,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[-0.1,-149.2],"shR":[-73.3,-100.5],"elR":[-84.1,-0.3],"haR":[-84.5,42.5],"shL":[71.1,-104.2],"elL":[62.9,-8.9],"haL":[67.7,60.1],"hipR":[-36.4,34.3],"knR":[-22.5,189.9],"ftR":[-10.6,326.6],"hipL":[30.6,37.9],"knL":[21.6,171.1],"ftL":[26.5,320]},{"rootY":-17.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0.2,-149.1],"shR":[-73.5,-100.6],"elR":[-86.6,-1.7],"haR":[-86,34.9],"shL":[71,-104.2],"elL":[61.9,-9.5],"haL":[66.5,59.4],"hipR":[-36.8,34.2],"knR":[-23.9,188.7],"ftR":[-11.9,325.6],"hipL":[30.1,38.2],"knL":[20,171.8],"ftL":[26.2,321.9]},{"rootY":-16.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0,-149],"shR":[-73.4,-100.7],"elR":[-88.1,-3.1],"haR":[-86.7,28.3],"shL":[71,-104.1],"elL":[61.5,-9.5],"haL":[65.8,59.3],"hipR":[-37,34.1],"knR":[-24.8,186.7],"ftR":[-12.6,323.4],"hipL":[29.7,38.2],"knL":[19.3,172],"ftL":[24.1,320.9]},{"rootY":-15.4,"hips":[0,0],"chest":[-2.2,-84.9],"neck":[-2.2,-84.9],"head":[-0.2,-148.9],"shR":[-73.6,-100.9],"elR":[-89,-4.2],"haR":[-87.1,23.5],"shL":[70.8,-104],"elL":[61.2,-9.4],"haL":[65.4,59.4],"hipR":[-36.9,34.3],"knR":[-25.6,184.7],"ftR":[-14.5,319.2],"hipL":[29.8,37.7],"knL":[18.5,172.5],"ftL":[21.3,321.4]},{"rootY":-14.3,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[0,-148.8],"shR":[-73.5,-100.9],"elR":[-89.6,-4.6],"haR":[-87,20.3],"shL":[70.9,-103.9],"elL":[61.5,-8.7],"haL":[65.6,60.3],"hipR":[-37.2,34.1],"knR":[-26.5,182.7],"ftR":[-16.3,313.6],"hipL":[29.4,38.1],"knL":[17.4,173.2],"ftL":[18,323]},{"rootY":-14.2,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[0.3,-148.8],"shR":[-73.3,-100.8],"elR":[-89.1,-3.9],"haR":[-86.5,20.4],"shL":[71.2,-103.9],"elL":[62.3,-7.6],"haL":[66.5,61.4],"hipR":[-35.8,35.3],"knR":[-27.2,182.8],"ftR":[-19.9,307.7],"hipL":[31,37],"knL":[16.5,172.1],"ftL":[16.4,322.4]},{"rootY":-12.7,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[1,-148.7],"shR":[-73.4,-100.7],"elR":[-87.9,-2.8],"haR":[-85.2,23.1],"shL":[71.4,-103.9],"elL":[63.1,-6.5],"haL":[67.7,62.6],"hipR":[-35.6,35.1],"knR":[-28.2,185.2],"ftR":[-22.5,297.3],"hipL":[31.4,37],"knL":[16.8,171.5],"ftL":[15.1,321.3]},{"rootY":-14.3,"hips":[0,0],"chest":[-1.9,-85],"neck":[-1.9,-85],"head":[1.2,-148.7],"shR":[-73.8,-100.5],"elR":[-86.7,-1.1],"haR":[-84.3,28.3],"shL":[71.1,-104.1],"elL":[63.8,-5.7],"haL":[68.9,63],"hipR":[-35,35.7],"knR":[-30.8,189],"ftR":[-27.9,288.9],"hipL":[32.1,36.4],"knL":[16.2,173.2],"ftL":[12.9,321.8]},{"rootY":-16.1,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[1,-148.6],"shR":[-74,-100.2],"elR":[-85.7,0],"haR":[-83,34.2],"shL":[70.9,-104.3],"elL":[64.9,-5.5],"haL":[70.7,62.3],"hipR":[-34.2,36.5],"knR":[-32.5,192.3],"ftR":[-33,280.5],"hipL":[32.7,35.6],"knL":[15.2,176.1],"ftL":[10.6,323.6]},{"rootY":-17.9,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[1.1,-148.7],"shR":[-73.8,-99.9],"elR":[-84,1],"haR":[-81.5,40.9],"shL":[71,-104.6],"elL":[66.7,-5.4],"haL":[72.4,60.8],"hipR":[-33,37.4],"knR":[-33,193.8],"ftR":[-33.9,273],"hipL":[33.9,34.3],"knL":[15,178.6],"ftL":[9,324.9]},{"rootY":-20,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[0.6,-148.7],"shR":[-73.8,-99.6],"elR":[-81.6,2.1],"haR":[-80.6,48.1],"shL":[70.7,-105.1],"elL":[68.3,-5.5],"haL":[73.8,58.1],"hipR":[-33.8,36.7],"knR":[-32.5,191.4],"ftR":[-31.2,268.3],"hipL":[33.1,34.9],"knL":[14.4,181.8],"ftL":[8.7,326.9]},{"rootY":-21.5,"hips":[0,0],"chest":[-2.1,-85],"neck":[-2.1,-85],"head":[-0.1,-148.8],"shR":[-74.1,-98.8],"elR":[-80,3.8],"haR":[-80.1,55.7],"shL":[70.3,-105.9],"elL":[70.2,-6],"haL":[75,54.2],"hipR":[-32.7,37.4],"knR":[-32.6,189],"ftR":[-32.6,268],"hipL":[34.5,34.3],"knL":[15.4,184.5],"ftL":[6.7,328.9]},{"rootY":-22.3,"hips":[0,0],"chest":[-1.5,-85],"neck":[-1.5,-85],"head":[0.3,-148.9],"shR":[-73.7,-98.3],"elR":[-77.9,5],"haR":[-78.7,61.9],"shL":[70.9,-106.4],"elL":[73.2,-6.4],"haL":[76.4,49.9],"hipR":[-32.6,37.1],"knR":[-29.9,184.3],"ftR":[-31.3,272.9],"hipL":[34.7,34.4],"knL":[16,186.2],"ftL":[6.3,329.2]},{"rootY":-21.7,"hips":[0,0],"chest":[-1.2,-85],"neck":[-1.2,-85],"head":[0.3,-149],"shR":[-73.6,-97.8],"elR":[-75.4,5.8],"haR":[-77.2,67.4],"shL":[71,-107],"elL":[75.3,-6.8],"haL":[77.2,44.4],"hipR":[-31.7,37.3],"knR":[-27.2,180],"ftR":[-31.3,281.7],"hipL":[35.6,34.2],"knL":[16.6,187],"ftL":[5.2,328]},{"rootY":-21.9,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[0.6,-149],"shR":[-73.5,-97.2],"elR":[-72.8,6.4],"haR":[-75.9,71.3],"shL":[71.1,-107.5],"elL":[77.5,-7.4],"haL":[78,37.9],"hipR":[-30.8,37.7],"knR":[-24.8,177.1],"ftR":[-32.6,293.8],"hipL":[36.5,33.5],"knL":[17.3,187.9],"ftL":[4,327.5]},{"rootY":-21.1,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[1.3,-149.1],"shR":[-72.6,-97],"elR":[-70.1,6.1],"haR":[-73.3,73.6],"shL":[72.1,-107.7],"elL":[80,-7.7],"haL":[79,32.1],"hipR":[-30.2,37.9],"knR":[-21.6,174.9],"ftR":[-30.6,306.5],"hipL":[37,33.3],"knL":[18,188.4],"ftL":[4.2,326.4]},{"rootY":-21.2,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[0.5,-149.1],"shR":[-72.9,-97.7],"elR":[-68.3,4.7],"haR":[-71.5,73.6],"shL":[71.9,-107.3],"elL":[81.1,-7.4],"haL":[79.1,27],"hipR":[-30.8,37.2],"knR":[-19.9,174],"ftR":[-27.3,317.9],"hipL":[36.4,34.9],"knL":[18.4,190.3],"ftL":[3.9,326]},{"rootY":-22,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.8,-149.1],"shR":[-72.6,-97.1],"elR":[-66,4.1],"haR":[-69,73.4],"shL":[72.2,-107.8],"elL":[82.2,-8],"haL":[79.3,21.9],"hipR":[-31.6,36.4],"knR":[-17.9,174],"ftR":[-20.8,322.6],"hipL":[35.6,35.8],"knL":[19,191.4],"ftL":[3.9,326.3]},{"rootY":-22.4,"hips":[0,0],"chest":[0.5,-85],"neck":[0.5,-85],"head":[0.8,-149],"shR":[-72.5,-96.8],"elR":[-64,2.7],"haR":[-65.9,71.7],"shL":[72.3,-107.9],"elL":[83.1,-8.2],"haL":[79.8,18.9],"hipR":[-30.8,37],"knR":[-16.7,174.3],"ftR":[-14,322.4],"hipL":[36.3,35.6],"knL":[19.5,190.4],"ftL":[3,325.1]},{"rootY":-20.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.5,-148.9],"shR":[-72.8,-96.8],"elR":[-62.6,1],"haR":[-64.4,69.7],"shL":[72,-108.2],"elL":[82.6,-8.4],"haL":[79.2,17.9],"hipR":[-29.2,38],"knR":[-14.7,174.5],"ftR":[-7.3,321.6],"hipL":[37.5,34.7],"knL":[20.3,188.1],"ftL":[2.9,321.6]},{"rootY":-19.4,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.6,-148.9],"shR":[-72.7,-96.4],"elR":[-61.1,0.3],"haR":[-62.2,68],"shL":[72,-108.3],"elL":[81.9,-8.5],"haL":[79.2,18.8],"hipR":[-31,36.5],"knR":[-11.8,174.2],"ftR":[-3.1,321.5],"hipL":[35.9,36.1],"knL":[20.7,189],"ftL":[5,317.3]},{"rootY":-17.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.4,-148.8],"shR":[-72.8,-96.2],"elR":[-60,-0.1],"haR":[-61.3,67.6],"shL":[72,-108.5],"elL":[81.1,-8.8],"haL":[79.6,21.5],"hipR":[-30.7,36.6],"knR":[-8.1,173.7],"ftR":[-0.7,322.2],"hipL":[36.2,35.8],"knL":[21.8,188.1],"ftL":[6.5,309.6]}]},"wave":{"name":"wave","fps":30,"height":520,"groundY":284,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[3.1,-86],"neck":[3.7,-146.1],"head":[2.6,-177.8],"shR":[61.2,-143.1],"elR":[139.1,-124.1],"haR":[222.8,-109],"shL":[-55.1,-141.8],"elL":[-130,-112.1],"haL":[-215.5,-84.1],"hipR":[29.3,7.8],"knR":[37.3,164],"ftR":[48.3,283.2],"hipL":[-28.9,9.2],"knL":[-38.3,165.3],"ftL":[-49.4,284.2]},{"rootY":0,"hips":[0,0],"chest":[3,-86],"neck":[3.4,-146.1],"head":[2.3,-177.8],"shR":[61,-143.2],"elR":[139,-124.5],"haR":[222.7,-109.5],"shL":[-55.3,-141.7],"elL":[-130.2,-111.9],"haL":[-215.6,-83.7],"hipR":[29.3,7.7],"knR":[37.4,163.9],"ftR":[48.2,283.1],"hipL":[-28.8,9.3],"knL":[-38.5,165.3],"ftL":[-49.7,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.1,-146.1],"head":[1.8,-177.8],"shR":[60.6,-143.5],"elR":[138.7,-125.1],"haR":[222.4,-110.6],"shL":[-55.6,-141.4],"elL":[-130.5,-111.5],"haL":[-215.9,-83.2],"hipR":[29.3,7.6],"knR":[37.5,163.8],"ftR":[48,283],"hipL":[-28.8,9.4],"knL":[-38.8,165.4],"ftL":[-50.2,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[2.7,-85.9],"neck":[2.7,-146.1],"head":[1.3,-177.8],"shR":[60.2,-143.8],"elR":[138.4,-125.9],"haR":[222.2,-112],"shL":[-56,-141.2],"elL":[-130.8,-111.1],"haL":[-216.2,-82.6],"hipR":[29.3,7.5],"knR":[37.4,163.7],"ftR":[47.7,282.9],"hipL":[-28.8,9.5],"knL":[-39.1,165.5],"ftL":[-50.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-85.9],"neck":[2.3,-146.2],"head":[0.8,-177.8],"shR":[59.9,-144.2],"elR":[138.1,-126.8],"haR":[222.1,-113.4],"shL":[-56.4,-141],"elL":[-131,-110.6],"haL":[-216.3,-81.9],"hipR":[29.3,7.5],"knR":[37.1,163.7],"ftR":[47.2,282.9],"hipL":[-28.8,9.5],"knL":[-39.4,165.5],"ftL":[-51.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.9],"neck":[2,-146.2],"head":[0.4,-177.8],"shR":[59.5,-144.6],"elR":[138,-127.7],"haR":[222,-114.9],"shL":[-56.6,-140.8],"elL":[-131.1,-110.1],"haL":[-216.4,-81.1],"hipR":[29.4,7.5],"knR":[36.9,163.7],"ftR":[46.8,282.9],"hipL":[-28.8,9.5],"knL":[-39.6,165.5],"ftL":[-51.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[1.8,-146.2],"head":[0.1,-177.8],"shR":[59.3,-144.9],"elR":[137.8,-128.6],"haR":[222,-116.3],"shL":[-56.8,-140.6],"elL":[-131.2,-109.6],"haL":[-216.3,-80.2],"hipR":[29.4,7.4],"knR":[36.8,163.7],"ftR":[46.5,282.9],"hipL":[-28.8,9.5],"knL":[-39.8,165.5],"ftL":[-51.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-85.9],"neck":[1.5,-146.2],"head":[-0.3,-177.9],"shR":[59,-145.3],"elR":[137.6,-129.4],"haR":[221.9,-117.5],"shL":[-57.1,-140.4],"elL":[-131.3,-109.1],"haL":[-216.3,-79.2],"hipR":[29.4,7.4],"knR":[36.5,163.7],"ftR":[46.1,283],"hipL":[-28.8,9.5],"knL":[-39.9,165.5],"ftL":[-52,284.4]},{"rootY":0,"hips":[0,0],"chest":[2.2,-86],"neck":[1.2,-146.3],"head":[-0.6,-177.9],"shR":[58.6,-145.6],"elR":[137.3,-130],"haR":[221.7,-118.4],"shL":[-57.4,-140.4],"elL":[-131.5,-108.8],"haL":[-216.3,-78.4],"hipR":[29.3,7.5],"knR":[36,163.8],"ftR":[45.5,283.1],"hipL":[-28.8,9.5],"knL":[-40.1,165.4],"ftL":[-52.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[2,-86],"neck":[0.9,-146.3],"head":[-1,-177.9],"shR":[58.3,-146],"elR":[137,-130.6],"haR":[221.4,-119.1],"shL":[-57.7,-140.4],"elL":[-131.7,-108.4],"haL":[-216.3,-77.8],"hipR":[29.3,7.6],"knR":[35.7,163.9],"ftR":[45,283.2],"hipL":[-28.8,9.4],"knL":[-40.3,165.4],"ftL":[-52.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.9,-86],"neck":[0.6,-146.3],"head":[-1.4,-177.9],"shR":[57.9,-146.3],"elR":[136.6,-131],"haR":[221,-119.6],"shL":[-58,-140.3],"elL":[-131.9,-108.2],"haL":[-216.5,-77.3],"hipR":[29.3,7.5],"knR":[35.7,163.9],"ftR":[44.8,283.2],"hipL":[-28.8,9.4],"knL":[-40.4,165.4],"ftL":[-52.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.7,-86],"neck":[0.2,-146.3],"head":[-1.8,-177.9],"shR":[57.5,-146.5],"elR":[136.3,-131.3],"haR":[220.7,-120],"shL":[-58.3,-140.3],"elL":[-132.2,-108.1],"haL":[-216.7,-77],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[44.7,283.2],"hipL":[-28.8,9.5],"knL":[-40.5,165.4],"ftL":[-52.7,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.6,-86.1],"neck":[-0.1,-146.3],"head":[-2.2,-177.9],"shR":[57.2,-146.8],"elR":[136,-131.7],"haR":[220.4,-120.4],"shL":[-58.6,-140.3],"elL":[-132.5,-108.1],"haL":[-217,-76.9],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[44.6,283.2],"hipL":[-28.8,9.5],"knL":[-40.6,165.5],"ftL":[-52.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.5,-86.2],"neck":[-0.3,-146.3],"head":[-2.6,-177.9],"shR":[56.9,-147],"elR":[135.7,-132.1],"haR":[220.2,-120.8],"shL":[-58.9,-140.3],"elL":[-132.7,-108.1],"haL":[-217.3,-76.9],"hipR":[29.3,7.5],"knR":[35.7,163.8],"ftR":[44.6,283.2],"hipL":[-28.8,9.5],"knL":[-40.6,165.4],"ftL":[-52.9,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.4,-86.2],"neck":[-0.5,-146.4],"head":[-2.9,-178],"shR":[56.6,-147.2],"elR":[135.5,-132.6],"haR":[220.2,-121.4],"shL":[-59.1,-140.2],"elL":[-133,-108.2],"haL":[-217.5,-77],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.7,283.1],"hipL":[-28.8,9.5],"knL":[-40.6,165.5],"ftL":[-52.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.3,-86.3],"neck":[-0.7,-146.4],"head":[-3.1,-178],"shR":[56.5,-147.3],"elR":[135.4,-133],"haR":[220.2,-122],"shL":[-59.2,-140.2],"elL":[-133.1,-108.2],"haL":[-217.7,-77],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.8,283.1],"hipL":[-28.8,9.5],"knL":[-40.5,165.5],"ftL":[-52.8,284.2]},{"rootY":0,"hips":[0,0],"chest":[1.2,-86.4],"neck":[-0.8,-146.4],"head":[-3.3,-178],"shR":[56.3,-147.5],"elR":[135.3,-133.5],"haR":[220.1,-122.6],"shL":[-59.3,-140.1],"elL":[-133.2,-108.2],"haL":[-217.8,-77.1],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.9,283.1],"hipL":[-28.8,9.5],"knL":[-40.4,165.5],"ftL":[-52.6,284.2]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.4],"neck":[-0.9,-146.4],"head":[-3.5,-178],"shR":[56.1,-147.7],"elR":[135.2,-133.9],"haR":[220,-123],"shL":[-59.5,-140.2],"elL":[-133.3,-108.2],"haL":[-217.9,-77],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[45.2,283.1],"hipL":[-28.8,9.5],"knL":[-40.3,165.5],"ftL":[-52.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.4],"neck":[-1,-146.4],"head":[-3.6,-178],"shR":[55.9,-147.9],"elR":[135,-134.2],"haR":[219.7,-123.2],"shL":[-59.6,-140.2],"elL":[-133.4,-108.3],"haL":[-217.9,-76.9],"hipR":[29.3,7.5],"knR":[36,163.8],"ftR":[45.5,283],"hipL":[-28.8,9.5],"knL":[-40.3,165.5],"ftL":[-52.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.4],"neck":[-1.1,-146.4],"head":[-3.7,-177.9],"shR":[55.7,-148.2],"elR":[134.8,-134.4],"haR":[219.4,-123.1],"shL":[-59.6,-140.4],"elL":[-133.5,-108.3],"haL":[-217.9,-76.7],"hipR":[29.3,7.5],"knR":[36.1,163.8],"ftR":[45.7,283],"hipL":[-28.8,9.5],"knL":[-40.2,165.5],"ftL":[-52,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.2,-146.4],"head":[-3.9,-177.9],"shR":[55.6,-148.5],"elR":[134.6,-134.4],"haR":[219,-122.8],"shL":[-59.7,-140.5],"elL":[-133.5,-108.2],"haL":[-217.8,-76.5],"hipR":[29.3,7.5],"knR":[36.2,163.8],"ftR":[46,283],"hipL":[-28.8,9.5],"knL":[-40,165.5],"ftL":[-51.8,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.2,-146.4],"head":[-4,-177.9],"shR":[55.4,-148.7],"elR":[134.3,-134.4],"haR":[218.6,-122.2],"shL":[-59.8,-140.6],"elL":[-133.4,-108.1],"haL":[-217.7,-76.1],"hipR":[29.3,7.5],"knR":[36.4,163.8],"ftR":[46.3,283],"hipL":[-28.8,9.5],"knL":[-39.9,165.5],"ftL":[-51.5,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.3,-146.4],"head":[-4,-178],"shR":[55.3,-148.8],"elR":[134.1,-134.1],"haR":[218.2,-121.4],"shL":[-59.8,-140.7],"elL":[-133.4,-107.9],"haL":[-217.5,-75.5],"hipR":[29.3,7.5],"knR":[36.5,163.8],"ftR":[46.5,283],"hipL":[-28.8,9.5],"knL":[-39.7,165.6],"ftL":[-51.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.6],"neck":[-1.3,-146.5],"head":[-4.1,-178],"shR":[55.2,-148.8],"elR":[133.9,-133.8],"haR":[217.8,-120.6],"shL":[-59.9,-140.8],"elL":[-133.3,-107.7],"haL":[-217.3,-75],"hipR":[29.3,7.5],"knR":[36.6,163.8],"ftR":[46.6,283],"hipL":[-28.8,9.5],"knL":[-39.5,165.6],"ftL":[-51.1,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.6],"neck":[-1.2,-146.5],"head":[-4.1,-178],"shR":[55.1,-148.8],"elR":[133.7,-133.5],"haR":[217.4,-119.8],"shL":[-59.9,-140.8],"elL":[-133.2,-107.4],"haL":[-217.1,-74.6],"hipR":[29.3,7.5],"knR":[36.6,163.8],"ftR":[46.8,283],"hipL":[-28.8,9.5],"knL":[-39.4,165.6],"ftL":[-50.9,284.2]},{"rootY":-0.1,"hips":[0,0],"chest":[1.2,-86.6],"neck":[-1.1,-146.5],"head":[-4,-178],"shR":[55.2,-148.7],"elR":[133.7,-133.2],"haR":[217.2,-119.3],"shL":[-59.8,-140.7],"elL":[-133.1,-107.2],"haL":[-216.8,-74.3],"hipR":[29.4,7.5],"knR":[37,163.8],"ftR":[47.2,282.9],"hipL":[-28.8,9.5],"knL":[-39.2,165.6],"ftL":[-50.7,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1.3,-86.5],"neck":[-0.9,-146.5],"head":[-3.9,-178],"shR":[55.4,-148.5],"elR":[133.8,-132.9],"haR":[217.1,-118.9],"shL":[-59.6,-140.7],"elL":[-132.9,-107.2],"haL":[-216.6,-74.2],"hipR":[29.4,7.4],"knR":[37.7,163.7],"ftR":[47.8,282.9],"hipL":[-28.7,9.6],"knL":[-39,165.7],"ftL":[-50.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[1.4,-86.5],"neck":[-0.7,-146.4],"head":[-3.6,-178],"shR":[55.6,-148.3],"elR":[134,-132.8],"haR":[217.2,-118.8],"shL":[-59.4,-140.8],"elL":[-132.7,-107.4],"haL":[-216.5,-74.5],"hipR":[29.4,7.4],"knR":[38.3,163.6],"ftR":[48.5,282.8],"hipL":[-28.7,9.6],"knL":[-38.9,165.7],"ftL":[-50,284.5]},{"rootY":-0.2,"hips":[0,0],"chest":[1.4,-86.4],"neck":[-0.5,-146.4],"head":[-3.4,-177.9],"shR":[55.7,-148.3],"elR":[134.1,-132.8],"haR":[217.2,-118.8],"shL":[-59.2,-141],"elL":[-132.7,-107.8],"haL":[-216.5,-75.2],"hipR":[29.4,7.4],"knR":[38.7,163.6],"ftR":[48.9,282.8],"hipL":[-28.8,9.5],"knL":[-38.9,165.7],"ftL":[-49.7,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.5,-86.4],"neck":[-0.3,-146.4],"head":[-3.2,-177.9],"shR":[55.8,-148.5],"elR":[134.2,-133],"haR":[217.2,-119],"shL":[-59.1,-141.2],"elL":[-132.7,-108.3],"haL":[-216.7,-76.1],"hipR":[29.3,7.5],"knR":[39,163.7],"ftR":[49.3,282.9],"hipL":[-28.8,9.5],"knL":[-38.8,165.6],"ftL":[-49.4,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.5,-86.3],"neck":[-0.2,-146.4],"head":[-3,-177.9],"shR":[56,-148.5],"elR":[134.4,-133.1],"haR":[217.5,-119.3],"shL":[-58.9,-141.2],"elL":[-132.7,-108.8],"haL":[-216.9,-77.1],"hipR":[29.3,7.5],"knR":[39.3,163.7],"ftR":[49.9,282.9],"hipL":[-28.8,9.4],"knL":[-38.7,165.6],"ftL":[-48.9,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.6,-86.3],"neck":[0,-146.4],"head":[-2.7,-178],"shR":[56.3,-148.3],"elR":[134.7,-133.1],"haR":[217.9,-119.6],"shL":[-58.7,-141.3],"elL":[-132.7,-109.3],"haL":[-217.1,-78.2],"hipR":[29.3,7.6],"knR":[39.6,163.7],"ftR":[50.4,282.9],"hipL":[-28.8,9.4],"knL":[-38.3,165.6],"ftL":[-48.5,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.7,-86.3],"neck":[0.2,-146.4],"head":[-2.5,-178],"shR":[56.6,-148.2],"elR":[135.1,-133.1],"haR":[218.3,-119.9],"shL":[-58.5,-141.3],"elL":[-132.7,-109.8],"haL":[-217.3,-79.1],"hipR":[29.3,7.6],"knR":[39.8,163.7],"ftR":[50.9,282.9],"hipL":[-28.8,9.4],"knL":[-38,165.6],"ftL":[-48,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.8,-86.3],"neck":[0.3,-146.5],"head":[-2.3,-178.1],"shR":[56.8,-148.1],"elR":[135.4,-133],"haR":[218.7,-120],"shL":[-58.4,-141.3],"elL":[-132.7,-110],"haL":[-217.4,-79.8],"hipR":[29.3,7.6],"knR":[39.9,163.7],"ftR":[51.3,282.8],"hipL":[-28.8,9.4],"knL":[-37.5,165.5],"ftL":[-47.5,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.9,-86.3],"neck":[0.5,-146.6],"head":[-2,-178.2],"shR":[57.1,-148],"elR":[135.7,-132.8],"haR":[219.2,-119.8],"shL":[-58.2,-141.2],"elL":[-132.6,-110.2],"haL":[-217.4,-80.3],"hipR":[29.3,7.7],"knR":[40,163.8],"ftR":[51.8,282.8],"hipL":[-28.8,9.3],"knL":[-37.1,165.5],"ftL":[-47,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2,-86.3],"neck":[0.7,-146.6],"head":[-1.8,-178.2],"shR":[57.4,-147.7],"elR":[136,-132.4],"haR":[219.8,-119.6],"shL":[-58,-141.1],"elL":[-132.5,-110.2],"haL":[-217.4,-80.7],"hipR":[29.3,7.7],"knR":[40.1,163.8],"ftR":[52.2,282.8],"hipL":[-28.8,9.3],"knL":[-36.7,165.5],"ftL":[-46.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.1,-86.3],"neck":[0.8,-146.7],"head":[-1.5,-178.3],"shR":[57.7,-147.4],"elR":[136.4,-132.1],"haR":[220.4,-119.2],"shL":[-57.9,-141],"elL":[-132.4,-110.4],"haL":[-217.5,-81.1],"hipR":[29.3,7.8],"knR":[40.3,163.8],"ftR":[52.7,282.8],"hipL":[-28.8,9.2],"knL":[-36.5,165.4],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.2,-86.3],"neck":[1,-146.7],"head":[-1.3,-178.3],"shR":[57.9,-147.3],"elR":[136.6,-131.8],"haR":[220.7,-118.6],"shL":[-57.7,-141.1],"elL":[-132.4,-110.6],"haL":[-217.4,-81.6],"hipR":[29.2,7.8],"knR":[40.6,163.8],"ftR":[53.1,282.8],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.3],"neck":[1.1,-146.7],"head":[-1,-178.3],"shR":[58.1,-147.3],"elR":[136.8,-131.4],"haR":[221,-118],"shL":[-57.6,-141.2],"elL":[-132.3,-110.8],"haL":[-217.4,-82.1],"hipR":[29.2,7.8],"knR":[40.9,163.8],"ftR":[53.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.2,165.4],"ftL":[-45.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.3,-146.7],"head":[-0.8,-178.3],"shR":[58.3,-147.1],"elR":[137,-131.1],"haR":[221.3,-117.5],"shL":[-57.4,-141.3],"elL":[-132.2,-111.2],"haL":[-217.4,-82.7],"hipR":[29.2,7.9],"knR":[41.1,163.9],"ftR":[53.6,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-45.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.2],"neck":[1.4,-146.6],"head":[-0.6,-178.3],"shR":[58.5,-146.9],"elR":[137.2,-130.7],"haR":[221.6,-117],"shL":[-57.3,-141.3],"elL":[-132.2,-111.4],"haL":[-217.4,-83.3],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.8,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-45,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.2],"neck":[1.5,-146.6],"head":[-0.4,-178.3],"shR":[58.7,-146.7],"elR":[137.4,-130.3],"haR":[221.9,-116.6],"shL":[-57.1,-141.3],"elL":[-132.2,-111.7],"haL":[-217.5,-84],"hipR":[29.2,7.9],"knR":[41.3,163.9],"ftR":[54,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.7,-146.6],"head":[-0.2,-178.3],"shR":[58.9,-146.5],"elR":[137.6,-130],"haR":[222.2,-116.1],"shL":[-57,-141.4],"elL":[-132.1,-112],"haL":[-217.5,-84.5],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54.1,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.8,-146.6],"head":[0,-178.3],"shR":[59.1,-146.3],"elR":[137.8,-129.7],"haR":[222.5,-115.6],"shL":[-56.8,-141.5],"elL":[-132,-112.3],"haL":[-217.5,-84.9],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[2,-146.6],"head":[0.2,-178.3],"shR":[59.3,-146.1],"elR":[138,-129.3],"haR":[222.8,-115.2],"shL":[-56.6,-141.7],"elL":[-131.9,-112.6],"haL":[-217.3,-85.3],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.1],"neck":[2.2,-146.6],"head":[0.4,-178.2],"shR":[59.6,-146],"elR":[138.2,-129],"haR":[223.1,-114.7],"shL":[-56.4,-141.8],"elL":[-131.7,-112.8],"haL":[-217.1,-85.5],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-86.1],"neck":[2.4,-146.5],"head":[0.7,-178.2],"shR":[59.9,-145.8],"elR":[138.5,-128.7],"haR":[223.5,-114.2],"shL":[-56.2,-141.9],"elL":[-131.5,-112.9],"haL":[-216.9,-85.8],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.6,-86.1],"neck":[2.7,-146.5],"head":[1,-178.2],"shR":[60.2,-145.6],"elR":[138.8,-128.4],"haR":[223.8,-113.9],"shL":[-55.9,-141.8],"elL":[-131.2,-112.9],"haL":[-216.7,-86],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.1,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.7,-86],"neck":[2.9,-146.5],"head":[1.2,-178.2],"shR":[60.4,-145.4],"elR":[139,-128],"haR":[224.2,-113.5],"shL":[-55.7,-141.8],"elL":[-131,-112.9],"haL":[-216.5,-86.1],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-44.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.7,-86],"neck":[3,-146.5],"head":[1.4,-178.2],"shR":[60.6,-145.1],"elR":[139.3,-127.7],"haR":[224.5,-113.1],"shL":[-55.6,-141.8],"elL":[-130.9,-112.9],"haL":[-216.4,-86.1],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.9,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-44.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.2,-146.5],"head":[1.6,-178.2],"shR":[60.8,-144.8],"elR":[139.4,-127.3],"haR":[224.8,-112.6],"shL":[-55.5,-141.8],"elL":[-130.8,-113],"haL":[-216.3,-86.2],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.7,282.9],"hipL":[-28.8,9.1],"knL":[-36.1,165.3],"ftL":[-45,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.2,-146.5],"head":[1.8,-178.2],"shR":[60.9,-144.7],"elR":[139.5,-127],"haR":[225,-112.2],"shL":[-55.4,-141.8],"elL":[-130.7,-113],"haL":[-216.2,-86.3],"hipR":[29.2,7.9],"knR":[41.1,163.9],"ftR":[53.6,282.9],"hipL":[-28.8,9.1],"knL":[-36.2,165.3],"ftL":[-45.1,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.3,-146.5],"head":[1.9,-178.2],"shR":[61,-144.5],"elR":[139.6,-126.6],"haR":[225.2,-111.6],"shL":[-55.3,-141.8],"elL":[-130.7,-113.1],"haL":[-216.2,-86.5],"hipR":[29.2,7.9],"knR":[41,163.9],"ftR":[53.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.3,165.3],"ftL":[-45.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.4,-146.4],"head":[2.1,-178.1],"shR":[61.1,-144.2],"elR":[139.7,-126.2],"haR":[225.4,-111.1],"shL":[-55.2,-141.8],"elL":[-130.6,-113.2],"haL":[-216.2,-86.8],"hipR":[29.2,7.9],"knR":[40.9,163.9],"ftR":[53.2,282.9],"hipL":[-28.8,9.1],"knL":[-36.4,165.3],"ftL":[-45.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.5,-146.4],"head":[2.2,-178.1],"shR":[61.3,-143.9],"elR":[139.8,-125.8],"haR":[225.5,-110.5],"shL":[-55.1,-141.8],"elL":[-130.6,-113.3],"haL":[-216.2,-87],"hipR":[29.2,7.9],"knR":[40.9,163.9],"ftR":[53.1,283],"hipL":[-28.8,9.1],"knL":[-36.5,165.3],"ftL":[-45.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.6,-146.4],"head":[2.3,-178.1],"shR":[61.4,-143.7],"elR":[139.9,-125.3],"haR":[225.6,-109.8],"shL":[-55,-141.8],"elL":[-130.5,-113.4],"haL":[-216.2,-87.1],"hipR":[29.2,7.9],"knR":[40.8,163.9],"ftR":[52.9,283],"hipL":[-28.8,9.1],"knL":[-36.6,165.3],"ftL":[-45.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.7,-146.4],"head":[2.5,-178.1],"shR":[61.5,-143.5],"elR":[140,-124.8],"haR":[225.7,-109],"shL":[-54.9,-141.8],"elL":[-130.4,-113.5],"haL":[-216.1,-87.3],"hipR":[29.2,7.9],"knR":[40.7,163.9],"ftR":[52.7,283],"hipL":[-28.8,9.1],"knL":[-36.7,165.3],"ftL":[-45.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3,-85.9],"neck":[3.9,-146.4],"head":[2.7,-178.1],"shR":[61.7,-143.3],"elR":[140.1,-124.4],"haR":[225.8,-108.4],"shL":[-54.8,-141.9],"elL":[-130.3,-113.6],"haL":[-216,-87.4],"hipR":[29.2,7.9],"knR":[40.5,163.9],"ftR":[52.6,283],"hipL":[-28.8,9.1],"knL":[-36.8,165.3],"ftL":[-45.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.1,-85.9],"neck":[4.1,-146.4],"head":[2.9,-178.1],"shR":[61.9,-143.1],"elR":[140.3,-124.1],"haR":[225.9,-107.9],"shL":[-54.6,-142],"elL":[-130.1,-113.7],"haL":[-215.8,-87.6],"hipR":[29.2,7.9],"knR":[40.5,163.9],"ftR":[52.5,283],"hipL":[-28.8,9.1],"knL":[-36.8,165.3],"ftL":[-46,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.1,-85.9],"neck":[4.3,-146.3],"head":[3.2,-178.1],"shR":[62.2,-142.9],"elR":[140.5,-123.9],"haR":[226.1,-107.7],"shL":[-54.3,-142.1],"elL":[-129.9,-113.9],"haL":[-215.6,-87.8],"hipR":[29.2,7.8],"knR":[40.4,163.9],"ftR":[52.5,283],"hipL":[-28.8,9.1],"knL":[-36.9,165.3],"ftL":[-46.1,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.2,-85.9],"neck":[4.6,-146.3],"head":[3.5,-178],"shR":[62.4,-142.6],"elR":[140.8,-123.8],"haR":[226.3,-107.9],"shL":[-54.1,-142.2],"elL":[-129.7,-114.2],"haL":[-215.5,-88.2],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.4,283],"hipL":[-28.8,9.1],"knL":[-36.9,165.3],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.3,-85.9],"neck":[4.8,-146.3],"head":[3.8,-178],"shR":[62.6,-142.3],"elR":[141.1,-123.9],"haR":[226.5,-108.3],"shL":[-53.9,-142.3],"elL":[-129.6,-114.5],"haL":[-215.4,-88.7],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.3,283],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.4,-85.9],"neck":[4.9,-146.3],"head":[4,-178],"shR":[62.8,-142.2],"elR":[141.3,-124],"haR":[226.5,-108.8],"shL":[-53.7,-142.4],"elL":[-129.5,-114.8],"haL":[-215.3,-89.3],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.2,283],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-46.3,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.5,-85.9],"neck":[5,-146.2],"head":[4.2,-177.9],"shR":[62.8,-142.1],"elR":[141.4,-124.2],"haR":[226.5,-109.3],"shL":[-53.6,-142.6],"elL":[-129.5,-115.2],"haL":[-215.3,-89.8],"hipR":[29.2,7.8],"knR":[40.2,163.9],"ftR":[52.1,283],"hipL":[-28.8,9.2],"knL":[-37,165.4],"ftL":[-46.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.5,-85.9],"neck":[4.9,-146.2],"head":[4.2,-177.9],"shR":[62.8,-142],"elR":[141.3,-124.4],"haR":[226.3,-109.8],"shL":[-53.7,-142.8],"elL":[-129.6,-115.5],"haL":[-215.4,-90.2],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[52,283],"hipL":[-28.8,9.2],"knL":[-37,165.4],"ftL":[-46.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.4,-85.9],"neck":[4.8,-146.2],"head":[4.1,-177.9],"shR":[62.6,-142.1],"elR":[141.2,-124.5],"haR":[226,-110.1],"shL":[-53.8,-142.9],"elL":[-129.7,-115.6],"haL":[-215.6,-90.4],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[51.8,283],"hipL":[-28.8,9.2],"knL":[-37.1,165.4],"ftL":[-46.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.3,-85.9],"neck":[4.6,-146.2],"head":[3.9,-177.9],"shR":[62.4,-142.1],"elR":[140.9,-124.5],"haR":[225.5,-110.3],"shL":[-54,-143],"elL":[-129.9,-115.6],"haL":[-215.8,-90.4],"hipR":[29.3,7.8],"knR":[40,163.9],"ftR":[51.6,282.9],"hipL":[-28.8,9.2],"knL":[-37.2,165.4],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.2,-86],"neck":[4.3,-146.2],"head":[3.6,-177.9],"shR":[62.2,-142],"elR":[140.6,-124.4],"haR":[225.1,-110.4],"shL":[-54.3,-142.9],"elL":[-130.1,-115.4],"haL":[-215.9,-89.9],"hipR":[29.3,7.7],"knR":[39.9,163.8],"ftR":[51.4,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-47,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.1,-86],"neck":[4.1,-146.2],"head":[3.4,-177.9],"shR":[62,-141.8],"elR":[140.3,-123.7],"haR":[224.6,-110.6],"shL":[-54.5,-142.7],"elL":[-130.2,-114.8],"haL":[-215.9,-88.9],"hipR":[29.3,7.7],"knR":[39.8,163.8],"ftR":[51.2,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-47.2,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.9,-86],"neck":[4,-146.2],"head":[3.1,-177.9],"shR":[62,-141.6],"elR":[139.9,-121.8],"haR":[223.9,-111.2],"shL":[-54.6,-142.2],"elL":[-130.1,-113.9],"haL":[-215.7,-87.3],"hipR":[29.3,7.7],"knR":[39.7,163.8],"ftR":[51.1,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.5],"ftL":[-47.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.8,-86],"neck":[3.9,-146.2],"head":[2.9,-177.8],"shR":[62,-141.3],"elR":[139,-118.4],"haR":[222.5,-112.1],"shL":[-54.7,-141.5],"elL":[-130,-112.5],"haL":[-215.4,-85.1],"hipR":[29.3,7.7],"knR":[39.6,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-86],"neck":[3.7,-146.2],"head":[2.6,-177.8],"shR":[61.9,-140.9],"elR":[137.7,-114.8],"haR":[220.2,-113.1],"shL":[-54.9,-140.7],"elL":[-129.8,-110.8],"haL":[-214.7,-82.1],"hipR":[29.3,7.7],"knR":[39.5,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-86],"neck":[3.5,-146.1],"head":[2.3,-177.7],"shR":[61.8,-140.4],"elR":[136.8,-112.6],"haR":[217.4,-114.7],"shL":[-55.1,-140.1],"elL":[-129.4,-108.8],"haL":[-213.8,-78.4],"hipR":[29.2,7.7],"knR":[39.5,163.8],"ftR":[51.1,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.3,-146.1],"head":[2,-177.7],"shR":[61.6,-140.2],"elR":[136.4,-112.1],"haR":[214.6,-116.8],"shL":[-55.2,-139.5],"elL":[-128.9,-106.7],"haL":[-212.7,-74.7],"hipR":[29.2,7.7],"knR":[39.5,163.9],"ftR":[51.2,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.3,-146.1],"head":[1.7,-177.6],"shR":[61.5,-140.7],"elR":[136,-112.3],"haR":[211.8,-119.6],"shL":[-55.3,-138.9],"elL":[-128.4,-104.8],"haL":[-211.6,-71.4],"hipR":[29.2,7.8],"knR":[39.7,163.9],"ftR":[51.4,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-47.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.2,-146],"head":[1.4,-177.6],"shR":[61.3,-141.6],"elR":[135.3,-113],"haR":[209.2,-122.5],"shL":[-55.4,-138.3],"elL":[-128,-103.1],"haL":[-210.6,-68.5],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[51.6,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-47,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-85.8],"neck":[2.9,-145.9],"head":[0.8,-177.5],"shR":[60.8,-142.5],"elR":[134.5,-114.3],"haR":[206.8,-124.9],"shL":[-55.7,-137.8],"elL":[-127.8,-101.7],"haL":[-210,-65.9],"hipR":[29.2,7.8],"knR":[40.5,163.8],"ftR":[51.7,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-46.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-85.8],"neck":[2.5,-145.9],"head":[0.1,-177.4],"shR":[60.2,-143.2],"elR":[133.9,-116.2],"haR":[204.8,-126.6],"shL":[-56.2,-137.4],"elL":[-127.8,-100.3],"haL":[-209.5,-63.5],"hipR":[29.2,7.8],"knR":[41,163.8],"ftR":[51.8,282.9],"hipL":[-28.8,9.2],"knL":[-37.4,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-85.7],"neck":[1.9,-145.8],"head":[-0.7,-177.3],"shR":[59.3,-144],"elR":[133.4,-118.6],"haR":[203.1,-127.7],"shL":[-56.8,-136.9],"elL":[-128,-99.1],"haL":[-209.3,-61.4],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-85.7],"neck":[1.3,-145.8],"head":[-1.5,-177.3],"shR":[58.5,-144.7],"elR":[132.7,-120.6],"haR":[201.9,-128.2],"shL":[-57.4,-136.5],"elL":[-128.3,-98.1],"haL":[-209.4,-59.8],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[0.7,-145.8],"head":[-2.3,-177.3],"shR":[57.6,-145.2],"elR":[131.7,-122],"haR":[201,-127.9],"shL":[-58,-136.1],"elL":[-128.8,-97.4],"haL":[-209.8,-58.7],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.7,282.9],"hipL":[-28.8,9.3],"knL":[-37.1,165.6],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[0.1,-145.8],"head":[-3.1,-177.3],"shR":[56.8,-145.5],"elR":[130.6,-123.2],"haR":[200.4,-126.9],"shL":[-58.6,-135.7],"elL":[-129.3,-96.9],"haL":[-210.3,-58.1],"hipR":[29.3,7.6],"knR":[41.2,163.7],"ftR":[51.7,282.8],"hipL":[-28.8,9.3],"knL":[-37,165.6],"ftL":[-46.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[-0.4,-145.8],"head":[-3.8,-177.3],"shR":[56.1,-145.9],"elR":[129.8,-124.5],"haR":[200.2,-125.1],"shL":[-59.1,-135.4],"elL":[-129.8,-96.6],"haL":[-211,-58],"hipR":[29.3,7.6],"knR":[41.2,163.6],"ftR":[51.7,282.8],"hipL":[-28.8,9.4],"knL":[-37,165.6],"ftL":[-46.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[-0.8,-145.8],"head":[-4.3,-177.3],"shR":[55.6,-146.1],"elR":[129.2,-125.6],"haR":[200.3,-123.3],"shL":[-59.4,-135],"elL":[-130.1,-96.6],"haL":[-211.7,-58.2],"hipR":[29.3,7.6],"knR":[41.2,163.7],"ftR":[51.7,282.9],"hipL":[-28.8,9.3],"knL":[-36.9,165.6],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-85.7],"neck":[-0.9,-145.8],"head":[-4.5,-177.4],"shR":[55.3,-146.2],"elR":[128.9,-125.9],"haR":[200.6,-121.9],"shL":[-59.5,-134.8],"elL":[-130.4,-96.7],"haL":[-212.2,-58.8],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-36.8,165.6],"ftL":[-46.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.7,-85.7],"neck":[-0.9,-145.8],"head":[-4.6,-177.4],"shR":[55.2,-145.8],"elR":[129,-125.6],"haR":[201.1,-120.7],"shL":[-59.4,-134.6],"elL":[-130.3,-96.9],"haL":[-212.4,-59.3],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[51.9,282.9],"hipL":[-28.8,9.3],"knL":[-36.8,165.5],"ftL":[-46.5,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.8,-85.6],"neck":[-0.7,-145.9],"head":[-4.4,-177.4],"shR":[55.4,-145.3],"elR":[129.3,-125.2],"haR":[202,-119.4],"shL":[-59.2,-134.5],"elL":[-130,-96.9],"haL":[-212.1,-59.3],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[52.1,282.9],"hipL":[-28.8,9.3],"knL":[-36.6,165.5],"ftL":[-46.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.4,-145.9],"head":[-4.2,-177.4],"shR":[55.6,-144.9],"elR":[129.8,-125.3],"haR":[203.1,-118],"shL":[-58.8,-134.3],"elL":[-129.4,-96.5],"haL":[-211.3,-58.7],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[52.3,282.9],"hipL":[-28.9,9.2],"knL":[-36.5,165.5],"ftL":[-46.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.4,-85.6],"neck":[-0.1,-145.9],"head":[-3.9,-177.5],"shR":[55.8,-144.9],"elR":[130.1,-125.6],"haR":[204.4,-116.6],"shL":[-58.4,-134.1],"elL":[-128.6,-95.9],"haL":[-210.3,-57.5],"hipR":[29.3,7.8],"knR":[41.4,163.8],"ftR":[52.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.4,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.8,-85.6],"neck":[0.1,-146],"head":[-3.8,-177.5],"shR":[55.9,-145],"elR":[130.3,-125.8],"haR":[205.4,-115.6],"shL":[-58.1,-133.7],"elL":[-127.9,-95],"haL":[-209.3,-56.1],"hipR":[29.3,7.8],"knR":[41.3,163.8],"ftR":[52.5,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[4,-85.6],"neck":[0.2,-146],"head":[-3.8,-177.5],"shR":[55.9,-144.7],"elR":[130.5,-125.6],"haR":[206.2,-114.8],"shL":[-57.9,-133.2],"elL":[-127.4,-94.1],"haL":[-208.5,-54.8],"hipR":[29.3,7.8],"knR":[41.1,163.8],"ftR":[52.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[4.1,-85.6],"neck":[0.2,-146],"head":[-3.9,-177.5],"shR":[55.8,-144.3],"elR":[130.6,-125.1],"haR":[206.6,-114.3],"shL":[-57.9,-132.8],"elL":[-127.1,-93.3],"haL":[-207.9,-53.5],"hipR":[29.2,7.8],"knR":[40.9,163.8],"ftR":[52.3,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.3],"ftL":[-46.1,284.4]},{"rootY":0,"hips":[0,0],"chest":[4,-85.6],"neck":[-0.1,-146],"head":[-4.2,-177.6],"shR":[55.6,-143.8],"elR":[130.5,-124.5],"haR":[206.7,-114],"shL":[-58.1,-132.5],"elL":[-126.9,-92.4],"haL":[-207.3,-51.8],"hipR":[29.2,7.8],"knR":[40.7,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.4,165.3],"ftL":[-46.4,284.4]},{"rootY":0,"hips":[0,0],"chest":[3.8,-85.6],"neck":[-0.4,-146.1],"head":[-4.6,-177.6],"shR":[55.4,-143.6],"elR":[130.3,-124.1],"haR":[206.3,-113.7],"shL":[-58.4,-132.2],"elL":[-126.7,-91.3],"haL":[-206.6,-49.8],"hipR":[29.2,7.8],"knR":[40.3,163.7],"ftR":[51.5,282.9],"hipL":[-28.8,9.2],"knL":[-36.6,165.3],"ftL":[-46.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.7,-85.7],"neck":[-0.7,-146.1],"head":[-5,-177.6],"shR":[55.1,-143.6],"elR":[129.8,-123.9],"haR":[205.7,-113.7],"shL":[-58.7,-131.9],"elL":[-126.4,-90.1],"haL":[-205.8,-47.5],"hipR":[29.3,7.8],"knR":[39.9,163.7],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-47.2,284.4]},{"rootY":0,"hips":[0,0],"chest":[3.6,-85.7],"neck":[-1,-146.1],"head":[-5.4,-177.6],"shR":[54.8,-143.3],"elR":[129.5,-123.1],"haR":[204.8,-114.3],"shL":[-58.9,-131.2],"elL":[-126.1,-88.5],"haL":[-205,-44.9],"hipR":[29.3,7.8],"knR":[39.5,163.7],"ftR":[50.7,282.9],"hipL":[-28.8,9.2],"knL":[-37.3,165.3],"ftL":[-47.7,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.4,-85.6],"neck":[-1.2,-146.1],"head":[-5.7,-177.5],"shR":[54.8,-142.1],"elR":[129.4,-120.4],"haR":[202.6,-115],"shL":[-59,-130.2],"elL":[-125.3,-86.2],"haL":[-203.4,-41.2],"hipR":[29.3,7.8],"knR":[39.2,163.7],"ftR":[50.3,282.9],"hipL":[-28.8,9.2],"knL":[-37.6,165.3],"ftL":[-48.1,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.2,-85.6],"neck":[-1.1,-146],"head":[-5.8,-177.5],"shR":[55.1,-139.7],"elR":[129.7,-116],"haR":[198.4,-114.9],"shL":[-58.8,-129],"elL":[-123.5,-82.8],"haL":[-200.4,-35.6],"hipR":[29.3,7.7],"knR":[38.9,163.7],"ftR":[50,282.9],"hipL":[-28.8,9.2],"knL":[-37.8,165.3],"ftL":[-48.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.9,-146],"head":[-5.7,-177.5],"shR":[55.4,-137.2],"elR":[130.1,-111.1],"haR":[191.9,-113.1],"shL":[-58.3,-127.6],"elL":[-120.4,-78.2],"haL":[-195.2,-27.8],"hipR":[29.3,7.7],"knR":[38.6,163.7],"ftR":[49.8,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.2],"ftL":[-48.6,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.7,-146],"head":[-5.4,-177.5],"shR":[55.8,-135.4],"elR":[130.4,-107.1],"haR":[184,-109],"shL":[-57.7,-126],"elL":[-116,-72.6],"haL":[-187.5,-17.8],"hipR":[29.3,7.7],"knR":[38.3,163.7],"ftR":[49.7,282.8],"hipL":[-28.8,9.3],"knL":[-38,165.2],"ftL":[-48.7,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.4,-146],"head":[-5,-177.5],"shR":[56.2,-134.2],"elR":[130.3,-104],"haR":[176.4,-103.7],"shL":[-57.1,-124.8],"elL":[-109.9,-66.3],"haL":[-176,-5.8],"hipR":[29.3,7.7],"knR":[38.2,163.7],"ftR":[49.7,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.2],"ftL":[-48.7,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3,-85.6],"neck":[0.2,-146],"head":[-4.3,-177.5],"shR":[56.6,-133.1],"elR":[129.8,-100.4],"haR":[171,-99.2],"shL":[-56.4,-124.4],"elL":[-102.1,-60.2],"haL":[-160.1,7.1],"hipR":[29.3,7.7],"knR":[38.3,163.7],"ftR":[50,282.8],"hipL":[-28.8,9.3],"knL":[-37.8,165.2],"ftL":[-48.4,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[2.9,-85.6],"neck":[1,-146.1],"head":[-3.3,-177.6],"shR":[57.3,-132.4],"elR":[128.6,-96],"haR":[167.5,-97.2],"shL":[-55.7,-124.7],"elL":[-93.3,-55],"haL":[-141.4,19.1],"hipR":[29.3,7.7],"knR":[38.5,163.7],"ftR":[50.5,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.1],"ftL":[-47.9,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.2,-85.6],"neck":[2.3,-146.1],"head":[-2,-177.6],"shR":[58.4,-132.1],"elR":[126.7,-91],"haR":[164.5,-99.4],"shL":[-54.4,-124.8],"elL":[-84.3,-50.9],"haL":[-122,29.1],"hipR":[29.2,7.8],"knR":[38.7,163.8],"ftR":[51.2,282.8],"hipL":[-28.9,9.2],"knL":[-37.3,165],"ftL":[-47.2,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[4,-85.5],"neck":[4,-146],"head":[-0.1,-177.5],"shR":[59.9,-131.9],"elR":[124.7,-86],"haR":[161.3,-105.7],"shL":[-52.6,-124.4],"elL":[-75,-47.5],"haL":[-102.7,36.9],"hipR":[29.2,7.9],"knR":[38.8,163.9],"ftR":[52.1,282.8],"hipL":[-28.9,9.1],"knL":[-36.9,165],"ftL":[-46.4,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[5,-85.3],"neck":[5.8,-145.8],"head":[1.7,-177.3],"shR":[61.5,-131.8],"elR":[121.9,-81.4],"haR":[157.9,-114.4],"shL":[-50.7,-123.7],"elL":[-65.8,-44.8],"haL":[-84.7,42.4],"hipR":[29.2,8],"knR":[39,163.9],"ftR":[52.9,282.8],"hipL":[-28.9,9],"knL":[-36.4,164.9],"ftL":[-45.7,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[5.9,-85.2],"neck":[7.1,-145.6],"head":[3.1,-177.1],"shR":[62.7,-132.3],"elR":[117.5,-78.6],"haR":[153.4,-124.3],"shL":[-49.3,-123.1],"elL":[-59.1,-43.3],"haL":[-72.2,45.2],"hipR":[29.2,8.1],"knR":[38.9,164],"ftR":[53.3,282.8],"hipL":[-28.9,8.9],"knL":[-36.2,164.8],"ftL":[-45.3,284]},{"rootY":0.1,"hips":[0,0],"chest":[6.4,-85.1],"neck":[7.5,-145.5],"head":[3.6,-177],"shR":[63.1,-133.3],"elR":[112.7,-79.1],"haR":[146.3,-135.2],"shL":[-48.9,-123],"elL":[-57,-43.1],"haL":[-69.5,45.6],"hipR":[29.2,8.1],"knR":[38.6,164],"ftR":[53.1,282.8],"hipL":[-28.9,8.9],"knL":[-36.4,164.8],"ftL":[-45.5,284]},{"rootY":0.1,"hips":[0,0],"chest":[6.5,-85.2],"neck":[7.3,-145.5],"head":[3.6,-177],"shR":[62.7,-134.2],"elR":[112.3,-82.9],"haR":[135.1,-144.9],"shL":[-49,-122.9],"elL":[-59.5,-43.4],"haL":[-75.4,44.7],"hipR":[29.2,8],"knR":[38.3,163.9],"ftR":[52.5,282.7],"hipL":[-28.9,9],"knL":[-36.7,164.8],"ftL":[-46.1,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.4,-85.2],"neck":[6.8,-145.5],"head":[3.7,-177.1],"shR":[62,-135.3],"elR":[118.4,-90.6],"haR":[120.9,-150.3],"shL":[-49.2,-122.3],"elL":[-63.9,-43.6],"haL":[-84.1,43.6],"hipR":[29.2,7.9],"knR":[38,163.9],"ftR":[51.9,282.7],"hipL":[-28.9,9],"knL":[-37.1,164.9],"ftL":[-46.7,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.5,-85.1],"neck":[6.2,-145.4],"head":[3.7,-177.1],"shR":[61.1,-136.5],"elR":[126.5,-103.5],"haR":[107.3,-150.5],"shL":[-49.5,-121.3],"elL":[-68.3,-43.6],"haL":[-91.6,42.6],"hipR":[29.2,7.9],"knR":[37.7,163.9],"ftR":[51.3,282.7],"hipL":[-28.9,9.1],"knL":[-37.3,164.9],"ftL":[-47.2,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.9,-85],"neck":[5.5,-145.4],"head":[3.5,-177.1],"shR":[60,-137.2],"elR":[130.6,-118.2],"haR":[98.2,-149.1],"shL":[-50,-120.5],"elL":[-72.2,-43.8],"haL":[-98,41.6],"hipR":[29.2,7.9],"knR":[37.5,163.8],"ftR":[50.7,282.8],"hipL":[-28.9,9.1],"knL":[-37.6,164.9],"ftL":[-47.8,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.3,-85],"neck":[4.6,-145.4],"head":[2.9,-177.1],"shR":[58.4,-137.6],"elR":[129.1,-125.9],"haR":[92.7,-150.7],"shL":[-50.7,-120],"elL":[-75.5,-44],"haL":[-103.9,40.3],"hipR":[29.2,7.9],"knR":[37.1,163.8],"ftR":[49.9,282.8],"hipL":[-28.9,9.1],"knL":[-38.1,164.9],"ftL":[-48.5,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-85.2],"neck":[3.6,-145.5],"head":[2,-177.3],"shR":[56.7,-138.4],"elR":[123.9,-121.7],"haR":[90,-154.2],"shL":[-51.3,-119.5],"elL":[-77.7,-43.9],"haL":[-108.3,39.2],"hipR":[29.3,7.8],"knR":[36.7,163.8],"ftR":[49,282.8],"hipL":[-28.9,9.2],"knL":[-38.6,165],"ftL":[-49.4,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-85.3],"neck":[2.9,-145.7],"head":[1.1,-177.4],"shR":[55.5,-139.3],"elR":[114.5,-110.8],"haR":[87.1,-157.5],"shL":[-51.9,-119.1],"elL":[-78.4,-43.5],"haL":[-110.2,38.5],"hipR":[29.3,7.7],"knR":[36.3,163.7],"ftR":[48.3,282.8],"hipL":[-28.9,9.2],"knL":[-38.8,165.1],"ftL":[-50,284.2]},{"rootY":0.2,"hips":[0,0],"chest":[6.9,-85.4],"neck":[2.6,-145.7],"head":[0.7,-177.4],"shR":[55,-139.8],"elR":[103.3,-102.2],"haR":[84,-160.5],"shL":[-52.3,-119.2],"elL":[-77.9,-43.2],"haL":[-110,37.8],"hipR":[29.3,7.6],"knR":[36.1,163.6],"ftR":[47.8,282.7],"hipL":[-28.8,9.3],"knL":[-38.8,165.2],"ftL":[-50.5,284.2]},{"rootY":0.3,"hips":[0,0],"chest":[6.9,-85.4],"neck":[2.7,-145.7],"head":[0.8,-177.4],"shR":[54.8,-139.4],"elR":[97.7,-99.6],"haR":[80.2,-159.2],"shL":[-52.6,-119.7],"elL":[-76.8,-43.2],"haL":[-108,37.4],"hipR":[29.3,7.6],"knR":[36,163.6],"ftR":[47.7,282.7],"hipL":[-28.8,9.4],"knL":[-38.7,165.3],"ftL":[-50.7,284.2]},{"rootY":0.3,"hips":[0,0],"chest":[7,-85.4],"neck":[3,-145.6],"head":[1.3,-177.3],"shR":[54.8,-138.9],"elR":[101.1,-102.2],"haR":[75.1,-152.1],"shL":[-52.5,-120.3],"elL":[-75,-43.1],"haL":[-104.2,37.5],"hipR":[29.3,7.6],"knR":[36.1,163.6],"ftR":[48,282.7],"hipL":[-28.8,9.4],"knL":[-38.5,165.3],"ftL":[-50.4,284.2]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-85.3],"neck":[3.4,-145.5],"head":[1.9,-177.2],"shR":[54.9,-138.6],"elR":[108,-108.6],"haR":[71.3,-143.6],"shL":[-52.1,-120.2],"elL":[-72.8,-42.5],"haL":[-99.2,38.5],"hipR":[29.3,7.7],"knR":[36.4,163.7],"ftR":[48.6,282.7],"hipL":[-28.8,9.3],"knL":[-38.3,165.2],"ftL":[-49.8,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-85.2],"neck":[3.6,-145.3],"head":[2.2,-177.1],"shR":[55,-138.4],"elR":[111.7,-114.8],"haR":[68,-136.3],"shL":[-51.7,-119.5],"elL":[-70.5,-41.3],"haL":[-94.1,40],"hipR":[29.3,7.8],"knR":[36.8,163.8],"ftR":[49.1,282.8],"hipL":[-28.9,9.2],"knL":[-38.1,165.2],"ftL":[-49.2,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[7.7,-85.2],"neck":[3.5,-145.3],"head":[2.2,-177],"shR":[54.8,-138.3],"elR":[110.8,-115.2],"haR":[64.9,-131.9],"shL":[-51.6,-119],"elL":[-68.4,-40.4],"haL":[-89.3,41.5],"hipR":[29.3,7.8],"knR":[37.1,163.8],"ftR":[49.6,282.9],"hipL":[-28.9,9.2],"knL":[-38,165.1],"ftL":[-48.8,284.2]},{"rootY":0,"hips":[0,0],"chest":[7.6,-85.2],"neck":[3.5,-145.3],"head":[2,-177],"shR":[54.9,-138.2],"elR":[106.2,-107.5],"haR":[60.3,-132],"shL":[-51.6,-118.8],"elL":[-66.7,-39.9],"haL":[-84.9,42.8],"hipR":[29.3,7.8],"knR":[37.2,163.9],"ftR":[49.8,282.9],"hipL":[-28.9,9.2],"knL":[-38,165.1],"ftL":[-48.6,284.2]},{"rootY":0,"hips":[0,0],"chest":[7.2,-85.4],"neck":[3.5,-145.3],"head":[1.8,-177],"shR":[55.4,-138.2],"elR":[97.6,-96.3],"haR":[55.1,-135.7],"shL":[-51.8,-118.9],"elL":[-65.5,-39.9],"haL":[-81.1,44.1],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50,282.9],"hipL":[-28.9,9.2],"knL":[-37.8,165.1],"ftL":[-48.5,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.8,-85.4],"neck":[3.6,-145.3],"head":[1.8,-177],"shR":[56,-138.5],"elR":[87.1,-88.4],"haR":[50.7,-140.4],"shL":[-51.9,-119.1],"elL":[-65,-40],"haL":[-78.3,45.3],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50.1,282.8],"hipL":[-28.9,9.2],"knL":[-37.7,165.2],"ftL":[-48.4,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.6,-85.4],"neck":[3.8,-145.2],"head":[1.9,-176.9],"shR":[56.5,-138.6],"elR":[80.3,-85.4],"haR":[46.7,-143.4],"shL":[-52,-119.3],"elL":[-65.1,-40.2],"haL":[-76.4,46.4],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50.2,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.2],"ftL":[-48.3,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.6,-85.4],"neck":[3.9,-145.2],"head":[2,-176.9],"shR":[56.7,-138.5],"elR":[81.4,-86.1],"haR":[41.2,-141.7],"shL":[-52.1,-119.6],"elL":[-65.2,-40.5],"haL":[-75.4,47.2],"hipR":[29.2,7.8],"knR":[37.2,163.9],"ftR":[50.5,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.2],"ftL":[-48,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.5,-85.4],"neck":[3.8,-145.3],"head":[2.1,-177],"shR":[56.9,-138.5],"elR":[87.9,-89.7],"haR":[35.8,-136.1],"shL":[-52.1,-119.7],"elL":[-65.3,-40.5],"haL":[-75.3,47.5],"hipR":[29.2,7.8],"knR":[37.4,163.9],"ftR":[50.9,282.8],"hipL":[-28.8,9.2],"knL":[-37.4,165.1],"ftL":[-47.7,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.4,-85.4],"neck":[3.6,-145.3],"head":[2,-177],"shR":[57,-138.9],"elR":[93.9,-95.4],"haR":[31,-129.6],"shL":[-52.2,-119.4],"elL":[-65.6,-40.4],"haL":[-76.1,47.7],"hipR":[29.2,7.9],"knR":[37.6,163.9],"ftR":[51.2,282.8],"hipL":[-28.8,9.1],"knL":[-37.3,165.1],"ftL":[-47.3,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.3,-85.4],"neck":[3.1,-145.3],"head":[1.6,-177],"shR":[56.6,-139.1],"elR":[96.8,-100.4],"haR":[28.4,-124.7],"shL":[-52.6,-119],"elL":[-66.4,-40.1],"haL":[-77.5,47.7],"hipR":[29.2,7.9],"knR":[37.8,163.9],"ftR":[51.4,282.8],"hipL":[-28.9,9.1],"knL":[-37.2,165.1],"ftL":[-47.2,284.2]},{"rootY":0,"hips":[0,0],"chest":[6,-85.4],"neck":[2.3,-145.3],"head":[0.9,-177],"shR":[55.7,-138.8],"elR":[96.8,-101.8],"haR":[28.5,-124.7],"shL":[-53.1,-118.7],"elL":[-67.4,-39.8],"haL":[-79.2,47.7],"hipR":[29.2,7.9],"knR":[37.8,163.9],"ftR":[51.4,282.8],"hipL":[-28.8,9.1],"knL":[-37.1,165.1],"ftL":[-47.2,284.2]},{"rootY":0,"hips":[0,0],"chest":[5.7,-85.5],"neck":[1.5,-145.3],"head":[0.1,-177],"shR":[54.7,-138.4],"elR":[94.7,-99.2],"haR":[29.5,-127.4],"shL":[-53.9,-118.5],"elL":[-68.6,-39.7],"haL":[-80.8,47.4],"hipR":[29.2,7.8],"knR":[37.8,163.9],"ftR":[51.2,282.8],"hipL":[-28.8,9.2],"knL":[-37.2,165.2],"ftL":[-47.3,284.2]},{"rootY":0,"hips":[0,0],"chest":[5.3,-85.5],"neck":[0.8,-145.3],"head":[-0.6,-177],"shR":[53.9,-138.7],"elR":[90.8,-95.2],"haR":[30,-131.3],"shL":[-54.5,-118.4],"elL":[-69.8,-39.6],"haL":[-82.2,47],"hipR":[29.3,7.8],"knR":[37.8,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37.1,165.2],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[5,-85.5],"neck":[0.4,-145.2],"head":[-1.1,-176.9],"shR":[53.5,-139.3],"elR":[86.1,-91.8],"haR":[30.7,-137.2],"shL":[-54.9,-118.3],"elL":[-70.9,-39.6],"haL":[-83.2,46.6],"hipR":[29.3,7.8],"knR":[37.9,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37.1,165.3],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.9,-85.5],"neck":[0.3,-145.2],"head":[-1.3,-176.9],"shR":[53.3,-139.8],"elR":[82.1,-90.1],"haR":[32.8,-143.8],"shL":[-55.1,-118.2],"elL":[-71.9,-39.7],"haL":[-83.7,46.1],"hipR":[29.3,7.7],"knR":[38.1,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37,165.3],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.5],"neck":[0.4,-145.2],"head":[-1.3,-176.8],"shR":[53.4,-140],"elR":[81.5,-90.6],"haR":[34.6,-146.6],"shL":[-55.2,-118.4],"elL":[-72.5,-39.9],"haL":[-83.8,45.7],"hipR":[29.3,7.8],"knR":[38.2,163.9],"ftR":[51.3,282.8],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-47.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.5],"neck":[0.4,-145.1],"head":[-1.2,-176.8],"shR":[53.7,-139.9],"elR":[86,-93.2],"haR":[34.7,-142.9],"shL":[-55.2,-118.5],"elL":[-72.8,-40],"haL":[-83.5,45.4],"hipR":[29.3,7.8],"knR":[38.4,163.9],"ftR":[51.7,282.8],"hipL":[-28.9,9.2],"knL":[-36.7,165.3],"ftL":[-46.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.4],"neck":[0.5,-145.1],"head":[-1,-176.7],"shR":[54,-139.2],"elR":[93.7,-97.4],"haR":[35.8,-135.3],"shL":[-55,-118.3],"elL":[-72.7,-39.8],"haL":[-83,45.3],"hipR":[29.3,7.8],"knR":[38.7,163.9],"ftR":[52.2,282.8],"hipL":[-28.9,9.2],"knL":[-36.5,165.3],"ftL":[-46.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.4],"neck":[0.6,-145],"head":[-0.9,-176.7],"shR":[54.2,-137.6],"elR":[101.2,-101.5],"haR":[37.5,-125.2],"shL":[-54.8,-118],"elL":[-72.4,-39.4],"haL":[-82.3,45.5],"hipR":[29.2,7.9],"knR":[38.9,164],"ftR":[52.7,282.8],"hipL":[-28.9,9.1],"knL":[-36.3,165.3],"ftL":[-45.9,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.3],"neck":[0.5,-145],"head":[-1,-176.7],"shR":[54,-135.5],"elR":[105.9,-103.9],"haR":[38.5,-111.7],"shL":[-54.7,-117.6],"elL":[-72,-38.9],"haL":[-81.6,45.8],"hipR":[29.2,7.9],"knR":[39.1,164],"ftR":[53,282.8],"hipL":[-28.9,9.1],"knL":[-36.1,165.2],"ftL":[-45.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.3],"neck":[0.3,-145],"head":[-1.2,-176.7],"shR":[53.8,-133.6],"elR":[108.2,-102.8],"haR":[40.5,-97.5],"shL":[-54.8,-117.3],"elL":[-71.5,-38.5],"haL":[-80.9,46.2],"hipR":[29.2,7.9],"knR":[39.2,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.6,-85.2],"neck":[0.1,-145],"head":[-1.6,-176.7],"shR":[53.5,-132.3],"elR":[110,-98],"haR":[46.4,-85.3],"shL":[-54.8,-117],"elL":[-71.1,-38.1],"haL":[-80.2,46.5],"hipR":[29.2,7.9],"knR":[39.3,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.5,-85.1],"neck":[0,-145],"head":[-1.9,-176.6],"shR":[53.4,-131],"elR":[110.9,-90.4],"haR":[55.3,-73.6],"shL":[-54.8,-116.6],"elL":[-70.7,-37.6],"haL":[-79.5,47],"hipR":[29.2,7.9],"knR":[39.4,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.3,-85],"neck":[-0.2,-144.9],"head":[-2.4,-176.5],"shR":[53.3,-129.4],"elR":[108.7,-81.3],"haR":[62.6,-57.5],"shL":[-54.8,-116.2],"elL":[-70.4,-37.2],"haL":[-78.9,47.5],"hipR":[29.2,7.9],"knR":[39.5,164],"ftR":[53,282.9],"hipL":[-28.9,9.1],"knL":[-36.1,165.2],"ftL":[-45.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.9],"neck":[-0.3,-144.8],"head":[-2.8,-176.4],"shR":[53,-127.3],"elR":[103.4,-71.8],"haR":[67.4,-35.7],"shL":[-55,-116],"elL":[-70.2,-37],"haL":[-78.4,48],"hipR":[29.2,7.9],"knR":[39.5,164],"ftR":[52.9,282.9],"hipL":[-28.9,9.1],"knL":[-36.2,165.2],"ftL":[-45.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.9],"neck":[-0.4,-144.6],"head":[-3.1,-176.2],"shR":[52.8,-125.2],"elR":[96.8,-62.9],"haR":[72.4,-15.1],"shL":[-55.2,-116.2],"elL":[-70,-37.1],"haL":[-78,48.4],"hipR":[29.2,7.9],"knR":[39.6,164],"ftR":[52.7,282.9],"hipL":[-28.9,9.1],"knL":[-36.4,165.2],"ftL":[-45.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.8],"neck":[-0.3,-144.5],"head":[-3.2,-176.1],"shR":[52.7,-123.6],"elR":[91.1,-56.1],"haR":[79.4,1],"shL":[-55.3,-116.5],"elL":[-69.9,-37.3],"haL":[-77.9,48.5],"hipR":[29.3,7.9],"knR":[39.6,163.9],"ftR":[52.5,282.9],"hipL":[-28.9,9.1],"knL":[-36.5,165.3],"ftL":[-46,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.1,-84.8],"neck":[-0.2,-144.5],"head":[-3.2,-176.1],"shR":[52.9,-122.5],"elR":[87.2,-52],"haR":[87.1,14.5],"shL":[-55.4,-116.7],"elL":[-69.9,-37.6],"haL":[-77.9,48.6],"hipR":[29.3,7.9],"knR":[39.7,163.9],"ftR":[52.3,282.9],"hipL":[-28.9,9.1],"knL":[-36.6,165.3],"ftL":[-46.1,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.1,-84.8],"neck":[0.1,-144.3],"head":[-3,-175.9],"shR":[53.1,-121.9],"elR":[85.1,-49.7],"haR":[93.2,25.7],"shL":[-55.3,-116.8],"elL":[-69.9,-37.8],"haL":[-78.2,48.7],"hipR":[29.3,7.8],"knR":[39.8,163.9],"ftR":[52.1,282.9],"hipL":[-28.9,9.2],"knL":[-36.6,165.3],"ftL":[-46.2,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.7],"neck":[0.4,-144.3],"head":[-2.8,-175.8],"shR":[53.3,-121.6],"elR":[84.3,-48.1],"haR":[97.7,32.8],"shL":[-55.1,-116.9],"elL":[-70,-38],"haL":[-78.8,48.7],"hipR":[29.3,7.8],"knR":[40,163.9],"ftR":[52,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.3,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.3,-84.7],"neck":[0.6,-144.3],"head":[-2.6,-175.9],"shR":[53.6,-121.5],"elR":[84.3,-47.3],"haR":[101.3,36.3],"shL":[-54.8,-116.8],"elL":[-70.1,-38.1],"haL":[-79.5,48.8],"hipR":[29.3,7.8],"knR":[40.3,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.3,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.4,-84.8],"neck":[0.8,-144.4],"head":[-2.4,-176],"shR":[54.1,-121.5],"elR":[84.4,-46.8],"haR":[103.9,38.3],"shL":[-54.5,-116.7],"elL":[-70.1,-38.1],"haL":[-80.4,48.8],"hipR":[29.3,7.8],"knR":[40.5,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.9,165.4],"ftL":[-46.3,284.5]},{"rootY":0,"hips":[0,0],"chest":[4.4,-84.8],"neck":[0.9,-144.5],"head":[-2.2,-176.1],"shR":[54.7,-121.3],"elR":[84.3,-46.3],"haR":[105.2,39.7],"shL":[-54.2,-116.5],"elL":[-70.2,-38],"haL":[-81.2,48.9],"hipR":[29.3,7.8],"knR":[40.6,163.8],"ftR":[51.8,282.9],"hipL":[-28.9,9.2],"knL":[-36.9,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[4.2,-84.9],"neck":[1.1,-144.6],"head":[-2,-176.2],"shR":[55.3,-121],"elR":[84.1,-45.9],"haR":[106.1,40.5],"shL":[-53.9,-116.4],"elL":[-70.2,-38],"haL":[-81.9,48.9],"hipR":[29.2,7.8],"knR":[40.7,163.8],"ftR":[51.8,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[3.9,-85],"neck":[1.3,-144.7],"head":[-1.7,-176.4],"shR":[55.8,-120.8],"elR":[84.1,-45.8],"haR":[106.7,40.8],"shL":[-53.5,-116.4],"elL":[-70.3,-38.1],"haL":[-82.4,48.9],"hipR":[29.3,7.8],"knR":[40.7,163.8],"ftR":[51.7,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[3.5,-85.1],"neck":[1.5,-144.9],"head":[-1.5,-176.6],"shR":[56.2,-120.5],"elR":[83.7,-45.7],"haR":[106.7,41],"shL":[-53.2,-116.4],"elL":[-70.3,-38.2],"haL":[-82.6,48.9],"hipR":[29.3,7.8],"knR":[40.5,163.8],"ftR":[51.6,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[3,-85.2],"neck":[1.5,-145.1],"head":[-1.3,-176.7],"shR":[56.5,-120.4],"elR":[82.7,-45.4],"haR":[105.9,41.3],"shL":[-53,-116.5],"elL":[-70.4,-38.2],"haL":[-82.7,49],"hipR":[29.3,7.8],"knR":[40.2,163.8],"ftR":[51.5,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[2.6,-85.2],"neck":[1.4,-145.1],"head":[-1.4,-176.8],"shR":[56.5,-120.3],"elR":[81.5,-45.1],"haR":[104.7,41.7],"shL":[-53,-116.4],"elL":[-70.6,-38.1],"haL":[-82.6,49],"hipR":[29.3,7.7],"knR":[39.9,163.8],"ftR":[51.3,282.9],"hipL":[-28.9,9.2],"knL":[-37,165.4],"ftL":[-46.9,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[2.2,-85.2],"neck":[1.2,-145.1],"head":[-1.6,-176.8],"shR":[56.4,-120.2],"elR":[80.6,-44.8],"haR":[103.6,42],"shL":[-53,-116.2],"elL":[-70.7,-37.9],"haL":[-82.3,49.1],"hipR":[29.3,7.7],"knR":[39.6,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.2,165.4],"ftL":[-47.2,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.9,-85.2],"neck":[0.9,-145.1],"head":[-1.9,-176.8],"shR":[56.2,-120.1],"elR":[80.1,-44.5],"haR":[102.6,42.3],"shL":[-53.1,-116],"elL":[-70.8,-37.6],"haL":[-81.8,49.1],"hipR":[29.3,7.7],"knR":[39.3,163.8],"ftR":[50.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.4],"ftL":[-47.4,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.5,-85.2],"neck":[0.5,-145.1],"head":[-2.2,-176.8],"shR":[55.9,-119.9],"elR":[79.7,-44.3],"haR":[101.7,42.5],"shL":[-53.2,-115.7],"elL":[-70.9,-37.2],"haL":[-81.2,49],"hipR":[29.3,7.7],"knR":[38.9,163.8],"ftR":[50.6,282.9],"hipL":[-28.8,9.3],"knL":[-37.6,165.3],"ftL":[-47.6,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-85.2],"neck":[0.1,-145.1],"head":[-2.6,-176.8],"shR":[55.5,-119.9],"elR":[79.5,-44.1],"haR":[101.2,42.3],"shL":[-53.4,-115.4],"elL":[-70.8,-36.7],"haL":[-80.4,48.9],"hipR":[29.3,7.7],"knR":[38.4,163.8],"ftR":[50.4,282.9],"hipL":[-28.8,9.3],"knL":[-37.7,165.3],"ftL":[-47.8,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.8,-85.2],"neck":[-0.3,-145.2],"head":[-2.9,-176.9],"shR":[55.2,-120],"elR":[79.3,-44.1],"haR":[101,41.9],"shL":[-53.5,-115],"elL":[-70.7,-36.3],"haL":[-79.4,48.7],"hipR":[29.3,7.7],"knR":[37.9,163.8],"ftR":[50.2,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.3],"ftL":[-48,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.5,-85.2],"neck":[-0.6,-145.2],"head":[-3.3,-176.9],"shR":[54.9,-120],"elR":[79.3,-44.1],"haR":[101.1,41.4],"shL":[-53.6,-114.6],"elL":[-70.4,-35.8],"haL":[-78.4,48.5],"hipR":[29.3,7.7],"knR":[37.6,163.8],"ftR":[50.1,282.8],"hipL":[-28.8,9.3],"knL":[-38,165.3],"ftL":[-48.1,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.3,-85.2],"neck":[-0.9,-145.2],"head":[-3.5,-176.9],"shR":[54.8,-120.1],"elR":[79.5,-44.1],"haR":[101.4,40.8],"shL":[-53.6,-114.3],"elL":[-70.1,-35.4],"haL":[-77.2,48.3],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.1,282.8],"hipL":[-28.8,9.3],"knL":[-38.1,165.3],"ftL":[-48.1,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.2,-85.2],"neck":[-1,-145.2],"head":[-3.5,-176.9],"shR":[54.7,-120.2],"elR":[80,-44.2],"haR":[102,40.1],"shL":[-53.5,-114.2],"elL":[-69.8,-35.2],"haL":[-76.1,48],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.2,282.8],"hipL":[-28.7,9.3],"knL":[-38.1,165.3],"ftL":[-48,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.1,-85.1],"neck":[-1,-145.2],"head":[-3.5,-176.9],"shR":[54.8,-120.2],"elR":[80.6,-44.3],"haR":[102.7,39.3],"shL":[-53.4,-114.1],"elL":[-69.6,-35.1],"haL":[-75.1,47.8],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.4,282.8],"hipL":[-28.7,9.3],"knL":[-38,165.2],"ftL":[-47.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.1,-85],"neck":[-0.8,-145.1],"head":[-3.4,-176.8],"shR":[55,-120.2],"elR":[81.2,-44.4],"haR":[103.3,38.6],"shL":[-53.1,-114],"elL":[-69.3,-35],"haL":[-74.2,47.7],"hipR":[29.2,7.7],"knR":[37.5,163.8],"ftR":[50.7,282.8],"hipL":[-28.7,9.3],"knL":[-37.9,165.2],"ftL":[-47.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.2,-85],"neck":[-0.6,-145.1],"head":[-3.2,-176.8],"shR":[55.2,-120.1],"elR":[81.6,-44.3],"haR":[103.9,38.3],"shL":[-52.9,-114],"elL":[-69.1,-35],"haL":[-73.7,47.7],"hipR":[29.2,7.7],"knR":[37.6,163.9],"ftR":[51,282.8],"hipL":[-28.7,9.2],"knL":[-37.8,165.2],"ftL":[-47.2,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.3,-84.9],"neck":[-0.4,-145.1],"head":[-3,-176.8],"shR":[55.4,-119.9],"elR":[81.7,-44],"haR":[104.4,38.2],"shL":[-52.6,-114],"elL":[-68.9,-35],"haL":[-73.6,47.8],"hipR":[29.2,7.8],"knR":[37.8,163.9],"ftR":[51.3,282.8],"hipL":[-28.7,9.2],"knL":[-37.6,165.1],"ftL":[-46.9,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.4,-84.9],"neck":[-0.2,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.7],"elR":[81.5,-43.6],"haR":[104.5,38.6],"shL":[-52.4,-114],"elL":[-68.8,-35],"haL":[-73.8,48.1],"hipR":[29.2,7.8],"knR":[38.1,163.9],"ftR":[51.5,282.8],"hipL":[-28.7,9.2],"knL":[-37.5,165.1],"ftL":[-46.7,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.9],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.5],"elR":[81,-43.2],"haR":[104.1,39.3],"shL":[-52.3,-114],"elL":[-68.7,-35.1],"haL":[-74.3,48.4],"hipR":[29.2,7.8],"knR":[38.3,163.9],"ftR":[51.7,282.8],"hipL":[-28.7,9.2],"knL":[-37.4,165.1],"ftL":[-46.5,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.3],"elR":[80.3,-42.8],"haR":[103.5,40.2],"shL":[-52.4,-114.1],"elL":[-68.8,-35.1],"haL":[-75,48.8],"hipR":[29.2,7.8],"knR":[38.5,163.9],"ftR":[51.8,282.8],"hipL":[-28.7,9.2],"knL":[-37.3,165.1],"ftL":[-46.3,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.3,-119.1],"elR":[79.7,-42.5],"haR":[102.7,41.1],"shL":[-52.4,-114.1],"elL":[-69,-35.2],"haL":[-75.9,49.1],"hipR":[29.2,7.8],"knR":[38.7,163.9],"ftR":[52,282.8],"hipL":[-28.7,9.2],"knL":[-37.2,165.1],"ftL":[-46.2,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.2,-145],"head":[-2.9,-176.7],"shR":[55.2,-119],"elR":[79.3,-42.2],"haR":[102.1,41.8],"shL":[-52.5,-114.1],"elL":[-69.2,-35.2],"haL":[-76.7,49.5],"hipR":[29.2,7.8],"knR":[39,163.9],"ftR":[52.1,282.8],"hipL":[-28.7,9.2],"knL":[-37.2,165.1],"ftL":[-46.1,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.7],"neck":[-0.2,-144.9],"head":[-2.9,-176.6],"shR":[55.1,-118.9],"elR":[78.9,-42],"haR":[101.6,42.5],"shL":[-52.6,-114.1],"elL":[-69.3,-35.2],"haL":[-77.6,49.9],"hipR":[29.2,7.8],"knR":[39.3,163.9],"ftR":[52.1,282.9],"hipL":[-28.7,9.2],"knL":[-37.1,165.1],"ftL":[-46,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.6],"neck":[-0.2,-144.9],"head":[-2.9,-176.6],"shR":[55.1,-118.8],"elR":[78.4,-41.9],"haR":[101.2,43.1],"shL":[-52.7,-114],"elL":[-69.3,-35.1],"haL":[-78.2,50.2],"hipR":[29.2,7.8],"knR":[39.7,163.9],"ftR":[52.2,282.9],"hipL":[-28.8,9.1],"knL":[-37,165.1],"ftL":[-45.8,284.3]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.6],"neck":[-0.3,-144.8],"head":[-3,-176.5],"shR":[55,-118.9],"elR":[77.7,-41.7],"haR":[101.1,43.5],"shL":[-52.8,-113.9],"elL":[-69.3,-35],"haL":[-78.7,50.5],"hipR":[29.2,7.8],"knR":[40,163.8],"ftR":[52.4,282.9],"hipL":[-28.8,9.2],"knL":[-36.9,165.1],"ftL":[-45.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.5],"neck":[-0.4,-144.8],"head":[-3.2,-176.5],"shR":[54.9,-118.9],"elR":[77.1,-41.7],"haR":[101,43.8],"shL":[-52.9,-113.8],"elL":[-69.3,-34.9],"haL":[-79.1,50.9],"hipR":[29.2,7.8],"knR":[40.2,163.8],"ftR":[52.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.8,165.1],"ftL":[-45.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.5],"neck":[-0.6,-144.8],"head":[-3.3,-176.5],"shR":[54.8,-119],"elR":[76.6,-41.5],"haR":[100.9,44],"shL":[-53,-113.6],"elL":[-69.2,-34.7],"haL":[-79.2,51.3],"hipR":[29.2,7.9],"knR":[40.2,163.9],"ftR":[52.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.8,165.1],"ftL":[-45.4,284.3]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.5],"neck":[-0.7,-144.8],"head":[-3.5,-176.4],"shR":[54.7,-118.9],"elR":[76.1,-41.4],"haR":[100.7,44.3],"shL":[-52.9,-113.4],"elL":[-69,-34.4],"haL":[-79.1,51.7],"hipR":[29.2,7.9],"knR":[40.1,163.9],"ftR":[52.4,283],"hipL":[-28.8,9.1],"knL":[-36.7,165],"ftL":[-45.3,284.3]}]}}; \ No newline at end of file +window.INK_CLIPS={"climb":{"name":"climb","fps":30,"height":520,"groundY":339,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.7,-82.8],"neck":[1.7,-82.8],"head":[2.7,-153.6],"shR":[-61.9,-110.7],"elR":[-167.1,-95.9],"haR":[-236.2,-86.1],"shL":[69.9,-107.1],"elL":[169.9,-93.1],"haL":[239.8,-83.3],"hipR":[-26.5,36.4],"knR":[-23.8,187.1],"ftR":[-21.2,339.3],"hipL":[27.6,36.4],"knL":[25.1,181.5],"ftL":[22.4,333.3]},{"rootY":0.3,"hips":[0,0],"chest":[-6.5,-82.3],"neck":[-6.5,-82.3],"head":[-12.8,-153],"shR":[30.3,-106.6],"elR":[47.6,-1.7],"haR":[42.7,62.8],"shL":[-39.1,-112.2],"elL":[-32.5,-13.4],"haL":[-59.8,51.7],"hipR":[6.5,33.7],"knR":[-14.2,182.8],"ftR":[23.8,324],"hipL":[-27.7,39.3],"knL":[-49,182.4],"ftL":[-12.6,324.4]},{"rootY":0,"hips":[0,0],"chest":[-6.3,-82.4],"neck":[-6.3,-82.4],"head":[-12.1,-153],"shR":[31.3,-106.6],"elR":[48,-1.7],"haR":[42.4,62.3],"shL":[-39.2,-112.3],"elL":[-31.5,-13.5],"haL":[-56.3,52.5],"hipR":[6.7,34.2],"knR":[-13.8,183.3],"ftR":[24.1,324.5],"hipL":[-28,39.1],"knL":[-46.9,182.5],"ftL":[-11.5,324.5]},{"rootY":0.2,"hips":[0,0],"chest":[-6.6,-82.5],"neck":[-6.6,-82.5],"head":[-12.5,-153.2],"shR":[31.4,-106.9],"elR":[47.9,-1.9],"haR":[40.6,61.7],"shL":[-40,-112.1],"elL":[-32.2,-13.2],"haL":[-54.5,53.5],"hipR":[6.3,34.6],"knR":[-15,183.7],"ftR":[23.9,324.4],"hipL":[-28.7,38.5],"knL":[-48.1,182],"ftL":[-13.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-6.3,-82.5],"neck":[-6.3,-82.5],"head":[-12.4,-153.2],"shR":[31.4,-107.8],"elR":[46.8,-2.7],"haR":[39,60.5],"shL":[-39.5,-111.2],"elL":[-31.7,-12.3],"haL":[-52.3,54.8],"hipR":[6.6,34.5],"knR":[-15.1,183.5],"ftR":[23.5,323.7],"hipL":[-28.5,38.7],"knL":[-49.2,182.2],"ftL":[-14,324.6]},{"rootY":0.6,"hips":[0,0],"chest":[-6.1,-82.6],"neck":[-6.1,-82.6],"head":[-12.3,-153.3],"shR":[31.9,-108.4],"elR":[46.8,-3.2],"haR":[37.7,59.9],"shL":[-39.4,-110.6],"elL":[-31.9,-11.7],"haL":[-51.6,55.6],"hipR":[6.2,34.5],"knR":[-14.5,183.7],"ftR":[23.9,323.9],"hipL":[-28.8,38.5],"knL":[-49.1,182],"ftL":[-13.5,324.1]},{"rootY":0.4,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.4,-153.4],"shR":[32.2,-108.8],"elR":[47.1,-3.6],"haR":[36.8,59.3],"shL":[-39.2,-110.3],"elL":[-31.6,-11.3],"haL":[-51.2,56],"hipR":[6,34.9],"knR":[-15.3,184],"ftR":[23.8,324],"hipL":[-29,38.2],"knL":[-47.8,182],"ftL":[-13.3,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.6,-153.5],"shR":[31.9,-109.1],"elR":[47.2,-4],"haR":[35.9,58.6],"shL":[-38.8,-109.9],"elL":[-31,-10.9],"haL":[-51.3,56.2],"hipR":[5.9,35.2],"knR":[-15.8,184.2],"ftR":[23.9,323.9],"hipL":[-29.2,38],"knL":[-47.5,181.8],"ftL":[-13.2,324.2]},{"rootY":1.2,"hips":[0,0],"chest":[-6,-82.6],"neck":[-6,-82.6],"head":[-13,-153.5],"shR":[31.7,-109.4],"elR":[47.3,-4.3],"haR":[35.2,58.4],"shL":[-38.8,-109.6],"elL":[-31.4,-10.5],"haL":[-53,56.3],"hipR":[6.4,34.8],"knR":[-16,183.7],"ftR":[23.5,323.2],"hipL":[-28.8,38.5],"knL":[-48.2,182.1],"ftL":[-13.5,324.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.3,-82.6],"neck":[-6.3,-82.6],"head":[-13.9,-153.5],"shR":[31.2,-109.3],"elR":[46.9,-4.3],"haR":[34.6,58.6],"shL":[-39.2,-109.7],"elL":[-31.8,-10.4],"haL":[-54.9,56.1],"hipR":[6.3,34.8],"knR":[-16.3,183.7],"ftR":[22.8,322.9],"hipL":[-28.8,38.4],"knL":[-48.7,182.1],"ftL":[-14.2,324.3]},{"rootY":1.1,"hips":[0,0],"chest":[-6.7,-82.6],"neck":[-6.7,-82.6],"head":[-15.4,-153.4],"shR":[30.1,-109.9],"elR":[45.2,-4.8],"haR":[32.8,58.7],"shL":[-39,-109],"elL":[-31.8,-9.7],"haL":[-56.8,56.2],"hipR":[5.9,35.1],"knR":[-17.1,183.9],"ftR":[22.3,323],"hipL":[-29,38.2],"knL":[-48.4,181.9],"ftL":[-14.8,324.2]},{"rootY":1,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-16.9,-153.2],"shR":[30.2,-109.9],"elR":[44.4,-4.6],"haR":[33.2,59.3],"shL":[-39.4,-109.1],"elL":[-32.4,-9.6],"haL":[-59.1,55.8],"hipR":[6,34.9],"knR":[-16.7,183.8],"ftR":[22.1,323.1],"hipL":[-28.7,38.4],"knL":[-48.9,182],"ftL":[-15.1,323.9]},{"rootY":1.2,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-18.9,-152.9],"shR":[29.9,-110.6],"elR":[43.4,-5.2],"haR":[32.8,59.1],"shL":[-39.4,-108.3],"elL":[-32.7,-8.8],"haL":[-61.4,55.7],"hipR":[5.8,34.8],"knR":[-16.6,183.8],"ftR":[21.7,322.9],"hipL":[-28.5,38.5],"knL":[-49,182],"ftL":[-15.2,323.7]},{"rootY":1.4,"hips":[0,0],"chest":[-7.5,-82.5],"neck":[-7.5,-82.5],"head":[-21.5,-152.4],"shR":[30.1,-110.5],"elR":[43.9,-5.1],"haR":[33.5,59.3],"shL":[-41,-108.4],"elL":[-34.3,-8.8],"haL":[-65.1,54.8],"hipR":[5.2,35.1],"knR":[-17.9,184],"ftR":[21.7,322.8],"hipL":[-28.9,38.1],"knL":[-49.3,181.7],"ftL":[-16,323.6]},{"rootY":1.5,"hips":[0,0],"chest":[-7.8,-82.5],"neck":[-7.8,-82.5],"head":[-23.8,-151.8],"shR":[29.5,-110.9],"elR":[44.1,-5.7],"haR":[33.5,58.7],"shL":[-41.4,-107.9],"elL":[-34.5,-8.3],"haL":[-67.1,54.4],"hipR":[5.5,35.2],"knR":[-17.5,184.2],"ftR":[21.2,322.8],"hipL":[-28.6,38.3],"knL":[-49.5,181.8],"ftL":[-16.4,323.5]},{"rootY":1.7,"hips":[0,0],"chest":[-8.1,-82.5],"neck":[-8.1,-82.5],"head":[-26,-151.3],"shR":[29.6,-111.1],"elR":[45.3,-6],"haR":[34.6,58.3],"shL":[-42.6,-107.6],"elL":[-35,-8.1],"haL":[-68.9,53.8],"hipR":[5.9,34.8],"knR":[-16.8,183.8],"ftR":[20.6,322.6],"hipL":[-28.2,38.7],"knL":[-50.1,182.1],"ftL":[-16.8,323.3]},{"rootY":2.3,"hips":[0,0],"chest":[-8.7,-82.4],"neck":[-8.7,-82.4],"head":[-28.2,-150.8],"shR":[29.1,-111.5],"elR":[45.4,-6.5],"haR":[34.6,57.7],"shL":[-44.4,-107.2],"elL":[-36.2,-7.8],"haL":[-70.9,53.5],"hipR":[6,34.9],"knR":[-17.3,183.7],"ftR":[19.7,322.2],"hipL":[-28.2,38.7],"knL":[-50.7,182],"ftL":[-17.4,322.8]},{"rootY":2.6,"hips":[0,0],"chest":[-9.3,-82.3],"neck":[-9.3,-82.3],"head":[-29.9,-150.3],"shR":[29.3,-111.6],"elR":[46.8,-6.8],"haR":[35.7,57],"shL":[-46.3,-106.9],"elL":[-36.9,-7.8],"haL":[-72.1,53.2],"hipR":[6.7,34.6],"knR":[-16.8,183.5],"ftR":[19,321.9],"hipL":[-28,39],"knL":[-51.5,182.1],"ftL":[-18,322.2]},{"rootY":2.9,"hips":[0,0],"chest":[-9.6,-82.3],"neck":[-9.6,-82.3],"head":[-31.1,-150],"shR":[29.5,-111.7],"elR":[48.1,-7.1],"haR":[37.2,56.4],"shL":[-47.8,-106.7],"elL":[-38.1,-7.8],"haL":[-72.8,53.4],"hipR":[7.6,34.1],"knR":[-15.8,182.9],"ftR":[18.8,321.8],"hipL":[-27.8,39.3],"knL":[-52.7,182.2],"ftL":[-18.5,321.1]},{"rootY":3.1,"hips":[0,0],"chest":[-9.9,-82.2],"neck":[-9.9,-82.2],"head":[-31.9,-149.7],"shR":[29.7,-111.9],"elR":[49.4,-7.5],"haR":[38.6,55.8],"shL":[-49.1,-106.5],"elL":[-39,-7.7],"haL":[-72.9,53.9],"hipR":[8.4,34],"knR":[-14.3,182.9],"ftR":[18.4,321.8],"hipL":[-27.8,39.5],"knL":[-53.5,182.2],"ftL":[-18.6,320]},{"rootY":2.9,"hips":[0,0],"chest":[-10.3,-82.2],"neck":[-10.3,-82.2],"head":[-32.6,-149.5],"shR":[30.7,-111.8],"elR":[50.9,-7.5],"haR":[40.4,55.8],"shL":[-51.2,-106.6],"elL":[-40.9,-7.9],"haL":[-73.3,54.6],"hipR":[9.2,34.1],"knR":[-13.3,183.1],"ftR":[18,321.7],"hipL":[-27.8,39.6],"knL":[-55,182],"ftL":[-19.4,318.6]},{"rootY":3.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.7,-149.4],"shR":[31,-112.1],"elR":[51.6,-7.9],"haR":[42.5,55.3],"shL":[-52.2,-106.1],"elL":[-41.6,-7.7],"haL":[-72.6,55.5],"hipR":[9.7,34],"knR":[-11.4,183.2],"ftR":[18.4,322],"hipL":[-27.9,39.6],"knL":[-58.1,181.3],"ftL":[-20.5,315.9]},{"rootY":2.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.5,-149.4],"shR":[32.3,-111.4],"elR":[53.6,-7.3],"haR":[45.4,56],"shL":[-53.6,-106.8],"elL":[-42.6,-8.5],"haL":[-71.8,55.6],"hipR":[10.2,33.8],"knR":[-8.5,183.2],"ftR":[18.7,322.9],"hipL":[-27.9,39.6],"knL":[-62,180.2],"ftL":[-22.4,312.2]},{"rootY":2.6,"hips":[0,0],"chest":[-10.6,-82],"neck":[-10.6,-82],"head":[-32.3,-149.4],"shR":[32.3,-111.6],"elR":[53.8,-7.6],"haR":[47.1,55.7],"shL":[-54.5,-106.5],"elL":[-43.5,-8.3],"haL":[-71.2,56.5],"hipR":[11.2,33.6],"knR":[-6.7,183.1],"ftR":[18.8,322.6],"hipL":[-27.6,39.9],"knL":[-66.2,179],"ftL":[-23.6,308.4]},{"rootY":2.5,"hips":[0,0],"chest":[-10.3,-82],"neck":[-10.3,-82],"head":[-31.9,-149.4],"shR":[33.5,-111.1],"elR":[55.4,-7.3],"haR":[50.3,56.4],"shL":[-54.9,-107],"elL":[-43.6,-8.9],"haL":[-69.6,56.7],"hipR":[11.8,33.2],"knR":[-4.2,182.8],"ftR":[19.9,322.7],"hipL":[-27.5,40.1],"knL":[-70,177.5],"ftL":[-24.4,304.7]},{"rootY":2.3,"hips":[0,0],"chest":[-9.8,-82],"neck":[-9.8,-82],"head":[-30.8,-149.5],"shR":[34.6,-110.7],"elR":[56.6,-6.9],"haR":[53,57],"shL":[-55.1,-107.5],"elL":[-43.3,-9.5],"haL":[-68,56.6],"hipR":[12.8,33.1],"knR":[-1.2,182.7],"ftR":[21.7,322.8],"hipL":[-27.4,40.2],"knL":[-72.5,176.2],"ftL":[-25.6,302.3]},{"rootY":1.7,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-29.9,-149.5],"shR":[35.9,-110.3],"elR":[57.7,-6.4],"haR":[56.4,58.2],"shL":[-55.2,-107.9],"elL":[-42.9,-10.2],"haL":[-66.1,56.5],"hipR":[13.3,32.9],"knR":[1.4,182.7],"ftR":[23.4,323],"hipL":[-27.5,40.2],"knL":[-74.7,174.9],"ftL":[-28.5,301.6]},{"rootY":1,"hips":[0,0],"chest":[-9.2,-82],"neck":[-9.2,-82],"head":[-29.2,-149.6],"shR":[36.7,-109.8],"elR":[58,-6],"haR":[58.7,59.2],"shL":[-55.6,-108.3],"elL":[-42.4,-11],"haL":[-64.8,56],"hipR":[13.5,33.6],"knR":[3.7,183.3],"ftR":[26,323.4],"hipL":[-27.9,39.9],"knL":[-76.6,173.4],"ftL":[-33.7,303]},{"rootY":1,"hips":[0,0],"chest":[-9,-81.9],"neck":[-9,-81.9],"head":[-28.3,-149.6],"shR":[37.5,-109.2],"elR":[58,-5.3],"haR":[60.3,60.7],"shL":[-55.7,-108.8],"elL":[-41.6,-11.9],"haL":[-63.1,55.4],"hipR":[13.8,33.8],"knR":[6,183.5],"ftR":[29.2,323.1],"hipL":[-28,39.9],"knL":[-77.9,172.1],"ftL":[-39.9,306.1]},{"rootY":0.9,"hips":[0,0],"chest":[-8.8,-81.9],"neck":[-8.8,-81.9],"head":[-27.2,-149.6],"shR":[38,-108.8],"elR":[57.5,-4.6],"haR":[61.7,61.8],"shL":[-55.8,-109.2],"elL":[-41,-12.6],"haL":[-61.6,54.9],"hipR":[14.4,33.9],"knR":[8.9,183.5],"ftR":[32,323.1],"hipL":[-27.7,40],"knL":[-79.1,170.8],"ftL":[-47.4,309.5]},{"rootY":0.3,"hips":[0,0],"chest":[-8.7,-81.7],"neck":[-8.7,-81.7],"head":[-26.7,-149.5],"shR":[38.9,-107.7],"elR":[57.5,-3.5],"haR":[62.9,63.5],"shL":[-56.2,-110],"elL":[-40.9,-14],"haL":[-60.7,53.8],"hipR":[14.9,33.8],"knR":[12.1,183.1],"ftR":[35.6,322.4],"hipL":[-27.4,40.2],"knL":[-79.8,169.9],"ftL":[-55.6,313.1]},{"rootY":0,"hips":[0,0],"chest":[-8.7,-81.6],"neck":[-8.7,-81.6],"head":[-26,-149.4],"shR":[39,-107],"elR":[56.9,-2.7],"haR":[63.2,64.7],"shL":[-56.2,-110.5],"elL":[-40.8,-14.8],"haL":[-59.9,53.2],"hipR":[15.3,33.8],"knR":[15.7,182.6],"ftR":[39.1,322.2],"hipL":[-27.2,40.4],"knL":[-80.3,168.9],"ftL":[-63.9,316]},{"rootY":-0.6,"hips":[0,0],"chest":[-8.8,-81.4],"neck":[-8.8,-81.4],"head":[-25.6,-149.2],"shR":[39,-106.1],"elR":[56.5,-1.9],"haR":[62.4,65.9],"shL":[-56.4,-111],"elL":[-40.9,-15.7],"haL":[-59.8,52.3],"hipR":[15.9,33.6],"knR":[20,181.7],"ftR":[42.9,322],"hipL":[-26.9,40.6],"knL":[-80.1,168.2],"ftL":[-72.2,318]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.8,-81.3],"neck":[-8.8,-81.3],"head":[-25.1,-149],"shR":[39.3,-105.3],"elR":[56.1,-1.2],"haR":[61.5,66.9],"shL":[-56.8,-111.6],"elL":[-40.9,-16.8],"haL":[-60,51.2],"hipR":[15.9,34],"knR":[24,181],"ftR":[47.1,321.7],"hipL":[-26.9,40.6],"knL":[-79.6,167.3],"ftL":[-79.1,318.7]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-81.1],"neck":[-9.4,-81.1],"head":[-24.9,-148.6],"shR":[39.2,-104.6],"elR":[55.6,-0.6],"haR":[60,67.7],"shL":[-57.9,-112],"elL":[-41.6,-17.6],"haL":[-60.6,50.4],"hipR":[16.3,33.8],"knR":[30.3,178.4],"ftR":[50.9,320.9],"hipL":[-26.6,40.8],"knL":[-79,166.9],"ftL":[-84.9,318.6]},{"rootY":0.8,"hips":[0,0],"chest":[-9.6,-80.9],"neck":[-9.6,-80.9],"head":[-25.1,-148.5],"shR":[39.4,-104.1],"elR":[55,-0.2],"haR":[58.5,68.3],"shL":[-58.6,-112.2],"elL":[-42.3,-18.2],"haL":[-61.5,49.7],"hipR":[17.2,33.5],"knR":[36.3,175.5],"ftR":[55.5,319],"hipL":[-26,41.2],"knL":[-77.5,166.4],"ftL":[-88.6,317.8]},{"rootY":1.6,"hips":[0,0],"chest":[-10.2,-80.8],"neck":[-10.2,-80.8],"head":[-25.7,-148.3],"shR":[39.3,-103.7],"elR":[54.1,0.1],"haR":[56.1,68.6],"shL":[-60,-112.2],"elL":[-43.5,-18.8],"haL":[-63,49.1],"hipR":[18,33.7],"knR":[39,174.6],"ftR":[60.2,317],"hipL":[-26,41.2],"knL":[-75.1,166.5],"ftL":[-89.9,317.3]},{"rootY":2.9,"hips":[0,0],"chest":[-10,-80.7],"neck":[-10,-80.7],"head":[-25.1,-148.1],"shR":[40,-103.7],"elR":[54,-0.1],"haR":[54.8,68.5],"shL":[-60.6,-112],"elL":[-44.2,-19],"haL":[-63.6,48.9],"hipR":[19.2,33.2],"knR":[42.5,173.1],"ftR":[66,314.5],"hipL":[-25,41.8],"knL":[-72.4,167],"ftL":[-87.6,317.6]},{"rootY":3.7,"hips":[0,0],"chest":[-10.4,-80.6],"neck":[-10.4,-80.6],"head":[-24.9,-148.1],"shR":[39.9,-104],"elR":[53.2,-0.6],"haR":[53,67.9],"shL":[-61.8,-111.5],"elL":[-46,-18.5],"haL":[-65.2,49.5],"hipR":[20,33.4],"knR":[45.5,172],"ftR":[71.3,312.1],"hipL":[-24.9,41.9],"knL":[-69.5,167.9],"ftL":[-81.6,318.9]},{"rootY":4.1,"hips":[0,0],"chest":[-11.8,-80.6],"neck":[-11.8,-80.6],"head":[-26.1,-148.2],"shR":[39.2,-104.1],"elR":[52.6,-0.8],"haR":[51.4,67.6],"shL":[-64.1,-111.4],"elL":[-48.8,-18.3],"haL":[-67.7,49.7],"hipR":[20.7,33.5],"knR":[48.4,170.7],"ftR":[76.4,309.2],"hipL":[-25,41.9],"knL":[-67.1,169],"ftL":[-73.9,320.5]},{"rootY":3.8,"hips":[0,0],"chest":[-10.9,-80.5],"neck":[-10.9,-80.5],"head":[-25.4,-148.3],"shR":[40.2,-105.2],"elR":[53.3,-2.2],"haR":[51.8,66.1],"shL":[-63.9,-110.1],"elL":[-49.6,-16.6],"haL":[-67.8,51.6],"hipR":[20.8,34],"knR":[52.1,169.7],"ftR":[83.7,306.8],"hipL":[-25.5,41.6],"knL":[-61.2,170.2],"ftL":[-64.7,322]},{"rootY":2.2,"hips":[0,0],"chest":[-10.9,-80.7],"neck":[-10.9,-80.7],"head":[-25.6,-148.6],"shR":[40.9,-105.6],"elR":[54.6,-2.5],"haR":[52.5,65.6],"shL":[-64.6,-110.1],"elL":[-51.5,-16.1],"haL":[-69.1,52.2],"hipR":[21,34.2],"knR":[55.2,168.6],"ftR":[89.8,304.4],"hipL":[-25.7,41.4],"knL":[-57.4,172.3],"ftL":[-57,324.1]},{"rootY":1.5,"hips":[0,0],"chest":[-11.1,-80.8],"neck":[-11.1,-80.8],"head":[-25.5,-148.8],"shR":[41.3,-106.3],"elR":[54.6,-3.1],"haR":[52.6,64.9],"shL":[-65.5,-109.7],"elL":[-53.8,-15.1],"haL":[-71.2,53.3],"hipR":[20.8,34.4],"knR":[48.1,176.1],"ftR":[94.6,300.2],"hipL":[-26.2,41.1],"knL":[-56.5,173.9],"ftL":[-50.8,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[-11.1,-81],"neck":[-11.1,-81],"head":[-25.2,-149.2],"shR":[42,-107.3],"elR":[55.2,-3.9],"haR":[53.2,63.8],"shL":[-66.2,-109],"elL":[-56.6,-13.7],"haL":[-74.1,54.7],"hipR":[20.1,35.2],"knR":[41.1,181.8],"ftR":[97.5,293.5],"hipL":[-27.4,40.3],"knL":[-53.4,176],"ftL":[-43.6,327.5]},{"rootY":-1.4,"hips":[0,0],"chest":[-11.1,-81.2],"neck":[-11.1,-81.2],"head":[-24.8,-149.6],"shR":[42.9,-107.7],"elR":[55.9,-3.8],"haR":[53.6,63.1],"shL":[-67,-109],"elL":[-59.3,-13.2],"haL":[-77.8,54.9],"hipR":[18.8,35.9],"knR":[33,185.3],"ftR":[97.6,285.7],"hipL":[-28.9,39.2],"knL":[-49,177.7],"ftL":[-35.7,328.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-10.9,-81.3],"neck":[-10.9,-81.3],"head":[-24.6,-149.8],"shR":[44.1,-108.1],"elR":[56.6,-3.7],"haR":[53.9,62.6],"shL":[-67.5,-108.7],"elL":[-62.5,-12.5],"haL":[-82.5,55.2],"hipR":[17.5,36.3],"knR":[23.7,186.9],"ftR":[94.2,278.3],"hipL":[-30.3,38.2],"knL":[-43.7,179],"ftL":[-27.6,329.9]},{"rootY":-2.8,"hips":[0,0],"chest":[-10.3,-81.5],"neck":[-10.3,-81.5],"head":[-23.3,-150.1],"shR":[45.5,-108.3],"elR":[57.6,-3.5],"haR":[54.6,61.7],"shL":[-67.3,-109],"elL":[-64.9,-12],"haL":[-86.5,54.9],"hipR":[16.5,36.7],"knR":[15.8,186.7],"ftR":[90.9,270.3],"hipL":[-31.3,37.4],"knL":[-39.1,179.7],"ftL":[-19.6,330]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.9,-81.6],"neck":[-9.9,-81.6],"head":[-23.2,-150.3],"shR":[46.3,-108.5],"elR":[57.9,-3.5],"haR":[54.6,60.6],"shL":[-67.1,-108.9],"elL":[-67.5,-11.3],"haL":[-91.5,54.4],"hipR":[14.9,37.1],"knR":[4.8,185.3],"ftR":[83.5,267.4],"hipL":[-31.8,36.9],"knL":[-34.3,180.4],"ftL":[-13.1,330.6]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.4,-81.8],"neck":[-9.4,-81.8],"head":[-21.9,-150.6],"shR":[47.2,-108.4],"elR":[58.4,-3.3],"haR":[55.2,59.3],"shL":[-66.4,-109.4],"elL":[-69.2,-11.3],"haL":[-95.5,52.7],"hipR":[13.6,37.2],"knR":[-5.1,182.8],"ftR":[75.4,267.8],"hipL":[-32.8,36.1],"knL":[-29.8,180.3],"ftL":[-6.2,330.1]},{"rootY":-2.8,"hips":[0,0],"chest":[-9.1,-81.9],"neck":[-9.1,-81.9],"head":[-21.4,-150.9],"shR":[47.8,-108.4],"elR":[59.2,-3.1],"haR":[55.7,58.4],"shL":[-65.9,-109.7],"elL":[-71.1,-11.4],"haL":[-99.6,50.5],"hipR":[12.6,37.3],"knR":[-15.2,179.6],"ftR":[65.7,271],"hipL":[-33.1,35.7],"knL":[-27.2,180.2],"ftL":[0.3,329.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-21.9,-150.9],"shR":[47.4,-108.3],"elR":[59,-2.9],"haR":[55.4,57.9],"shL":[-65.5,-109.8],"elL":[-72.6,-11.3],"haL":[-102.8,48.2],"hipR":[11.8,37.4],"knR":[-25.1,175.8],"ftR":[54.8,276.8],"hipL":[-33.1,35.7],"knL":[-27.8,180.2],"ftL":[5.8,327.3]},{"rootY":0.8,"hips":[0,0],"chest":[-10.2,-81.9],"neck":[-10.2,-81.9],"head":[-22.6,-151],"shR":[46.3,-108.4],"elR":[58.4,-3.1],"haR":[55,57.4],"shL":[-66.3,-109.5],"elL":[-75.1,-10.9],"haL":[-106.9,45.8],"hipR":[10.2,37.7],"knR":[-34.9,172],"ftR":[40.7,284.6],"hipL":[-33.8,35],"knL":[-27.2,179.6],"ftL":[11.3,325]},{"rootY":1.6,"hips":[0,0],"chest":[-11.1,-81.9],"neck":[-11.1,-81.9],"head":[-23.4,-150.9],"shR":[44.8,-108.4],"elR":[57.5,-3],"haR":[54.8,57.6],"shL":[-66.7,-109.5],"elL":[-77,-11],"haL":[-109.8,43],"hipR":[9.3,38.2],"knR":[-42.5,169],"ftR":[24.1,294.7],"hipL":[-33.6,35],"knL":[-25.6,179.6],"ftL":[16.7,323.5]},{"rootY":3.1,"hips":[0,0],"chest":[-11.6,-81.8],"neck":[-11.6,-81.8],"head":[-24.6,-150.7],"shR":[43.6,-108.2],"elR":[57.6,-3],"haR":[55,57.8],"shL":[-66.5,-109.5],"elL":[-77.4,-10.9],"haL":[-110.9,40.7],"hipR":[9.9,38.6],"knR":[-46.4,166.2],"ftR":[4.7,304.4],"hipL":[-33.1,35.3],"knL":[-23.3,179.9],"ftL":[22.9,321.9]},{"rootY":3.7,"hips":[0,0],"chest":[-12.5,-81.6],"neck":[-12.5,-81.6],"head":[-25.8,-150.5],"shR":[41.9,-108.5],"elR":[56.6,-3.4],"haR":[54.9,58.3],"shL":[-66.9,-108.9],"elL":[-77.8,-10.3],"haL":[-111.9,39.5],"hipR":[8.8,38.8],"knR":[-49.9,165.5],"ftR":[-17.6,312.4],"hipL":[-33.3,34.9],"knL":[-18.2,179.2],"ftL":[28.6,321]},{"rootY":3.2,"hips":[0,0],"chest":[-13.2,-81.5],"neck":[-13.2,-81.5],"head":[-27,-150.2],"shR":[40.2,-108.7],"elR":[56.3,-3.8],"haR":[54.9,58.6],"shL":[-67.1,-108.6],"elL":[-77.4,-10],"haL":[-111.7,38.7],"hipR":[7.9,38.9],"knR":[-50.7,166.5],"ftR":[-40.4,318.1],"hipL":[-33.1,34.9],"knL":[-12.9,178.4],"ftL":[34.4,319.9]},{"rootY":4,"hips":[0,0],"chest":[-13.4,-81.5],"neck":[-13.4,-81.5],"head":[-28.1,-149.9],"shR":[39.2,-108.7],"elR":[56.3,-4.1],"haR":[55.6,59.1],"shL":[-66.7,-108.5],"elL":[-76.2,-9.9],"haL":[-110.5,38.4],"hipR":[7.3,39.3],"knR":[-50.9,167.5],"ftR":[-63.2,319.3],"hipL":[-32.8,34.8],"knL":[-5.7,176.7],"ftL":[40.7,318.5]},{"rootY":5.1,"hips":[0,0],"chest":[-14.1,-81.5],"neck":[-14.1,-81.5],"head":[-30.1,-149.6],"shR":[37.5,-108.4],"elR":[55.3,-4],"haR":[55.4,59.9],"shL":[-66.6,-108.9],"elL":[-75.2,-10.3],"haL":[-109.2,38.4],"hipR":[5.9,38.9],"knR":[-55.6,167.8],"ftR":[-76.8,318.4],"hipL":[-32.7,34.7],"knL":[5.7,172.3],"ftL":[46,316.3]},{"rootY":6.8,"hips":[0,0],"chest":[-13.9,-81.5],"neck":[-13.9,-81.5],"head":[-30.3,-149.5],"shR":[37.2,-107.6],"elR":[56.5,-3.5],"haR":[56.4,61.3],"shL":[-65.5,-109.8],"elL":[-72.5,-11.3],"haL":[-106.2,38.8],"hipR":[5.6,39.1],"knR":[-56.1,168.5],"ftR":[-82.1,318.4],"hipL":[-32.7,34.6],"knL":[8.9,170.7],"ftL":[52.5,313.1]},{"rootY":6.8,"hips":[0,0],"chest":[-12.4,-81.6],"neck":[-12.4,-81.6],"head":[-28.7,-149.6],"shR":[38.4,-107.9],"elR":[57.1,-3.9],"haR":[58.2,61.5],"shL":[-63.5,-109.6],"elL":[-68.7,-11.4],"haL":[-101.7,41.1],"hipR":[6.8,39.5],"knR":[-54.1,169.4],"ftR":[-80.2,319.3],"hipL":[-32.5,34.8],"knL":[12.3,169.2],"ftL":[59.2,309.8]},{"rootY":6.8,"hips":[0,0],"chest":[-11.3,-81.7],"neck":[-11.3,-81.7],"head":[-27.8,-149.6],"shR":[39.5,-106.8],"elR":[57.5,-2.7],"haR":[59.4,63.5],"shL":[-61.7,-111],"elL":[-64.5,-13.1],"haL":[-96.8,42.4],"hipR":[6.4,39.3],"knR":[-54.9,169.7],"ftR":[-76.1,320.2],"hipL":[-32.5,34.8],"knL":[15,167.4],"ftL":[64.7,306.2]},{"rootY":5.8,"hips":[0,0],"chest":[-10.6,-81.8],"neck":[-10.6,-81.8],"head":[-25.6,-149.7],"shR":[40.1,-106.4],"elR":[56.8,-2.2],"haR":[60,64.8],"shL":[-60.3,-111.5],"elL":[-60.1,-13.7],"haL":[-90.5,45.7],"hipR":[6.6,39],"knR":[-54.1,170.7],"ftR":[-70.1,321.4],"hipL":[-32,35.3],"knL":[7.9,171],"ftL":[66.1,303]},{"rootY":4.6,"hips":[0,0],"chest":[-9,-82],"neck":[-9,-82],"head":[-24,-149.7],"shR":[41.1,-105.4],"elR":[57.2,-1.4],"haR":[61,66],"shL":[-56.6,-112.8],"elL":[-53.9,-15],"haL":[-81.4,47.9],"hipR":[6.6,38.2],"knR":[-50.8,172.2],"ftR":[-61.6,322.5],"hipL":[-31.6,35.8],"knL":[-4.7,176],"ftL":[64,297.5]},{"rootY":3,"hips":[0,0],"chest":[-8.7,-82.1],"neck":[-8.7,-82.1],"head":[-25.3,-149.6],"shR":[41.5,-104.8],"elR":[56.7,-0.5],"haR":[60.9,67.3],"shL":[-56.3,-113.7],"elL":[-52,-15.9],"haL":[-76.2,49.7],"hipR":[6.3,37.3],"knR":[-48,174.2],"ftR":[-54.6,323.8],"hipL":[-31.7,36],"knL":[-19.8,179.2],"ftL":[56.6,289.9]},{"rootY":2,"hips":[0,0],"chest":[-8,-82.1],"neck":[-8,-82.1],"head":[-23,-150],"shR":[42.2,-105.7],"elR":[56.2,-1.1],"haR":[60.3,66.9],"shL":[-55.3,-112.8],"elL":[-50.2,-15.1],"haL":[-71.2,52.1],"hipR":[6.6,36.2],"knR":[-43.1,176.1],"ftR":[-47.7,324.9],"hipL":[-31.4,36.5],"knL":[-34.5,181],"ftL":[46.9,282.5]},{"rootY":0.7,"hips":[0,0],"chest":[-7,-82.2],"neck":[-7,-82.2],"head":[-22.2,-150],"shR":[43.4,-104.2],"elR":[56.8,0.6],"haR":[59.7,68.5],"shL":[-53.9,-114.4],"elL":[-48.8,-16.8],"haL":[-67.3,51.4],"hipR":[8.7,35.5],"knR":[-36.1,177.7],"ftR":[-40.8,326],"hipL":[-30.8,37.4],"knL":[-46.7,181.5],"ftL":[36,276.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-82.3],"neck":[-6.4,-82.3],"head":[-21,-150],"shR":[43.3,-107.2],"elR":[55.3,-2.1],"haR":[57,65.5],"shL":[-52.4,-111.4],"elL":[-46.9,-14.3],"haL":[-64.6,54.1],"hipR":[9.2,34.3],"knR":[-31.1,178.8],"ftR":[-34.4,326.4],"hipL":[-30.8,37.6],"knL":[-58.3,180.1],"ftL":[24.3,270.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-7.2,-82.4],"neck":[-7.2,-82.4],"head":[-18.8,-150],"shR":[42.7,-106.6],"elR":[54.1,-1.3],"haR":[54.1,64.8],"shL":[-53,-112.1],"elL":[-46.4,-15.1],"haL":[-63.6,53.4],"hipR":[9.7,34.1],"knR":[-27.6,179.9],"ftR":[-29.2,326.4],"hipL":[-31.3,37.3],"knL":[-68.2,177.4],"ftL":[10.3,267.9]},{"rootY":-2.1,"hips":[0,0],"chest":[-5.7,-82.5],"neck":[-5.7,-82.5],"head":[-19.5,-150],"shR":[44.2,-106.2],"elR":[55.7,-0.9],"haR":[52.2,64.7],"shL":[-51.5,-112.7],"elL":[-43.3,-15.8],"haL":[-60.3,52.6],"hipR":[12,33.6],"knR":[-19.7,180.8],"ftR":[-21.9,327],"hipL":[-31,37.6],"knL":[-73.5,175.1],"ftL":[-1.7,270]},{"rootY":-1.6,"hips":[0,0],"chest":[-5.6,-82.5],"neck":[-5.6,-82.5],"head":[-19.9,-150],"shR":[44.7,-106.5],"elR":[56.2,-1],"haR":[49.8,63],"shL":[-52,-112.5],"elL":[-42,-15.9],"haL":[-59.1,52.5],"hipR":[13.7,32.9],"knR":[-15.3,180.8],"ftR":[-16.1,326.1],"hipL":[-30.5,38],"knL":[-78.3,172.3],"ftL":[-16.7,274.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-5,-82.5],"neck":[-5,-82.5],"head":[-19,-150.1],"shR":[46.3,-106.2],"elR":[58.2,-0.8],"haR":[48.8,61.1],"shL":[-52.6,-112.8],"elL":[-41.3,-16.6],"haL":[-58.6,51.8],"hipR":[15.3,32.9],"knR":[-10.7,181.4],"ftR":[-9.9,325.6],"hipL":[-30.1,38.2],"knL":[-80.3,169.3],"ftL":[-31.4,281.6]},{"rootY":-1.1,"hips":[0,0],"chest":[-4.1,-82.5],"neck":[-4.1,-82.5],"head":[-17.8,-150],"shR":[47.7,-107],"elR":[59.9,-1.5],"haR":[47.9,57.8],"shL":[-52.8,-112],"elL":[-40.9,-16],"haL":[-58.2,52.4],"hipR":[17.3,32.6],"knR":[-5.2,181.5],"ftR":[-3.8,325.1],"hipL":[-29.4,38.7],"knL":[-79.7,166.9],"ftL":[-45.6,290.3]},{"rootY":-0.7,"hips":[0,0],"chest":[-4.2,-82.4],"neck":[-4.2,-82.4],"head":[-18,-149.9],"shR":[48.8,-106.7],"elR":[61.4,-1.2],"haR":[47,55.4],"shL":[-54.2,-112.2],"elL":[-41.9,-16.4],"haL":[-59.7,52],"hipR":[18.1,32.7],"knR":[-1.6,181.9],"ftR":[1.4,324.6],"hipL":[-29.3,38.6],"knL":[-78.1,165.3],"ftL":[-59.4,299.6]},{"rootY":-0.3,"hips":[0,0],"chest":[-3.8,-82.3],"neck":[-3.8,-82.3],"head":[-17.4,-149.7],"shR":[50,-106.4],"elR":[63.3,-1],"haR":[47.2,53.6],"shL":[-54.7,-112.4],"elL":[-42.8,-16.5],"haL":[-60.7,51.8],"hipR":[19.9,32.7],"knR":[3,182.1],"ftR":[6.2,324.3],"hipL":[-28.6,39],"knL":[-74.3,165.1],"ftL":[-70.7,308.2]},{"rootY":0.9,"hips":[0,0],"chest":[-4.4,-82.3],"neck":[-4.4,-82.3],"head":[-16.1,-149.7],"shR":[50,-106.9],"elR":[63.4,-1.5],"haR":[46.4,51.1],"shL":[-56.4,-111.9],"elL":[-45.4,-16.2],"haL":[-63.5,52],"hipR":[20.2,32.9],"knR":[5.3,181.9],"ftR":[10.1,322.9],"hipL":[-28.7,38.9],"knL":[-71.9,165.7],"ftL":[-80.9,314.4]},{"rootY":2.1,"hips":[0,0],"chest":[-4.2,-82.3],"neck":[-4.2,-82.3],"head":[-17.5,-149.5],"shR":[51,-108],"elR":[65.2,-2.7],"haR":[47.7,48.3],"shL":[-57.7,-110.6],"elL":[-47.7,-14.7],"haL":[-65.8,53.4],"hipR":[21.4,32.6],"knR":[10.3,181.2],"ftR":[15.1,321.8],"hipL":[-27.9,39.4],"knL":[-68.6,166.8],"ftL":[-87.1,317.1]},{"rootY":2.8,"hips":[0,0],"chest":[-4.1,-82.3],"neck":[-4.1,-82.3],"head":[-15.7,-149.6],"shR":[52.6,-107.4],"elR":[67.6,-2.3],"haR":[50.6,47.6],"shL":[-59.2,-111.2],"elL":[-50.6,-15.2],"haL":[-68.9,52.6],"hipR":[22.7,33.3],"knR":[14.9,181.6],"ftR":[21.1,321.6],"hipL":[-27.8,39.3],"knL":[-63.9,167.7],"ftL":[-86,317.9]},{"rootY":4.1,"hips":[0,0],"chest":[-4,-82.2],"neck":[-4,-82.2],"head":[-16.6,-149.1],"shR":[53.3,-108.8],"elR":[68.8,-3.7],"haR":[53.3,45.6],"shL":[-60.6,-109.6],"elL":[-53.5,-13.5],"haL":[-72.5,54.1],"hipR":[23.7,33.1],"knR":[18.4,180.6],"ftR":[26.1,319.8],"hipL":[-27.1,39.7],"knL":[-61.2,167.8],"ftL":[-81.1,318.3]},{"rootY":5,"hips":[0,0],"chest":[-4.5,-82.1],"neck":[-4.5,-82.1],"head":[-16.8,-149.5],"shR":[54.4,-108.4],"elR":[70.9,-3.4],"haR":[57.3,46.1],"shL":[-63.3,-110.1],"elL":[-57.5,-13.6],"haL":[-77.2,53.5],"hipR":[24.1,33.1],"knR":[21.3,179.7],"ftR":[31.2,317.1],"hipL":[-27.3,39.3],"knL":[-57.1,168.6],"ftL":[-71.1,319.8]},{"rootY":4.7,"hips":[0,0],"chest":[-4.7,-82.3],"neck":[-4.7,-82.3],"head":[-16.7,-149.4],"shR":[54.2,-108.4],"elR":[70.9,-3.5],"haR":[60.9,47.1],"shL":[-63.3,-110.4],"elL":[-59,-13.6],"haL":[-79.6,52.9],"hipR":[25.4,32.8],"knR":[23.5,179.1],"ftR":[36.1,313.9],"hipL":[-26.5,39.6],"knL":[-49.1,170.2],"ftL":[-61.3,321.3]},{"rootY":4,"hips":[0,0],"chest":[-5.6,-82.2],"neck":[-5.6,-82.2],"head":[-17.4,-149.1],"shR":[53.8,-109.7],"elR":[70.8,-5],"haR":[64.6,46.9],"shL":[-65.2,-108.4],"elL":[-62.5,-11.5],"haL":[-84.3,54.4],"hipR":[25.8,33.4],"knR":[21.7,181.5],"ftR":[39.3,309.4],"hipL":[-26.7,39.2],"knL":[-44.4,171.5],"ftL":[-55.3,322.2]},{"rootY":2.6,"hips":[0,0],"chest":[-7.7,-82.1],"neck":[-7.7,-82.1],"head":[-19.7,-148.7],"shR":[52,-109.7],"elR":[68.8,-5.1],"haR":[66.2,48],"shL":[-68.6,-108.5],"elL":[-67.5,-11.2],"haL":[-89.5,53.9],"hipR":[25.1,34.2],"knR":[16.3,184.1],"ftR":[37.4,301.5],"hipL":[-27.6,38.7],"knL":[-46,172.7],"ftL":[-53.4,323.4]},{"rootY":1.7,"hips":[0,0],"chest":[-7.6,-82],"neck":[-7.6,-82],"head":[-19.9,-148.5],"shR":[52.4,-110.9],"elR":[69.7,-6.4],"haR":[70,47.9],"shL":[-70.1,-107],"elL":[-71,-9.2],"haL":[-93.9,55.4],"hipR":[25.6,34.5],"knR":[14.7,184.7],"ftR":[34.4,290.5],"hipL":[-27.6,38.1],"knL":[-43.5,174.7],"ftL":[-48.7,325.3]},{"rootY":-0.6,"hips":[0,0],"chest":[-6.3,-82],"neck":[-6.3,-82],"head":[-19.1,-149.2],"shR":[54.2,-109.5],"elR":[72,-5],"haR":[74.8,50],"shL":[-69.3,-108.7],"elL":[-73.2,-10.5],"haL":[-96,53.4],"hipR":[24.6,35.5],"knR":[15,184.5],"ftR":[33.2,277.7],"hipL":[-29,36.4],"knL":[-40.2,176.7],"ftL":[-42.8,327.1]},{"rootY":-2.1,"hips":[0,0],"chest":[-8,-81.9],"neck":[-8,-81.9],"head":[-19.1,-148.5],"shR":[53.5,-112.5],"elR":[71.7,-8.3],"haR":[76.9,46.6],"shL":[-73.7,-104.8],"elL":[-81,-7],"haL":[-103.8,56.4],"hipR":[24.5,35.5],"knR":[13.6,181.3],"ftR":[28.1,264.9],"hipL":[-29.1,36.3],"knL":[-39.2,178.1],"ftL":[-41.4,328.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-9,-82.2],"neck":[-9,-82.2],"head":[-18.1,-147.9],"shR":[53.2,-113.3],"elR":[71.9,-9.3],"haR":[79.4,44.8],"shL":[-76.4,-104.5],"elL":[-85.8,-5.7],"haL":[-109.3,57.5],"hipR":[23.6,36.3],"knR":[16.6,178.9],"ftR":[26.2,254.2],"hipL":[-30.3,34.6],"knL":[-36.6,178.3],"ftL":[-37.1,328.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-9.9,-82.1],"neck":[-9.9,-82.1],"head":[-18,-147.3],"shR":[52.8,-112.8],"elR":[72.2,-9],"haR":[83.6,43.6],"shL":[-77.5,-104.8],"elL":[-90.3,-6.3],"haL":[-113.3,56.6],"hipR":[24.4,35.7],"knR":[16.2,173.9],"ftR":[22.3,246],"hipL":[-29.5,35.1],"knL":[-35.9,179.6],"ftL":[-37.1,330.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-10,-81.8],"neck":[-10,-81.8],"head":[-17.4,-148.7],"shR":[52.6,-112.2],"elR":[73.1,-8.6],"haR":[88.2,42.4],"shL":[-77.8,-105.4],"elL":[-92.1,-6.7],"haL":[-115.8,54.8],"hipR":[23.9,35.5],"knR":[15.2,169.5],"ftR":[18.5,242.3],"hipL":[-29.9,35.1],"knL":[-36.4,179.9],"ftL":[-37.6,330.3]},{"rootY":-4.4,"hips":[0,0],"chest":[-10.2,-81.8],"neck":[-10.2,-81.8],"head":[-17.4,-148.6],"shR":[53.1,-111.3],"elR":[75,-8.1],"haR":[94.3,40.5],"shL":[-77.8,-106],"elL":[-94.6,-8],"haL":[-117,53.5],"hipR":[23.6,36],"knR":[16.1,164.5],"ftR":[18.8,244.8],"hipL":[-30.2,34.6],"knL":[-35.2,179.6],"ftL":[-35,329.8]},{"rootY":-3.7,"hips":[0,0],"chest":[-10,-81.6],"neck":[-10,-81.6],"head":[-16.7,-148.6],"shR":[53.4,-111],"elR":[76.8,-8.3],"haR":[100.7,37.5],"shL":[-77.9,-106.1],"elL":[-97,-7.4],"haL":[-118.4,55.1],"hipR":[24.6,36],"knR":[16.6,159.3],"ftR":[18.2,250.3],"hipL":[-29.5,34.6],"knL":[-33.3,179.6],"ftL":[-31.9,328.7]},{"rootY":-3.4,"hips":[0,0],"chest":[-10.7,-81.4],"neck":[-10.7,-81.4],"head":[-16.5,-148.5],"shR":[52.9,-110.5],"elR":[78.1,-8.2],"haR":[106.7,34.4],"shL":[-78.6,-106.4],"elL":[-98.2,-8.5],"haL":[-119.7,47.7],"hipR":[24.2,36],"knR":[14.9,156.1],"ftR":[15.2,260.2],"hipL":[-29.6,35.4],"knL":[-34.9,180.4],"ftL":[-32,328.6]},{"rootY":-2.2,"hips":[0,0],"chest":[-11.1,-81.4],"neck":[-11.1,-81.4],"head":[-15.6,-148],"shR":[52.5,-110.3],"elR":[79.8,-8.6],"haR":[113.2,30.5],"shL":[-79.2,-106.3],"elL":[-99.8,-8.5],"haL":[-120.5,49.1],"hipR":[22.4,37.2],"knR":[16.1,154.9],"ftR":[12.8,272.1],"hipL":[-31.4,33.4],"knL":[-33.8,178.5],"ftL":[-28.7,325.9]},{"rootY":-1.7,"hips":[0,0],"chest":[-10.4,-81.4],"neck":[-10.4,-81.4],"head":[-14.4,-148.2],"shR":[53.3,-110.2],"elR":[82.7,-9.4],"haR":[120.8,26.1],"shL":[-78.5,-106.6],"elL":[-99.5,-8.9],"haL":[-119.9,48.7],"hipR":[23.5,37.5],"knR":[17.3,153.9],"ftR":[7,283.8],"hipL":[-30.4,34.2],"knL":[-32.1,179.3],"ftL":[-26.4,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.1,-81.1],"neck":[-10.1,-81.1],"head":[-13.7,-147.2],"shR":[53.7,-109.6],"elR":[86.1,-9.8],"haR":[128.6,22.1],"shL":[-78,-106.8],"elL":[-100,-9.3],"haL":[-118.7,47],"hipR":[23.4,38.1],"knR":[17.3,155.2],"ftR":[-2.4,294.1],"hipL":[-30.6,34.6],"knL":[-32.7,179.6],"ftL":[-25.4,324.3]},{"rootY":0.9,"hips":[0,0],"chest":[-8.9,-81.3],"neck":[-8.9,-81.3],"head":[-10.8,-147.8],"shR":[55,-109.4],"elR":[90.7,-10.8],"haR":[137.6,17.5],"shL":[-76.8,-107.3],"elL":[-99.6,-10.2],"haL":[-116.9,46.3],"hipR":[23.4,38.2],"knR":[18.3,159.5],"ftR":[-12.4,302.7],"hipL":[-30.6,34.2],"knL":[-31.1,179],"ftL":[-23,322.9]},{"rootY":1.4,"hips":[0,0],"chest":[-7.4,-81.4],"neck":[-7.4,-81.4],"head":[-7.2,-147.8],"shR":[57,-108.6],"elR":[96.4,-11.6],"haR":[147.4,13.3],"shL":[-74.8,-108.4],"elL":[-96.6,-11.7],"haL":[-113.4,41],"hipR":[21.6,39.5],"knR":[18.9,165.2],"ftR":[-19.9,310.5],"hipL":[-32.1,32.7],"knL":[-29.5,177.1],"ftL":[-20,320.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.4,-81.1],"neck":[-6.4,-81.1],"head":[-5.1,-147.4],"shR":[58.3,-107],"elR":[101.9,-11.9],"haR":[156.5,10.1],"shL":[-73.3,-109.4],"elL":[-97.9,-12.6],"haL":[-112.1,45],"hipR":[22.1,39.6],"knR":[17.1,168.8],"ftR":[-28.7,313.7],"hipL":[-31.6,33.3],"knL":[-30,177.5],"ftL":[-20.3,319.4]},{"rootY":3.2,"hips":[0,0],"chest":[-3.5,-81.1],"neck":[-3.5,-81.1],"head":[-0.1,-148],"shR":[61.6,-105.6],"elR":[109.8,-13],"haR":[166.4,7.1],"shL":[-69.7,-110.9],"elL":[-94.2,-15.2],"haL":[-109.2,38.8],"hipR":[21.7,40.4],"knR":[20.3,171.6],"ftR":[-30.3,315],"hipL":[-31.7,32.3],"knL":[-28.2,176.1],"ftL":[-19.2,315.6]},{"rootY":5.7,"hips":[0,0],"chest":[-0.4,-81.2],"neck":[-0.4,-81.2],"head":[3.8,-148.1],"shR":[64.9,-105.4],"elR":[116.5,-14.7],"haR":[175.2,3.9],"shL":[-66.2,-111.5],"elL":[-92,-16.7],"haL":[-108.4,36.9],"hipR":[23,40.1],"knR":[19.4,172.9],"ftR":[-32.3,315.5],"hipL":[-30.2,32.9],"knL":[-29.2,177.3],"ftL":[-20.9,311.4]},{"rootY":3.7,"hips":[0,0],"chest":[3.2,-80.6],"neck":[3.2,-80.6],"head":[10,-147.3],"shR":[68.7,-103.2],"elR":[124.7,-15],"haR":[184.7,3.3],"shL":[-61.3,-112.4],"elL":[-87.7,-17.7],"haL":[-104.8,37.7],"hipR":[25.8,39.2],"knR":[21.1,173.3],"ftR":[-29.7,315.8],"hipL":[-27.1,34.8],"knL":[-30,179.7],"ftL":[-24.8,309.5]},{"rootY":2.1,"hips":[0,0],"chest":[4.4,-80.6],"neck":[4.4,-80.6],"head":[14.6,-146.3],"shR":[69.8,-101.8],"elR":[128.4,-15.1],"haR":[189.3,3.2],"shL":[-58.6,-113.7],"elL":[-85.4,-20],"haL":[-102.3,38.9],"hipR":[27.3,38.6],"knR":[21.3,175.2],"ftR":[-29.5,317.9],"hipL":[-25,35.6],"knL":[-33.4,180.4],"ftL":[-33.6,302.7]},{"rootY":0.6,"hips":[0,0],"chest":[6.6,-80.3],"neck":[6.6,-80.3],"head":[19.2,-146],"shR":[71.4,-100.8],"elR":[133.1,-15.9],"haR":[194.7,3.4],"shL":[-55.4,-114.1],"elL":[-84.1,-20],"haL":[-99.3,43.3],"hipR":[28.3,38],"knR":[22.4,177.1],"ftR":[-29.3,319.5],"hipL":[-23.8,36.1],"knL":[-35.6,179.2],"ftL":[-44.9,294.9]},{"rootY":0.9,"hips":[0,0],"chest":[8.4,-80.1],"neck":[8.4,-80.1],"head":[22.9,-144.8],"shR":[72.8,-100.1],"elR":[137.3,-16.9],"haR":[198.9,3.9],"shL":[-52.4,-114.3],"elL":[-81.8,-21.4],"haL":[-95.1,43.5],"hipR":[29.1,37.8],"knR":[24.7,177.6],"ftR":[-28.5,319.3],"hipL":[-21.6,35.9],"knL":[-31.4,176.1],"ftL":[-52.9,285.4]},{"rootY":1.1,"hips":[0,0],"chest":[10.4,-79.1],"neck":[10.4,-79.1],"head":[29.7,-141.8],"shR":[74,-97.5],"elR":[140.5,-15.2],"haR":[202,8.2],"shL":[-48.6,-115],"elL":[-80.6,-23.1],"haL":[-94.2,41.6],"hipR":[29.8,37.6],"knR":[25,177.9],"ftR":[-27.8,320],"hipL":[-19.2,36.4],"knL":[-26.2,172.4],"ftL":[-59,274.2]},{"rootY":-1.5,"hips":[0,0],"chest":[14.5,-78.6],"neck":[14.5,-78.6],"head":[40.5,-140.9],"shR":[77.8,-97],"elR":[145.5,-15.2],"haR":[207,11.1],"shL":[-43.5,-114.4],"elL":[-78.4,-22.6],"haL":[-90.8,42.6],"hipR":[31.2,36.6],"knR":[25.1,178.9],"ftR":[-26,322.1],"hipL":[-15.9,37.8],"knL":[-15,168.1],"ftL":[-62.8,260.9]},{"rootY":-3.6,"hips":[0,0],"chest":[18.4,-78.1],"neck":[18.4,-78.1],"head":[45.2,-139.4],"shR":[80.4,-95.9],"elR":[149.2,-14.9],"haR":[209.9,15.1],"shL":[-37.7,-114.4],"elL":[-74.6,-24.3],"haL":[-84.8,40.8],"hipR":[31.5,36.2],"knR":[24.2,180.3],"ftR":[-23.9,324.7],"hipL":[-12.5,38],"knL":[-0.8,164.2],"ftL":[-62.3,248.2]},{"rootY":-9.7,"hips":[0,0],"chest":[19.9,-77.6],"neck":[19.9,-77.6],"head":[46.2,-139.2],"shR":[80,-93.5],"elR":[148.3,-12.2],"haR":[207.9,21],"shL":[-32.4,-115.6],"elL":[-72.9,-27.2],"haL":[-79,37.6],"hipR":[29.7,37.3],"knR":[20.9,183.1],"ftR":[-23,328.8],"hipL":[-11.8,37.8],"knL":[17.9,151.4],"ftL":[-64.2,236]},{"rootY":-7,"hips":[0,0],"chest":[24.8,-76.5],"neck":[24.8,-76.5],"head":[50.8,-138.7],"shR":[83.7,-92.1],"elR":[150.6,-9.9],"haR":[210.6,23.1],"shL":[-24.4,-114.3],"elL":[-68.5,-27.3],"haL":[-70.8,36.6],"hipR":[30.3,36.2],"knR":[24.3,182.1],"ftR":[-19.3,327.9],"hipL":[-8.2,38.7],"knL":[32.2,145.4],"ftL":[-51.7,228.8]},{"rootY":-9.9,"hips":[0,0],"chest":[27.4,-75.4],"neck":[27.4,-75.4],"head":[56.8,-136.3],"shR":[83.9,-90],"elR":[149.3,-6.3],"haR":[209.3,25.5],"shL":[-17,-113.7],"elL":[-65,-27.3],"haL":[-62.5,37],"hipR":[29.6,36],"knR":[23.6,182.5],"ftR":[-16.7,329.2],"hipL":[-5.8,38.8],"knL":[53.7,133.5],"ftL":[-40.4,222.9]},{"rootY":-9.6,"hips":[0,0],"chest":[30.4,-74.3],"neck":[30.4,-74.3],"head":[60.6,-135.2],"shR":[85.4,-89.5],"elR":[151.3,-6.2],"haR":[210.8,26.1],"shL":[-11.7,-111.7],"elL":[-62.3,-26.1],"haL":[-53.8,36.1],"hipR":[27.7,37],"knR":[26.1,183.5],"ftR":[-14.2,330.3],"hipL":[-4.3,38],"knL":[70.7,122.2],"ftL":[-23.1,219.2]},{"rootY":-12.4,"hips":[0,0],"chest":[33.8,-72.9],"neck":[33.8,-72.9],"head":[66,-133.2],"shR":[84.5,-86.5],"elR":[151.3,-3.9],"haR":[210.4,28.3],"shL":[-2.6,-111.7],"elL":[-54.8,-25.9],"haL":[-37.4,34.9],"hipR":[27.9,35.7],"knR":[16.9,183.8],"ftR":[-12,332.7],"hipL":[-1.7,39.2],"knL":[89.3,110.2],"ftL":[-5.7,217.4]},{"rootY":-12.1,"hips":[0,0],"chest":[36.1,-72.2],"neck":[36.1,-72.2],"head":[70.2,-132.7],"shR":[83.3,-85.9],"elR":[150.2,-3.5],"haR":[209.5,28.8],"shL":[4.6,-110.5],"elL":[-47.3,-23.9],"haL":[-22.4,35.1],"hipR":[26.1,36],"knR":[17.4,184.6],"ftR":[-9.6,333.9],"hipL":[-0.2,39.3],"knL":[103.2,102.5],"ftL":[15.5,218.7]},{"rootY":-11.3,"hips":[0,0],"chest":[38.3,-71.9],"neck":[38.3,-71.9],"head":[73.6,-132],"shR":[83.4,-83.7],"elR":[149.5,-0.9],"haR":[209.1,31.2],"shL":[10,-111.8],"elL":[-37.5,-22.9],"haL":[-4.2,32.4],"hipR":[26.4,33.5],"knR":[12.8,182.3],"ftR":[-7.4,332.3],"hipL":[3.9,40.8],"knL":[115.2,95],"ftL":[36.2,219.8]},{"rootY":-12.2,"hips":[0,0],"chest":[39.6,-71.4],"neck":[39.6,-71.4],"head":[74.8,-132.2],"shR":[81,-84.3],"elR":[146.1,-0.9],"haR":[206.3,30.6],"shL":[14.9,-110.2],"elL":[-26.7,-19.9],"haL":[16.9,30.3],"hipR":[24,34.6],"knR":[8.3,183.6],"ftR":[-7.6,334.1],"hipL":[3.7,40.8],"knL":[122.3,91.9],"ftL":[51.9,223.7]},{"rootY":-11.6,"hips":[0,0],"chest":[40.7,-71.2],"neck":[40.7,-71.2],"head":[75.9,-132.3],"shR":[81.2,-83.1],"elR":[145.8,0.8],"haR":[206,31.6],"shL":[17.6,-110.8],"elL":[-10.6,-16.6],"haL":[41.4,25.3],"hipR":[23.8,33.8],"knR":[17.1,183.2],"ftR":[-8,332.9],"hipL":[4.6,41.4],"knL":[127.4,91.2],"ftL":[64.5,227.9]},{"rootY":-12.2,"hips":[0,0],"chest":[40.7,-70.8],"neck":[40.7,-70.8],"head":[76.8,-131.8],"shR":[78.9,-81.8],"elR":[143,2.6],"haR":[203.6,32.7],"shL":[20,-111.2],"elL":[5.6,-15.9],"haL":[65,17.6],"hipR":[22.9,37.7],"knR":[28.7,186.7],"ftR":[-8.8,334.2],"hipL":[3.6,37.2],"knL":[128.2,92.9],"ftL":[72.5,233.1]},{"rootY":-12.8,"hips":[0,0],"chest":[41.3,-70.3],"neck":[41.3,-70.3],"head":[76.5,-132.1],"shR":[76.6,-79.6],"elR":[140,5.4],"haR":[200.9,35],"shL":[23.1,-112.4],"elL":[23.2,-17.3],"haL":[88.5,6.8],"hipR":[22.8,38.5],"knR":[31.6,187.5],"ftR":[-9.6,334.1],"hipL":[3.6,35.8],"knL":[129,95.6],"ftL":[77,237.6]},{"rootY":-12.3,"hips":[0,0],"chest":[41.6,-70.8],"neck":[41.6,-70.8],"head":[76.8,-132.7],"shR":[77.8,-86.2],"elR":[139.5,-0.1],"haR":[200.5,29.5],"shL":[22.4,-107],"elL":[37.2,-14.7],"haL":[106.2,-0.8],"hipR":[21.9,38],"knR":[29.8,187.5],"ftR":[-11.2,334.1],"hipL":[5.8,36.4],"knL":[130.6,100.9],"ftL":[74.2,241]},{"rootY":-11.3,"hips":[0,0],"chest":[42.4,-70.2],"neck":[42.4,-70.2],"head":[75.7,-133.2],"shR":[71.9,-83.4],"elR":[131.7,4.3],"haR":[193.3,32.3],"shL":[30.4,-108.5],"elL":[58.7,-20.7],"haL":[129,-14.4],"hipR":[21.1,35.7],"knR":[23.9,185.7],"ftR":[-13.7,333.1],"hipL":[7.7,39.2],"knL":[132.9,103.3],"ftL":[69.9,240.4]},{"rootY":-11.4,"hips":[0,0],"chest":[43.2,-69.9],"neck":[43.2,-69.9],"head":[77.1,-132.7],"shR":[71.2,-82.8],"elR":[127.1,7.6],"haR":[189.3,34.4],"shL":[32.9,-108.5],"elL":[75.7,-25.5],"haL":[146,-26],"hipR":[19.7,33],"knR":[14.6,183.2],"ftR":[-16.3,332.2],"hipL":[8.5,42],"knL":[134.6,104.5],"ftL":[66.1,239.1]},{"rootY":-10.5,"hips":[0,0],"chest":[44.3,-69.3],"neck":[44.3,-69.3],"head":[78.1,-132.1],"shR":[70.6,-86],"elR":[124.4,5.7],"haR":[186.8,31.5],"shL":[36,-103.9],"elL":[90.9,-27.6],"haL":[160.3,-30.9],"hipR":[18.5,34.1],"knR":[18.1,184.3],"ftR":[-19.8,331.8],"hipL":[7.7,41.7],"knL":[133.4,106.1],"ftL":[64.1,239.8]},{"rootY":-11.8,"hips":[0,0],"chest":[45.9,-68.4],"neck":[45.9,-68.4],"head":[79,-131.5],"shR":[71.3,-85.3],"elR":[119.9,9.1],"haR":[182.9,34.1],"shL":[38.4,-102.8],"elL":[104.1,-33.8],"haL":[173.1,-38.1],"hipR":[17.5,35.1],"knR":[10.7,185.4],"ftR":[-22.2,334],"hipL":[7.6,41.2],"knL":[133.4,106.6],"ftL":[61.5,238.7]},{"rootY":-13,"hips":[0,0],"chest":[46.6,-67.8],"neck":[46.6,-67.8],"head":[79.9,-130.7],"shR":[70.1,-86],"elR":[114.4,10.4],"haR":[177.4,35.1],"shL":[41.8,-100.7],"elL":[114.6,-38.2],"haL":[183.3,-41.3],"hipR":[17.2,33.6],"knR":[-3.8,182.8],"ftR":[-25,333.5],"hipL":[7.3,42.5],"knL":[133,106.2],"ftL":[61,237.9]},{"rootY":-17.9,"hips":[0,0],"chest":[47.8,-66.8],"neck":[47.8,-66.8],"head":[80.7,-129.9],"shR":[70.3,-83.8],"elR":[109.7,14.6],"haR":[172.7,40.2],"shL":[44.5,-100.6],"elL":[123.2,-43.7],"haL":[192.2,-43.5],"hipR":[16,36.4],"knR":[-5.3,185.6],"ftR":[-26.9,336.2],"hipL":[6.7,40.6],"knL":[129.3,112],"ftL":[55.8,242.2]},{"rootY":-22.1,"hips":[0,0],"chest":[49.7,-65.7],"neck":[49.7,-65.7],"head":[82.4,-128.9],"shR":[72.8,-83.6],"elR":[106.6,16.7],"haR":[168.9,44.2],"shL":[45.9,-98.5],"elL":[128.4,-45.4],"haL":[197.9,-41.4],"hipR":[14.6,35.1],"knR":[-6.9,184.2],"ftR":[-28.6,334.9],"hipL":[6.1,42.3],"knL":[125.8,119.5],"ftL":[49,248.3]},{"rootY":-25.5,"hips":[0,0],"chest":[51.2,-64.3],"neck":[51.2,-64.3],"head":[83.2,-127.7],"shR":[71.9,-84.2],"elR":[101.6,17.1],"haR":[162.8,47.4],"shL":[50.6,-94.7],"elL":[135.3,-42.9],"haL":[205,-35.2],"hipR":[13.1,35.4],"knR":[-5.1,185],"ftR":[-23.5,336.1],"hipL":[6.7,42.2],"knL":[122.5,126.2],"ftL":[43.5,253.8]},{"rootY":-29.5,"hips":[0,0],"chest":[52.7,-63.4],"neck":[52.7,-63.4],"head":[84.9,-126.6],"shR":[74.1,-81.8],"elR":[99.8,20.3],"haR":[159.6,53.2],"shL":[52.6,-95.1],"elL":[137,-43],"haL":[206.2,-30.9],"hipR":[11.4,31.6],"knR":[-5.6,181.3],"ftR":[-22.7,332.6],"hipL":[4.9,45.2],"knL":[118.6,132.5],"ftL":[38.7,259.6]},{"rootY":-39.2,"hips":[0,0],"chest":[54.2,-62.1],"neck":[54.2,-62.1],"head":[86.4,-125.1],"shR":[75.2,-81],"elR":[96.8,21.9],"haR":[155.3,57.2],"shL":[55.2,-93],"elL":[137.9,-38.4],"haL":[206.5,-22.9],"hipR":[9.8,33.9],"knR":[13.9,184.5],"ftR":[-25.9,331.3],"hipL":[4.2,44.2],"knL":[111.8,140.3],"ftL":[33.5,268.9]},{"rootY":-47.7,"hips":[0,0],"chest":[56,-60.2],"neck":[56,-60.2],"head":[87.9,-123.1],"shR":[76.4,-78.9],"elR":[95.7,24.4],"haR":[153.2,61.9],"shL":[59,-90.5],"elL":[137.6,-31.7],"haL":[205.6,-15.9],"hipR":[9,36.6],"knR":[33.9,185.2],"ftR":[-28.3,323.9],"hipL":[5.7,42.2],"knL":[105.5,147.1],"ftL":[30.3,277.6]},{"rootY":-56.4,"hips":[0,0],"chest":[58.7,-57.7],"neck":[58.7,-57.7],"head":[90.6,-120.5],"shR":[81.3,-74.7],"elR":[97.8,28.9],"haR":[153.9,68.5],"shL":[61.2,-88.9],"elL":[134.1,-24.9],"haL":[201.5,-9.3],"hipR":[11.5,36.7],"knR":[49,182.6],"ftR":[-29,313.1],"hipL":[6.5,41.5],"knL":[98.8,153.3],"ftL":[28.1,286.3]},{"rootY":-64.7,"hips":[0,0],"chest":[59.2,-56.9],"neck":[59.2,-56.9],"head":[91.9,-119.1],"shR":[80.9,-73],"elR":[95.8,30.8],"haR":[150.4,72.8],"shL":[64.2,-88.2],"elL":[132.6,-18.7],"haL":[199.6,-2.6],"hipR":[9.5,37.3],"knR":[66.3,176.8],"ftR":[-23.6,299.6],"hipL":[5.6,41.5],"knL":[91.4,158.5],"ftL":[26.8,294.6]},{"rootY":-72.9,"hips":[0,0],"chest":[58.8,-56.7],"neck":[58.8,-56.7],"head":[92.6,-118],"shR":[78.2,-65.8],"elR":[92.2,37.8],"haR":[145.3,81.7],"shL":[69.1,-92.9],"elL":[134.4,-19.6],"haL":[200.7,-1.9],"hipR":[9.6,37.3],"knR":[81.7,169.6],"ftR":[-20.6,282.3],"hipL":[5,41.6],"knL":[83,163.9],"ftL":[24.9,302.9]},{"rootY":-80.1,"hips":[0,0],"chest":[59.4,-55.1],"neck":[59.4,-55.1],"head":[94.2,-115.6],"shR":[76.6,-60.9],"elR":[89.7,42.3],"haR":[141.6,87.6],"shL":[73.1,-93.4],"elL":[136,-16.7],"haL":[202.2,2.7],"hipR":[8.4,37.2],"knR":[97.4,158.7],"ftR":[-12,264.5],"hipL":[5.9,41.7],"knL":[76.5,168.5],"ftL":[23.8,309.8]},{"rootY":-85.7,"hips":[0,0],"chest":[59.2,-55.3],"neck":[59.2,-55.3],"head":[94.6,-115.3],"shR":[77.8,-59.2],"elR":[90.3,44.1],"haR":[141.1,90.8],"shL":[72.3,-94.9],"elL":[132.7,-16.9],"haL":[198,4.3],"hipR":[7.3,37.5],"knR":[110.6,147],"ftR":[-4,247.1],"hipL":[4.6,41.9],"knL":[68.7,172],"ftL":[22.4,315.3]},{"rootY":-91.3,"hips":[0,0],"chest":[59,-55.1],"neck":[59,-55.1],"head":[94.5,-115.1],"shR":[76.8,-59],"elR":[89.7,44.4],"haR":[139.3,92.5],"shL":[73.3,-94.3],"elL":[131.4,-14.8],"haL":[195.7,8.3],"hipR":[6.6,38],"knR":[121.8,135],"ftR":[3.5,230.8],"hipL":[4.5,41.5],"knL":[61.4,174.9],"ftL":[19.6,320]},{"rootY":-96.9,"hips":[0,0],"chest":[59.5,-54.4],"neck":[59.5,-54.4],"head":[95.6,-114.1],"shR":[77.5,-56],"elR":[89.5,47],"haR":[138.7,95.3],"shL":[73.4,-95.8],"elL":[129.8,-14.7],"haL":[193.5,10.1],"hipR":[7.4,37],"knR":[130.9,123.3],"ftR":[13.2,219.8],"hipL":[5,42.2],"knL":[54.2,178.6],"ftL":[17.5,325.3]},{"rootY":-99.1,"hips":[0,0],"chest":[59,-54.7],"neck":[59,-54.7],"head":[95.3,-114.4],"shR":[76.3,-56.2],"elR":[86.4,46.2],"haR":[135.8,93.9],"shL":[73.9,-96],"elL":[129.3,-13.6],"haL":[192.7,12.7],"hipR":[5.8,38.3],"knR":[138.5,109.5],"ftR":[25.2,210.9],"hipL":[4.4,41.3],"knL":[49.2,179.2],"ftL":[16.8,326.7]},{"rootY":-102.9,"hips":[0,0],"chest":[59.3,-54.5],"neck":[59.3,-54.5],"head":[96.1,-113.6],"shR":[76.2,-56.3],"elR":[84.7,45.8],"haR":[135,91.8],"shL":[74.9,-95.2],"elL":[128.8,-11.7],"haL":[191.4,15.9],"hipR":[6.3,37.2],"knR":[143,100.6],"ftR":[35.6,208.2],"hipL":[4.4,42.2],"knL":[44.3,181.5],"ftL":[14.7,329.8]},{"rootY":-103.7,"hips":[0,0],"chest":[58.2,-55.8],"neck":[58.2,-55.8],"head":[94.5,-115.5],"shR":[77.4,-58.2],"elR":[82.5,41.8],"haR":[133.9,84.6],"shL":[71.7,-96.1],"elL":[124.1,-11.6],"haL":[186.4,16.3],"hipR":[6,38.8],"knR":[146.2,93.9],"ftR":[46.2,208.3],"hipL":[3.5,40.9],"knL":[40.4,181],"ftL":[12.2,329.5]},{"rootY":-108.2,"hips":[0,0],"chest":[59.8,-54.5],"neck":[59.8,-54.5],"head":[96.6,-113.9],"shR":[75.4,-58.7],"elR":[81.1,39.9],"haR":[135.1,77],"shL":[76.8,-92.9],"elL":[126.8,-7.2],"haL":[188.3,21.1],"hipR":[8.3,35],"knR":[146.9,94.2],"ftR":[54.7,215],"hipL":[5.2,43.5],"knL":[37.4,184.8],"ftL":[9.8,333.6]},{"rootY":-108.9,"hips":[0,0],"chest":[59.1,-55.4],"neck":[59.1,-55.4],"head":[96.5,-114.4],"shR":[75.3,-62.6],"elR":[80.7,33.3],"haR":[136.6,62.2],"shL":[75.7,-90.9],"elL":[124.3,-4.2],"haL":[185.9,24.2],"hipR":[8.3,35.3],"knR":[146.8,94.6],"ftR":[62.1,220.7],"hipL":[4.9,43.3],"knL":[35.2,185.1],"ftL":[7,333.8]},{"rootY":-107.4,"hips":[0,0],"chest":[57.6,-56.8],"neck":[57.6,-56.8],"head":[95.7,-115.2],"shR":[72.9,-65.7],"elR":[84.4,30.9],"haR":[143.1,49.5],"shL":[74.9,-90.9],"elL":[121.8,-3.2],"haL":[183.6,25],"hipR":[8.2,36.7],"knR":[146.5,96.5],"ftR":[65.9,225.2],"hipL":[4.5,42.4],"knL":[36,183.9],"ftL":[5.1,331.8]},{"rootY":-105.4,"hips":[0,0],"chest":[56.7,-57.6],"neck":[56.7,-57.6],"head":[95.4,-115.8],"shR":[73.6,-67.5],"elR":[91.2,27.3],"haR":[150.3,35.7],"shL":[71.9,-91.3],"elL":[116.8,-2.8],"haL":[178.1,25.3],"hipR":[6.7,38.5],"knR":[145,98.3],"ftR":[67.6,229],"hipL":[5.2,40.9],"knL":[37.4,182.3],"ftL":[2.8,329.4]},{"rootY":-104.8,"hips":[0,0],"chest":[56.2,-58.5],"neck":[56.2,-58.5],"head":[95.4,-116],"shR":[74.3,-69.9],"elR":[97.4,19.1],"haR":[155.1,19.7],"shL":[69.9,-91.1],"elL":[113.1,-2],"haL":[174.1,26.2],"hipR":[6.8,38.3],"knR":[142.6,103.2],"ftR":[63.9,233.2],"hipL":[4.9,41.1],"knL":[38.4,182.2],"ftL":[0.7,328.5]},{"rootY":-105,"hips":[0,0],"chest":[56.3,-58.8],"neck":[56.3,-58.8],"head":[95.4,-116.5],"shR":[75.4,-72.3],"elR":[124.4,11.7],"haR":[181.6,3.8],"shL":[68.9,-89.5],"elL":[109.7,0.4],"haL":[170.6,28.2],"hipR":[7.6,38.6],"knR":[140.5,109.1],"ftR":[58.4,237],"hipL":[5.6,40.6],"knL":[38.1,181.9],"ftL":[-3,327.3]},{"rootY":-105.5,"hips":[0,0],"chest":[56,-59.4],"neck":[56,-59.4],"head":[95.9,-116.2],"shR":[74.6,-75.4],"elR":[147.9,-2.5],"haR":[203.3,-24.2],"shL":[69.1,-87.5],"elL":[108,3.5],"haL":[169.1,31.6],"hipR":[7.1,38.6],"knR":[138.5,111.9],"ftR":[54.5,238.5],"hipL":[4.7,40.8],"knL":[36.9,182.2],"ftL":[-5.7,327.3]},{"rootY":-106.5,"hips":[0,0],"chest":[56,-59.5],"neck":[56,-59.5],"head":[95.5,-116.6],"shR":[76.1,-77.4],"elR":[160,-14.1],"haR":[214.4,-47.8],"shL":[67.7,-85.6],"elL":[104.2,6.2],"haL":[165.3,34.3],"hipR":[6.3,38.7],"knR":[136.4,113.7],"ftR":[51.1,239.7],"hipL":[4.3,40.9],"knL":[33.7,182.9],"ftL":[-8.5,328.3]},{"rootY":-108.1,"hips":[0,0],"chest":[56.4,-58.9],"neck":[56.4,-58.9],"head":[96.2,-115.5],"shR":[70.4,-77.2],"elR":[158,-19.5],"haR":[217.4,-51.5],"shL":[74.5,-84.6],"elL":[106.5,9],"haL":[167.2,38],"hipR":[6.1,38.7],"knR":[134.1,117.1],"ftR":[47.4,242],"hipL":[4.5,40.9],"knL":[28.4,184],"ftL":[-11.1,330]},{"rootY":-112.9,"hips":[0,0],"chest":[57.6,-57.9],"neck":[57.6,-57.9],"head":[97.7,-113.8],"shR":[72.5,-78.1],"elR":[158.9,-19.8],"haR":[218,-48.1],"shL":[75.1,-81.4],"elL":[103.2,12.9],"haL":[163.2,43.1],"hipR":[5.9,38.5],"knR":[130,122.6],"ftR":[42.7,247.2],"hipL":[4.3,41.1],"knL":[23.2,184.8],"ftL":[-15.5,331.3]},{"rootY":-118.9,"hips":[0,0],"chest":[58.7,-56.8],"neck":[58.7,-56.8],"head":[99,-112.1],"shR":[73.6,-78.9],"elR":[134.5,-3.5],"haR":[198.2,-18.8],"shL":[76.3,-78.2],"elL":[100.1,17.4],"haL":[159.4,49.3],"hipR":[5.4,38.2],"knR":[124.8,128.6],"ftR":[38.3,253.7],"hipL":[2.7,41.6],"knL":[18.5,185.9],"ftL":[-15.2,333.8]},{"rootY":-125.1,"hips":[0,0],"chest":[60.1,-55.5],"neck":[60.1,-55.5],"head":[100,-111],"shR":[79.5,-79.1],"elR":[140.2,-1.2],"haR":[204,-17.2],"shL":[73,-75.2],"elL":[93.5,20.5],"haL":[151.7,54.5],"hipR":[4.4,38.7],"knR":[118.1,136],"ftR":[33.4,262.5],"hipL":[1.5,41.4],"knL":[17,185.6],"ftL":[-12.9,334.5]},{"rootY":-132,"hips":[0,0],"chest":[61.5,-53.7],"neck":[61.5,-53.7],"head":[100.4,-110],"shR":[84.3,-77.5],"elR":[139.7,3.5],"haR":[203.4,-11],"shL":[70.4,-73.4],"elL":[88.1,22.7],"haL":[144.6,59.3],"hipR":[4.1,37.7],"knR":[109.9,142.6],"ftR":[25.9,269.5],"hipL":[0.3,42.3],"knL":[19.7,186.1],"ftL":[-12.7,334.4]},{"rootY":-137.9,"hips":[0,0],"chest":[63.6,-50.9],"neck":[63.6,-50.9],"head":[102.5,-106.6],"shR":[80.5,-75.3],"elR":[132.5,7.7],"haR":[196.1,-4.3],"shL":[77.9,-70.7],"elL":[92.2,25.7],"haL":[147,64.6],"hipR":[4.7,37.6],"knR":[105,147.9],"ftR":[26.1,277.9],"hipL":[0.4,42.4],"knL":[28.3,184.4],"ftL":[-14.1,330.2]},{"rootY":-146.7,"hips":[0,0],"chest":[65.3,-48.6],"neck":[65.3,-48.6],"head":[104.4,-103.7],"shR":[76.7,-73.8],"elR":[123.1,11.7],"haR":[186.7,1.2],"shL":[85.4,-67.6],"elL":[96.8,29.8],"haL":[150.5,70.7],"hipR":[6.1,37.2],"knR":[98.7,154.3],"ftR":[23.5,286.5],"hipL":[0.9,42.6],"knL":[39.2,182.1],"ftL":[-20,321.9]},{"rootY":-152.8,"hips":[0,0],"chest":[65.6,-47.7],"neck":[65.6,-47.7],"head":[104.4,-103],"shR":[76,-73.2],"elR":[120.1,15.7],"haR":[184.6,6],"shL":[87.9,-65.6],"elL":[98,32.3],"haL":[150.7,75],"hipR":[5.5,37.6],"knR":[93.8,158],"ftR":[23.5,292.7],"hipL":[0.1,42.4],"knL":[53.3,176.3],"ftL":[-22.2,307.8]},{"rootY":-159.8,"hips":[0,0],"chest":[66.8,-46.4],"neck":[66.8,-46.4],"head":[105.7,-101.6],"shR":[79,-72.8],"elR":[119.3,18.9],"haR":[184.2,10.4],"shL":[88.2,-62.7],"elL":[97,35.4],"haL":[149.3,78.8],"hipR":[7.2,37],"knR":[88.7,162.3],"ftR":[22.6,299],"hipL":[0.4,42.7],"knL":[68.2,168.7],"ftL":[-22.3,289.8]},{"rootY":-165.7,"hips":[0,0],"chest":[68.3,-44.4],"neck":[68.3,-44.4],"head":[107.7,-98.5],"shR":[85.4,-69.7],"elR":[122.5,24],"haR":[187.6,16.9],"shL":[85.6,-60.9],"elL":[93.7,35.8],"haL":[145.5,78.9],"hipR":[8.8,36.2],"knR":[82.9,166],"ftR":[22.7,305.1],"hipL":[2.3,43],"knL":[83.5,158.3],"ftL":[-17.3,269.4]},{"rootY":-171.2,"hips":[0,0],"chest":[68.7,-43.8],"neck":[68.7,-43.8],"head":[108,-98.4],"shR":[88.3,-69.3],"elR":[123.2,25.6],"haR":[188.3,19],"shL":[84.3,-59.1],"elL":[91.3,37.2],"haL":[143.7,79.2],"hipR":[8.2,36.9],"knR":[77.7,169.4],"ftR":[22.5,310.6],"hipL":[2,42.5],"knL":[97.5,145.8],"ftL":[-11,249]},{"rootY":-175.8,"hips":[0,0],"chest":[69.7,-42.5],"neck":[69.7,-42.5],"head":[108.8,-96.7],"shR":[94,-65.4],"elR":[125.5,30.3],"haR":[190.2,24.5],"shL":[82.2,-58.8],"elL":[87.4,36.6],"haL":[141.6,74.6],"hipR":[9.9,36],"knR":[72.6,171.7],"ftR":[21.6,314.2],"hipL":[2.7,43],"knL":[108.5,132.1],"ftL":[-2.8,231.7]},{"rootY":-180.8,"hips":[0,0],"chest":[70.6,-40.8],"neck":[70.6,-40.8],"head":[110.6,-93.9],"shR":[94.3,-62.2],"elR":[123,33.9],"haR":[187.4,28],"shL":[86,-56.5],"elL":[87.8,37.7],"haL":[143.6,69.2],"hipR":[11.7,35.7],"knR":[67.5,174.6],"ftR":[19.4,318.3],"hipL":[4.7,42.7],"knL":[116.4,119.7],"ftL":[8.4,219.9]},{"rootY":-182.4,"hips":[0,0],"chest":[70.7,-40.2],"neck":[70.7,-40.2],"head":[111.3,-92.3],"shR":[95.4,-59.5],"elR":[121.5,37.4],"haR":[185.6,30.7],"shL":[87.2,-55.7],"elL":[88.8,38.6],"haL":[147.7,60.7],"hipR":[11.3,35.9],"knR":[63.5,176],"ftR":[18.5,320.8],"hipL":[4.8,42.5],"knL":[125.1,107.1],"ftL":[19.6,211.5]},{"rootY":-184.7,"hips":[0,0],"chest":[71,-39.4],"neck":[71,-39.4],"head":[113,-89.4],"shR":[97.3,-57.1],"elR":[120.9,40.7],"haR":[184.9,32.7],"shL":[87.6,-54.4],"elL":[91,38.5],"haL":[150.8,52.1],"hipR":[12.3,35.5],"knR":[59.2,177.6],"ftR":[16.5,322.9],"hipL":[5.2,42.6],"knL":[129.6,97.1],"ftL":[32,208.8]},{"rootY":-185.7,"hips":[0,0],"chest":[71.5,-38.2],"neck":[71.5,-38.2],"head":[115,-87.4],"shR":[99.2,-54.5],"elR":[119.4,44.2],"haR":[183.3,35.3],"shL":[87.8,-52.9],"elL":[94.8,40.2],"haL":[157.1,45.8],"hipR":[12.6,35.4],"knR":[56.9,178.4],"ftR":[14.5,323.8],"hipL":[5.9,42.5],"knL":[133.5,91.9],"ftL":[45.1,211.3]},{"rootY":-187,"hips":[0,0],"chest":[71.9,-36.9],"neck":[71.9,-36.9],"head":[117.4,-83.8],"shR":[98.5,-52.4],"elR":[115.7,46.8],"haR":[179.3,37.1],"shL":[90.7,-50.9],"elL":[101.6,40.7],"haL":[164.1,43.2],"hipR":[12.7,35.5],"knR":[55,179.2],"ftR":[11.8,324.4],"hipL":[6.3,42.3],"knL":[135.3,89.9],"ftL":[56.4,216]},{"rootY":-187.5,"hips":[0,0],"chest":[71.7,-37.2],"neck":[71.7,-37.2],"head":[119.1,-82.1],"shR":[101.3,-50],"elR":[115.2,49.2],"haR":[178.6,39.9],"shL":[88.1,-52.7],"elL":[102.8,38.4],"haL":[166,38.9],"hipR":[12.4,35.6],"knR":[51.4,180.1],"ftR":[8.1,325.2],"hipL":[5.3,42.5],"knL":[134.9,90.2],"ftL":[63.6,221.5]},{"rootY":-188.6,"hips":[0,0],"chest":[71.9,-36.5],"neck":[71.9,-36.5],"head":[120.6,-79.1],"shR":[100.7,-49.3],"elR":[110.9,49.8],"haR":[174.1,40.7],"shL":[89.9,-50.6],"elL":[107.7,39.1],"haL":[170.7,38.1],"hipR":[13,35.4],"knR":[48.6,180.9],"ftR":[3.8,325.6],"hipL":[5.6,42.4],"knL":[134.5,94.2],"ftL":[66.1,227.3]},{"rootY":-188.8,"hips":[0,0],"chest":[72.1,-36.1],"neck":[72.1,-36.1],"head":[122,-77.6],"shR":[100.8,-48.1],"elR":[107.3,50.6],"haR":[170.1,42.1],"shL":[91.1,-49.5],"elL":[109.4,39.4],"haL":[171.8,37.8],"hipR":[13.2,35.1],"knR":[46.6,181.2],"ftR":[-1.6,325],"hipL":[4.9,42.8],"knL":[132.5,100.1],"ftL":[62.1,232.2]},{"rootY":-188.5,"hips":[0,0],"chest":[71.7,-36.4],"neck":[71.7,-36.4],"head":[122.7,-75.3],"shR":[97.5,-46.6],"elR":[100.9,51.8],"haR":[163.7,43.4],"shL":[94.4,-50.5],"elL":[110.6,38],"haL":[171.9,36.7],"hipR":[11,36.2],"knR":[44,182.4],"ftR":[-5,325.7],"hipL":[3.4,42.6],"knL":[129.4,104.7],"ftL":[56.1,235.3]},{"rootY":-191.2,"hips":[0,0],"chest":[72.1,-35.7],"neck":[72.1,-35.7],"head":[124,-73.1],"shR":[101,-45.9],"elR":[99.5,51.7],"haR":[162,44.9],"shL":[91.6,-49.4],"elL":[104.2,39],"haL":[164.8,37.2],"hipR":[10.3,36.1],"knR":[39.7,183.1],"ftR":[-11.4,325.7],"hipL":[2.8,42.8],"knL":[126.7,109.6],"ftL":[48.9,237.9]},{"rootY":-189.6,"hips":[0,0],"chest":[72.5,-35.3],"neck":[72.5,-35.3],"head":[125.8,-71],"shR":[103.3,-45.6],"elR":[94.6,50.4],"haR":[157.2,45.1],"shL":[90.4,-48.2],"elL":[98.1,40.3],"haL":[158.2,37.8],"hipR":[9.1,37.2],"knR":[36.4,184.8],"ftR":[-16.3,326.4],"hipL":[1.2,42.3],"knL":[124.2,112.7],"ftL":[42.6,237.9]},{"rootY":-194.4,"hips":[0,0],"chest":[73.3,-33.6],"neck":[73.3,-33.6],"head":[127.6,-67.2],"shR":[103.4,-43.6],"elR":[87,50.5],"haR":[149.8,47.5],"shL":[92.1,-46.3],"elL":[93.2,42.3],"haL":[152,39.7],"hipR":[8.2,37.1],"knR":[29.7,185.8],"ftR":[-23.1,328],"hipL":[0.9,42.5],"knL":[120.6,119],"ftL":[35.3,242]},{"rootY":-197.7,"hips":[0,0],"chest":[74.4,-31.7],"neck":[74.4,-31.7],"head":[130,-63.6],"shR":[106.1,-42.3],"elR":[80,50.1],"haR":[143.2,50.3],"shL":[91.3,-43.9],"elL":[85.2,46],"haL":[144.2,41.9],"hipR":[8.7,37],"knR":[21.9,186.8],"ftR":[-30.3,329.2],"hipL":[0.1,42.6],"knL":[115.7,126],"ftL":[26.5,246.4]},{"rootY":-203.6,"hips":[0,0],"chest":[75.1,-30.1],"neck":[75.1,-30.1],"head":[131.7,-60.2],"shR":[106.3,-42.1],"elR":[71.1,47.5],"haR":[134.3,52],"shL":[92.4,-41.1],"elL":[77.7,50.7],"haL":[137.9,46.9],"hipR":[6.9,37.5],"knR":[13.3,187.7],"ftR":[-36.1,331.2],"hipL":[-1.2,42.4],"knL":[109.3,132.7],"ftL":[17.6,251.8]},{"rootY":-208.2,"hips":[0,0],"chest":[76.3,-27.7],"neck":[76.3,-27.7],"head":[133.4,-56.6],"shR":[107.8,-39.9],"elR":[64.2,45.6],"haR":[126.8,55.8],"shL":[93.1,-38.7],"elL":[69.9,51.5],"haL":[129.3,50.1],"hipR":[5.8,38.1],"knR":[3.6,188.5],"ftR":[-42.7,333.3],"hipL":[-1.9,42.1],"knL":[101,142],"ftL":[7,258.7]},{"rootY":-213.5,"hips":[0,0],"chest":[76.9,-26.4],"neck":[76.9,-26.4],"head":[134.7,-54.2],"shR":[108.4,-39.5],"elR":[57.1,41.3],"haR":[119,56.9],"shL":[93.1,-37.6],"elL":[61.5,51.2],"haL":[121.3,52.8],"hipR":[4,38.2],"knR":[-5.3,188.4],"ftR":[-49.1,334.1],"hipL":[-3.7,42],"knL":[93.9,147.2],"ftL":[-2.5,262.7]},{"rootY":-216.9,"hips":[0,0],"chest":[76.5,-27.7],"neck":[76.5,-27.7],"head":[134.5,-55.2],"shR":[108,-41.6],"elR":[49.9,34.1],"haR":[110.5,55.6],"shL":[92.7,-38.2],"elL":[53.1,47.9],"haL":[112.5,53.9],"hipR":[-0.5,38.2],"knR":[-6.1,188.7],"ftR":[-54,333.2],"hipL":[-7.6,41.6],"knL":[85.8,151],"ftL":[-10.6,266.4]},{"rootY":-220.6,"hips":[0,0],"chest":[77.8,-24.8],"neck":[77.8,-24.8],"head":[135.8,-52.1],"shR":[108.4,-39],"elR":[44.5,32.9],"haR":[103.6,59.4],"shL":[94.6,-36],"elL":[47.3,46.1],"haL":[105.4,58.9],"hipR":[1.9,37.7],"knR":[-17.3,187.2],"ftR":[-62.2,332.6],"hipL":[-5.5,42.3],"knL":[80.2,158],"ftL":[-19.7,270.3]},{"rootY":-224.2,"hips":[0,0],"chest":[77.6,-25.1],"neck":[77.6,-25.1],"head":[136.1,-52.7],"shR":[106,-40.9],"elR":[38.7,24.7],"haR":[94.6,55.6],"shL":[96.4,-35.3],"elL":[42.2,42.8],"haL":[98.2,62.7],"hipR":[0.8,37.9],"knR":[-13.7,187.9],"ftR":[-71.5,328.7],"hipL":[-5.8,42.1],"knL":[72.4,163.4],"ftL":[-31.1,273.4]},{"rootY":-227.7,"hips":[0,0],"chest":[77.7,-25.3],"neck":[77.7,-25.3],"head":[136.4,-53.1],"shR":[105.8,-41.9],"elR":[35.7,18.7],"haR":[88.8,52.8],"shL":[96.4,-35.3],"elL":[37.8,39.4],"haL":[91.7,64.6],"hipR":[-0.1,37.6],"knR":[-9.2,188.1],"ftR":[-79.9,322.8],"hipL":[-6.1,42.2],"knL":[67,166.9],"ftL":[-34.5,278]},{"rootY":-231.1,"hips":[0,0],"chest":[77.7,-25.5],"neck":[77.7,-25.5],"head":[136.1,-53.8],"shR":[102.7,-42.7],"elR":[30.9,14],"haR":[81.3,50.7],"shL":[99.7,-35],"elL":[36.9,37.4],"haL":[88.5,67.5],"hipR":[-0.9,37.4],"knR":[-6.4,188],"ftR":[-88.3,316.3],"hipL":[-6.5,42.3],"knL":[61,170.3],"ftL":[-40.4,281.5]}]},"dance_glide":{"name":"dance_glide","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":-0.1,"hips":[0,0],"chest":[4.4,-86.4],"neck":[4.4,-86.4],"head":[3.1,-155.3],"shR":[-59.4,-99.3],"elR":[-69.9,2.2],"haR":[-69.5,53.5],"shL":[68.8,-95.4],"elL":[111.7,5.8],"haL":[102.4,55.2],"hipR":[-27.5,39.2],"knR":[-15.5,174.5],"ftR":[81.2,275],"hipL":[28.7,39.5],"knL":[-11.5,165.3],"ftL":[-21.6,316.3]},{"rootY":-0.4,"hips":[0,0],"chest":[3.9,-86.3],"neck":[3.9,-86.3],"head":[2.2,-155.4],"shR":[-59.9,-99.4],"elR":[-71.5,1.1],"haR":[-69.6,52.3],"shL":[68.2,-95.1],"elL":[112.7,5.6],"haL":[102.3,54.8],"hipR":[-27.4,39],"knR":[-15.2,174.3],"ftR":[81.9,275.3],"hipL":[28.4,39.7],"knL":[-12.1,165.6],"ftL":[-21.5,316.7]},{"rootY":-0.8,"hips":[0,0],"chest":[3.6,-86.3],"neck":[3.6,-86.3],"head":[1.7,-155.5],"shR":[-60,-99.3],"elR":[-73.4,0],"haR":[-69.9,51],"shL":[67.6,-95],"elL":[114.3,5],"haL":[102.1,53.9],"hipR":[-27.1,38.7],"knR":[-15,174],"ftR":[82.8,275.7],"hipL":[28.1,40],"knL":[-12.6,165.8],"ftL":[-21.4,316.9]},{"rootY":-1.1,"hips":[0,0],"chest":[3.4,-86.2],"neck":[3.4,-86.2],"head":[1.1,-155.4],"shR":[-60.1,-99.5],"elR":[-75.6,-1.4],"haR":[-70.2,49.4],"shL":[67.1,-94.5],"elL":[116.7,4.4],"haL":[102.5,52.8],"hipR":[-26.7,38.7],"knR":[-14.7,174],"ftR":[83.5,276.1],"hipL":[27.7,40],"knL":[-13.9,165.8],"ftL":[-21.1,317.2]},{"rootY":-1.3,"hips":[0,0],"chest":[3.3,-86.1],"neck":[3.3,-86.1],"head":[1,-155.4],"shR":[-60,-99.6],"elR":[-77.3,-2.4],"haR":[-70.6,48.1],"shL":[66.6,-94.1],"elL":[119,3.6],"haL":[102.7,51.4],"hipR":[-26.6,38.4],"knR":[-13.5,173.6],"ftR":[84.8,275.7],"hipL":[27.4,40.2],"knL":[-14.7,166],"ftL":[-20.7,317.4]},{"rootY":-1.6,"hips":[0,0],"chest":[3.5,-86],"neck":[3.5,-86],"head":[1.3,-155.4],"shR":[-59.5,-99.8],"elR":[-78.1,-3.2],"haR":[-70.4,47.1],"shL":[66.5,-93.5],"elL":[120.9,3.4],"haL":[102.8,50.5],"hipR":[-26,38.3],"knR":[-12.8,173.4],"ftR":[86.1,276.3],"hipL":[27.1,40.3],"knL":[-16,166.1],"ftL":[-19.8,317.7]},{"rootY":-1.5,"hips":[0,0],"chest":[3.7,-85.8],"neck":[3.7,-85.8],"head":[1.7,-155.2],"shR":[-59.2,-100],"elR":[-79.1,-4],"haR":[-70.9,46.3],"shL":[66.6,-92.9],"elL":[122.9,3],"haL":[103.7,49.7],"hipR":[-25.8,38.1],"knR":[-11.1,173.1],"ftR":[87.5,275.9],"hipL":[26.8,40.5],"knL":[-15.3,166.5],"ftL":[-19.2,317.8]},{"rootY":-1.6,"hips":[0,0],"chest":[4.1,-85.7],"neck":[4.1,-85.7],"head":[2.2,-155.2],"shR":[-58.5,-100.5],"elR":[-78.4,-4.4],"haR":[-70.8,46],"shL":[66.9,-92.2],"elL":[124.3,3.1],"haL":[104.5,49.5],"hipR":[-25.9,37.9],"knR":[-8.9,172.6],"ftR":[88.7,275.6],"hipL":[26.6,40.7],"knL":[-15.3,166.9],"ftL":[-18.1,317.9]},{"rootY":-1.8,"hips":[0,0],"chest":[4.9,-85.5],"neck":[4.9,-85.5],"head":[3,-154.9],"shR":[-57.7,-100.3],"elR":[-76.6,-4],"haR":[-70.4,46.6],"shL":[67.8,-92.1],"elL":[124.9,3.3],"haL":[105,49.6],"hipR":[-25.8,37.8],"knR":[-6.9,172.1],"ftR":[88.6,275.2],"hipL":[26.8,40.8],"knL":[-15.2,167.1],"ftL":[-16.9,318]},{"rootY":-1.7,"hips":[0,0],"chest":[6.2,-85.4],"neck":[6.2,-85.4],"head":[4,-154.6],"shR":[-56.6,-100.5],"elR":[-73.9,-3.4],"haR":[-69.8,47.6],"shL":[69.4,-91.7],"elL":[125.2,4.3],"haL":[105.8,50.7],"hipR":[-26.2,37.7],"knR":[-4.4,171.4],"ftR":[86.9,274.5],"hipL":[26.6,40.9],"knL":[-14.4,167.6],"ftL":[-15.8,318.3]},{"rootY":-1.8,"hips":[0,0],"chest":[6.8,-85.4],"neck":[6.8,-85.4],"head":[4.4,-154.7],"shR":[-56.2,-100.7],"elR":[-70.7,-2.6],"haR":[-69.7,48.6],"shL":[70.6,-91.6],"elL":[123.3,5.7],"haL":[105.5,52.3],"hipR":[-27.2,37.1],"knR":[-3.9,170],"ftR":[82,274.1],"hipL":[26.6,41.4],"knL":[-15.4,168],"ftL":[-14.9,318.5]},{"rootY":-1.8,"hips":[0,0],"chest":[7.6,-85.4],"neck":[7.6,-85.4],"head":[4.8,-154.6],"shR":[-55.8,-100.6],"elR":[-67.3,-0.8],"haR":[-69.4,50.4],"shL":[72,-91.9],"elL":[119.9,7.3],"haL":[105,54.4],"hipR":[-27.8,37],"knR":[-4.5,169.1],"ftR":[74.5,273.7],"hipL":[26.8,41.5],"knL":[-15.3,168.2],"ftL":[-14.2,318.5]},{"rootY":-2.2,"hips":[0,0],"chest":[7.9,-85.6],"neck":[7.9,-85.6],"head":[4.6,-154.7],"shR":[-55.9,-100.4],"elR":[-63.9,1.6],"haR":[-70,52.4],"shL":[73.1,-92.6],"elL":[113.7,9.1],"haL":[103.8,56.9],"hipR":[-29.2,36.4],"knR":[-7.7,168],"ftR":[63.4,271.8],"hipL":[26.6,42],"knL":[-15.8,168.9],"ftL":[-13.8,319]},{"rootY":-3.6,"hips":[0,0],"chest":[8.4,-85.6],"neck":[8.4,-85.6],"head":[4.2,-154.7],"shR":[-56,-100],"elR":[-61.7,4.8],"haR":[-71,54.6],"shL":[74.3,-93.2],"elL":[105.9,11],"haL":[102.9,59.4],"hipR":[-30,35.9],"knR":[-14.1,167.5],"ftR":[48.5,269.6],"hipL":[26.2,42.5],"knL":[-14.6,170.1],"ftL":[-13.8,320.1]},{"rootY":-4.3,"hips":[0,0],"chest":[8.4,-85.8],"neck":[8.4,-85.8],"head":[3.3,-154.7],"shR":[-56.6,-99.4],"elR":[-62.5,8.1],"haR":[-74,56.5],"shL":[75.2,-94.4],"elL":[97,11.9],"haL":[101.8,60.7],"hipR":[-31.3,34.9],"knR":[-22.8,165.9],"ftR":[31.9,266.6],"hipL":[25.6,43.3],"knL":[-16.4,170.9],"ftL":[-14.5,320.9]},{"rootY":-4.9,"hips":[0,0],"chest":[8.2,-86],"neck":[8.2,-86],"head":[2.1,-154.8],"shR":[-57.4,-98.9],"elR":[-66.6,10.1],"haR":[-78.6,57.5],"shL":[75.9,-95.3],"elL":[91.4,12.2],"haL":[101.1,61],"hipR":[-32.2,34.6],"knR":[-31.1,165],"ftR":[12.1,264.7],"hipL":[25.5,43.5],"knL":[-15.8,171.6],"ftL":[-15.7,321.5]},{"rootY":-5.3,"hips":[0,0],"chest":[7.8,-86.1],"neck":[7.8,-86.1],"head":[0.8,-154.8],"shR":[-58.5,-97.9],"elR":[-73.1,11.5],"haR":[-86.2,57.8],"shL":[76.1,-96.8],"elL":[88.9,10.7],"haL":[101.2,59.5],"hipR":[-33.3,34.2],"knR":[-40.1,164],"ftR":[-11.2,263.4],"hipL":[25.4,43.8],"knL":[-14.9,172.3],"ftL":[-17.5,321.8]},{"rootY":-5.4,"hips":[0,0],"chest":[7.2,-86.2],"neck":[7.2,-86.2],"head":[-0.7,-154.9],"shR":[-59.5,-97.1],"elR":[-81.1,11.3],"haR":[-95.7,56],"shL":[76.3,-97.9],"elL":[90.3,8.6],"haL":[105.5,56.7],"hipR":[-34.4,34],"knR":[-48.7,162.9],"ftR":[-36.3,262.3],"hipL":[25.5,44],"knL":[-15.9,172.3],"ftL":[-19.3,321.7]},{"rootY":-5.2,"hips":[0,0],"chest":[6.2,-86.3],"neck":[6.2,-86.3],"head":[-2.5,-154.9],"shR":[-61,-96.1],"elR":[-92.1,10.1],"haR":[-108.8,52.6],"shL":[75.9,-99.2],"elL":[95.5,5.3],"haL":[114.2,51.6],"hipR":[-35.3,33.6],"knR":[-57.5,162],"ftR":[-62,261.9],"hipL":[25.7,44.2],"knL":[-15.1,172.6],"ftL":[-21.8,321.4]},{"rootY":-4.7,"hips":[0,0],"chest":[4.9,-86.4],"neck":[4.9,-86.4],"head":[-4.7,-154.7],"shR":[-62.5,-94.8],"elR":[-105.5,7.7],"haR":[-126.4,47.2],"shL":[74.8,-100.7],"elL":[103.6,-0.1],"haL":[126.5,43.1],"hipR":[-35.8,33.7],"knR":[-67.3,161.1],"ftR":[-87.4,261.5],"hipL":[26,44.2],"knL":[-15.4,172.4],"ftL":[-24.8,320.8]},{"rootY":-3.9,"hips":[0,0],"chest":[3.6,-86.5],"neck":[3.6,-86.5],"head":[-6.9,-154.7],"shR":[-64,-93.4],"elR":[-120.6,2.8],"haR":[-146.7,38.5],"shL":[73.5,-102.3],"elL":[113.8,-8.4],"haL":[141.8,29.7],"hipR":[-36,34.2],"knR":[-74.4,161.3],"ftR":[-111.1,262.2],"hipL":[26.8,43.8],"knL":[-15.5,171.8],"ftL":[-27.5,320]},{"rootY":-2.8,"hips":[0,0],"chest":[2.6,-86.5],"neck":[2.6,-86.5],"head":[-8.5,-154.7],"shR":[-65,-91.7],"elR":[-134.3,-3.7],"haR":[-167.6,27.3],"shL":[72.4,-104.1],"elL":[125.7,-20.5],"haL":[159.2,11.2],"hipR":[-36.1,34.8],"knR":[-78.4,162.2],"ftR":[-132.5,264],"hipL":[27.7,43.4],"knL":[-14.1,171.5],"ftL":[-30.5,319]},{"rootY":-1.8,"hips":[0,0],"chest":[1.7,-86.5],"neck":[1.7,-86.5],"head":[-10.3,-154.7],"shR":[-65.9,-90.1],"elR":[-147.8,-12.3],"haR":[-188.4,12.9],"shL":[71.1,-105.8],"elL":[137.9,-35.7],"haL":[176.7,-11.9],"hipR":[-36.2,35.5],"knR":[-78.8,164],"ftR":[-149.9,267.4],"hipL":[28.7,42.9],"knL":[-12.1,171.2],"ftL":[-33,318.3]},{"rootY":-1,"hips":[0,0],"chest":[0.9,-86.4],"neck":[0.9,-86.4],"head":[-12.2,-154.6],"shR":[-66.4,-88.1],"elR":[-160.6,-23.7],"haR":[-207.1,-4.7],"shL":[69.9,-107.7],"elL":[149.1,-54.9],"haL":[192.2,-40.3],"hipR":[-36.4,35.7],"knR":[-77.4,165.2],"ftR":[-162.1,272.7],"hipL":[29.2,42.7],"knL":[-11.1,171],"ftL":[-35.9,317.5]},{"rootY":-0.4,"hips":[0,0],"chest":[0.4,-86.4],"neck":[0.4,-86.4],"head":[-13.5,-154.4],"shR":[-66.6,-86],"elR":[-171.2,-37.9],"haR":[-220.9,-25.2],"shL":[68.7,-109.6],"elL":[158,-77],"haL":[204.3,-72.2],"hipR":[-36.2,36.1],"knR":[-73.7,165.7],"ftR":[-166.8,279.4],"hipL":[30,42.4],"knL":[-9.7,170.5],"ftL":[-38.9,316.9]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-86.3],"neck":[-0.4,-86.3],"head":[-15,-154.3],"shR":[-66.9,-84],"elR":[-178.1,-53.6],"haR":[-228.1,-47.5],"shL":[67.1,-111.4],"elL":[164.1,-100.3],"haL":[211.4,-105.9],"hipR":[-35.8,36.6],"knR":[-65.8,165.3],"ftR":[-162.5,286.3],"hipL":[30.8,41.9],"knL":[-7.9,170.1],"ftL":[-41.7,316.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-86.1],"neck":[-1.1,-86.1],"head":[-16.3,-154.3],"shR":[-66.9,-82.6],"elR":[-180.3,-71.1],"haR":[-227.8,-70.7],"shL":[65.5,-112.7],"elL":[165.5,-124.1],"haL":[212.2,-139.6],"hipR":[-35.2,36.7],"knR":[-55.3,162.7],"ftR":[-150.4,292.2],"hipL":[31.1,41.7],"knL":[-6.6,170],"ftL":[-44.9,316.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-1.5,-86],"neck":[-1.5,-86],"head":[-17.2,-154.1],"shR":[-66.4,-80.9],"elR":[-177.2,-88.5],"haR":[-219.6,-92.8],"shL":[64.2,-113.9],"elL":[163,-147],"haL":[206.9,-171.4],"hipR":[-34.1,36.9],"knR":[-39.1,159.8],"ftR":[-130.4,296.2],"hipL":[31.3,41.4],"knL":[-3.5,170.1],"ftL":[-47.5,316]},{"rootY":-0.3,"hips":[0,0],"chest":[-1.3,-86],"neck":[-1.3,-86],"head":[-17.1,-154.1],"shR":[-65,-79.8],"elR":[-168.7,-100.1],"haR":[-204.7,-111.3],"shL":[63.3,-114.9],"elL":[157.6,-167.3],"haL":[196.3,-199.6],"hipR":[-32.4,37.3],"knR":[-24.9,153.2],"ftR":[-104.7,297.2],"hipL":[31.6,41],"knL":[-1.4,169.9],"ftL":[-50.1,315.6]},{"rootY":-0.2,"hips":[0,0],"chest":[-0.3,-86],"neck":[-0.3,-86],"head":[-16.4,-154.1],"shR":[-62.9,-79.1],"elR":[-156.3,-110.4],"haR":[-184.8,-128.2],"shL":[63.4,-115.7],"elL":[150.5,-183.8],"haL":[182.2,-222.2],"hipR":[-30.1,38],"knR":[-10.3,145.2],"ftR":[-75.2,295.3],"hipL":[32.1,40.2],"knL":[0.3,169.6],"ftL":[-52.1,315.2]},{"rootY":0.2,"hips":[0,0],"chest":[0.7,-86],"neck":[0.7,-86],"head":[-15.9,-153.9],"shR":[-60.4,-78.6],"elR":[-141.7,-118.5],"haR":[-161.6,-142.5],"shL":[63.4,-116.3],"elL":[141.5,-196.3],"haL":[165.3,-239],"hipR":[-27.7,38.6],"knR":[5.3,135.8],"ftR":[-41.5,290.4],"hipL":[32.4,39.4],"knL":[1.6,169],"ftL":[-55.8,314.1]},{"rootY":1,"hips":[0,0],"chest":[1.5,-86.1],"neck":[1.5,-86.1],"head":[-15,-154],"shR":[-58.1,-78.5],"elR":[-124.7,-125.7],"haR":[-135.8,-155.2],"shL":[63,-116.5],"elL":[131.4,-204.3],"haL":[146.8,-249.7],"hipR":[-25.1,38.9],"knR":[20.3,126.9],"ftR":[-7.5,284.2],"hipL":[32.6,38.8],"knL":[1.6,168.6],"ftL":[-61.3,312.4]},{"rootY":2.3,"hips":[0,0],"chest":[1.3,-86.2],"neck":[1.3,-86.2],"head":[-14.8,-154.1],"shR":[-56.6,-78.4],"elR":[-106.1,-131.1],"haR":[-109.9,-165.9],"shL":[61.4,-117],"elL":[118.5,-208.7],"haL":[126.3,-255.2],"hipR":[-23.1,39],"knR":[32.9,119.7],"ftR":[23,278.4],"hipL":[32.2,38.5],"knL":[0.9,168.4],"ftL":[-68.3,310.7]},{"rootY":3.3,"hips":[0,0],"chest":[1,-86.3],"neck":[1,-86.3],"head":[-14.9,-154.3],"shR":[-55.1,-78.1],"elR":[-90,-137.1],"haR":[-86.2,-174.9],"shL":[59.5,-117.6],"elL":[104.5,-211.1],"haL":[106,-257.2],"hipR":[-21,39.2],"knR":[43.7,115],"ftR":[49.8,274.3],"hipL":[31.5,38.3],"knL":[0.3,168.2],"ftL":[-74.9,308.4]},{"rootY":5.2,"hips":[0,0],"chest":[1,-86.4],"neck":[1,-86.4],"head":[-14.3,-154.4],"shR":[-53.2,-77.7],"elR":[-75,-142.2],"haR":[-65,-182.1],"shL":[57.7,-118.2],"elL":[93.5,-212.1],"haL":[88.4,-256.3],"hipR":[-18.3,39.4],"knR":[51.1,112.2],"ftR":[72.9,272.4],"hipL":[30.5,37.9],"knL":[1.4,168.1],"ftL":[-80.1,304.7]},{"rootY":6.8,"hips":[0,0],"chest":[0.9,-86.5],"neck":[0.9,-86.5],"head":[-14,-154.6],"shR":[-50.8,-76.6],"elR":[-61.9,-145.3],"haR":[-46.4,-186.9],"shL":[55.2,-119.5],"elL":[84.2,-213.1],"haL":[72.5,-254.3],"hipR":[-14.7,40.2],"knR":[59.1,112.9],"ftR":[89.9,273.8],"hipL":[29.6,36.8],"knL":[4.7,167.6],"ftL":[-84.2,299.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.5],"neck":[-0.4,-86.5],"head":[-15.6,-154.5],"shR":[-48.9,-75.6],"elR":[-50.6,-147.9],"haR":[-31.1,-190.8],"shL":[50.8,-120.6],"elL":[75.4,-214.3],"haL":[59.2,-252.2],"hipR":[-10.8,40.2],"knR":[66.7,115.4],"ftR":[99,276.9],"hipL":[28,36.4],"knL":[7.4,167.6],"ftL":[-89.5,293.4]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-18.5,-154.2],"shR":[-47.4,-74.9],"elR":[-42.4,-150.9],"haR":[-19.6,-194.6],"shL":[44.9,-121.3],"elL":[67.2,-215.7],"haL":[48.1,-250.6],"hipR":[-7.3,40.4],"knR":[73.3,120.9],"ftR":[100.7,281.9],"hipL":[26.7,35.8],"knL":[10.5,167.9],"ftL":[-95.3,288.1]},{"rootY":10.5,"hips":[0,0],"chest":[-6.1,-86.2],"neck":[-6.1,-86.2],"head":[-23.1,-153.5],"shR":[-46.9,-74.6],"elR":[-36.1,-154],"haR":[-12,-198.5],"shL":[37,-121.4],"elL":[57.7,-217.2],"haL":[36.3,-249],"hipR":[-4.3,40.2],"knR":[80.1,127.7],"ftR":[95.9,288.7],"hipL":[24.7,35.8],"knL":[11.5,168.7],"ftL":[-102.2,282.9]},{"rootY":11.1,"hips":[0,0],"chest":[-10,-85.7],"neck":[-10,-85.7],"head":[-28.3,-152.7],"shR":[-47.3,-74.3],"elR":[-32.3,-156.8],"haR":[-8.1,-201.9],"shL":[29.2,-121],"elL":[49.2,-218.9],"haL":[26.9,-247.2],"hipR":[-1.6,40.5],"knR":[83.9,134.2],"ftR":[86.9,295.7],"hipL":[22.6,35.4],"knL":[15.6,169.2],"ftL":[-107,276.1]},{"rootY":11.9,"hips":[0,0],"chest":[-13.6,-85.1],"neck":[-13.6,-85.1],"head":[-32.7,-151.8],"shR":[-47.3,-73.7],"elR":[-29.6,-159.3],"haR":[-6.6,-204.9],"shL":[21.8,-120.5],"elL":[40.5,-220.3],"haL":[18.9,-246.6],"hipR":[1.3,40],"knR":[85.9,138.2],"ftR":[76.7,299.1],"hipL":[20.7,35.6],"knL":[23.8,170.1],"ftL":[-106.7,269.4]},{"rootY":13,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35.6,-151.3],"shR":[-44.5,-74.4],"elR":[-26.1,-163.7],"haR":[-3.9,-209.1],"shL":[15.2,-119.6],"elL":[32.9,-220.9],"haL":[13.6,-247.5],"hipR":[3.9,39.5],"knR":[87.2,139.8],"ftR":[71.3,299.2],"hipL":[19.4,35.7],"knL":[34.8,169.8],"ftL":[-98.5,264.3]},{"rootY":13.6,"hips":[0,0],"chest":[-16.3,-84.7],"neck":[-16.3,-84.7],"head":[-37.4,-150.8],"shR":[-42,-75.3],"elR":[-23,-167],"haR":[-1.8,-212.3],"shL":[10.8,-118.4],"elL":[28.8,-221.1],"haL":[10.9,-248.5],"hipR":[5.5,37.3],"knR":[86.7,140.7],"ftR":[68.1,298.7],"hipL":[18.2,37.7],"knL":[46.7,170.2],"ftL":[-84.6,262.4]},{"rootY":15.1,"hips":[0,0],"chest":[-16.5,-84.6],"neck":[-16.5,-84.6],"head":[-37.6,-150.8],"shR":[-39,-75.9],"elR":[-18.2,-168.8],"haR":[-0.1,-215.3],"shL":[7.6,-117.8],"elL":[26.7,-222.2],"haL":[9.6,-250.3],"hipR":[6,36.6],"knR":[87,141.2],"ftR":[65.4,297.8],"hipL":[18.4,38.1],"knL":[57.1,168.2],"ftL":[-70.9,259.6]},{"rootY":17.3,"hips":[0,0],"chest":[-16.8,-84.5],"neck":[-16.8,-84.5],"head":[-38.2,-150.6],"shR":[-37.7,-76.7],"elR":[-14.6,-169.2],"haR":[2.1,-215.9],"shL":[5.9,-116.9],"elL":[26.9,-222.6],"haL":[10.7,-251.4],"hipR":[5.9,36.5],"knR":[88.3,140.7],"ftR":[62.7,296.1],"hipL":[18.3,38.2],"knL":[66,165.4],"ftL":[-59.8,257.6]},{"rootY":19.1,"hips":[0,0],"chest":[-17,-84.5],"neck":[-17,-84.5],"head":[-38.3,-150.7],"shR":[-37.3,-78.2],"elR":[-12.5,-169.6],"haR":[5,-215.8],"shL":[5.2,-115.5],"elL":[29,-221.5],"haL":[14.2,-251.2],"hipR":[5.8,36.3],"knR":[89.5,140],"ftR":[60.7,294.5],"hipL":[18.2,38.5],"knL":[73.3,162.4],"ftL":[-51.3,257.8]},{"rootY":18.6,"hips":[0,0],"chest":[-16.7,-84.6],"neck":[-16.7,-84.6],"head":[-36.9,-151.2],"shR":[-36.9,-78.5],"elR":[-11.2,-167.7],"haR":[9.3,-212.4],"shL":[5.8,-115.3],"elL":[32.7,-221.1],"haL":[18.4,-251.5],"hipR":[6.2,36],"knR":[89.9,140.2],"ftR":[59.6,294.4],"hipL":[18.2,38.6],"knL":[77.8,160],"ftL":[-44.5,262.7]},{"rootY":16.3,"hips":[0,0],"chest":[-16.1,-84.7],"neck":[-16.1,-84.7],"head":[-35,-151.7],"shR":[-38.1,-78.3],"elR":[-11.4,-164.3],"haR":[13,-206.6],"shL":[8.4,-115.6],"elL":[39.3,-219.7],"haL":[25.2,-248.8],"hipR":[5.9,35.7],"knR":[89,140.8],"ftR":[58,295.4],"hipL":[18.7,38.7],"knL":[78.6,159],"ftL":[-38.2,271.8]},{"rootY":14.2,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35,-151.5],"shR":[-39.5,-79.6],"elR":[-9,-161.2],"haR":[18.6,-201.2],"shL":[11.4,-114.5],"elL":[46.5,-216.4],"haL":[31.9,-242.8],"hipR":[4.5,35.9],"knR":[87.6,140.9],"ftR":[57.8,295.9],"hipL":[19.6,38.7],"knL":[75.4,159],"ftL":[-33.1,282]},{"rootY":11.3,"hips":[0,0],"chest":[-13.9,-85],"neck":[-13.9,-85],"head":[-31.9,-152.2],"shR":[-42.4,-78.2],"elR":[-7.8,-152.1],"haR":[22.8,-189.4],"shL":[17.7,-116],"elL":[57.6,-214.6],"haL":[41.1,-238.6],"hipR":[1.9,36.2],"knR":[85.8,140.3],"ftR":[57.3,296.4],"hipL":[21.1,38.6],"knL":[68,160.3],"ftL":[-29.2,291.5]},{"rootY":8.7,"hips":[0,0],"chest":[-11.6,-85.3],"neck":[-11.6,-85.3],"head":[-26.8,-153.3],"shR":[-43.8,-80.5],"elR":[-3,-146.4],"haR":[29.4,-182.3],"shL":[24.2,-114.3],"elL":[69.1,-207.4],"haL":[49.5,-230.5],"hipR":[-1.5,36.8],"knR":[84,138],"ftR":[58.2,295.2],"hipL":[23.9,38.1],"knL":[57.9,161.5],"ftL":[-27.3,298.1]},{"rootY":8.7,"hips":[0,0],"chest":[-9.1,-85.6],"neck":[-9.1,-85.6],"head":[-22.7,-154],"shR":[-47,-80.4],"elR":[0.6,-133.8],"haR":[32.5,-169.3],"shL":[32.9,-114.9],"elL":[82.7,-200.1],"haL":[60.3,-224.1],"hipR":[-6,37],"knR":[76.3,135.3],"ftR":[58.2,292.9],"hipL":[26.4,38.2],"knL":[47.1,162.3],"ftL":[-27.2,303.1]},{"rootY":6.9,"hips":[0,0],"chest":[-6.1,-86.1],"neck":[-6.1,-86.1],"head":[-18.4,-154.7],"shR":[-48.6,-83.5],"elR":[7.7,-122.8],"haR":[39.3,-161.6],"shL":[41,-112.5],"elL":[95.6,-186.6],"haL":[72.4,-215],"hipR":[-11.1,36.3],"knR":[68.5,134.3],"ftR":[55.3,296],"hipL":[28.8,38.9],"knL":[39.8,164.1],"ftL":[-27.4,307.3]},{"rootY":6.6,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-15.2,-155.3],"shR":[-52.3,-83.4],"elR":[10.8,-108.9],"haR":[40.6,-150.3],"shL":[50.6,-112.8],"elL":[107,-172.1],"haL":[86.4,-206.3],"hipR":[-14.6,36.1],"knR":[58.9,134.3],"ftR":[51.5,298.2],"hipL":[30.2,39.2],"knL":[34.4,164.2],"ftL":[-28.8,309.4]},{"rootY":6.6,"hips":[0,0],"chest":[-0.8,-86.7],"neck":[-0.8,-86.7],"head":[-10.6,-156],"shR":[-52.3,-84.9],"elR":[18,-97.3],"haR":[46,-139.8],"shL":[56.1,-111.6],"elL":[111.2,-154.5],"haL":[96.2,-193.5],"hipR":[-17.6,36],"knR":[49.3,132.6],"ftR":[43.1,297.1],"hipL":[30.9,39.5],"knL":[35.3,163.1],"ftL":[-24.9,309.1]},{"rootY":6.2,"hips":[0,0],"chest":[0.9,-86.8],"neck":[0.9,-86.8],"head":[-6.8,-156.3],"shR":[-54.7,-84.6],"elR":[20.8,-87],"haR":[47.1,-127.1],"shL":[61.4,-111.8],"elL":[111.3,-138.7],"haL":[104.3,-180.7],"hipR":[-19.8,36.7],"knR":[38.7,131.6],"ftR":[26.3,295.3],"hipL":[31.5,39.3],"knL":[36.6,162.2],"ftL":[-21.5,308.9]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-86.8],"neck":[1.4,-86.8],"head":[-4.9,-156.6],"shR":[-54.9,-85.7],"elR":[21.3,-82.2],"haR":[46,-116.3],"shL":[63.2,-110.4],"elL":[106.8,-123.6],"haL":[110.1,-165.7],"hipR":[-22.2,37.2],"knR":[32.2,136.9],"ftR":[-2.9,293.9],"hipL":[31.9,39.3],"knL":[36.4,161.9],"ftL":[-20.3,309.4]},{"rootY":6.2,"hips":[0,0],"chest":[2,-86.8],"neck":[2,-86.8],"head":[-4.7,-156.6],"shR":[-55.1,-87.5],"elR":[16.6,-81.8],"haR":[38.5,-108.3],"shL":[64.8,-108.5],"elL":[105.9,-109.5],"haL":[116.5,-148.1],"hipR":[-24.3,37.5],"knR":[18.1,143.3],"ftR":[-38.9,291.5],"hipL":[32.4,39.4],"knL":[35.4,160.9],"ftL":[-19.9,308.1]},{"rootY":6.8,"hips":[0,0],"chest":[1.6,-86.8],"neck":[1.6,-86.8],"head":[-4.5,-156.6],"shR":[-55.2,-89.1],"elR":[7.3,-83.7],"haR":[24.2,-100.8],"shL":[64.6,-106.9],"elL":[108,-98.4],"haL":[124.5,-131.3],"hipR":[-26,37.9],"knR":[6.7,149.5],"ftR":[-65.7,289.5],"hipL":[32.9,39.3],"knL":[34.5,160.2],"ftL":[-19.7,307.5]},{"rootY":7.2,"hips":[0,0],"chest":[1.3,-86.8],"neck":[1.3,-86.8],"head":[-4,-156.7],"shR":[-56.5,-89.7],"elR":[-9.2,-88.4],"haR":[1.7,-93.4],"shL":[65.4,-106.3],"elL":[112.9,-91.5],"haL":[134.9,-117.3],"hipR":[-26.5,38.9],"knR":[-8.4,156.7],"ftR":[-97.1,288.5],"hipL":[34.3,38.4],"knL":[34.7,159.6],"ftL":[-19.4,306.9]},{"rootY":8.3,"hips":[0,0],"chest":[0.6,-86.7],"neck":[0.6,-86.7],"head":[-4.8,-156.6],"shR":[-58.4,-89.6],"elR":[-33.7,-90.3],"haR":[-28.5,-86],"shL":[65.5,-106.3],"elL":[120,-87],"haL":[146.6,-105.3],"hipR":[-26.8,39.7],"knR":[-23.8,164.6],"ftR":[-128.5,286.3],"hipL":[34.8,37.9],"knL":[34.1,158.7],"ftL":[-20.1,305.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.7],"neck":[-0.4,-86.7],"head":[-5.6,-156.6],"shR":[-60,-89.3],"elR":[-58.4,-87.9],"haR":[-60,-78],"shL":[65.1,-106.4],"elL":[127.7,-83.5],"haL":[157.7,-96.5],"hipR":[-27.6,39.4],"knR":[-129.3,128.2],"ftR":[-154.9,283.2],"hipL":[34.2,38.4],"knL":[33.6,158.4],"ftL":[-20.8,304.8]},{"rootY":9.7,"hips":[0,0],"chest":[-0.2,-86.5],"neck":[-0.2,-86.5],"head":[-5.8,-156.3],"shR":[-60.9,-89.7],"elR":[-81.7,-85],"haR":[-92.5,-73.5],"shL":[66.1,-105.6],"elL":[138.2,-78.9],"haL":[170.4,-87.6],"hipR":[-28.7,39.4],"knR":[-134.6,124.5],"ftR":[-173.1,280.6],"hipL":[33.8,38.8],"knL":[32.8,158.1],"ftL":[-21.1,304.1]},{"rootY":10.3,"hips":[0,0],"chest":[0.6,-86.3],"neck":[0.6,-86.3],"head":[-5.5,-156.1],"shR":[-60.6,-89.7],"elR":[-102.3,-82.4],"haR":[-122.9,-70.3],"shL":[67.4,-105.2],"elL":[147.7,-76],"haL":[183.4,-80.5],"hipR":[-30,39.6],"knR":[-58.5,170.8],"ftR":[-180.6,280],"hipL":[33.5,38.9],"knL":[31.9,157.6],"ftL":[-21,303.3]},{"rootY":10.8,"hips":[0,0],"chest":[1.7,-86.1],"neck":[1.7,-86.1],"head":[-4.6,-155.7],"shR":[-60.4,-89.5],"elR":[-121.3,-81.6],"haR":[-150.8,-69],"shL":[69.2,-104.7],"elL":[157.9,-72.1],"haL":[195.9,-73.8],"hipR":[-31.3,39.4],"knR":[-63.5,170.9],"ftR":[-179.2,280.2],"hipL":[33.2,39.3],"knL":[31.6,157.4],"ftL":[-20.6,302.5]},{"rootY":11,"hips":[0,0],"chest":[3,-85.6],"neck":[3,-85.6],"head":[-3.3,-155.2],"shR":[-59.9,-89.8],"elR":[-136.9,-82.8],"haR":[-173.6,-70.7],"shL":[71.3,-103.4],"elL":[166.5,-69.5],"haL":[207.3,-68.9],"hipR":[-32.2,39.3],"knR":[-63.1,171.5],"ftR":[-172,279.5],"hipL":[33,39.4],"knL":[31.6,157.6],"ftL":[-19.8,302.2]},{"rootY":11.3,"hips":[0,0],"chest":[4.2,-85],"neck":[4.2,-85],"head":[-1.8,-154.5],"shR":[-59.6,-90.7],"elR":[-148.9,-85.1],"haR":[-191.4,-74.8],"shL":[73.5,-101.2],"elL":[173.8,-67.7],"haL":[217.4,-66.2],"hipR":[-32.3,39.6],"knR":[-60.3,171.1],"ftR":[-158.4,277.5],"hipL":[33.5,39],"knL":[31.1,157.3],"ftL":[-18.7,301.7]},{"rootY":11.9,"hips":[0,0],"chest":[5.3,-84.3],"neck":[5.3,-84.3],"head":[0.3,-153.7],"shR":[-59.2,-91.4],"elR":[-158.2,-89.3],"haR":[-204.8,-81.2],"shL":[75.4,-98.6],"elL":[180,-66.9],"haL":[225.6,-65.3],"hipR":[-32.3,39.8],"knR":[-56.4,170],"ftR":[-139.1,274.2],"hipL":[34.1,38.6],"knL":[29.8,156.6],"ftL":[-17.7,301.1]},{"rootY":12.3,"hips":[0,0],"chest":[6.9,-83.2],"neck":[6.9,-83.2],"head":[2.9,-152.6],"shR":[-58.3,-91.9],"elR":[-163.9,-95.3],"haR":[-213,-89.6],"shL":[77.7,-95.7],"elL":[184.6,-66.5],"haL":[231.6,-65.5],"hipR":[-31.9,39.9],"knR":[-49.3,168.5],"ftR":[-114.7,270.1],"hipL":[34.8,38.1],"knL":[28.6,156.2],"ftL":[-15.7,300.9]},{"rootY":12.6,"hips":[0,0],"chest":[7.6,-82.1],"neck":[7.6,-82.1],"head":[4.5,-151.6],"shR":[-57.9,-92.9],"elR":[-167.3,-102.3],"haR":[-217.8,-99.3],"shL":[79,-92.3],"elL":[187.6,-66],"haL":[235.4,-65.6],"hipR":[-32,39.2],"knR":[-42.2,166.1],"ftR":[-86.9,264.9],"hipL":[34.7,38.4],"knL":[26.4,156.3],"ftL":[-13.3,301]},{"rootY":13,"hips":[0,0],"chest":[8.7,-80.9],"neck":[8.7,-80.9],"head":[7,-150.4],"shR":[-57.1,-93.4],"elR":[-168.3,-109.8],"haR":[-219.3,-109.5],"shL":[80.4,-89],"elL":[189.7,-65.2],"haL":[238.1,-65.6],"hipR":[-31.4,38.8],"knR":[-35.1,164.4],"ftR":[-55.8,258.8],"hipL":[34.8,38.5],"knL":[23.9,156.4],"ftL":[-10.2,301.4]},{"rootY":13.4,"hips":[0,0],"chest":[9.6,-79.7],"neck":[9.6,-79.7],"head":[9.1,-149.2],"shR":[-56.4,-93.8],"elR":[-167.6,-117.2],"haR":[-218.8,-120],"shL":[81.3,-85.8],"elL":[191.1,-64.6],"haL":[239.8,-66],"hipR":[-30.1,38.7],"knR":[-26.3,163],"ftR":[-25.4,253.4],"hipL":[35.1,38.4],"knL":[20.7,155.7],"ftL":[-8.1,300.3]},{"rootY":15,"hips":[0,0],"chest":[9.1,-79],"neck":[9.1,-79],"head":[9.5,-148.6],"shR":[-56.7,-95.4],"elR":[-167.1,-125.8],"haR":[-217.9,-131.7],"shL":[80.6,-82.5],"elL":[190.9,-63.9],"haL":[239.3,-66],"hipR":[-30.5,37.6],"knR":[-17.8,159.6],"ftR":[2.3,247.1],"hipL":[34,39.3],"knL":[16.5,155.1],"ftL":[-7.2,299.4]},{"rootY":15.9,"hips":[0,0],"chest":[8.8,-78.4],"neck":[8.8,-78.4],"head":[10.2,-148.1],"shR":[-56.6,-96.7],"elR":[-165.6,-132.9],"haR":[-215.9,-141.8],"shL":[79.9,-79.9],"elL":[190.5,-63.1],"haL":[238.6,-65.8],"hipR":[-29.6,37.2],"knR":[-8.5,157.2],"ftR":[27.5,242.3],"hipL":[33.7,39.6],"knL":[13.6,154.8],"ftL":[-6,298.8]},{"rootY":16.5,"hips":[0,0],"chest":[8.6,-77.9],"neck":[8.6,-77.9],"head":[10.8,-147.6],"shR":[-56.3,-98],"elR":[-163.8,-139.1],"haR":[-213.3,-151],"shL":[79,-77.5],"elL":[189.7,-61.8],"haL":[237.3,-64.9],"hipR":[-28.6,37.2],"knR":[-1.1,156.7],"ftR":[49.3,240.6],"hipL":[33.5,39.6],"knL":[12.1,154.8],"ftL":[-4.6,298.1]},{"rootY":16.8,"hips":[0,0],"chest":[8.7,-77.5],"neck":[8.7,-77.5],"head":[11.5,-147.3],"shR":[-55.7,-98.9],"elR":[-161.6,-143.8],"haR":[-210.3,-158.4],"shL":[78.2,-75.5],"elL":[188.7,-59.8],"haL":[235.6,-63],"hipR":[-26.8,37.6],"knR":[6.2,157.5],"ftR":[67.7,240.9],"hipL":[33.7,39.1],"knL":[11.6,154.8],"ftL":[-3.6,297.9]},{"rootY":17.3,"hips":[0,0],"chest":[6.5,-78.2],"neck":[6.5,-78.2],"head":[10.1,-147.9],"shR":[-57.4,-100.7],"elR":[-162.3,-148.4],"haR":[-210.2,-164.9],"shL":[75.1,-74.5],"elL":[184.9,-58.3],"haL":[231,-61.4],"hipR":[-26.8,36.9],"knR":[8.5,156.9],"ftR":[79.9,242.8],"hipL":[33.1,39.7],"knL":[8.7,155.3],"ftL":[-4.3,297.3]},{"rootY":18.1,"hips":[0,0],"chest":[4.8,-78.4],"neck":[4.8,-78.4],"head":[9.5,-148.2],"shR":[-58.1,-102.2],"elR":[-162.4,-151.2],"haR":[-209.7,-169.3],"shL":[72.2,-73.5],"elL":[181.2,-56.5],"haL":[226.3,-58.9],"hipR":[-26.2,37.2],"knR":[11.9,158.8],"ftR":[89.1,247.4],"hipL":[33,39.5],"knL":[6.4,154.7],"ftL":[-4.2,296.3]},{"rootY":18.6,"hips":[0,0],"chest":[4.7,-77.6],"neck":[4.7,-77.6],"head":[9.2,-147.3],"shR":[-57.9,-102.4],"elR":[-162.1,-151.9],"haR":[-208.8,-170.7],"shL":[71.9,-71.2],"elL":[179.5,-52.4],"haL":[223.3,-54.1],"hipR":[-25.1,38],"knR":[15.4,161.7],"ftR":[95.5,252.6],"hipL":[33.3,38.9],"knL":[5.9,154.5],"ftL":[-4.1,296.2]},{"rootY":19.2,"hips":[0,0],"chest":[4.1,-76.8],"neck":[4.1,-76.8],"head":[8.9,-146.6],"shR":[-58,-101.8],"elR":[-162.6,-150.4],"haR":[-208.8,-169.8],"shL":[70.3,-70.5],"elL":[175.7,-49.3],"haL":[218.4,-50.2],"hipR":[-24.9,38.1],"knR":[15.2,163.8],"ftR":[98.7,257.5],"hipL":[32.8,39.1],"knL":[5.5,154.6],"ftL":[-4.9,295.7]},{"rootY":19.6,"hips":[0,0],"chest":[3.7,-76.4],"neck":[3.7,-76.4],"head":[8.5,-146.3],"shR":[-57.8,-102.2],"elR":[-163.5,-148.6],"haR":[-209.4,-168.5],"shL":[69.3,-69.5],"elL":[171.9,-45.5],"haL":[213.2,-45],"hipR":[-24.3,38.6],"knR":[15.9,165.1],"ftR":[101.4,259.5],"hipL":[32.8,38.8],"knL":[6.6,154.8],"ftL":[-5.3,295]},{"rootY":20.3,"hips":[0,0],"chest":[2.5,-76.7],"neck":[2.5,-76.7],"head":[7.4,-146.5],"shR":[-58.5,-103],"elR":[-165.1,-147.3],"haR":[-210.8,-167.4],"shL":[67.5,-69],"elL":[166.6,-41.9],"haL":[205.4,-40.3],"hipR":[-25,38.6],"knR":[14.9,164.9],"ftR":[101.1,259],"hipL":[32.4,39],"knL":[7,155],"ftL":[-6.4,294.3]},{"rootY":21.6,"hips":[0,0],"chest":[1.9,-76.7],"neck":[1.9,-76.7],"head":[6.8,-146.5],"shR":[-59.1,-102.7],"elR":[-166.2,-145.5],"haR":[-211.8,-165.9],"shL":[66.6,-69.1],"elL":[161.9,-39.4],"haL":[198.1,-36.5],"hipR":[-25.1,38.8],"knR":[15.6,164.5],"ftR":[99.8,258.1],"hipL":[32.7,38.8],"knL":[6.7,154.2],"ftL":[-7.6,292.7]},{"rootY":22,"hips":[0,0],"chest":[1.2,-76],"neck":[1.2,-76],"head":[5.9,-145.8],"shR":[-59.8,-101.5],"elR":[-167,-144.2],"haR":[-212,-165.5],"shL":[65.5,-69.1],"elL":[157.9,-38.8],"haL":[192,-35.7],"hipR":[-26,38.1],"knR":[15.9,162.2],"ftR":[98.5,255.5],"hipL":[32.5,39.4],"knL":[4,153.1],"ftL":[-9.8,291.1]},{"rootY":22.6,"hips":[0,0],"chest":[0.4,-75.1],"neck":[0.4,-75.1],"head":[4.6,-144.9],"shR":[-60.5,-100],"elR":[-167.1,-143.9],"haR":[-211.6,-166.5],"shL":[64,-68.8],"elL":[155.2,-40.6],"haL":[187.5,-38.4],"hipR":[-26.5,37],"knR":[15.8,159.4],"ftR":[98.2,249.5],"hipL":[32,40.1],"knL":[0.2,152.6],"ftL":[-12.1,290.4]},{"rootY":19.7,"hips":[0,0],"chest":[-0.4,-73.9],"neck":[-0.4,-73.9],"head":[4.2,-143.6],"shR":[-61,-98.9],"elR":[-166.8,-144.7],"haR":[-210.7,-168.8],"shL":[62.3,-67.3],"elL":[153.8,-43.3],"haL":[186.3,-42.3],"hipR":[-25.7,35.7],"knR":[17.7,154.8],"ftR":[101.7,237.7],"hipL":[31.3,40.7],"knL":[-2.8,154.1],"ftL":[-12.8,292.7]},{"rootY":15.2,"hips":[0,0],"chest":[-1.7,-73.3],"neck":[-1.7,-73.3],"head":[3.3,-142.8],"shR":[-62.2,-98.2],"elR":[-166.8,-146.9],"haR":[-209.6,-173],"shL":[60.7,-66.6],"elL":[154.2,-47],"haL":[186.7,-47.9],"hipR":[-25.2,33.5],"knR":[20.9,145.1],"ftR":[108.8,216.1],"hipL":[30,41.9],"knL":[-5.9,156.7],"ftL":[-13.5,296.5]},{"rootY":8.7,"hips":[0,0],"chest":[-2.6,-72.8],"neck":[-2.6,-72.8],"head":[2.6,-142.1],"shR":[-62.6,-98.1],"elR":[-165.4,-150.3],"haR":[-207.1,-178.3],"shL":[59,-65.3],"elL":[155.6,-50],"haL":[189.2,-52.2],"hipR":[-23.7,31.8],"knR":[24.4,133.8],"ftR":[118.7,186.4],"hipL":[29,42.6],"knL":[-8.1,160.5],"ftL":[-13,302.1]},{"rootY":1.9,"hips":[0,0],"chest":[-3.5,-72.9],"neck":[-3.5,-72.9],"head":[1.9,-142.1],"shR":[-63.1,-98.5],"elR":[-163.8,-154.6],"haR":[-204,-184.7],"shL":[57.4,-65],"elL":[156.6,-53],"haL":[191.8,-56.2],"hipR":[-23.2,29],"knR":[27.1,119.1],"ftR":[128.8,148.7],"hipL":[27.4,43.8],"knL":[-11,164.3],"ftL":[-10.9,307.8]},{"rootY":-6.7,"hips":[0,0],"chest":[-4.2,-72.8],"neck":[-4.2,-72.8],"head":[1.6,-141.9],"shR":[-62.9,-99.4],"elR":[-161.7,-158.8],"haR":[-200.3,-190.8],"shL":[55.7,-63.9],"elL":[157.5,-54.3],"haL":[194.3,-58],"hipR":[-23.5,25.2],"knR":[29,102.2],"ftR":[137.4,109],"hipL":[25.1,45.4],"knL":[-14.1,167.9],"ftL":[-7.4,314]},{"rootY":-17.3,"hips":[0,0],"chest":[-4,-71.8],"neck":[-4,-71.8],"head":[2.3,-140.8],"shR":[-61.7,-99.2],"elR":[-158.5,-161.6],"haR":[-195.6,-195.1],"shL":[54.9,-62.2],"elL":[159.2,-52.6],"haL":[198.3,-56.3],"hipR":[-22.2,23],"knR":[30.1,88.7],"ftR":[144.8,70.4],"hipL":[23.3,46.4],"knL":[-15.2,171.3],"ftL":[-5.7,319.9]},{"rootY":-27.4,"hips":[0,0],"chest":[-3.9,-71.2],"neck":[-3.9,-71.2],"head":[2.8,-140.2],"shR":[-60.8,-99.8],"elR":[-155.9,-164.3],"haR":[-191.8,-199],"shL":[54.4,-60.6],"elL":[160.5,-49.4],"haL":[201,-52.3],"hipR":[-22.1,19.2],"knR":[29.7,72.7],"ftR":[150.1,32.4],"hipL":[21.2,47.5],"knL":[-18.7,173.3],"ftL":[-4.1,324.5]},{"rootY":-37.7,"hips":[0,0],"chest":[-3.8,-70.5],"neck":[-3.8,-70.5],"head":[3.5,-139.4],"shR":[-60,-99.9],"elR":[-153.5,-165.9],"haR":[-188.3,-201.8],"shL":[54.1,-59.1],"elL":[161.3,-44.8],"haL":[203.2,-46.3],"hipR":[-22.4,15.3],"knR":[26.8,56.5],"ftR":[153.3,-0.8],"hipL":[18.6,48.5],"knL":[-22.7,174.7],"ftL":[-2.4,328.3]},{"rootY":-46.8,"hips":[0,0],"chest":[-4.2,-69.9],"neck":[-4.2,-69.9],"head":[3.7,-138.8],"shR":[-59,-100.8],"elR":[-151.3,-167.8],"haR":[-184.9,-204.8],"shL":[52.5,-57.1],"elL":[160.4,-38],"haL":[203.7,-37.4],"hipR":[-23.5,10.7],"knR":[24.2,38.5],"ftR":[154.7,-31.7],"hipL":[16,49.1],"knL":[-25.3,175.6],"ftL":[-0.8,331.9]},{"rootY":-54,"hips":[0,0],"chest":[-4.2,-69.5],"neck":[-4.2,-69.5],"head":[4.7,-138.3],"shR":[-57.5,-101.8],"elR":[-148.7,-169.8],"haR":[-181.6,-207.6],"shL":[51.2,-55.3],"elL":[158.7,-30.6],"haL":[203,-27.8],"hipR":[-23.7,8],"knR":[20.4,21.3],"ftR":[154.8,-57.4],"hipL":[13.9,49.4],"knL":[-25,177.2],"ftL":[3.1,335.2]},{"rootY":-59.1,"hips":[0,0],"chest":[-4,-69.5],"neck":[-4,-69.5],"head":[5.9,-138.2],"shR":[-56.5,-102.6],"elR":[-146.7,-171.1],"haR":[-178.9,-209.9],"shL":[50.7,-54.8],"elL":[157.4,-24.8],"haL":[202.2,-19.3],"hipR":[-23.7,4.3],"knR":[17.4,5.3],"ftR":[153.5,-79.3],"hipL":[12.5,49.2],"knL":[-19.9,179],"ftL":[7.9,338.3]},{"rootY":-60.4,"hips":[0,0],"chest":[-4.5,-70.6],"neck":[-4.5,-70.6],"head":[6.2,-139.2],"shR":[-55.6,-104.4],"elR":[-144.9,-173.8],"haR":[-176.5,-213.5],"shL":[49,-55.4],"elL":[154.7,-20.6],"haL":[199.6,-12.6],"hipR":[-26,-1.4],"knR":[14.7,-9.1],"ftR":[150.8,-97.7],"hipL":[9.9,48.1],"knL":[-16.1,179.4],"ftL":[10.8,339.9]},{"rootY":-60.7,"hips":[0,0],"chest":[-3.5,-71.1],"neck":[-3.5,-71.1],"head":[8,-139.5],"shR":[-53.8,-105.7],"elR":[-142,-176.4],"haR":[-172.8,-217],"shL":[49.4,-55.1],"elL":[153.4,-15.2],"haL":[198.5,-5.8],"hipR":[-24.8,-2.1],"knR":[14.5,-16.6],"ftR":[148.3,-110.5],"hipL":[10,48],"knL":[-11.8,180.8],"ftL":[12.1,342.1]},{"rootY":-59.5,"hips":[0,0],"chest":[-2.8,-71.4],"neck":[-2.8,-71.4],"head":[9.5,-139.6],"shR":[-52.8,-106.9],"elR":[-139.9,-178.7],"haR":[-169.8,-220],"shL":[50.1,-54.3],"elL":[153,-11.4],"haL":[198.1,-0.7],"hipR":[-24.3,-2.8],"knR":[16.1,-19.7],"ftR":[145.8,-119.5],"hipL":[10,47.8],"knL":[-9.4,181.4],"ftL":[11,343.3]},{"rootY":-57.6,"hips":[0,0],"chest":[-2,-71.2],"neck":[-2,-71.2],"head":[11.1,-139.1],"shR":[-52.1,-107.5],"elR":[-138.6,-180],"haR":[-167.8,-222],"shL":[51.1,-52.8],"elL":[153.4,-8.4],"haL":[198.2,3.1],"hipR":[-24.6,-3.3],"knR":[17.8,-17.9],"ftR":[144.4,-121.4],"hipL":[9.6,47.6],"knL":[-11,181.1],"ftL":[9.2,343]},{"rootY":-56.1,"hips":[0,0],"chest":[-1.1,-70.3],"neck":[-1.1,-70.3],"head":[12.5,-138],"shR":[-51.3,-107.6],"elR":[-137.3,-180],"haR":[-166.2,-222.3],"shL":[52.2,-50.3],"elL":[153.8,-4.7],"haL":[198.7,7.4],"hipR":[-23.9,-2.1],"knR":[19.8,-13.6],"ftR":[146.2,-116.4],"hipL":[10.4,47.9],"knL":[-13.8,180.7],"ftL":[8.5,342]},{"rootY":-54.7,"hips":[0,0],"chest":[-0.8,-69.8],"neck":[-0.8,-69.8],"head":[13.6,-137.1],"shR":[-51.6,-107.5],"elR":[-137.8,-179.6],"haR":[-166.9,-221.7],"shL":[52.8,-48.8],"elL":[154.4,-2.9],"haL":[199,9.7],"hipR":[-23.9,-0.7],"knR":[20,-7.6],"ftR":[149.6,-104],"hipL":[10.8,48.2],"knL":[-17,180],"ftL":[8,340.6]},{"rootY":-53.3,"hips":[0,0],"chest":[-1.3,-69.3],"neck":[-1.3,-69.3],"head":[12.9,-136.7],"shR":[-52.5,-107.2],"elR":[-139.6,-178.3],"haR":[-169.2,-220],"shL":[52.6,-47.5],"elL":[154.2,-1.7],"haL":[198.7,11.4],"hipR":[-25.4,-0.9],"knR":[19.3,-1.2],"ftR":[153.6,-86.7],"hipL":[9.9,48.3],"knL":[-20.6,179.2],"ftL":[7.2,339.2]},{"rootY":-53.3,"hips":[0,0],"chest":[-0.5,-68.8],"neck":[-0.5,-68.8],"head":[13,-136.3],"shR":[-52.4,-106.2],"elR":[-141,-175.9],"haR":[-171.6,-217],"shL":[53.9,-47.1],"elL":[155.5,-1.2],"haL":[199.4,12.3],"hipR":[-22.4,3.6],"knR":[19.7,8],"ftR":[158,-65],"hipL":[11.3,49.5],"knL":[-21.9,180],"ftL":[7.3,339.1]},{"rootY":-52.1,"hips":[0,0],"chest":[-0.3,-69.3],"neck":[-0.3,-69.3],"head":[12.2,-137.1],"shR":[-52.6,-106.5],"elR":[-143.5,-174.3],"haR":[-175.2,-214.4],"shL":[54.1,-47.5],"elL":[155.9,-2.1],"haL":[199.3,11.4],"hipR":[-22.6,3.9],"knR":[19.4,16.2],"ftR":[159.9,-44.4],"hipL":[11,49.7],"knL":[-24.4,179.4],"ftL":[6.4,338]},{"rootY":-52.3,"hips":[0,0],"chest":[0,-69.3],"neck":[0,-69.3],"head":[11.2,-137.7],"shR":[-52.8,-105.8],"elR":[-146.1,-171.3],"haR":[-179.2,-210.3],"shL":[55,-48.3],"elL":[156.6,-3],"haL":[199.7,10.4],"hipR":[-22.7,4.4],"knR":[19.4,25.6],"ftR":[160.6,-23.5],"hipL":[10.7,49.9],"knL":[-25.7,179.4],"ftL":[5.9,337.7]},{"rootY":-51,"hips":[0,0],"chest":[0,-69.7],"neck":[0,-69.7],"head":[9.7,-138.5],"shR":[-53.5,-105],"elR":[-148.9,-168],"haR":[-183.4,-205.9],"shL":[55.4,-50.1],"elL":[156.7,-4.4],"haL":[199.4,9.3],"hipR":[-23,5.3],"knR":[18.6,34.4],"ftR":[158.8,-5.2],"hipL":[10.4,50.1],"knL":[-28.2,178.7],"ftL":[3.5,337.1]},{"rootY":-50.4,"hips":[0,0],"chest":[-0.9,-70],"neck":[-0.9,-70],"head":[7.8,-139.2],"shR":[-55.1,-103.9],"elR":[-153.1,-163.7],"haR":[-189.2,-200],"shL":[55,-52.2],"elL":[154.9,-4.3],"haL":[197.2,10.2],"hipR":[-23.4,6.6],"knR":[17.8,43.5],"ftR":[155.7,13.5],"hipL":[10.2,50.4],"knL":[-32.1,177.6],"ftL":[0.6,335.4]},{"rootY":-47.9,"hips":[0,0],"chest":[-2.7,-71],"neck":[-2.7,-71],"head":[4.4,-140.4],"shR":[-58,-102.9],"elR":[-158.9,-158.5],"haR":[-196.7,-193.1],"shL":[53.6,-55.5],"elL":[151.3,-4.3],"haL":[192.9,11.8],"hipR":[-24.6,6.9],"knR":[14.9,51.7],"ftR":[149.4,31.1],"hipL":[10.2,50.4],"knL":[-36.2,175.9],"ftL":[-6.2,334.2]},{"rootY":-42.9,"hips":[0,0],"chest":[-5.1,-72.1],"neck":[-5.1,-72.1],"head":[0.3,-141.5],"shR":[-61.3,-102.1],"elR":[-164.6,-153.5],"haR":[-204.2,-186],"shL":[51.6,-58.7],"elL":[146.9,-3.3],"haL":[187.1,14.6],"hipR":[-24.9,9.7],"knR":[11.8,62],"ftR":[141.2,49.1],"hipL":[10.9,50.6],"knL":[-31,174.7],"ftL":[-18.8,332.4]},{"rootY":-34.4,"hips":[0,0],"chest":[-8.1,-73.4],"neck":[-8.1,-73.4],"head":[-4.2,-142.3],"shR":[-65.4,-101.2],"elR":[-170.9,-147.7],"haR":[-211.8,-178.2],"shL":[49.1,-62],"elL":[140.8,-1.8],"haL":[180,17.9],"hipR":[-25.7,11.6],"knR":[9,72.3],"ftR":[131.1,67.5],"hipL":[11.3,50.6],"knL":[-28.6,173.5],"ftL":[-31,329.4]},{"rootY":-24.3,"hips":[0,0],"chest":[-11,-74.3],"neck":[-11,-74.3],"head":[-9.1,-143.2],"shR":[-69.4,-99.7],"elR":[-176.7,-140.7],"haR":[-218.4,-169.4],"shL":[46.5,-65.3],"elL":[134,0.5],"haL":[172,22.2],"hipR":[-26.8,13.5],"knR":[8.3,82.4],"ftR":[119.2,88.7],"hipL":[11.2,50.8],"knL":[-31,172.6],"ftL":[-36.1,326.8]},{"rootY":-12.3,"hips":[0,0],"chest":[-12.3,-74.9],"neck":[-12.3,-74.9],"head":[-11.7,-143.7],"shR":[-71.4,-98.3],"elR":[-179.6,-133.7],"haR":[-221.7,-160.6],"shL":[45.2,-67.5],"elL":[128.1,3.6],"haL":[164.5,27.9],"hipR":[-26.8,15.3],"knR":[8.8,93],"ftR":[107.6,112.9],"hipL":[11.8,50.6],"knL":[-31,171],"ftL":[-36.5,323.2]},{"rootY":-3.5,"hips":[0,0],"chest":[-12.3,-74],"neck":[-12.3,-74],"head":[-12.6,-142.8],"shR":[-71.9,-96.3],"elR":[-180.5,-125.7],"haR":[-222.6,-150.5],"shL":[45.1,-67.3],"elL":[122.6,10.2],"haL":[157.5,37.6],"hipR":[-24.9,19.7],"knR":[6.9,110.7],"ftR":[97.5,144.4],"hipL":[15.2,49.5],"knL":[-23.6,165],"ftL":[-38.9,313.6]},{"rootY":4.2,"hips":[0,0],"chest":[-11.2,-74],"neck":[-11.2,-74],"head":[-11.6,-142.7],"shR":[-71.4,-95.8],"elR":[-179.1,-121.1],"haR":[-220.6,-144.1],"shL":[46.8,-67.5],"elL":[118.9,16],"haL":[151.9,46.9],"hipR":[-23.2,23.7],"knR":[4,127.1],"ftR":[89.2,177.4],"hipL":[19.2,47.9],"knL":[-16.2,160.9],"ftL":[-39.1,307.2]},{"rootY":6.3,"hips":[0,0],"chest":[-11.4,-74],"neck":[-11.4,-74],"head":[-11.8,-142.6],"shR":[-71.6,-95.7],"elR":[-176.6,-119.4],"haR":[-217.3,-141.7],"shL":[46.4,-67.6],"elL":[113.2,21.2],"haL":[144.3,55.6],"hipR":[-22.9,26.6],"knR":[2.3,139],"ftR":[81.2,211.5],"hipL":[20.9,46.8],"knL":[-10.6,159.6],"ftL":[-40.1,304.8]},{"rootY":9.4,"hips":[0,0],"chest":[-12.1,-75],"neck":[-12.1,-75],"head":[-12.7,-143.3],"shR":[-71.7,-97.5],"elR":[-174.1,-122.5],"haR":[-212.5,-145.6],"shL":[45.3,-67.8],"elL":[105.5,26.1],"haL":[135.1,63.7],"hipR":[-24.9,26.4],"knR":[-1.7,146.7],"ftR":[76,236.4],"hipL":[19.7,47.3],"knL":[-13.5,156.9],"ftL":[-41.4,302.1]},{"rootY":11.3,"hips":[0,0],"chest":[-11.5,-76.1],"neck":[-11.5,-76.1],"head":[-12.8,-144.2],"shR":[-70.9,-99.1],"elR":[-168.9,-128.6],"haR":[-205,-153.4],"shL":[45.8,-68.7],"elL":[99.9,29.2],"haL":[127.5,69.5],"hipR":[-25.1,27.8],"knR":[-6.3,155.3],"ftR":[73.5,256],"hipL":[19.2,47],"knL":[-16.8,154.8],"ftL":[-42.3,300.2]},{"rootY":10.4,"hips":[0,0],"chest":[-9.6,-77.3],"neck":[-9.6,-77.3],"head":[-11.7,-145.3],"shR":[-67.8,-101.3],"elR":[-162.4,-136.1],"haR":[-194.2,-163.6],"shL":[46.6,-69.2],"elL":[94.8,31.6],"haL":[120.4,74.1],"hipR":[-25.6,28.9],"knR":[-10,160.8],"ftR":[72.1,272.1],"hipL":[18.8,46.7],"knL":[-20.7,153.6],"ftL":[-42.8,300.6]},{"rootY":9.7,"hips":[0,0],"chest":[-7.5,-79.1],"neck":[-7.5,-79.1],"head":[-10.5,-147.1],"shR":[-64.8,-104.3],"elR":[-156.6,-145.9],"haR":[-183.2,-176.6],"shL":[47.8,-70.2],"elL":[90.3,32.7],"haL":[113.8,77],"hipR":[-26.1,30.3],"knR":[-11.8,164.4],"ftR":[70.9,282.7],"hipL":[18.8,46.2],"knL":[-24.8,152.9],"ftL":[-43.1,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-5.3,-80.4],"neck":[-5.3,-80.4],"head":[-8.6,-148.3],"shR":[-61.9,-106],"elR":[-150.1,-156.2],"haR":[-171.1,-190],"shL":[49.7,-71.6],"elL":[86,32.9],"haL":[107.5,78.5],"hipR":[-26.1,32.5],"knR":[-12.5,167.5],"ftR":[70.5,289.6],"hipL":[19.3,45],"knL":[-26.9,152.1],"ftL":[-43.2,301.9]},{"rootY":9.5,"hips":[0,0],"chest":[-3.1,-81.9],"neck":[-3.1,-81.9],"head":[-6.6,-149.9],"shR":[-58.9,-107.8],"elR":[-142.8,-166.7],"haR":[-158.2,-202.7],"shL":[51.2,-73.3],"elL":[82.8,32],"haL":[102.1,78.6],"hipR":[-26.2,33.7],"knR":[-14.9,169],"ftR":[68.7,293.9],"hipL":[19.1,44.2],"knL":[-27.3,151.7],"ftL":[-43.2,301.8]},{"rootY":9.5,"hips":[0,0],"chest":[-3,-82.3],"neck":[-3,-82.3],"head":[-6.2,-150.4],"shR":[-57.4,-108.5],"elR":[-136.6,-176.5],"haR":[-146.5,-214.3],"shL":[49.9,-74.3],"elL":[78.5,30.9],"haL":[94.5,78.6],"hipR":[-27.2,34.4],"knR":[-16.6,169.5],"ftR":[68.6,296.4],"hipL":[19.3,43.7],"knL":[-28.1,150],"ftL":[-44.7,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-2.2,-83.7],"neck":[-2.2,-83.7],"head":[-5.2,-151.9],"shR":[-56,-109.7],"elR":[-131.5,-185.4],"haR":[-135.4,-224.6],"shL":[50.2,-76.2],"elL":[77.2,28.4],"haL":[90.2,76.8],"hipR":[-27,34.9],"knR":[-16.4,170],"ftR":[69.5,297.8],"hipL":[18.7,43.3],"knL":[-28.7,149.7],"ftL":[-45.3,301.3]},{"rootY":10.8,"hips":[0,0],"chest":[-1.8,-84.3],"neck":[-1.8,-84.3],"head":[-4.4,-152.5],"shR":[-54.7,-110.3],"elR":[-128.4,-194],"haR":[-125.3,-233.5],"shL":[49.6,-77.1],"elL":[75.9,26.6],"haL":[86.5,75.3],"hipR":[-27,35.3],"knR":[-16.3,170.1],"ftR":[69.3,298.6],"hipL":[18.5,43],"knL":[-29.3,147.8],"ftL":[-46.9,300]},{"rootY":11.7,"hips":[0,0],"chest":[-1.6,-84.4],"neck":[-1.6,-84.4],"head":[-4,-152.8],"shR":[-53.4,-109.5],"elR":[-124.3,-198.7],"haR":[-115.6,-237.7],"shL":[48.5,-78.9],"elL":[76.3,23.7],"haL":[85.3,72.5],"hipR":[-27.1,35.2],"knR":[-15.1,170],"ftR":[68.8,300.7],"hipL":[19,43],"knL":[-28.4,146.6],"ftL":[-48.9,299.5]},{"rootY":12.4,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-4.6,-153.1],"shR":[-53.6,-109.2],"elR":[-122.8,-201.4],"haR":[-109.5,-239.1],"shL":[47.3,-79.4],"elL":[84.5,19.8],"haL":[87.6,69.4],"hipR":[-26.4,35.7],"knR":[-14.7,170.4],"ftR":[67.6,303.2],"hipL":[19.1,42.6],"knL":[-28.9,144.8],"ftL":[-51.6,298.6]},{"rootY":12.8,"hips":[0,0],"chest":[-3.6,-84.4],"neck":[-3.6,-84.4],"head":[-6.8,-153.1],"shR":[-54.6,-107.9],"elR":[-123.7,-199.8],"haR":[-107.4,-235.7],"shL":[45,-81],"elL":[90.3,15.9],"haL":[87.1,65],"hipR":[-26.9,35.4],"knR":[-17.6,170.1],"ftR":[64.4,303.9],"hipL":[18.3,42.8],"knL":[-30.3,142.8],"ftL":[-54,297.6]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-84.4],"neck":[-4.4,-84.4],"head":[-8.2,-153.1],"shR":[-53.7,-107],"elR":[-123.7,-195.1],"haR":[-106.3,-229.6],"shL":[41.7,-81.9],"elL":[93,13.9],"haL":[85.9,62.3],"hipR":[-27.8,34.3],"knR":[-19.7,169.1],"ftR":[61.4,304.9],"hipL":[17.2,43.6],"knL":[-31.2,140.8],"ftL":[-55.7,296]},{"rootY":12.7,"hips":[0,0],"chest":[-4.2,-84.6],"neck":[-4.2,-84.6],"head":[-8.5,-153.3],"shR":[-52.2,-106],"elR":[-122.7,-187.6],"haR":[-106.8,-222.4],"shL":[39.8,-83.4],"elL":[96.8,11.3],"haL":[86.7,58.9],"hipR":[-27.8,34],"knR":[-21.3,168.7],"ftR":[59.6,305.4],"hipL":[17.2,43.9],"knL":[-29.6,137.2],"ftL":[-56.3,292.3]},{"rootY":12,"hips":[0,0],"chest":[-4.1,-84.8],"neck":[-4.1,-84.8],"head":[-9.3,-153.6],"shR":[-52.1,-104.7],"elR":[-121.9,-176.4],"haR":[-109.6,-212.5],"shL":[39.7,-85.4],"elL":[101.6,7.6],"haL":[86.3,53],"hipR":[-27.9,34.5],"knR":[-22.1,168.9],"ftR":[58.5,305.9],"hipL":[17.9,43.6],"knL":[-27.9,133.9],"ftL":[-56.5,289.8]},{"rootY":11,"hips":[0,0],"chest":[-4.4,-84.6],"neck":[-4.4,-84.6],"head":[-9.7,-153.4],"shR":[-51.8,-103.5],"elR":[-119.5,-162.1],"haR":[-112.3,-200.5],"shL":[38.6,-86.5],"elL":[103.7,4.3],"haL":[85.4,48.3],"hipR":[-27.9,35.3],"knR":[-20.7,169.1],"ftR":[58,306.7],"hipL":[18.7,42.9],"knL":[-26.5,130.3],"ftL":[-57.7,287.4]},{"rootY":9.9,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-9.9,-153.4],"shR":[-51.9,-102.7],"elR":[-115.9,-144.6],"haR":[-115.1,-185.7],"shL":[37.5,-87.6],"elL":[104,-0.7],"haL":[82.5,42.3],"hipR":[-28.4,35.4],"knR":[-19.5,168.9],"ftR":[57.9,307.4],"hipL":[18.7,42.7],"knL":[-25.6,126.6],"ftL":[-61.3,283.7]},{"rootY":8.4,"hips":[0,0],"chest":[-4.6,-84.9],"neck":[-4.6,-84.9],"head":[-9.5,-153.8],"shR":[-51.5,-101.3],"elR":[-110.1,-124.6],"haR":[-117.8,-168],"shL":[37.8,-89.9],"elL":[104.4,-8.9],"haL":[79.4,32.9],"hipR":[-28,36.2],"knR":[-17.8,169.7],"ftR":[58.2,308.7],"hipL":[19.7,42.1],"knL":[-22.7,123.6],"ftL":[-63.4,279.9]},{"rootY":8,"hips":[0,0],"chest":[-3.6,-85.3],"neck":[-3.6,-85.3],"head":[-8.7,-154.2],"shR":[-50.6,-100.4],"elR":[-102.4,-105.1],"haR":[-119.6,-149.1],"shL":[38.7,-91.9],"elL":[103.2,-19.6],"haL":[74.7,21.1],"hipR":[-28.5,35.5],"knR":[-16.1,168.8],"ftR":[58.7,308.9],"hipL":[18.9,42.6],"knL":[-22.1,120.9],"ftL":[-62.9,277.5]},{"rootY":6.4,"hips":[0,0],"chest":[-2.6,-85.5],"neck":[-2.6,-85.5],"head":[-6.7,-154.5],"shR":[-48.7,-99],"elR":[-93.7,-86],"haR":[-119.8,-128.7],"shL":[38.9,-94.2],"elL":[98.8,-33.3],"haL":[67,5.9],"hipR":[-28.3,36.1],"knR":[-14.8,169.5],"ftR":[59.5,309.9],"hipL":[19.1,42.1],"knL":[-20.7,119.5],"ftL":[-60.7,276.6]},{"rootY":6,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-5,-154.4],"shR":[-48.3,-98.2],"elR":[-87,-69.5],"haR":[-119.7,-108.8],"shL":[40.3,-95.2],"elL":[93.2,-50.2],"haL":[58.4,-13.9],"hipR":[-28,37],"knR":[-13.7,170.2],"ftR":[60.5,310.2],"hipL":[20.3,41.3],"knL":[-17.9,117.2],"ftL":[-58.3,274.5]},{"rootY":6.1,"hips":[0,0],"chest":[-0.9,-85.4],"neck":[-0.9,-85.4],"head":[-2.9,-154.3],"shR":[-48.4,-97.9],"elR":[-81.5,-57.6],"haR":[-119.2,-90.8],"shL":[43.2,-95.7],"elL":[88.7,-69],"haL":[51.4,-37.6],"hipR":[-28,37.1],"knR":[-12.3,169.9],"ftR":[61.8,310],"hipL":[20.3,41.2],"knL":[-16.8,114.7],"ftL":[-55.9,272.7]},{"rootY":5.6,"hips":[0,0],"chest":[0.2,-85.4],"neck":[0.2,-85.4],"head":[-1.1,-154],"shR":[-46.7,-97],"elR":[-76.6,-48.8],"haR":[-116.3,-74.8],"shL":[44,-97],"elL":[81.8,-90.4],"haL":[42.7,-65.6],"hipR":[-27.9,37.3],"knR":[-12.1,170.2],"ftR":[62.6,309.9],"hipL":[20.9,41.1],"knL":[-14.5,113.3],"ftL":[-53.8,271.5]},{"rootY":5.3,"hips":[0,0],"chest":[1.3,-85.4],"neck":[1.3,-85.4],"head":[0.7,-153.5],"shR":[-47,-98],"elR":[-74.2,-43.7],"haR":[-113.8,-62.7],"shL":[47,-96.1],"elL":[76.8,-108.6],"haL":[36.8,-92.1],"hipR":[-27.3,37.6],"knR":[-10.7,170.4],"ftR":[63.4,310.5],"hipL":[21.4,40.9],"knL":[-12.2,111.9],"ftL":[-52,270.2]},{"rootY":5,"hips":[0,0],"chest":[1.6,-85.2],"neck":[1.6,-85.2],"head":[2.4,-152.1],"shR":[-47.8,-98.7],"elR":[-74.3,-40.3],"haR":[-112.6,-51.8],"shL":[49.2,-95.1],"elL":[71.4,-123.1],"haL":[31.3,-116.8],"hipR":[-27.3,37.4],"knR":[-9.9,170.2],"ftR":[63.8,310.6],"hipL":[21.3,41.1],"knL":[-10.5,111],"ftL":[-50.6,269.4]},{"rootY":4.8,"hips":[0,0],"chest":[1.7,-84.9],"neck":[1.7,-84.9],"head":[4.3,-150.2],"shR":[-47.4,-98.5],"elR":[-74.4,-36.7],"haR":[-108.9,-41.2],"shL":[49.3,-94.9],"elL":[66.4,-135.5],"haL":[27.4,-141.3],"hipR":[-27.1,37.3],"knR":[-9.9,170.1],"ftR":[64,310.5],"hipL":[21.1,41.2],"knL":[-9.4,110.5],"ftL":[-49.2,269.1]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-84.6],"neck":[1.4,-84.6],"head":[6.2,-148.1],"shR":[-47.2,-98],"elR":[-75.2,-34.8],"haR":[-106.1,-32.3],"shL":[48.8,-94.8],"elL":[60.3,-144.8],"haL":[23.5,-161.8],"hipR":[-27.1,37.1],"knR":[-9.6,169.7],"ftR":[64.2,310.3],"hipL":[20.8,41.4],"knL":[-8.8,109.5],"ftL":[-48.1,268.4]},{"rootY":5.5,"hips":[0,0],"chest":[1.5,-84.3],"neck":[1.5,-84.3],"head":[8.4,-145.9],"shR":[-46.4,-97.8],"elR":[-75.7,-32.6],"haR":[-102.7,-24.7],"shL":[48.6,-94.6],"elL":[53.4,-152.3],"haL":[19.9,-179.4],"hipR":[-26.5,37.2],"knR":[-9.9,169.8],"ftR":[64.3,310.3],"hipL":[20.8,41.3],"knL":[-8,109.1],"ftL":[-47.1,268]},{"rootY":5.4,"hips":[0,0],"chest":[1.5,-84.2],"neck":[1.5,-84.2],"head":[10.2,-144.3],"shR":[-45.6,-97.6],"elR":[-76.1,-30.6],"haR":[-99.8,-18.1],"shL":[48.2,-94.7],"elL":[46.3,-158.1],"haL":[16.8,-192.9],"hipR":[-26.1,37.1],"knR":[-10.7,170.1],"ftR":[64.3,310.3],"hipL":[20.8,41.4],"knL":[-6.9,109.2],"ftL":[-46.6,268]},{"rootY":5.8,"hips":[0,0],"chest":[1.3,-83.9],"neck":[1.3,-83.9],"head":[11.1,-143],"shR":[-45.6,-97.3],"elR":[-77.7,-28.1],"haR":[-98.8,-12.2],"shL":[47.9,-94.6],"elL":[39.2,-162.9],"haL":[14.1,-203.1],"hipR":[-26.3,36.8],"knR":[-10.4,169.7],"ftR":[64,310.4],"hipL":[20.8,41.8],"knL":[-6.2,109],"ftL":[-46.8,267.5]},{"rootY":6,"hips":[0,0],"chest":[1.2,-83.8],"neck":[1.2,-83.8],"head":[12.2,-141.8],"shR":[-45.1,-96.9],"elR":[-78,-25.6],"haR":[-97.6,-7.4],"shL":[47.3,-94.7],"elL":[32.9,-167.9],"haL":[11.4,-211.5],"hipR":[-26.2,36.5],"knR":[-11.4,169.6],"ftR":[63.7,310.2],"hipL":[20.9,42],"knL":[-6.1,108.9],"ftL":[-47.1,267.3]},{"rootY":6.4,"hips":[0,0],"chest":[1.2,-83.6],"neck":[1.2,-83.6],"head":[12.7,-141.1],"shR":[-44.5,-97],"elR":[-77.3,-24.1],"haR":[-96.2,-4.2],"shL":[47,-94.2],"elL":[28.5,-172.3],"haL":[9.5,-217.9],"hipR":[-26,36.3],"knR":[-12.6,169.5],"ftR":[63.2,310.1],"hipL":[20.8,42.2],"knL":[-6.3,108.6],"ftL":[-47.2,267]},{"rootY":6.1,"hips":[0,0],"chest":[1,-83],"neck":[1,-83],"head":[13.3,-140],"shR":[-44.7,-96.4],"elR":[-78.1,-22],"haR":[-96.1,-0.9],"shL":[46.8,-93.8],"elL":[25.4,-176.1],"haL":[7.9,-222.6],"hipR":[-24.9,37.1],"knR":[-12,170.1],"ftR":[63.3,310.6],"hipL":[21.2,41.6],"knL":[-5.9,109],"ftL":[-47.3,267.4]},{"rootY":6.3,"hips":[0,0],"chest":[0.6,-82.8],"neck":[0.6,-82.8],"head":[13.4,-139.8],"shR":[-44.7,-96.3],"elR":[-78.1,-21.5],"haR":[-95.7,0.6],"shL":[46.1,-93.5],"elL":[24,-179.1],"haL":[6.7,-225.9],"hipR":[-25.1,36.8],"knR":[-12.8,169.8],"ftR":[62.9,310.5],"hipL":[20.9,41.8],"knL":[-6,108.9],"ftL":[-47.2,267.4]},{"rootY":6.2,"hips":[0,0],"chest":[0.5,-82.8],"neck":[0.5,-82.8],"head":[13.4,-139.9],"shR":[-45,-96.4],"elR":[-78.6,-21],"haR":[-95.7,1.6],"shL":[46.4,-93.3],"elL":[23.4,-180.8],"haL":[5.9,-227.6],"hipR":[-24.9,36.8],"knR":[-12.4,169.8],"ftR":[63,310.5],"hipL":[20.9,41.8],"knL":[-6,109.1],"ftL":[-47.1,267.6]},{"rootY":6.4,"hips":[0,0],"chest":[0.1,-82.8],"neck":[0.1,-82.8],"head":[12.8,-140.5],"shR":[-45.3,-96.6],"elR":[-79.4,-21.5],"haR":[-96.2,1.3],"shL":[46.2,-93.1],"elL":[22.5,-181.8],"haL":[4.7,-228.6],"hipR":[-25.4,36.3],"knR":[-13.3,169.5],"ftR":[62.5,310.4],"hipL":[20.8,42.2],"knL":[-6,109.1],"ftL":[-47.2,267.5]},{"rootY":6.5,"hips":[0,0],"chest":[-0.1,-82.5],"neck":[-0.1,-82.5],"head":[11.9,-140.6],"shR":[-45.9,-96.3],"elR":[-80.5,-22.5],"haR":[-97.5,-0.3],"shL":[46.3,-92.8],"elL":[22.2,-181.4],"haL":[4,-228],"hipR":[-25.3,36.4],"knR":[-12.9,169.4],"ftR":[62.3,310.8],"hipL":[20.9,42.1],"knL":[-6.9,109],"ftL":[-47.3,267.7]},{"rootY":6.8,"hips":[0,0],"chest":[-0.5,-82.5],"neck":[-0.5,-82.5],"head":[10.9,-141.2],"shR":[-46.3,-95.6],"elR":[-82.4,-23.8],"haR":[-99.8,-2.7],"shL":[45.8,-93.7],"elL":[22.5,-182.4],"haL":[3.4,-228.7],"hipR":[-25.5,36],"knR":[-13.6,169],"ftR":[62,310.2],"hipL":[20.8,42.4],"knL":[-7.5,109.1],"ftL":[-47.5,267.9]},{"rootY":7,"hips":[0,0],"chest":[-1.1,-82.4],"neck":[-1.1,-82.4],"head":[9.6,-141.6],"shR":[-47.4,-95.5],"elR":[-84.9,-26.4],"haR":[-102.7,-6.7],"shL":[45.7,-93.5],"elL":[22.9,-182.5],"haL":[3.9,-228.8],"hipR":[-25.5,35.9],"knR":[-13.9,168.8],"ftR":[61.8,309.9],"hipL":[20.9,42.5],"knL":[-7.5,109.2],"ftL":[-48.1,267.9]},{"rootY":6.9,"hips":[0,0],"chest":[-1.7,-82.4],"neck":[-1.7,-82.4],"head":[8.6,-141.7],"shR":[-48.8,-96.2],"elR":[-88.2,-29.8],"haR":[-106.3,-11.5],"shL":[46.1,-92.7],"elL":[24.3,-181.3],"haL":[5.7,-227.8],"hipR":[-25.2,36.1],"knR":[-14.1,169],"ftR":[61.2,310.4],"hipL":[20.6,42.4],"knL":[-7.6,109.3],"ftL":[-48.4,268]},{"rootY":7.2,"hips":[0,0],"chest":[-2.5,-82.5],"neck":[-2.5,-82.5],"head":[7.4,-142.4],"shR":[-49.9,-96.8],"elR":[-90.9,-33.5],"haR":[-109.6,-16.8],"shL":[45.7,-92.3],"elL":[26.1,-181.1],"haL":[7.9,-227.8],"hipR":[-26.3,35.3],"knR":[-15.2,168.5],"ftR":[60.7,309.9],"hipL":[20.2,43],"knL":[-6.9,108.7],"ftL":[-48,267.3]},{"rootY":7,"hips":[0,0],"chest":[-3.1,-82.5],"neck":[-3.1,-82.5],"head":[6.9,-143],"shR":[-50.1,-96.7],"elR":[-92.3,-35.5],"haR":[-112.6,-20.4],"shL":[44.5,-92.4],"elL":[28.2,-180.1],"haL":[10.6,-227],"hipR":[-26.2,35.6],"knR":[-16,168.9],"ftR":[60.4,310.1],"hipL":[21,42.8],"knL":[-5,109],"ftL":[-47.5,267.3]},{"rootY":7.4,"hips":[0,0],"chest":[-4,-82.6],"neck":[-4,-82.6],"head":[6,-144],"shR":[-51.1,-97.3],"elR":[-94.7,-36.9],"haR":[-116.3,-23.1],"shL":[43.8,-92],"elL":[31.9,-176.5],"haL":[14.8,-223.7],"hipR":[-26.9,35.2],"knR":[-15.9,168.3],"ftR":[60.4,309.4],"hipL":[21,43.1],"knL":[-4.7,108.6],"ftL":[-46.7,267]},{"rootY":7.1,"hips":[0,0],"chest":[-4.4,-82.5],"neck":[-4.4,-82.5],"head":[6.2,-144.7],"shR":[-51.6,-96.7],"elR":[-94.7,-34.7],"haR":[-118.9,-22.2],"shL":[43,-92.4],"elL":[37.6,-171.6],"haL":[19.5,-218.6],"hipR":[-26.2,36],"knR":[-14.3,168.6],"ftR":[61.1,309.6],"hipL":[21.4,42.5],"knL":[-3.8,108.8],"ftL":[-46,267.2]},{"rootY":6.7,"hips":[0,0],"chest":[-5,-82.4],"neck":[-5,-82.4],"head":[6.3,-145.3],"shR":[-50.9,-96.5],"elR":[-92.2,-30.2],"haR":[-119.4,-18.4],"shL":[40.6,-92.2],"elL":[43,-162.6],"haL":[23.5,-209.1],"hipR":[-25.4,36.9],"knR":[-13,169.1],"ftR":[61.5,310.1],"hipL":[22.1,41.7],"knL":[-3.1,109.3],"ftL":[-45.5,267.7]},{"rootY":6.7,"hips":[0,0],"chest":[-6.2,-82.5],"neck":[-6.2,-82.5],"head":[5.8,-146],"shR":[-52.3,-95.6],"elR":[-90.6,-23.8],"haR":[-120,-11.9],"shL":[39.3,-93.4],"elL":[49.5,-150.7],"haL":[28.5,-196.5],"hipR":[-25.6,36.7],"knR":[-12.6,168.8],"ftR":[61.5,310.1],"hipL":[21.9,41.9],"knL":[-3.2,109.4],"ftL":[-45.5,267.9]},{"rootY":6.7,"hips":[0,0],"chest":[-6.8,-82.9],"neck":[-6.8,-82.9],"head":[6.5,-147.7],"shR":[-52.8,-95.1],"elR":[-88.5,-17],"haR":[-119.1,-3.3],"shL":[37.9,-94.6],"elL":[54.6,-134.9],"haL":[33.1,-180.2],"hipR":[-25.4,36.8],"knR":[-12.7,169],"ftR":[61.8,310.1],"hipL":[22.2,41.8],"knL":[-2.6,109.6],"ftL":[-45.7,267.8]},{"rootY":6.4,"hips":[0,0],"chest":[-7.8,-83.1],"neck":[-7.8,-83.1],"head":[5.9,-148.8],"shR":[-53.7,-94.3],"elR":[-85.5,-10.3],"haR":[-116.9,6.4],"shL":[36.3,-95.8],"elL":[58.3,-116.6],"haL":[37.2,-161.3],"hipR":[-25.2,37],"knR":[-12.6,169.3],"ftR":[62.2,310],"hipL":[22.4,41.7],"knL":[-2.5,110.2],"ftL":[-46.6,268.1]},{"rootY":6.6,"hips":[0,0],"chest":[-8.5,-83.2],"neck":[-8.5,-83.2],"head":[5.1,-149.3],"shR":[-55.6,-95],"elR":[-82.6,-5.1],"haR":[-114.4,15.3],"shL":[36.6,-95.1],"elL":[64.1,-93.8],"haL":[43.6,-136.8],"hipR":[-25,37.1],"knR":[-12.6,169.4],"ftR":[62.6,309.8],"hipL":[22.4,41.5],"knL":[-3,111],"ftL":[-48.3,268.4]},{"rootY":7,"hips":[0,0],"chest":[-9.2,-83.3],"neck":[-9.2,-83.3],"head":[3.8,-150.1],"shR":[-56.3,-94.6],"elR":[-78.9,0.2],"haR":[-109.8,24.8],"shL":[35.4,-95.7],"elL":[68.7,-70.7],"haL":[48.8,-110],"hipR":[-24.7,37.4],"knR":[-13.5,170],"ftR":[62.4,310.1],"hipL":[22.6,41.2],"knL":[-3.5,111.8],"ftL":[-50.8,268.5]},{"rootY":7.2,"hips":[0,0],"chest":[-10.2,-83.3],"neck":[-10.2,-83.3],"head":[2.3,-150.3],"shR":[-57.1,-94.5],"elR":[-75.5,4.8],"haR":[-104.4,33.9],"shL":[33.7,-95.5],"elL":[70.1,-48],"haL":[51.7,-81],"hipR":[-24.8,37.3],"knR":[-12.4,169.7],"ftR":[63.2,309.3],"hipL":[22.3,41.3],"knL":[-5.3,112.6],"ftL":[-54.2,268.6]},{"rootY":7.9,"hips":[0,0],"chest":[-10.8,-83.3],"neck":[-10.8,-83.3],"head":[1.2,-150.7],"shR":[-58.4,-94.4],"elR":[-73.1,8.3],"haR":[-99.1,42.3],"shL":[33.4,-95.5],"elL":[70.5,-29.2],"haL":[54.6,-53],"hipR":[-24.8,37.1],"knR":[-12.9,169.7],"ftR":[63.7,308.8],"hipL":[21.9,41.5],"knL":[-6.9,114.1],"ftL":[-57.3,269.2]},{"rootY":8.7,"hips":[0,0],"chest":[-11.3,-83.6],"neck":[-11.3,-83.6],"head":[0.2,-151.1],"shR":[-59.6,-94.4],"elR":[-71.4,11.5],"haR":[-93.5,49.4],"shL":[33.2,-95.7],"elL":[70.2,-13.8],"haL":[57.1,-26.5],"hipR":[-24.8,36.9],"knR":[-12.7,169.6],"ftR":[64.3,308.3],"hipL":[21.6,41.7],"knL":[-8.8,115.6],"ftL":[-60.2,269.9]},{"rootY":9.7,"hips":[0,0],"chest":[-11.5,-83.8],"neck":[-11.5,-83.8],"head":[-0.5,-151.5],"shR":[-60.3,-94.7],"elR":[-68.5,13.7],"haR":[-87.2,54.8],"shL":[33.2,-95.5],"elL":[69.4,-2.8],"haL":[58.5,-3.2],"hipR":[-24.9,36.6],"knR":[-12,169.3],"ftR":[65.3,307.4],"hipL":[21.3,42],"knL":[-11.7,118],"ftL":[-62.7,271.8]},{"rootY":10.5,"hips":[0,0],"chest":[-11,-84.4],"neck":[-11,-84.4],"head":[-0.6,-152.2],"shR":[-60.3,-95.3],"elR":[-64.9,15.1],"haR":[-81.2,58.5],"shL":[33.6,-95.8],"elL":[67.7,4.7],"haL":[59.8,16.5],"hipR":[-25.1,36.1],"knR":[-10.7,169.1],"ftR":[67.2,306.1],"hipL":[20.5,42.4],"knL":[-14.4,121.6],"ftL":[-64.6,274.7]},{"rootY":11.4,"hips":[0,0],"chest":[-10.4,-84.9],"neck":[-10.4,-84.9],"head":[0.1,-152.8],"shR":[-60.7,-96.3],"elR":[-64,16.1],"haR":[-76.8,61.2],"shL":[35,-95.4],"elL":[66.3,9.6],"haL":[61.9,33.4],"hipR":[-24.4,36.1],"knR":[-9.5,169.3],"ftR":[69.1,305.4],"hipL":[20.4,42.4],"knL":[-17.6,126.1],"ftL":[-65.2,279.1]},{"rootY":12.6,"hips":[0,0],"chest":[-9.1,-85.4],"neck":[-9.1,-85.4],"head":[1.3,-153.4],"shR":[-59.3,-97.4],"elR":[-57.7,16],"haR":[-70,62.3],"shL":[36,-95.1],"elL":[64.1,12.7],"haL":[64.6,46.6],"hipR":[-24,35.8],"knR":[-9.4,169.3],"ftR":[71.9,303.3],"hipL":[20.3,42.7],"knL":[-20.4,130.3],"ftL":[-64,283.1]},{"rootY":14.9,"hips":[0,0],"chest":[-8.1,-85.6],"neck":[-8.1,-85.6],"head":[2.1,-153.5],"shR":[-57.4,-96.9],"elR":[-53.3,17],"haR":[-64.6,64.4],"shL":[35.8,-96],"elL":[61,13],"haL":[66.3,54.7],"hipR":[-23.7,35.7],"knR":[-8.3,169.4],"ftR":[74.7,301.4],"hipL":[20.1,42.7],"knL":[-24.7,133.3],"ftL":[-61.6,286.5]},{"rootY":17.1,"hips":[0,0],"chest":[-6.1,-85.8],"neck":[-6.1,-85.8],"head":[4.2,-153.6],"shR":[-54.8,-97.3],"elR":[-47.8,16.9],"haR":[-58.7,64.9],"shL":[37.2,-96.2],"elL":[58.7,13.2],"haL":[68.7,59.5],"hipR":[-23.3,35.4],"knR":[-7.3,169.4],"ftR":[78.5,299.2],"hipL":[19.7,42.9],"knL":[-27.6,135.6],"ftL":[-57.7,288.8]},{"rootY":19.4,"hips":[0,0],"chest":[-4.2,-85.9],"neck":[-4.2,-85.9],"head":[6.6,-153.5],"shR":[-52.2,-97.1],"elR":[-44.2,17.2],"haR":[-54.4,65.5],"shL":[38.5,-96.8],"elL":[57.6,12.1],"haL":[70.4,60.2],"hipR":[-22.4,35.4],"knR":[-6.1,169.7],"ftR":[81.7,297.3],"hipL":[19.4,42.9],"knL":[-30.3,136.7],"ftL":[-54.8,289.3]},{"rootY":21.7,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.6,-153.5],"shR":[-50.7,-98],"elR":[-41.6,16.3],"haR":[-51.8,64.7],"shL":[40.2,-96.4],"elL":[58.5,11.6],"haL":[72.9,59.9],"hipR":[-23.1,35.5],"knR":[-3.1,169.6],"ftR":[85.8,294.9],"hipL":[18.9,42.9],"knL":[-32.1,137.3],"ftL":[-52.1,288.9]},{"rootY":23.6,"hips":[0,0],"chest":[-0.6,-86.2],"neck":[-0.6,-86.2],"head":[11.8,-153.4],"shR":[-48.2,-98],"elR":[-40,16.3],"haR":[-50.3,64.7],"shL":[42.4,-96.8],"elL":[61.3,9.2],"haL":[75.8,57.4],"hipR":[-22.6,35.2],"knR":[0.2,169],"ftR":[90.8,292.6],"hipL":[18,43.1],"knL":[-33.7,137.4],"ftL":[-48.3,287.3]},{"rootY":25.8,"hips":[0,0],"chest":[0.8,-86.2],"neck":[0.8,-86.2],"head":[14.1,-153.1],"shR":[-47.1,-98.8],"elR":[-40.4,15.6],"haR":[-51.3,63.8],"shL":[44.4,-95.9],"elL":[64.2,8.1],"haL":[78.2,56.5],"hipR":[-22.2,35.6],"knR":[2.6,169.1],"ftR":[94.7,290.3],"hipL":[17.5,42.8],"knL":[-35.1,136.8],"ftL":[-45.1,284.8]}]},"dance_spin":{"name":"dance_spin","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":0.3,"hips":[0,0],"chest":[-0.4,-86.4],"neck":[-0.4,-86.4],"head":[-4.7,-154.9],"shR":[-68.2,-91.5],"elR":[-84.1,15.3],"haR":[-93.3,65.6],"shL":[69.1,-103.8],"elL":[88.1,-3.6],"haL":[95.4,45.8],"hipR":[-34.9,37.4],"knR":[-6.5,167],"ftR":[19.1,322.5],"hipL":[30.9,41.1],"knL":[20.1,174.6],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-5.8,-154.4],"shR":[-68.2,-91.6],"elR":[-83.8,15.4],"haR":[-92.7,65.7],"shL":[69,-103.9],"elL":[87.8,-3.5],"haL":[95.2,45.9],"hipR":[-35.1,37.3],"knR":[-6.8,167],"ftR":[19.1,322.4],"hipL":[30.8,41.2],"knL":[19.9,174.7],"ftL":[-39.5,279.9]},{"rootY":0.6,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-7.1,-154.5],"shR":[-68.2,-91.5],"elR":[-83.1,16.2],"haR":[-92,66.5],"shL":[69,-104.1],"elL":[87.2,-3.4],"haL":[94.9,46],"hipR":[-35.1,37.2],"knR":[-7.2,167.1],"ftR":[18.9,322.3],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-39.7,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.6,-86.4],"neck":[-0.6,-86.4],"head":[-8.3,-154.2],"shR":[-68.3,-91.4],"elR":[-82.6,16.5],"haR":[-91.2,66.8],"shL":[69,-104.3],"elL":[86.7,-3.5],"haL":[94.4,45.9],"hipR":[-35.2,37.1],"knR":[-7.6,166.9],"ftR":[18.8,322.2],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-39.9,279.5]},{"rootY":0.5,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-9.4,-153.8],"shR":[-68.1,-91.4],"elR":[-81.5,16.7],"haR":[-90.1,67.1],"shL":[69.2,-104.4],"elL":[86.5,-3.5],"haL":[94.1,45.9],"hipR":[-35.1,37.2],"knR":[-7.3,166.8],"ftR":[18.7,322],"hipL":[30.9,41.3],"knL":[19,174.3],"ftL":[-39.6,279.7]},{"rootY":0.7,"hips":[0,0],"chest":[-0.7,-86.4],"neck":[-0.7,-86.4],"head":[-10.7,-153.6],"shR":[-68.3,-91.5],"elR":[-80.7,16.7],"haR":[-89,67.1],"shL":[69,-104.3],"elL":[86,-3.4],"haL":[93.4,46],"hipR":[-35.2,37.2],"knR":[-7.7,167],"ftR":[18.7,322],"hipL":[30.8,41.3],"knL":[19,174.4],"ftL":[-39.5,279.8]},{"rootY":0.4,"hips":[0,0],"chest":[-0.9,-86.4],"neck":[-0.9,-86.4],"head":[-11.6,-153.3],"shR":[-68.5,-91.6],"elR":[-79.6,17.1],"haR":[-87.8,67.5],"shL":[68.8,-104.3],"elL":[85.1,-3.4],"haL":[92.4,46.1],"hipR":[-35.2,37.1],"knR":[-7.8,166.8],"ftR":[18.4,321.9],"hipL":[30.7,41.4],"knL":[18.7,174.4],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-1.1,-86.4],"neck":[-1.1,-86.4],"head":[-12.2,-153.4],"shR":[-68.6,-91.7],"elR":[-78.6,17],"haR":[-86.4,67.5],"shL":[68.7,-104.1],"elL":[84.4,-3.3],"haL":[91.5,46.2],"hipR":[-35.3,37.1],"knR":[-7.8,166.9],"ftR":[18.4,321.9],"hipL":[30.6,41.4],"knL":[18.7,174.4],"ftL":[-39.9,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-1.3,-86.4],"neck":[-1.3,-86.4],"head":[-13.1,-153.1],"shR":[-68.8,-91.7],"elR":[-77.6,17],"haR":[-85.1,67.6],"shL":[68.6,-104],"elL":[83.4,-3.6],"haL":[90,46.1],"hipR":[-35.3,37],"knR":[-7.9,167],"ftR":[18.4,322],"hipL":[30.6,41.4],"knL":[18.5,174.5],"ftL":[-40.2,279.3]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.8,-152.9],"shR":[-69,-91.9],"elR":[-77,16.7],"haR":[-84,67.4],"shL":[68.3,-103.9],"elL":[82.9,-3.9],"haL":[89,45.9],"hipR":[-35.5,36.9],"knR":[-8.2,166.8],"ftR":[18.2,321.8],"hipL":[30.4,41.6],"knL":[18.2,174.6],"ftL":[-40.6,279.4]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.6,-153.1],"shR":[-69.1,-91.9],"elR":[-76.4,16.7],"haR":[-83.2,67.4],"shL":[68.3,-103.8],"elL":[82.5,-4.1],"haL":[88.1,45.8],"hipR":[-35.5,36.8],"knR":[-8.4,166.9],"ftR":[18.1,321.9],"hipL":[30.3,41.6],"knL":[18.5,174.8],"ftL":[-40.9,279.2]},{"rootY":0.4,"hips":[0,0],"chest":[-1.5,-86.4],"neck":[-1.5,-86.4],"head":[-13.4,-153.1],"shR":[-69,-91.5],"elR":[-76,17.1],"haR":[-82.9,67.8],"shL":[68.4,-103.9],"elL":[82,-4.7],"haL":[87.4,45.3],"hipR":[-35.5,36.8],"knR":[-8.2,166.9],"ftR":[18.3,321.8],"hipL":[30.3,41.6],"knL":[18.8,174.9],"ftL":[-41.1,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-13.5,-153.1],"shR":[-69.2,-91.4],"elR":[-76.9,16.7],"haR":[-83.9,67.4],"shL":[68,-104],"elL":[81.3,-5.4],"haL":[86.4,44.8],"hipR":[-35.6,36.8],"knR":[-9,166.9],"ftR":[17.9,321.6],"hipL":[30.3,41.7],"knL":[18.2,174.8],"ftL":[-41.9,278.5]},{"rootY":0.8,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-12.4,-153.4],"shR":[-68.6,-91.7],"elR":[-76.9,16],"haR":[-84,66.7],"shL":[68.7,-103.7],"elL":[81.6,-5.9],"haL":[86.6,44.3],"hipR":[-35.3,37.1],"knR":[-7.2,167],"ftR":[18.9,321.8],"hipL":[30.6,41.4],"knL":[19.4,174.7],"ftL":[-41.5,278.8]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-86.5],"neck":[-1.5,-86.5],"head":[-12.4,-153.5],"shR":[-68.8,-91.7],"elR":[-77.9,15.8],"haR":[-85.3,66.4],"shL":[68.5,-103.7],"elL":[81.3,-6.4],"haL":[86.2,43.8],"hipR":[-35.3,37],"knR":[-7.5,167.1],"ftR":[18.5,321.8],"hipL":[30.6,41.5],"knL":[19.4,174.7],"ftL":[-41.6,278.4]},{"rootY":0.8,"hips":[0,0],"chest":[-1.4,-86.4],"neck":[-1.4,-86.4],"head":[-11.8,-153.6],"shR":[-68.7,-91.7],"elR":[-78.7,15],"haR":[-85.8,65.7],"shL":[68.6,-103.6],"elL":[81.4,-6.5],"haL":[86.3,43.7],"hipR":[-35.2,37.1],"knR":[-7.1,167.1],"ftR":[18.6,321.9],"hipL":[30.7,41.4],"knL":[19.5,174.5],"ftL":[-41,278.7]},{"rootY":0.6,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-11.1,-153.7],"shR":[-68.4,-91.7],"elR":[-79.1,14.8],"haR":[-86.1,65.5],"shL":[68.8,-103.4],"elL":[81.3,-6.9],"haL":[86.3,43.3],"hipR":[-35.1,37.2],"knR":[-6.1,166.9],"ftR":[18.9,322],"hipL":[30.7,41.2],"knL":[20,174.6],"ftL":[-40.8,279.2]},{"rootY":0.7,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.5,-153.9],"shR":[-68.3,-91.7],"elR":[-79.8,14.5],"haR":[-86.5,65.2],"shL":[69,-103.4],"elL":[81.3,-7.1],"haL":[86.4,43.1],"hipR":[-35,37.4],"knR":[-5.3,166.8],"ftR":[19.2,321.9],"hipL":[30.9,41],"knL":[19.8,174.4],"ftL":[-40.8,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.1,-154.1],"shR":[-68.1,-91.8],"elR":[-80.5,14],"haR":[-87.2,64.8],"shL":[69.1,-103.2],"elL":[81.2,-6.9],"haL":[86.5,43.3],"hipR":[-34.9,37.4],"knR":[-4.7,166.5],"ftR":[18.8,321.8],"hipL":[31,41],"knL":[19.4,174.3],"ftL":[-41.3,279]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-10.6,-154.1],"shR":[-68.8,-91.8],"elR":[-82.3,13.7],"haR":[-88.6,64.5],"shL":[68.4,-103.1],"elL":[80.3,-7],"haL":[85.7,43.2],"hipR":[-35.2,37.2],"knR":[-6.7,166.9],"ftR":[18.3,321.9],"hipL":[30.6,41.2],"knL":[19.1,174.5],"ftL":[-42.3,278.6]},{"rootY":0.5,"hips":[0,0],"chest":[-2.1,-86.4],"neck":[-2.1,-86.4],"head":[-10.5,-154.2],"shR":[-69.2,-91.6],"elR":[-83.6,14],"haR":[-89.9,64.8],"shL":[68,-103.2],"elL":[80,-6.9],"haL":[85.4,43.2],"hipR":[-35.4,36.9],"knR":[-7.7,166.7],"ftR":[17.6,321.8],"hipL":[30.4,41.5],"knL":[18.5,174.7],"ftL":[-43,278.7]},{"rootY":0.4,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-9.8,-154.4],"shR":[-68.9,-91.4],"elR":[-84.2,14],"haR":[-90.4,64.9],"shL":[68.3,-103.3],"elL":[80.3,-7],"haL":[85.8,43.1],"hipR":[-35.2,37.2],"knR":[-7,166.8],"ftR":[17.8,321.9],"hipL":[30.7,41.2],"knL":[18.9,174.4],"ftL":[-42.9,278.8]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.4],"neck":[-2.2,-86.4],"head":[-10.1,-154.4],"shR":[-69.4,-91.2],"elR":[-86.2,13.9],"haR":[-92,64.8],"shL":[67.8,-103.5],"elL":[80.1,-7.3],"haL":[85.4,42.8],"hipR":[-35.5,36.9],"knR":[-8.4,166.9],"ftR":[17.5,321.8],"hipL":[30.3,41.5],"knL":[18.6,174.8],"ftL":[-43.3,278.6]},{"rootY":0.6,"hips":[0,0],"chest":[-2.4,-86.4],"neck":[-2.4,-86.4],"head":[-9.8,-154.7],"shR":[-69.5,-91.3],"elR":[-87.6,13.6],"haR":[-93.1,64.5],"shL":[67.7,-103.3],"elL":[80,-7.3],"haL":[85.4,42.9],"hipR":[-35.4,36.9],"knR":[-8.5,166.7],"ftR":[17.1,321.6],"hipL":[30.3,41.5],"knL":[18.5,174.8],"ftL":[-43.6,278.6]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.3],"neck":[-2.2,-86.3],"head":[-9.3,-154.8],"shR":[-69.3,-91.4],"elR":[-88.9,13],"haR":[-94,63.9],"shL":[67.9,-103.2],"elL":[80.2,-7.3],"haL":[85.6,42.9],"hipR":[-35.4,37],"knR":[-8.2,166.7],"ftR":[17.4,321.6],"hipL":[30.4,41.4],"knL":[19,174.8],"ftL":[-43.5,278.5]},{"rootY":0.6,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.1,-154.8],"shR":[-69.2,-91.3],"elR":[-90.1,13],"haR":[-95.2,64],"shL":[68,-103.3],"elL":[80.7,-7.4],"haL":[86,42.7],"hipR":[-35.3,37],"knR":[-7.9,166.7],"ftR":[17.3,321.7],"hipL":[30.5,41.4],"knL":[19.4,174.8],"ftL":[-43.2,278.6]},{"rootY":0.9,"hips":[0,0],"chest":[-1.9,-86.3],"neck":[-1.9,-86.3],"head":[-8.7,-154.9],"shR":[-69,-91.3],"elR":[-91.6,12.8],"haR":[-96.5,63.8],"shL":[68.2,-103.4],"elL":[81.1,-7.4],"haL":[86.5,42.8],"hipR":[-35.2,37.1],"knR":[-7.5,166.9],"ftR":[17.9,322],"hipL":[30.6,41.3],"knL":[19.8,174.8],"ftL":[-42.7,278.6]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-8.8,-154.9],"shR":[-68.8,-91.3],"elR":[-92.9,12.6],"haR":[-97.8,63.5],"shL":[68.3,-103.4],"elL":[81.6,-7.2],"haL":[87.1,43],"hipR":[-35.2,37.1],"knR":[-7.1,166.9],"ftR":[18,322],"hipL":[30.7,41.3],"knL":[19.7,174.7],"ftL":[-41.9,278.9]},{"rootY":0.8,"hips":[0,0],"chest":[-1.6,-86.3],"neck":[-1.6,-86.3],"head":[-8.6,-154.9],"shR":[-68.8,-91.1],"elR":[-94.3,12.6],"haR":[-99.1,63.5],"shL":[68.4,-103.5],"elL":[81.9,-7],"haL":[87.4,43.1],"hipR":[-35.2,37.2],"knR":[-7.3,166.9],"ftR":[17.9,322],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-41.5,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-8.8,-155],"shR":[-69,-91.1],"elR":[-95.9,12.7],"haR":[-100.6,63.5],"shL":[68.2,-103.7],"elL":[81.8,-7],"haL":[87.5,43.1],"hipR":[-35.3,37.1],"knR":[-7.6,166.9],"ftR":[17.7,322.1],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-41.6,279.4]},{"rootY":1.1,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.5,-154.8],"shR":[-69.3,-91],"elR":[-97.1,12.8],"haR":[-101.8,63.6],"shL":[67.8,-103.9],"elL":[81.6,-6.7],"haL":[87.5,43.4],"hipR":[-35.4,37],"knR":[-7.8,166.8],"ftR":[17.4,321.9],"hipL":[30.6,41.5],"knL":[18.9,174.7],"ftL":[-42.1,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.3],"neck":[-2.4,-86.3],"head":[-9.7,-154.8],"shR":[-69.6,-90.9],"elR":[-98.2,12.7],"haR":[-102.8,63.4],"shL":[67.5,-104],"elL":[81.6,-6.6],"haL":[87.4,43.5],"hipR":[-35.5,36.9],"knR":[-7.9,166.7],"ftR":[17.1,321.8],"hipL":[30.5,41.6],"knL":[18.6,174.8],"ftL":[-42.7,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-10.2,-154.9],"shR":[-69.9,-91.1],"elR":[-98.9,12.8],"haR":[-103.4,63.5],"shL":[67.2,-104],"elL":[81.6,-6.5],"haL":[87.6,43.5],"hipR":[-35.5,36.8],"knR":[-8.5,166.8],"ftR":[16.7,321.8],"hipL":[30.4,41.6],"knL":[18.5,174.7],"ftL":[-43.3,278.8]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.9,-154.7],"shR":[-70.4,-90.9],"elR":[-99.6,13.3],"haR":[-104,63.9],"shL":[66.6,-104.3],"elL":[81.3,-6.3],"haL":[87.3,43.7],"hipR":[-35.7,36.6],"knR":[-9.5,166.8],"ftR":[16.2,321.8],"hipL":[30.2,41.8],"knL":[18.2,174.9],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.7,-154.9],"shR":[-70.4,-90.6],"elR":[-99.4,13.9],"haR":[-103.7,64.5],"shL":[66.5,-104.7],"elL":[81.3,-6.4],"haL":[87.4,43.6],"hipR":[-35.5,36.9],"knR":[-9.4,167],"ftR":[16,321.9],"hipL":[30.5,41.6],"knL":[18.1,174.6],"ftL":[-43.9,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3,-86.4],"neck":[-3,-86.4],"head":[-11,-154.8],"shR":[-70.3,-90.4],"elR":[-98.2,14.5],"haR":[-102.7,65.1],"shL":[66.6,-104.9],"elL":[81.8,-6.5],"haL":[87.9,43.6],"hipR":[-35.4,36.9],"knR":[-9.1,166.9],"ftR":[15.9,321.8],"hipL":[30.5,41.6],"knL":[17.9,174.6],"ftL":[-43.9,278.7]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.6,-154.6],"shR":[-70.4,-90.2],"elR":[-96.9,15.3],"haR":[-101.7,65.9],"shL":[66.4,-105.2],"elL":[81.8,-6.5],"haL":[88,43.5],"hipR":[-35.5,36.9],"knR":[-9,166.6],"ftR":[15.5,321.7],"hipL":[30.5,41.6],"knL":[17.6,174.6],"ftL":[-44,279.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.4],"neck":[-3.1,-86.4],"head":[-11.9,-154.6],"shR":[-70.4,-89.9],"elR":[-94.8,16],"haR":[-99.7,66.5],"shL":[66.4,-105.4],"elL":[81.8,-6.5],"haL":[88.1,43.5],"hipR":[-35.4,36.9],"knR":[-8.7,166.6],"ftR":[15.6,321.7],"hipL":[30.5,41.6],"knL":[17.5,174.6],"ftL":[-44,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.7,-154.7],"shR":[-70.5,-89.8],"elR":[-92,17.2],"haR":[-97.1,67.7],"shL":[66.3,-105.6],"elL":[81.8,-6.4],"haL":[88.1,43.6],"hipR":[-35.3,37],"knR":[-8.6,166.9],"ftR":[15.7,322],"hipL":[30.6,41.5],"knL":[17.8,174.6],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-12.1,-154.6],"shR":[-70.5,-89.7],"elR":[-89,17.9],"haR":[-94.4,68.4],"shL":[66.3,-105.7],"elL":[81.7,-6.2],"haL":[88.1,43.7],"hipR":[-35.3,37],"knR":[-8.6,167],"ftR":[15.7,322.1],"hipL":[30.7,41.5],"knL":[17.8,174.6],"ftL":[-43.6,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-12.6,-154.5],"shR":[-70.7,-89.8],"elR":[-86,18.6],"haR":[-91.9,69.2],"shL":[66.1,-105.7],"elL":[81.5,-5.8],"haL":[87.9,44.1],"hipR":[-35.4,37],"knR":[-9.3,167.1],"ftR":[15.7,322],"hipL":[30.7,41.6],"knL":[17.7,174.6],"ftL":[-43.8,278.5]},{"rootY":1.1,"hips":[0,0],"chest":[-3.6,-86.4],"neck":[-3.6,-86.4],"head":[-13,-154.5],"shR":[-71,-89.7],"elR":[-83.6,19],"haR":[-89.4,69.6],"shL":[65.8,-105.9],"elL":[81.1,-5.9],"haL":[87.3,44.1],"hipR":[-35.4,36.9],"knR":[-10.2,167.2],"ftR":[15.3,322],"hipL":[30.6,41.7],"knL":[17.3,174.5],"ftL":[-44.3,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.5,-86.4],"neck":[-3.5,-86.4],"head":[-13.1,-154.4],"shR":[-70.9,-89.5],"elR":[-81.1,19.6],"haR":[-87.1,70.3],"shL":[65.9,-106.2],"elL":[80.9,-6.2],"haL":[86.9,43.7],"hipR":[-35.3,37],"knR":[-9.3,167.2],"ftR":[15.5,321.9],"hipL":[30.7,41.6],"knL":[17.5,174.5],"ftL":[-44.2,278.2]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-13,-154.5],"shR":[-70.8,-89.5],"elR":[-78.6,20.2],"haR":[-84.8,70.9],"shL":[65.9,-106.2],"elL":[80.7,-6.1],"haL":[86.6,43.8],"hipR":[-35.3,37],"knR":[-9.4,167.1],"ftR":[15.6,321.9],"hipL":[30.7,41.6],"knL":[17.6,174.6],"ftL":[-44.2,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.5],"neck":[-3.7,-86.5],"head":[-13.3,-154.5],"shR":[-71.1,-89.6],"elR":[-76.8,20.4],"haR":[-83,71.2],"shL":[65.7,-106.1],"elL":[80.2,-5.7],"haL":[86.2,44.2],"hipR":[-35.5,36.8],"knR":[-9.9,167.1],"ftR":[15.5,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44.3,278.2]},{"rootY":1.2,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-13.4,-154.5],"shR":[-71.3,-89.5],"elR":[-75.2,20.6],"haR":[-81.2,71.5],"shL":[65.5,-106.1],"elL":[80,-5.6],"haL":[85.8,44.3],"hipR":[-35.5,36.8],"knR":[-10.1,167.1],"ftR":[15.7,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44,278.7]},{"rootY":1.1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.7],"elR":[-73.4,20.8],"haR":[-79.3,71.6],"shL":[65.5,-105.9],"elL":[79.9,-5.3],"haL":[85.5,44.6],"hipR":[-35.6,36.7],"knR":[-9.9,167],"ftR":[15.8,321.9],"hipL":[30.4,41.8],"knL":[17.5,174.9],"ftL":[-43.8,279.1]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.8],"elR":[-71.9,20.7],"haR":[-77.5,71.6],"shL":[65.5,-105.9],"elL":[79.7,-5.1],"haL":[85.2,44.9],"hipR":[-35.7,36.6],"knR":[-9.9,166.9],"ftR":[15.9,321.8],"hipL":[30.2,41.9],"knL":[17.9,175.1],"ftL":[-43.5,279.3]},{"rootY":1.1,"hips":[0,0],"chest":[-4.1,-86.5],"neck":[-4.1,-86.5],"head":[-13.6,-154.6],"shR":[-71.6,-89.8],"elR":[-70.8,21],"haR":[-76.2,71.9],"shL":[65.3,-105.9],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.8,166.9],"ftR":[15.4,321.8],"hipL":[30,42.1],"knL":[17.6,175.2],"ftL":[-43.6,279.2]},{"rootY":1.3,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.6],"shR":[-71.5,-89.6],"elR":[-69.9,21.3],"haR":[-75,72.2],"shL":[65.4,-106],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.7,166.9],"ftR":[15.6,321.9],"hipL":[30.1,42.1],"knL":[17.4,175.1],"ftL":[-43.1,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.7],"shR":[-71.5,-90],"elR":[-69,21.1],"haR":[-74,71.9],"shL":[65.5,-105.7],"elL":[79.6,-5.1],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.4,166.7],"ftR":[15.5,321.8],"hipL":[30.2,42],"knL":[17.4,175],"ftL":[-42.4,279.5]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13,-154.7],"shR":[-71.4,-89.8],"elR":[-68.5,21.4],"haR":[-73.4,72.3],"shL":[65.5,-105.8],"elL":[79.7,-5.2],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.1,166.7],"ftR":[15.6,321.9],"hipL":[30.3,42],"knL":[17.5,175],"ftL":[-42,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.9,-154.8],"shR":[-71.6,-89.9],"elR":[-68.6,21.4],"haR":[-73.6,72.2],"shL":[65.4,-105.7],"elL":[79.8,-5.2],"haL":[85,44.8],"hipR":[-36.1,36.3],"knR":[-11.6,166.6],"ftR":[15.5,321.9],"hipL":[30,42.2],"knL":[17.4,175.2],"ftL":[-42.1,279.8]},{"rootY":0.7,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.8,-154.9],"shR":[-71.6,-90.1],"elR":[-68.8,21.2],"haR":[-73.9,72],"shL":[65.4,-105.6],"elL":[79.9,-5.1],"haL":[85.1,44.9],"hipR":[-36.1,36.3],"knR":[-11.9,166.5],"ftR":[15.4,321.8],"hipL":[30,42.2],"knL":[17.3,175.2],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-12.7,-154.9],"shR":[-71.5,-90.2],"elR":[-69.2,21],"haR":[-74.6,71.8],"shL":[65.6,-105.4],"elL":[80,-5],"haL":[85.4,45.1],"hipR":[-36.2,36.2],"knR":[-12.1,166.5],"ftR":[15.5,321.8],"hipL":[30,42.2],"knL":[17.4,175.4],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-12.4,-154.9],"shR":[-71.4,-90.3],"elR":[-69.8,20.8],"haR":[-75.5,71.6],"shL":[65.7,-105.3],"elL":[80.2,-4.9],"haL":[85.6,45.1],"hipR":[-36.1,36.3],"knR":[-11.7,166.4],"ftR":[15.7,321.8],"hipL":[30.1,42.2],"knL":[17.5,175.4],"ftL":[-42,280]},{"rootY":0.8,"hips":[0,0],"chest":[-3.6,-86.6],"neck":[-3.6,-86.6],"head":[-12.1,-155],"shR":[-71.2,-90.3],"elR":[-70.6,20.7],"haR":[-76.2,71.5],"shL":[65.8,-105.4],"elL":[80.3,-5.1],"haL":[85.7,45],"hipR":[-35.8,36.6],"knR":[-10.7,166.5],"ftR":[15.7,321.8],"hipL":[30.4,42],"knL":[17.7,175],"ftL":[-41.9,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.4,-86.5],"neck":[-3.4,-86.5],"head":[-11.9,-154.9],"shR":[-71,-90.2],"elR":[-71.7,20.4],"haR":[-77.3,71.2],"shL":[66.1,-105.4],"elL":[80.7,-5.1],"haL":[86,44.9],"hipR":[-35.7,36.7],"knR":[-10.2,166.7],"ftR":[16.2,321.9],"hipL":[30.4,41.9],"knL":[18,175.1],"ftL":[-41.7,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.5],"neck":[-3.1,-86.5],"head":[-11.8,-154.9],"shR":[-70.8,-90.2],"elR":[-73.3,20.1],"haR":[-78.8,70.9],"shL":[66.3,-105.4],"elL":[81,-5.1],"haL":[86.1,45],"hipR":[-35.7,36.6],"knR":[-10.3,166.7],"ftR":[16.3,321.9],"hipL":[30.4,41.9],"knL":[17.9,175.1],"ftL":[-41.8,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.6],"neck":[-3.1,-86.6],"head":[-11.9,-154.9],"shR":[-70.7,-90.3],"elR":[-75.3,19.7],"haR":[-81,70.6],"shL":[66.4,-105.3],"elL":[81,-5.1],"haL":[86,45],"hipR":[-35.7,36.6],"knR":[-10.6,166.7],"ftR":[15.9,322],"hipL":[30.4,41.9],"knL":[17.8,175.2],"ftL":[-42,279.6]},{"rootY":1.3,"hips":[0,0],"chest":[-3,-86.5],"neck":[-3,-86.5],"head":[-11.9,-154.9],"shR":[-70.6,-90.3],"elR":[-77.6,19.3],"haR":[-83.4,70.2],"shL":[66.5,-105.2],"elL":[81.1,-4.9],"haL":[86,45.2],"hipR":[-35.7,36.6],"knR":[-11.2,166.7],"ftR":[15.7,321.9],"hipL":[30.4,41.9],"knL":[17.6,175.2],"ftL":[-42.4,279.4]},{"rootY":1.4,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-12.2,-154.8],"shR":[-70.9,-90.4],"elR":[-80.9,18.6],"haR":[-86.8,69.5],"shL":[66.2,-105.1],"elL":[80.7,-4.9],"haL":[85.6,45.2],"hipR":[-35.9,36.4],"knR":[-12,166.7],"ftR":[15.1,321.9],"hipL":[30.1,42.1],"knL":[17.1,175.3],"ftL":[-43.1,279.1]},{"rootY":1.3,"hips":[0,0],"chest":[-3.2,-86.6],"neck":[-3.2,-86.6],"head":[-12.1,-154.9],"shR":[-70.8,-90.6],"elR":[-83.6,17.8],"haR":[-89.6,68.7],"shL":[66.4,-104.9],"elL":[80.7,-4.7],"haL":[85.7,45.4],"hipR":[-35.9,36.4],"knR":[-11.9,166.7],"ftR":[15.2,321.9],"hipL":[30.2,42.1],"knL":[17.2,175.3],"ftL":[-43.3,279.2]},{"rootY":1.2,"hips":[0,0],"chest":[-2.8,-86.5],"neck":[-2.8,-86.5],"head":[-11.6,-154.9],"shR":[-70.3,-90.9],"elR":[-85.9,17.2],"haR":[-92.5,68],"shL":[66.9,-104.5],"elL":[81.2,-4.5],"haL":[86.2,45.6],"hipR":[-35.8,36.6],"knR":[-11,166.6],"ftR":[15.8,321.9],"hipL":[30.3,41.9],"knL":[17.9,175.4],"ftL":[-43,279.3]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-88.4,16.6],"haR":[-95.7,67.3],"shL":[67.2,-104.3],"elL":[81.8,-4.3],"haL":[86.7,45.8],"hipR":[-35.6,36.8],"knR":[-10.2,166.6],"ftR":[16,322.1],"hipL":[30.4,41.7],"knL":[18.2,175.3],"ftL":[-42.9,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.7,-86.5],"neck":[-2.7,-86.5],"head":[-11.3,-154.9],"shR":[-70.2,-91.1],"elR":[-91.6,15.8],"haR":[-99.3,66.4],"shL":[67.1,-104.1],"elL":[81.9,-4.2],"haL":[86.9,45.9],"hipR":[-35.7,36.6],"knR":[-10.6,166.5],"ftR":[15.8,322.1],"hipL":[30.3,41.9],"knL":[18.1,175.5],"ftL":[-43.1,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11,-154.9],"shR":[-70.1,-91],"elR":[-94.3,15.1],"haR":[-102.8,65.6],"shL":[67.2,-104.2],"elL":[82.1,-4.1],"haL":[87.3,46],"hipR":[-35.7,36.7],"knR":[-10.5,166.6],"ftR":[15.9,322.2],"hipL":[30.3,41.8],"knL":[18.1,175.4],"ftL":[-43,279.8]},{"rootY":1,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.1,-154.8],"shR":[-70.1,-91.3],"elR":[-96.9,14],"haR":[-106.2,64.3],"shL":[67.2,-103.8],"elL":[82.6,-4],"haL":[87.7,46.1],"hipR":[-35.7,36.7],"knR":[-10.3,166.4],"ftR":[16.1,322.1],"hipL":[30.3,41.8],"knL":[18,175.5],"ftL":[-42.8,280]},{"rootY":0.7,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-11,-154.9],"shR":[-70,-91.2],"elR":[-99.4,13.3],"haR":[-109.5,63.5],"shL":[67.3,-103.9],"elL":[82.6,-4.4],"haL":[87.9,45.7],"hipR":[-35.6,36.7],"knR":[-9.9,166.2],"ftR":[15.6,321.9],"hipL":[30.4,41.8],"knL":[18.1,175.4],"ftL":[-42.5,279.9]},{"rootY":0.7,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-154.9],"shR":[-69.8,-91],"elR":[-101.7,12.6],"haR":[-112.6,62.7],"shL":[67.4,-104.1],"elL":[82.8,-4.6],"haL":[88.1,45.4],"hipR":[-35.6,36.8],"knR":[-9.8,166.3],"ftR":[16,321.9],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.9,280.2]},{"rootY":0.6,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-103.5,12.1],"haR":[-115.2,62],"shL":[67.2,-104],"elL":[82.7,-4.8],"haL":[88,45.3],"hipR":[-35.6,36.8],"knR":[-10,166.3],"ftR":[15.8,322],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.6,280.3]},{"rootY":0.4,"hips":[0,0],"chest":[-2.8,-86.3],"neck":[-2.8,-86.3],"head":[-11.5,-154.9],"shR":[-70.3,-90.6],"elR":[-104,12.3],"haR":[-116.8,61.9],"shL":[66.9,-104.2],"elL":[82.2,-4.8],"haL":[87.8,45.3],"hipR":[-35.7,36.7],"knR":[-10.7,166],"ftR":[15.4,321.9],"hipL":[30.4,41.8],"knL":[18.6,175.5],"ftL":[-41.7,280.6]},{"rootY":0.6,"hips":[0,0],"chest":[-3,-86.3],"neck":[-3,-86.3],"head":[-11.9,-154.8],"shR":[-70.5,-90.5],"elR":[-103.3,12.9],"haR":[-116.9,62.2],"shL":[66.7,-104.2],"elL":[82.1,-5.1],"haL":[87.5,45],"hipR":[-35.7,36.7],"knR":[-10.6,166.2],"ftR":[15.4,322],"hipL":[30.4,41.7],"knL":[18.8,175.5],"ftL":[-42,280.4]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.3],"neck":[-3.1,-86.3],"head":[-12.1,-154.8],"shR":[-70.5,-90.3],"elR":[-101.1,13.8],"haR":[-114.8,63],"shL":[66.6,-104.2],"elL":[81.9,-5.5],"haL":[87.2,44.7],"hipR":[-35.7,36.7],"knR":[-10.5,166.2],"ftR":[15.6,322.1],"hipL":[30.5,41.7],"knL":[19.3,175.7],"ftL":[-42.1,280.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.2],"neck":[-3.3,-86.2],"head":[-12.3,-154.8],"shR":[-70.7,-90.3],"elR":[-97.7,14.9],"haR":[-111,64],"shL":[66.5,-104.2],"elL":[81.5,-5.3],"haL":[86.9,44.8],"hipR":[-35.6,36.8],"knR":[-10,166.1],"ftR":[15.7,322.1],"hipL":[30.5,41.7],"knL":[19.6,175.7],"ftL":[-42.1,280.1]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.3],"neck":[-3.7,-86.3],"head":[-12.9,-154.9],"shR":[-71,-90.2],"elR":[-92.7,16.8],"haR":[-105.8,65.7],"shL":[66,-104.4],"elL":[80.9,-5.5],"haL":[86,44.6],"hipR":[-35.6,36.7],"knR":[-10.7,166.3],"ftR":[15.3,322],"hipL":[30.7,41.8],"knL":[19.1,175.5],"ftL":[-42.7,278.9]},{"rootY":0.9,"hips":[0,0],"chest":[-3.7,-86.2],"neck":[-3.7,-86.2],"head":[-12.8,-154.8],"shR":[-70.9,-90.4],"elR":[-86.6,18.1],"haR":[-96.5,67.6],"shL":[66.1,-104.1],"elL":[80.3,-5],"haL":[85.4,45.1],"hipR":[-35.5,36.9],"knR":[-9.7,166.2],"ftR":[15.8,322.1],"hipL":[30.7,41.7],"knL":[19.7,175.7],"ftL":[-42.5,279.6]},{"rootY":0.8,"hips":[0,0],"chest":[-4.2,-86.2],"neck":[-4.2,-86.2],"head":[-13.3,-154.8],"shR":[-71.4,-90.6],"elR":[-81.4,19.5],"haR":[-88,69.4],"shL":[65.7,-104],"elL":[79.6,-4.8],"haL":[84.4,45.4],"hipR":[-35.6,36.7],"knR":[-11,166.1],"ftR":[15.2,321.9],"hipL":[30.6,41.9],"knL":[19.2,175.7],"ftL":[-43,279.2]},{"rootY":0.6,"hips":[0,0],"chest":[-3.3,-86.1],"neck":[-3.3,-86.1],"head":[-12.5,-154.7],"shR":[-70.5,-90.5],"elR":[-75.7,20.6],"haR":[-80,70.8],"shL":[66.5,-103.9],"elL":[80.1,-4.4],"haL":[84.6,45.7],"hipR":[-35.2,37.1],"knR":[-8.6,165.9],"ftR":[16.2,322.1],"hipL":[31,41.5],"knL":[20.2,175.6],"ftL":[-42.3,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.3],"neck":[-3.2,-86.3],"head":[-12.7,-154.8],"shR":[-70.3,-90.2],"elR":[-72,21.8],"haR":[-74.2,72.2],"shL":[66.6,-104.3],"elL":[79.8,-4.7],"haL":[84,45.5],"hipR":[-35.4,37],"knR":[-9.5,166],"ftR":[16.2,322],"hipL":[30.8,41.6],"knL":[20.2,175.9],"ftL":[-42.6,279.9]},{"rootY":0.5,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-12.8,-154.8],"shR":[-70.5,-90.1],"elR":[-70.8,21.7],"haR":[-73.5,72.4],"shL":[66.5,-104.4],"elL":[80.3,-4.6],"haL":[83.9,45.7],"hipR":[-35.4,36.9],"knR":[-9.6,165.9],"ftR":[15.9,322],"hipL":[30.7,41.7],"knL":[20.1,175.9],"ftL":[-43,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-13.1,-154.8],"shR":[-70.6,-89.9],"elR":[-73.2,21.4],"haR":[-77,72.3],"shL":[66.4,-104.7],"elL":[80.8,-4.8],"haL":[83.8,45.4],"hipR":[-35.7,36.6],"knR":[-11,165.8],"ftR":[15.5,321.8],"hipL":[30.4,42],"knL":[19.4,176.1],"ftL":[-43.9,279.2]},{"rootY":0.8,"hips":[0,0],"chest":[-2.6,-86.3],"neck":[-2.6,-86.3],"head":[-13,-154.8],"shR":[-69.9,-90.2],"elR":[-79.9,19.8],"haR":[-82.6,71],"shL":[67.1,-104.6],"elL":[82.9,-4.6],"haL":[85.3,45.7],"hipR":[-35.4,36.9],"knR":[-9.7,165.8],"ftR":[16.1,322],"hipL":[30.7,41.7],"knL":[19.9,176.1],"ftL":[-44,279.8]},{"rootY":0.6,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-13.5,-154.8],"shR":[-70.1,-90],"elR":[-94.4,17],"haR":[-94,67.7],"shL":[66.9,-104.9],"elL":[84.4,-5.2],"haL":[86.2,45.1],"hipR":[-35.6,36.7],"knR":[-10.8,165.6],"ftR":[15.3,321.9],"hipL":[30.5,41.9],"knL":[19.7,176.4],"ftL":[-45,279.4]},{"rootY":0.9,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-14.2,-154.7],"shR":[-70.2,-89.8],"elR":[-111.7,11.8],"haR":[-107.5,61.1],"shL":[66.9,-105.3],"elL":[86.6,-6.4],"haL":[87.7,43.9],"hipR":[-35.7,36.6],"knR":[-11.6,165.7],"ftR":[14.9,322],"hipL":[30.4,42],"knL":[19.5,176.5],"ftL":[-46.3,278.7]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.5],"neck":[-2.4,-86.5],"head":[-14.7,-154.6],"shR":[-70.2,-89.3],"elR":[-129.7,3.6],"haR":[-121.5,51.2],"shL":[66.7,-106],"elL":[89.9,-7.8],"haL":[89.8,42.5],"hipR":[-35.8,36.5],"knR":[-11.6,165.6],"ftR":[14.7,322],"hipL":[30.3,42.1],"knL":[19.3,176.6],"ftL":[-47.4,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-2.3,-86.6],"neck":[-2.3,-86.6],"head":[-15.3,-154.4],"shR":[-70.2,-88.7],"elR":[-144.9,-6.2],"haR":[-131.9,38.3],"shL":[66.4,-106.8],"elL":[93.5,-9.7],"haL":[92.3,40.6],"hipR":[-36,36.2],"knR":[-11.8,165],"ftR":[14.1,321.6],"hipL":[30.1,42.3],"knL":[18.8,176.7],"ftL":[-48.1,278.4]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-15.9,-154.2],"shR":[-70.1,-87.8],"elR":[-155.4,-14.3],"haR":[-137.5,25],"shL":[66.1,-107.9],"elL":[97.1,-11.5],"haL":[95.3,38.7],"hipR":[-36.4,36],"knR":[-12.6,164.8],"ftR":[14.2,321.3],"hipL":[29.8,42.5],"knL":[18.4,177],"ftL":[-48,278.3]},{"rootY":1.8,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-16.7,-153.9],"shR":[-70.1,-87.7],"elR":[-159.9,-18.8],"haR":[-139.6,11.3],"shL":[65.9,-108.2],"elL":[99.5,-11.7],"haL":[97.6,38.5],"hipR":[-36.5,35.9],"knR":[-13.4,164.8],"ftR":[14.6,321.3],"hipL":[29.7,42.6],"knL":[17.9,177],"ftL":[-47,278.5]},{"rootY":1.7,"hips":[0,0],"chest":[-1.9,-86.6],"neck":[-1.9,-86.6],"head":[-17.1,-153.7],"shR":[-69.8,-87.7],"elR":[-159.1,-17],"haR":[-138.2,-1.3],"shL":[66.1,-108.3],"elL":[101.1,-10.9],"haL":[99.4,39.2],"hipR":[-36.5,35.9],"knR":[-13.7,164.7],"ftR":[15,321.1],"hipL":[29.8,42.6],"knL":[17.2,176.8],"ftL":[-45.1,278.9]},{"rootY":1.9,"hips":[0,0],"chest":[-1.3,-86.5],"neck":[-1.3,-86.5],"head":[-17,-153.5],"shR":[-69.3,-87.9],"elR":[-152.5,-9.3],"haR":[-131.7,-10.8],"shL":[66.7,-108.4],"elL":[101.5,-10.2],"haL":[100,39.7],"hipR":[-36.6,35.7],"knR":[-14.8,164.9],"ftR":[15.8,321.1],"hipL":[29.6,42.7],"knL":[17,177],"ftL":[-43.3,279.3]},{"rootY":1.5,"hips":[0,0],"chest":[-1,-86.5],"neck":[-1,-86.5],"head":[-16.9,-153.6],"shR":[-69,-88],"elR":[-139.9,2.9],"haR":[-121.3,-15.5],"shL":[67.2,-108.4],"elL":[101.5,-9.5],"haL":[99.8,40.2],"hipR":[-36.7,35.6],"knR":[-15,164.8],"ftR":[16.4,321],"hipL":[29.6,42.8],"knL":[16.9,177.1],"ftL":[-41.6,280.1]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.4],"neck":[-0.8,-86.4],"head":[-16.2,-154.1],"shR":[-68.8,-87.5],"elR":[-123.4,14],"haR":[-108.5,-17.6],"shL":[67.2,-109],"elL":[100.6,-9.4],"haL":[98.9,40.1],"hipR":[-36.7,35.6],"knR":[-16,164.9],"ftR":[17.3,320.8],"hipL":[29.5,42.8],"knL":[17.6,177.2],"ftL":[-40.5,280.1]},{"rootY":1.9,"hips":[0,0],"chest":[-0.2,-86.3],"neck":[-0.2,-86.3],"head":[-15.5,-154.2],"shR":[-68.2,-86.8],"elR":[-108.1,19.6],"haR":[-96.7,-20.4],"shL":[67.7,-109.7],"elL":[100.3,-9.3],"haL":[99.2,40.2],"hipR":[-36.4,36],"knR":[-14.7,164.8],"ftR":[18.9,320.8],"hipL":[29.9,42.5],"knL":[18.8,177.2],"ftL":[-39.3,280.1]},{"rootY":2.2,"hips":[0,0],"chest":[-0.6,-86.3],"neck":[-0.6,-86.3],"head":[-16,-153.9],"shR":[-68.5,-85.8],"elR":[-96.1,19],"haR":[-87.9,-27.4],"shL":[67,-110.7],"elL":[99.1,-9.7],"haL":[98.8,39.9],"hipR":[-36.5,35.9],"knR":[-15.3,165.1],"ftR":[19.4,320.8],"hipL":[29.9,42.5],"knL":[19.2,177.2],"ftL":[-38.8,280]},{"rootY":1.8,"hips":[0,0],"chest":[-0.6,-86.1],"neck":[-0.6,-86.1],"head":[-15.8,-153.3],"shR":[-68.5,-84.2],"elR":[-87.8,13.3],"haR":[-82.2,-36.3],"shL":[66.4,-112.3],"elL":[98.7,-11.2],"haL":[98.8,38.4],"hipR":[-36.3,36.1],"knR":[-14.6,165.1],"ftR":[20,320.9],"hipL":[30.1,42.4],"knL":[19.8,177],"ftL":[-37.9,280.6]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.1],"neck":[-0.8,-86.1],"head":[-16.1,-152],"shR":[-68.7,-82.5],"elR":[-82.9,2.5],"haR":[-78.5,-48.4],"shL":[65.6,-113.8],"elL":[99.1,-12.9],"haL":[98.7,36.6],"hipR":[-36.2,36.2],"knR":[-12.7,164.9],"ftR":[20.4,320.9],"hipL":[30.2,42.3],"knL":[20.4,177],"ftL":[-37.3,280.9]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86],"neck":[-2.1,-86],"head":[-17.4,-151],"shR":[-69.8,-81.8],"elR":[-80.4,-14.2],"haR":[-76.6,-65.1],"shL":[64.1,-114.5],"elL":[98.6,-13.9],"haL":[98.1,35.5],"hipR":[-35.9,36.5],"knR":[-11.6,165.2],"ftR":[20,321.4],"hipL":[30.6,42],"knL":[20.8,176.6],"ftL":[-37.6,281]},{"rootY":1,"hips":[0,0],"chest":[-3.4,-86],"neck":[-3.4,-86],"head":[-18.6,-149.4],"shR":[-71,-81.3],"elR":[-79.9,-33.7],"haR":[-76.1,-83.5],"shL":[62.6,-115],"elL":[98.1,-14.9],"haL":[97.7,34.5],"hipR":[-35.8,36.6],"knR":[-11.1,165.4],"ftR":[19.8,321.7],"hipL":[30.6,42],"knL":[21.2,176.5],"ftL":[-37.9,281.3]},{"rootY":0.7,"hips":[0,0],"chest":[-4.3,-85.9],"neck":[-4.3,-85.9],"head":[-19.3,-147.9],"shR":[-71.7,-80.2],"elR":[-79.6,-54.1],"haR":[-75.1,-102.7],"shL":[61.3,-115.9],"elL":[97.6,-16.4],"haL":[97.6,33.1],"hipR":[-35,37.3],"knR":[-8.7,165.8],"ftR":[20,322.2],"hipL":[31.3,41.4],"knL":[21.7,175.9],"ftL":[-37.7,281.5]},{"rootY":0.4,"hips":[0,0],"chest":[-5.4,-85.8],"neck":[-5.4,-85.8],"head":[-20.4,-146.7],"shR":[-72.6,-79.8],"elR":[-78.8,-74.5],"haR":[-73.7,-121.9],"shL":[59.9,-116.1],"elL":[96.5,-17.2],"haL":[97.2,32.2],"hipR":[-34.9,37.3],"knR":[-8.1,165.9],"ftR":[20.2,322.6],"hipL":[31.4,41.3],"knL":[21.8,175.9],"ftL":[-38.1,282]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.5,-85.6],"neck":[-6.5,-85.6],"head":[-21.7,-144.8],"shR":[-73.5,-79.6],"elR":[-77.5,-93],"haR":[-72,-139.1],"shL":[58.6,-116],"elL":[95.8,-18.1],"haL":[97.3,31.3],"hipR":[-34.7,37.5],"knR":[-7.4,166],"ftR":[20,322.8],"hipL":[31.5,41.2],"knL":[21.6,175.8],"ftL":[-38.9,282.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-8,-85.4],"neck":[-8,-85.4],"head":[-22.7,-143.5],"shR":[-74.7,-78.6],"elR":[-76.1,-108.1],"haR":[-70,-153.8],"shL":[56.6,-116.6],"elL":[94.1,-19.5],"haL":[96.5,30],"hipR":[-34.7,37.4],"knR":[-8.9,166.3],"ftR":[19.2,322.9],"hipL":[31.4,41.3],"knL":[20.8,175.6],"ftL":[-40.1,281.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-9,-85.2],"neck":[-9,-85.2],"head":[-23.7,-142.3],"shR":[-75.3,-77.8],"elR":[-73.5,-120.5],"haR":[-67.4,-166.1],"shL":[55.1,-117],"elL":[93.2,-20.7],"haL":[96.4,28.8],"hipR":[-34.9,37.3],"knR":[-9.1,166.4],"ftR":[19.4,323.1],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-40.6,282.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.2,-85],"neck":[-9.2,-85],"head":[-24.1,-141.3],"shR":[-75.2,-77.1],"elR":[-69.6,-129.5],"haR":[-63.8,-175.6],"shL":[54.6,-117.4],"elL":[93.4,-22],"haL":[97.4,27.5],"hipR":[-34.1,38],"knR":[-6.3,166.5],"ftR":[20.1,323.4],"hipL":[31.8,40.7],"knL":[21.9,175.3],"ftL":[-40.1,282.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.9,-84.8],"neck":[-9.9,-84.8],"head":[-24.7,-140.6],"shR":[-75.8,-76.7],"elR":[-65.3,-136.2],"haR":[-60.1,-183.3],"shL":[53.6,-117.3],"elL":[93.5,-23.4],"haL":[97.8,26.1],"hipR":[-33.9,38.1],"knR":[-5.2,166.5],"ftR":[20.5,323.4],"hipL":[32,40.6],"knL":[22.6,175.2],"ftL":[-39.5,282.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.6,-84.6],"neck":[-10.6,-84.6],"head":[-25.6,-139.9],"shR":[-76.2,-76.6],"elR":[-60.5,-140.5],"haR":[-56,-188.9],"shL":[52.7,-117.1],"elL":[94.2,-24.7],"haL":[98.5,24.7],"hipR":[-34,38.1],"knR":[-5.2,166.5],"ftR":[21,323.3],"hipL":[31.8,40.6],"knL":[23.2,175.3],"ftL":[-39.4,282.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-11.5,-84.5],"neck":[-11.5,-84.5],"head":[-26,-140.1],"shR":[-77,-76.7],"elR":[-55.2,-140.9],"haR":[-51.5,-190.5],"shL":[51.7,-116.8],"elL":[95.9,-26.3],"haL":[99.2,23.1],"hipR":[-33.9,38.2],"knR":[-4.9,166.3],"ftR":[20.7,322.9],"hipL":[32.1,40.5],"knL":[23.3,175.1],"ftL":[-39.8,281.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-12.4,-84.4],"neck":[-12.4,-84.4],"head":[-26.3,-141.5],"shR":[-78,-77.3],"elR":[-50.3,-137.7],"haR":[-46.2,-188.2],"shL":[51.2,-116.1],"elL":[98.6,-28.4],"haL":[99.7,20.6],"hipR":[-34,38.1],"knR":[-4.3,166],"ftR":[21.1,322.6],"hipL":[31.9,40.6],"knL":[23.9,175.3],"ftL":[-39.8,281.7]},{"rootY":0,"hips":[0,0],"chest":[-12.8,-84.4],"neck":[-12.8,-84.4],"head":[-25.9,-142],"shR":[-78.9,-77.5],"elR":[-47.3,-126.8],"haR":[-41.3,-177.3],"shL":[51.3,-115.8],"elL":[101.4,-31.1],"haL":[100.5,17],"hipR":[-33.9,38.2],"knR":[-4.5,166.2],"ftR":[21.6,322.6],"hipL":[32,40.5],"knL":[24.6,175.2],"ftL":[-39.4,281.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.9,-84.6],"neck":[-12.9,-84.6],"head":[-25,-145.3],"shR":[-79.4,-79.4],"elR":[-46.2,-108.4],"haR":[-37,-158.7],"shL":[52.1,-114.4],"elL":[103.7,-31.3],"haL":[101.4,15.2],"hipR":[-34,38.1],"knR":[-3.7,165.8],"ftR":[21.8,322.3],"hipL":[32,40.6],"knL":[25,175.3],"ftL":[-38.8,281.4]},{"rootY":-0.2,"hips":[0,0],"chest":[-12,-84.9],"neck":[-12,-84.9],"head":[-24.6,-146],"shR":[-79,-81.8],"elR":[-47.5,-83.3],"haR":[-33.6,-132.5],"shL":[54.2,-112.6],"elL":[104.8,-30.1],"haL":[102.6,13.6],"hipR":[-34.4,37.8],"knR":[-2.6,165.3],"ftR":[22.7,321.8],"hipL":[31.6,40.9],"knL":[25.3,175.7],"ftL":[-37.6,282]},{"rootY":0,"hips":[0,0],"chest":[-10.2,-85.3],"neck":[-10.2,-85.3],"head":[-22.7,-147.8],"shR":[-77.4,-85.5],"elR":[-50.7,-54.6],"haR":[-31.3,-101.8],"shL":[57.3,-109.7],"elL":[103.7,-25.3],"haL":[103.7,14.9],"hipR":[-33.8,38.4],"knR":[-1.7,165.6],"ftR":[23.4,322],"hipL":[32.4,40.3],"knL":[25.1,175],"ftL":[-36.6,281.6]},{"rootY":0.1,"hips":[0,0],"chest":[-8.2,-85.6],"neck":[-8.2,-85.6],"head":[-20.5,-148.1],"shR":[-75.6,-86.8],"elR":[-56.6,-22.7],"haR":[-32.8,-65.8],"shL":[59.9,-108.9],"elL":[99.6,-20.3],"haL":[103.3,16.7],"hipR":[-33.7,38.4],"knR":[-2.1,165.7],"ftR":[24,322],"hipL":[32.5,40.3],"knL":[25,175],"ftL":[-35.9,281.6]},{"rootY":0.3,"hips":[0,0],"chest":[-6.2,-85.8],"neck":[-6.2,-85.8],"head":[-18.7,-148.5],"shR":[-73.4,-88.5],"elR":[-63.5,4.4],"haR":[-38.1,-32],"shL":[62.3,-107.6],"elL":[94.3,-15.3],"haL":[103,20.1],"hipR":[-34.2,38],"knR":[-4.4,165.8],"ftR":[24.1,321.8],"hipL":[32.1,40.7],"knL":[25.1,175.4],"ftL":[-35.5,281.8]},{"rootY":0.7,"hips":[0,0],"chest":[-3.7,-85.9],"neck":[-3.7,-85.9],"head":[-16.9,-148.5],"shR":[-70.6,-88.5],"elR":[-71.1,22.4],"haR":[-47.8,-1],"shL":[64.6,-107.7],"elL":[89.1,-14.4],"haL":[103.3,22],"hipR":[-34.4,37.9],"knR":[-6.3,165.9],"ftR":[24.3,321.7],"hipL":[31.9,40.8],"knL":[25.1,175.6],"ftL":[-34.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-2.5,-85.5],"neck":[-2.5,-85.5],"head":[-17.1,-147.2],"shR":[-69.2,-87.7],"elR":[-77.5,27.3],"haR":[-60.6,22.3],"shL":[65.5,-107.8],"elL":[84.5,-16],"haL":[104,23.5],"hipR":[-34.8,37.5],"knR":[-8.9,166],"ftR":[23.9,321.9],"hipL":[31.4,41.1],"knL":[25.1,176.1],"ftL":[-34.8,281.2]},{"rootY":1.1,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-18.6,-146.9],"shR":[-68.8,-86.6],"elR":[-79.3,22.9],"haR":[-74.3,36.9],"shL":[65.9,-108.4],"elL":[82.9,-21.4],"haL":[104.8,21.8],"hipR":[-35.4,37],"knR":[-11,165.4],"ftR":[23.2,321.3],"hipL":[30.9,41.5],"knL":[24.7,176.5],"ftL":[-35.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-1.8,-85.2],"neck":[-1.8,-85.2],"head":[-20,-146.1],"shR":[-69,-84.8],"elR":[-81.3,15.1],"haR":[-87.8,44.5],"shL":[66,-109.7],"elL":[84.1,-28.5],"haL":[107.3,16.3],"hipR":[-35.4,37],"knR":[-10.3,165.2],"ftR":[22.9,321.3],"hipL":[30.9,41.4],"knL":[24.4,176.5],"ftL":[-38.2,281.3]},{"rootY":0.9,"hips":[0,0],"chest":[-1.7,-84.7],"neck":[-1.7,-84.7],"head":[-20.5,-144.5],"shR":[-69.3,-83.1],"elR":[-85.6,5.7],"haR":[-100.8,44.4],"shL":[65.8,-110.1],"elL":[88.6,-36.3],"haL":[113.8,6.6],"hipR":[-34.5,37.8],"knR":[-7.5,165.8],"ftR":[23.2,322.1],"hipL":[31.7,40.8],"knL":[24.3,175.7],"ftL":[-40.2,280.2]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-83.7],"neck":[-2.1,-83.7],"head":[-21.6,-143.4],"shR":[-69.9,-80.5],"elR":[-91.8,-2.2],"haR":[-113.8,40.7],"shL":[64.7,-110.5],"elL":[95.4,-45.8],"haL":[123.4,-8],"hipR":[-34.6,37.8],"knR":[-7.9,165.3],"ftR":[21.9,322.3],"hipL":[31.8,40.7],"knL":[23.5,175.7],"ftL":[-42.3,281.4]},{"rootY":-0.4,"hips":[0,0],"chest":[-2.8,-82.6],"neck":[-2.8,-82.6],"head":[-22.9,-141.9],"shR":[-70.6,-77.6],"elR":[-99.9,-8.7],"haR":[-127.4,34.4],"shL":[63.1,-111],"elL":[104.3,-56.3],"haL":[135.6,-25.8],"hipR":[-34.5,37.9],"knR":[-8,165.1],"ftR":[21.1,322.5],"hipL":[31.9,40.6],"knL":[23.2,175.6],"ftL":[-44.3,281.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-3.2,-81.7],"neck":[-3.2,-81.7],"head":[-23.7,-140.7],"shR":[-70.8,-74.7],"elR":[-108.3,-14.1],"haR":[-140.1,25.1],"shL":[61.7,-111.7],"elL":[115,-69.2],"haL":[150.3,-47.1],"hipR":[-33.6,38.6],"knR":[-5.2,165.3],"ftR":[20.8,323],"hipL":[32.7,40],"knL":[23.6,175.1],"ftL":[-45.3,281]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.7,-79.9],"neck":[-4.7,-79.9],"head":[-25.4,-138.5],"shR":[-72,-70.5],"elR":[-118.4,-16.8],"haR":[-153.6,16],"shL":[58.9,-111.9],"elL":[124.4,-83.6],"haL":[163.9,-69.6],"hipR":[-33.9,38.4],"knR":[-7.1,164.8],"ftR":[19.4,322.7],"hipL":[32.3,40.2],"knL":[23.6,175.5],"ftL":[-47,281.1]},{"rootY":0,"hips":[0,0],"chest":[-5.3,-78.5],"neck":[-5.3,-78.5],"head":[-26.5,-137.2],"shR":[-72.2,-66.8],"elR":[-128.6,-18.5],"haR":[-166.6,7.5],"shL":[57,-112.2],"elL":[134.4,-98.6],"haL":[178,-92.1],"hipR":[-34,38.3],"knR":[-7.7,164.3],"ftR":[18.5,322.6],"hipL":[32.2,40.3],"knL":[24,175.8],"ftL":[-48.7,280.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.7,-76.9],"neck":[-6.7,-76.9],"head":[-28.3,-135.4],"shR":[-73.2,-63.5],"elR":[-139,-20.7],"haR":[-179.6,-0.2],"shL":[54.5,-111.8],"elL":[142.4,-112.7],"haL":[189.1,-112.7],"hipR":[-34.1,38.1],"knR":[-8.1,163.7],"ftR":[16.6,322.5],"hipL":[32,40.5],"knL":[23.4,176],"ftL":[-51.1,280.4]},{"rootY":0.2,"hips":[0,0],"chest":[-7.9,-75.4],"neck":[-7.9,-75.4],"head":[-30.1,-134],"shR":[-74.1,-60.6],"elR":[-149.4,-22.9],"haR":[-192.8,-6],"shL":[52.3,-111.2],"elL":[148.7,-124.8],"haL":[197.4,-130.6],"hipR":[-34.4,37.9],"knR":[-9.2,163],"ftR":[15.2,322.2],"hipL":[31.7,40.6],"knL":[22.9,176.1],"ftL":[-53.9,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-8.5,-74],"neck":[-8.5,-74],"head":[-31.3,-132.9],"shR":[-74.3,-58.1],"elR":[-158.6,-24.5],"haR":[-204.5,-10.1],"shL":[50.9,-110.5],"elL":[153,-134.8],"haL":[202.3,-144.8],"hipR":[-34.1,38.2],"knR":[-9.5,162.7],"ftR":[14.6,322.2],"hipL":[32.1,40.3],"knL":[22.5,175.8],"ftL":[-56.3,278.5]},{"rootY":0.9,"hips":[0,0],"chest":[-9.8,-72.7],"neck":[-9.8,-72.7],"head":[-33,-131.8],"shR":[-75.3,-56.1],"elR":[-168,-24.7],"haR":[-216,-12.1],"shL":[49,-109.5],"elL":[154.1,-141.7],"haL":[202.7,-154.2],"hipR":[-34.5,37.9],"knR":[-11.4,162.1],"ftR":[12.5,321.8],"hipL":[31.7,40.7],"knL":[21.6,176],"ftL":[-58.8,278.4]},{"rootY":1.3,"hips":[0,0],"chest":[-10.5,-71],"neck":[-10.5,-71],"head":[-33.7,-130.5],"shR":[-75.8,-53.5],"elR":[-175.6,-23.3],"haR":[-225.1,-11.8],"shL":[47.5,-108.3],"elL":[153,-145.6],"haL":[199.6,-158.7],"hipR":[-34.6,37.8],"knR":[-12.6,161.3],"ftR":[11.4,321.4],"hipL":[31.6,40.7],"knL":[21.2,176],"ftL":[-60.8,277.7]},{"rootY":1.5,"hips":[0,0],"chest":[-11.4,-69.8],"neck":[-11.4,-69.8],"head":[-34.7,-129.5],"shR":[-76.5,-51.8],"elR":[-181.8,-20.4],"haR":[-231.9,-9.8],"shL":[46.4,-107.1],"elL":[149.5,-146.3],"haL":[192.5,-158.6],"hipR":[-34.8,37.6],"knR":[-13.9,160.7],"ftR":[9.9,321.1],"hipL":[31.4,40.9],"knL":[20.9,176.2],"ftL":[-62.2,277.3]},{"rootY":1.9,"hips":[0,0],"chest":[-11.8,-68.9],"neck":[-11.8,-68.9],"head":[-35.1,-129.1],"shR":[-76.8,-50.7],"elR":[-185.3,-16.2],"haR":[-235.1,-6],"shL":[45.8,-106.1],"elL":[143.9,-143.9],"haL":[181.9,-153.9],"hipR":[-34.7,37.7],"knR":[-14.1,160.2],"ftR":[9.5,320.8],"hipL":[31.5,40.9],"knL":[21.5,176],"ftL":[-62.5,276.8]},{"rootY":2.2,"hips":[0,0],"chest":[-12.4,-68.2],"neck":[-12.4,-68.2],"head":[-36,-128.8],"shR":[-77.4,-50],"elR":[-185.5,-9.6],"haR":[-234.8,0.1],"shL":[45.2,-105.1],"elL":[136,-137.9],"haL":[167.6,-144.6],"hipR":[-34.7,37.7],"knR":[-15.6,159.7],"ftR":[8.3,320.4],"hipL":[31.6,40.8],"knL":[21.7,175.9],"ftL":[-63.2,276.1]},{"rootY":2.6,"hips":[0,0],"chest":[-12.5,-67.6],"neck":[-12.5,-67.6],"head":[-36.3,-128.4],"shR":[-77.4,-49.2],"elR":[-180.6,-2.9],"haR":[-228.5,8],"shL":[44.9,-104.2],"elL":[125.9,-128.7],"haL":[150.1,-131.5],"hipR":[-34.8,37.6],"knR":[-16.4,159],"ftR":[7.7,320],"hipL":[31.6,40.9],"knL":[21.8,175.8],"ftL":[-63.3,276]},{"rootY":3.4,"hips":[0,0],"chest":[-12.4,-67.6],"neck":[-12.4,-67.6],"head":[-36.3,-128.8],"shR":[-77.4,-49.9],"elR":[-171.1,1.9],"haR":[-216.8,15.3],"shL":[45.4,-103.2],"elL":[114.6,-113.8],"haL":[130.2,-113.5],"hipR":[-35.3,37],"knR":[-21,157.8],"ftR":[6.3,319],"hipL":[31.2,41.2],"knL":[21.1,175.8],"ftL":[-63.5,276.1]},{"rootY":3.7,"hips":[0,0],"chest":[-11.9,-67.7],"neck":[-11.9,-67.7],"head":[-35.9,-129.3],"shR":[-77.3,-51],"elR":[-158.2,5.6],"haR":[-200,23.5],"shL":[46.4,-102.1],"elL":[99.1,-94],"haL":[106.6,-91.5],"hipR":[-35.6,36.7],"knR":[-22.5,157.3],"ftR":[6.1,318.5],"hipL":[31,41.4],"knL":[20.8,175.9],"ftL":[-62.9,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10.9,-68],"neck":[-10.9,-68],"head":[-34.5,-130.4],"shR":[-76.3,-51.7],"elR":[-141,9.1],"haR":[-177.2,32.4],"shL":[47.7,-102.2],"elL":[76.4,-73],"haL":[78.8,-68.5],"hipR":[-35.4,36.9],"knR":[-22.7,157.6],"ftR":[6.9,318.5],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-61.5,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10,-68.5],"neck":[-10,-68.5],"head":[-33.6,-131.2],"shR":[-75.7,-53.2],"elR":[-122.4,10.7],"haR":[-150.5,39.7],"shL":[49.4,-101.7],"elL":[54.3,-58.2],"haL":[50.6,-48.9],"hipR":[-35.7,36.6],"knR":[-24.9,157.2],"ftR":[6.7,317.9],"hipL":[30.9,41.7],"knL":[20.3,176],"ftL":[-60.8,275.9]},{"rootY":3.9,"hips":[0,0],"chest":[-9.3,-69.5],"neck":[-9.3,-69.5],"head":[-32.8,-132.6],"shR":[-75.3,-55.2],"elR":[-103.8,12.2],"haR":[-120.9,46.2],"shL":[50.7,-101.7],"elL":[33.4,-44.9],"haL":[23.5,-30.4],"hipR":[-36,36.3],"knR":[-27.2,157.5],"ftR":[6.3,317.7],"hipL":[30.5,42],"knL":[18.8,176.3],"ftL":[-60.8,275.5]},{"rootY":4.2,"hips":[0,0],"chest":[-8.1,-70.8],"neck":[-8.1,-70.8],"head":[-31,-134.6],"shR":[-74.3,-57.3],"elR":[-83.1,12.4],"haR":[-88,49.4],"shL":[52.1,-102.6],"elL":[18.6,-36],"haL":[1,-17],"hipR":[-35.9,36.4],"knR":[-28.2,157.5],"ftR":[6.6,317.1],"hipL":[30.6,42],"knL":[17.8,176.2],"ftL":[-60.9,274.3]},{"rootY":5.9,"hips":[0,0],"chest":[-6.1,-71.6],"neck":[-6.1,-71.6],"head":[-28.7,-135.9],"shR":[-72.5,-59.6],"elR":[-59.7,11.4],"haR":[-55.4,48.4],"shL":[54.8,-101.9],"elL":[11.8,-28.3],"haL":[-15.1,-6.9],"hipR":[-35.7,36.5],"knR":[-25.6,156.4],"ftR":[9.1,315.7],"hipL":[30.8,41.9],"knL":[17.6,175.5],"ftL":[-60.8,271.5]},{"rootY":8.3,"hips":[0,0],"chest":[-3.8,-72.8],"neck":[-3.8,-72.8],"head":[-26.3,-137.5],"shR":[-70.5,-62],"elR":[-36.2,8.4],"haR":[-25.3,42.6],"shL":[57.6,-102],"elL":[5.1,-23.9],"haL":[-27.5,-1.2],"hipR":[-35.8,36.5],"knR":[-24.5,155.1],"ftR":[11.9,313.5],"hipL":[30.7,42],"knL":[17.8,174.8],"ftL":[-62.9,265.8]},{"rootY":10.6,"hips":[0,0],"chest":[-2.9,-74.7],"neck":[-2.9,-74.7],"head":[-24.4,-140.2],"shR":[-69.8,-65.2],"elR":[-15.4,3.6],"haR":[0.7,34.9],"shL":[59.4,-102.7],"elL":[-1.2,-23.2],"haL":[-36.5,0.2],"hipR":[-35.8,36.6],"knR":[-26.1,153.9],"ftR":[13.2,310.4],"hipL":[30.7,42],"knL":[18,174.2],"ftL":[-67.1,259.2]},{"rootY":14.2,"hips":[0,0],"chest":[-2.2,-76.8],"neck":[-2.2,-76.8],"head":[-23.5,-142.7],"shR":[-69.5,-69.3],"elR":[0.5,1.1],"haR":[20.3,26.6],"shL":[61.3,-102.8],"elL":[0.2,-22.1],"haL":[-39.8,-1.5],"hipR":[-36.1,36.4],"knR":[-26.3,151.9],"ftR":[15.4,306.7],"hipL":[30.4,42.1],"knL":[18.3,173.2],"ftL":[-70.2,254.4]},{"rootY":18.5,"hips":[0,0],"chest":[-1.3,-78.1],"neck":[-1.3,-78.1],"head":[-21.8,-144.2],"shR":[-68.8,-70.6],"elR":[5.8,0.4],"haR":[31.5,18.6],"shL":[63,-104.2],"elL":[6.9,-22.3],"haL":[-37.7,-7.2],"hipR":[-36.2,36.1],"knR":[-25.3,149.6],"ftR":[17.4,302],"hipL":[30.2,42.2],"knL":[19.4,172.1],"ftL":[-73.7,251.3]},{"rootY":23.2,"hips":[0,0],"chest":[-1.1,-79.2],"neck":[-1.1,-79.2],"head":[-20.3,-145.6],"shR":[-68.8,-72.4],"elR":[-0.1,7.2],"haR":[34.4,13.9],"shL":[64.4,-105.1],"elL":[20.3,-26],"haL":[-28.6,-18],"hipR":[-36.3,35.7],"knR":[-23.1,147],"ftR":[19.9,297],"hipL":[30.2,42.2],"knL":[21.6,171],"ftL":[-76.5,250.8]},{"rootY":26.4,"hips":[0,0],"chest":[-1.8,-80.2],"neck":[-1.8,-80.2],"head":[-19.5,-146.8],"shR":[-69.2,-73.7],"elR":[-12.7,13.4],"haR":[29.5,10],"shL":[64.8,-106],"elL":[38.8,-32.6],"haL":[-11.6,-30.5],"hipR":[-35.9,35.2],"knR":[-20.3,145.7],"ftR":[22.4,293.6],"hipL":[30.2,42.1],"knL":[25,170.2],"ftL":[-79,252.9]},{"rootY":28.6,"hips":[0,0],"chest":[-1.7,-80.9],"neck":[-1.7,-80.9],"head":[-18,-147.7],"shR":[-68.4,-73.4],"elR":[-26.4,17.8],"haR":[20.9,8.7],"shL":[65,-107.8],"elL":[69.8,-43.4],"haL":[19.8,-41.7],"hipR":[-35.2,35.3],"knR":[-16.4,144.4],"ftR":[25.4,290.9],"hipL":[30.7,41.9],"knL":[28.4,169.6],"ftL":[-79.8,256.8]},{"rootY":27.7,"hips":[0,0],"chest":[-1.3,-80.8],"neck":[-1.3,-80.8],"head":[-16,-147.9],"shR":[-66,-73.2],"elR":[-38.9,20],"haR":[10.7,8.7],"shL":[65.1,-108.6],"elL":[109.8,-57.4],"haL":[59.9,-49.7],"hipR":[-33.6,35.8],"knR":[-10.9,146],"ftR":[29.8,291.9],"hipL":[31.2,41.6],"knL":[32.1,169.9],"ftL":[-80.3,260.2]},{"rootY":22.7,"hips":[0,0],"chest":[0.2,-81],"neck":[0.2,-81],"head":[-14.3,-148],"shR":[-61.5,-71.1],"elR":[-51.3,24.2],"haR":[-1.1,14.6],"shL":[64.8,-110.9],"elL":[145.1,-78.8],"haL":[99.2,-60.9],"hipR":[-32.5,36],"knR":[-4.7,149.3],"ftR":[32.9,296.5],"hipL":[31,41.6],"knL":[32.7,171],"ftL":[-78.8,268.1]},{"rootY":14.5,"hips":[0,0],"chest":[2.7,-81],"neck":[2.7,-81],"head":[-12.5,-147.7],"shR":[-55,-69.5],"elR":[-63.4,27.4],"haR":[-12.4,24.6],"shL":[64.2,-112.8],"elL":[168.1,-98.7],"haL":[131.5,-74.4],"hipR":[-30,37.2],"knR":[3.4,155],"ftR":[35.6,304.8],"hipL":[31.2,40.8],"knL":[31.3,171.9],"ftL":[-76.6,277]},{"rootY":5.8,"hips":[0,0],"chest":[5.5,-80.4],"neck":[5.5,-80.4],"head":[-11.1,-146.8],"shR":[-47.9,-67.2],"elR":[-74.5,29.1],"haR":[-23.7,35.8],"shL":[63.6,-113.8],"elL":[175.5,-115.3],"haL":[153.5,-88.5],"hipR":[-28.4,37.9],"knR":[11.6,159],"ftR":[34.7,312.3],"hipL":[29.9,40.5],"knL":[28.2,172.8],"ftL":[-72.9,287.4]},{"rootY":-3.5,"hips":[0,0],"chest":[8,-80.1],"neck":[8,-80.1],"head":[-10.1,-146.7],"shR":[-40,-66.3],"elR":[-83.7,26.9],"haR":[-35.2,43],"shL":[61.4,-114.7],"elL":[165.6,-129.7],"haL":[162.6,-101.6],"hipR":[-24.8,39.8],"knR":[18.5,163.9],"ftR":[23.9,319.5],"hipL":[29,38.8],"knL":[23.3,172.7],"ftL":[-70.1,297]},{"rootY":-13.1,"hips":[0,0],"chest":[10.7,-79.7],"neck":[10.7,-79.7],"head":[-9,-145.8],"shR":[-31.9,-63.3],"elR":[-86.4,25],"haR":[-41.9,49.1],"shL":[59,-117.1],"elL":[144.3,-139.6],"haL":[159.8,-115.4],"hipR":[-21.8,41.1],"knR":[22,167.9],"ftR":[10.7,325.6],"hipL":[26.9,37.4],"knL":[18.6,172.2],"ftL":[-66.1,305.9]},{"rootY":-21.2,"hips":[0,0],"chest":[13.1,-78.7],"neck":[13.1,-78.7],"head":[-9.2,-143.9],"shR":[-24.8,-59.8],"elR":[-85.6,24.7],"haR":[-46.4,54.1],"shL":[56.5,-118.7],"elL":[112.3,-145.7],"haL":[144.2,-125.4],"hipR":[-20.4,41.2],"knR":[20.6,169.9],"ftR":[-0.1,328.9],"hipL":[22.6,37.3],"knL":[14.6,172.2],"ftL":[-63.9,311.9]},{"rootY":-27.3,"hips":[0,0],"chest":[14.9,-77.8],"neck":[14.9,-77.8],"head":[-9.6,-142.1],"shR":[-17.5,-56.4],"elR":[-82.3,23.5],"haR":[-48.2,56.5],"shL":[53.2,-120.2],"elL":[75.6,-148.3],"haL":[118.9,-135],"hipR":[-18.5,40.9],"knR":[19.2,171.2],"ftR":[-9.2,330.8],"hipL":[17.9,37.5],"knL":[13.1,172.4],"ftL":[-62.4,315.9]},{"rootY":-31.2,"hips":[0,0],"chest":[17,-77.9],"neck":[17,-77.9],"head":[-9,-141.2],"shR":[-9.7,-53.9],"elR":[-75.9,21.9],"haR":[-46.9,57.5],"shL":[50.1,-122.7],"elL":[43.7,-149.3],"haL":[93.3,-143.3],"hipR":[-15.4,41.4],"knR":[19.6,172.6],"ftR":[-16.5,332],"hipL":[14,36.9],"knL":[13.5,172],"ftL":[-58.8,318.7]},{"rootY":-33.5,"hips":[0,0],"chest":[19.4,-77.9],"neck":[19.4,-77.9],"head":[-7.8,-139.9],"shR":[1.9,-53.7],"elR":[-62.6,20.4],"haR":[-38.3,56.6],"shL":[43.9,-123.4],"elL":[10.6,-147.7],"haL":[60.5,-149.9],"hipR":[-11.2,42.2],"knR":[22.6,173.8],"ftR":[-18.5,332.7],"hipL":[10.4,35.9],"knL":[15.1,170.8],"ftL":[-52.4,320.4]},{"rootY":-34.5,"hips":[0,0],"chest":[21.6,-78.1],"neck":[21.6,-78.1],"head":[-6.6,-138.7],"shR":[10.9,-52.5],"elR":[-47.9,21.5],"haR":[-27.8,58],"shL":[39.5,-125.1],"elL":[-16,-145],"haL":[29.5,-154.9],"hipR":[-6.2,41.7],"knR":[24.9,173.8],"ftR":[-19.2,332.2],"hipL":[5.3,36.7],"knL":[17.7,171.3],"ftL":[-45.6,322.4]},{"rootY":-34.9,"hips":[0,0],"chest":[22.4,-78.4],"neck":[22.4,-78.4],"head":[-7.1,-136.7],"shR":[20.1,-51.6],"elR":[-29.7,25.8],"haR":[-13.2,60.6],"shL":[32.7,-126.6],"elL":[-39.7,-142.4],"haL":[-2.5,-159.2],"hipR":[-0.5,41.2],"knR":[25,174.4],"ftR":[-21.6,332.3],"hipL":[0.5,37.4],"knL":[18.8,171.6],"ftL":[-42,323.2]},{"rootY":-34.9,"hips":[0,0],"chest":[24.5,-78.8],"neck":[24.5,-78.8],"head":[-5.4,-135],"shR":[33,-52],"elR":[-5.8,26.2],"haR":[9.4,59.8],"shL":[24.5,-127.5],"elL":[-60.4,-138.6],"haL":[-33.6,-161.1],"hipR":[5,40.4],"knR":[26.2,174.1],"ftR":[-22.6,331.4],"hipL":[-5.5,38.2],"knL":[18,171.9],"ftL":[-36,325.6]},{"rootY":-34.9,"hips":[0,0],"chest":[26.4,-78.9],"neck":[26.4,-78.9],"head":[-3.6,-132.3],"shR":[45.9,-53],"elR":[19.5,25.2],"haR":[34.3,57.2],"shL":[15.6,-127],"elL":[-79,-133],"haL":[-64.2,-159.6],"hipR":[10.5,40.4],"knR":[26.8,174.7],"ftR":[-22.9,331],"hipL":[-11.3,38.2],"knL":[15.7,171.3],"ftL":[-30.3,326.4]},{"rootY":-36.2,"hips":[0,0],"chest":[27.3,-79.3],"neck":[27.3,-79.3],"head":[0.1,-131.3],"shR":[55.5,-52.5],"elR":[42.6,27.6],"haR":[58.6,58.8],"shL":[8.5,-128.3],"elL":[-94.1,-128.9],"haL":[-92.1,-157.4],"hipR":[15.8,40.1],"knR":[26.2,175],"ftR":[-22.1,330.5],"hipL":[-15.7,38.5],"knL":[13.9,170.8],"ftL":[-24.6,327.3]},{"rootY":-35.4,"hips":[0,0],"chest":[28.2,-79.8],"neck":[28.2,-79.8],"head":[4.9,-130.3],"shR":[66.8,-54],"elR":[68.3,27.3],"haR":[87,58],"shL":[-0.9,-128.1],"elL":[-108.6,-123.6],"haL":[-118.7,-153.2],"hipR":[20.4,40.2],"knR":[28.8,175],"ftR":[-16.4,330.7],"hipL":[-20.7,38.5],"knL":[10.2,169.4],"ftL":[-16.5,327.4]},{"rootY":-35.2,"hips":[0,0],"chest":[27.9,-80.4],"neck":[27.9,-80.4],"head":[10.2,-129.9],"shR":[75,-54.5],"elR":[96.7,32.7],"haR":[115.3,61.5],"shL":[-9.4,-128.9],"elL":[-120.7,-119.3],"haL":[-141,-147.2],"hipR":[25,39.1],"knR":[29.6,174.1],"ftR":[-12.5,329.5],"hipL":[-23.5,39.5],"knL":[8.1,169.4],"ftL":[-9.9,328.2]},{"rootY":-34,"hips":[0,0],"chest":[27.9,-80.6],"neck":[27.9,-80.6],"head":[17.3,-128.4],"shR":[83.3,-57.2],"elR":[112.9,28.4],"haR":[139.6,59],"shL":[-18.1,-127.1],"elL":[-128.2,-112],"haL":[-157.9,-139.5],"hipR":[30.2,37.9],"knR":[29.6,173],"ftR":[-6.4,328.5],"hipL":[-25.7,40.7],"knL":[5.1,168.8],"ftL":[-2.8,327.9]},{"rootY":-32.7,"hips":[0,0],"chest":[26,-81.5],"neck":[26,-81.5],"head":[24.3,-128.6],"shR":[87.7,-60.5],"elR":[130.9,27.8],"haR":[162.1,58.5],"shL":[-26.9,-126],"elL":[-132.7,-105.6],"haL":[-170.6,-132],"hipR":[33.1,37.7],"knR":[27.8,172.6],"ftR":[0.6,327.5],"hipL":[-28.4,40.7],"knL":[-1.6,167.5],"ftL":[3.3,327.3]},{"rootY":-31.5,"hips":[0,0],"chest":[24.1,-81.8],"neck":[24.1,-81.8],"head":[32.6,-127.8],"shR":[89.1,-62.9],"elR":[143.2,27.6],"haR":[178,58.6],"shL":[-33.4,-124.4],"elL":[-129.8,-97.2],"haL":[-173,-121.6],"hipR":[35.4,36.9],"knR":[26.1,171.6],"ftR":[10.7,326.2],"hipL":[-29.8,41.4],"knL":[-8.3,166],"ftL":[7.4,326.1]},{"rootY":-30.3,"hips":[0,0],"chest":[23.3,-82],"neck":[23.3,-82],"head":[43.5,-127.2],"shR":[88.6,-65.2],"elR":[149.6,26.2],"haR":[187.8,57.5],"shL":[-36.2,-122.5],"elL":[-119.7,-88.4],"haL":[-165.4,-109.4],"hipR":[36.9,35.2],"knR":[25,170],"ftR":[20.9,324.6],"hipL":[-29.4,42.7],"knL":[-17,165.2],"ftL":[7.7,325.3]},{"rootY":-28.3,"hips":[0,0],"chest":[17.6,-82.8],"neck":[17.6,-82.8],"head":[49.8,-128.7],"shR":[80.5,-68.7],"elR":[146.9,23.2],"haR":[187,54.7],"shL":[-41.3,-121.1],"elL":[-107.3,-81.3],"haL":[-152.1,-98.5],"hipR":[34.6,35.5],"knR":[16,169.5],"ftR":[22.7,323.6],"hipL":[-30.1,42.4],"knL":[-30.4,164.1],"ftL":[-0.5,324.8]},{"rootY":-25.3,"hips":[0,0],"chest":[11.9,-83.7],"neck":[11.9,-83.7],"head":[53,-129.6],"shR":[68.2,-72.1],"elR":[138.3,19.4],"haR":[179,50.1],"shL":[-43,-119.4],"elL":[-90.1,-75.6],"haL":[-131.2,-89.5],"hipR":[30.8,35.7],"knR":[7.4,168.9],"ftR":[24.3,321.5],"hipL":[-29.4,42.1],"knL":[-42.1,164.6],"ftL":[-8.1,325.1]},{"rootY":-21.8,"hips":[0,0],"chest":[6.3,-84.3],"neck":[6.3,-84.3],"head":[53.3,-132.1],"shR":[54,-75.1],"elR":[125.9,14.8],"haR":[165.9,44.3],"shL":[-42.1,-117.7],"elL":[-69.5,-70.2],"haL":[-104.1,-81.3],"hipR":[26.4,35.1],"knR":[-1.2,167.7],"ftR":[26.3,319],"hipL":[-26.4,42.6],"knL":[-50.3,165.6],"ftL":[-13.1,325.4]},{"rootY":-18.6,"hips":[0,0],"chest":[0.6,-84.7],"neck":[0.6,-84.7],"head":[46.7,-136.5],"shR":[38.2,-78.3],"elR":[109.7,9.3],"haR":[147.3,37.2],"shL":[-39.7,-115.5],"elL":[-47.7,-65.2],"haL":[-74.1,-73.5],"hipR":[21,34.8],"knR":[-11.6,166.5],"ftR":[27.4,316.5],"hipL":[-23.3,42.8],"knL":[-58.4,165.9],"ftL":[-18.1,324.8]},{"rootY":-16.8,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[39.6,-139.2],"shR":[23.1,-76.6],"elR":[91.3,8.5],"haR":[125,34.6],"shL":[-33.4,-117.9],"elL":[-22.6,-64.4],"haL":[-40,-70.3],"hipR":[14.2,35.2],"knR":[-20,166.7],"ftR":[31.1,315.2],"hipL":[-19.4,42.5],"knL":[-63.5,166.2],"ftL":[-18.5,323.1]},{"rootY":-13.7,"hips":[0,0],"chest":[-7.7,-85.4],"neck":[-7.7,-85.4],"head":[28.1,-142.4],"shR":[6.5,-82.3],"elR":[70,0.9],"haR":[98.4,25.5],"shL":[-27.4,-112.6],"elL":[0.7,-57.3],"haL":[-7.5,-61.1],"hipR":[8.2,31],"knR":[-26,162.1],"ftR":[32.6,310.5],"hipL":[-14.4,45.2],"knL":[-72.5,166.6],"ftL":[-25.2,322.5]},{"rootY":-14.1,"hips":[0,0],"chest":[-9.4,-85.4],"neck":[-9.4,-85.4],"head":[19.4,-144.9],"shR":[-10.2,-85.6],"elR":[45.9,-4.3],"haR":[69.3,19.3],"shL":[-15,-109.2],"elL":[29.7,-52],"haL":[30.2,-53.1],"hipR":[-0.2,33.8],"knR":[-30.1,165.9],"ftR":[38.8,312.1],"hipL":[-9.3,43.5],"knL":[-68.9,165.4],"ftL":[-25.7,320.6]},{"rootY":-13.8,"hips":[0,0],"chest":[-11.5,-85.5],"neck":[-11.5,-85.5],"head":[9.5,-147.1],"shR":[-24.3,-87.5],"elR":[23.6,-7.7],"haR":[40.9,15],"shL":[-5.7,-107.4],"elL":[52.6,-49.3],"haL":[61.7,-47.5],"hipR":[-7.8,34],"knR":[-34,166.5],"ftR":[40.9,311.4],"hipL":[-4.7,43.2],"knL":[-65,164.7],"ftL":[-32,321.7]},{"rootY":-14.3,"hips":[0,0],"chest":[-13,-85.4],"neck":[-13,-85.4],"head":[2.6,-148.6],"shR":[-36.8,-87.7],"elR":[0.7,-10.1],"haR":[11.7,11.9],"shL":[3.7,-106.8],"elL":[70,-45.8],"haL":[89.2,-42],"hipR":[-13.5,34],"knR":[-34.1,167.3],"ftR":[43.2,312.2],"hipL":[0.8,43.3],"knL":[-57.9,164.5],"ftL":[-38.2,323.7]},{"rootY":-14.6,"hips":[0,0],"chest":[-13.6,-85.5],"neck":[-13.6,-85.5],"head":[-3.2,-149.9],"shR":[-46.9,-88.7],"elR":[-21.5,-11.1],"haR":[-16.7,10.9],"shL":[13,-105.7],"elL":[88.2,-42.1],"haL":[115,-34.9],"hipR":[-20,33.3],"knR":[-33.5,167.4],"ftR":[46.5,311.4],"hipL":[5.2,43.8],"knL":[-51.2,164.4],"ftL":[-42,324.8]}]},"jump":{"name":"jump","fps":30,"height":520,"groundY":343,"frameCount":104,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.2],"elR":[-68.8,9.9],"haR":[-82.2,74.4],"shL":[70,-99.6],"elL":[68.4,5.1],"haL":[77.1,73.3],"hipR":[-31.9,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.6,185.6],"ftL":[40.8,338.2]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.2,74.3],"shL":[70.1,-99.5],"elL":[68.4,5.2],"haL":[77.2,73.3],"hipR":[-32,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.1,74.4],"shL":[70.1,-99.5],"elL":[68.5,5.2],"haL":[77.3,73.3],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.3],"shL":[70.1,-99.4],"elL":[68.4,5.3],"haL":[77.3,73.4],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.2],"shL":[70.1,-99.4],"elL":[68.3,5.3],"haL":[77.1,73.5],"hipR":[-32,38.3],"knR":[-30.3,182.2],"ftR":[-39,336.5],"hipL":[29.3,38],"knL":[30.5,185.6],"ftL":[40.7,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11.1,-145.8],"shR":[-54.4,-107.5],"elR":[-68.6,9.7],"haR":[-81.8,74],"shL":[70.2,-99.3],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.9,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.7],"haR":[-81.7,74],"shL":[70.3,-99.2],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32.1,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77,73.6],"hipR":[-32.1,38.2],"knR":[-30.2,182.1],"ftR":[-38.7,336.4],"hipL":[29.2,38.2],"knL":[30.5,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.9,-145.8],"shR":[-54.2,-107.6],"elR":[-68.5,9.6],"haR":[-81.6,73.9],"shL":[70.4,-99.1],"elL":[68.3,5.6],"haL":[76.9,73.8],"hipR":[-32.1,38.2],"knR":[-30.1,182.1],"ftR":[-38.7,336.4],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.8,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.8,73.8],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.4],"hipL":[29.4,38.1],"knL":[30.6,185.6],"ftL":[41,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.6,-145.9],"shR":[-54.3,-107.6],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-32,38.3],"knR":[-30.1,182.2],"ftR":[-38.8,336.4],"hipL":[29.3,38.1],"knL":[30.7,185.6],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.5,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-31.9,38.4],"knR":[-30.1,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.4,-145.9],"shR":[-54.3,-107.7],"elR":[-68.5,9.4],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.9,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.1,-145.9],"shR":[-54.5,-107.7],"elR":[-68.5,9.3],"haR":[-81.9,73.7],"shL":[70.2,-99],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.3],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.9,-145.9],"shR":[-54.6,-107.8],"elR":[-68.7,9.3],"haR":[-81.9,73.8],"shL":[70.1,-99.1],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.8,38.4],"knR":[-30.1,182.3],"ftR":[-39,336.3],"hipL":[29.6,37.9],"knL":[30.8,185.5],"ftL":[40.8,337.9]},{"rootY":0.4,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.8,-145.9],"shR":[-54.7,-107.6],"elR":[-68.8,9.4],"haR":[-82,74.1],"shL":[70,-99.3],"elL":[68.1,5.3],"haL":[76.8,73.7],"hipR":[-31.8,38.4],"knR":[-30.2,182.3],"ftR":[-39.1,336.3],"hipL":[29.5,38],"knL":[30.7,185.5],"ftL":[40.8,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.7,-145.9],"shR":[-54.7,-107.5],"elR":[-68.8,9.4],"haR":[-81.8,74.3],"shL":[70,-99.3],"elL":[68.3,5.3],"haL":[77,73.7],"hipR":[-31.7,38.6],"knR":[-30,182.5],"ftR":[-39.3,336.4],"hipL":[29.7,37.9],"knL":[30.7,185.4],"ftL":[40.6,337.7]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.4,-145.9],"shR":[-54.8,-107.5],"elR":[-68.9,9.4],"haR":[-82,74.3],"shL":[69.9,-99.4],"elL":[68.3,5.2],"haL":[77.1,73.6],"hipR":[-31.6,38.6],"knR":[-29.9,182.5],"ftR":[-39.4,336.5],"hipL":[29.8,37.9],"knL":[30.7,185.5],"ftL":[40.5,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-77.8],"neck":[0.6,-77.8],"head":[9.2,-145.9],"shR":[-55,-107.5],"elR":[-69.1,9.2],"haR":[-82.1,74.2],"shL":[69.7,-99.4],"elL":[68.3,5.1],"haL":[77.1,73.6],"hipR":[-31.8,38.5],"knR":[-30,182.4],"ftR":[-39.6,336.6],"hipL":[29.6,38.2],"knL":[30.4,185.9],"ftL":[40.4,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.4,-77.8],"neck":[0.4,-77.8],"head":[8.9,-145.8],"shR":[-55.3,-107.4],"elR":[-69.3,9.2],"haR":[-82.2,74.5],"shL":[69.5,-99.5],"elL":[68.4,5],"haL":[77.4,73.7],"hipR":[-31.8,38.5],"knR":[-29.7,182.4],"ftR":[-39.6,336.6],"hipL":[29.7,38.5],"knL":[30.4,186.1],"ftL":[40.4,337.9]},{"rootY":0,"hips":[0,0],"chest":[0.1,-77.6],"neck":[0.1,-77.6],"head":[8.4,-145.7],"shR":[-55.7,-107.3],"elR":[-69.7,9],"haR":[-82.6,74.5],"shL":[69.1,-99.4],"elL":[68.3,4.9],"haL":[77.4,73.8],"hipR":[-31.8,38.6],"knR":[-30,182.4],"ftR":[-40.2,336.7],"hipL":[29.7,38.6],"knL":[30,186.2],"ftL":[39.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[-0.3,-77.4],"neck":[-0.3,-77.4],"head":[7.9,-145.6],"shR":[-56.1,-107.2],"elR":[-70.3,8.7],"haR":[-83,74.3],"shL":[68.7,-99.3],"elL":[68.3,4.9],"haL":[77.7,73.7],"hipR":[-31.8,38.7],"knR":[-30.4,182.4],"ftR":[-41.2,336.8],"hipL":[29.6,38.6],"knL":[29.4,186.2],"ftL":[39.2,337.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.9,-77.1],"neck":[-0.9,-77.1],"head":[7.3,-145.2],"shR":[-56.8,-106.9],"elR":[-71.1,8.6],"haR":[-83.8,74.4],"shL":[68,-99.1],"elL":[68.3,4.8],"haL":[77.7,73.6],"hipR":[-32,38.5],"knR":[-30.9,182.2],"ftR":[-42.2,336.6],"hipL":[29.4,38.8],"knL":[28.4,186.3],"ftL":[38.6,337.2]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-76.6],"neck":[-1.5,-76.6],"head":[6.4,-144.7],"shR":[-57.7,-106.2],"elR":[-72.2,8.7],"haR":[-84.8,74.7],"shL":[67.3,-99],"elL":[68.2,4.4],"haL":[78,73.2],"hipR":[-32.2,38.4],"knR":[-30.9,181.9],"ftR":[-43.2,336.2],"hipL":[29.1,39.1],"knL":[27.4,186.4],"ftL":[37.8,336.8]},{"rootY":1.6,"hips":[0,0],"chest":[-1.8,-75.8],"neck":[-1.8,-75.8],"head":[5.8,-143.8],"shR":[-58.1,-105.1],"elR":[-73,8.9],"haR":[-85.5,75.2],"shL":[66.8,-98.4],"elL":[68.6,4.3],"haL":[78.5,73.2],"hipR":[-31.7,38.8],"knR":[-29.6,181.8],"ftR":[-43.7,335.5],"hipL":[29.6,38.9],"knL":[27.4,185.8],"ftL":[37.3,336.2]},{"rootY":2.4,"hips":[0,0],"chest":[-2.3,-74.7],"neck":[-2.3,-74.7],"head":[4.8,-142.5],"shR":[-58.8,-103.9],"elR":[-74.4,9],"haR":[-86.7,75.4],"shL":[66.2,-97.5],"elL":[69.2,4.4],"haL":[79.1,73.4],"hipR":[-31.2,39.2],"knR":[-28.4,181.4],"ftR":[-44.4,334.3],"hipL":[30.1,38.7],"knL":[26.8,185.1],"ftL":[36.5,335.3]},{"rootY":3.7,"hips":[0,0],"chest":[-2.5,-73.5],"neck":[-2.5,-73.5],"head":[4.3,-141],"shR":[-59.1,-102.4],"elR":[-75.4,9.4],"haR":[-87.6,76.3],"shL":[65.8,-96.2],"elL":[70.3,4.5],"haL":[80.2,73.7],"hipR":[-30.6,39.6],"knR":[-27,180.9],"ftR":[-44.7,333],"hipL":[30.6,38.4],"knL":[26.8,184.2],"ftL":[36.1,334.1]},{"rootY":5,"hips":[0,0],"chest":[-2.8,-72.1],"neck":[-2.8,-72.1],"head":[3.4,-139.2],"shR":[-59.6,-100.6],"elR":[-76.5,10],"haR":[-88.7,77.2],"shL":[65.3,-94.9],"elL":[71.5,4.7],"haL":[81.3,74.3],"hipR":[-30.1,40],"knR":[-26.1,180.2],"ftR":[-45.6,331.6],"hipL":[31.1,38.2],"knL":[26.8,183.2],"ftL":[35.5,332.9]},{"rootY":6.3,"hips":[0,0],"chest":[-3.3,-70.6],"neck":[-3.3,-70.6],"head":[2.5,-137.2],"shR":[-60.2,-98.9],"elR":[-77.3,10.5],"haR":[-89.7,78],"shL":[64.7,-93.2],"elL":[72.7,5.2],"haL":[82.7,75.2],"hipR":[-29.8,40.2],"knR":[-25.3,179.5],"ftR":[-46.5,330.3],"hipL":[31.5,38],"knL":[27.2,182.1],"ftL":[34.7,331.6]},{"rootY":7.7,"hips":[0,0],"chest":[-3.5,-69.1],"neck":[-3.5,-69.1],"head":[1.9,-135.2],"shR":[-60.6,-97],"elR":[-77.8,11.1],"haR":[-90.5,79],"shL":[64.4,-91.9],"elL":[73.9,5.6],"haL":[84.5,75.8],"hipR":[-29.7,40.2],"knR":[-24.6,178.7],"ftR":[-47,328.9],"hipL":[31.7,37.9],"knL":[27.6,181.2],"ftL":[34.3,330.4]},{"rootY":9,"hips":[0,0],"chest":[-3.6,-67.8],"neck":[-3.6,-67.8],"head":[1.5,-133.3],"shR":[-61,-95.1],"elR":[-78.2,11.6],"haR":[-91,79.8],"shL":[64.1,-90.8],"elL":[75,5.4],"haL":[86.4,75.7],"hipR":[-29.3,40.5],"knR":[-23.7,178.2],"ftR":[-47.5,327.6],"hipL":[32.1,37.7],"knL":[28.2,180.2],"ftL":[33.9,329.2]},{"rootY":10,"hips":[0,0],"chest":[-3.9,-66.6],"neck":[-3.9,-66.6],"head":[0.9,-131.6],"shR":[-61.4,-93.5],"elR":[-78.2,11.5],"haR":[-91.4,80.1],"shL":[63.7,-89.7],"elL":[76.1,4.9],"haL":[88.4,75.3],"hipR":[-29.1,40.6],"knR":[-23.3,177.7],"ftR":[-47.9,326.6],"hipL":[32.3,37.5],"knL":[28.1,179.5],"ftL":[33.5,328.2]},{"rootY":10.8,"hips":[0,0],"chest":[-4,-65.5],"neck":[-4,-65.5],"head":[0.7,-130],"shR":[-61.6,-92],"elR":[-78.3,10.7],"haR":[-91.6,79.6],"shL":[63.6,-88.7],"elL":[77.2,3.8],"haL":[90.8,74],"hipR":[-28.6,41],"knR":[-22.9,177.5],"ftR":[-47.9,325.7],"hipL":[32.8,37.1],"knL":[28.3,178.8],"ftL":[33.2,327.4]},{"rootY":11.1,"hips":[0,0],"chest":[-4.1,-64.5],"neck":[-4.1,-64.5],"head":[0.3,-128.8],"shR":[-61.8,-90.5],"elR":[-78.3,9.5],"haR":[-91.6,78.7],"shL":[63.4,-87.9],"elL":[78.2,1.8],"haL":[93.2,71.5],"hipR":[-28.5,41],"knR":[-23.2,177.3],"ftR":[-48.2,325.3],"hipL":[33,37],"knL":[28.2,178.7],"ftL":[32.9,327.1]},{"rootY":11.2,"hips":[0,0],"chest":[-4.2,-63.4],"neck":[-4.2,-63.4],"head":[0,-127.5],"shR":[-62,-89.1],"elR":[-78.6,7.2],"haR":[-91.8,76.4],"shL":[63.2,-86.9],"elL":[79.1,-0.8],"haL":[95.9,67.6],"hipR":[-28.3,41],"knR":[-23.5,177.3],"ftR":[-48.4,325.1],"hipL":[33.1,36.9],"knL":[28.5,178.7],"ftL":[32.8,326.9]},{"rootY":11.6,"hips":[0,0],"chest":[-4.3,-62.4],"neck":[-4.3,-62.4],"head":[-0.3,-126.3],"shR":[-62.1,-87.9],"elR":[-79,4.5],"haR":[-92.2,73.2],"shL":[63.2,-85.7],"elL":[80.4,-4.2],"haL":[98.9,62.1],"hipR":[-28.4,40.9],"knR":[-23.5,177.2],"ftR":[-48.5,324.6],"hipL":[33.1,37],"knL":[29.2,178.5],"ftL":[32.9,326.4]},{"rootY":12,"hips":[0,0],"chest":[-4.4,-61.3],"neck":[-4.4,-61.3],"head":[-0.5,-125],"shR":[-62.3,-86.5],"elR":[-79.3,1.4],"haR":[-92.9,68.9],"shL":[63,-84.4],"elL":[81.3,-8.1],"haL":[101.6,55.1],"hipR":[-28.4,40.8],"knR":[-23.6,177.1],"ftR":[-48.6,324.1],"hipL":[33.1,37],"knL":[29.3,178.4],"ftL":[32.8,325.9]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-60.1],"neck":[-4.4,-60.1],"head":[-0.5,-123.5],"shR":[-62.3,-85.1],"elR":[-79.3,-2.2],"haR":[-93.6,63.5],"shL":[63,-83.1],"elL":[82.1,-12.3],"haL":[103.8,47],"hipR":[-28.4,40.8],"knR":[-23.2,176.9],"ftR":[-48.6,323.1],"hipL":[33.1,36.9],"knL":[29.6,178.1],"ftL":[32.9,324.8]},{"rootY":14.7,"hips":[0,0],"chest":[-4.3,-58.9],"neck":[-4.3,-58.9],"head":[-0.3,-121.9],"shR":[-62.3,-83.3],"elR":[-79,-5.5],"haR":[-94,57.8],"shL":[63.1,-81.9],"elL":[82.7,-16.6],"haL":[105.6,38.7],"hipR":[-28.2,40.8],"knR":[-22.8,176.3],"ftR":[-48.6,321.4],"hipL":[33.3,36.8],"knL":[29.8,177.2],"ftL":[33.2,322.9]},{"rootY":17.6,"hips":[0,0],"chest":[-4,-57.4],"neck":[-4,-57.4],"head":[0,-120.1],"shR":[-62,-81.2],"elR":[-78.9,-8],"haR":[-94.2,52.8],"shL":[63.4,-80.3],"elL":[83.2,-19.5],"haL":[107,32.1],"hipR":[-27.9,41],"knR":[-21.9,175.3],"ftR":[-48.1,318.7],"hipL":[33.6,36.4],"knL":[30.9,175.7],"ftL":[33.7,320.3]},{"rootY":21,"hips":[0,0],"chest":[-3.7,-56],"neck":[-3.7,-56],"head":[0.4,-118.3],"shR":[-61.7,-79.3],"elR":[-78.7,-10],"haR":[-94.4,48.4],"shL":[63.7,-79.1],"elL":[83.2,-22.5],"haL":[107.4,26.5],"hipR":[-27.5,41.3],"knR":[-21.2,174],"ftR":[-47.4,315.5],"hipL":[34.1,35.8],"knL":[32,173.9],"ftL":[34.4,317]},{"rootY":25.3,"hips":[0,0],"chest":[-3.6,-54.7],"neck":[-3.6,-54.7],"head":[0.6,-116.7],"shR":[-61.6,-77.3],"elR":[-78.4,-10.2],"haR":[-94.3,46],"shL":[63.8,-78.1],"elL":[82.2,-23.7],"haL":[106.7,23.6],"hipR":[-27.2,41.5],"knR":[-20.8,172.1],"ftR":[-46.5,311.3],"hipL":[34.3,35.5],"knL":[32.8,172.1],"ftL":[34.9,313.1]},{"rootY":29.7,"hips":[0,0],"chest":[-3.3,-53.6],"neck":[-3.3,-53.6],"head":[0.9,-115.2],"shR":[-61.3,-75.6],"elR":[-77.8,-8.7],"haR":[-93.3,45.9],"shL":[64,-77.3],"elL":[81.7,-23.1],"haL":[105.7,23.9],"hipR":[-26.7,41.8],"knR":[-20,170.3],"ftR":[-45.4,306.6],"hipL":[34.7,35.1],"knL":[33.9,170.2],"ftL":[35.7,309]},{"rootY":33.9,"hips":[0,0],"chest":[-3.6,-53.6],"neck":[-3.6,-53.6],"head":[0.2,-115.1],"shR":[-61.7,-74.9],"elR":[-78,-5.7],"haR":[-93.5,48.1],"shL":[63.6,-77.8],"elL":[80.4,-21.5],"haL":[103.6,26.7],"hipR":[-25.9,42.4],"knR":[-19.9,169.9],"ftR":[-45.3,302.5],"hipL":[35.4,34.4],"knL":[34.8,168.7],"ftL":[35.4,304.8]},{"rootY":38.7,"hips":[0,0],"chest":[-3.5,-53.6],"neck":[-3.5,-53.6],"head":[0,-115.5],"shR":[-61.7,-74.5],"elR":[-77.6,-1.3],"haR":[-92.6,52.7],"shL":[63.6,-78.4],"elL":[79.4,-18.1],"haL":[101.5,32.5],"hipR":[-26.2,42.3],"knR":[-19.3,168.3],"ftR":[-44.5,297],"hipL":[35.2,34.6],"knL":[35.6,167.5],"ftL":[35.8,300.5]},{"rootY":43.9,"hips":[0,0],"chest":[-4.2,-53.4],"neck":[-4.2,-53.4],"head":[-1.1,-115.7],"shR":[-62.5,-73.8],"elR":[-78,4.3],"haR":[-92.4,60.2],"shL":[62.7,-78.9],"elL":[77.3,-14],"haL":[98.1,40.8],"hipR":[-25.6,42.8],"knR":[-19.5,166.9],"ftR":[-44.1,291.2],"hipL":[35.7,34.1],"knL":[35.5,165.4],"ftL":[35.3,294.3]},{"rootY":49.8,"hips":[0,0],"chest":[-4.2,-53.7],"neck":[-4.2,-53.7],"head":[-1.3,-116.6],"shR":[-62.6,-73.7],"elR":[-77.4,10.2],"haR":[-90.9,69.5],"shL":[62.5,-79.9],"elL":[76.1,-9.3],"haL":[95.1,50.3],"hipR":[-25.7,42.8],"knR":[-19.6,164.8],"ftR":[-43.5,283.5],"hipL":[35.6,34.2],"knL":[35.5,163.5],"ftL":[36,287.6]},{"rootY":55.7,"hips":[0,0],"chest":[-4.3,-54],"neck":[-4.3,-54],"head":[-1.8,-117.6],"shR":[-62.9,-73.9],"elR":[-76.8,16.4],"haR":[-88.9,80.3],"shL":[62.3,-80.8],"elL":[74.8,-3.5],"haL":[91.7,60.9],"hipR":[-25.5,43],"knR":[-20.5,161.9],"ftR":[-43.7,274.5],"hipL":[35.7,34.1],"knL":[34.9,161],"ftL":[36.9,279.3]},{"rootY":61.2,"hips":[0,0],"chest":[-4.6,-55],"neck":[-4.6,-55],"head":[-2.3,-119.2],"shR":[-63.2,-75],"elR":[-75.9,22.8],"haR":[-86.3,90.9],"shL":[61.9,-82.1],"elL":[74.1,3],"haL":[87.9,71.4],"hipR":[-25.1,43.3],"knR":[-22.3,159.3],"ftR":[-44.3,265.1],"hipL":[36,33.9],"knL":[34.4,158.8],"ftL":[36.7,270.8]},{"rootY":66.4,"hips":[0,0],"chest":[-4.7,-57],"neck":[-4.7,-57],"head":[-2.6,-122.2],"shR":[-63.3,-77.3],"elR":[-74.5,28.1],"haR":[-81.9,98.1],"shL":[61.7,-84.6],"elL":[73.6,8.3],"haL":[83.7,79.1],"hipR":[-24.3,43.8],"knR":[-24.5,157.6],"ftR":[-44.5,256.3],"hipL":[36.7,33.3],"knL":[34.2,158],"ftL":[36.8,264.3]},{"rootY":70.5,"hips":[0,0],"chest":[-4.7,-59.7],"neck":[-4.7,-59.7],"head":[-3,-126.1],"shR":[-63.4,-80.4],"elR":[-72.6,31.8],"haR":[-78,99.6],"shL":[61.6,-88],"elL":[73.1,11.2],"haL":[79.4,78.6],"hipR":[-25.2,43.3],"knR":[-25,157.4],"ftR":[-44.3,249.6],"hipL":[35.9,34.1],"knL":[34.1,159.6],"ftL":[37.5,259.8]},{"rootY":71,"hips":[0,0],"chest":[-4.5,-62.8],"neck":[-4.5,-62.8],"head":[-3,-130.4],"shR":[-63.2,-83.8],"elR":[-73.5,32.8],"haR":[-76.2,91.3],"shL":[61.7,-91.9],"elL":[77.2,11.2],"haL":[77.9,63.6],"hipR":[-25.8,42.9],"knR":[-24.3,161],"ftR":[-45.8,247.2],"hipL":[35.5,34.7],"knL":[33.1,163.5],"ftL":[37.5,257.4]},{"rootY":68.3,"hips":[0,0],"chest":[-3.3,-65.2],"neck":[-3.3,-65.2],"head":[-1.7,-133.5],"shR":[-62.1,-87.1],"elR":[-77.4,30.1],"haR":[-77.8,70.4],"shL":[62.9,-94.4],"elL":[86.9,6.5],"haL":[82,33.9],"hipR":[-26.4,42.5],"knR":[-21.8,165.4],"ftR":[-45.4,249.3],"hipL":[35,35.2],"knL":[35.1,167.4],"ftL":[37.9,259.8]},{"rootY":60,"hips":[0,0],"chest":[-2.7,-68],"neck":[-2.7,-68],"head":[-1,-136.5],"shR":[-61.5,-91.2],"elR":[-84.2,19.7],"haR":[-82.2,35],"shL":[63.8,-96.5],"elL":[98.9,-6.3],"haL":[88.8,-7.4],"hipR":[-27.2,41.9],"knR":[-22.1,172.3],"ftR":[-45.1,256.7],"hipL":[34.3,35.7],"knL":[38.2,174.4],"ftL":[37.5,266.8]},{"rootY":46.6,"hips":[0,0],"chest":[-2.8,-71.3],"neck":[-2.8,-71.3],"head":[-0.8,-139.7],"shR":[-61.5,-95.5],"elR":[-93.8,2.7],"haR":[-89,-5.9],"shL":[63.9,-99.5],"elL":[108.5,-25],"haL":[96.2,-48.8],"hipR":[-27.6,41.6],"knR":[-25.5,179.3],"ftR":[-45.8,267.9],"hipL":[33.9,35.8],"knL":[40.8,180.3],"ftL":[38.1,276.2]},{"rootY":27.3,"hips":[0,0],"chest":[-3.3,-74.6],"neck":[-3.3,-74.6],"head":[-1.2,-142.4],"shR":[-62.1,-98.9],"elR":[-104.3,-16.6],"haR":[-96.9,-40.3],"shL":[63.2,-103.1],"elL":[115.2,-43.3],"haL":[102.9,-80.8],"hipR":[-27.7,41.5],"knR":[-28.2,184.4],"ftR":[-48.3,280.8],"hipL":[33.8,35.6],"knL":[41.3,183],"ftL":[41.1,286]},{"rootY":2.7,"hips":[0,0],"chest":[-4.3,-77.3],"neck":[-4.3,-77.3],"head":[-2.7,-144.3],"shR":[-63.1,-100.8],"elR":[-113.3,-31.6],"haR":[-105.5,-62.2],"shL":[62.2,-105.8],"elL":[117,-54.7],"haL":[107,-98.7],"hipR":[-28.8,40.7],"knR":[-28.5,184.4],"ftR":[-53.6,294],"hipL":[32.9,36.5],"knL":[39.9,183],"ftL":[46.2,297.1]},{"rootY":-21.4,"hips":[0,0],"chest":[-5.5,-77.7],"neck":[-5.5,-77.7],"head":[-4.3,-144.1],"shR":[-64,-101.6],"elR":[-119,-38.8],"haR":[-113.4,-71.8],"shL":[61.3,-104.4],"elL":[115.9,-54.5],"haL":[110.2,-101],"hipR":[-30,39.8],"knR":[-29.3,182.1],"ftR":[-59,302.7],"hipL":[31.8,37.6],"knL":[38.2,182.3],"ftL":[52,305.8]},{"rootY":-40.6,"hips":[0,0],"chest":[-5.9,-77.5],"neck":[-5.9,-77.5],"head":[-4.8,-143.5],"shR":[-64.4,-101.3],"elR":[-121.8,-38.1],"haR":[-120.4,-69],"shL":[61,-103.6],"elL":[114.4,-47.3],"haL":[114.7,-92.3],"hipR":[-30.2,39.6],"knR":[-26.9,182.5],"ftR":[-57.5,302.2],"hipL":[31.6,37.7],"knL":[37.8,183.4],"ftL":[51.1,306.1]},{"rootY":-56.4,"hips":[0,0],"chest":[-5,-77.7],"neck":[-5,-77.7],"head":[-3.9,-143.7],"shR":[-63.5,-101.7],"elR":[-121.6,-32.5],"haR":[-125.1,-57.6],"shL":[61.9,-103.7],"elL":[112,-37.2],"haL":[120.5,-76.3],"hipR":[-29.4,39.8],"knR":[-23.9,183.6],"ftR":[-51.3,299.2],"hipL":[32.4,36.5],"knL":[38.7,183.5],"ftL":[48.4,305.4]},{"rootY":-69.3,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4,-144.2],"shR":[-63.2,-102.1],"elR":[-120.9,-26],"haR":[-129.8,-42.3],"shL":[62.2,-104],"elL":[108.2,-27.4],"haL":[124.9,-55.2],"hipR":[-29,39.5],"knR":[-24,183.2],"ftR":[-47.8,301.2],"hipL":[32.7,35.6],"knL":[40,183],"ftL":[47.3,308.9]},{"rootY":-78.8,"hips":[0,0],"chest":[-4.7,-77.8],"neck":[-4.7,-77.8],"head":[-3.9,-144.7],"shR":[-63.1,-102.3],"elR":[-119.7,-19.3],"haR":[-133.2,-24.7],"shL":[62.2,-104.2],"elL":[103.5,-20.2],"haL":[127.2,-33.1],"hipR":[-28.4,39.6],"knR":[-24.4,182.8],"ftR":[-46.1,309],"hipL":[33.2,34.8],"knL":[41.1,182.1],"ftL":[47.2,315.3]},{"rootY":-84.2,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4.1,-145.1],"shR":[-63.2,-102.3],"elR":[-117.9,-13],"haR":[-135.1,-6.7],"shL":[62.2,-104.5],"elL":[99.7,-14.7],"haL":[126.8,-10.6],"hipR":[-29.3,39.2],"knR":[-24.7,181.2],"ftR":[-43.8,318],"hipL":[32.4,35.6],"knL":[40.7,182.2],"ftL":[47.6,323.4]},{"rootY":-85.7,"hips":[0,0],"chest":[-4.8,-77.7],"neck":[-4.8,-77.7],"head":[-4.3,-145.4],"shR":[-63.3,-102.2],"elR":[-116.2,-7.1],"haR":[-135.6,10.8],"shL":[62,-104.8],"elL":[97.1,-10.9],"haL":[124.4,10],"hipR":[-29.4,39.1],"knR":[-24.7,180.1],"ftR":[-42,325.8],"hipL":[32.4,35.7],"knL":[39.8,181],"ftL":[48.3,328.8]},{"rootY":-83.7,"hips":[0,0],"chest":[-4.9,-77.6],"neck":[-4.9,-77.6],"head":[-4.5,-145.6],"shR":[-63.4,-102.2],"elR":[-114.3,-2],"haR":[-134.8,26.9],"shL":[62,-104.9],"elL":[94.9,-8],"haL":[120.5,28.4],"hipR":[-29.6,38.8],"knR":[-25.3,179],"ftR":[-41.5,331.5],"hipL":[32.2,35.8],"knL":[39.1,179.5],"ftL":[50.1,332.4]},{"rootY":-77.8,"hips":[0,0],"chest":[-4.6,-77.5],"neck":[-4.6,-77.5],"head":[-4.2,-145.7],"shR":[-63.1,-102.2],"elR":[-111.7,2],"haR":[-132.9,40.8],"shL":[62.3,-104.9],"elL":[92.6,-5.7],"haL":[116.8,42.9],"hipR":[-29.8,38.5],"knR":[-26.2,177.8],"ftR":[-41,334.5],"hipL":[32,36],"knL":[38.8,177.7],"ftL":[52.5,333.6]},{"rootY":-67.9,"hips":[0,0],"chest":[-4.2,-77.4],"neck":[-4.2,-77.4],"head":[-3.9,-145.8],"shR":[-62.6,-102.4],"elR":[-108.7,5],"haR":[-129.8,51.9],"shL":[62.8,-104.6],"elL":[89.9,-3.6],"haL":[111.9,53.8],"hipR":[-29.5,38.6],"knR":[-27.1,176.8],"ftR":[-40.5,335.3],"hipL":[32.2,35.7],"knL":[39,175.3],"ftL":[53.8,332.2]},{"rootY":-53.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-3.3,-145.9],"shR":[-62.2,-102.7],"elR":[-105.4,7.1],"haR":[-125.9,60.5],"shL":[63.2,-104.3],"elL":[87.3,-2.3],"haL":[106.9,60.7],"hipR":[-29,39],"knR":[-28,175.6],"ftR":[-41.1,334.1],"hipL":[32.7,35],"knL":[39.9,173],"ftL":[55.1,329.3]},{"rootY":-35,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-3.8,-146.1],"shR":[-62.5,-102.9],"elR":[-102.1,8.7],"haR":[-121.5,66.8],"shL":[62.9,-104.2],"elL":[83.7,-2.1],"haL":[101.4,64],"hipR":[-28.9,39],"knR":[-29,173.6],"ftR":[-42.8,331.5],"hipL":[32.8,34.5],"knL":[40.6,170.8],"ftL":[55.4,326.5]},{"rootY":-11.7,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.7,-146.3],"shR":[-63.2,-102.9],"elR":[-99.1,10],"haR":[-117.3,71.3],"shL":[62.2,-104.3],"elL":[79.7,-2.8],"haL":[96.3,64.9],"hipR":[-29.6,38.2],"knR":[-29.3,169.3],"ftR":[-43.6,327.6],"hipL":[32.1,34.2],"knL":[39.8,167.6],"ftL":[53.8,324.2]},{"rootY":17.4,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.5,-146.3],"shR":[-63.1,-102.9],"elR":[-94.9,11.1],"haR":[-112.4,74.2],"shL":[62.3,-104.1],"elL":[76.6,-3.4],"haL":[92.3,65.2],"hipR":[-29.7,37.5],"knR":[-27.8,159.9],"ftR":[-40.4,317.2],"hipL":[31.9,33.1],"knL":[40.3,159.5],"ftL":[49.4,315.4]},{"rootY":42.4,"hips":[0,0],"chest":[-3.7,-77.6],"neck":[-3.7,-77.6],"head":[-1.6,-146.3],"shR":[-61.6,-103.1],"elR":[-87.3,12.3],"haR":[-103.8,77.1],"shL":[63.8,-103.9],"elL":[74.2,-3.6],"haL":[88.9,65.7],"hipR":[-27.1,37.6],"knR":[-23.8,144.3],"ftR":[-37.1,294],"hipL":[34.1,28.9],"knL":[41.2,143.7],"ftL":[48,293.3]},{"rootY":59.8,"hips":[0,0],"chest":[-3.3,-77.4],"neck":[-3.3,-77.4],"head":[-0.5,-146.2],"shR":[-61.5,-102.7],"elR":[-80.1,14.1],"haR":[-95.7,80.8],"shL":[63.9,-104.3],"elL":[71.9,-2.1],"haL":[85.8,68.1],"hipR":[-26.3,36.6],"knR":[-24.3,133.2],"ftR":[-32.6,275],"hipL":[34.6,26.3],"knL":[43.3,132.1],"ftL":[48.6,274.1]},{"rootY":69.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-1.2,-146.1],"shR":[-62,-102.8],"elR":[-73.5,15],"haR":[-87.6,83.2],"shL":[63.4,-103.9],"elL":[68.6,-0.6],"haL":[82.6,69.5],"hipR":[-27.6,36.2],"knR":[-27.3,131.8],"ftR":[-30.8,268.3],"hipL":[33.6,27.4],"knL":[46.3,132.2],"ftL":[46.6,269.6]},{"rootY":77.4,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-1.1,-146.1],"shR":[-62.2,-103.1],"elR":[-69.2,15.1],"haR":[-80,84],"shL":[63.2,-103.6],"elL":[67.8,-0.3],"haL":[81.3,69.8],"hipR":[-27.8,36.4],"knR":[-29.1,128.9],"ftR":[-30.5,260.8],"hipL":[33.3,27.9],"knL":[47.6,129.6],"ftL":[47.4,262.3]},{"rootY":80.1,"hips":[0,0],"chest":[-3.4,-77.4],"neck":[-3.4,-77.4],"head":[0,-146.2],"shR":[-61.3,-103.2],"elR":[-66.1,14.7],"haR":[-74.1,83.6],"shL":[64,-103.7],"elL":[68.9,-0.5],"haL":[82.4,69.4],"hipR":[-27.7,36.3],"knR":[-29.3,129],"ftR":[-28.5,257.7],"hipL":[33.4,27.7],"knL":[47,129.4],"ftL":[48.4,259.4]},{"rootY":79.4,"hips":[0,0],"chest":[-3,-77.4],"neck":[-3,-77.4],"head":[1.1,-146.1],"shR":[-60.7,-103.7],"elR":[-64.5,14.1],"haR":[-70.5,83.1],"shL":[64.6,-103.4],"elL":[70.7,-0.1],"haL":[84,69.3],"hipR":[-28.1,36.4],"knR":[-29,131],"ftR":[-27.2,258.4],"hipL":[33.1,28.3],"knL":[45.1,131.7],"ftL":[49.1,260]},{"rootY":76.9,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2,-146.1],"shR":[-60.1,-104],"elR":[-62.8,13.7],"haR":[-68.2,82.9],"shL":[65.2,-103.1],"elL":[72.1,0.5],"haL":[85.8,69.5],"hipR":[-28.2,36.7],"knR":[-28.2,133.4],"ftR":[-26.1,261.1],"hipL":[33,28.6],"knL":[42.3,134.5],"ftL":[49.6,262.3]},{"rootY":72.4,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[2.2,-146.2],"shR":[-59.8,-104.2],"elR":[-62.2,13.6],"haR":[-68.1,83],"shL":[65.5,-102.9],"elL":[73.5,0.9],"haL":[87.5,69.5],"hipR":[-28.6,37],"knR":[-27.8,136.9],"ftR":[-25.3,265.5],"hipL":[32.5,29.4],"knL":[39.6,138.7],"ftL":[50.3,266.6]},{"rootY":66.8,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2.4,-146.2],"shR":[-59.8,-104.4],"elR":[-63.6,13.5],"haR":[-69.8,82.8],"shL":[65.4,-102.7],"elL":[74.7,1.3],"haL":[88.8,69.5],"hipR":[-29,37.4],"knR":[-27.8,141.3],"ftR":[-24.8,271.3],"hipL":[32.1,30.2],"knL":[37.3,143.4],"ftL":[50.8,272]},{"rootY":60.4,"hips":[0,0],"chest":[-2.8,-77.5],"neck":[-2.8,-77.5],"head":[2.3,-146.2],"shR":[-59.9,-104.7],"elR":[-65.2,13.3],"haR":[-72,82.4],"shL":[65.1,-102.5],"elL":[75.7,1.5],"haL":[90,69.5],"hipR":[-29.1,37.7],"knR":[-28.1,146],"ftR":[-24.6,277.7],"hipL":[31.9,30.6],"knL":[35.7,148.3],"ftL":[51.4,278.2]},{"rootY":53.8,"hips":[0,0],"chest":[-3,-77.5],"neck":[-3,-77.5],"head":[2.3,-146.2],"shR":[-60,-104.7],"elR":[-66.8,13.3],"haR":[-74.5,82],"shL":[64.9,-102.5],"elL":[75.9,1.5],"haL":[90.1,69.2],"hipR":[-29.5,37.8],"knR":[-28.4,150.6],"ftR":[-24.7,284.4],"hipL":[31.5,31.2],"knL":[34.4,153.2],"ftL":[51.8,284.7]},{"rootY":47.3,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.2,13.3],"haR":[-76.9,81.5],"shL":[64.7,-102.5],"elL":[76,1.5],"haL":[89.9,69.1],"hipR":[-29.5,38.1],"knR":[-28.4,155],"ftR":[-24.5,290.8],"hipL":[31.5,31.6],"knL":[33.6,157.6],"ftL":[52,290.9]},{"rootY":40.7,"hips":[0,0],"chest":[-3.3,-77.6],"neck":[-3.3,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.9,13.3],"haR":[-79.3,80.9],"shL":[64.5,-102.5],"elL":[75.4,1.6],"haL":[88.9,69.1],"hipR":[-29.8,38.2],"knR":[-27.8,159.4],"ftR":[-24.5,297.2],"hipL":[31.1,32.2],"knL":[32.5,162],"ftL":[52.1,297.2]},{"rootY":34.8,"hips":[0,0],"chest":[-3.4,-77.6],"neck":[-3.4,-77.6],"head":[2.7,-146.2],"shR":[-59.8,-104.6],"elR":[-70.1,13.3],"haR":[-81.8,80.3],"shL":[64.3,-102.6],"elL":[74.5,1.6],"haL":[87.4,69.1],"hipR":[-30.2,38.3],"knR":[-26.7,163.1],"ftR":[-24.5,303.1],"hipL":[30.7,32.8],"knL":[31.8,166],"ftL":[52.4,302.9]},{"rootY":29.4,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[2.7,-146.2],"shR":[-59.7,-104.5],"elR":[-71,13.4],"haR":[-84,79.9],"shL":[64.1,-102.8],"elL":[73.5,1.5],"haL":[85.6,69.2],"hipR":[-30.3,38.5],"knR":[-25.8,166.5],"ftR":[-24.6,308.2],"hipL":[30.6,33.4],"knL":[31.3,169.5],"ftL":[52.4,308.1]},{"rootY":24.5,"hips":[0,0],"chest":[-3.5,-77.7],"neck":[-3.5,-77.7],"head":[2.9,-146.2],"shR":[-59.6,-104.4],"elR":[-72,13.4],"haR":[-85.9,79.5],"shL":[64,-102.9],"elL":[72.6,1.4],"haL":[83.9,69.3],"hipR":[-30.4,38.7],"knR":[-25.2,169.6],"ftR":[-24.7,312.8],"hipL":[30.4,33.7],"knL":[31.5,172.6],"ftL":[52.8,312.9]},{"rootY":20,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[3.1,-146.3],"shR":[-59.4,-104.3],"elR":[-72.8,13.4],"haR":[-87.7,79.1],"shL":[63.9,-103],"elL":[71.7,1.4],"haL":[82.3,69.5],"hipR":[-30.4,38.8],"knR":[-24.9,172.4],"ftR":[-24.9,317.2],"hipL":[30.3,34],"knL":[32.1,175.2],"ftL":[53.1,317.1]},{"rootY":16.2,"hips":[0,0],"chest":[-3.6,-77.7],"neck":[-3.6,-77.7],"head":[3.2,-146.2],"shR":[-59.3,-104.3],"elR":[-73.6,13.3],"haR":[-89.2,78.7],"shL":[63.8,-102.9],"elL":[70.7,1.6],"haL":[80.8,69.9],"hipR":[-30.5,38.9],"knR":[-24.9,174.6],"ftR":[-24.9,320.9],"hipL":[30.1,34.4],"knL":[32.9,177.4],"ftL":[53.1,320.8]},{"rootY":13.1,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.5,-146.2],"shR":[-59.3,-104.2],"elR":[-74,13.3],"haR":[-90.2,78.6],"shL":[63.7,-103],"elL":[70,1.5],"haL":[79.7,69.8],"hipR":[-30.3,39.2],"knR":[-24.9,176.6],"ftR":[-25.2,323.8],"hipL":[30.3,34.5],"knL":[33.7,179],"ftL":[53.1,324.1]},{"rootY":10.5,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.6,-146.2],"shR":[-59.2,-104.2],"elR":[-74.5,13.3],"haR":[-91.2,78.4],"shL":[63.6,-103],"elL":[69.5,1.6],"haL":[78.9,70],"hipR":[-30.2,39.4],"knR":[-24.6,178.2],"ftR":[-25.5,326.2],"hipL":[30.4,34.7],"knL":[34.1,180.2],"ftL":[53,326.5]},{"rootY":8.6,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.7,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-91.7,78.4],"shL":[63.6,-103],"elL":[69.2,1.5],"haL":[78.3,70],"hipR":[-30.4,39.3],"knR":[-24.2,179.2],"ftR":[-25.6,328],"hipL":[30.3,35.1],"knL":[34.1,181.3],"ftL":[52.8,328.3]},{"rootY":7,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.9,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-92.1,78.5],"shL":[63.7,-103.1],"elL":[69.1,1.5],"haL":[78,70],"hipR":[-30.6,39.2],"knR":[-23.8,179.9],"ftR":[-25.5,329.2],"hipL":[30.1,35.5],"knL":[34.2,182.2],"ftL":[52.6,330]},{"rootY":5.7,"hips":[0,0],"chest":[-3.3,-77.8],"neck":[-3.3,-77.8],"head":[4.2,-146.2],"shR":[-58.9,-104.2],"elR":[-74.2,13.3],"haR":[-91.7,78.6],"shL":[64,-103],"elL":[69.2,1.5],"haL":[78.1,70.1],"hipR":[-30.7,39.2],"knR":[-23.3,180.5],"ftR":[-25.3,330.3],"hipL":[30.2,35.7],"knL":[34.3,182.8],"ftL":[52.5,331.2]},{"rootY":4.9,"hips":[0,0],"chest":[-3.1,-77.8],"neck":[-3.1,-77.8],"head":[4.5,-146.2],"shR":[-58.7,-104.3],"elR":[-73.8,13.2],"haR":[-91.2,78.7],"shL":[64.3,-102.9],"elL":[69.6,1.7],"haL":[78.7,70.3],"hipR":[-30.6,39.3],"knR":[-23,181],"ftR":[-25.1,331],"hipL":[30.3,35.7],"knL":[34.5,183],"ftL":[52.3,332]},{"rootY":4.2,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[4.9,-146.2],"shR":[-58.6,-104.3],"elR":[-73.5,13.2],"haR":[-90.6,79.1],"shL":[64.5,-102.9],"elL":[69.8,1.6],"haL":[79.1,70.1],"hipR":[-30.5,39.3],"knR":[-23,181.4],"ftR":[-25.1,331.4],"hipL":[30.4,35.8],"knL":[34.7,183.3],"ftL":[52.1,332.6]},{"rootY":3.9,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[5,-146.2],"shR":[-58.5,-104.5],"elR":[-72.9,13],"haR":[-89.7,79.1],"shL":[64.6,-102.7],"elL":[70.4,1.8],"haL":[79.9,70.3],"hipR":[-30.7,39.2],"knR":[-23.2,181.5],"ftR":[-25.4,331.6],"hipL":[30.2,36],"knL":[34.6,183.6],"ftL":[52,333]},{"rootY":3.8,"hips":[0,0],"chest":[-2.8,-77.8],"neck":[-2.8,-77.8],"head":[5.4,-146.2],"shR":[-58.3,-104.7],"elR":[-72.4,12.8],"haR":[-88.6,79.1],"shL":[64.9,-102.5],"elL":[70.9,2],"haL":[80.8,70.5],"hipR":[-30.8,39.1],"knR":[-23.1,181.6],"ftR":[-25.4,331.6],"hipL":[30.2,36.2],"knL":[34.7,183.7],"ftL":[52.2,333.4]},{"rootY":3.8,"hips":[0,0],"chest":[-2.5,-77.9],"neck":[-2.5,-77.9],"head":[5.9,-146.1],"shR":[-58,-104.7],"elR":[-71.6,12.8],"haR":[-87.7,79.1],"shL":[65.2,-102.4],"elL":[71.3,2],"haL":[81.6,70.5],"hipR":[-30.6,39.2],"knR":[-22.8,181.8],"ftR":[-25.4,331.6],"hipL":[30.4,36.1],"knL":[35,183.6],"ftL":[52.4,333.4]},{"rootY":3.7,"hips":[0,0],"chest":[-2.3,-77.9],"neck":[-2.3,-77.9],"head":[6.3,-146.1],"shR":[-57.7,-104.9],"elR":[-70.7,12.6],"haR":[-86.1,79.3],"shL":[65.5,-102.2],"elL":[71.9,2.1],"haL":[82.4,70.8],"hipR":[-30.6,39.2],"knR":[-22.6,181.9],"ftR":[-25.4,331.7],"hipL":[30.4,36],"knL":[35.3,183.6],"ftL":[52.3,333.5]},{"rootY":3.4,"hips":[0,0],"chest":[-2.2,-77.9],"neck":[-2.2,-77.9],"head":[6.5,-146.1],"shR":[-57.6,-105],"elR":[-70.2,12.5],"haR":[-85.6,79.2],"shL":[65.5,-102.1],"elL":[72,2.2],"haL":[82.8,70.9],"hipR":[-30.8,39.1],"knR":[-22.8,181.9],"ftR":[-25.7,331.9],"hipL":[30.3,36.2],"knL":[35,183.8],"ftL":[51.9,333.6]}]},"kick":{"name":"kick","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-87.6],"neck":[0.6,-87.6],"head":[0.4,-152.5],"shR":[-58.7,-112.6],"elR":[-171.2,-96.8],"haR":[-238.3,-87.4],"shL":[65.5,-107.1],"elL":[168.9,-92.6],"haL":[234.9,-83.3],"hipR":[-23.1,36.4],"knR":[-20.5,186.4],"ftR":[-17.8,340.7],"hipL":[27.2,36.4],"knL":[24.7,179.8],"ftL":[21.8,343.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.3,-152.4],"shR":[-32.2,-108.8],"elR":[-33.7,4.3],"haR":[-63.2,64.9],"shL":[62.6,-110.4],"elL":[70.1,-6.5],"haL":[57,52.4],"hipR":[-31,34.6],"knR":[-64.3,179.9],"ftR":[-51.8,320.6],"hipL":[8.7,38.3],"knL":[-5,180.7],"ftL":[38.3,325.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.5,-152.4],"shR":[-32.3,-108.7],"elR":[-34.3,4.5],"haR":[-64.3,64.9],"shL":[62.7,-110.4],"elL":[70,-6.6],"haL":[56.9,52.5],"hipR":[-30.9,34.6],"knR":[-64.5,180],"ftR":[-52.1,320.6],"hipL":[8.7,38.3],"knL":[-5.2,180.6],"ftL":[38,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14,-152.3],"shR":[-32.2,-108.8],"elR":[-34.8,4.4],"haR":[-65,64.8],"shL":[62.9,-110.4],"elL":[69.8,-6.5],"haL":[56.9,52.7],"hipR":[-30.9,34.7],"knR":[-64.5,180],"ftR":[-52.2,320.5],"hipL":[8.9,38.2],"knL":[-5,180.6],"ftL":[37.9,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14.2,-152.3],"shR":[-32.6,-108.6],"elR":[-35.2,4.6],"haR":[-65.6,64.7],"shL":[63.1,-110.5],"elL":[69.8,-6.6],"haL":[57,52.7],"hipR":[-30.8,34.8],"knR":[-64.6,180],"ftR":[-52.4,320.5],"hipL":[9,38.2],"knL":[-5,180.5],"ftL":[37.8,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.7,-108.6],"elR":[-35.2,4.5],"haR":[-65.6,64.6],"shL":[63.3,-110.5],"elL":[69.9,-6.5],"haL":[57.3,53],"hipR":[-30.7,34.8],"knR":[-64.4,180.1],"ftR":[-52.4,320.4],"hipL":[9.3,38.1],"knL":[-4.8,180.5],"ftL":[37.7,325]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.8,-108.7],"elR":[-35.1,4.5],"haR":[-65.5,64.4],"shL":[63.5,-110.4],"elL":[69.6,-6.4],"haL":[57.3,53.2],"hipR":[-30.8,34.8],"knR":[-64.1,180.2],"ftR":[-52.4,320.5],"hipL":[9.5,38.2],"knL":[-4.5,180.5],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[14.9,-152.2],"shR":[-33.6,-109.3],"elR":[-35.7,3.8],"haR":[-65.9,63.8],"shL":[64.3,-109.9],"elL":[70.1,-5.9],"haL":[58,53.8],"hipR":[-30.7,34.9],"knR":[-63.9,180.3],"ftR":[-52.4,320.4],"hipL":[9.7,38.1],"knL":[-4.3,180.4],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[15.1,-152.2],"shR":[-34.1,-109.7],"elR":[-36.1,3.5],"haR":[-65.9,63.6],"shL":[64.5,-109.5],"elL":[70.1,-5.5],"haL":[58.5,54.3],"hipR":[-30.9,34.7],"knR":[-63.8,180.2],"ftR":[-52.5,320.3],"hipL":[9.7,38.1],"knL":[-4.2,180.4],"ftL":[37.3,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.4,-152.2],"shR":[-34.3,-109.6],"elR":[-35.9,3.7],"haR":[-65.3,63.8],"shL":[64.9,-109.6],"elL":[70.6,-5.6],"haL":[59.1,54.4],"hipR":[-31,34.7],"knR":[-63.8,180.2],"ftR":[-52.4,320.4],"hipL":[9.7,38.2],"knL":[-4.2,180.4],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.8,-152.1],"shR":[-34.6,-109.6],"elR":[-35.9,3.7],"haR":[-65,64],"shL":[65.2,-109.6],"elL":[70.8,-5.5],"haL":[59.4,54.5],"hipR":[-31.1,34.5],"knR":[-63.9,180.1],"ftR":[-52.4,320.3],"hipL":[9.6,38.2],"knL":[-4.3,180.5],"ftL":[37.4,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16,-152.1],"shR":[-34.6,-109.5],"elR":[-35.5,3.8],"haR":[-64.3,64.1],"shL":[65.4,-109.6],"elL":[71.1,-5.5],"haL":[60.4,55.2],"hipR":[-31.2,34.4],"knR":[-63.8,180.1],"ftR":[-52.3,320.3],"hipL":[9.5,38.3],"knL":[-4.3,180.6],"ftL":[37.3,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16.1,-152.1],"shR":[-35.1,-109.3],"elR":[-35.7,4.1],"haR":[-64.1,64.5],"shL":[65.8,-109.7],"elL":[71.4,-5.6],"haL":[60.6,54.8],"hipR":[-31.3,34.4],"knR":[-63.7,180],"ftR":[-52.3,320.3],"hipL":[9.6,38.4],"knL":[-4.3,180.6],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[16.3,-152.1],"shR":[-34.8,-109.6],"elR":[-35.3,3.8],"haR":[-63.5,64.2],"shL":[65.8,-109.5],"elL":[71.4,-5.3],"haL":[60.8,55.2],"hipR":[-31.3,34.4],"knR":[-63.6,180.1],"ftR":[-52.2,320.2],"hipL":[9.7,38.3],"knL":[-4,180.6],"ftL":[37.4,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.4],"neck":[7.8,-87.4],"head":[17,-152],"shR":[-34.8,-109.7],"elR":[-35.1,3.8],"haR":[-63.2,64],"shL":[66.2,-109.4],"elL":[71.7,-5.2],"haL":[61.1,55.3],"hipR":[-31.1,34.6],"knR":[-63.5,180.2],"ftR":[-52.1,320.3],"hipL":[10,38.2],"knL":[-3.7,180.5],"ftL":[37.5,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.2,-152],"shR":[-34.9,-109.6],"elR":[-35,3.9],"haR":[-62.9,64],"shL":[66.4,-109.4],"elL":[71.7,-5.2],"haL":[61.3,55.5],"hipR":[-31,34.7],"knR":[-63.3,180.3],"ftR":[-51.9,320.3],"hipL":[10.3,38.1],"knL":[-3.2,180.3],"ftL":[37.7,325]},{"rootY":0.4,"hips":[0,0],"chest":[8,-87.4],"neck":[8,-87.4],"head":[17.4,-152],"shR":[-35,-109.7],"elR":[-35.2,3.8],"haR":[-63,63.9],"shL":[66.6,-109.2],"elL":[71.5,-5],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.4,180.3],"ftR":[-51.9,320.2],"hipL":[10.4,38],"knL":[-2.9,180.3],"ftL":[37.8,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.4,-152],"shR":[-35.2,-109.9],"elR":[-35.5,3.6],"haR":[-63.3,63.7],"shL":[66.8,-109.1],"elL":[71.6,-4.8],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.3,180.3],"ftR":[-51.8,320.2],"hipL":[10.4,38.1],"knL":[-2.9,180.4],"ftL":[37.9,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.3,-152],"shR":[-35.8,-109.4],"elR":[-36.3,4.1],"haR":[-64,64.2],"shL":[67,-109.2],"elL":[71.6,-5],"haL":[62.7,56.6],"hipR":[-30.9,34.7],"knR":[-63.1,180.4],"ftR":[-51.8,320.3],"hipL":[10.8,38.1],"knL":[-2.6,180.4],"ftL":[38,325.1]},{"rootY":0.5,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.5,-151.9],"shR":[-36.3,-110.1],"elR":[-37,3.4],"haR":[-64.7,63.4],"shL":[67.3,-108.9],"elL":[71.6,-4.6],"haL":[62.7,57],"hipR":[-31,34.6],"knR":[-62.9,180.4],"ftR":[-51.7,320.1],"hipL":[11,38.1],"knL":[-1.9,180.4],"ftL":[38.1,325.1]},{"rootY":0.4,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.6,-151.9],"shR":[-36.4,-110.1],"elR":[-37.6,3.4],"haR":[-65.2,63.6],"shL":[67.4,-108.8],"elL":[71.4,-4.6],"haL":[62.4,56.7],"hipR":[-30.9,34.7],"knR":[-62.5,180.6],"ftR":[-51.5,320.1],"hipL":[11.5,38.1],"knL":[-1.4,180.3],"ftL":[38.2,325.2]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.8,-151.9],"shR":[-36.7,-110],"elR":[-38,3.4],"haR":[-65.6,63.6],"shL":[67.6,-108.9],"elL":[71.6,-4.6],"haL":[62.5,56.4],"hipR":[-30.8,34.8],"knR":[-62,180.8],"ftR":[-51.3,320.2],"hipL":[12,38.1],"knL":[-0.4,180.3],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-37.4,-110.2],"elR":[-39,3.2],"haR":[-66.4,63.6],"shL":[67.9,-108.7],"elL":[72,-4.4],"haL":[62.9,56.4],"hipR":[-30.9,34.7],"knR":[-61.8,180.8],"ftR":[-51.1,320],"hipL":[12.1,38.1],"knL":[0,180.4],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[17.4,-151.9],"shR":[-38,-110.3],"elR":[-39.8,3.1],"haR":[-66.8,63.6],"shL":[68.2,-108.7],"elL":[72.5,-4.4],"haL":[63.2,56.2],"hipR":[-31,34.5],"knR":[-61.2,180.7],"ftR":[-50.8,320.1],"hipL":[12.1,38.3],"knL":[0.3,180.5],"ftL":[38.6,325.6]},{"rootY":0.2,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-39,-110.8],"elR":[-41,2.6],"haR":[-67.9,63.3],"shL":[69,-108.4],"elL":[73.4,-4.1],"haL":[64,56.2],"hipR":[-30.9,34.7],"knR":[-60.7,180.9],"ftR":[-50.5,320.2],"hipL":[12.5,38.3],"knL":[0.7,180.5],"ftL":[38.8,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[17.7,-152],"shR":[-39.6,-110.7],"elR":[-41.6,2.6],"haR":[-68.3,63.4],"shL":[69.1,-108.4],"elL":[74,-4.2],"haL":[64.6,55.9],"hipR":[-30.9,34.6],"knR":[-60.1,181],"ftR":[-50.1,320.2],"hipL":[12.8,38.4],"knL":[1.4,180.5],"ftL":[39.2,325.7]},{"rootY":0,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[17.6,-152],"shR":[-40.5,-110.7],"elR":[-42.7,2.7],"haR":[-69.2,63.5],"shL":[69.3,-108.5],"elL":[74.7,-4.3],"haL":[65.4,55.6],"hipR":[-31,34.6],"knR":[-59.5,181.1],"ftR":[-49.7,320.2],"hipL":[13,38.5],"knL":[1.9,180.6],"ftL":[39.4,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[17.4,-152.1],"shR":[-41.3,-110.7],"elR":[-43.8,2.5],"haR":[-70.4,63.4],"shL":[69.5,-108.5],"elL":[75.4,-4.3],"haL":[66.7,55.3],"hipR":[-30.8,34.7],"knR":[-59.1,181.3],"ftR":[-49.3,320.3],"hipL":[13.5,38.3],"knL":[2.4,180.4],"ftL":[39.8,325.8]},{"rootY":0,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[17.1,-152.2],"shR":[-42,-110.6],"elR":[-44.3,2.6],"haR":[-71.3,63.2],"shL":[69.5,-108.7],"elL":[76.5,-4.6],"haL":[68.5,54.8],"hipR":[-30.5,34.9],"knR":[-58.7,181.5],"ftR":[-49,320.4],"hipL":[14,38.2],"knL":[3.3,180.3],"ftL":[40,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[16.8,-152.2],"shR":[-42.9,-110.4],"elR":[-45.2,2.7],"haR":[-73,62.9],"shL":[69.5,-108.9],"elL":[78.2,-4.9],"haL":[71,54.1],"hipR":[-30.5,34.9],"knR":[-58.2,181.6],"ftR":[-48.5,320.3],"hipL":[14.2,38.2],"knL":[3.8,180.3],"ftL":[40.3,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.5,-87.6],"neck":[6.5,-87.6],"head":[16.3,-152.3],"shR":[-43.7,-110.1],"elR":[-46.2,2.8],"haR":[-74.9,62.4],"shL":[69.3,-109.2],"elL":[79.9,-5.5],"haL":[74.1,53.2],"hipR":[-30.7,34.7],"knR":[-58.1,181.5],"ftR":[-48.2,320.2],"hipL":[14,38.3],"knL":[4,180.4],"ftL":[40.5,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[6.1,-87.6],"neck":[6.1,-87.6],"head":[15.6,-152.3],"shR":[-44.7,-110.3],"elR":[-47.3,2.5],"haR":[-77.2,61.5],"shL":[69.2,-109.2],"elL":[81.7,-5.7],"haL":[77.4,52.3],"hipR":[-30.7,34.7],"knR":[-57.8,181.5],"ftR":[-47.9,320.1],"hipL":[14.1,38.3],"knL":[4.1,180.4],"ftL":[40.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[15.2,-152.3],"shR":[-45.2,-110.4],"elR":[-48.8,2.4],"haR":[-79.7,60.9],"shL":[69.1,-109.2],"elL":[83.3,-6.1],"haL":[81.2,51.6],"hipR":[-30.7,34.7],"knR":[-57.3,181.5],"ftR":[-47.4,320.2],"hipL":[14.1,38.5],"knL":[4.3,180.4],"ftL":[41.1,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.8,-152.3],"shR":[-45.5,-110],"elR":[-50.4,2.7],"haR":[-82.1,60.8],"shL":[68.8,-109.6],"elL":[84.5,-6.8],"haL":[84.7,50.4],"hipR":[-30.6,34.8],"knR":[-57.3,181.6],"ftR":[-47.2,320.3],"hipL":[14.3,38.4],"knL":[4.7,180.4],"ftL":[41.1,325.8]},{"rootY":0,"hips":[0,0],"chest":[5.6,-87.6],"neck":[5.6,-87.6],"head":[14.3,-152.3],"shR":[-45.9,-109.9],"elR":[-52.1,2.7],"haR":[-84.3,60.7],"shL":[68.7,-109.8],"elL":[85.7,-7.4],"haL":[88.1,49.3],"hipR":[-30.6,34.7],"knR":[-57,181.6],"ftR":[-46.8,320.3],"hipL":[14.3,38.4],"knL":[4.9,180.3],"ftL":[41.2,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14,-152.3],"shR":[-46,-109.5],"elR":[-53.9,3.1],"haR":[-86.5,60.9],"shL":[68.3,-110.2],"elL":[85.8,-8.1],"haL":[90.4,48.3],"hipR":[-30.5,34.9],"knR":[-57.8,181.5],"ftR":[-47.1,320.3],"hipL":[14.2,38.3],"knL":[4.2,180.3],"ftL":[41,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.3,-87.6],"neck":[5.3,-87.6],"head":[13.5,-152.3],"shR":[-46.1,-109.3],"elR":[-54.7,3.3],"haR":[-87.7,61],"shL":[68.1,-110.4],"elL":[86.5,-8.5],"haL":[92.6,47.7],"hipR":[-30.5,34.9],"knR":[-58,181.5],"ftR":[-47,320.4],"hipL":[14,38.2],"knL":[3.6,180.2],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.9,-87.7],"neck":[4.9,-87.7],"head":[12.8,-152.4],"shR":[-46.3,-109.1],"elR":[-55.4,3.6],"haR":[-88.7,61.1],"shL":[67.6,-110.5],"elL":[86.3,-9],"haL":[93.7,47.1],"hipR":[-30.6,34.8],"knR":[-58.3,181.4],"ftR":[-47,320.5],"hipL":[13.7,38.3],"knL":[3.2,180.3],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.6,-87.7],"neck":[4.6,-87.7],"head":[12.2,-152.4],"shR":[-46.5,-108.7],"elR":[-55.2,4],"haR":[-89.2,61.2],"shL":[67.2,-110.8],"elL":[85.7,-9.5],"haL":[93.9,46.7],"hipR":[-30.5,34.9],"knR":[-59,181.4],"ftR":[-47.3,320.6],"hipL":[13.6,38.2],"knL":[2.8,180.3],"ftL":[40.8,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.5,-87.7],"neck":[4.5,-87.7],"head":[11.7,-152.4],"shR":[-46.1,-108.2],"elR":[-54.3,4.6],"haR":[-88.7,61.2],"shL":[66.6,-111.4],"elL":[85,-10.1],"haL":[93.4,46],"hipR":[-30.6,34.9],"knR":[-59.6,181.2],"ftR":[-47.8,320.7],"hipL":[13,38.3],"knL":[1.7,180.4],"ftL":[40.5,325.7]},{"rootY":-0.3,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[11.1,-152.5],"shR":[-45.7,-107.7],"elR":[-53.4,5.1],"haR":[-88.5,61.3],"shL":[66,-111.6],"elL":[84.4,-10.5],"haL":[92.3,45.7],"hipR":[-30.7,34.8],"knR":[-59.8,181.1],"ftR":[-47.8,320.8],"hipL":[12.7,38.4],"knL":[1.4,180.5],"ftL":[40.6,325.8]},{"rootY":-0.3,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.8,-152.6],"shR":[-45,-107.7],"elR":[-51.8,5.2],"haR":[-87.8,60.8],"shL":[65.3,-111.7],"elL":[83.4,-10.6],"haL":[90.4,45.6],"hipR":[-30.3,35.2],"knR":[-60.6,181.2],"ftR":[-48.4,321],"hipL":[12.8,38.2],"knL":[1.1,180.3],"ftL":[40.2,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.6,-152.6],"shR":[-44.1,-107.5],"elR":[-49.6,5.6],"haR":[-86.3,60.7],"shL":[64.7,-111.9],"elL":[82,-10.8],"haL":[87.9,45.2],"hipR":[-30.3,35.3],"knR":[-61.2,181.1],"ftR":[-48.9,321.3],"hipL":[12.5,38.3],"knL":[0.4,180.3],"ftL":[39.9,325.8]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.8],"neck":[3.9,-87.8],"head":[10.5,-152.7],"shR":[-42.9,-107.3],"elR":[-47.5,5.8],"haR":[-84.9,60.6],"shL":[63.9,-112],"elL":[80.4,-11],"haL":[84.8,44.7],"hipR":[-30.3,35.3],"knR":[-62.2,180.8],"ftR":[-49.5,321.4],"hipL":[11.7,38.4],"knL":[-1.1,180.5],"ftL":[39.8,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.4,-152.8],"shR":[-41.3,-107.3],"elR":[-45.1,5.9],"haR":[-83.1,60.5],"shL":[63.2,-112.1],"elL":[79.1,-11.2],"haL":[81.6,44.2],"hipR":[-30.1,35.4],"knR":[-63.2,180.7],"ftR":[-50.1,321.6],"hipL":[11.2,38.4],"knL":[-2.2,180.5],"ftL":[39.6,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.8],"shR":[-39.4,-107.7],"elR":[-42.5,5.5],"haR":[-80.9,60.1],"shL":[62.3,-111.8],"elL":[77,-11],"haL":[77.4,44],"hipR":[-29.9,35.5],"knR":[-64.3,180.5],"ftR":[-51,321.9],"hipL":[10.6,38.3],"knL":[-3.2,180.4],"ftL":[39.4,325.6]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.9],"shR":[-37.3,-107.4],"elR":[-40,5.8],"haR":[-78.6,60.6],"shL":[60.9,-112],"elL":[74.1,-11.2],"haL":[72.2,43.3],"hipR":[-29.8,35.6],"knR":[-65.4,180.2],"ftR":[-51.6,322],"hipL":[9.8,38.4],"knL":[-4.5,180.5],"ftL":[39.4,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.1,-152.9],"shR":[-34.9,-107],"elR":[-37.3,6.3],"haR":[-75.9,61.3],"shL":[59.2,-112.3],"elL":[70.5,-11.5],"haL":[66.3,42.5],"hipR":[-29.7,35.6],"knR":[-66.6,179.9],"ftR":[-52.5,321.9],"hipL":[8.9,38.4],"knL":[-5.9,180.5],"ftL":[39.2,325.7]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.7],"neck":[3.9,-87.7],"head":[9.9,-152.9],"shR":[-32.4,-106.6],"elR":[-34.5,6.7],"haR":[-73,62.2],"shL":[57.2,-112.6],"elL":[67.3,-11.6],"haL":[60.3,42.1],"hipR":[-29.4,35.7],"knR":[-67.7,179.7],"ftR":[-53.2,322],"hipL":[8.4,38.3],"knL":[-6.7,180.5],"ftL":[39.1,325.7]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-31,-107.2],"elR":[-32.8,6],"haR":[-70.8,62],"shL":[55.9,-112.2],"elL":[64.2,-11.2],"haL":[54.3,41.7],"hipR":[-29.2,35.8],"knR":[-68.6,179.4],"ftR":[-53.7,322],"hipL":[7.9,38.3],"knL":[-7.6,180.5],"ftL":[39,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-28.5,-107.2],"elR":[-29.8,6.1],"haR":[-67.1,62.7],"shL":[54.2,-112.2],"elL":[61,-11.2],"haL":[48,41.3],"hipR":[-29.2,35.8],"knR":[-68.4,179.4],"ftR":[-53.9,322],"hipL":[7.4,38.3],"knL":[-8.3,180.5],"ftL":[39.1,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.4,-152.8],"shR":[-26.1,-107],"elR":[-26.5,6.2],"haR":[-63,63.2],"shL":[52.8,-112.2],"elL":[58.3,-11.2],"haL":[42.3,40.8],"hipR":[-29.1,35.8],"knR":[-68.4,179.4],"ftR":[-53.8,322],"hipL":[7,38.2],"knL":[-8.5,180.5],"ftL":[39.1,325.3]},{"rootY":0,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.2,-152.9],"shR":[-24.2,-106.8],"elR":[-23.3,6.3],"haR":[-58.8,63.8],"shL":[51.3,-112.4],"elL":[55.2,-11.4],"haL":[36.3,39.5],"hipR":[-29.1,35.8],"knR":[-68.8,179.2],"ftR":[-54.1,321.7],"hipL":[6.7,38],"knL":[-9,180.3],"ftL":[39,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[10.3,-152.8],"shR":[-22.3,-106.6],"elR":[-19.6,6.3],"haR":[-54.2,64.2],"shL":[49.8,-112.7],"elL":[52.2,-11.6],"haL":[30.6,38.4],"hipR":[-29.2,35.7],"knR":[-68.9,179.1],"ftR":[-54.2,321.5],"hipL":[6.3,38],"knL":[-9.5,180.3],"ftL":[38.9,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[4,-87.6],"neck":[4,-87.6],"head":[9.8,-152.9],"shR":[-21.4,-106.5],"elR":[-17.3,6.2],"haR":[-51.3,64.2],"shL":[48.5,-112.9],"elL":[49.7,-11.8],"haL":[25.7,37.3],"hipR":[-29.9,35],"knR":[-68.9,178.6],"ftR":[-54.3,321],"hipL":[5.4,38.4],"knL":[-10.5,180.7],"ftL":[38.8,324.9]},{"rootY":0.5,"hips":[0,0],"chest":[4.8,-87.6],"neck":[4.8,-87.6],"head":[10,-152.8],"shR":[-19.1,-106.2],"elR":[-14.5,6.5],"haR":[-47.2,64.7],"shL":[48.2,-113],"elL":[48.6,-11.6],"haL":[22.9,36.9],"hipR":[-29.2,35.7],"knR":[-69.2,179],"ftR":[-54.2,321],"hipL":[6.1,37.7],"knL":[-9.3,180.1],"ftL":[38.9,324.6]},{"rootY":0.7,"hips":[0,0],"chest":[5,-87.6],"neck":[5,-87.6],"head":[10,-152.9],"shR":[-18.4,-106.5],"elR":[-13.7,6],"haR":[-45.5,64.4],"shL":[48.1,-112.7],"elL":[48,-12.2],"haL":[20.3,35.2],"hipR":[-29.3,35.6],"knR":[-69.1,179],"ftR":[-54.1,320.9],"hipL":[5.8,37.8],"knL":[-9.5,180.2],"ftL":[38.9,324.5]},{"rootY":0.6,"hips":[0,0],"chest":[5.3,-87.5],"neck":[5.3,-87.5],"head":[9.5,-152.9],"shR":[-17.9,-106.8],"elR":[-13.3,5.6],"haR":[-44.8,63.9],"shL":[48.2,-112.4],"elL":[47.6,-11.3],"haL":[19.5,35.8],"hipR":[-29.3,35.6],"knR":[-68.9,179],"ftR":[-53.9,320.9],"hipL":[5.7,37.8],"knL":[-9.5,180.3],"ftL":[39,324.5]},{"rootY":0.7,"hips":[0,0],"chest":[5.7,-87.5],"neck":[5.7,-87.5],"head":[9.7,-152.8],"shR":[-17.3,-106.9],"elR":[-13.4,5.5],"haR":[-44.9,63.5],"shL":[48.4,-112.3],"elL":[47.4,-11.6],"haL":[18.8,35],"hipR":[-29,35.9],"knR":[-69.2,179.2],"ftR":[-53.8,320.8],"hipL":[6.1,37.4],"knL":[-8.9,179.9],"ftL":[39,324.4]},{"rootY":0.7,"hips":[0,0],"chest":[6,-87.5],"neck":[6,-87.5],"head":[9.6,-152.8],"shR":[-17.1,-106.9],"elR":[-14.3,5.4],"haR":[-46.4,63],"shL":[48.9,-112.2],"elL":[48.4,-11.2],"haL":[20,35.4],"hipR":[-28.9,36],"knR":[-69.3,179.3],"ftR":[-53.7,320.7],"hipL":[6.4,37.3],"knL":[-8.3,179.8],"ftL":[39.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[6.2,-87.5],"neck":[6.2,-87.5],"head":[9.7,-152.7],"shR":[-17.5,-107.1],"elR":[-15.9,5.1],"haR":[-49.2,62.1],"shL":[49.4,-112.1],"elL":[49.8,-10.8],"haL":[22.3,35.9],"hipR":[-29.2,35.8],"knR":[-68.9,179.2],"ftR":[-53.2,320.6],"hipL":[6.1,37.5],"knL":[-8.4,180],"ftL":[39.6,324.3]},{"rootY":0.6,"hips":[0,0],"chest":[6.3,-87.5],"neck":[6.3,-87.5],"head":[10,-152.7],"shR":[-18.6,-107.3],"elR":[-18.3,4.8],"haR":[-53.1,61],"shL":[50.6,-111.8],"elL":[51.2,-10.8],"haL":[25.2,36.4],"hipR":[-29.6,35.5],"knR":[-68.3,179.2],"ftR":[-52.9,320.8],"hipL":[6.1,37.8],"knL":[-8.6,180.3],"ftL":[39.7,324.4]},{"rootY":0.5,"hips":[0,0],"chest":[6.3,-87.4],"neck":[6.3,-87.4],"head":[9.9,-152.7],"shR":[-20,-107.5],"elR":[-20.9,4.3],"haR":[-57.7,59.7],"shL":[51.8,-111.5],"elL":[53.4,-10.5],"haL":[29.1,37.2],"hipR":[-30,35.1],"knR":[-67.2,179.1],"ftR":[-52.4,320.7],"hipL":[6.2,38.3],"knL":[-8.6,180.7],"ftL":[39.8,324.7]},{"rootY":0.5,"hips":[0,0],"chest":[6.7,-87.4],"neck":[6.7,-87.4],"head":[10.4,-152.7],"shR":[-20.9,-107.8],"elR":[-24.8,4.2],"haR":[-62.9,58.8],"shL":[53.4,-111.2],"elL":[55.9,-10.1],"haL":[33.8,38.2],"hipR":[-30.2,35],"knR":[-67,179.2],"ftR":[-51.9,320.7],"hipL":[6.4,38.2],"knL":[-8,180.6],"ftL":[40.3,324.5]},{"rootY":0.4,"hips":[0,0],"chest":[7.2,-87.4],"neck":[7.2,-87.4],"head":[11.3,-152.6],"shR":[-22.8,-108.4],"elR":[-28.2,3.5],"haR":[-68.3,57.2],"shL":[55.9,-110.6],"elL":[59.3,-9.3],"haL":[39.8,39.6],"hipR":[-30,35.4],"knR":[-65.8,179.7],"ftR":[-51,320.7],"hipL":[7.9,38],"knL":[-5.5,180.4],"ftL":[40.5,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.4],"neck":[7.4,-87.4],"head":[11.6,-152.6],"shR":[-24.8,-108.7],"elR":[-32.4,3.1],"haR":[-74,56],"shL":[58,-110.2],"elL":[62.2,-8.5],"haL":[45.7,40.7],"hipR":[-30,35.4],"knR":[-65.1,180],"ftR":[-50.6,320.7],"hipL":[8.8,37.9],"knL":[-4.6,180.3],"ftL":[40.7,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.4],"neck":[7.7,-87.4],"head":[12.2,-152.5],"shR":[-26.7,-108.7],"elR":[-36.5,3],"haR":[-79.5,55.1],"shL":[60,-110.1],"elL":[65,-8.3],"haL":[51.6,41.8],"hipR":[-29.9,35.5],"knR":[-64.1,180.4],"ftR":[-50,320.7],"hipL":[9.7,37.9],"knL":[-3.4,180.3],"ftL":[41,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[8.2,-87.3],"neck":[8.2,-87.3],"head":[12.8,-152.5],"shR":[-27.9,-108.2],"elR":[-39.9,3.5],"haR":[-84.1,54.8],"shL":[62,-110.4],"elL":[67.7,-8.6],"haL":[57.4,42.1],"hipR":[-30.1,35.4],"knR":[-63,180.6],"ftR":[-49.3,320.6],"hipL":[10.3,38],"knL":[-2.3,180.4],"ftL":[41.3,325.1]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.6,-152.4],"shR":[-31.1,-109.3],"elR":[-45.4,2.3],"haR":[-90.3,53.1],"shL":[64.3,-109.6],"elL":[70.7,-7.5],"haL":[63.5,44],"hipR":[-30.1,35.4],"knR":[-62,180.8],"ftR":[-48.9,320.6],"hipL":[11.3,38.1],"knL":[-1.1,180.3],"ftL":[41.4,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.4,-152.5],"shR":[-33.2,-109],"elR":[-49.9,2.4],"haR":[-95.3,52.6],"shL":[65.6,-109.8],"elL":[73.3,-7.2],"haL":[69.2,45],"hipR":[-30.2,35.4],"knR":[-61.1,181],"ftR":[-48.5,320.5],"hipL":[12,38.1],"knL":[-0.2,180.3],"ftL":[41.3,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.3,-87.4],"neck":[8.3,-87.4],"head":[13.7,-152.4],"shR":[-35.4,-109.8],"elR":[-54,1.5],"haR":[-99.6,51.1],"shL":[67.4,-109.2],"elL":[76,-6.4],"haL":[74.9,46.4],"hipR":[-29.8,35.6],"knR":[-60.2,181.4],"ftR":[-48.1,320.6],"hipL":[13.2,37.9],"knL":[1.6,180],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[13.5,-152.4],"shR":[-38.2,-111.2],"elR":[-58.4,0.2],"haR":[-103.9,49.3],"shL":[68.3,-108.1],"elL":[78.4,-5.3],"haL":[80.3,47.8],"hipR":[-30.1,35.3],"knR":[-59.3,181.4],"ftR":[-47.7,320.5],"hipL":[13.6,38.1],"knL":[2.4,180.1],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[13.9,-152.5],"shR":[-40.7,-110.3],"elR":[-62.2,0.9],"haR":[-107.4,49.2],"shL":[69.3,-108.8],"elL":[80.6,-5.8],"haL":[85.1,47.4],"hipR":[-29.9,35.4],"knR":[-58.2,181.7],"ftR":[-47.3,320.4],"hipL":[14.7,38.1],"knL":[4.1,180],"ftL":[41.4,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.2,-152.5],"shR":[-43.3,-109.8],"elR":[-66.1,1.3],"haR":[-110.6,49.2],"shL":[70.1,-109.2],"elL":[82.2,-6.1],"haL":[89.5,47.4],"hipR":[-29.2,35.8],"knR":[-57.5,182.2],"ftR":[-47.3,320.6],"hipL":[16.4,37.7],"knL":[5.8,179.4],"ftL":[41.1,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7,-87.5],"neck":[7,-87.5],"head":[14.4,-152.5],"shR":[-45.3,-110.5],"elR":[-69.1,0.5],"haR":[-112.7,47.8],"shL":[70.8,-108.9],"elL":[83.6,-5.7],"haL":[93.7,48],"hipR":[-29.7,35.4],"knR":[-55.9,182.1],"ftR":[-46.4,320.3],"hipL":[16.4,38.1],"knL":[6.8,179.7],"ftL":[41.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[14.5,-152.5],"shR":[-47.2,-110.4],"elR":[-71.9,0.4],"haR":[-114.3,47.3],"shL":[71.2,-108.9],"elL":[84.6,-5.8],"haL":[97.4,48.1],"hipR":[-29.7,35.1],"knR":[-54.7,182.1],"ftR":[-46,320.4],"hipL":[17,38.3],"knL":[8,179.7],"ftL":[42.2,326.3]},{"rootY":-0.2,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.5],"shR":[-48.6,-110.6],"elR":[-74,0.1],"haR":[-115.3,46.7],"shL":[71.6,-108.9],"elL":[85.5,-5.7],"haL":[100.6,48.3],"hipR":[-29.6,35.1],"knR":[-53.1,182.4],"ftR":[-45.2,320.4],"hipL":[17.9,38.5],"knL":[9.9,179.7],"ftL":[42.5,326.5]},{"rootY":-0.4,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.6],"shR":[-50,-110.9],"elR":[-75.9,-0.3],"haR":[-115.5,45.9],"shL":[71.8,-108.7],"elL":[86.4,-5.6],"haL":[104,48.7],"hipR":[-29.1,35.2],"knR":[-51.7,182.7],"ftR":[-44.6,320.6],"hipL":[19,38.5],"knL":[11.7,179.6],"ftL":[42.8,326.8]},{"rootY":-0.7,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[14.5,-152.5],"shR":[-51,-110.4],"elR":[-77.3,0.1],"haR":[-115.6,46.1],"shL":[72,-109],"elL":[87,-5.9],"haL":[106.6,47.7],"hipR":[-28.7,35.3],"knR":[-50.2,183],"ftR":[-44,320.7],"hipL":[19.8,38.6],"knL":[13.1,179.4],"ftL":[43.1,327.2]},{"rootY":-0.8,"hips":[0,0],"chest":[6.3,-87.6],"neck":[6.3,-87.6],"head":[14.7,-152.4],"shR":[-52.2,-111.3],"elR":[-78.6,-0.8],"haR":[-115.2,45.1],"shL":[71.5,-108.3],"elL":[87.3,-5.3],"haL":[108.5,48],"hipR":[-28.2,35.4],"knR":[-48.9,183.2],"ftR":[-43.6,320.8],"hipL":[20.9,38.6],"knL":[14.9,179.1],"ftL":[43.2,327.4]},{"rootY":-0.9,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[14.6,-152.4],"shR":[-53.2,-111.7],"elR":[-79.8,-1.3],"haR":[-114.6,44.5],"shL":[70.9,-108.2],"elL":[87.2,-5.2],"haL":[110.1,48.4],"hipR":[-27.8,35.4],"knR":[-48.1,183.3],"ftR":[-43.3,320.8],"hipL":[21.5,38.6],"knL":[16,178.9],"ftL":[43,327.5]},{"rootY":-1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.7,-152.4],"shR":[-54,-111.5],"elR":[-80.7,-1.2],"haR":[-113.8,44.6],"shL":[70.3,-108.5],"elL":[86.7,-5.5],"haL":[111.1,47.8],"hipR":[-27.5,35.5],"knR":[-47.5,183.4],"ftR":[-43.3,320.8],"hipL":[22.1,38.6],"knL":[17.1,178.7],"ftL":[42.7,327.5]},{"rootY":-1.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14.3,-152.5],"shR":[-54.5,-111.7],"elR":[-80.9,-1.4],"haR":[-112.4,44.4],"shL":[69.8,-108.5],"elL":[86,-5.4],"haL":[111.6,47.5],"hipR":[-27.5,35.4],"knR":[-46.7,183.4],"ftR":[-42.9,320.8],"hipL":[22.2,38.8],"knL":[17.7,178.6],"ftL":[43,327.8]},{"rootY":-1.3,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[14.1,-152.4],"shR":[-55.2,-111.7],"elR":[-81.1,-1.4],"haR":[-111,44.4],"shL":[69.1,-108.7],"elL":[85.2,-5.6],"haL":[111.4,47.6],"hipR":[-27.3,35.4],"knR":[-46.2,183.5],"ftR":[-42.9,321],"hipL":[22.5,38.8],"knL":[18.2,178.5],"ftL":[42.9,327.9]},{"rootY":-1.5,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[13.8,-152.5],"shR":[-55.4,-111.6],"elR":[-80.2,-1.2],"haR":[-108.9,44.5],"shL":[68.7,-108.8],"elL":[84.4,-5.6],"haL":[110.9,47.8],"hipR":[-27.4,35.3],"knR":[-45.4,183.4],"ftR":[-42.6,321.1],"hipL":[22.4,39],"knL":[19,178.5],"ftL":[43.1,328]},{"rootY":-1.6,"hips":[0,0],"chest":[4.7,-87.6],"neck":[4.7,-87.6],"head":[13.5,-152.4],"shR":[-55.8,-111.3],"elR":[-79.6,-0.6],"haR":[-106.9,44.8],"shL":[68.2,-109.1],"elL":[83.1,-5.8],"haL":[109.8,48],"hipR":[-27.2,35.4],"knR":[-45.8,183.5],"ftR":[-43.1,321.3],"hipL":[22.6,39],"knL":[18.7,178.4],"ftL":[42.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[4.5,-87.6],"neck":[4.5,-87.6],"head":[13,-152.5],"shR":[-56.2,-111.1],"elR":[-78.3,-0.1],"haR":[-104.4,45.2],"shL":[67.8,-109.2],"elL":[82,-5.8],"haL":[108.3,48.6],"hipR":[-27.2,35.4],"knR":[-45.9,183.5],"ftR":[-43.4,321.4],"hipL":[22.6,39],"knL":[18.4,178.4],"ftL":[42.3,328.2]},{"rootY":-1.8,"hips":[0,0],"chest":[4.6,-87.6],"neck":[4.6,-87.6],"head":[12.6,-152.5],"shR":[-56.1,-111],"elR":[-76.6,0.4],"haR":[-101.5,45.8],"shL":[67.9,-109.5],"elL":[81.2,-6],"haL":[106.8,49.3],"hipR":[-27.5,35.3],"knR":[-45.9,183.4],"ftR":[-43.4,321.5],"hipL":[22.3,39.2],"knL":[18.1,178.5],"ftL":[42.4,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.3,-87.6],"neck":[4.3,-87.6],"head":[11.7,-152.6],"shR":[-56.3,-110.9],"elR":[-75.1,0.8],"haR":[-99.1,46.7],"shL":[67.8,-109.8],"elL":[80.2,-6.2],"haL":[105,50],"hipR":[-27.5,35.5],"knR":[-46.7,183.4],"ftR":[-44,321.6],"hipL":[22.2,39.1],"knL":[17.3,178.5],"ftL":[41.8,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[11.1,-152.6],"shR":[-56.4,-110.8],"elR":[-73.3,1.3],"haR":[-96.6,47.7],"shL":[67.9,-109.8],"elL":[79.5,-6.2],"haL":[103.1,50.8],"hipR":[-27.6,35.6],"knR":[-47.3,183.3],"ftR":[-44.4,321.7],"hipL":[22.1,39.1],"knL":[16.6,178.5],"ftL":[41.4,328.3]},{"rootY":-1.7,"hips":[0,0],"chest":[3.8,-87.6],"neck":[3.8,-87.6],"head":[10.1,-152.6],"shR":[-56.6,-110.6],"elR":[-71.8,1.8],"haR":[-94.8,49.1],"shL":[67.7,-110.1],"elL":[78.5,-6.3],"haL":[100.5,51.7],"hipR":[-27.8,35.5],"knR":[-48.6,183.1],"ftR":[-45.3,321.6],"hipL":[21.6,39],"knL":[15.3,178.5],"ftL":[40.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[3.5,-87.5],"neck":[3.5,-87.5],"head":[9.7,-152.6],"shR":[-56.7,-110.3],"elR":[-70,2.4],"haR":[-93.2,50.8],"shL":[67.6,-110.4],"elL":[77.8,-6.6],"haL":[98.2,52.3],"hipR":[-28,35.6],"knR":[-49.8,182.9],"ftR":[-46.3,321.5],"hipL":[21.2,38.9],"knL":[13.8,178.5],"ftL":[39.6,328]},{"rootY":-1.7,"hips":[0,0],"chest":[3.1,-87.5],"neck":[3.1,-87.5],"head":[8.2,-152.6],"shR":[-56.8,-110.2],"elR":[-68.3,2.8],"haR":[-91.9,52.5],"shL":[67.4,-110.6],"elL":[76.9,-6.7],"haL":[95.5,52.7],"hipR":[-28,35.8],"knR":[-51.3,182.8],"ftR":[-47.7,321.5],"hipL":[20.9,38.8],"knL":[11.9,178.4],"ftL":[38.3,327.8]},{"rootY":-1.7,"hips":[0,0],"chest":[2.8,-87.5],"neck":[2.8,-87.5],"head":[7,-152.5],"shR":[-56.5,-109.9],"elR":[-66.6,3.2],"haR":[-90.8,54.2],"shL":[67.2,-111],"elL":[76.2,-7.1],"haL":[92.7,53],"hipR":[-28.3,35.8],"knR":[-52.8,182.5],"ftR":[-49.1,321.5],"hipL":[20.1,38.8],"knL":[10.2,178.4],"ftL":[37,327.8]},{"rootY":-1.8,"hips":[0,0],"chest":[2.5,-87.4],"neck":[2.5,-87.4],"head":[5.4,-152.5],"shR":[-56.2,-109.8],"elR":[-64.7,3.5],"haR":[-89.9,56],"shL":[66.7,-111.3],"elL":[75.2,-7.3],"haL":[89.7,53],"hipR":[-28.4,36],"knR":[-54.9,182.2],"ftR":[-51.1,321.7],"hipL":[19.7,38.6],"knL":[8.2,178.3],"ftL":[35.4,327.7]},{"rootY":-1.7,"hips":[0,0],"chest":[2.2,-87.4],"neck":[2.2,-87.4],"head":[4.1,-152.3],"shR":[-55.6,-109.6],"elR":[-62.6,3.7],"haR":[-88.9,57.6],"shL":[66.1,-111.5],"elL":[74.4,-7.5],"haL":[86.6,53],"hipR":[-28.6,36.1],"knR":[-57.2,181.8],"ftR":[-53.6,322],"hipL":[18.8,38.6],"knL":[5.8,178.3],"ftL":[33.8,327.8]},{"rootY":-1.5,"hips":[0,0],"chest":[1.7,-87.3],"neck":[1.7,-87.3],"head":[2.8,-152],"shR":[-54.8,-109.5],"elR":[-60.5,3.9],"haR":[-88.2,58.9],"shL":[65.1,-111.6],"elL":[73.4,-7.6],"haL":[83.5,52.9],"hipR":[-28.6,36.3],"knR":[-60.1,181.2],"ftR":[-56.3,322.1],"hipL":[18.1,38.5],"knL":[3.2,178.1],"ftL":[32,327.5]},{"rootY":-1,"hips":[0,0],"chest":[1.2,-87.2],"neck":[1.2,-87.2],"head":[1.1,-151.8],"shR":[-53.7,-109.5],"elR":[-58.2,3.9],"haR":[-87.2,59.6],"shL":[63.9,-111.6],"elL":[72.4,-7.7],"haL":[80.4,52.8],"hipR":[-28.6,36.5],"knR":[-62.9,180.6],"ftR":[-58.7,321.8],"hipL":[17.2,38.4],"knL":[0.5,178],"ftL":[30.5,327.2]},{"rootY":-0.5,"hips":[0,0],"chest":[0.9,-87.1],"neck":[0.9,-87.1],"head":[-0.1,-151.6],"shR":[-52.3,-109.4],"elR":[-55.4,3.8],"haR":[-85.7,60.3],"shL":[62.5,-111.7],"elL":[72,-7.8],"haL":[77.9,52.5],"hipR":[-28.4,36.7],"knR":[-65.6,179.9],"ftR":[-60.9,321.5],"hipL":[16.5,38.1],"knL":[-2.2,177.6],"ftL":[29,326.8]},{"rootY":-0.1,"hips":[0,0],"chest":[0.6,-87],"neck":[0.6,-87],"head":[-1.8,-151.1],"shR":[-50.8,-109.6],"elR":[-52.4,3.5],"haR":[-84,60.6],"shL":[61,-111.5],"elL":[71,-7.6],"haL":[75,52.6],"hipR":[-28.3,36.8],"knR":[-67.9,179.2],"ftR":[-62.8,321.1],"hipL":[15.7,38],"knL":[-4.1,177.5],"ftL":[27.5,326.5]},{"rootY":0.1,"hips":[0,0],"chest":[0.3,-86.9],"neck":[0.3,-86.9],"head":[-3.2,-150.8],"shR":[-48.9,-109.7],"elR":[-48.9,3.2],"haR":[-81.3,60.6],"shL":[59.2,-111.3],"elL":[69.5,-7.4],"haL":[72,52.8],"hipR":[-28.3,36.9],"knR":[-69.9,178.5],"ftR":[-64.7,320.8],"hipL":[14.6,37.8],"knL":[-6.3,177.3],"ftL":[25.8,326.3]},{"rootY":0.2,"hips":[0,0],"chest":[0,-86.8],"neck":[0,-86.8],"head":[-4.8,-150.4],"shR":[-47,-109.9],"elR":[-44.9,2.7],"haR":[-77.9,60.6],"shL":[57.3,-111],"elL":[68,-7.2],"haL":[69.1,52.9],"hipR":[-28.3,36.9],"knR":[-70.9,178.2],"ftR":[-65.7,320.7],"hipL":[13.8,37.7],"knL":[-8,177.2],"ftL":[24.5,326.2]},{"rootY":0.1,"hips":[0,0],"chest":[-0.4,-86.8],"neck":[-0.4,-86.8],"head":[-6.1,-150.2],"shR":[-45.6,-110],"elR":[-41.4,2.2],"haR":[-74.6,60.6],"shL":[55.5,-110.9],"elL":[66,-7.1],"haL":[66,52.7],"hipR":[-28.2,36.9],"knR":[-72,178],"ftR":[-67,320.9],"hipL":[12.9,37.7],"knL":[-10,177.3],"ftL":[23.3,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-0.6,-86.7],"neck":[-0.6,-86.7],"head":[-6.8,-149.9],"shR":[-43.8,-110.4],"elR":[-37.7,1.4],"haR":[-70.6,60.3],"shL":[53.5,-110.6],"elL":[63.5,-6.8],"haL":[62.3,52.7],"hipR":[-28.1,37],"knR":[-72.9,177.7],"ftR":[-68.4,320.9],"hipL":[12.1,37.7],"knL":[-11.6,177.3],"ftL":[22,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-1.3,-86.6],"neck":[-1.3,-86.6],"head":[-8.5,-149.7],"shR":[-42.4,-110.1],"elR":[-34.1,1],"haR":[-66.3,60.6],"shL":[51.1,-110.6],"elL":[60.9,-6.8],"haL":[58.3,52.5],"hipR":[-27.9,37.1],"knR":[-74,177.5],"ftR":[-69.8,321.1],"hipL":[11.5,37.6],"knL":[-13.2,177.3],"ftL":[20.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-9.7,-149.6],"shR":[-41.3,-110.4],"elR":[-30.8,0.1],"haR":[-62.1,60.2],"shL":[49,-110.1],"elL":[57.7,-6.4],"haL":[53.8,52.5],"hipR":[-27.8,37.1],"knR":[-74.8,177.3],"ftR":[-70.8,321.2],"hipL":[10.7,37.8],"knL":[-14.7,177.4],"ftL":[19.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-149.4],"shR":[-39.6,-110.7],"elR":[-27,-0.8],"haR":[-56.9,59.9],"shL":[46.7,-109.7],"elL":[54.2,-6],"haL":[48.7,52.6],"hipR":[-27.6,37.2],"knR":[-75.7,177],"ftR":[-71.8,321.3],"hipL":[10,37.8],"knL":[-16.2,177.5],"ftL":[19.1,326]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-86.2],"neck":[-3.2,-86.2],"head":[-12.1,-149.1],"shR":[-39.1,-111.4],"elR":[-24.2,-2.2],"haR":[-52.5,59.1],"shL":[44.8,-108.8],"elL":[51.3,-5.2],"haL":[44.9,53.9],"hipR":[-27.6,37],"knR":[-76.2,176.7],"ftR":[-72.3,321.4],"hipL":[9.3,38.2],"knL":[-17.3,177.8],"ftL":[18.6,326.2]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-86.2],"neck":[-3.4,-86.2],"head":[-12.9,-149.1],"shR":[-37.4,-110.8],"elR":[-20.8,-2],"haR":[-47.4,59.6],"shL":[42.5,-109.3],"elL":[47.8,-5.6],"haL":[38.9,52.1],"hipR":[-27.5,37],"knR":[-77.5,176.4],"ftR":[-73.4,321.3],"hipL":[8.3,38.2],"knL":[-19.1,178],"ftL":[17.9,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-3.8,-86],"neck":[-3.8,-86],"head":[-14.2,-148.7],"shR":[-36.4,-110.9],"elR":[-18.1,-2.5],"haR":[-42.8,59.6],"shL":[40.6,-109],"elL":[44.5,-5.4],"haL":[33.9,51.9],"hipR":[-27.2,37],"knR":[-78.3,176.1],"ftR":[-73.9,321.1],"hipL":[7.8,38.3],"knL":[-20.2,178.1],"ftL":[17.6,325.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.6,-85.9],"neck":[-4.6,-85.9],"head":[-15.4,-148.4],"shR":[-37.2,-111.5],"elR":[-17,-3.7],"haR":[-40.1,58.5],"shL":[39.6,-108.2],"elL":[42.1,-4.6],"haL":[29.6,52.4],"hipR":[-27.2,36.9],"knR":[-79.2,175.7],"ftR":[-74.2,320.8],"hipL":[7.4,38.6],"knL":[-20.5,178.5],"ftL":[17.2,326.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-85.7],"neck":[-5,-85.7],"head":[-16,-148.3],"shR":[-36.7,-111.9],"elR":[-14.6,-4.4],"haR":[-36.3,58],"shL":[38.2,-107.5],"elL":[39.6,-4.1],"haL":[25.2,52.9],"hipR":[-26.7,37.2],"knR":[-80,175.5],"ftR":[-74.7,320.6],"hipL":[7.5,38.5],"knL":[-20.7,178.5],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.5,-85.5],"neck":[-5.5,-85.5],"head":[-17.2,-147.9],"shR":[-36.8,-111.8],"elR":[-13.1,-4.7],"haR":[-33.7,57.9],"shL":[37,-107.3],"elL":[37.2,-3.8],"haL":[20.9,52.7],"hipR":[-26.6,37.2],"knR":[-80.6,175.3],"ftR":[-75,320.2],"hipL":[7.2,38.8],"knL":[-21.2,178.7],"ftL":[17.1,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.8,-85.3],"neck":[-5.8,-85.3],"head":[-18.2,-147.4],"shR":[-36.1,-111.9],"elR":[-10.6,-5.1],"haR":[-30.9,57.7],"shL":[35.5,-106.9],"elL":[34.2,-3.3],"haL":[16.3,53],"hipR":[-26.4,37.2],"knR":[-81,175],"ftR":[-74.8,319.8],"hipL":[7.2,38.9],"knL":[-20.8,179],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-85.1],"neck":[-6.4,-85.1],"head":[-19.1,-147.1],"shR":[-36.3,-112.3],"elR":[-9.5,-5.8],"haR":[-29.2,57.1],"shL":[34.4,-106.2],"elL":[31.6,-2.7],"haL":[12.3,53.2],"hipR":[-26.5,37],"knR":[-81.4,174.6],"ftR":[-73.6,319.5],"hipL":[6.7,39.2],"knL":[-21.2,179.3],"ftL":[17.6,326]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.9],"neck":[-7,-84.9],"head":[-20,-146.8],"shR":[-36.3,-112.3],"elR":[-8.8,-5.7],"haR":[-28,57.1],"shL":[33,-105.8],"elL":[28.5,-2.3],"haL":[8.3,53.4],"hipR":[-26.4,36.9],"knR":[-81.9,174.2],"ftR":[-72.4,318.9],"hipL":[6.7,39.5],"knL":[-21.3,179.7],"ftL":[18,326.2]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.6],"neck":[-7,-84.6],"head":[-20.6,-146.3],"shR":[-36.4,-112.4],"elR":[-7.7,-6.4],"haR":[-27.2,56.4],"shL":[32.8,-105.2],"elL":[27.1,-1.7],"haL":[5.7,53.7],"hipR":[-26,37.2],"knR":[-82.4,174.1],"ftR":[-70.6,318.3],"hipL":[7.2,39.5],"knL":[-20.2,179.8],"ftL":[19.1,326.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-7.2,-84.7],"neck":[-7.2,-84.7],"head":[-21,-146.3],"shR":[-36.4,-112.8],"elR":[-7.3,-7],"haR":[-27,55.9],"shL":[32.5,-104.9],"elL":[25.8,-1.4],"haL":[3.4,53.6],"hipR":[-25.8,37.2],"knR":[-83.5,173.6],"ftR":[-69,317.1],"hipL":[6.6,39.4],"knL":[-20.5,180],"ftL":[20.5,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-22.1,-145.4],"shR":[-36.8,-112.2],"elR":[-7.6,-6.3],"haR":[-27.5,56.5],"shL":[31.2,-104.2],"elL":[23.4,-0.8],"haL":[0.3,54],"hipR":[-25.7,37.3],"knR":[-83.2,173.4],"ftR":[-67.1,316.5],"hipL":[8.1,39.9],"knL":[-18.1,180.5],"ftL":[21.6,326.1]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.1,-83.8],"neck":[-8.1,-83.8],"head":[-22.7,-145.1],"shR":[-36.9,-112.4],"elR":[-7.8,-6.7],"haR":[-28.4,56],"shL":[30.8,-103.6],"elL":[22.1,-0.2],"haL":[-1.6,54.4],"hipR":[-25.5,37.4],"knR":[-83.8,173.1],"ftR":[-65.4,315.3],"hipL":[8.4,39.9],"knL":[-17.1,180.7],"ftL":[23.1,325.7]},{"rootY":0.2,"hips":[0,0],"chest":[-8.3,-83.6],"neck":[-8.3,-83.6],"head":[-23.2,-144.7],"shR":[-37.5,-112.4],"elR":[-8.2,-6.9],"haR":[-30,55.6],"shL":[30.6,-103.3],"elL":[21.1,0],"haL":[-2.7,54.6],"hipR":[-25.2,37.6],"knR":[-84.6,172.9],"ftR":[-63.5,313.9],"hipL":[8.9,39.9],"knL":[-15.3,181],"ftL":[24.9,325.2]},{"rootY":0.4,"hips":[0,0],"chest":[-8.8,-83.3],"neck":[-8.8,-83.3],"head":[-24,-144.3],"shR":[-38.5,-112.2],"elR":[-9.2,-6.8],"haR":[-32,55.5],"shL":[30.6,-102.7],"elL":[20.5,0.6],"haL":[-3.2,54.9],"hipR":[-25.4,37.5],"knR":[-84.5,172.7],"ftR":[-61.4,312.5],"hipL":[9.1,40.2],"knL":[-14.4,181.5],"ftL":[27,325.2]},{"rootY":0.6,"hips":[0,0],"chest":[-8.8,-83.2],"neck":[-8.8,-83.2],"head":[-24.1,-144.1],"shR":[-39.2,-112.5],"elR":[-10.6,-7.2],"haR":[-34.1,54.7],"shL":[31,-102.4],"elL":[20.7,0.9],"haL":[-2.7,55.4],"hipR":[-25.2,37.5],"knR":[-84.8,172.6],"ftR":[-58.8,311],"hipL":[9.3,40.3],"knL":[-12.9,181.9],"ftL":[29.9,324.6]},{"rootY":1.3,"hips":[0,0],"chest":[-8.9,-82.9],"neck":[-8.9,-82.9],"head":[-24.6,-143.7],"shR":[-39.3,-112.2],"elR":[-11.5,-7.2],"haR":[-36.1,54.2],"shL":[30.9,-102.1],"elL":[20.8,1.1],"haL":[-2.2,55.6],"hipR":[-25.1,37.6],"knR":[-84.4,172.9],"ftR":[-55.6,309.5],"hipL":[10,40.4],"knL":[-10.6,182.3],"ftL":[32.8,324]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-83.1],"neck":[-8.9,-83.1],"head":[-24.6,-143.7],"shR":[-40.3,-112.6],"elR":[-12.7,-8],"haR":[-38.6,53],"shL":[31.8,-102],"elL":[21.6,1.2],"haL":[-0.2,55.6],"hipR":[-25.1,37.5],"knR":[-84.3,173],"ftR":[-51.8,307.6],"hipL":[9.6,40.5],"knL":[-9.4,182.7],"ftL":[36.3,322.8]},{"rootY":3,"hips":[0,0],"chest":[-9.1,-82.5],"neck":[-9.1,-82.5],"head":[-24.9,-143.1],"shR":[-42.7,-112.6],"elR":[-15,-8.4],"haR":[-42.1,52.1],"shL":[33.8,-100.9],"elL":[24,2],"haL":[3.6,56.4],"hipR":[-24.9,37.8],"knR":[-82.9,173.6],"ftR":[-46.7,305.9],"hipL":[10.9,40.6],"knL":[-6,183],"ftL":[40.3,322.1]},{"rootY":4,"hips":[0,0],"chest":[-8.9,-82.3],"neck":[-8.9,-82.3],"head":[-24.8,-142.9],"shR":[-43,-112.6],"elR":[-16,-8.8],"haR":[-44.6,51.2],"shL":[34.5,-100.5],"elL":[25.9,2.3],"haL":[7.2,56.5],"hipR":[-24.9,37.7],"knR":[-81.6,174.3],"ftR":[-41.7,304],"hipL":[11.4,40.8],"knL":[-3.2,183.5],"ftL":[44.8,321]},{"rootY":5.2,"hips":[0,0],"chest":[-8.9,-82],"neck":[-8.9,-82],"head":[-24.7,-142.5],"shR":[-43.2,-112.4],"elR":[-16.5,-9.4],"haR":[-46.8,50],"shL":[34.7,-100.2],"elL":[28.2,2.4],"haL":[11.2,56.3],"hipR":[-24.9,37.7],"knR":[-79.8,175],"ftR":[-37,302.1],"hipL":[11.8,41.1],"knL":[-0.7,183.9],"ftL":[49.5,319.6]},{"rootY":6.8,"hips":[0,0],"chest":[-8.5,-81.8],"neck":[-8.5,-81.8],"head":[-24.2,-142.1],"shR":[-43.1,-112.2],"elR":[-17.3,-9.4],"haR":[-49.5,49.3],"shL":[35.3,-99.8],"elL":[31.9,2.3],"haL":[17.2,55.7],"hipR":[-25.4,37.4],"knR":[-77.4,175.8],"ftR":[-31.2,299.7],"hipL":[11.8,41.4],"knL":[2.5,184.5],"ftL":[55,317.6]},{"rootY":8.6,"hips":[0,0],"chest":[-7.7,-81.3],"neck":[-7.7,-81.3],"head":[-23.2,-141.6],"shR":[-42.1,-111.6],"elR":[-18.2,-8.9],"haR":[-52.2,48.9],"shL":[36,-99.6],"elL":[37,2.2],"haL":[25.1,54.5],"hipR":[-25.7,37],"knR":[-73.9,176.7],"ftR":[-24.7,297.3],"hipL":[11.8,42],"knL":[4.9,185.2],"ftL":[60.8,315.1]},{"rootY":10.9,"hips":[0,0],"chest":[-8,-81.5],"neck":[-8,-81.5],"head":[-23.2,-141.7],"shR":[-43.3,-111.9],"elR":[-22.1,-9],"haR":[-58.3,47.8],"shL":[36.5,-99.5],"elL":[42.3,1.4],"haL":[34.2,52.3],"hipR":[-26.5,36.5],"knR":[-71.6,177.5],"ftR":[-19.2,293.9],"hipL":[11.2,42.2],"knL":[4.8,185.4],"ftL":[65.9,309.7]},{"rootY":12.9,"hips":[0,0],"chest":[-8.2,-81.1],"neck":[-8.2,-81.1],"head":[-23,-141.2],"shR":[-44.1,-111.8],"elR":[-27.4,-8.1],"haR":[-65.9,47.4],"shL":[37.1,-98.9],"elL":[48.6,0.4],"haL":[45,49.7],"hipR":[-27.2,36.1],"knR":[-68.7,178.2],"ftR":[-14.2,289.9],"hipL":[11.2,42.6],"knL":[4.5,185.7],"ftL":[71.1,300.8]},{"rootY":15,"hips":[0,0],"chest":[-8.9,-80.7],"neck":[-8.9,-80.7],"head":[-23.3,-140.6],"shR":[-45.6,-111.3],"elR":[-34.2,-7.3],"haR":[-75.5,46.4],"shL":[36.7,-98.7],"elL":[55.5,-1.9],"haL":[57.2,45.1],"hipR":[-28,35.7],"knR":[-66.6,178.8],"ftR":[-10.4,285.5],"hipL":[12,42.9],"knL":[1.9,184.4],"ftL":[72,287.3]},{"rootY":17.9,"hips":[0,0],"chest":[-9.4,-80.4],"neck":[-9.4,-80.4],"head":[-23.3,-140.3],"shR":[-48.6,-110.5],"elR":[-44.6,-6],"haR":[-89.2,44.9],"shL":[38.1,-99],"elL":[64.9,-6.3],"haL":[73.1,37.7],"hipR":[-28.6,35.4],"knR":[-65.3,179.2],"ftR":[-6.8,280.9],"hipL":[12.2,43.2],"knL":[-1.8,180.2],"ftL":[66.7,272.3]},{"rootY":20.8,"hips":[0,0],"chest":[-10.2,-80.2],"neck":[-10.2,-80.2],"head":[-23,-140.2],"shR":[-52.3,-109.6],"elR":[-58.9,-5.2],"haR":[-107.6,41],"shL":[39.5,-99.7],"elL":[74.5,-12.2],"haL":[90,27.9],"hipR":[-29.7,34.5],"knR":[-63.4,179.6],"ftR":[-2.5,277.3],"hipL":[11.3,43.7],"knL":[-5,172.7],"ftL":[56,260.3]},{"rootY":22.6,"hips":[0,0],"chest":[-10.7,-79.8],"neck":[-10.7,-79.8],"head":[-22.5,-140.1],"shR":[-54.6,-108.8],"elR":[-74,-4.9],"haR":[-126.6,33.7],"shL":[40.7,-99.6],"elL":[86.9,-18.9],"haL":[109,14.6],"hipR":[-29.8,34.4],"knR":[-58.7,181.1],"ftR":[2.9,275.6],"hipL":[11.5,43.9],"knL":[-6.9,161.3],"ftL":[41.4,256]},{"rootY":20.9,"hips":[0,0],"chest":[-10.4,-79.9],"neck":[-10.4,-79.9],"head":[-21.4,-140.4],"shR":[-56.4,-108.8],"elR":[-88.5,-6.2],"haR":[-143.2,21.3],"shL":[43.1,-99.9],"elL":[100.3,-28.3],"haL":[129.8,-1.4],"hipR":[-30.1,34],"knR":[-50.7,182.6],"ftR":[9.6,277.2],"hipL":[11.2,44.2],"knL":[-10.2,149.4],"ftL":[26.5,260.6]},{"rootY":16.3,"hips":[0,0],"chest":[-9.3,-80.5],"neck":[-9.3,-80.5],"head":[-20.1,-141],"shR":[-56.8,-108.7],"elR":[-100.1,-8],"haR":[-153.8,6.5],"shL":[45.8,-101.1],"elL":[113.6,-37.6],"haL":[149.5,-18.3],"hipR":[-30.8,33.4],"knR":[-40.7,182.2],"ftR":[15.3,280],"hipL":[10.6,44.6],"knL":[-15.2,141.4],"ftL":[12.1,272.7]},{"rootY":9.6,"hips":[0,0],"chest":[-7.7,-80.9],"neck":[-7.7,-80.9],"head":[-18.4,-141.7],"shR":[-56,-107.7],"elR":[-108.5,-9.8],"haR":[-158.1,-6.9],"shL":[48,-103],"elL":[123.3,-46.5],"haL":[166.5,-34.1],"hipR":[-31.9,32.2],"knR":[-33.9,178.4],"ftR":[16.7,281.5],"hipL":[9.3,45.3],"knL":[-20.9,139.2],"ftL":[-1.5,287.7]},{"rootY":1.2,"hips":[0,0],"chest":[-5.7,-82],"neck":[-5.7,-82],"head":[-17,-143],"shR":[-54.4,-106.5],"elR":[-115.1,-11.8],"haR":[-159.8,-17.8],"shL":[50.4,-106.1],"elL":[133.3,-54.9],"haL":[181.6,-48.7],"hipR":[-32.9,31.2],"knR":[-30.8,172.2],"ftR":[9.3,283.3],"hipL":[8,45.6],"knL":[-25.4,143.1],"ftL":[-14.3,302.7]},{"rootY":-5.2,"hips":[0,0],"chest":[-2.8,-83.3],"neck":[-2.8,-83.3],"head":[-14.3,-144.8],"shR":[-51.7,-105.4],"elR":[-118.9,-14.1],"haR":[-159.5,-26.7],"shL":[53.2,-109.6],"elL":[142.1,-64.3],"haL":[194.7,-63.6],"hipR":[-33.6,30.6],"knR":[-29.7,164.2],"ftR":[2.6,276.6],"hipL":[7.2,45.5],"knL":[-27.4,149.3],"ftL":[-25.3,312.7]},{"rootY":-6.7,"hips":[0,0],"chest":[0,-84.7],"neck":[0,-84.7],"head":[-11.6,-146.7],"shR":[-50.4,-105.6],"elR":[-120.6,-16.4],"haR":[-159.8,-33.6],"shL":[57.5,-111.7],"elL":[151.2,-73.2],"haL":[206.4,-77.3],"hipR":[-35.2,29.2],"knR":[-33.6,157.1],"ftR":[0.8,255.8],"hipL":[5.2,45.4],"knL":[-30.3,153.3],"ftL":[-34.1,315.6]},{"rootY":-2.9,"hips":[0,0],"chest":[2.6,-86],"neck":[2.6,-86],"head":[-8.6,-148.5],"shR":[-48.3,-105.3],"elR":[-119.4,-16.7],"haR":[-159.3,-36],"shL":[60.8,-113.9],"elL":[158.2,-82.6],"haL":[214.5,-90.8],"hipR":[-36.8,27.7],"knR":[-43.1,151.2],"ftR":[-2.8,226.7],"hipL":[3.5,44.9],"knL":[-32.4,153.5],"ftL":[-41.2,315.2]},{"rootY":5.7,"hips":[0,0],"chest":[5.5,-86.6],"neck":[5.5,-86.6],"head":[-5,-149.5],"shR":[-46.1,-104.3],"elR":[-116.1,-14.9],"haR":[-158.4,-33.9],"shL":[64.8,-115],"elL":[164.6,-89.2],"haL":[221.1,-101.6],"hipR":[-37.8,26.9],"knR":[-54.8,147.1],"ftR":[-9.9,194.8],"hipL":[3.6,44.1],"knL":[-29.1,151],"ftL":[-46.4,313.1]},{"rootY":18.4,"hips":[0,0],"chest":[8,-86.9],"neck":[8,-86.9],"head":[-1.5,-150.3],"shR":[-44.2,-103.4],"elR":[-110.7,-11.3],"haR":[-156.9,-28.3],"shL":[68.1,-115.4],"elL":[168.7,-91.8],"haL":[224.3,-108.4],"hipR":[-38.6,25.8],"knR":[-69.4,144.1],"ftR":[-21.8,164.3],"hipL":[3.4,43.3],"knL":[-23.8,148.1],"ftL":[-52.5,308]},{"rootY":29,"hips":[0,0],"chest":[9.4,-87],"neck":[9.4,-87],"head":[-0.1,-150.4],"shR":[-43.5,-103],"elR":[-101,-5],"haR":[-153.2,-17.3],"shL":[70.4,-115],"elL":[169.5,-87.8],"haL":[223.8,-107.4],"hipR":[-38.6,25.6],"knR":[-86,145.3],"ftR":[-39.7,146.2],"hipL":[4.3,41.7],"knL":[-21,142.8],"ftL":[-50.4,298.1]},{"rootY":37.7,"hips":[0,0],"chest":[9.3,-87.1],"neck":[9.3,-87.1],"head":[-1.5,-150.3],"shR":[-43.5,-102.9],"elR":[-87.7,1.7],"haR":[-145.4,0.3],"shL":[70.4,-115.1],"elL":[164.9,-77],"haL":[217.4,-97],"hipR":[-37.5,26.6],"knR":[-104.4,149.1],"ftR":[-63.3,145.1],"hipL":[6.3,39.4],"knL":[-19.2,139.5],"ftL":[-46.1,289]},{"rootY":42.8,"hips":[0,0],"chest":[7.3,-87.3],"neck":[7.3,-87.3],"head":[-4.7,-150],"shR":[-45.1,-102.5],"elR":[-74.4,7],"haR":[-133.7,20.7],"shL":[67.9,-115.9],"elL":[154.3,-63.5],"haL":[205.1,-80],"hipR":[-36.1,28],"knR":[-122.2,148.8],"ftR":[-90.5,165.4],"hipL":[8.1,36.8],"knL":[-19.8,140.2],"ftL":[-46.3,284]},{"rootY":46,"hips":[0,0],"chest":[3.8,-87.4],"neck":[3.8,-87.4],"head":[-9.2,-149.8],"shR":[-47.5,-101.4],"elR":[-60.9,10.8],"haR":[-118.2,38.5],"shL":[63.3,-117.3],"elL":[139.6,-52.7],"haL":[187.5,-61.3],"hipR":[-35,28.7],"knR":[-134.1,140.4],"ftR":[-119.6,204],"hipL":[9.6,34.7],"knL":[-22.1,141.3],"ftL":[-47.1,280.7]},{"rootY":48.2,"hips":[0,0],"chest":[1.2,-87.4],"neck":[1.2,-87.4],"head":[-12.8,-149.5],"shR":[-49,-100.7],"elR":[-46.7,11.4],"haR":[-98.4,51.6],"shL":[59.1,-118.6],"elL":[123.8,-43.8],"haL":[166.6,-41.7],"hipR":[-33.2,29.6],"knR":[-133.3,130.9],"ftR":[-148.3,248.9],"hipL":[12.2,31.7],"knL":[-22.5,142.1],"ftL":[-46.1,277.7]},{"rootY":47.4,"hips":[0,0],"chest":[-0.6,-87.3],"neck":[-0.6,-87.3],"head":[-15.8,-149.2],"shR":[-49,-99.3],"elR":[-33,10.8],"haR":[-76.6,61.6],"shL":[55,-120.3],"elL":[106.6,-36],"haL":[139.6,-22.9],"hipR":[-31.7,30.7],"knR":[-123.4,124.8],"ftR":[-169.4,270.8],"hipL":[13.6,29.6],"knL":[-22.6,144.9],"ftL":[-44.9,278.5]},{"rootY":41.8,"hips":[0,0],"chest":[-1.3,-87.2],"neck":[-1.3,-87.2],"head":[-17,-149],"shR":[-47.4,-98.7],"elR":[-18.7,8.2],"haR":[-53.6,66.1],"shL":[52.1,-121],"elL":[89.2,-29.4],"haL":[110.3,-6.1],"hipR":[-31,31.5],"knR":[-114.7,117.7],"ftR":[-158.6,259],"hipL":[14,28.9],"knL":[-21.9,149.8],"ftL":[-43.7,283.7]},{"rootY":39.1,"hips":[0,0],"chest":[-2.6,-87.2],"neck":[-2.6,-87.2],"head":[-18.5,-149.1],"shR":[-45.9,-98],"elR":[-7.3,5.6],"haR":[-33,68.3],"shL":[48.3,-122.1],"elL":[69,-25.2],"haL":[77.3,5.9],"hipR":[-30.7,32.1],"knR":[-105,107.4],"ftR":[-142,233.5],"hipL":[14.3,29.6],"knL":[-22.3,152.6],"ftL":[-42.6,287.3]},{"rootY":36.8,"hips":[0,0],"chest":[-2.6,-87.3],"neck":[-2.6,-87.3],"head":[-18.2,-149.5],"shR":[-42.7,-97.5],"elR":[3.9,2.8],"haR":[-13.4,67.7],"shL":[45.3,-122.9],"elL":[50.7,-23.2],"haL":[44.3,13.2],"hipR":[-28.2,33.2],"knR":[-90,97.1],"ftR":[-111.8,216.9],"hipL":[16.9,26.2],"knL":[-23,152.2],"ftL":[-39.4,287.1]},{"rootY":36.7,"hips":[0,0],"chest":[-3.8,-87.3],"neck":[-3.8,-87.3],"head":[-19.1,-149.9],"shR":[-40.6,-97.8],"elR":[12.1,-0.6],"haR":[1.5,64.9],"shL":[41.7,-122.8],"elL":[35.5,-22.1],"haL":[12.5,16.8],"hipR":[-27.5,33],"knR":[-72.9,83.9],"ftR":[-70.2,203],"hipL":[18.5,25.8],"knL":[-21.6,153.8],"ftL":[-38.6,287.3]},{"rootY":34.5,"hips":[0,0],"chest":[-2.2,-87.4],"neck":[-2.2,-87.4],"head":[-17.6,-150.2],"shR":[-35.9,-98.2],"elR":[19.8,-2.5],"haR":[15.1,62.6],"shL":[40.7,-122.8],"elL":[25.3,-22.3],"haL":[-13.1,16.2],"hipR":[-27,32.6],"knR":[-53.1,72.2],"ftR":[-30.6,193.9],"hipL":[20,26],"knL":[-17.1,156.3],"ftL":[-35.5,289.6]},{"rootY":31.3,"hips":[0,0],"chest":[-0.8,-87.4],"neck":[-0.8,-87.4],"head":[-16,-150.3],"shR":[-31.4,-98.1],"elR":[24.6,-2.3],"haR":[24.8,61.9],"shL":[39.8,-122.8],"elL":[17,-23.6],"haL":[-33.5,12.1],"hipR":[-27.4,32.2],"knR":[-33.2,66.2],"ftR":[3.4,188.9],"hipL":[20.3,27.8],"knL":[-14.4,159.7],"ftL":[-32.4,292]},{"rootY":29.3,"hips":[0,0],"chest":[0.2,-87.5],"neck":[0.2,-87.5],"head":[-14.3,-150.7],"shR":[-28.8,-98.3],"elR":[27,-2.3],"haR":[30.3,60.9],"shL":[39.8,-122.8],"elL":[8.9,-25.7],"haL":[-48.9,5.8],"hipR":[-25.6,33],"knR":[-15.9,63.5],"ftR":[31.6,187.2],"hipL":[22.5,27.1],"knL":[-10.2,161],"ftL":[-32,293.5]},{"rootY":25.9,"hips":[0,0],"chest":[0.3,-87.5],"neck":[0.3,-87.5],"head":[-13.2,-151],"shR":[-29.2,-98.8],"elR":[27.4,-3.3],"haR":[31.5,59.2],"shL":[40.7,-122.2],"elL":[0.7,-28.2],"haL":[-60.5,-1.7],"hipR":[-24.6,33],"knR":[-1.6,66.3],"ftR":[56.2,191.8],"hipL":[24.2,27.7],"knL":[-4.8,164],"ftL":[-31.9,297.3]},{"rootY":23.7,"hips":[0,0],"chest":[0.8,-87.6],"neck":[0.8,-87.6],"head":[-11.8,-151.4],"shR":[-30.5,-97.6],"elR":[26.7,-2.7],"haR":[30.9,59.5],"shL":[42.6,-123.4],"elL":[-7.2,-33.4],"haL":[-69.4,-11.2],"hipR":[-22.3,34],"knR":[11.5,74.6],"ftR":[75.8,201.6],"hipL":[27.3,28.4],"knL":[1.5,165.8],"ftL":[-31.2,298.4]},{"rootY":20.5,"hips":[0,0],"chest":[1.4,-87.6],"neck":[1.4,-87.6],"head":[-10.8,-151.7],"shR":[-33.8,-97.5],"elR":[23.1,-3],"haR":[26.5,59.5],"shL":[45.7,-123.6],"elL":[-12.2,-37.9],"haL":[-74.6,-19.8],"hipR":[-20.8,34.5],"knR":[23.3,85.9],"ftR":[88.9,216.7],"hipL":[29.2,29.7],"knL":[7.3,168.2],"ftL":[-30.3,300.9]},{"rootY":18.4,"hips":[0,0],"chest":[1.6,-87.6],"neck":[1.6,-87.6],"head":[-10.1,-151.9],"shR":[-36.3,-96.5],"elR":[18.3,-1.5],"haR":[20.8,61.3],"shL":[47.3,-124.5],"elL":[-15.9,-41.9],"haL":[-78.9,-27.9],"hipR":[-18.8,35.4],"knR":[32.5,97.3],"ftR":[93.3,234.3],"hipL":[31.2,30.4],"knL":[11.3,169.9],"ftL":[-31,302.9]},{"rootY":17,"hips":[0,0],"chest":[1.7,-87.5],"neck":[1.7,-87.5],"head":[-9.5,-151.9],"shR":[-41.8,-97.1],"elR":[8.7,-1.1],"haR":[9.7,62.4],"shL":[51.6,-123.7],"elL":[-14.2,-43.3],"haL":[-77.2,-32.8],"hipR":[-14.9,36.3],"knR":[41,108.6],"ftR":[90.9,253],"hipL":[34.4,28.9],"knL":[13.7,169.4],"ftL":[-33.5,303.2]},{"rootY":15.9,"hips":[0,0],"chest":[2.2,-87.3],"neck":[2.2,-87.3],"head":[-8.7,-151.8],"shR":[-45.8,-97.8],"elR":[-3.2,1.1],"haR":[-4.5,65],"shL":[55.3,-122.5],"elL":[-11.4,-43.3],"haL":[-74.7,-35.4],"hipR":[-16.5,35.6],"knR":[47.8,120.2],"ftR":[85.2,269.7],"hipL":[32.9,31.7],"knL":[15.2,172.9],"ftL":[-33.4,305.7]},{"rootY":16.5,"hips":[0,0],"chest":[0,-87.4],"neck":[0,-87.4],"head":[-10.6,-152],"shR":[-51.7,-97.5],"elR":[-18.3,3.9],"haR":[-24.2,68.4],"shL":[55.7,-122.5],"elL":[-9.1,-43.6],"haL":[-72.3,-36.5],"hipR":[-13,36.5],"knR":[49.6,133.7],"ftR":[72.5,286.3],"hipL":[35.2,31.1],"knL":[16.4,172.2],"ftL":[-37.7,302.4]},{"rootY":17.9,"hips":[0,0],"chest":[-1.4,-87.3],"neck":[-1.4,-87.3],"head":[-11.2,-152.1],"shR":[-56,-98.1],"elR":[-32.9,5.8],"haR":[-45.3,70.4],"shL":[56.4,-121.5],"elL":[-3.6,-42.8],"haL":[-67.7,-35.3],"hipR":[-12.3,36.6],"knR":[48.5,145.7],"ftR":[59.8,299],"hipL":[35.2,32],"knL":[17.2,173.2],"ftL":[-41.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[-1.8,-87.2],"neck":[-1.8,-87.2],"head":[-11.3,-152],"shR":[-59.5,-98.8],"elR":[-48,7.4],"haR":[-67.5,71.2],"shL":[57.6,-120.4],"elL":[4.9,-41.5],"haL":[-60.3,-31.4],"hipR":[-11.6,35.9],"knR":[50.5,151.2],"ftR":[61.4,304.6],"hipL":[34.7,33.1],"knL":[19,174.6],"ftL":[-43.3,299.4]},{"rootY":19.3,"hips":[0,0],"chest":[-1.3,-87.6],"neck":[-1.3,-87.6],"head":[-10.4,-152.4],"shR":[-60.8,-98],"elR":[-60.7,10.4],"haR":[-88,71.9],"shL":[58.7,-120.7],"elL":[15.7,-41.7],"haL":[-49.2,-26.7],"hipR":[-13,35.4],"knR":[48.1,152.6],"ftR":[64.4,305.2],"hipL":[33.7,34],"knL":[18.2,175.3],"ftL":[-44.9,297.5]},{"rootY":21.4,"hips":[0,0],"chest":[0.5,-87.7],"neck":[0.5,-87.7],"head":[-8.4,-152.5],"shR":[-60.8,-97.4],"elR":[-70.6,12],"haR":[-105.7,70],"shL":[60.1,-121.4],"elL":[29.1,-41.4],"haL":[-33.1,-21.5],"hipR":[-12.5,35.6],"knR":[47.6,153.1],"ftR":[65,305.4],"hipL":[34.1,33.6],"knL":[17.4,174.7],"ftL":[-44.7,295.5]},{"rootY":22.5,"hips":[0,0],"chest":[0,-87.6],"neck":[0,-87.6],"head":[-7.6,-152.6],"shR":[-62.3,-99.4],"elR":[-79.9,10.8],"haR":[-121.2,63.7],"shL":[60.1,-119.9],"elL":[42,-38.6],"haL":[-13,-14],"hipR":[-11.7,35.4],"knR":[49.7,151.8],"ftR":[65.1,304],"hipL":[34.6,33.2],"knL":[17.8,174.4],"ftL":[-44.1,294.9]},{"rootY":22.8,"hips":[0,0],"chest":[-0.3,-87.5],"neck":[-0.3,-87.5],"head":[-6.3,-152.6],"shR":[-63.1,-100.5],"elR":[-88.3,9.4],"haR":[-133.2,56.4],"shL":[59.9,-119],"elL":[52.6,-35.4],"haL":[11.5,-6.6],"hipR":[-11.4,34.7],"knR":[51.7,151],"ftR":[65.9,303.1],"hipL":[34.3,33.6],"knL":[19.6,175],"ftL":[-42.7,294.9]},{"rootY":22.9,"hips":[0,0],"chest":[-0.4,-87.6],"neck":[-0.4,-87.6],"head":[-4.6,-152.8],"shR":[-63.3,-101.8],"elR":[-95.3,7],"haR":[-141.3,46.8],"shL":[60,-117.7],"elL":[61.1,-32.5],"haL":[40.8,-0.3],"hipR":[-10.3,34.7],"knR":[54.5,150.7],"ftR":[67.9,303],"hipL":[34.7,33.4],"knL":[22.3,175],"ftL":[-39.9,294.9]},{"rootY":21.9,"hips":[0,0],"chest":[-0.7,-87.6],"neck":[-0.7,-87.6],"head":[-3.3,-152.9],"shR":[-63.7,-103.4],"elR":[-101.9,3.6],"haR":[-147.1,35.8],"shL":[59.8,-116.3],"elL":[69.5,-30.5],"haL":[71.1,1.9],"hipR":[-9.3,34.8],"knR":[56.4,151.5],"ftR":[69.9,304.1],"hipL":[35,33.3],"knL":[24.4,175],"ftL":[-37.4,296]},{"rootY":20.5,"hips":[0,0],"chest":[-0.6,-87.6],"neck":[-0.6,-87.6],"head":[-1.6,-152.9],"shR":[-63.6,-104.2],"elR":[-108.1,0.3],"haR":[-150.2,25],"shL":[59.4,-115.3],"elL":[80.6,-29.8],"haL":[101.2,1.3],"hipR":[-9,34.9],"knR":[57,152.8],"ftR":[72.8,305.5],"hipL":[34.9,33.5],"knL":[25.9,175.5],"ftL":[-34.5,298.4]},{"rootY":19.3,"hips":[0,0],"chest":[-0.2,-87.7],"neck":[-0.2,-87.7],"head":[0.1,-152.9],"shR":[-62.9,-105.6],"elR":[-113.1,-3.7],"haR":[-150.2,14.5],"shL":[59.3,-114.3],"elL":[93.5,-30.6],"haL":[130.6,-2.3],"hipR":[-8.7,35.4],"knR":[56.8,154],"ftR":[75.5,306.5],"hipL":[35,33.5],"knL":[26.2,175.7],"ftL":[-31.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[0.4,-87.7],"neck":[0.4,-87.7],"head":[2,-152.9],"shR":[-62,-106.6],"elR":[-116.6,-7.1],"haR":[-149.3,5.6],"shL":[59.3,-113.5],"elL":[107.1,-31],"haL":[155,-6.9],"hipR":[-8.6,36],"knR":[55.3,155],"ftR":[77.2,307.3],"hipL":[35.1,33.5],"knL":[25.8,175.7],"ftL":[-28.5,303.3]},{"rootY":16.8,"hips":[0,0],"chest":[1.6,-87.7],"neck":[1.6,-87.7],"head":[4.3,-152.8],"shR":[-60.4,-107.6],"elR":[-118.4,-10.2],"haR":[-147,-1.6],"shL":[60,-112.8],"elL":[120.1,-32.5],"haL":[175.9,-11],"hipR":[-9.4,36.5],"knR":[53.3,155.3],"ftR":[77.9,307.4],"hipL":[34.8,33.7],"knL":[25.5,176.2],"ftL":[-25.1,306.4]},{"rootY":16.1,"hips":[0,0],"chest":[3,-87.7],"neck":[3,-87.7],"head":[6.9,-152.6],"shR":[-58.4,-108.6],"elR":[-118.6,-13],"haR":[-143.5,-6.9],"shL":[61.3,-111.9],"elL":[129.8,-34.1],"haL":[190.2,-14.6],"hipR":[-10.2,36.8],"knR":[50.2,155.7],"ftR":[75.6,307.8],"hipL":[34.6,33.9],"knL":[25.5,176.6],"ftL":[-21.9,308.9]},{"rootY":15.9,"hips":[0,0],"chest":[4.4,-87.6],"neck":[4.4,-87.6],"head":[9.3,-152.4],"shR":[-56.4,-109.5],"elR":[-117.7,-15],"haR":[-139.8,-10],"shL":[62.7,-111.4],"elL":[135,-36.4],"haL":[198.3,-18.2],"hipR":[-11,37.2],"knR":[46.6,155.7],"ftR":[70.5,308],"hipL":[34.4,34.2],"knL":[25,176.9],"ftL":[-19,311]},{"rootY":15.1,"hips":[0,0],"chest":[5.6,-87.5],"neck":[5.6,-87.5],"head":[11.7,-151.9],"shR":[-54.8,-109.9],"elR":[-116.2,-16.1],"haR":[-135.9,-10.5],"shL":[63.5,-111.1],"elL":[134.7,-38.4],"haL":[199.1,-21.3],"hipR":[-11.6,37.4],"knR":[42.7,155.5],"ftR":[60.9,308.5],"hipL":[34.1,34.4],"knL":[24.1,177.2],"ftL":[-16.7,312.7]}]},"march":{"name":"march","fps":30,"height":520,"groundY":342,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.1,-86.1],"neck":[1.1,-86.1],"head":[2,-151.3],"shR":[-51.8,-120.1],"elR":[-155.8,-105.5],"haR":[-222.9,-96.1],"shL":[58.6,-114],"elL":[159.3,-99.8],"haL":[225.6,-90.5],"hipR":[-21.8,38.1],"knR":[-19.3,184.4],"ftR":[-16.5,341.7],"hipL":[25.5,38.1],"knL":[22.9,183.4],"ftL":[20.2,338.8]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.4],"neck":[-6.3,-84.4],"head":[-27.5,-144.7],"shR":[46.2,-120.7],"elR":[65.5,-17.5],"haR":[73.1,36.4],"shL":[-63.6,-112.6],"elL":[-58.1,-16.3],"haL":[-67.7,49],"hipR":[27.5,34.4],"knR":[17.9,175.6],"ftR":[12.4,313.9],"hipL":[-19.2,41.9],"knL":[-28.3,162.4],"ftL":[-38.2,316.8]},{"rootY":2.8,"hips":[0,0],"chest":[-6.7,-84.2],"neck":[-6.7,-84.2],"head":[-28.7,-144.1],"shR":[45.2,-121.3],"elR":[65.2,-18.2],"haR":[73,34.5],"shL":[-64.1,-111.7],"elL":[-56.9,-15.8],"haL":[-66.6,50.2],"hipR":[27.6,34.3],"knR":[18.6,175],"ftR":[14.5,308.9],"hipL":[-19.1,42],"knL":[-27.4,163.1],"ftL":[-36.6,318.2]},{"rootY":1.7,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-30.3,-143.6],"shR":[43.6,-121.7],"elR":[64,-18.7],"haR":[72.1,33.8],"shL":[-65.3,-110.9],"elL":[-56.4,-15.3],"haL":[-65.8,51],"hipR":[26.6,35],"knR":[18,175.5],"ftR":[16.2,304.2],"hipL":[-20.2,41.6],"knL":[-27.8,163],"ftL":[-35.3,318.3]},{"rootY":0.4,"hips":[0,0],"chest":[-8.7,-83.9],"neck":[-8.7,-83.9],"head":[-31.7,-143.4],"shR":[42.2,-122.3],"elR":[62.6,-19.4],"haR":[70.8,33.8],"shL":[-66.1,-110],"elL":[-55.8,-14.7],"haL":[-64.8,51.6],"hipR":[25.5,35.5],"knR":[16.9,177],"ftR":[17.8,297.6],"hipL":[-21.4,41.3],"knL":[-28.8,164.2],"ftL":[-34,319.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-9,-84],"neck":[-9,-84],"head":[-32.6,-143.1],"shR":[41.7,-122.4],"elR":[62.3,-19.7],"haR":[70.2,34.5],"shL":[-66.2,-110],"elL":[-54.8,-15.3],"haL":[-63.4,50.8],"hipR":[25,35.5],"knR":[16.7,178.9],"ftR":[18.5,289.7],"hipL":[-21.8,41.1],"knL":[-30.1,165.8],"ftL":[-32.3,320.5]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.4,-84],"neck":[-9.4,-84],"head":[-33,-143.4],"shR":[41.2,-122.6],"elR":[62.1,-20],"haR":[69.5,35.2],"shL":[-66.5,-109.9],"elL":[-54.4,-15.7],"haL":[-62.7,50.4],"hipR":[23.8,35.8],"knR":[16.9,181.1],"ftR":[18.3,280.7],"hipL":[-23,40.5],"knL":[-32.1,166.9],"ftL":[-30.4,320.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.3,-84.2],"neck":[-9.3,-84.2],"head":[-33,-143.5],"shR":[41.4,-122.6],"elR":[62,-20.1],"haR":[68.8,35.9],"shL":[-66.3,-110],"elL":[-54.1,-16.5],"haL":[-62.4,49.8],"hipR":[22.1,36.4],"knR":[18.4,182.6],"ftR":[19,272],"hipL":[-24.8,39.4],"knL":[-32.7,168],"ftL":[-26.9,319.9]},{"rootY":0.8,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-32.4,-143.8],"shR":[41.9,-122.3],"elR":[61.4,-19.8],"haR":[67.9,37.4],"shL":[-66.1,-110.7],"elL":[-54.5,-16.9],"haL":[-62.6,49.5],"hipR":[20.2,36.9],"knR":[20.9,182.7],"ftR":[19.5,265],"hipL":[-26.7,37.9],"knL":[-31.7,168.8],"ftL":[-23.1,318.6]},{"rootY":1.9,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-31.8,-144],"shR":[42.4,-121.6],"elR":[60,-18.9],"haR":[66.5,39.5],"shL":[-66,-111.4],"elL":[-55.6,-17.1],"haL":[-64.1,49.3],"hipR":[19.9,36.8],"knR":[23,180.6],"ftR":[17.8,259.3],"hipL":[-27.1,37.4],"knL":[-29.8,169.9],"ftL":[-21.1,317.6]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-84.4],"neck":[-8.9,-84.4],"head":[-30.7,-144.4],"shR":[43.1,-121.2],"elR":[57.9,-18.3],"haR":[64.6,41.6],"shL":[-65.7,-112],"elL":[-56.7,-16.3],"haL":[-65.9,50],"hipR":[19.5,37],"knR":[25.1,177.3],"ftR":[17.7,258.8],"hipL":[-27.6,36.6],"knL":[-28.3,171.5],"ftL":[-19.3,317.2]},{"rootY":2.3,"hips":[0,0],"chest":[-8.3,-84.5],"neck":[-8.3,-84.5],"head":[-29,-144.5],"shR":[44,-121],"elR":[55.5,-17.7],"haR":[62.4,43.5],"shL":[-65.1,-112.4],"elL":[-57.7,-15.4],"haL":[-67.7,50.7],"hipR":[19.3,37.3],"knR":[26.4,173.3],"ftR":[18.6,263.7],"hipL":[-27.9,36],"knL":[-26.3,173.5],"ftL":[-17.5,317.1]},{"rootY":1.1,"hips":[0,0],"chest":[-7.5,-84.6],"neck":[-7.5,-84.6],"head":[-27,-145.2],"shR":[45.2,-120.6],"elR":[53.4,-17],"haR":[60.4,45.3],"shL":[-64.5,-112.9],"elL":[-59,-15],"haL":[-69.6,50.7],"hipR":[19,37.4],"knR":[26.7,169.2],"ftR":[18.6,273.6],"hipL":[-28.1,35.7],"knL":[-24.4,174.6],"ftL":[-15.6,317.2]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-84.7],"neck":[-6.9,-84.7],"head":[-25.1,-145.7],"shR":[46.3,-120],"elR":[51.8,-16.4],"haR":[58.2,47.2],"shL":[-63.9,-113.7],"elL":[-60.5,-15.1],"haL":[-71.5,50],"hipR":[18.8,37.6],"knR":[26.6,165.2],"ftR":[18.9,286.1],"hipL":[-28.4,35.4],"knL":[-22.9,176.3],"ftL":[-14,317.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-6.4,-84.7],"neck":[-6.4,-84.7],"head":[-23.4,-146.4],"shR":[47,-119.3],"elR":[50.5,-15.8],"haR":[56.5,48.7],"shL":[-63.4,-114.2],"elL":[-62.9,-15.1],"haL":[-74,49.1],"hipR":[18.6,37.9],"knR":[26.6,162.3],"ftR":[20.3,298.7],"hipL":[-28.6,35],"knL":[-21.3,177.8],"ftL":[-12.4,318.3]},{"rootY":-3.2,"hips":[0,0],"chest":[-5.8,-84.7],"neck":[-5.8,-84.7],"head":[-21,-146.8],"shR":[47.7,-118.8],"elR":[49.2,-15.6],"haR":[54.6,49.3],"shL":[-62.8,-114.8],"elL":[-65.8,-15.3],"haL":[-76.4,47.7],"hipR":[18.8,38.2],"knR":[25.8,161],"ftR":[22.3,310],"hipL":[-28.4,35.2],"knL":[-20.5,179.2],"ftL":[-12,319.7]},{"rootY":-4.9,"hips":[0,0],"chest":[-5.7,-84.6],"neck":[-5.7,-84.6],"head":[-18.8,-147.4],"shR":[48,-118.2],"elR":[48,-15.3],"haR":[52.7,50.1],"shL":[-62.6,-115.4],"elL":[-69.7,-15.9],"haL":[-79.4,45.3],"hipR":[18.4,38.6],"knR":[24.3,161.7],"ftR":[25.3,317.7],"hipL":[-28.8,35.1],"knL":[-20.8,179.9],"ftL":[-12,320.6]},{"rootY":-4.1,"hips":[0,0],"chest":[-5.4,-84.7],"neck":[-5.4,-84.7],"head":[-18.2,-146.9],"shR":[48.2,-117.7],"elR":[46.4,-15.1],"haR":[51,50.7],"shL":[-62.2,-116],"elL":[-73.6,-16.3],"haL":[-82.7,43],"hipR":[18.1,38.9],"knR":[22.6,162.9],"ftR":[28.3,319.9],"hipL":[-29,35],"knL":[-21.3,180],"ftL":[-12.5,319.8]},{"rootY":-3.4,"hips":[0,0],"chest":[-4.9,-84.7],"neck":[-4.9,-84.7],"head":[-16.7,-147.1],"shR":[48.7,-117.6],"elR":[45.2,-15.2],"haR":[49.7,50.7],"shL":[-61.5,-116.3],"elL":[-76.8,-16.7],"haL":[-85.1,40.7],"hipR":[17.3,39.2],"knR":[21.8,164.1],"ftR":[30.4,318.6],"hipL":[-29.7,34.6],"knL":[-22,179],"ftL":[-13.2,319.1]},{"rootY":-2,"hips":[0,0],"chest":[-4.5,-84.7],"neck":[-4.5,-84.7],"head":[-15.4,-147.5],"shR":[49.1,-117.1],"elR":[44,-15],"haR":[48.5,51.1],"shL":[-60.8,-116.8],"elL":[-79.6,-17.4],"haL":[-87.3,38.4],"hipR":[17.3,39.4],"knR":[21.9,164.4],"ftR":[30.6,317.3],"hipL":[-29.7,34.7],"knL":[-22.6,178.6],"ftL":[-13.8,317.5]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.1,-84.6],"neck":[-4.1,-84.6],"head":[-14.1,-147.4],"shR":[49.6,-116.5],"elR":[43.1,-14.5],"haR":[48,52],"shL":[-60,-117.3],"elL":[-81.2,-18.1],"haL":[-88.7,35.8],"hipR":[17.4,39.7],"knR":[22.7,163.1],"ftR":[29.8,317],"hipL":[-29.6,34.6],"knL":[-22.8,177.7],"ftL":[-15.3,314.3]},{"rootY":1.5,"hips":[0,0],"chest":[-3.5,-84.5],"neck":[-3.5,-84.5],"head":[-12.8,-147.5],"shR":[50.1,-116.1],"elR":[42.1,-14.2],"haR":[47.1,52.5],"shL":[-59.2,-117.7],"elL":[-81.6,-18.6],"haL":[-89.5,33.8],"hipR":[17.4,39.8],"knR":[22.6,162.4],"ftR":[28.5,318],"hipL":[-29.6,34.5],"knL":[-23,176.4],"ftL":[-16.6,310.7]},{"rootY":1,"hips":[0,0],"chest":[-3,-84.5],"neck":[-3,-84.5],"head":[-11.3,-147.6],"shR":[50.6,-115.5],"elR":[41.7,-13.5],"haR":[46.9,53.5],"shL":[-58.3,-118.3],"elL":[-80.9,-19.2],"haL":[-89.5,32.3],"hipR":[17.5,39.8],"knR":[22,162.5],"ftR":[27.4,319.1],"hipL":[-29.5,34.7],"knL":[-23.3,175.1],"ftL":[-17.9,306.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-9.6,-147.8],"shR":[51.5,-114.8],"elR":[41.6,-12.7],"haR":[47.1,54.5],"shL":[-57,-118.9],"elL":[-79.1,-19.8],"haL":[-88.3,31.6],"hipR":[18.7,39.5],"knR":[22.8,163.5],"ftR":[27.6,320.5],"hipL":[-28.4,35.5],"knL":[-22.9,175.5],"ftL":[-19.7,302.6]},{"rootY":-2.6,"hips":[0,0],"chest":[-1.8,-84.5],"neck":[-1.8,-84.5],"head":[-8.4,-148],"shR":[51.9,-114.3],"elR":[41.5,-12.4],"haR":[47.2,54.9],"shL":[-56.2,-119.4],"elL":[-78.2,-20.5],"haL":[-87.3,31.4],"hipR":[19.8,39.2],"knR":[23.3,165],"ftR":[25.3,322.2],"hipL":[-27.3,36.2],"knL":[-23.1,176.5],"ftL":[-22.8,297.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-1.7,-84.6],"neck":[-1.7,-84.6],"head":[-8,-148.4],"shR":[51.9,-114.2],"elR":[41.2,-12.2],"haR":[47.1,55.1],"shL":[-55.9,-119.7],"elL":[-78.1,-20.9],"haL":[-86.4,31.7],"hipR":[20.3,39],"knR":[23.2,167.1],"ftR":[23.6,324],"hipL":[-26.8,36.3],"knL":[-23.6,178.1],"ftL":[-25,291.7]},{"rootY":-5.3,"hips":[0,0],"chest":[-1.5,-84.7],"neck":[-1.5,-84.7],"head":[-7.4,-148.8],"shR":[52,-113.9],"elR":[41.6,-12],"haR":[47.7,55.1],"shL":[-55.6,-120],"elL":[-77.9,-21.5],"haL":[-85.1,32.2],"hipR":[21.2,38.6],"knR":[23,168.6],"ftR":[21.1,324.8],"hipL":[-26,36.7],"knL":[-24.4,180.3],"ftL":[-26,286.1]},{"rootY":-5.4,"hips":[0,0],"chest":[-1.5,-84.8],"neck":[-1.5,-84.8],"head":[-7.1,-149.1],"shR":[52.1,-113.7],"elR":[42.4,-11.9],"haR":[48.9,55.1],"shL":[-55.6,-120.2],"elL":[-78.2,-22.1],"haL":[-83.8,32.2],"hipR":[22.1,38],"knR":[21.7,169.7],"ftR":[18.4,324.5],"hipL":[-25.1,36.9],"knL":[-26.1,181.9],"ftL":[-27.6,278.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-1.9,-84.8],"neck":[-1.9,-84.8],"head":[-7.6,-149.2],"shR":[51.8,-114],"elR":[43.5,-11.8],"haR":[50.3,54.9],"shL":[-56.1,-119.9],"elL":[-78.5,-22.1],"haL":[-82.7,32.7],"hipR":[22.9,37.2],"knR":[19.6,170.6],"ftR":[15.2,323.5],"hipL":[-24.3,37],"knL":[-28.3,182.2],"ftL":[-28.9,271.1]},{"rootY":-3.5,"hips":[0,0],"chest":[-2.2,-84.8],"neck":[-2.2,-84.8],"head":[-8.8,-149.8],"shR":[51.7,-114.5],"elR":[45.3,-11.8],"haR":[52.5,54.6],"shL":[-56.8,-119.6],"elL":[-77.6,-21.7],"haL":[-81.3,33.8],"hipR":[23.6,36.4],"knR":[17.3,171.7],"ftR":[12.7,322.4],"hipL":[-23.6,37],"knL":[-30.6,181.2],"ftL":[-29.2,264.6]},{"rootY":-3.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-9.4,-149.9],"shR":[51.6,-114.7],"elR":[47.2,-11.3],"haR":[55.1,54.7],"shL":[-57.4,-119.6],"elL":[-74.8,-21.3],"haL":[-78.5,35.2],"hipR":[24.6,35.4],"knR":[16.1,172.9],"ftR":[11.1,321.9],"hipL":[-22.5,37.6],"knL":[-32.5,179.5],"ftL":[-29.7,263.1]},{"rootY":-3.4,"hips":[0,0],"chest":[-3.1,-85.1],"neck":[-3.1,-85.1],"head":[-10,-150.3],"shR":[51.5,-114.9],"elR":[49.2,-10.9],"haR":[57.7,54.8],"shL":[-58,-119.5],"elL":[-71.5,-20.8],"haL":[-75.9,36.9],"hipR":[25,34.9],"knR":[15.6,174.6],"ftR":[10.1,322],"hipL":[-22.2,37.9],"knL":[-33.3,176.9],"ftL":[-30,266.1]},{"rootY":-4.2,"hips":[0,0],"chest":[-3.4,-85.2],"neck":[-3.4,-85.2],"head":[-10.6,-150.5],"shR":[51.5,-115.2],"elR":[51.2,-10.8],"haR":[60.4,54.4],"shL":[-58.5,-119.3],"elL":[-68.2,-20.3],"haL":[-73.1,38.7],"hipR":[25.5,34.5],"knR":[15.4,176.3],"ftR":[9.6,322.2],"hipL":[-21.6,38.3],"knL":[-33.3,173.9],"ftL":[-30,273.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-11.4,-150.6],"shR":[51.5,-115.7],"elR":[53.3,-11.1],"haR":[62.9,53.3],"shL":[-58.9,-118.8],"elL":[-65.3,-19.8],"haL":[-70.6,40.5],"hipR":[26.4,33.8],"knR":[15.6,177.4],"ftR":[9.2,322.4],"hipL":[-20.6,38.8],"knL":[-32.5,170.9],"ftL":[-29.1,282.8]},{"rootY":-5.5,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-12.5,-150.5],"shR":[51.5,-116.1],"elR":[55.6,-11.5],"haR":[65.3,52],"shL":[-59.1,-118.1],"elL":[-63.3,-19.5],"haL":[-68.7,41.8],"hipR":[26.7,33.8],"knR":[15.4,178.5],"ftR":[9.2,322.7],"hipL":[-20.3,39.2],"knL":[-31.1,168],"ftL":[-28,293.8]},{"rootY":-7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-12.8,-150.6],"shR":[52.1,-116.8],"elR":[58.8,-12.3],"haR":[68.1,49.8],"shL":[-58.5,-117.7],"elL":[-61.1,-19.5],"haL":[-66.2,43.1],"hipR":[26.7,33.8],"knR":[16.7,179.5],"ftR":[10.1,323.2],"hipL":[-20.2,39.5],"knL":[-28.8,166.7],"ftL":[-26.2,304.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-14.2,-150.4],"shR":[51.9,-117.3],"elR":[61.4,-13],"haR":[70.3,48.8],"shL":[-58.5,-117.2],"elL":[-59.7,-19.4],"haL":[-64.8,44.1],"hipR":[27,33.8],"knR":[17.1,179.7],"ftR":[10.1,323.6],"hipL":[-19.9,40],"knL":[-27.1,165.7],"ftL":[-25.8,313.5]},{"rootY":-7,"hips":[0,0],"chest":[-3.2,-85.1],"neck":[-3.2,-85.1],"head":[-15.5,-150.1],"shR":[51.6,-117.7],"elR":[63.9,-13.6],"haR":[72,46.3],"shL":[-58.7,-116.4],"elL":[-58.3,-19.1],"haL":[-63.8,45.2],"hipR":[28.1,33.4],"knR":[17.4,178.9],"ftR":[9.7,322.9],"hipL":[-18.6,40.9],"knL":[-24.8,165.4],"ftL":[-26.7,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-3.6,-85],"neck":[-3.6,-85],"head":[-16.6,-149.9],"shR":[50.9,-118.1],"elR":[66,-14.3],"haR":[73.2,44.3],"shL":[-59.1,-116],"elL":[-57.1,-19.2],"haL":[-63.1,45.8],"hipR":[28.1,33.7],"knR":[17.9,178.3],"ftR":[10,322.4],"hipL":[-18.6,41.3],"knL":[-22.8,165.9],"ftL":[-27.7,321.3]},{"rootY":-5.2,"hips":[0,0],"chest":[-3.9,-84.9],"neck":[-3.9,-84.9],"head":[-17.5,-149.7],"shR":[50.3,-118.6],"elR":[67.3,-15.1],"haR":[74.1,42],"shL":[-59.5,-115.3],"elL":[-55.3,-18.6],"haL":[-62.2,47.1],"hipR":[28.6,33.6],"knR":[19.1,176.7],"ftR":[10.8,320.9],"hipL":[-18,41.7],"knL":[-21.1,165.5],"ftL":[-27.5,319.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-4.2,-84.8],"neck":[-4.2,-84.8],"head":[-18.3,-149.4],"shR":[49.8,-118.8],"elR":[68.4,-15.5],"haR":[75.1,40.3],"shL":[-59.7,-114.9],"elL":[-53.9,-18.2],"haL":[-61.5,47.9],"hipR":[28.7,33.6],"knR":[20,175.2],"ftR":[12.5,317.9],"hipL":[-17.8,41.9],"knL":[-21,164.9],"ftL":[-27.1,319]},{"rootY":-1.3,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-19.4,-149.1],"shR":[48.9,-119],"elR":[68.2,-15.8],"haR":[75,38.9],"shL":[-60.4,-114.4],"elL":[-53.1,-18],"haL":[-61.1,48.3],"hipR":[28.3,33.8],"knR":[20.2,174.5],"ftR":[14.4,313.9],"hipL":[-18.2,42],"knL":[-21.9,164.1],"ftL":[-25.9,319.1]},{"rootY":-1.8,"hips":[0,0],"chest":[-5.8,-84.3],"neck":[-5.8,-84.3],"head":[-20.6,-148.9],"shR":[47.4,-119.4],"elR":[66.9,-16.3],"haR":[74.1,38],"shL":[-61.3,-113.7],"elL":[-53.3,-17],"haL":[-61.3,49.5],"hipR":[27.5,34.2],"knR":[19.7,174.1],"ftR":[16,309.5],"hipL":[-19.2,41.8],"knL":[-22.4,162.9],"ftL":[-24.4,318.3]},{"rootY":-3,"hips":[0,0],"chest":[-7,-84.2],"neck":[-7,-84.2],"head":[-22.1,-148.7],"shR":[45.8,-119.8],"elR":[64.8,-16.7],"haR":[72.4,37.8],"shL":[-62.4,-113.1],"elL":[-53.8,-16],"haL":[-62.1,50.5],"hipR":[26.2,34.9],"knR":[18.5,175.7],"ftR":[17.4,303.4],"hipL":[-20.6,41.4],"knL":[-23.4,164.2],"ftL":[-22.8,319.7]},{"rootY":-4.8,"hips":[0,0],"chest":[-7.3,-84.4],"neck":[-7.3,-84.4],"head":[-22.6,-148.8],"shR":[45.2,-120.2],"elR":[63.5,-17.1],"haR":[71.3,38.2],"shL":[-62.6,-112.9],"elL":[-53.7,-15.9],"haL":[-62.3,50.5],"hipR":[25.7,35],"knR":[18.9,177.5],"ftR":[19.6,296],"hipL":[-21.1,41.1],"knL":[-23.4,166.7],"ftL":[-20.2,321.8]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.5,-84.4],"neck":[-7.5,-84.4],"head":[-22.6,-148.9],"shR":[45.1,-120.3],"elR":[62.9,-17.3],"haR":[70.4,39],"shL":[-62.6,-112.7],"elL":[-53.6,-15.8],"haL":[-62.6,50.5],"hipR":[25.3,35.1],"knR":[20.6,180],"ftR":[20.9,289],"hipL":[-21.6,40.9],"knL":[-23.8,169],"ftL":[-17.9,323.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-23,-149],"shR":[44.6,-120.3],"elR":[62.1,-17.3],"haR":[69.1,39.9],"shL":[-63.2,-112.8],"elL":[-54.5,-16.2],"haL":[-63.8,50],"hipR":[24.1,35.6],"knR":[23,181.9],"ftR":[22,280.5],"hipL":[-22.9,40.2],"knL":[-24.6,170.8],"ftL":[-15.6,324.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-8.5,-84.5],"neck":[-8.5,-84.5],"head":[-23,-149.1],"shR":[44.3,-120.1],"elR":[61.1,-17.2],"haR":[67.6,40.8],"shL":[-63.7,-112.9],"elL":[-56.5,-16.3],"haL":[-65.8,49.7],"hipR":[22.4,36.3],"knR":[25.1,182.1],"ftR":[23.6,272.8],"hipL":[-24.6,39.1],"knL":[-25.7,171.9],"ftL":[-13,323.8]},{"rootY":-6.8,"hips":[0,0],"chest":[-8.3,-84.6],"neck":[-8.3,-84.6],"head":[-22.3,-149.3],"shR":[44.8,-119.8],"elR":[60.4,-16.8],"haR":[66.5,42],"shL":[-63.5,-113.6],"elL":[-58,-16.2],"haL":[-67.6,49.3],"hipR":[21.1,36.5],"knR":[27.8,180.5],"ftR":[25.1,266.5],"hipL":[-25.9,38],"knL":[-25.1,172.9],"ftL":[-9.8,323]},{"rootY":-6.2,"hips":[0,0],"chest":[-8.4,-84.7],"neck":[-8.4,-84.7],"head":[-21.8,-149.5],"shR":[45.1,-119.5],"elR":[58.5,-16.4],"haR":[64.5,42.9],"shL":[-63.5,-114.1],"elL":[-60,-15.8],"haL":[-70.2,49.3],"hipR":[20.5,36.4],"knR":[29.2,177.3],"ftR":[25.3,263],"hipL":[-26.5,37.4],"knL":[-24.1,174.3],"ftL":[-7.8,322.4]},{"rootY":-5.7,"hips":[0,0],"chest":[-8.2,-84.9],"neck":[-8.2,-84.9],"head":[-21.1,-149.8],"shR":[45.6,-119.2],"elR":[56.7,-15.9],"haR":[62.6,44.2],"shL":[-63.2,-114.5],"elL":[-62,-15.1],"haL":[-72.9,49.3],"hipR":[19.4,36.8],"knR":[29.2,173.4],"ftR":[26.1,263.9],"hipL":[-27.7,36.4],"knL":[-23.1,175.3],"ftL":[-5.5,321.8]},{"rootY":-6.2,"hips":[0,0],"chest":[-7.8,-85],"neck":[-7.8,-85],"head":[-20.2,-150],"shR":[46.3,-119],"elR":[54.8,-15.3],"haR":[60.5,46.2],"shL":[-62.8,-115],"elL":[-64,-14.6],"haL":[-75.6,49.1],"hipR":[18.6,37.1],"knR":[27,169.7],"ftR":[26.7,270.5],"hipL":[-28.4,36],"knL":[-22.8,176.1],"ftL":[-4,321.3]},{"rootY":-5.6,"hips":[0,0],"chest":[-7.4,-85.2],"neck":[-7.4,-85.2],"head":[-19,-150.2],"shR":[47,-118.6],"elR":[53,-14.8],"haR":[58.7,47.7],"shL":[-62.3,-115.3],"elL":[-65.4,-14.3],"haL":[-77.9,48.4],"hipR":[17.8,37.2],"knR":[24,165.7],"ftR":[26.6,279.9],"hipL":[-29.1,35.5],"knL":[-22.3,177.1],"ftL":[-2.4,320.5]},{"rootY":-5.3,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[-18.1,-150.4],"shR":[47.3,-118.2],"elR":[51.3,-14.3],"haR":[56.8,49.2],"shL":[-62.2,-115.8],"elL":[-67.3,-14.6],"haL":[-80.4,47],"hipR":[17.2,37.3],"knR":[20.1,162.3],"ftR":[24.5,291.2],"hipL":[-29.6,35.2],"knL":[-21.6,178.1],"ftL":[-0.5,320.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-7.2,-85.3],"neck":[-7.2,-85.3],"head":[-17.5,-150.4],"shR":[47.7,-117.7],"elR":[50.4,-13.9],"haR":[55.5,50.3],"shL":[-62.1,-116.3],"elL":[-69.1,-15],"haL":[-82.4,45.1],"hipR":[16.2,37.8],"knR":[16.8,160.8],"ftR":[21.8,303.1],"hipL":[-30.4,34.9],"knL":[-21.2,178.8],"ftL":[1.1,320]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.1,-85.3],"neck":[-7.1,-85.3],"head":[-16.7,-150.5],"shR":[48.1,-117.2],"elR":[49.9,-13.5],"haR":[54.5,51.3],"shL":[-61.7,-117],"elL":[-70.7,-15.7],"haL":[-83.7,42.6],"hipR":[15.5,38],"knR":[13.5,161.1],"ftR":[18.3,313.4],"hipL":[-30.9,34.8],"knL":[-20.5,179.4],"ftL":[2.9,320.2]},{"rootY":-7,"hips":[0,0],"chest":[-7,-85.3],"neck":[-7,-85.3],"head":[-15.7,-150.6],"shR":[48.5,-116.8],"elR":[49.7,-13.2],"haR":[53.6,52.1],"shL":[-61.4,-117.4],"elL":[-72.9,-16.4],"haL":[-84.8,39.7],"hipR":[15,38.4],"knR":[10.8,162.6],"ftR":[14.1,319.5],"hipL":[-31.3,34.9],"knL":[-19.4,179.6],"ftL":[4.7,320.1]},{"rootY":-6.6,"hips":[0,0],"chest":[-6.7,-85.4],"neck":[-6.7,-85.4],"head":[-14.7,-150.7],"shR":[48.9,-116.6],"elR":[49.4,-13.3],"haR":[52.9,52.3],"shL":[-61,-117.9],"elL":[-74.3,-17.1],"haL":[-85.6,36.8],"hipR":[14,38.7],"knR":[7.8,164.7],"ftR":[10.8,321.1],"hipL":[-32,34.6],"knL":[-18.4,178.8],"ftL":[6.2,319.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-6.9,-85.4],"neck":[-6.9,-85.4],"head":[-14.3,-150.7],"shR":[49,-116.1],"elR":[48.7,-13.2],"haR":[51.9,52.7],"shL":[-60.9,-118.4],"elL":[-75.9,-17.8],"haL":[-86.4,33.7],"hipR":[13.8,39],"knR":[4.5,165.1],"ftR":[7,319.4],"hipL":[-32.1,34.7],"knL":[-18,178.1],"ftL":[6,318.2]},{"rootY":-3,"hips":[0,0],"chest":[-6.7,-85.3],"neck":[-6.7,-85.3],"head":[-13.5,-150.7],"shR":[49.3,-115.8],"elR":[48.6,-13],"haR":[51.6,53.1],"shL":[-60.6,-118.7],"elL":[-76.9,-18.3],"haL":[-86.8,31.3],"hipR":[13.5,39.2],"knR":[3.7,164.3],"ftR":[4.3,319],"hipL":[-32.3,34.7],"knL":[-17.8,177.3],"ftL":[6.6,315]},{"rootY":-1.4,"hips":[0,0],"chest":[-6.4,-85.2],"neck":[-6.4,-85.2],"head":[-12.7,-150.7],"shR":[49.7,-115.5],"elR":[48.2,-13.1],"haR":[51.4,53.3],"shL":[-60.2,-118.9],"elL":[-77.3,-18.7],"haL":[-86.6,29.5],"hipR":[13.3,39.2],"knR":[2,163],"ftR":[3.5,319],"hipL":[-32.5,34.5],"knL":[-17,175.8],"ftL":[7.1,311.7]},{"rootY":-1.4,"hips":[0,0],"chest":[-6,-85.2],"neck":[-6,-85.2],"head":[-11,-150.7],"shR":[50.7,-114.6],"elR":[48.1,-12],"haR":[51.7,54.6],"shL":[-59.2,-120.1],"elL":[-75.9,-19.8],"haL":[-85.3,28.5],"hipR":[13.4,39.2],"knR":[0.8,162.6],"ftR":[4.1,319.3],"hipL":[-32.4,34.7],"knL":[-15.9,174.9],"ftL":[7.9,307.9]},{"rootY":-2.2,"hips":[0,0],"chest":[-5.4,-85.2],"neck":[-5.4,-85.2],"head":[-9.4,-150.6],"shR":[51.4,-114.1],"elR":[48,-11.6],"haR":[52.1,55.3],"shL":[-58.6,-120.2],"elL":[-74,-19.8],"haL":[-83.8,29.3],"hipR":[14.8,38.9],"knR":[1,163.3],"ftR":[4.9,320.5],"hipL":[-31.2,35.7],"knL":[-15.3,175.8],"ftL":[7.9,303.4]},{"rootY":-4,"hips":[0,0],"chest":[-5.1,-85.1],"neck":[-5.1,-85.1],"head":[-8.8,-150.6],"shR":[52.2,-113.3],"elR":[48.2,-10.9],"haR":[52.6,55.9],"shL":[-57.7,-121.1],"elL":[-71.9,-20.7],"haL":[-81.8,30.2],"hipR":[15,39],"knR":[1.7,165.4],"ftR":[6.1,322.5],"hipL":[-31,35.9],"knL":[-15.9,176.3],"ftL":[6.8,298.6]},{"rootY":-6.1,"hips":[0,0],"chest":[-4.5,-85.1],"neck":[-4.5,-85.1],"head":[-7.7,-150.6],"shR":[53.1,-112.7],"elR":[49,-10.4],"haR":[53.5,56.4],"shL":[-56.7,-121.8],"elL":[-69.8,-21.6],"haL":[-79.5,31.2],"hipR":[15.4,38.7],"knR":[2.6,167.7],"ftR":[7,324.3],"hipL":[-30.6,36.2],"knL":[-17.8,177.9],"ftL":[6.1,293.1]},{"rootY":-8.5,"hips":[0,0],"chest":[-4,-85.1],"neck":[-4,-85.1],"head":[-6.9,-150.6],"shR":[53.6,-112.5],"elR":[49.9,-10.3],"haR":[54.3,56.4],"shL":[-56.2,-121.6],"elL":[-68.9,-22],"haL":[-78,33.3],"hipR":[16.4,38.3],"knR":[3.1,170.1],"ftR":[7,326],"hipL":[-29.8,36.9],"knL":[-21.6,180.7],"ftL":[4,288.3]},{"rootY":-9.4,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.8,-150.6],"shR":[53.7,-112.5],"elR":[50.9,-10.4],"haR":[55,56.1],"shL":[-56,-121.6],"elL":[-67.9,-22.3],"haL":[-76.4,34.7],"hipR":[17.4,37.7],"knR":[3.5,171.7],"ftR":[7.1,326.6],"hipL":[-28.8,37.4],"knL":[-26.3,182.4],"ftL":[2.6,281.7]},{"rootY":-9.9,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.9,-150.6],"shR":[53.6,-112.7],"elR":[52.4,-10.5],"haR":[56.2,55.7],"shL":[-55.8,-121.5],"elL":[-66.8,-22.7],"haL":[-74.9,35.7],"hipR":[18.3,37],"knR":[3,173],"ftR":[7.1,326.7],"hipL":[-27.9,37.9],"knL":[-31.9,183],"ftL":[0.7,275.5]},{"rootY":-10,"hips":[0,0],"chest":[-4.4,-84.9],"neck":[-4.4,-84.9],"head":[-7.6,-150.5],"shR":[52.8,-113],"elR":[53.3,-10.5],"haR":[56.9,55.3],"shL":[-56.4,-120.9],"elL":[-65.9,-22.7],"haL":[-73.9,36.8],"hipR":[19,36.2],"knR":[1.8,173.9],"ftR":[6.7,326.1],"hipL":[-27.2,38.2],"knL":[-37.9,182.2],"ftL":[-1.4,269.7]},{"rootY":-9.2,"hips":[0,0],"chest":[-4.8,-84.8],"neck":[-4.8,-84.8],"head":[-8.3,-150.4],"shR":[52.2,-113.4],"elR":[54.4,-10.5],"haR":[58,54.8],"shL":[-56.6,-120.6],"elL":[-63.8,-22.8],"haL":[-72.2,37.9],"hipR":[19.2,35.7],"knR":[1.5,174.9],"ftR":[7.1,325.4],"hipL":[-26.9,38.4],"knL":[-43.9,179.9],"ftL":[-4,267]},{"rootY":-9.3,"hips":[0,0],"chest":[-5.3,-84.8],"neck":[-5.3,-84.8],"head":[-9.4,-150.4],"shR":[51.5,-113.7],"elR":[55.2,-10.4],"haR":[59.1,54.4],"shL":[-56.7,-120.3],"elL":[-60.9,-22.6],"haL":[-70.3,39.2],"hipR":[19.2,35.5],"knR":[1.5,176.1],"ftR":[8,325],"hipL":[-26.7,38.6],"knL":[-48.5,177.1],"ftL":[-7.5,269.3]},{"rootY":-9.2,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[-10.6,-150.4],"shR":[50.6,-113.8],"elR":[55.9,-10.2],"haR":[60.1,53.9],"shL":[-56.3,-120.4],"elL":[-57.1,-22.8],"haL":[-67.7,39.8],"hipR":[19.6,35.1],"knR":[1.7,177.2],"ftR":[9.4,324.4],"hipL":[-26.1,39.1],"knL":[-51.8,174.2],"ftL":[-12.1,275.2]},{"rootY":-9.2,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-11.8,-150.4],"shR":[49.7,-114.1],"elR":[57,-10.5],"haR":[61.3,52.9],"shL":[-56.1,-120],"elL":[-53.6,-22],"haL":[-65.2,41.5],"hipR":[20.3,34.5],"knR":[2.5,177.7],"ftR":[11,323.7],"hipL":[-25.2,39.7],"knL":[-54,171.4],"ftL":[-17.1,284.3]},{"rootY":-9.9,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-12.6,-150.4],"shR":[48.9,-114.5],"elR":[58.6,-10.7],"haR":[62.5,51.9],"shL":[-55.5,-119.7],"elL":[-50.4,-21.6],"haL":[-62.8,42.5],"hipR":[20.4,34.3],"knR":[4.2,178.6],"ftR":[13.4,323.3],"hipL":[-24.9,40],"knL":[-54.6,169.1],"ftL":[-21.9,295.3]},{"rootY":-11.1,"hips":[0,0],"chest":[-6.2,-84.7],"neck":[-6.2,-84.7],"head":[-13.9,-150.2],"shR":[48,-115],"elR":[60,-11.3],"haR":[63.5,50.4],"shL":[-55.1,-119],"elL":[-48.3,-21.2],"haL":[-60.6,43.5],"hipR":[20.8,34],"knR":[6.5,179.2],"ftR":[15.7,323.3],"hipL":[-24.2,40.6],"knL":[-54.6,167.8],"ftL":[-28,306.7]},{"rootY":-11.6,"hips":[0,0],"chest":[-7.8,-84.4],"neck":[-7.8,-84.4],"head":[-16.3,-149.9],"shR":[45.6,-115.2],"elR":[60.1,-11.5],"haR":[62.6,49.3],"shL":[-56.2,-118.4],"elL":[-47.8,-21],"haL":[-60.2,43.9],"hipR":[21.2,33.8],"knR":[7,179.4],"ftR":[16.7,323.5],"hipL":[-23.6,41],"knL":[-54.5,167.1],"ftL":[-37.3,316.2]},{"rootY":-12.4,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-16.9,-149.9],"shR":[44.5,-115.8],"elR":[61.3,-12.4],"haR":[62.7,47.6],"shL":[-55.5,-117.8],"elL":[-45.9,-20.7],"haL":[-58.2,44.4],"hipR":[20.1,34.6],"knR":[9.9,180.5],"ftR":[20.7,324.1],"hipL":[-24.5,40.8],"knL":[-52.9,168.1],"ftL":[-44.8,322.6]},{"rootY":-11.8,"hips":[0,0],"chest":[-7.8,-84.7],"neck":[-7.8,-84.7],"head":[-17.1,-150.1],"shR":[44.1,-116.5],"elR":[63.3,-13.3],"haR":[63.6,45.9],"shL":[-55,-117.6],"elL":[-44.2,-20.9],"haL":[-56.6,44.3],"hipR":[20,34.6],"knR":[14.4,179.9],"ftR":[25,323.9],"hipL":[-24.4,41.1],"knL":[-51,168.6],"ftL":[-52.1,324.1]},{"rootY":-10.4,"hips":[0,0],"chest":[-7.4,-84.9],"neck":[-7.4,-84.9],"head":[-17,-150.2],"shR":[43.9,-117.1],"elR":[64.2,-14.1],"haR":[63.8,43.7],"shL":[-54.2,-117.4],"elL":[-42.2,-20.7],"haL":[-54.5,44.6],"hipR":[19.5,34.9],"knR":[19.3,178.9],"ftR":[30.1,323],"hipL":[-24.7,41.1],"knL":[-50.8,167.4],"ftL":[-56.3,322]},{"rootY":-7.5,"hips":[0,0],"chest":[-8.7,-84.5],"neck":[-8.7,-84.5],"head":[-18.5,-149.8],"shR":[42,-117.1],"elR":[63.1,-14.3],"haR":[61.9,42.2],"shL":[-55.3,-116.7],"elL":[-41.9,-20.1],"haL":[-54.6,45.2],"hipR":[21.4,33.8],"knR":[20,177.1],"ftR":[31.5,319.9],"hipL":[-22.3,42.4],"knL":[-51.3,166.5],"ftL":[-59.5,320.7]},{"rootY":-5,"hips":[0,0],"chest":[-10.2,-84.4],"neck":[-10.2,-84.4],"head":[-19.8,-149.7],"shR":[40,-117.2],"elR":[61.3,-14.4],"haR":[59.9,41.2],"shL":[-56.6,-116.5],"elL":[-41.8,-19.7],"haL":[-54.4,45.7],"hipR":[20.6,34.2],"knR":[20.3,177],"ftR":[35.1,316.4],"hipL":[-23,42.1],"knL":[-51.9,166],"ftL":[-57.1,320.9]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-84.3],"neck":[-10.4,-84.3],"head":[-19.6,-149.7],"shR":[38.9,-117.7],"elR":[60.1,-15],"haR":[58.6,40.2],"shL":[-55.7,-115.6],"elL":[-39.8,-18.4],"haL":[-52,47.3],"hipR":[21.4,33.8],"knR":[22.6,175.5],"ftR":[39.3,312.4],"hipL":[-22.5,42.3],"knL":[-51.1,166.1],"ftL":[-52.9,321.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-11.3,-84.3],"neck":[-11.3,-84.3],"head":[-20.5,-149.6],"shR":[37.4,-118.6],"elR":[57.4,-15.6],"haR":[56,39.8],"shL":[-56.3,-114.5],"elL":[-39.3,-17.1],"haL":[-51.3,48.7],"hipR":[19.9,35.1],"knR":[21.7,176.7],"ftR":[43.3,308.5],"hipL":[-24.1,41.5],"knL":[-50.6,166.7],"ftL":[-48.3,322.2]},{"rootY":-7.4,"hips":[0,0],"chest":[-11.2,-84.5],"neck":[-11.2,-84.5],"head":[-20.8,-149.6],"shR":[37.2,-119],"elR":[55.6,-15.7],"haR":[54.2,40],"shL":[-56.3,-114.4],"elL":[-38.8,-16.4],"haL":[-50.3,49.5],"hipR":[18.7,35.5],"knR":[20.1,178.3],"ftR":[47.2,302.2],"hipL":[-25.1,41.1],"knL":[-50.2,168.7],"ftL":[-42.6,323.9]},{"rootY":-8.9,"hips":[0,0],"chest":[-11,-84.7],"neck":[-11,-84.7],"head":[-20.1,-149.8],"shR":[37.6,-119.1],"elR":[55.4,-15.6],"haR":[53.3,40.9],"shL":[-55.9,-114.6],"elL":[-37.8,-16.8],"haL":[-48.8,49.1],"hipR":[18.5,35.2],"knR":[19.1,179.6],"ftR":[49.6,294.8],"hipL":[-25.2,40.9],"knL":[-49.8,170.9],"ftL":[-38,325.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-10.7,-84.8],"neck":[-10.7,-84.8],"head":[-19.3,-150],"shR":[38.2,-119.2],"elR":[55.5,-15.7],"haR":[52.8,41.2],"shL":[-55.6,-114.5],"elL":[-38,-16.4],"haL":[-48.3,49.7],"hipR":[17.6,35.3],"knR":[18,181.2],"ftR":[50.8,287.5],"hipL":[-26,40.4],"knL":[-49.5,172.3],"ftL":[-32.7,326]},{"rootY":-9.2,"hips":[0,0],"chest":[-10.9,-84.9],"neck":[-10.9,-84.9],"head":[-18.8,-150.1],"shR":[38.3,-119.2],"elR":[55.1,-15.7],"haR":[51.6,41.2],"shL":[-55.7,-114.6],"elL":[-38.5,-16.8],"haL":[-49.2,48.9],"hipR":[15.3,36.4],"knR":[16.2,182.7],"ftR":[51.5,280.1],"hipL":[-28.1,39.2],"knL":[-48.7,172.9],"ftL":[-26.4,325.3]},{"rootY":-7.9,"hips":[0,0],"chest":[-10.5,-85],"neck":[-10.5,-85],"head":[-17.7,-150.3],"shR":[39.1,-119],"elR":[54.9,-15.5],"haR":[50.3,41.6],"shL":[-55.4,-114.8],"elL":[-40.1,-16.8],"haL":[-51.1,48.5],"hipR":[13.6,36.6],"knR":[14.7,181.8],"ftR":[51.6,272.6],"hipL":[-29.5,38.1],"knL":[-47.5,173.2],"ftL":[-20.1,323.9]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.9,-150.3],"shR":[39.8,-118.3],"elR":[54.1,-14.6],"haR":[49.2,43.1],"shL":[-55,-115.7],"elL":[-42.6,-16.7],"haL":[-54.9,48.1],"hipR":[13.7,36],"knR":[12.3,178.9],"ftR":[49.1,266.5],"hipL":[-29.4,38.1],"knL":[-46.2,174],"ftL":[-15.6,322.6]},{"rootY":-4.9,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.2,-150.3],"shR":[40,-117.8],"elR":[52.7,-14.1],"haR":[47.4,44.5],"shL":[-54.8,-116.3],"elL":[-44.8,-16.6],"haL":[-59.1,47.4],"hipR":[13.1,35.8],"knR":[8.7,175.4],"ftR":[45.5,263.8],"hipL":[-30,37.6],"knL":[-45.4,174.4],"ftL":[-11.5,320.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-10.4,-85],"neck":[-10.4,-85],"head":[-15.3,-150.6],"shR":[40.3,-117.2],"elR":[50.6,-13.3],"haR":[46.1,46.5],"shL":[-54.8,-117],"elL":[-47,-16.9],"haL":[-63.7,45.8],"hipR":[11.1,36.7],"knR":[4,171.9],"ftR":[42.5,266.6],"hipL":[-31.6,36.4],"knL":[-44.2,174.5],"ftL":[-7.4,319.3]},{"rootY":-2.7,"hips":[0,0],"chest":[-9.5,-85.2],"neck":[-9.5,-85.2],"head":[-13.8,-150.8],"shR":[41.5,-117],"elR":[49.7,-12.8],"haR":[45.9,48.2],"shL":[-53.8,-117.5],"elL":[-48.3,-17],"haL":[-67.6,44],"hipR":[9.8,37],"knR":[-0.7,168.6],"ftR":[39.1,273.2],"hipL":[-32.6,35.6],"knL":[-42.2,175.2],"ftL":[-2.4,318.1]},{"rootY":-2.4,"hips":[0,0],"chest":[-9.4,-85.2],"neck":[-9.4,-85.2],"head":[-13.4,-150.7],"shR":[41.9,-116.6],"elR":[48.1,-12.3],"haR":[45.2,49.8],"shL":[-53.3,-117.7],"elL":[-50.2,-17.1],"haL":[-72,41.9],"hipR":[9.1,36.9],"knR":[-7.2,165.1],"ftR":[32.5,283],"hipL":[-33,35.3],"knL":[-40.3,176.3],"ftL":[0.9,317.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-12.3,-150.9],"shR":[42.4,-116.4],"elR":[47.6,-12.1],"haR":[45.4,51],"shL":[-52.5,-117.8],"elL":[-51.8,-17.2],"haL":[-76.1,39.6],"hipR":[7.6,37.4],"knR":[-12.6,163],"ftR":[25.1,294.6],"hipL":[-33.9,34.6],"knL":[-37.4,176.9],"ftL":[5.3,317.7]},{"rootY":-4.5,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-11.7,-150.9],"shR":[42.4,-115.7],"elR":[47.3,-11.6],"haR":[45.2,52.1],"shL":[-52.5,-118.5],"elL":[-54.4,-18],"haL":[-80.5,36.9],"hipR":[7.7,37.6],"knR":[-17.3,162.2],"ftR":[15.5,306],"hipL":[-33.6,35],"knL":[-34.7,178.4],"ftL":[7.9,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-10.5,-151],"shR":[43.3,-115.3],"elR":[48.5,-11.4],"haR":[46.5,52.8],"shL":[-51.3,-119],"elL":[-55.6,-18.7],"haL":[-83.8,34.2],"hipR":[5.1,38],"knR":[-19.8,163.5],"ftR":[7.6,316],"hipL":[-34.8,33.9],"knL":[-31.3,178.3],"ftL":[12.6,319.2]},{"rootY":-8.3,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-9.8,-151.1],"shR":[43.3,-115],"elR":[49.7,-11.4],"haR":[47.1,53.4],"shL":[-50.8,-119.1],"elL":[-57.3,-19],"haL":[-86.7,32.2],"hipR":[6.6,37.8],"knR":[-22,164.7],"ftR":[-2.5,320.7],"hipL":[-33.4,35.3],"knL":[-28.5,180.2],"ftL":[13.9,320.9]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.9,-85.4],"neck":[-8.9,-85.4],"head":[-9.2,-151.1],"shR":[42.8,-114.8],"elR":[49.9,-11.5],"haR":[47.1,53.5],"shL":[-49.8,-119.4],"elL":[-58.2,-19.7],"haL":[-89.2,29.7],"hipR":[4.3,38.4],"knR":[-19.7,169.6],"ftR":[-4.4,324.8],"hipL":[-34.3,34.5],"knL":[-28.3,179.5],"ftL":[16,318.1]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-9,-151.1],"shR":[41.9,-114.3],"elR":[49.9,-11.4],"haR":[46.9,53.9],"shL":[-49.5,-119.9],"elL":[-59.3,-20.4],"haL":[-91.7,27.9],"hipR":[3.3,38.6],"knR":[-18.9,171.4],"ftR":[-14.7,324.6],"hipL":[-34.3,34.5],"knL":[-28.5,179.6],"ftL":[17.5,316.4]},{"rootY":-2.5,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-8.7,-150.8],"shR":[41.1,-114.3],"elR":[50.2,-11.8],"haR":[47,53.9],"shL":[-47.8,-119.7],"elL":[-58.5,-20.4],"haL":[-92.3,26.8],"hipR":[3,38.5],"knR":[-20.7,170.6],"ftR":[-17.3,323.8],"hipL":[-33.9,34.8],"knL":[-27.5,179.9],"ftL":[20.6,314.7]},{"rootY":0.8,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[-9.2,-151],"shR":[39.3,-114.3],"elR":[48.9,-12.3],"haR":[45.9,53.5],"shL":[-47.6,-119.4],"elL":[-57.6,-20.2],"haL":[-93.6,26.4],"hipR":[1,38.9],"knR":[-25.5,170.1],"ftR":[-16.3,324.3],"hipL":[-34.7,33.8],"knL":[-28.4,178.9],"ftL":[22.9,310.3]},{"rootY":3.3,"hips":[0,0],"chest":[-11,-85.1],"neck":[-11,-85.1],"head":[-9.4,-150.8],"shR":[37.5,-114.1],"elR":[47.3,-11.7],"haR":[44.6,54.8],"shL":[-47.6,-120],"elL":[-56.2,-20.7],"haL":[-92.9,25.9],"hipR":[-0.4,38.8],"knR":[-29.5,170.7],"ftR":[-14.6,325.6],"hipL":[-34.7,33.6],"knL":[-29.5,178.7],"ftL":[24.9,306.2]},{"rootY":2.7,"hips":[0,0],"chest":[-11.3,-85.1],"neck":[-11.3,-85.1],"head":[-9.1,-150.8],"shR":[36.1,-113.9],"elR":[45.7,-11.5],"haR":[43.6,55.4],"shL":[-46.9,-120.4],"elL":[-53.4,-20.4],"haL":[-91.9,27.8],"hipR":[-1.4,38.8],"knR":[-34.6,170.2],"ftR":[-18.9,325.4],"hipL":[-34.3,33.7],"knL":[-29.4,178.6],"ftL":[27.2,303.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-11.7,-85],"neck":[-11.7,-85],"head":[-9.1,-150.7],"shR":[34,-113.8],"elR":[44.2,-11.4],"haR":[42.7,55.7],"shL":[-44.5,-120],"elL":[-47.7,-20],"haL":[-86.4,29.8],"hipR":[-1.5,38.3],"knR":[-43.8,166.3],"ftR":[-26.4,321.8],"hipL":[-33.5,34.4],"knL":[-24.7,178.4],"ftL":[28.8,305.4]},{"rootY":-4,"hips":[0,0],"chest":[-11.9,-85],"neck":[-11.9,-85],"head":[-9.1,-150.8],"shR":[32,-114.2],"elR":[43.1,-11.7],"haR":[41.7,55.5],"shL":[-42.7,-119.6],"elL":[-39.9,-21.9],"haL":[-77.2,28.3],"hipR":[-1.5,38.2],"knR":[-45.6,166.8],"ftR":[-24.2,322.4],"hipL":[-32.8,35],"knL":[-25.4,178.7],"ftL":[28.8,302.6]},{"rootY":-5.5,"hips":[0,0],"chest":[-12.2,-85],"neck":[-12.2,-85],"head":[-9.3,-150.7],"shR":[29.8,-114],"elR":[42,-11.3],"haR":[39.7,55.8],"shL":[-41.1,-119.9],"elL":[-37,-20.3],"haL":[-72.8,34.5],"hipR":[-2.2,37.8],"knR":[-47.3,168.3],"ftR":[-21.9,323.5],"hipL":[-32,35.5],"knL":[-26.1,179],"ftL":[29.2,300.1]},{"rootY":-6.7,"hips":[0,0],"chest":[-12.4,-84.9],"neck":[-12.4,-84.9],"head":[-9.4,-150.7],"shR":[26.9,-114.4],"elR":[40.3,-11.6],"haR":[36.7,55.3],"shL":[-38.3,-119.4],"elL":[-31.4,-20],"haL":[-64.2,37.7],"hipR":[-2.8,37.6],"knR":[-48,170],"ftR":[-19.3,324.5],"hipL":[-31.1,36],"knL":[-26.6,179.3],"ftL":[31.3,297.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[-10.5,-150.7],"shR":[24.4,-113.6],"elR":[39.2,-10.6],"haR":[33.9,55.9],"shL":[-37.8,-120.2],"elL":[-29.1,-21],"haL":[-58.3,39],"hipR":[-3.4,37.2],"knR":[-48.3,171.3],"ftR":[-17.1,325.2],"hipL":[-29.4,37.1],"knL":[-28.3,180.5],"ftL":[34,295.5]},{"rootY":-8.2,"hips":[0,0],"chest":[-14.4,-84.6],"neck":[-14.4,-84.6],"head":[-11.2,-150.5],"shR":[20.4,-112.8],"elR":[38.3,-9.8],"haR":[30,56.1],"shL":[-36,-120.8],"elL":[-24.1,-22.1],"haL":[-49.9,39.7],"hipR":[-4.8,37.3],"knR":[-49.6,172.4],"ftR":[-15.5,325.5],"hipL":[-28.1,37.4],"knL":[-29.6,181],"ftL":[39,292]},{"rootY":-8.9,"hips":[0,0],"chest":[-15.6,-84.4],"neck":[-15.6,-84.4],"head":[-13.1,-150.3],"shR":[16,-112.5],"elR":[35.3,-9.5],"haR":[24.8,55.6],"shL":[-34.4,-120.7],"elL":[-20.7,-21.9],"haL":[-42.7,41.2],"hipR":[-6.4,37.3],"knR":[-50.2,173.6],"ftR":[-13.8,325.9],"hipL":[-26.6,37.8],"knL":[-30.4,181.6],"ftL":[46.1,288.4]},{"rootY":-9.2,"hips":[0,0],"chest":[-17.5,-84],"neck":[-17.5,-84],"head":[-15.2,-149.9],"shR":[11.1,-111.4],"elR":[31.8,-8.5],"haR":[18.8,55.6],"shL":[-34.2,-121.4],"elL":[-16.8,-23.2],"haL":[-37.1,40.3],"hipR":[-7.8,37.6],"knR":[-51.5,174.8],"ftR":[-12.6,326.2],"hipL":[-25.4,37.9],"knL":[-32,181.6],"ftL":[54,284.5]},{"rootY":-10.1,"hips":[0,0],"chest":[-18.9,-83.8],"neck":[-18.9,-83.8],"head":[-16.4,-149.6],"shR":[4.9,-111.1],"elR":[27.1,-8.6],"haR":[11.9,54.6],"shL":[-31.7,-121.3],"elL":[-11.7,-23.6],"haL":[-30.7,40.2],"hipR":[-9,37.7],"knR":[-52.4,175.8],"ftR":[-12,326.7],"hipL":[-23.7,38.2],"knL":[-34.5,181.8],"ftL":[60.6,283.4]},{"rootY":-10.8,"hips":[0,0],"chest":[-19.6,-83.6],"neck":[-19.6,-83.6],"head":[-18.2,-149.4],"shR":[-0.8,-110.6],"elR":[22.5,-8.6],"haR":[5.1,53.6],"shL":[-28.6,-121.6],"elL":[-5.2,-24.9],"haL":[-24.1,38.8],"hipR":[-10.6,38.1],"knR":[-53.5,176.8],"ftR":[-11.1,327.1],"hipL":[-21.7,38.3],"knL":[-35.7,181.8],"ftL":[66.1,284.2]},{"rootY":-11.1,"hips":[0,0],"chest":[-20.5,-83.4],"neck":[-20.5,-83.4],"head":[-19.2,-149.2],"shR":[-6.9,-110.6],"elR":[17.9,-9.6],"haR":[-1.8,51.9],"shL":[-25.1,-121.2],"elL":[1.4,-25.1],"haL":[-18.2,38.2],"hipR":[-12.2,38.3],"knR":[-54.7,177.7],"ftR":[-10.1,327.4],"hipL":[-19.8,38.2],"knL":[-36,181.7],"ftL":[70.5,286.5]},{"rootY":-11.4,"hips":[0,0],"chest":[-20.8,-83.4],"neck":[-20.8,-83.4],"head":[-19.8,-149.1],"shR":[-12.1,-110.4],"elR":[12.3,-10],"haR":[-8.9,50.8],"shL":[-20.9,-121.4],"elL":[7.9,-25.6],"haL":[-13,37.1],"hipR":[-14.1,38.2],"knR":[-55.5,178.4],"ftR":[-8.5,327.4],"hipL":[-18.1,38.3],"knL":[-35,181.5],"ftL":[73.6,290]},{"rootY":-11.7,"hips":[0,0],"chest":[-20.6,-83.4],"neck":[-20.6,-83.4],"head":[-20.4,-149.4],"shR":[-16.8,-109.8],"elR":[7.4,-10.1],"haR":[-15.8,50.2],"shL":[-16.1,-122.1],"elL":[14.6,-26.5],"haL":[-7.5,35.5],"hipR":[-15.6,38.6],"knR":[-56.5,179],"ftR":[-7,327.4],"hipL":[-15.4,38.3],"knL":[-31.9,181.8],"ftL":[75.9,293.6]},{"rootY":-11.2,"hips":[0,0],"chest":[-20.7,-83.4],"neck":[-20.7,-83.4],"head":[-20.4,-149.3],"shR":[-20.9,-109.4],"elR":[2.6,-10.5],"haR":[-22.5,49.4],"shL":[-12.1,-122.3],"elL":[19.8,-26.7],"haL":[-3.3,34.6],"hipR":[-17.6,38.4],"knR":[-57.1,179.3],"ftR":[-5.6,327.2],"hipL":[-13.2,38.3],"knL":[-28.3,181.8],"ftL":[75.3,296.9]},{"rootY":-11,"hips":[0,0],"chest":[-19.9,-83.6],"neck":[-19.9,-83.6],"head":[-19.4,-149.5],"shR":[-24.7,-109.6],"elR":[-2.1,-11.3],"haR":[-28.8,48.3],"shL":[-7.8,-122.5],"elL":[24.5,-26.6],"haL":[0.7,34],"hipR":[-19.3,38.4],"knR":[-57.6,179.5],"ftR":[-4.3,326.9],"hipL":[-10.6,38.4],"knL":[-23.7,182.3],"ftL":[72.8,300.7]},{"rootY":-10.4,"hips":[0,0],"chest":[-19.7,-83.6],"neck":[-19.7,-83.6],"head":[-18.5,-149.5],"shR":[-28.7,-109.8],"elR":[-7.5,-11.3],"haR":[-35.4,48.1],"shL":[-3.3,-122.3],"elL":[28.6,-26.1],"haL":[4.6,33.9],"hipR":[-21.2,38.1],"knR":[-59,179.1],"ftR":[-3.8,326],"hipL":[-7.9,38.8],"knL":[-18.6,183.1],"ftL":[67.6,304.4]},{"rootY":-10.2,"hips":[0,0],"chest":[-19.2,-83.6],"neck":[-19.2,-83.6],"head":[-18.8,-149.6],"shR":[-32.1,-109],"elR":[-12.2,-10.6],"haR":[-41.5,48.8],"shL":[0.7,-122.9],"elL":[32,-26.2],"haL":[7.9,33.2],"hipR":[-22.7,38.1],"knR":[-60.3,178.7],"ftR":[-3,325],"hipL":[-5.1,39],"knL":[-13.4,183.5],"ftL":[59.7,307.7]},{"rootY":-1.9,"hips":[0,0],"chest":[-18,-83.8],"neck":[-18,-83.8],"head":[-16.7,-149.7],"shR":[-35.5,-109.3],"elR":[-18,-10.2],"haR":[-47.4,49.4],"shL":[6.2,-122.8],"elL":[36.4,-25.8],"haL":[13.3,33.5],"hipR":[-23.7,38.4],"knR":[-52.9,180.5],"ftR":[4.3,324.3],"hipL":[-2.5,38.6],"knL":[-14.2,182.6],"ftL":[50.3,302.8]},{"rootY":-1.2,"hips":[0,0],"chest":[-17.1,-83.8],"neck":[-17.1,-83.8],"head":[-15.2,-149.6],"shR":[-38.7,-109.4],"elR":[-22.5,-9.8],"haR":[-52.8,49.9],"shL":[10.8,-122.8],"elL":[40.2,-25.5],"haL":[17.2,33.4],"hipR":[-24.8,38.4],"knR":[-52.9,180.3],"ftR":[5.2,324.1],"hipL":[0.7,38.7],"knL":[-10.8,183],"ftL":[44.2,304.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-14.1,-149.5],"shR":[-42,-109.3],"elR":[-27.4,-9],"haR":[-58.2,50.8],"shL":[15.7,-122.7],"elL":[44.1,-25.1],"haL":[21.8,33.6],"hipR":[-25.4,38.7],"knR":[-53.3,180.1],"ftR":[6.6,324.2],"hipL":[4.1,38.4],"knL":[-8.8,182.8],"ftL":[40.1,308.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-14.5,-83.9],"neck":[-14.5,-83.9],"head":[-12.5,-149.7],"shR":[-44.9,-109.7],"elR":[-31.4,-9.2],"haR":[-62.4,50.9],"shL":[20.8,-122.7],"elL":[48.9,-25.1],"haL":[26.1,33.4],"hipR":[-25.9,38.7],"knR":[-55.1,179.5],"ftR":[6.7,323.2],"hipL":[6,38.2],"knL":[-7.5,182.6],"ftL":[38.8,311]},{"rootY":0,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-11.2,-149.7],"shR":[-47.2,-110],"elR":[-34.4,-9.2],"haR":[-65.3,51],"shL":[26.3,-122.4],"elL":[53.2,-24.6],"haL":[33,33.5],"hipR":[-26.2,38.7],"knR":[-56.3,178.8],"ftR":[8.7,321.5],"hipL":[8.1,38.1],"knL":[-4,182.6],"ftL":[39.4,313.4]},{"rootY":1.1,"hips":[0,0],"chest":[-11.3,-84.2],"neck":[-11.3,-84.2],"head":[-9.4,-149.9],"shR":[-49.9,-111.1],"elR":[-38.6,-10.1],"haR":[-68.8,50.3],"shL":[30.8,-121.9],"elL":[56.8,-23.9],"haL":[38,33.9],"hipR":[-26.2,38.8],"knR":[-57.7,178.4],"ftR":[9.2,320.6],"hipL":[9.9,37.9],"knL":[-2.2,182.3],"ftL":[39.3,314.2]},{"rootY":1.8,"hips":[0,0],"chest":[-9.9,-83.8],"neck":[-9.9,-83.8],"head":[-7.5,-149.5],"shR":[-51.4,-109.6],"elR":[-41.9,-8.4],"haR":[-71,52],"shL":[34.3,-122.4],"elL":[59.3,-24.3],"haL":[42.5,33.3],"hipR":[-26.1,38.9],"knR":[-57.2,178.4],"ftR":[9.4,320.8],"hipL":[12.1,37.7],"knL":[0.2,181.7],"ftL":[37.1,314.3]},{"rootY":1.8,"hips":[0,0],"chest":[-9.3,-83.8],"neck":[-9.3,-83.8],"head":[-6.1,-149.5],"shR":[-53.4,-110.3],"elR":[-45.7,-8.9],"haR":[-73.3,51.4],"shL":[37.1,-121.8],"elL":[60.6,-23.5],"haL":[47.1,34],"hipR":[-25.8,39],"knR":[-59.2,177.6],"ftR":[7.2,320],"hipL":[14.1,37.4],"knL":[1.4,181],"ftL":[34.5,314.4]},{"rootY":2.2,"hips":[0,0],"chest":[-8.8,-83.7],"neck":[-8.8,-83.7],"head":[-4.8,-149.4],"shR":[-55.6,-110.9],"elR":[-49.5,-9.3],"haR":[-75.6,50.7],"shL":[40.1,-121],"elL":[61.8,-22.4],"haL":[52.3,35.3],"hipR":[-25.5,39.1],"knR":[-61.3,176.4],"ftR":[5.3,318.7],"hipL":[15.7,37.1],"knL":[2.3,180.1],"ftL":[32.3,314.3]},{"rootY":2.5,"hips":[0,0],"chest":[-7.8,-83.6],"neck":[-7.8,-83.6],"head":[-3.1,-149.2],"shR":[-56.8,-111.2],"elR":[-52.7,-9.7],"haR":[-76.8,49.8],"shL":[42.7,-120.5],"elL":[62.6,-21.7],"haL":[57.5,35.4],"hipR":[-25.2,39.1],"knR":[-63.3,174.9],"ftR":[3.8,316.6],"hipL":[16.9,36.8],"knL":[3.4,179.4],"ftL":[30.3,314.4]},{"rootY":2.7,"hips":[0,0],"chest":[-6.5,-83.5],"neck":[-6.5,-83.5],"head":[-0.8,-149.1],"shR":[-57.4,-111.2],"elR":[-55.7,-9.7],"haR":[-77.9,49.3],"shL":[45.2,-120.2],"elL":[63.7,-21.5],"haL":[63.2,36.6],"hipR":[-24.9,39],"knR":[-63.7,173.9],"ftR":[3.5,314.6],"hipL":[18.2,36.6],"knL":[4.8,179],"ftL":[29,314.9]},{"rootY":-6.3,"hips":[0,0],"chest":[-5.8,-83.7],"neck":[-5.8,-83.7],"head":[0.7,-149.3],"shR":[-58.6,-114],"elR":[-58.5,-12.1],"haR":[-78.8,46.4],"shL":[47.9,-118.6],"elL":[65,-19.5],"haL":[69.6,39.2],"hipR":[-24.8,38.9],"knR":[-66.7,172.1],"ftR":[-17.7,314],"hipL":[19.1,36.6],"knL":[9.1,180.4],"ftL":[28.7,320.5]},{"rootY":-6.3,"hips":[0,0],"chest":[-4.1,-84],"neck":[-4.1,-84],"head":[3.2,-149.4],"shR":[-57,-113.2],"elR":[-58.5,-11],"haR":[-77.4,47.1],"shL":[49.9,-119.1],"elL":[66,-20.2],"haL":[74.7,39.4],"hipR":[-24.3,38.9],"knR":[-62.1,173.3],"ftR":[-21.6,314.2],"hipL":[20.3,36.4],"knL":[12.6,180.8],"ftL":[28.2,324.1]},{"rootY":-6.9,"hips":[0,0],"chest":[-2.5,-84.1],"neck":[-2.5,-84.1],"head":[5.5,-149.6],"shR":[-55.9,-113.6],"elR":[-58.3,-11],"haR":[-75.7,47.1],"shL":[52.1,-118.9],"elL":[67.6,-20],"haL":[80.4,40.6],"hipR":[-24.2,38.6],"knR":[-55.4,175.2],"ftR":[-26.7,316.3],"hipL":[21,36.5],"knL":[14.1,180.9],"ftL":[28.3,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[-1.2,-84.2],"neck":[-1.2,-84.2],"head":[7.7,-149.5],"shR":[-55.1,-114.3],"elR":[-57.8,-11.5],"haR":[-73.8,46.5],"shL":[54,-118.3],"elL":[69.6,-19.6],"haL":[85.5,41.7],"hipR":[-23.8,38.4],"knR":[-46.9,177.4],"ftR":[-29.7,319.1],"hipL":[22.4,36.6],"knL":[16.3,180.9],"ftL":[29.5,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[0.6,-84.5],"neck":[0.6,-84.5],"head":[10.6,-149.6],"shR":[-53.6,-115.2],"elR":[-56.8,-12.3],"haR":[-71.1,45.8],"shL":[56.3,-117.8],"elL":[72.3,-19.3],"haL":[90.4,42.4],"hipR":[-23,38.2],"knR":[-37.3,179.6],"ftR":[-30.3,321.5],"hipL":[23.8,36.8],"knL":[19.8,181],"ftL":[31.3,324.7]},{"rootY":-6.3,"hips":[0,0],"chest":[1.9,-84.5],"neck":[1.9,-84.5],"head":[12.9,-149.5],"shR":[-52.4,-115.9],"elR":[-56,-13],"haR":[-68.9,45.4],"shL":[58,-116.9],"elL":[74.4,-18.8],"haL":[94.4,43.3],"hipR":[-22.2,38.4],"knR":[-31.2,181.2],"ftR":[-30.6,323.2],"hipL":[24.7,36.6],"knL":[21.6,180.8],"ftL":[32.1,324.4]},{"rootY":-6.5,"hips":[0,0],"chest":[2.9,-84.4],"neck":[2.9,-84.4],"head":[14.5,-149.3],"shR":[-51.6,-116.2],"elR":[-55.8,-13.3],"haR":[-66.6,45.8],"shL":[58.9,-116.4],"elL":[75.1,-18.3],"haL":[96.5,44.1],"hipR":[-22.3,38.1],"knR":[-28,181.4],"ftR":[-28.1,323.7],"hipL":[24.8,36.9],"knL":[22.8,181.1],"ftL":[33.2,324.8]},{"rootY":-6.9,"hips":[0,0],"chest":[3.1,-84.7],"neck":[3.1,-84.7],"head":[15.2,-149.4],"shR":[-51.5,-116.9],"elR":[-56.1,-14],"haR":[-65.4,45.6],"shL":[59.1,-116.3],"elL":[74.3,-18],"haL":[96.5,44.7],"hipR":[-22.2,37.7],"knR":[-26.1,181.4],"ftR":[-26,323.4],"hipL":[25.1,37.1],"knL":[23.9,181.4],"ftL":[33.8,324.9]},{"rootY":-7.2,"hips":[0,0],"chest":[3.7,-84.6],"neck":[3.7,-84.6],"head":[16,-149.3],"shR":[-50.9,-117.2],"elR":[-56.3,-14.4],"haR":[-64.2,45.8],"shL":[59.6,-115.8],"elL":[73,-17.6],"haL":[95.4,45.2],"hipR":[-21.9,37.6],"knR":[-25.1,181.4],"ftR":[-24.2,323.1],"hipL":[25.4,37.4],"knL":[25.6,181.6],"ftL":[35.2,325.3]},{"rootY":-7.1,"hips":[0,0],"chest":[4.3,-84.6],"neck":[4.3,-84.6],"head":[16.8,-149.3],"shR":[-50.4,-117.1],"elR":[-56.3,-14.5],"haR":[-63,46.3],"shL":[60,-115.9],"elL":[71.2,-17.7],"haL":[93.1,45.3],"hipR":[-22,37.7],"knR":[-26.5,181.6],"ftR":[-24.3,323.5],"hipL":[25.3,37.3],"knL":[25.7,181.6],"ftL":[35.8,325]},{"rootY":-7,"hips":[0,0],"chest":[5.3,-84.6],"neck":[5.3,-84.6],"head":[17.6,-149.2],"shR":[-49.5,-117.1],"elR":[-55.6,-14.6],"haR":[-61.4,46.6],"shL":[60.8,-115.5],"elL":[69.5,-17.9],"haL":[90.6,45.4],"hipR":[-21.2,37.8],"knR":[-25.7,182],"ftR":[-22.9,323.5],"hipL":[26.1,37.3],"knL":[28.5,181.7],"ftL":[38,325.1]},{"rootY":-6.9,"hips":[0,0],"chest":[5.4,-84.6],"neck":[5.4,-84.6],"head":[18,-149.2],"shR":[-49.3,-117.4],"elR":[-55.1,-14.7],"haR":[-60.5,46.8],"shL":[60.8,-115.8],"elL":[67.4,-18.4],"haL":[87.3,45.3],"hipR":[-21.5,37.8],"knR":[-26.6,182.1],"ftR":[-22.4,323.6],"hipL":[25.8,37.3],"knL":[28.2,181.8],"ftL":[38.9,324.9]},{"rootY":-6.6,"hips":[0,0],"chest":[5.5,-84.4],"neck":[5.5,-84.4],"head":[18,-148.9],"shR":[-49,-117.6],"elR":[-54.1,-15],"haR":[-58.8,46.8],"shL":[61.1,-115.1],"elL":[65.4,-18],"haL":[84,46.1],"hipR":[-21.6,37.6],"knR":[-25.2,182.3],"ftR":[-19.8,323.6],"hipL":[25.7,37.7],"knL":[29.2,182.1],"ftL":[40.6,324.8]},{"rootY":-6.5,"hips":[0,0],"chest":[6,-84.7],"neck":[6,-84.7],"head":[18.4,-149.4],"shR":[-48.6,-117.7],"elR":[-53.3,-15.2],"haR":[-57.9,46.8],"shL":[61.4,-115.5],"elL":[63.3,-18.7],"haL":[80.5,45.7],"hipR":[-21.9,37.3],"knR":[-22.6,182.3],"ftR":[-16.9,323.3],"hipL":[25.4,38.1],"knL":[30.4,182.5],"ftL":[42.9,324.6]},{"rootY":-6.4,"hips":[0,0],"chest":[6.9,-84.8],"neck":[6.9,-84.8],"head":[19.4,-149.4],"shR":[-47.6,-117.9],"elR":[-52.1,-15.2],"haR":[-56,47.4],"shL":[62.4,-115.8],"elL":[62.1,-19],"haL":[77.9,45.7],"hipR":[-21.1,37.2],"knR":[-18.1,182.6],"ftR":[-13.1,322.7],"hipL":[26,38.5],"knL":[33,182.6],"ftL":[46.4,324]},{"rootY":-5.9,"hips":[0,0],"chest":[6.3,-84.5],"neck":[6.3,-84.5],"head":[18.4,-149.3],"shR":[-48.2,-117.6],"elR":[-52.3,-15.1],"haR":[-56.1,47.4],"shL":[61.8,-115.3],"elL":[59.4,-18.8],"haL":[73.6,46.1],"hipR":[-23.2,36.8],"knR":[-20.5,182],"ftR":[-13.3,323.1],"hipL":[24,38.7],"knL":[29.3,182.9],"ftL":[45.6,322.6]},{"rootY":-5.5,"hips":[0,0],"chest":[6.5,-84.4],"neck":[6.5,-84.4],"head":[18.6,-149.2],"shR":[-48,-117.5],"elR":[-52.1,-15.1],"haR":[-55.7,47.6],"shL":[62.1,-115.6],"elL":[58.4,-19.1],"haL":[71,45.9],"hipR":[-23.8,36.4],"knR":[-19.5,181.7],"ftR":[-11.4,322.9],"hipL":[23.4,39.2],"knL":[29,182.9],"ftL":[47.1,320.5]},{"rootY":-5,"hips":[0,0],"chest":[7.9,-84.3],"neck":[7.9,-84.3],"head":[19.9,-149.1],"shR":[-46.7,-117.3],"elR":[-50.9,-14.9],"haR":[-54.5,48.3],"shL":[63.5,-115.5],"elL":[58.9,-19.3],"haL":[69.9,45.6],"hipR":[-23.2,35.8],"knR":[-14.8,181.4],"ftR":[-6.4,322],"hipL":[23.7,39.7],"knL":[32,182.4],"ftL":[50.9,317]},{"rootY":-4.5,"hips":[0,0],"chest":[8.4,-84],"neck":[8.4,-84],"head":[20.5,-149],"shR":[-46,-117.3],"elR":[-50.4,-15],"haR":[-54,48.5],"shL":[64.2,-115],"elL":[59.4,-18.8],"haL":[69,46],"hipR":[-23.7,35.3],"knR":[-13.1,180.9],"ftR":[-3.5,321.8],"hipL":[23.1,40.2],"knL":[32.6,180.9],"ftL":[54.1,311.8]},{"rootY":-4.1,"hips":[0,0],"chest":[8.4,-84.1],"neck":[8.4,-84.1],"head":[20.6,-149.1],"shR":[-45.9,-117.7],"elR":[-50.5,-15.3],"haR":[-54.4,48.5],"shL":[64.2,-115.2],"elL":[59.6,-18.9],"haL":[68.3,45.5],"hipR":[-24.6,34.7],"knR":[-12.5,180.3],"ftR":[-1,321.3],"hipL":[22.2,40.5],"knL":[32.6,178.3],"ftL":[57.2,304.5]},{"rootY":-3.4,"hips":[0,0],"chest":[7.2,-83.6],"neck":[7.2,-83.6],"head":[19.4,-148.6],"shR":[-46.9,-117.5],"elR":[-51.8,-15.4],"haR":[-55.9,48.3],"shL":[63.2,-114.5],"elL":[59,-18.2],"haL":[66.7,45.3],"hipR":[-26.7,34.2],"knR":[-15.7,179.7],"ftR":[-0.6,321.2],"hipL":[20.2,40.7],"knL":[29.5,174.1],"ftL":[57.5,297]},{"rootY":-2.5,"hips":[0,0],"chest":[7,-83.6],"neck":[7,-83.6],"head":[19.2,-148.6],"shR":[-47.1,-117.6],"elR":[-52.5,-15.5],"haR":[-56.8,48.2],"shL":[63,-114.5],"elL":[59.2,-18.5],"haL":[66.5,44],"hipR":[-27.3,33.4],"knR":[-14.4,178.8],"ftR":[2.4,319.7],"hipL":[19.4,40.9],"knL":[29.7,170.1],"ftL":[58.7,290.6]},{"rootY":-1.1,"hips":[0,0],"chest":[6.6,-83.5],"neck":[6.6,-83.5],"head":[19.2,-148.5],"shR":[-47.3,-117.6],"elR":[-52.9,-15.8],"haR":[-57.2,47.9],"shL":[62.8,-114.4],"elL":[59,-18.7],"haL":[66.5,42.7],"hipR":[-27.5,33.3],"knR":[-14,178.7],"ftR":[4.4,318.8],"hipL":[19.2,40.7],"knL":[29,166.3],"ftL":[57.3,287.6]},{"rootY":-1.2,"hips":[0,0],"chest":[6.6,-83.4],"neck":[6.6,-83.4],"head":[19.3,-148.3],"shR":[-47.4,-117.3],"elR":[-53,-15.6],"haR":[-57.4,47.9],"shL":[62.7,-114.3],"elL":[58.9,-18.8],"haL":[67,41.6],"hipR":[-27.5,33.4],"knR":[-13.4,178.9],"ftR":[6.1,318.5],"hipL":[19.3,40.5],"knL":[29.1,163.4],"ftL":[54.4,288.4]},{"rootY":-1.3,"hips":[0,0],"chest":[6.2,-83.1],"neck":[6.2,-83.1],"head":[19.3,-148],"shR":[-47.7,-117.3],"elR":[-53,-15.6],"haR":[-57.5,47.9],"shL":[62.3,-113.9],"elL":[58.2,-18.5],"haL":[67.2,41.4],"hipR":[-27.6,33.5],"knR":[-13,179],"ftR":[7.3,318.6],"hipL":[19.2,40.6],"knL":[29,160.6],"ftL":[50.4,292.4]},{"rootY":-2.6,"hips":[0,0],"chest":[5.6,-83.1],"neck":[5.6,-83.1],"head":[18.9,-148],"shR":[-48.3,-117.4],"elR":[-53.6,-15.9],"haR":[-58,47.8],"shL":[61.7,-113.6],"elL":[57.2,-18.6],"haL":[67,41.4],"hipR":[-27.4,34],"knR":[-12.9,179.6],"ftR":[7.8,319.7],"hipL":[19.4,40.7],"knL":[28.3,159.6],"ftL":[45.5,298.9]},{"rootY":-3.7,"hips":[0,0],"chest":[5.7,-83.5],"neck":[5.7,-83.5],"head":[19.4,-148.2],"shR":[-48.4,-117.5],"elR":[-54,-16.2],"haR":[-58.2,47.7],"shL":[61.5,-114.2],"elL":[56.6,-19.3],"haL":[67,41],"hipR":[-27.1,34.2],"knR":[-11.5,179.5],"ftR":[9.2,320],"hipL":[19.8,40.9],"knL":[28.5,159.8],"ftL":[41.7,306.2]},{"rootY":-5.9,"hips":[0,0],"chest":[5.1,-83.3],"neck":[5.1,-83.3],"head":[18.7,-148.1],"shR":[-48.9,-117.4],"elR":[-54.9,-16.3],"haR":[-58.7,47.9],"shL":[60.6,-114],"elL":[55.3,-19.5],"haL":[66.2,41.1],"hipR":[-27.3,34.7],"knR":[-12.1,179.9],"ftR":[9.1,321.2],"hipL":[19.5,41.1],"knL":[26.3,161],"ftL":[36.8,312.8]},{"rootY":-7.5,"hips":[0,0],"chest":[4.5,-83.2],"neck":[4.5,-83.2],"head":[18.4,-147.9],"shR":[-49.5,-117.3],"elR":[-56.2,-16.4],"haR":[-59.2,47.9],"shL":[60,-113.8],"elL":[54.2,-19.9],"haL":[66.1,41.4],"hipR":[-27.4,35.1],"knR":[-12.4,180],"ftR":[8.9,322],"hipL":[19.4,41.2],"knL":[24.1,163.1],"ftL":[32.6,317.7]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.3],"neck":[3.9,-83.3],"head":[18.2,-147.8],"shR":[-50.1,-117.2],"elR":[-57.3,-16.4],"haR":[-59.6,48],"shL":[59.3,-114.1],"elL":[53,-20.7],"haL":[65.3,41.2],"hipR":[-28,35.2],"knR":[-12.6,179.5],"ftR":[8.5,321.7],"hipL":[18.8,41.7],"knL":[21.6,164.8],"ftL":[29,320.2]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.1],"neck":[3.9,-83.1],"head":[18.3,-147.6],"shR":[-50.3,-116.7],"elR":[-58,-15.7],"haR":[-60.6,48.5],"shL":[59.1,-114.4],"elL":[52.2,-21.7],"haL":[64.4,41],"hipR":[-27.9,35.4],"knR":[-12,178.6],"ftR":[9.1,321.5],"hipL":[18.9,41.8],"knL":[20.2,165.7],"ftL":[26.3,320.6]},{"rootY":-7.3,"hips":[0,0],"chest":[3.5,-82.5],"neck":[3.5,-82.5],"head":[18,-146.9],"shR":[-50.5,-116.4],"elR":[-58.7,-15.2],"haR":[-61.2,48.6],"shL":[58.8,-113.3],"elL":[51.6,-21.7],"haL":[63.8,41.8],"hipR":[-28.3,35.2],"knR":[-11.8,177.4],"ftR":[8.7,320.1],"hipL":[18.4,42.1],"knL":[18.3,165.8],"ftL":[23.3,320.2]},{"rootY":-5.4,"hips":[0,0],"chest":[3.4,-82.7],"neck":[3.4,-82.7],"head":[17.9,-147.1],"shR":[-50.6,-116.5],"elR":[-58.9,-15.1],"haR":[-61.4,48.2],"shL":[58.7,-114.1],"elL":[51.3,-23.1],"haL":[63.5,41.2],"hipR":[-28.2,35.3],"knR":[-12,176.9],"ftR":[8.7,318.5],"hipL":[18.4,42.2],"knL":[16.8,165.9],"ftL":[20.8,320.4]},{"rootY":-3.2,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18.1,-146.8],"shR":[-50.9,-116],"elR":[-59.3,-14.4],"haR":[-61.5,48.1],"shL":[58.6,-113.9],"elL":[51.1,-23.4],"haL":[63.2,41.6],"hipR":[-28.6,35.1],"knR":[-12.2,175.9],"ftR":[8.1,316.1],"hipL":[18,42.5],"knL":[15.5,166.2],"ftL":[18.9,321.4]},{"rootY":-3.1,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18,-146.9],"shR":[-50.9,-116.1],"elR":[-58.7,-14.2],"haR":[-61.5,47.8],"shL":[58.5,-114],"elL":[51,-23.2],"haL":[62.7,42.4],"hipR":[-28,35.5],"knR":[-11.8,174.6],"ftR":[7.5,314.3],"hipL":[18.7,42.4],"knL":[14.3,164.6],"ftL":[17.5,320]},{"rootY":-3,"hips":[0,0],"chest":[3.1,-82.1],"neck":[3.1,-82.1],"head":[17.9,-146.4],"shR":[-50.8,-115.9],"elR":[-58.1,-13.9],"haR":[-61.4,47.6],"shL":[58.6,-113.3],"elL":[51.1,-22],"haL":[62.7,44],"hipR":[-27.7,35.8],"knR":[-12.1,173.8],"ftR":[6,311.6],"hipL":[19.1,42.3],"knL":[13.2,164.4],"ftL":[16.2,319.8]},{"rootY":-3.9,"hips":[0,0],"chest":[2.7,-81.8],"neck":[2.7,-81.8],"head":[17.6,-146.1],"shR":[-51.2,-115.9],"elR":[-58.4,-13.9],"haR":[-61.9,47.4],"shL":[58.4,-113],"elL":[51,-21.2],"haL":[62.4,44.7],"hipR":[-27.8,35.8],"knR":[-13.7,174.1],"ftR":[3,307.5],"hipL":[19,42.4],"knL":[12.3,165.8],"ftL":[14.8,321]},{"rootY":-5.7,"hips":[0,0],"chest":[2.8,-82.2],"neck":[2.8,-82.2],"head":[17.3,-146.6],"shR":[-51.2,-116.2],"elR":[-58.8,-14.2],"haR":[-62.3,47.1],"shL":[58.6,-113.4],"elL":[51.7,-21.1],"haL":[62.5,44.6],"hipR":[-27.7,36],"knR":[-15.8,175.2],"ftR":[0.2,302.9],"hipL":[19.1,42.1],"knL":[11.9,168],"ftL":[13.3,322.8]},{"rootY":-7.3,"hips":[0,0],"chest":[2.9,-83.1],"neck":[2.9,-83.1],"head":[16.9,-147.6],"shR":[-51.3,-116.9],"elR":[-59.2,-15.1],"haR":[-63,46],"shL":[58.8,-114],"elL":[52.7,-21.3],"haL":[63.1,44.2],"hipR":[-27.2,36.3],"knR":[-18.5,177.6],"ftR":[-3,297.2],"hipL":[19.6,41.6],"knL":[12.1,170.1],"ftL":[11.7,324.2]},{"rootY":-8.6,"hips":[0,0],"chest":[2.7,-83.2],"neck":[2.7,-83.2],"head":[16.1,-147.9],"shR":[-51.3,-117.2],"elR":[-58.9,-15.2],"haR":[-63.3,45.7],"shL":[59,-114.1],"elL":[54.1,-21.2],"haL":[64.2,44.4],"hipR":[-26.5,36.6],"knR":[-22.1,180.4],"ftR":[-6.8,291.6],"hipL":[20.4,40.9],"knL":[12.8,171.8],"ftL":[10.2,324.7]},{"rootY":-7.6,"hips":[0,0],"chest":[3.1,-83.7],"neck":[3.1,-83.7],"head":[15.9,-148.5],"shR":[-51,-117.1],"elR":[-58.4,-15.2],"haR":[-63.4,45.5],"shL":[59.5,-114.5],"elL":[56,-21.4],"haL":[66.3,44.3],"hipR":[-25.7,36.8],"knR":[-25.5,182.5],"ftR":[-9.6,285.2],"hipL":[21.3,40.1],"knL":[13.4,172.5],"ftL":[8.7,323.9]},{"rootY":-7.1,"hips":[0,0],"chest":[3,-83.7],"neck":[3,-83.7],"head":[15.6,-148.6],"shR":[-51.1,-117.1],"elR":[-57.5,-14.8],"haR":[-63.4,45.6],"shL":[59.5,-115],"elL":[58.4,-20.9],"haL":[68.6,45],"hipR":[-24.6,37.2],"knR":[-29.2,183.4],"ftR":[-13.9,277.4],"hipL":[22.5,39],"knL":[13.4,173.5],"ftL":[7.7,323.3]},{"rootY":-5.2,"hips":[0,0],"chest":[3,-84],"neck":[3,-84],"head":[15.2,-148.9],"shR":[-51,-117.1],"elR":[-56.1,-14.6],"haR":[-63.4,45.8],"shL":[59.6,-115.4],"elL":[61.4,-20],"haL":[71.7,46.1],"hipR":[-23.7,37.4],"knR":[-32.7,182.7],"ftR":[-18,268],"hipL":[23.4,37.8],"knL":[13.1,173.9],"ftL":[6.3,321.6]},{"rootY":-4.2,"hips":[0,0],"chest":[3.2,-84.3],"neck":[3.2,-84.3],"head":[14.9,-149.4],"shR":[-50.8,-116.7],"elR":[-54.1,-14.1],"haR":[-62.9,46.3],"shL":[59.6,-116],"elL":[64.1,-19.1],"haL":[74.9,46.9],"hipR":[-22.5,37.7],"knR":[-35.6,180.2],"ftR":[-19.2,263.9],"hipL":[24.7,36.6],"knL":[13.4,174.4],"ftL":[5.5,320.4]},{"rootY":-3.4,"hips":[0,0],"chest":[2.4,-84.3],"neck":[2.4,-84.3],"head":[13.9,-149.4],"shR":[-51.4,-116.7],"elR":[-52.6,-13.9],"haR":[-62.5,47.1],"shL":[58.8,-116.2],"elL":[65.7,-17.8],"haL":[77,48],"hipR":[-21.7,38],"knR":[-38.9,176.3],"ftR":[-21.9,263.5],"hipL":[25.3,35.6],"knL":[13,175.1],"ftL":[4.2,319.5]},{"rootY":-3.2,"hips":[0,0],"chest":[2.4,-84.5],"neck":[2.4,-84.5],"head":[13.5,-149.7],"shR":[-51.3,-116.6],"elR":[-50.5,-14],"haR":[-61.1,47.7],"shL":[58.7,-116.7],"elL":[67.8,-17.3],"haL":[79.1,47.7],"hipR":[-20.7,38.1],"knR":[-38.5,172],"ftR":[-23,267.6],"hipL":[26.4,35.1],"knL":[14.2,175.8],"ftL":[4.4,319]},{"rootY":-3.1,"hips":[0,0],"chest":[1.9,-84.6],"neck":[1.9,-84.6],"head":[12.7,-149.9],"shR":[-51.8,-116.5],"elR":[-49.4,-13.9],"haR":[-60,48.9],"shL":[58.1,-117.1],"elL":[69.2,-16.9],"haL":[80.6,47.1],"hipR":[-20.2,38.2],"knR":[-37.9,167.8],"ftR":[-25.3,276.3],"hipL":[26.9,34.7],"knL":[14.4,176.9],"ftL":[3.9,318.8]},{"rootY":-3.3,"hips":[0,0],"chest":[1.8,-84.7],"neck":[1.8,-84.7],"head":[12.1,-150],"shR":[-51.8,-115.8],"elR":[-48.2,-13.5],"haR":[-58.6,50.3],"shL":[57.6,-117.8],"elL":[70.6,-17.3],"haL":[81.3,44.8],"hipR":[-20,38.4],"knR":[-36.7,163.2],"ftR":[-27.1,287.3],"hipL":[27,34.5],"knL":[13.5,177.6],"ftL":[3,318.4]},{"rootY":-4.2,"hips":[0,0],"chest":[1.6,-84.6],"neck":[1.6,-84.6],"head":[11.2,-150],"shR":[-52,-115.2],"elR":[-47.2,-13.4],"haR":[-57.2,51.1],"shL":[57.2,-118],"elL":[72.2,-17.5],"haL":[81.3,42],"hipR":[-20,38.7],"knR":[-34.8,160.1],"ftR":[-28.6,298.9],"hipL":[27,34.6],"knL":[13.2,178.5],"ftL":[2.5,318.9]}]},"run":{"name":"run","fps":30,"height":520,"groundY":345,"frameCount":38,"frames":[{"rootY":0,"hips":[0,0],"chest":[-0.1,-78.3],"neck":[-0.1,-78.3],"head":[0.8,-147.2],"shR":[-62.2,-107.2],"elR":[-178.8,-90.8],"haR":[-251.1,-80.6],"shL":[63.5,-104.3],"elL":[173.6,-88.9],"haL":[245.1,-78.8],"hipR":[-31.4,37.4],"knR":[-28.8,187],"ftR":[-26.1,343.4],"hipL":[31.7,37.4],"knL":[29,189.2],"ftL":[26.3,344.6]},{"rootY":4.5,"hips":[0,0],"chest":[4.7,-75.6],"neck":[4.7,-75.6],"head":[11.9,-144.3],"shR":[-55.1,-110.3],"elR":[-84.8,-7.9],"haR":[-79.1,42.7],"shL":[70.1,-99.4],"elL":[75.5,4.8],"haL":[60.3,6.5],"hipR":[-32.9,36.1],"knR":[-38.4,185.5],"ftR":[-30.1,178.3],"hipL":[30.1,39.3],"knL":[15.4,179.1],"ftL":[3.3,323.8]},{"rootY":8.2,"hips":[0,0],"chest":[5.5,-75],"neck":[5.5,-75],"head":[12.5,-143.5],"shR":[-54.1,-110.2],"elR":[-77.4,-10.3],"haR":[-81,45.7],"shL":[71.2,-98.8],"elL":[77.8,10.7],"haL":[57.2,-1],"hipR":[-31.1,37.9],"knR":[-45.3,180.7],"ftR":[-31.1,181.7],"hipL":[31.9,38],"knL":[15.3,183.5],"ftL":[2.9,319.7]},{"rootY":5.6,"hips":[0,0],"chest":[4.7,-75],"neck":[4.7,-75],"head":[10.8,-143.6],"shR":[-54.7,-110.1],"elR":[-72.4,-13.6],"haR":[-82,45.1],"shL":[70.5,-98.8],"elL":[78.7,11.9],"haL":[53.7,-8.5],"hipR":[-30.5,38.5],"knR":[-45,170],"ftR":[-32.4,200],"hipL":[32.6,37.7],"knL":[16,187.9],"ftL":[1.5,316]},{"rootY":-0.4,"hips":[0,0],"chest":[4.7,-74.9],"neck":[4.7,-74.9],"head":[9.5,-143.7],"shR":[-54.6,-109],"elR":[-67.8,-17],"haR":[-80.3,42.8],"shL":[70.2,-99.6],"elL":[81.9,11],"haL":[52.1,-14.9],"hipR":[-29,39.5],"knR":[-39.4,160.3],"ftR":[-31.8,228.3],"hipL":[33.8,36.9],"knL":[19.4,187.5],"ftL":[3.9,310]},{"rootY":-8,"hips":[0,0],"chest":[4,-75.3],"neck":[4,-75.3],"head":[7.2,-144.3],"shR":[-55.1,-108.4],"elR":[-63.1,-21],"haR":[-77.7,39.7],"shL":[69,-101],"elL":[85.9,8.9],"haL":[50.9,-20.4],"hipR":[-29.2,39.6],"knR":[-31.9,154.5],"ftR":[-30.4,260.8],"hipL":[33.7,37.2],"knL":[22.4,183.6],"ftL":[9.2,305.1]},{"rootY":-14.3,"hips":[0,0],"chest":[2.9,-75.7],"neck":[2.9,-75.7],"head":[4.8,-145.1],"shR":[-56.1,-107.2],"elR":[-58.7,-24.2],"haR":[-75.7,37.5],"shL":[67,-103],"elL":[89.9,5.8],"haL":[50.1,-23.5],"hipR":[-29.6,39.7],"knR":[-28,153.7],"ftR":[-29.4,290.2],"hipL":[33.4,37.3],"knL":[23.8,173.6],"ftL":[14.6,298.4]},{"rootY":-20.1,"hips":[0,0],"chest":[1.3,-76],"neck":[1.3,-76],"head":[1.5,-145.5],"shR":[-57.7,-106.8],"elR":[-55.5,-27.1],"haR":[-74.3,34.7],"shL":[65.2,-103.8],"elL":[93.4,3.7],"haL":[50.1,-23],"hipR":[-28.9,40.4],"knR":[-25.4,159.4],"ftR":[-28.5,312.6],"hipL":[34,36.7],"knL":[26.8,158.9],"ftL":[19.3,284]},{"rootY":-21.4,"hips":[0,0],"chest":[0.1,-76.1],"neck":[0.1,-76.1],"head":[-0.6,-145.6],"shR":[-59.2,-106.5],"elR":[-53.9,-26.8],"haR":[-73.7,34.1],"shL":[63.6,-104.4],"elL":[95.4,2],"haL":[50.7,-19.7],"hipR":[-27.2,41.6],"knR":[-21.1,167.2],"ftR":[-24.9,323.5],"hipL":[35.5,35.2],"knL":[24.7,163.6],"ftL":[20.8,261.4]},{"rootY":-18.9,"hips":[0,0],"chest":[-1,-76.2],"neck":[-1,-76.2],"head":[-2.1,-145.6],"shR":[-60.9,-105.5],"elR":[-55.8,-22.2],"haR":[-75.3,37.2],"shL":[61.8,-106],"elL":[94.5,-0.8],"haL":[50.4,-13.6],"hipR":[-27.5,41.5],"knR":[-19.1,172.8],"ftR":[-18.1,328.1],"hipL":[35.2,35.2],"knL":[22,171.8],"ftL":[24,235.3]},{"rootY":-13,"hips":[0,0],"chest":[-2.6,-76.2],"neck":[-2.6,-76.2],"head":[-3.8,-145.6],"shR":[-62.9,-104.3],"elR":[-61.3,-16.1],"haR":[-78.9,39.8],"shL":[59.6,-107.1],"elL":[92.2,-3.9],"haL":[51,-4.8],"hipR":[-29.4,40.1],"knR":[-19,176.7],"ftR":[-9.5,332.5],"hipL":[33.5,36.4],"knL":[21.9,180.5],"ftL":[24.9,205.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-3.1,-76.1],"neck":[-3.1,-76.1],"head":[-5.2,-145.3],"shR":[-64,-104.6],"elR":[-67.1,-8.8],"haR":[-81.5,38.6],"shL":[59.8,-106.4],"elL":[91.3,-6],"haL":[55.5,6.3],"hipR":[-31.8,38.2],"knR":[-16.4,175.9],"ftR":[-0.9,329.9],"hipL":[31.1,37.8],"knL":[32.3,188],"ftL":[25.7,178.4]},{"rootY":4.3,"hips":[0,0],"chest":[-3.7,-75.5],"neck":[-3.7,-75.5],"head":[-6.4,-144.6],"shR":[-65,-104.2],"elR":[-73.5,-0.1],"haR":[-82.5,35.3],"shL":[59.1,-106],"elL":[87.7,-10.1],"haL":[59.5,14.3],"hipR":[-34,36.3],"knR":[-13.5,174.6],"ftR":[2.2,320.5],"hipL":[28.7,39.2],"knL":[46.6,189.7],"ftL":[27.3,163.4]},{"rootY":7.7,"hips":[0,0],"chest":[-4.1,-75.2],"neck":[-4.1,-75.2],"head":[-6.9,-143.9],"shR":[-65.6,-104],"elR":[-79,6.9],"haR":[-81.6,29.5],"shL":[58.8,-105.7],"elL":[83.6,-15.6],"haL":[62.2,18.5],"hipR":[-34.9,35.5],"knR":[-13.7,179.3],"ftR":[2.2,316.2],"hipL":[27.8,40.3],"knL":[55.1,183.3],"ftL":[29.4,165.8]},{"rootY":6.4,"hips":[0,0],"chest":[-3.8,-75.2],"neck":[-3.8,-75.2],"head":[-6.5,-144.1],"shR":[-66.3,-103.5],"elR":[-83.1,10.2],"haR":[-78.6,20.5],"shL":[59,-106.1],"elL":[80.6,-20.2],"haL":[63.1,17.9],"hipR":[-34.9,35.3],"knR":[-13.4,183],"ftR":[2,311.1],"hipL":[27.9,40.5],"knL":[52.4,171.1],"ftL":[30.2,183.3]},{"rootY":0.7,"hips":[0,0],"chest":[-3.4,-75.6],"neck":[-3.4,-75.6],"head":[-4.9,-144.8],"shR":[-66.2,-104.3],"elR":[-85.6,10.2],"haR":[-73.8,10.4],"shL":[59.6,-105.7],"elL":[77.7,-23],"haL":[63.7,16],"hipR":[-36.1,34.7],"knR":[-16.6,182.2],"ftR":[-0.9,304.8],"hipL":[26.3,41.2],"knL":[44,162.3],"ftL":[29.8,211.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-4.1,-76.1],"neck":[-4.1,-76.1],"head":[-3.8,-145.7],"shR":[-66.8,-105.4],"elR":[-89.3,9.1],"haR":[-70.7,3.8],"shL":[58.9,-105.6],"elL":[71.6,-25.8],"haL":[62.6,13.6],"hipR":[-35.5,35.1],"knR":[-20.1,177.4],"ftR":[-7.9,297.6],"hipL":[27.2,41],"knL":[33.4,156.1],"ftL":[29.4,245.2]},{"rootY":-12.2,"hips":[0,0],"chest":[-3.7,-76.8],"neck":[-3.7,-76.8],"head":[-1.7,-146.5],"shR":[-66.1,-106.9],"elR":[-92.8,6.7],"haR":[-68.3,0.5],"shL":[59.3,-105.2],"elL":[65.9,-28],"haL":[61.7,11.5],"hipR":[-35,35.2],"knR":[-25.2,162.6],"ftR":[-16.5,289.6],"hipL":[27.8,40.7],"knL":[27.3,154.8],"ftL":[29.7,279.6]},{"rootY":-17.1,"hips":[0,0],"chest":[-3.1,-77.1],"neck":[-3.1,-77.1],"head":[-0.1,-146.9],"shR":[-64.9,-108.4],"elR":[-95.1,4.1],"haR":[-65.6,-0.8],"shL":[60,-104],"elL":[62.1,-27.8],"haL":[61,10.1],"hipR":[-34.9,35.3],"knR":[-28.6,154.4],"ftR":[-23.1,276],"hipL":[27.9,41],"knL":[23.9,158.9],"ftL":[29.9,306.7]},{"rootY":-17.4,"hips":[0,0],"chest":[-1.6,-76.9],"neck":[-1.6,-76.9],"head":[2.4,-146.8],"shR":[-63.1,-109],"elR":[-95.1,2.4],"haR":[-63.4,2.4],"shL":[61.7,-103.1],"elL":[60.8,-24.6],"haL":[60.9,9.9],"hipR":[-36.3,34.2],"knR":[-23.5,162.9],"ftR":[-27.5,254.8],"hipL":[26.3,41.8],"knL":[21.6,166.9],"ftL":[28.5,322]},{"rootY":-13.9,"hips":[0,0],"chest":[-0.5,-77.1],"neck":[-0.5,-77.1],"head":[4.3,-146.7],"shR":[-61.5,-109.8],"elR":[-94.3,0.1],"haR":[-63.8,8.7],"shL":[63.3,-102.8],"elL":[61.3,-19.1],"haL":[60.9,11.1],"hipR":[-35.2,34.5],"knR":[-19,168.4],"ftR":[-29.3,229.3],"hipL":[27.4,41.5],"knL":[24,172.5],"ftL":[25.5,327.3]},{"rootY":-7.6,"hips":[0,0],"chest":[1,-77],"neck":[1,-77],"head":[6.2,-146.6],"shR":[-59.5,-110.6],"elR":[-92.4,-2.2],"haR":[-66.7,17.4],"shL":[65.3,-101.6],"elL":[65.1,-11],"haL":[61.9,12],"hipR":[-34.1,35.4],"knR":[-19.4,177.4],"ftR":[-29.4,206.2],"hipL":[28.7,40.3],"knL":[24.2,176.4],"ftL":[18.9,331.5]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-77],"neck":[2.3,-77],"head":[7.9,-146.5],"shR":[-58,-111.1],"elR":[-89.1,-4],"haR":[-70.4,26.1],"shL":[67,-101.1],"elL":[70.1,-2.4],"haL":[61.5,8.9],"hipR":[-33,35.8],"knR":[-26,183.5],"ftR":[-27.5,186.2],"hipL":[29.9,39.5],"knL":[23.5,176.9],"ftL":[12.6,329.8]},{"rootY":4.6,"hips":[0,0],"chest":[4.5,-76.3],"neck":[4.5,-76.3],"head":[10.9,-145.6],"shR":[-55.5,-111],"elR":[-81.6,-6.6],"haR":[-72.3,32.6],"shL":[69.6,-100.2],"elL":[76.1,6.1],"haL":[61.6,3.1],"hipR":[-29.9,38.6],"knR":[-33.9,187.8],"ftR":[-26.9,180.9],"hipL":[33.2,36.5],"knL":[22,177.9],"ftL":[11.1,323.6]},{"rootY":5.1,"hips":[0,0],"chest":[3.6,-76.1],"neck":[3.6,-76.1],"head":[10.1,-145.2],"shR":[-56.2,-110.9],"elR":[-77.5,-10.7],"haR":[-75.6,35.1],"shL":[69,-99.9],"elL":[78,10.2],"haL":[57.6,-5.1],"hipR":[-30.8,38.2],"knR":[-37.5,181.4],"ftR":[-27,188.6],"hipL":[32.2,37.4],"knL":[19.5,184.5],"ftL":[10.7,322.1]},{"rootY":0.8,"hips":[0,0],"chest":[3.1,-76],"neck":[3.1,-76],"head":[9.3,-145.2],"shR":[-56.3,-111],"elR":[-74,-14.5],"haR":[-75.8,33.6],"shL":[68.9,-99.6],"elL":[77.8,11.3],"haL":[54.6,-14.4],"hipR":[-30,39.1],"knR":[-37,171.7],"ftR":[-27.2,209],"hipL":[33,36.8],"knL":[18.7,187.6],"ftL":[10.8,318.1]},{"rootY":-7.4,"hips":[0,0],"chest":[3.2,-76.1],"neck":[3.2,-76.1],"head":[8.2,-145.5],"shR":[-56,-110.1],"elR":[-70.6,-17.4],"haR":[-75.6,32.4],"shL":[68.8,-100.5],"elL":[77.5,10.2],"haL":[50.9,-23.4],"hipR":[-29.3,39.5],"knR":[-33.7,163.5],"ftR":[-26.8,238.3],"hipL":[33.7,36.6],"knL":[20.7,187],"ftL":[13,313.5]},{"rootY":-15.9,"hips":[0,0],"chest":[3.4,-76.3],"neck":[3.4,-76.3],"head":[7.5,-145.9],"shR":[-55.6,-109.3],"elR":[-66.5,-20.9],"haR":[-74.4,30.5],"shL":[68.6,-101.5],"elL":[78,8.7],"haL":[48.2,-30.3],"hipR":[-29.8,39.3],"knR":[-29.2,158.1],"ftR":[-25.2,269.7],"hipL":[33.3,37.1],"knL":[22.9,183.6],"ftL":[17.4,308.7]},{"rootY":-22.4,"hips":[0,0],"chest":[2.6,-76.6],"neck":[2.6,-76.6],"head":[5.8,-146.3],"shR":[-56.3,-108.5],"elR":[-62.3,-24.4],"haR":[-72.9,28.4],"shL":[67.5,-102.7],"elL":[78.8,7.1],"haL":[45,-35.3],"hipR":[-30.5,39.2],"knR":[-27.5,156.3],"ftR":[-25.6,296.6],"hipL":[32.5,37.6],"knL":[24.7,175.5],"ftL":[20.4,301.7]},{"rootY":-27.4,"hips":[0,0],"chest":[0.9,-76.7],"neck":[0.9,-76.7],"head":[3.8,-146.5],"shR":[-57.6,-108],"elR":[-58.9,-27.5],"haR":[-71.6,26.5],"shL":[65.8,-102.7],"elL":[80.1,6.8],"haL":[42.8,-36.2],"hipR":[-30.4,39.6],"knR":[-26.7,160.4],"ftR":[-27.6,314.9],"hipL":[32.6,37.3],"knL":[28,161.5],"ftL":[23.3,288.7]},{"rootY":-27.9,"hips":[0,0],"chest":[0,-76.9],"neck":[0,-76.9],"head":[3,-146.8],"shR":[-58.6,-108.2],"elR":[-57.2,-28.8],"haR":[-70.3,24.7],"shL":[64.7,-103.3],"elL":[81.6,6.2],"haL":[42,-33.7],"hipR":[-29,40.6],"knR":[-24.2,166.3],"ftR":[-28,322.2],"hipL":[33.8,36],"knL":[24.8,162.1],"ftL":[23.1,267.9]},{"rootY":-25.2,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[1.7,-147.1],"shR":[-60.5,-108.1],"elR":[-59,-26.7],"haR":[-71.3,24.6],"shL":[62.9,-104.4],"elL":[82.3,5.1],"haL":[41.7,-27.9],"hipR":[-29.2,40.5],"knR":[-25.7,170.6],"ftR":[-24.4,324.8],"hipL":[33.5,35.8],"knL":[18.6,169.8],"ftL":[23.5,242.7]},{"rootY":-18.4,"hips":[0,0],"chest":[-2.4,-77.5],"neck":[-2.4,-77.5],"head":[0.5,-147.2],"shR":[-61.6,-108],"elR":[-63.9,-21.6],"haR":[-74,25.4],"shL":[61.9,-105.1],"elL":[83.1,3.4],"haL":[44,-19.2],"hipR":[-30.9,39.2],"knR":[-25.1,175.3],"ftR":[-17.3,329.8],"hipL":[31.6,36.7],"knL":[15.1,178.7],"ftL":[22.4,212.9]},{"rootY":-8.2,"hips":[0,0],"chest":[-2.6,-77.6],"neck":[-2.6,-77.6],"head":[-0.1,-147.4],"shR":[-62.1,-107.9],"elR":[-69.8,-14.5],"haR":[-76.8,24.8],"shL":[61.7,-105.1],"elL":[83.6,1.4],"haL":[48.4,-8.7],"hipR":[-31.8,38.2],"knR":[-24.5,177],"ftR":[-10.6,332.8],"hipL":[30.8,36.8],"knL":[20.7,185.6],"ftL":[21,183.2]},{"rootY":1.3,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[-0.5,-147.3],"shR":[-62.2,-107.6],"elR":[-74.8,-6.2],"haR":[-77.9,22],"shL":[62,-105.1],"elL":[83.3,-1.3],"haL":[54.3,2.3],"hipR":[-33.1,36.7],"knR":[-20.6,177.1],"ftR":[-3.4,328.1],"hipL":[29.6,37.3],"knL":[33.3,189.1],"ftL":[21.2,163.9]},{"rootY":7.2,"hips":[0,0],"chest":[-3.2,-77.1],"neck":[-3.2,-77.1],"head":[-1.9,-146.8],"shR":[-63.8,-106.7],"elR":[-80.7,2],"haR":[-79.1,16.9],"shL":[60.8,-105.5],"elL":[79.7,-5.1],"haL":[58.5,12],"hipR":[-36.7,33.3],"knR":[-21.7,176.9],"ftR":[-3.3,320.3],"hipL":[25.5,40.7],"knL":[45.1,187.5],"ftL":[22.3,162.5]},{"rootY":8.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-0.7,-146.6],"shR":[-63.7,-106.1],"elR":[-82.9,6.8],"haR":[-76.6,7.9],"shL":[61.7,-106.3],"elL":[76.8,-9.8],"haL":[62.2,16.1],"hipR":[-36,34],"knR":[-20.2,180.9],"ftR":[-5,315.3],"hipL":[26.5,40.4],"knL":[43.6,176.2],"ftL":[23.3,175.7]},{"rootY":3.6,"hips":[0,0],"chest":[-1.9,-77],"neck":[-1.9,-77],"head":[-0.8,-146.7],"shR":[-64.1,-106.4],"elR":[-83.7,8.6],"haR":[-73.1,-3.4],"shL":[61.7,-105.8],"elL":[73.9,-12.2],"haL":[63.1,17.1],"hipR":[-37.2,32.9],"knR":[-20.9,181.7],"ftR":[-7.5,309.1],"hipL":[25.1,41.2],"knL":[36.2,164.2],"ftL":[23.4,201.2]}]},"shuffle":{"name":"shuffle","fps":30,"height":520,"groundY":326,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.8,-86.1],"neck":[-1.8,-86.1],"head":[-2.4,-158.8],"shR":[-80.8,-96.8],"elR":[-184.3,-82.3],"haR":[-254.1,-72.5],"shL":[77,-103.3],"elL":[180.6,-88.7],"haL":[250.6,-78.9],"hipR":[-28.7,33.1],"knR":[-26.2,174.4],"ftR":[-23.6,322.6],"hipL":[28.7,33.1],"knL":[26.1,179.9],"ftL":[23.6,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.5,-85.6],"neck":[-9.5,-85.6],"head":[0.8,-156.9],"shR":[16.2,-96.3],"elR":[13,8.1],"haR":[36.8,73.9],"shL":[-42,-103.2],"elL":[-30.7,0.8],"haL":[-8.9,67.6],"hipR":[26.9,36.6],"knR":[34.7,177.5],"ftR":[-21,313.3],"hipL":[12.7,32.6],"knL":[23.9,178.9],"ftL":[-28.3,315.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.7,-157],"shR":[16,-96.4],"elR":[12.8,8],"haR":[36.6,73.8],"shL":[-41.9,-103.1],"elL":[-38.3,1.4],"haL":[-13.9,67.5],"hipR":[27,36.4],"knR":[34.3,177.4],"ftR":[-21.2,313.3],"hipL":[12.7,32.7],"knL":[24,179],"ftL":[-28.5,315]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.6,-157],"shR":[15.6,-96.6],"elR":[12.7,7.8],"haR":[36.5,73.6],"shL":[-41.6,-102.9],"elL":[-38.9,1.6],"haL":[-14.3,67.8],"hipR":[26.9,36.3],"knR":[34,177.3],"ftR":[-21.3,313.3],"hipL":[12.9,32.8],"knL":[24.2,179.1],"ftL":[-28.6,315]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.6,-157],"shR":[15.5,-96.7],"elR":[12.7,7.7],"haR":[36.6,73.5],"shL":[-41.5,-102.8],"elL":[-38.5,1.7],"haL":[-13.8,67.8],"hipR":[26.9,36.2],"knR":[33.8,177.2],"ftR":[-21.2,313.4],"hipL":[13,32.9],"knL":[24.6,179.1],"ftL":[-28.6,315]},{"rootY":-0.2,"hips":[0,0],"chest":[-9.4,-85.6],"neck":[-9.4,-85.6],"head":[0.8,-157.1],"shR":[15.5,-96.8],"elR":[12.6,7.6],"haR":[37.3,73.1],"shL":[-41.2,-102.8],"elL":[-38.4,1.8],"haL":[-13.7,67.8],"hipR":[27,36.1],"knR":[33.8,177.1],"ftR":[-21.2,313.3],"hipL":[13.2,32.9],"knL":[24.7,179.1],"ftL":[-28.5,314.9]},{"rootY":-0.2,"hips":[0,0],"chest":[-9.5,-85.6],"neck":[-9.5,-85.6],"head":[0.7,-157],"shR":[15.4,-96.9],"elR":[12.4,7.6],"haR":[37.1,73],"shL":[-41.2,-102.7],"elL":[-38.1,1.8],"haL":[-13.5,67.9],"hipR":[26.9,36],"knR":[33.4,177.1],"ftR":[-21.2,313.4],"hipL":[13.2,33.1],"knL":[25,179.3],"ftL":[-28.6,314.9]},{"rootY":-0.4,"hips":[0,0],"chest":[-9.4,-85.7],"neck":[-9.4,-85.7],"head":[0.8,-157],"shR":[15.3,-96.9],"elR":[12.4,7.6],"haR":[37.2,73],"shL":[-40.9,-102.7],"elL":[-37.6,1.8],"haL":[-13.1,68],"hipR":[26.9,36],"knR":[33.2,177],"ftR":[-21.2,313.5],"hipL":[13.2,33.2],"knL":[25.1,179.4],"ftL":[-28.6,315.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-9.3,-85.7],"neck":[-9.3,-85.7],"head":[0.9,-157.1],"shR":[15.1,-96.8],"elR":[12.2,7.6],"haR":[37,73.1],"shL":[-40.6,-102.8],"elL":[-37.6,1.7],"haL":[-13.1,67.8],"hipR":[26.8,36],"knR":[33.1,177],"ftR":[-21.1,313.6],"hipL":[13.3,33.2],"knL":[25.2,179.4],"ftL":[-28.5,315]},{"rootY":-0.6,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1,-157.1],"shR":[15.3,-96.8],"elR":[12.5,7.6],"haR":[37.2,73.1],"shL":[-40.6,-102.9],"elL":[-37.3,1.7],"haL":[-12.8,67.8],"hipR":[26.6,36],"knR":[32.9,177.1],"ftR":[-21,313.8],"hipL":[13.3,33.3],"knL":[25.4,179.5],"ftL":[-28.5,315.1]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.1,-157.1],"shR":[15.2,-96.8],"elR":[12.5,7.7],"haR":[37.3,73.2],"shL":[-40.3,-103],"elL":[-36.9,1.6],"haL":[-12.5,67.8],"hipR":[26.5,36],"knR":[32.7,177],"ftR":[-20.9,313.9],"hipL":[13.3,33.5],"knL":[25.5,179.7],"ftL":[-28.5,315.2]},{"rootY":-0.9,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.3,-157.1],"shR":[15.3,-96.8],"elR":[12.8,7.7],"haR":[37.6,73.1],"shL":[-40.2,-102.9],"elL":[-37,1.6],"haL":[-12.7,67.8],"hipR":[26.4,36.1],"knR":[32.5,177.1],"ftR":[-20.9,314.1],"hipL":[13.3,33.6],"knL":[25.7,179.7],"ftL":[-28.4,315.2]},{"rootY":-1,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.3,-157],"shR":[15.2,-96.7],"elR":[12.6,7.7],"haR":[37.5,73.2],"shL":[-40.2,-103],"elL":[-36.8,1.5],"haL":[-12.6,67.7],"hipR":[26.3,36.1],"knR":[32.2,177.1],"ftR":[-20.9,314.2],"hipL":[13.3,33.7],"knL":[25.9,179.8],"ftL":[-28.4,315.2]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157],"shR":[14.8,-96.6],"elR":[12.3,7.9],"haR":[37.1,73.4],"shL":[-40,-103.1],"elL":[-36.9,1.4],"haL":[-12.5,67.6],"hipR":[26.3,36],"knR":[31.9,177],"ftR":[-21.1,314.2],"hipL":[13.3,33.7],"knL":[26,179.8],"ftL":[-28.6,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157],"shR":[14.9,-96.7],"elR":[12.2,7.8],"haR":[36.9,73.3],"shL":[-40,-103],"elL":[-37.3,1.5],"haL":[-12.8,67.7],"hipR":[26.3,35.9],"knR":[31.4,177],"ftR":[-21.4,314.2],"hipL":[13.3,33.8],"knL":[26.1,179.9],"ftL":[-28.8,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-85.7],"neck":[-9.3,-85.7],"head":[1.1,-157],"shR":[14.8,-96.7],"elR":[12,7.8],"haR":[36.1,73.5],"shL":[-40.2,-103],"elL":[-37.5,1.5],"haL":[-12.7,67.6],"hipR":[26.3,35.8],"knR":[31,176.9],"ftR":[-21.8,314.2],"hipL":[13.3,34],"knL":[26,180.1],"ftL":[-29.2,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157.1],"shR":[14.9,-96.7],"elR":[12.1,7.8],"haR":[36.3,73.5],"shL":[-40,-103.1],"elL":[-37.2,1.5],"haL":[-12.7,67.7],"hipR":[26.4,35.8],"knR":[30.9,176.9],"ftR":[-21.8,314.2],"hipL":[13.4,33.9],"knL":[26.3,180],"ftL":[-29.2,314.9]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.2,-157.1],"shR":[14.8,-96.8],"elR":[12,7.6],"haR":[36.1,73.4],"shL":[-40,-102.9],"elL":[-37.3,1.6],"haL":[-12.7,67.8],"hipR":[26.4,35.8],"knR":[30.6,176.9],"ftR":[-21.9,314.3],"hipL":[13.3,34],"knL":[26.3,180.1],"ftL":[-29.3,314.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.6,-157.1],"shR":[15.1,-96.9],"elR":[12.3,7.6],"haR":[36.5,73.3],"shL":[-39.7,-102.9],"elL":[-37.1,1.7],"haL":[-12.6,67.8],"hipR":[26.3,35.8],"knR":[30.4,176.9],"ftR":[-21.9,314.3],"hipL":[13.3,34],"knL":[26.6,180.1],"ftL":[-29.1,315]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.5,-157.1],"shR":[15.1,-96.8],"elR":[12.3,7.6],"haR":[36.6,73.3],"shL":[-39.7,-103],"elL":[-37.2,1.6],"haL":[-12.9,67.8],"hipR":[26.3,35.7],"knR":[30.1,176.8],"ftR":[-22.1,314.3],"hipL":[13.4,34.1],"knL":[26.6,180.2],"ftL":[-29.4,314.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.6,-157],"shR":[15,-96.8],"elR":[12.1,7.6],"haR":[36.4,73.4],"shL":[-39.5,-103],"elL":[-37.3,1.6],"haL":[-12.9,67.8],"hipR":[26.3,35.7],"knR":[29.8,176.8],"ftR":[-22.4,314.3],"hipL":[13.5,34.1],"knL":[26.7,180.2],"ftL":[-29.5,314.8]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.8,-157.1],"shR":[14.9,-96.8],"elR":[11.9,7.6],"haR":[36.2,73.3],"shL":[-39.1,-103],"elL":[-36.8,1.6],"haL":[-12.3,67.7],"hipR":[26.2,35.7],"knR":[29.6,176.9],"ftR":[-22.2,314.5],"hipL":[13.5,34.1],"knL":[26.9,180.2],"ftL":[-29.4,314.8]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.8,-157.1],"shR":[14.5,-96.6],"elR":[11.3,7.8],"haR":[35.4,73.6],"shL":[-38.7,-103.2],"elL":[-36.4,1.3],"haL":[-12.2,67.6],"hipR":[26.2,35.7],"knR":[29.4,176.8],"ftR":[-22.3,314.5],"hipL":[13.6,34.1],"knL":[27.1,180.2],"ftL":[-29.5,314.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.9,-157.1],"shR":[14.4,-96.5],"elR":[11.1,7.9],"haR":[35.1,73.7],"shL":[-38.6,-103.3],"elL":[-36.5,1.2],"haL":[-12.2,67.5],"hipR":[26.3,35.6],"knR":[29,176.8],"ftR":[-22.6,314.5],"hipL":[13.6,34.1],"knL":[27.3,180.1],"ftL":[-29.5,314.6]},{"rootY":-1.4,"hips":[0,0],"chest":[-8.7,-85.7],"neck":[-8.7,-85.7],"head":[2,-157.1],"shR":[14.6,-96.7],"elR":[11.3,7.7],"haR":[35.3,73.5],"shL":[-38.5,-103.2],"elL":[-36.4,1.4],"haL":[-11.9,67.6],"hipR":[26.2,35.6],"knR":[28.8,176.8],"ftR":[-22.5,314.7],"hipL":[13.6,34.2],"knL":[27.4,180.2],"ftL":[-29.6,314.6]},{"rootY":-1.5,"hips":[0,0],"chest":[-8.5,-85.8],"neck":[-8.5,-85.8],"head":[2.2,-157.1],"shR":[14.8,-96.8],"elR":[11.4,7.7],"haR":[35.5,73.4],"shL":[-38.4,-103.1],"elL":[-36.2,1.4],"haL":[-11.8,67.7],"hipR":[26.1,35.6],"knR":[28.5,176.7],"ftR":[-22.4,314.8],"hipL":[13.6,34.4],"knL":[27.6,180.4],"ftL":[-29.6,314.6]},{"rootY":-1.6,"hips":[0,0],"chest":[-8.6,-85.7],"neck":[-8.6,-85.7],"head":[2.3,-157],"shR":[14.6,-96.5],"elR":[11.2,7.9],"haR":[35.5,73.7],"shL":[-38.3,-103.5],"elL":[-36.2,1.1],"haL":[-11.8,67.3],"hipR":[26,35.5],"knR":[28.1,176.7],"ftR":[-22.5,314.9],"hipL":[13.6,34.5],"knL":[27.7,180.5],"ftL":[-29.7,314.6]},{"rootY":-1.7,"hips":[0,0],"chest":[-8.5,-85.8],"neck":[-8.5,-85.8],"head":[2.4,-157.1],"shR":[14.6,-96.5],"elR":[10.9,7.9],"haR":[35.2,73.6],"shL":[-38.1,-103.4],"elL":[-36.2,1.1],"haL":[-11.8,67.4],"hipR":[26,35.6],"knR":[27.8,176.7],"ftR":[-22.8,314.9],"hipL":[13.5,34.5],"knL":[27.6,180.5],"ftL":[-29.8,314.6]},{"rootY":-1.7,"hips":[0,0],"chest":[-8.7,-85.7],"neck":[-8.7,-85.7],"head":[1.4,-157.3],"shR":[14.1,-96.4],"elR":[10.5,8],"haR":[34.7,73.8],"shL":[-37.9,-103.5],"elL":[-36.1,1],"haL":[-11.9,67.3],"hipR":[25.7,35.6],"knR":[27.7,176.7],"ftR":[-22.4,315.2],"hipL":[13.8,34.6],"knL":[27.7,180.6],"ftL":[-30.2,314.5]},{"rootY":-1.6,"hips":[0,0],"chest":[-8.3,-85.8],"neck":[-8.3,-85.8],"head":[0.4,-157.8],"shR":[13.5,-96.1],"elR":[10.2,8.3],"haR":[34.6,74],"shL":[-36.4,-103.9],"elL":[-34.9,0.7],"haL":[-11,67.1],"hipR":[25.6,35.5],"knR":[27.9,176.6],"ftR":[-21.7,315.3],"hipL":[14.4,34.5],"knL":[28.4,180.5],"ftL":[-29.8,314.3]},{"rootY":-1.8,"hips":[0,0],"chest":[-7.3,-85.9],"neck":[-7.3,-85.9],"head":[0.9,-158.2],"shR":[12.6,-95.7],"elR":[9.4,8.8],"haR":[34.4,74.2],"shL":[-33.2,-104.6],"elL":[-31.8,-0.1],"haL":[-8.8,66.7],"hipR":[25.1,35.5],"knR":[28.2,176.5],"ftR":[-20.5,315.5],"hipL":[15.2,34.5],"knL":[29.3,180.5],"ftL":[-29,314.2]},{"rootY":-1.9,"hips":[0,0],"chest":[-5.2,-86],"neck":[-5.2,-86],"head":[3.9,-158.3],"shR":[11.7,-96],"elR":[8.3,8.5],"haR":[34.1,73.7],"shL":[-27.9,-104.7],"elL":[-30.6,-0.2],"haL":[-8.7,66.9],"hipR":[24.6,35.3],"knR":[28.4,176.3],"ftR":[-19.7,315.5],"hipL":[15.9,34.6],"knL":[30.3,180.6],"ftL":[-28.1,314.3]},{"rootY":-1.9,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.5,-158],"shR":[11.4,-96.5],"elR":[6.6,7.9],"haR":[32.9,73],"shL":[-22.1,-104.6],"elL":[-29.1,-0.3],"haL":[-7,66.8],"hipR":[23.9,35.2],"knR":[29.2,176.1],"ftR":[-17.9,315.7],"hipL":[16.7,34.7],"knL":[31.7,180.7],"ftL":[-26.7,314.4]},{"rootY":-1.9,"hips":[0,0],"chest":[0.5,-86.1],"neck":[0.5,-86.1],"head":[13.6,-157.7],"shR":[12.4,-97.1],"elR":[4.8,7.1],"haR":[31.3,72.2],"shL":[-15.7,-104.1],"elL":[-26.6,-0.2],"haL":[-4.9,67],"hipR":[23.2,34.9],"knR":[29.5,175.7],"ftR":[-16.2,315.8],"hipL":[17.9,34.9],"knL":[33.5,180.8],"ftL":[-25.2,314.3]},{"rootY":-2,"hips":[0,0],"chest":[4.2,-86],"neck":[4.2,-86],"head":[18.5,-157.4],"shR":[14.1,-97.5],"elR":[2.5,6.2],"haR":[28.2,71.7],"shL":[-8.8,-103.5],"elL":[-22.6,0.1],"haL":[-3.4,68.1],"hipR":[22.5,34.7],"knR":[30,175.3],"ftR":[-14.3,315.9],"hipL":[18.6,35.2],"knL":[35.9,180.9],"ftL":[-23.2,314.3]},{"rootY":-2.1,"hips":[0,0],"chest":[7.6,-85.7],"neck":[7.6,-85.7],"head":[22.8,-156.9],"shR":[15.6,-97.7],"elR":[0.9,5.6],"haR":[24,72.2],"shL":[-2.5,-102.8],"elL":[-19.4,0.4],"haL":[-1.4,68.6],"hipR":[21.1,34.6],"knR":[30.2,175],"ftR":[-12.2,316.2],"hipL":[19.6,35.5],"knL":[38.2,181.1],"ftL":[-21.7,314.1]},{"rootY":-1.7,"hips":[0,0],"chest":[10.7,-85.3],"neck":[10.7,-85.3],"head":[26.7,-156.3],"shR":[16.9,-97.9],"elR":[-0.8,4.8],"haR":[20,72.2],"shL":[3.3,-101.8],"elL":[-16.1,0.9],"haL":[0.3,69.5],"hipR":[20.5,34.1],"knR":[30.1,174.3],"ftR":[-11.1,315.9],"hipL":[20.3,35.9],"knL":[40.7,181.2],"ftL":[-20.2,313.8]},{"rootY":-1.7,"hips":[0,0],"chest":[12.7,-84.9],"neck":[12.7,-84.9],"head":[29.6,-155.7],"shR":[17.1,-98.6],"elR":[-2.6,3.7],"haR":[16,71.7],"shL":[7.9,-100.4],"elL":[-14.2,1.8],"haL":[1.5,70.5],"hipR":[19.4,34.7],"knR":[30.8,174.5],"ftR":[-10.6,315.9],"hipL":[20.3,36],"knL":[41.4,181.2],"ftL":[-19.4,313.6]},{"rootY":-1.1,"hips":[0,0],"chest":[14.4,-84.5],"neck":[14.4,-84.5],"head":[31.7,-155.2],"shR":[17,-99.6],"elR":[-4.5,2.2],"haR":[13.4,70.3],"shL":[11.8,-98.6],"elL":[-11.7,3.3],"haL":[3.5,72],"hipR":[18.7,34.3],"knR":[30.8,173.9],"ftR":[-10.2,315.5],"hipL":[20.9,36.3],"knL":[43,181.4],"ftL":[-19.2,313.2]},{"rootY":-0.9,"hips":[0,0],"chest":[15.5,-84.2],"neck":[15.5,-84.2],"head":[32.9,-154.7],"shR":[16.8,-100.4],"elR":[-6.1,0.9],"haR":[11.7,69],"shL":[14.7,-97.1],"elL":[-8.4,4.8],"haL":[6.1,73.6],"hipR":[18.1,34],"knR":[30.4,173.3],"ftR":[-10.1,314.9],"hipL":[21.7,36.4],"knL":[43.8,181.5],"ftL":[-19.3,312.8]},{"rootY":-0.2,"hips":[0,0],"chest":[15.9,-84],"neck":[15.9,-84],"head":[33.1,-154.5],"shR":[16.2,-101.2],"elR":[-8.1,-0.3],"haR":[10.5,67.5],"shL":[16.2,-95.9],"elL":[-6.7,6],"haL":[7.9,74.7],"hipR":[18.6,34.1],"knR":[32.4,172.9],"ftR":[-10.4,313.8],"hipL":[22,36],"knL":[43,181.2],"ftL":[-20.1,312.4]},{"rootY":-0.1,"hips":[0,0],"chest":[16.9,-83.7],"neck":[16.9,-83.7],"head":[34,-154.3],"shR":[16.3,-101.6],"elR":[-8.9,-1.1],"haR":[11.1,66.3],"shL":[18.4,-95],"elL":[-4.3,7],"haL":[11.3,75.3],"hipR":[18.4,34],"knR":[38.4,171.3],"ftR":[-7.9,311.2],"hipL":[22.6,35.7],"knL":[42.4,181],"ftL":[-20.1,312.5]},{"rootY":0.1,"hips":[0,0],"chest":[18.5,-83.3],"neck":[18.5,-83.3],"head":[35.8,-153.9],"shR":[17,-101.4],"elR":[-8.8,-1.2],"haR":[13.4,65.4],"shL":[21.1,-94.3],"elL":[-3,7.4],"haL":[14.8,74.7],"hipR":[18.6,34.4],"knR":[50.2,168.4],"ftR":[-2.7,306.2],"hipL":[23.3,34.9],"knL":[41.9,180.2],"ftL":[-19.6,312]},{"rootY":0.9,"hips":[0,0],"chest":[20.6,-82.8],"neck":[20.6,-82.8],"head":[38.6,-153.3],"shR":[18.9,-100.6],"elR":[-6.9,-0.5],"haR":[18,65.1],"shL":[23.8,-94.1],"elL":[-1.4,7.4],"haL":[18.6,73.7],"hipR":[18.5,34.5],"knR":[62.2,163.8],"ftR":[8.4,301.4],"hipL":[24,34.4],"knL":[43,179.7],"ftL":[-18,311.6]},{"rootY":0.9,"hips":[0,0],"chest":[21.8,-82.5],"neck":[21.8,-82.5],"head":[40.4,-152.9],"shR":[21.1,-99.8],"elR":[-6.1,0],"haR":[21.2,64.5],"shL":[24.2,-94.3],"elL":[-0.4,7.4],"haL":[20.9,72.8],"hipR":[19.3,34.3],"knR":[68.9,160.9],"ftR":[25.8,301.9],"hipL":[23.7,34.3],"knL":[42.3,179.7],"ftL":[-18.4,311.4]},{"rootY":1.1,"hips":[0,0],"chest":[22.6,-82.2],"neck":[22.6,-82.2],"head":[41.9,-152.6],"shR":[22.8,-98.9],"elR":[-4.8,0.8],"haR":[24.4,64.4],"shL":[24.6,-94.7],"elL":[-1,6.8],"haL":[21.5,71.8],"hipR":[19.5,34.1],"knR":[71.6,159.6],"ftR":[45.5,303.7],"hipL":[23.6,34.5],"knL":[41.4,179.9],"ftL":[-20,311.3]},{"rootY":1.3,"hips":[0,0],"chest":[23.1,-82.1],"neck":[23.1,-82.1],"head":[43.7,-152.1],"shR":[24.5,-98.4],"elR":[-2.3,1.5],"haR":[28.3,64.5],"shL":[24.3,-94.8],"elL":[-2.2,6.4],"haL":[20.5,71.5],"hipR":[20.1,34.1],"knR":[73.1,159.3],"ftR":[62.3,304],"hipL":[23.3,34.4],"knL":[40.2,180],"ftL":[-21.9,311]},{"rootY":2,"hips":[0,0],"chest":[23.4,-82],"neck":[23.4,-82],"head":[44.8,-151.8],"shR":[26.2,-97.9],"elR":[-0.5,2],"haR":[32.3,64],"shL":[23.3,-95.1],"elL":[-4,5.9],"haL":[18.3,71.4],"hipR":[20.9,34.2],"knR":[74.3,159.6],"ftR":[72.2,303.6],"hipL":[22.7,34.1],"knL":[38.2,179.9],"ftL":[-24.9,310.4]},{"rootY":2.5,"hips":[0,0],"chest":[24.1,-81.9],"neck":[24.1,-81.9],"head":[45.9,-151.5],"shR":[27.7,-96.9],"elR":[1,3],"haR":[36.4,63.6],"shL":[23.2,-95.8],"elL":[-5.2,4.9],"haL":[16.8,71],"hipR":[21,34.4],"knR":[74.5,160.2],"ftR":[75.3,303.8],"hipL":[22.7,33.9],"knL":[37.1,179.9],"ftL":[-27.6,309.7]},{"rootY":3.3,"hips":[0,0],"chest":[24.7,-81.8],"neck":[24.7,-81.8],"head":[47.4,-151.1],"shR":[29.2,-95.8],"elR":[2.5,4.3],"haR":[40.1,63.7],"shL":[23.4,-96.7],"elL":[-5.7,3.8],"haL":[15.8,70.7],"hipR":[21.2,35.1],"knR":[75,161.2],"ftR":[72.1,305.5],"hipL":[21.9,33.6],"knL":[34.6,179.8],"ftL":[-31.5,308.9]},{"rootY":3.4,"hips":[0,0],"chest":[25.9,-81.5],"neck":[25.9,-81.5],"head":[49.5,-150.7],"shR":[31.1,-94.2],"elR":[3.5,5.8],"haR":[42.6,64.3],"shL":[24.3,-97.7],"elL":[-5.9,2.4],"haL":[15.3,69.8],"hipR":[21.7,35.6],"knR":[76.4,162],"ftR":[69.1,306.8],"hipL":[21.1,33.2],"knL":[31.5,179.6],"ftL":[-35.7,308.4]},{"rootY":3.9,"hips":[0,0],"chest":[27.4,-81.1],"neck":[27.4,-81.1],"head":[52,-150],"shR":[34,-92.4],"elR":[6.1,7.6],"haR":[45.9,65.7],"shL":[24.8,-98.8],"elL":[-6.1,1.2],"haL":[14.9,68.7],"hipR":[21.8,36.2],"knR":[78.8,162],"ftR":[65.7,307.3],"hipL":[20.3,33],"knL":[28.4,179.4],"ftL":[-40.1,307.8]},{"rootY":4.9,"hips":[0,0],"chest":[28.9,-80.7],"neck":[28.9,-80.7],"head":[54.1,-149.3],"shR":[36,-90.6],"elR":[8.2,9.6],"haR":[48.3,67.5],"shL":[26.2,-99.6],"elL":[-4.6,0.4],"haL":[16.1,67.8],"hipR":[21.7,36.7],"knR":[81.7,161.5],"ftR":[62.2,306.7],"hipL":[19.8,32.7],"knL":[25.5,179.2],"ftL":[-44.6,306.8]},{"rootY":5.9,"hips":[0,0],"chest":[29.8,-80.4],"neck":[29.8,-80.4],"head":[55.7,-148.8],"shR":[36.9,-88.9],"elR":[8.9,11.3],"haR":[49,69.3],"shL":[27.4,-100.6],"elL":[-3.8,-0.8],"haL":[17.5,66.4],"hipR":[22.1,37.4],"knR":[85.3,161],"ftR":[58,305.6],"hipL":[19,31.9],"knL":[21.2,178.4],"ftL":[-49.7,305.8]},{"rootY":7.6,"hips":[0,0],"chest":[30.6,-80.1],"neck":[30.6,-80.1],"head":[56.9,-148.4],"shR":[38.9,-87.4],"elR":[10.6,12.9],"haR":[50.5,71],"shL":[27.3,-101.6],"elL":[-2.7,-1.4],"haL":[19.5,65.2],"hipR":[22.4,37.9],"knR":[88.4,160.3],"ftR":[53.7,303.8],"hipL":[18.5,31.3],"knL":[17.8,177.6],"ftL":[-54.6,304.2]},{"rootY":9.6,"hips":[0,0],"chest":[31.6,-79.7],"neck":[31.6,-79.7],"head":[58,-148],"shR":[39.9,-85.6],"elR":[11,14.5],"haR":[50.3,73],"shL":[28.6,-102.5],"elL":[-0.9,-2.4],"haL":[22.9,63.6],"hipR":[22.6,38.3],"knR":[90.8,160],"ftR":[49.4,302.1],"hipL":[17.6,31],"knL":[14.8,176.8],"ftL":[-59.7,302.2]},{"rootY":11.7,"hips":[0,0],"chest":[32.8,-79.2],"neck":[32.8,-79.2],"head":[59.5,-147.3],"shR":[41.8,-83.9],"elR":[12.5,16.2],"haR":[50.9,75.2],"shL":[29.3,-103.2],"elL":[-1.5,-3.6],"haL":[24.3,61.6],"hipR":[22.6,38.8],"knR":[92.9,159.6],"ftR":[45.2,300],"hipL":[17.1,30.4],"knL":[11.6,175.6],"ftL":[-64.5,300.1]},{"rootY":13.6,"hips":[0,0],"chest":[34.1,-78.7],"neck":[34.1,-78.7],"head":[61.1,-146.6],"shR":[43.2,-82.2],"elR":[13,17.6],"haR":[50.4,77.3],"shL":[31,-103.6],"elL":[-2.6,-5.2],"haL":[24.5,59.7],"hipR":[22.1,39.4],"knR":[93.4,160],"ftR":[41.2,298.8],"hipL":[16.6,30.1],"knL":[9.1,174.9],"ftL":[-68.9,298.1]},{"rootY":14.8,"hips":[0,0],"chest":[35.6,-78],"neck":[35.6,-78],"head":[62.8,-145.7],"shR":[44.8,-80.8],"elR":[13.2,18.7],"haR":[49.3,79.3],"shL":[32.8,-103.6],"elL":[-4.6,-6.9],"haL":[22.7,58],"hipR":[21.9,39.7],"knR":[92.7,160.9],"ftR":[36,297.9],"hipL":[16.3,30.1],"knL":[7.5,174.1],"ftL":[-73.8,295.1]},{"rootY":15.1,"hips":[0,0],"chest":[37.2,-77.2],"neck":[37.2,-77.2],"head":[65.3,-144.5],"shR":[46.3,-79.1],"elR":[14,20.1],"haR":[48.4,81.7],"shL":[34.8,-103.6],"elL":[-6,-8.5],"haL":[19.1,57.2],"hipR":[22.2,39.5],"knR":[91.1,162.3],"ftR":[31.6,298],"hipL":[16,30.2],"knL":[11.5,173.5],"ftL":[-76.2,289.8]},{"rootY":14.1,"hips":[0,0],"chest":[38.4,-76.5],"neck":[38.4,-76.5],"head":[67.7,-143.2],"shR":[47.5,-77.4],"elR":[14.9,21.8],"haR":[47.2,84.4],"shL":[36.4,-103.8],"elL":[-7,-9.9],"haL":[14.9,56.8],"hipR":[22.5,39.3],"knR":[88.3,164.1],"ftR":[27.1,298.9],"hipL":[15.9,30.4],"knL":[21.4,172.3],"ftL":[-74,282.6]},{"rootY":13.2,"hips":[0,0],"chest":[39.1,-75.9],"neck":[39.1,-75.9],"head":[69,-142.4],"shR":[49.1,-76.2],"elR":[16.5,22.9],"haR":[47.2,86.3],"shL":[36.5,-103.8],"elL":[-9.5,-11.3],"haL":[7.2,56.7],"hipR":[22.7,39.2],"knR":[85.2,165.8],"ftR":[22.8,300],"hipL":[16.1,30.3],"knL":[34.8,169.6],"ftL":[-66.3,274.8]},{"rootY":12.4,"hips":[0,0],"chest":[39,-75.9],"neck":[39,-75.9],"head":[68.9,-142.1],"shR":[48.8,-75.1],"elR":[16,24],"haR":[45.7,87.9],"shL":[36.4,-104.8],"elL":[-12.9,-14.2],"haL":[-1,54.5],"hipR":[22.9,38.9],"knR":[82.2,167.1],"ftR":[18.3,300.5],"hipL":[16.4,30.4],"knL":[48.9,166.2],"ftL":[-52.1,271.3]},{"rootY":11.5,"hips":[0,0],"chest":[39,-75.7],"neck":[39,-75.7],"head":[68.9,-141.9],"shR":[49.7,-73.7],"elR":[17.2,25.4],"haR":[46.1,89.6],"shL":[35.6,-105.8],"elL":[-15,-15.9],"haL":[-7.7,53.4],"hipR":[23.1,38.6],"knR":[78.9,168.4],"ftR":[14,301.3],"hipL":[16.8,30.4],"knL":[62.7,162.3],"ftL":[-29.6,275]},{"rootY":10.7,"hips":[0,0],"chest":[38.7,-75.8],"neck":[38.7,-75.8],"head":[68.3,-141.8],"shR":[49.5,-72.8],"elR":[18,26.7],"haR":[46.3,91.3],"shL":[35.1,-106.7],"elL":[-17.1,-17.8],"haL":[-13,51.9],"hipR":[23.1,38.4],"knR":[75.2,169.7],"ftR":[9.8,302.2],"hipL":[17.4,30.6],"knL":[74.1,159.1],"ftL":[-2.1,283.5]},{"rootY":9.5,"hips":[0,0],"chest":[37.9,-76.1],"neck":[37.9,-76.1],"head":[67.5,-141.9],"shR":[48.3,-72.9],"elR":[17.6,26.9],"haR":[45.6,91.6],"shL":[34.6,-107.3],"elL":[-18.7,-18.8],"haL":[-16.1,50.9],"hipR":[22.9,38.1],"knR":[70.8,171],"ftR":[5,303.3],"hipL":[18.2,30.6],"knL":[82.1,157],"ftL":[27.6,292.2]},{"rootY":8.9,"hips":[0,0],"chest":[36.9,-76.4],"neck":[36.9,-76.4],"head":[66.2,-142.3],"shR":[47.3,-73.7],"elR":[17.3,26.4],"haR":[45.3,91],"shL":[33.4,-107.3],"elL":[-19.8,-18.6],"haL":[-17.2,51.1],"hipR":[22.7,37.6],"knR":[66.4,171.9],"ftR":[0.3,304],"hipL":[19.3,31],"knL":[88.2,155.8],"ftL":[57.8,297.5]},{"rootY":8.1,"hips":[0,0],"chest":[35.3,-77.2],"neck":[35.3,-77.2],"head":[64,-143.2],"shR":[44.1,-75],"elR":[14.4,25.1],"haR":[42.5,89.8],"shL":[32.8,-107.5],"elL":[-19.3,-18.1],"haL":[-15.7,51.6],"hipR":[22.4,37.3],"knR":[61.7,173],"ftR":[-5.3,304.6],"hipL":[20.4,31],"knL":[91,155.6],"ftL":[81.5,299.3]},{"rootY":8.3,"hips":[0,0],"chest":[33.8,-77.8],"neck":[33.8,-77.8],"head":[61.7,-144.4],"shR":[41.2,-76.5],"elR":[11.5,23.7],"haR":[39.7,88.3],"shL":[32.5,-107.5],"elL":[-17.5,-16.8],"haL":[-11.6,52.8],"hipR":[21.7,36.8],"knR":[57.2,173.6],"ftR":[-11.2,304.6],"hipL":[21.5,31.4],"knL":[93.4,155.8],"ftL":[97.8,298.8]},{"rootY":8.1,"hips":[0,0],"chest":[33.3,-78.1],"neck":[33.3,-78.1],"head":[59.9,-145.6],"shR":[38.9,-77.9],"elR":[8.7,22.1],"haR":[36.6,86.9],"shL":[33.4,-106.8],"elL":[-14.1,-14.8],"haL":[-5.3,54.6],"hipR":[21.2,36.8],"knR":[51.9,174.7],"ftR":[-17.7,305.2],"hipL":[22.3,31.4],"knL":[94.9,155.9],"ftL":[103.6,298.5]},{"rootY":8.6,"hips":[0,0],"chest":[33.8,-78],"neck":[33.8,-78],"head":[60.4,-146.1],"shR":[37,-79.3],"elR":[5.6,20.4],"haR":[32.3,85.6],"shL":[36.4,-105.2],"elL":[-9.5,-12.4],"haL":[1.4,56.9],"hipR":[20,36.1],"knR":[46.5,174.8],"ftR":[-24.1,304.8],"hipL":[23.4,32.4],"knL":[97.1,156.6],"ftL":[99.4,299.7]},{"rootY":8.6,"hips":[0,0],"chest":[34.4,-77.8],"neck":[34.4,-77.8],"head":[62.2,-145.7],"shR":[34.2,-80.9],"elR":[1.8,18.4],"haR":[26.9,84.2],"shL":[41.1,-103.1],"elL":[-5.6,-10.7],"haL":[5.3,58.9],"hipR":[18,36],"knR":[40.9,175.3],"ftR":[-31.4,304.5],"hipL":[24.5,33],"knL":[98.3,157.6],"ftL":[93.1,301]},{"rootY":9,"hips":[0,0],"chest":[36.6,-76.8],"neck":[36.6,-76.8],"head":[65.9,-144.1],"shR":[32.1,-81.2],"elR":[-2,17.5],"haR":[22,83.5],"shL":[48.1,-100.7],"elL":[0.3,-9],"haL":[9.2,61],"hipR":[15.8,36.3],"knR":[35.1,175.8],"ftR":[-38.7,304.3],"hipL":[25.1,33.7],"knL":[100.4,158],"ftL":[87.1,301.7]},{"rootY":9,"hips":[0,0],"chest":[38,-76],"neck":[38,-76],"head":[69.5,-142.2],"shR":[29.1,-81.6],"elR":[-4.9,17.1],"haR":[17.8,83.3],"shL":[54.5,-98.4],"elL":[5.2,-7.8],"haL":[12.1,62.5],"hipR":[14.2,36.2],"knR":[28.6,175.8],"ftR":[-45.8,304],"hipL":[25.8,34.1],"knL":[102.8,158],"ftL":[80.7,301.1]},{"rootY":9.2,"hips":[0,0],"chest":[39.5,-75],"neck":[39.5,-75],"head":[72.2,-140.7],"shR":[26.8,-81.5],"elR":[-8.8,16.7],"haR":[13.4,82.8],"shL":[60.4,-96.4],"elL":[10.6,-6.6],"haL":[15.3,63.9],"hipR":[11.7,36.1],"knR":[22,175.5],"ftR":[-52.3,303.8],"hipL":[26.7,34.8],"knL":[104.7,158.4],"ftL":[74.8,300.4]},{"rootY":10.4,"hips":[0,0],"chest":[40.8,-74.2],"neck":[40.8,-74.2],"head":[74.4,-139.4],"shR":[24,-81.3],"elR":[-12.3,16.6],"haR":[9.6,82.7],"shL":[66.1,-94.9],"elL":[16.3,-5.7],"haL":[20.6,64.8],"hipR":[10,35.9],"knR":[16.7,174.9],"ftR":[-58.6,302.6],"hipL":[27,35.4],"knL":[106.6,158.3],"ftL":[69.8,298.9]},{"rootY":11.4,"hips":[0,0],"chest":[41.5,-73.7],"neck":[41.5,-73.7],"head":[75.1,-138.9],"shR":[22.7,-81.7],"elR":[-14.1,16],"haR":[7.1,82.2],"shL":[68.9,-93.4],"elL":[19.8,-4.2],"haL":[24.6,66.3],"hipR":[8.5,35.5],"knR":[11.1,174.2],"ftR":[-64.8,301.5],"hipL":[27.4,36],"knL":[107.6,158.7],"ftL":[64,297.5]},{"rootY":12.5,"hips":[0,0],"chest":[41.6,-73.7],"neck":[41.6,-73.7],"head":[76,-138.4],"shR":[19.9,-82.8],"elR":[-17.3,14.8],"haR":[3.8,81],"shL":[71.9,-92.3],"elL":[24.1,-2.6],"haL":[29.5,67.9],"hipR":[7.1,35.2],"knR":[6.2,173.4],"ftR":[-69.7,300.6],"hipL":[27.6,36.5],"knL":[107.9,159.3],"ftL":[59.7,296.7]},{"rootY":13.1,"hips":[0,0],"chest":[42.2,-73.4],"neck":[42.2,-73.4],"head":[75.3,-138.8],"shR":[17.5,-85.4],"elR":[-19.8,12.2],"haR":[1.1,78.5],"shL":[75.9,-89.1],"elL":[29.1,0.9],"haL":[35.2,71.3],"hipR":[6,34.9],"knR":[0.8,172.6],"ftR":[-74.9,299.9],"hipL":[27.6,37],"knL":[107.5,160.1],"ftL":[54.7,295.8]},{"rootY":13.6,"hips":[0,0],"chest":[42.1,-73.3],"neck":[42.1,-73.3],"head":[73.8,-139.4],"shR":[20.1,-84.1],"elR":[-17.1,13.5],"haR":[3.3,80],"shL":[73.4,-90],"elL":[27.6,0.5],"haL":[33.9,70.9],"hipR":[5.3,34.7],"knR":[-3.9,172],"ftR":[-78.7,299.7],"hipL":[27.4,37.5],"knL":[107,160.8],"ftL":[51.2,295.4]},{"rootY":13.7,"hips":[0,0],"chest":[43,-72.9],"neck":[43,-72.9],"head":[70.8,-140.3],"shR":[20.3,-84.1],"elR":[-17.3,13.4],"haR":[3.4,79.8],"shL":[74.7,-89.4],"elL":[28.8,1.2],"haL":[34.9,71.6],"hipR":[4.4,34.4],"knR":[-8.3,171.5],"ftR":[-81.5,299.8],"hipL":[27.2,37.9],"knL":[106.3,161.5],"ftL":[48.6,295.3]},{"rootY":13.4,"hips":[0,0],"chest":[42.9,-72.9],"neck":[42.9,-72.9],"head":[69.8,-139.1],"shR":[21.5,-84.7],"elR":[-17,12.4],"haR":[4.6,78.7],"shL":[73.8,-88.7],"elL":[28.1,2.2],"haL":[33.7,72.7],"hipR":[4,34.5],"knR":[-12.7,171.2],"ftR":[-84.6,300.1],"hipL":[27,38.1],"knL":[105.1,162.3],"ftL":[45.8,295.5]},{"rootY":13.5,"hips":[0,0],"chest":[43.7,-72.7],"neck":[43.7,-72.7],"head":[71.9,-136.9],"shR":[24.7,-84.2],"elR":[-16,12.1],"haR":[5.6,78.5],"shL":[71.9,-88.8],"elL":[25.3,2.1],"haL":[31,72.5],"hipR":[4.1,34.2],"knR":[-16.3,170.7],"ftR":[-86.8,300.1],"hipL":[26.4,38.6],"knL":[104,163],"ftL":[44,295.8]},{"rootY":13.9,"hips":[0,0],"chest":[43,-73.2],"neck":[43,-73.2],"head":[72.8,-136.2],"shR":[28.2,-85.6],"elR":[-13.8,10],"haR":[6.8,77],"shL":[67.5,-88.3],"elL":[20.5,2.9],"haL":[26.1,73.4],"hipR":[4.9,34.4],"knR":[-19.7,170.3],"ftR":[-89.9,299.9],"hipL":[25.3,38.8],"knL":[102.8,163.4],"ftL":[41.7,295.8]},{"rootY":14.5,"hips":[0,0],"chest":[43.2,-73.3],"neck":[43.2,-73.3],"head":[73.9,-136],"shR":[32.4,-86],"elR":[-10.8,9.1],"haR":[9.3,76.3],"shL":[63.7,-88.2],"elL":[16.3,3.6],"haL":[22.3,74],"hipR":[5.9,34.1],"knR":[-22.2,169.6],"ftR":[-92.3,299.1],"hipL":[24.6,39],"knL":[102.3,163.5],"ftL":[39.6,295.3]},{"rootY":15.1,"hips":[0,0],"chest":[43.2,-73.5],"neck":[43.2,-73.5],"head":[74.3,-136.4],"shR":[36.8,-86.4],"elR":[-7.5,8],"haR":[12.1,75.4],"shL":[59.2,-88.3],"elL":[11.1,3.7],"haL":[17.2,74.1],"hipR":[7,33.8],"knR":[-25.4,168.7],"ftR":[-95.1,298.3],"hipL":[23.8,39.3],"knL":[101.8,163.6],"ftL":[37.2,294.4]},{"rootY":15.7,"hips":[0,0],"chest":[43.6,-73.5],"neck":[43.6,-73.5],"head":[75.3,-136.5],"shR":[41.3,-86.3],"elR":[-1.6,8.5],"haR":[17.5,76.1],"shL":[55.5,-88.4],"elL":[6.4,3.5],"haL":[12.3,73.9],"hipR":[8.2,33.7],"knR":[-29.6,167.5],"ftR":[-98.2,297.7],"hipL":[22.7,39.5],"knL":[101,163.6],"ftL":[35.2,293.9]},{"rootY":15.9,"hips":[0,0],"chest":[43,-74],"neck":[43,-74],"head":[75,-137.2],"shR":[44.2,-86.9],"elR":[3,8.5],"haR":[22.9,75.8],"shL":[51.5,-88.7],"elL":[2,3.2],"haL":[6.6,73.7],"hipR":[9.1,33.7],"knR":[-35.8,165.6],"ftR":[-101.7,297.1],"hipL":[22,39.7],"knL":[99.6,164.2],"ftL":[32.2,293.6]},{"rootY":16.3,"hips":[0,0],"chest":[43.3,-73.9],"neck":[43.3,-73.9],"head":[73.4,-138.8],"shR":[46.8,-87.1],"elR":[7.8,8.9],"haR":[29.1,75.8],"shL":[49.3,-88.4],"elL":[-0.6,3.3],"haL":[3.1,73.9],"hipR":[9.6,34],"knR":[-45.1,162.5],"ftR":[-105.1,296.4],"hipL":[21,39.8],"knL":[98,164.6],"ftL":[29.2,293.3]},{"rootY":16.7,"hips":[0,0],"chest":[43.2,-74],"neck":[43.2,-74],"head":[69.6,-141.8],"shR":[48,-87.6],"elR":[12.6,9.5],"haR":[35.7,75.9],"shL":[47.8,-88.2],"elL":[-2,3.7],"haL":[0.9,74.4],"hipR":[10,34],"knR":[-47.8,161.3],"ftR":[-108.4,294.8],"hipL":[20.2,40.1],"knL":[97.1,165],"ftL":[26.3,292.6]},{"rootY":17.1,"hips":[0,0],"chest":[43.2,-74],"neck":[43.2,-74],"head":[68,-142.5],"shR":[48.3,-88],"elR":[16.3,10],"haR":[41.5,75.7],"shL":[47.4,-87.7],"elL":[-2.8,4],"haL":[-0.3,74.7],"hipR":[10.2,33.9],"knR":[-49.1,160.5],"ftR":[-111.4,293.4],"hipL":[19.8,40.2],"knL":[96.2,165.4],"ftL":[23.8,292.1]},{"rootY":17.4,"hips":[0,0],"chest":[43.5,-73.8],"neck":[43.5,-73.8],"head":[69.2,-141.3],"shR":[47.7,-88.2],"elR":[18.9,10.7],"haR":[47.3,75.2],"shL":[48.8,-87.1],"elL":[-2.6,4],"haL":[-0.2,74.7],"hipR":[9.7,33.9],"knR":[-50.5,160.1],"ftR":[-113.7,292.6],"hipL":[19.4,40.5],"knL":[95.7,165.8],"ftL":[22,291.8]},{"rootY":17.7,"hips":[0,0],"chest":[44.3,-73.4],"neck":[44.3,-73.4],"head":[71,-140.2],"shR":[45.8,-87.9],"elR":[19.2,11.9],"haR":[50.9,74.9],"shL":[52.2,-86.7],"elL":[-0.2,3.9],"haL":[1,74.6],"hipR":[8.9,33.9],"knR":[-51.8,159.8],"ftR":[-115.6,292],"hipL":[19.7,40.6],"knL":[95.2,166.4],"ftL":[20.4,291.7]},{"rootY":17.5,"hips":[0,0],"chest":[44.7,-73.2],"neck":[44.7,-73.2],"head":[72.1,-139.7],"shR":[43.9,-87.2],"elR":[19.6,13.5],"haR":[53.9,75.1],"shL":[55.1,-86.9],"elL":[2.5,3.5],"haL":[3,74.1],"hipR":[8,34],"knR":[-53.1,159.8],"ftR":[-117.2,291.8],"hipL":[19.8,40.7],"knL":[94.3,167.1],"ftL":[18.5,291.9]},{"rootY":17.2,"hips":[0,0],"chest":[44.9,-73],"neck":[44.9,-73],"head":[72.7,-139.7],"shR":[43,-86.4],"elR":[19.5,14.7],"haR":[54.8,75.7],"shL":[56.7,-87.2],"elL":[4.8,3.4],"haL":[5.5,74.1],"hipR":[7.4,34.1],"knR":[-53.9,159.7],"ftR":[-118.3,291.5],"hipL":[19.8,40.8],"knL":[93.5,167.7],"ftL":[17.4,292.1]},{"rootY":17.1,"hips":[0,0],"chest":[44.4,-73.4],"neck":[44.4,-73.4],"head":[72.3,-140.4],"shR":[41.6,-86.3],"elR":[18.3,15],"haR":[53.4,76.1],"shL":[57.1,-88],"elL":[5.7,2.8],"haL":[7.5,73.5],"hipR":[6.9,34.1],"knR":[-54.9,159.3],"ftR":[-119.8,290.8],"hipL":[19.9,40.9],"knL":[92.5,168.4],"ftL":[15.7,292.5]},{"rootY":17.3,"hips":[0,0],"chest":[43.8,-73.8],"neck":[43.8,-73.8],"head":[70.7,-141.7],"shR":[40.3,-86.3],"elR":[15.8,14.7],"haR":[49.6,76.6],"shL":[56.6,-88.9],"elL":[6,2.3],"haL":[9.3,72.9],"hipR":[7.2,34.1],"knR":[-55.9,158.4],"ftR":[-122.1,288.9],"hipL":[20.1,40.7],"knL":[90.8,169.2],"ftL":[12,292.1]},{"rootY":17.1,"hips":[0,0],"chest":[42.9,-74.3],"neck":[42.9,-74.3],"head":[69,-142.5],"shR":[39.8,-87],"elR":[12.7,13.2],"haR":[44,76.4],"shL":[55.1,-89.3],"elL":[5.9,2.8],"haL":[10.2,73.3],"hipR":[7.9,33.8],"knR":[-50.4,159.7],"ftR":[-124,286.3],"hipL":[20.6,40.5],"knL":[88.3,170.6],"ftL":[8.1,292.5]},{"rootY":15.6,"hips":[0,0],"chest":[42.9,-74.3],"neck":[42.9,-74.3],"head":[69.3,-142.2],"shR":[40.3,-87.7],"elR":[9.8,11.5],"haR":[36.8,76.4],"shL":[54.4,-88.7],"elL":[6.2,4],"haL":[11.6,74.4],"hipR":[8.7,33.9],"knR":[-26.6,165.9],"ftR":[-120.6,279.4],"hipL":[21.7,39.8],"knL":[84.4,172.2],"ftL":[4.6,294.3]},{"rootY":13.3,"hips":[0,0],"chest":[43.3,-74],"neck":[43.3,-74],"head":[70.3,-141.7],"shR":[41.2,-88.2],"elR":[8.2,10.2],"haR":[31.1,76.2],"shL":[54.3,-87.6],"elL":[6.8,5.5],"haL":[14,75.7],"hipR":[9.9,34.2],"knR":[-0.2,168],"ftR":[-108.3,269.2],"hipL":[22.7,38.8],"knL":[79.6,173.6],"ftL":[1.7,297]},{"rootY":11.8,"hips":[0,0],"chest":[42.7,-74.2],"neck":[42.7,-74.2],"head":[70.2,-141.7],"shR":[40.3,-89],"elR":[5.5,8.6],"haR":[25.1,75.3],"shL":[53.9,-87.3],"elL":[7.7,6.4],"haL":[17.5,76.2],"hipR":[11.5,34.5],"knR":[26.2,165.8],"ftR":[-87.2,261.3],"hipL":[23.5,37.7],"knL":[75.7,174.2],"ftL":[-1.2,298.3]},{"rootY":11.6,"hips":[0,0],"chest":[42.4,-74.3],"neck":[42.4,-74.3],"head":[69.9,-141.8],"shR":[40,-89.3],"elR":[4.1,7.9],"haR":[21.8,74.7],"shL":[53.2,-87.3],"elL":[8.6,7.2],"haL":[20.6,76.7],"hipR":[12.9,34.7],"knR":[49.8,160.9],"ftR":[-56.1,264.3],"hipL":[23.6,37.1],"knL":[72.9,174.7],"ftL":[-3.9,298.8]},{"rootY":11.5,"hips":[0,0],"chest":[41.4,-74.8],"neck":[41.4,-74.8],"head":[68.6,-142.5],"shR":[39.8,-89.8],"elR":[3.3,7.2],"haR":[19.9,74.1],"shL":[51.4,-87.8],"elL":[7.3,7],"haL":[20.7,76.2],"hipR":[13.9,34.6],"knR":[67.8,155.3],"ftR":[-19,275.4],"hipL":[24.1,36.4],"knL":[69.8,175.3],"ftL":[-7.9,298.8]},{"rootY":11.4,"hips":[0,0],"chest":[40.7,-75.2],"neck":[40.7,-75.2],"head":[66.9,-143.3],"shR":[38.8,-89.8],"elR":[3,7.6],"haR":[18.9,74.5],"shL":[50.4,-88.8],"elL":[6.9,6.2],"haL":[20,75.5],"hipR":[15,34.9],"knR":[80.4,151.8],"ftR":[19.9,287.1],"hipL":[24,35.8],"knL":[65.5,176],"ftL":[-12.8,299.1]},{"rootY":10.1,"hips":[0,0],"chest":[39,-76.1],"neck":[39,-76.1],"head":[64.6,-144.4],"shR":[36.9,-89.8],"elR":[0.9,7.5],"haR":[18.3,74.2],"shL":[48.3,-90.7],"elL":[5.1,4.5],"haL":[17.4,74],"hipR":[16.5,34.9],"knR":[87.1,151],"ftR":[55.3,294.9],"hipL":[23.6,35.4],"knL":[59.4,177.3],"ftL":[-18.6,300.6]},{"rootY":8.8,"hips":[0,0],"chest":[37.8,-76.7],"neck":[37.8,-76.7],"head":[62.1,-145.6],"shR":[37.4,-89.6],"elR":[2.1,8],"haR":[20,74.8],"shL":[44.9,-92.3],"elL":[1.7,2.9],"haL":[13.3,72.5],"hipR":[16.8,35.2],"knR":[89.2,151.5],"ftR":[83.5,297.6],"hipL":[23.3,35.1],"knL":[52.8,178.6],"ftL":[-25.2,301.9]},{"rootY":7.4,"hips":[0,0],"chest":[36.5,-77.3],"neck":[36.5,-77.3],"head":[59.6,-146.7],"shR":[38.5,-89.1],"elR":[4.5,9.1],"haR":[23.6,75.8],"shL":[41,-94],"elL":[-2.1,1.2],"haL":[9.4,70.9],"hipR":[18.4,35.5],"knR":[90.7,153.1],"ftR":[96.7,298.7],"hipL":[22,34.8],"knL":[44.2,179.7],"ftL":[-33.4,303.2]},{"rootY":7.4,"hips":[0,0],"chest":[35.5,-77.9],"neck":[35.5,-77.9],"head":[57.6,-147.4],"shR":[40,-88.4],"elR":[6.2,10],"haR":[25.9,76.9],"shL":[37.2,-95.9],"elL":[-6,-0.7],"haL":[5,69.1],"hipR":[19.4,35.8],"knR":[91.2,154.4],"ftR":[92,300.7],"hipL":[21.4,34.3],"knL":[36.2,180.2],"ftL":[-42.8,302.9]},{"rootY":7.3,"hips":[0,0],"chest":[35.6,-77.8],"neck":[35.6,-77.8],"head":[57.5,-147.5],"shR":[42.4,-87.2],"elR":[8.9,11.4],"haR":[29.2,78.4],"shL":[35.3,-97.1],"elL":[-8.7,-2.2],"haL":[0.8,67.8],"hipR":[20.2,36.3],"knR":[92.3,155.6],"ftR":[84.2,302.2],"hipL":[20.1,34],"knL":[28.6,180.5],"ftL":[-51.2,302.7]},{"rootY":7.5,"hips":[0,0],"chest":[36.4,-77.5],"neck":[36.4,-77.5],"head":[58.6,-147],"shR":[44.8,-85.6],"elR":[11.5,13],"haR":[32.5,80],"shL":[34.6,-98],"elL":[-10.6,-3.7],"haL":[-3.3,66.5],"hipR":[21.2,36.7],"knR":[93.7,156.5],"ftR":[76.5,302.7],"hipL":[18.6,33.7],"knL":[20.4,180.4],"ftL":[-60.6,301.7]},{"rootY":7.5,"hips":[0,0],"chest":[37.4,-77.1],"neck":[37.4,-77.1],"head":[60.2,-146.4],"shR":[47.5,-83.6],"elR":[14.5,15],"haR":[36.2,81.9],"shL":[34.3,-98.9],"elL":[-10.9,-4.6],"haL":[-6,65.7],"hipR":[21.8,37.4],"knR":[94.8,157.5],"ftR":[69.3,302.7],"hipL":[17,33.3],"knL":[13.1,179.8],"ftL":[-68.4,300.8]},{"rootY":7.9,"hips":[0,0],"chest":[38.6,-76.5],"neck":[38.6,-76.5],"head":[61.9,-145.5],"shR":[50.3,-81.6],"elR":[17.1,16.9],"haR":[38.8,83.9],"shL":[34.1,-99.8],"elL":[-13.1,-6.4],"haL":[-8.9,64],"hipR":[21.9,38.1],"knR":[94.9,158.5],"ftR":[62.2,302.6],"hipL":[15.6,33.1],"knL":[6.6,179.2],"ftL":[-75.8,299.4]},{"rootY":8.7,"hips":[0,0],"chest":[39.5,-76.1],"neck":[39.5,-76.1],"head":[63.7,-144.7],"shR":[52.7,-79.6],"elR":[19.2,18.9],"haR":[40.4,86.1],"shL":[33.8,-100.9],"elL":[-15.2,-8.5],"haL":[-11.5,61.9],"hipR":[22,38.6],"knR":[94.9,159.4],"ftR":[55.6,302],"hipL":[14.7,32.6],"knL":[0.9,178.1],"ftL":[-82.4,297.5]},{"rootY":9.5,"hips":[0,0],"chest":[40.5,-75.6],"neck":[40.5,-75.6],"head":[65.1,-144],"shR":[54.4,-77.5],"elR":[20,20.7],"haR":[40.9,88],"shL":[34.3,-101.9],"elL":[-16.2,-10.3],"haL":[-13.1,60.1],"hipR":[21.8,39.3],"knR":[94.6,160.3],"ftR":[49.7,301.3],"hipL":[13.8,32.1],"knL":[-4.7,176.8],"ftL":[-88.5,295.6]},{"rootY":10.7,"hips":[0,0],"chest":[41.3,-75.2],"neck":[41.3,-75.2],"head":[66.6,-143.2],"shR":[56.1,-75.8],"elR":[20.6,22.1],"haR":[38.9,90.2],"shL":[34.3,-102.7],"elL":[-17.4,-11.9],"haL":[-14.7,58.5],"hipR":[21.8,39.8],"knR":[94.5,160.9],"ftR":[43.8,300],"hipL":[12.9,31.8],"knL":[-9.4,175.5],"ftL":[-94.2,293.5]},{"rootY":13.2,"hips":[0,0],"chest":[41.5,-75],"neck":[41.5,-75],"head":[67.4,-142.8],"shR":[56.6,-74.6],"elR":[20.7,23.3],"haR":[40,91.1],"shL":[34.5,-103.5],"elL":[-18,-13.2],"haL":[-15.9,57.1],"hipR":[21.9,40.1],"knR":[94.1,161.5],"ftR":[37.9,298.6],"hipL":[12.3,31.5],"knL":[-11.5,174.5],"ftL":[-99.9,289.6]},{"rootY":13.2,"hips":[0,0],"chest":[41.8,-74.8],"neck":[41.8,-74.8],"head":[67.8,-142.5],"shR":[56.8,-73.3],"elR":[20.1,24.4],"haR":[38.5,92.4],"shL":[35.2,-104.2],"elL":[-17.7,-14.3],"haL":[-16.6,56],"hipR":[21.9,40.1],"knR":[91.6,162.9],"ftR":[32.6,298.9],"hipL":[12.2,31.6],"knL":[-8.3,174.5],"ftL":[-102.2,285.1]},{"rootY":11.4,"hips":[0,0],"chest":[42.5,-74.3],"neck":[42.5,-74.3],"head":[68.4,-142.3],"shR":[57,-71.9],"elR":[20.1,25.7],"haR":[38.1,93.8],"shL":[36.5,-104.5],"elL":[-17,-15],"haL":[-16.4,55.1],"hipR":[22,40],"knR":[87.6,164.9],"ftR":[27.7,300.6],"hipL":[12.2,31.6],"knL":[2,174.7],"ftL":[-99.9,278.5]},{"rootY":9.6,"hips":[0,0],"chest":[43.4,-73.7],"neck":[43.4,-73.7],"head":[69.4,-141.8],"shR":[57.6,-70.4],"elR":[20.2,27.1],"haR":[39.1,94.9],"shL":[37.7,-104.7],"elL":[-16.3,-15.7],"haL":[-15.9,54.4],"hipR":[22.4,39.5],"knR":[83.4,166.7],"ftR":[23.5,302.4],"hipL":[12.7,31.8],"knL":[19.5,173.8],"ftL":[-90.6,269.6]},{"rootY":8.6,"hips":[0,0],"chest":[43.9,-73.2],"neck":[43.9,-73.2],"head":[70,-141.2],"shR":[57,-69.1],"elR":[19.7,28.5],"haR":[38.1,96.4],"shL":[39.5,-105],"elL":[-15.2,-16.5],"haL":[-14.7,53.5],"hipR":[22.6,39.2],"knR":[80.3,167.9],"ftR":[20.1,303.4],"hipL":[13.3,31.8],"knL":[38,170.4],"ftL":[-74.9,262.3]},{"rootY":8,"hips":[0,0],"chest":[44.3,-72.8],"neck":[44.3,-72.8],"head":[70.7,-140.6],"shR":[56.4,-67.7],"elR":[19.4,30],"haR":[40,97.3],"shL":[40.9,-105.4],"elL":[-14.2,-17.4],"haL":[-13.2,52.5],"hipR":[22.7,39],"knR":[78.3,168.7],"ftR":[16.9,303.5],"hipL":[14.2,31.7],"knL":[55.5,164.9],"ftL":[-51.8,261.9]},{"rootY":8.2,"hips":[0,0],"chest":[44.6,-72.4],"neck":[44.6,-72.4],"head":[71.4,-139.8],"shR":[56.5,-66.4],"elR":[20.2,31.6],"haR":[41.2,98.8],"shL":[41.5,-105.8],"elL":[-13.9,-18.3],"haL":[-11.8,51.5],"hipR":[22.8,38.7],"knR":[77.1,169],"ftR":[14.3,303.1],"hipL":[15,31.7],"knL":[71.5,158.3],"ftL":[-22.6,268]},{"rootY":8.6,"hips":[0,0],"chest":[44.7,-72.1],"neck":[44.7,-72.1],"head":[72.4,-139.1],"shR":[56,-65.3],"elR":[19.9,32.7],"haR":[41.3,99.7],"shL":[42.3,-106.2],"elL":[-13.5,-19.2],"haL":[-9.7,50.2],"hipR":[22.8,38.6],"knR":[75.9,169.4],"ftR":[11.2,302.4],"hipL":[15.9,31.3],"knL":[83.7,152.7],"ftL":[9.2,277.5]},{"rootY":9.5,"hips":[0,0],"chest":[44.6,-71.9],"neck":[44.6,-71.9],"head":[73.5,-138.2],"shR":[55.2,-64.4],"elR":[19.5,33.8],"haR":[41.9,100.5],"shL":[43,-106.6],"elL":[-12.9,-20.1],"haL":[-6.3,48.9],"hipR":[22.6,38.4],"knR":[74.7,169.7],"ftR":[7.8,301.5],"hipL":[17,31.3],"knL":[92.3,149.1],"ftL":[40.8,285.6]},{"rootY":10.2,"hips":[0,0],"chest":[43.6,-72.2],"neck":[43.6,-72.2],"head":[73.1,-138.1],"shR":[52.8,-64.6],"elR":[17.3,33.7],"haR":[40,100.3],"shL":[43.6,-106.9],"elL":[-12.2,-20.8],"haL":[-2.3,47.7],"hipR":[22,38.3],"knR":[73.3,169.9],"ftR":[4.8,300.8],"hipL":[18.1,31.3],"knL":[97.3,147.8],"ftL":[69.6,290.6]},{"rootY":10.6,"hips":[0,0],"chest":[42.9,-72.3],"neck":[42.9,-72.3],"head":[73,-137.7],"shR":[50.6,-64.8],"elR":[15.5,33.6],"haR":[38.5,100.2],"shL":[44.1,-107],"elL":[-10.7,-20.7],"haL":[1.5,47.4],"hipR":[21.6,38],"knR":[71.7,170],"ftR":[1.7,299.7],"hipL":[19.1,31.5],"knL":[98.7,148.4],"ftL":[89.4,292.5]},{"rootY":10.5,"hips":[0,0],"chest":[42,-72.8],"neck":[42,-72.8],"head":[72.5,-137.5],"shR":[47.1,-65.7],"elR":[12.7,33],"haR":[35.7,99.6],"shL":[45.4,-107.2],"elL":[-7.6,-20.1],"haL":[5.5,47.9],"hipR":[20.6,37.8],"knR":[68.8,170.4],"ftR":[-1.2,299.9],"hipL":[20.5,31.7],"knL":[98.2,150],"ftL":[100,292.7]},{"rootY":10.1,"hips":[0,0],"chest":[40.8,-73.3],"neck":[40.8,-73.3],"head":[71.7,-137.6],"shR":[43.8,-67.6],"elR":[9.8,31.2],"haR":[32.6,97.9],"shL":[46.3,-106.4],"elL":[-4.8,-18.6],"haL":[8.5,49.5],"hipR":[19.9,37.7],"knR":[64.7,171.5],"ftR":[-6.4,300.7],"hipL":[21.7,31.7],"knL":[97.4,151.1],"ftL":[102.4,292.5]},{"rootY":9.9,"hips":[0,0],"chest":[40.7,-73.5],"neck":[40.7,-73.5],"head":[71.7,-137.8],"shR":[43.8,-69.2],"elR":[8,29],"haR":[30.2,95.9],"shL":[46.1,-105.3],"elL":[-3.4,-16.5],"haL":[10.4,51.6],"hipR":[20.5,37.6],"knR":[61.3,172.6],"ftR":[-12.3,300.8],"hipL":[21.5,31.4],"knL":[95.4,151.3],"ftL":[98.4,292.9]},{"rootY":10.1,"hips":[0,0],"chest":[41.3,-73.5],"neck":[41.3,-73.5],"head":[72.6,-137.7],"shR":[45.2,-70.4],"elR":[7.6,27.1],"haR":[28.2,94.4],"shL":[46.1,-104.1],"elL":[-3.4,-14.7],"haL":[11.3,53.3],"hipR":[20.3,37.4],"knR":[57.8,173.3],"ftR":[-17.3,300.8],"hipL":[20.8,32.3],"knL":[94.9,151.4],"ftL":[93,293.3]},{"rootY":10.5,"hips":[0,0],"chest":[42.5,-73.3],"neck":[42.5,-73.3],"head":[74,-137.7],"shR":[48,-71.6],"elR":[8.5,25],"haR":[26.8,92.9],"shL":[45.9,-102.5],"elL":[-4.2,-12.8],"haL":[10.3,55.4],"hipR":[20.7,37],"knR":[53.5,174.1],"ftR":[-24.1,300.4],"hipL":[20.1,32.8],"knL":[94.3,151.6],"ftL":[86.3,294.2]},{"rootY":11.3,"hips":[0,0],"chest":[44.1,-72.7],"neck":[44.1,-72.7],"head":[76.6,-136.8],"shR":[52.6,-72.2],"elR":[11.1,23.3],"haR":[27.5,91.5],"shL":[45.1,-100.6],"elL":[-6.7,-11.3],"haL":[6.5,57.3],"hipR":[20.8,36.8],"knR":[49,174.7],"ftR":[-30.7,299.7],"hipL":[19.1,33.6],"knL":[94.2,151.9],"ftL":[80.3,295.4]},{"rootY":12.4,"hips":[0,0],"chest":[45.3,-72.3],"neck":[45.3,-72.3],"head":[78.8,-136.1],"shR":[56.6,-73.2],"elR":[14.4,21.5],"haR":[29,90],"shL":[43.8,-98.7],"elL":[-9.6,-9.9],"haL":[1.5,59.3],"hipR":[22.1,36.4],"knR":[43.4,175.3],"ftR":[-39,298.3],"hipL":[17.8,33.9],"knL":[93.7,151.7],"ftL":[73.1,295.5]},{"rootY":13.8,"hips":[0,0],"chest":[46.1,-72],"neck":[46.1,-72],"head":[80.4,-135.6],"shR":[60.7,-74.6],"elR":[18.4,19.6],"haR":[32.8,88.1],"shL":[41.9,-96.7],"elL":[-13.9,-8.7],"haL":[-4.3,60.9],"hipR":[21.8,36.3],"knR":[37.4,175.5],"ftR":[-46.7,296.8],"hipL":[17.3,34.6],"knL":[96.1,151.2],"ftL":[68.1,294.3]},{"rootY":15.4,"hips":[0,0],"chest":[46.1,-72],"neck":[46.1,-72],"head":[80.7,-135.5],"shR":[63.7,-76.2],"elR":[23.4,18.5],"haR":[38.3,87],"shL":[38.9,-95.1],"elL":[-17.8,-7.4],"haL":[-10.2,62.5],"hipR":[21.7,35.8],"knR":[30.3,175.1],"ftR":[-55.5,294.5],"hipL":[17.2,35.2],"knL":[97.6,152.2],"ftL":[60.8,293.5]},{"rootY":16.4,"hips":[0,0],"chest":[45.3,-72.4],"neck":[45.3,-72.4],"head":[79.3,-136.4],"shR":[65.7,-78.1],"elR":[26.6,16.7],"haR":[43.6,84.9],"shL":[35.4,-93.9],"elL":[-20.9,-5.8],"haL":[-15,64.5],"hipR":[21.9,35.4],"knR":[23.5,174.4],"ftR":[-63.9,291.6],"hipL":[16.7,35.8],"knL":[96.8,154.3],"ftL":[52.2,293.1]},{"rootY":15.4,"hips":[0,0],"chest":[45,-72.3],"neck":[45,-72.3],"head":[77,-137.4],"shR":[67.2,-80.6],"elR":[29.7,14.6],"haR":[49.4,82.2],"shL":[33,-91.4],"elL":[-23.2,-3.1],"haL":[-18.3,67.3],"hipR":[21.9,35.2],"knR":[19.5,173.7],"ftR":[-70.8,287.5],"hipL":[16.4,36.2],"knL":[93.4,157.6],"ftL":[43.5,294.4]},{"rootY":13.5,"hips":[0,0],"chest":[44.6,-72.3],"neck":[44.6,-72.3],"head":[74.7,-138],"shR":[68.1,-82.9],"elR":[29.4,11.6],"haR":[52.3,78.3],"shL":[31,-89],"elL":[-24.2,-0.2],"haL":[-20.2,70.3],"hipR":[21.9,35.2],"knR":[24.3,173.2],"ftR":[-73,281],"hipL":[15.7,36.6],"knL":[88.9,161.1],"ftL":[35.8,296.4]},{"rootY":10.4,"hips":[0,0],"chest":[44,-72.3],"neck":[44,-72.3],"head":[72.3,-138.5],"shR":[67.8,-84.9],"elR":[28.3,9],"haR":[54.3,74.5],"shL":[29.8,-87],"elL":[-24.5,2.3],"haL":[-20.4,72.8],"hipR":[22,35],"knR":[33.9,172.3],"ftR":[-69.5,275.2],"hipL":[16,36.6],"knL":[83.8,165],"ftL":[28.9,299.3]},{"rootY":8.7,"hips":[0,0],"chest":[43.6,-72.3],"neck":[43.6,-72.3],"head":[70.3,-138.9],"shR":[66.7,-86.1],"elR":[27,7.7],"haR":[55.6,72.1],"shL":[29.8,-86],"elL":[-23.4,4],"haL":[-17.7,74.5],"hipR":[22.2,35.1],"knR":[44.7,170.7],"ftR":[-61,272.5],"hipL":[16,36.4],"knL":[79.6,167.7],"ftL":[23.6,301.4]},{"rootY":7.8,"hips":[0,0],"chest":[43.6,-72.2],"neck":[43.6,-72.2],"head":[68.6,-139.3],"shR":[64.9,-87.1],"elR":[24.9,6.5],"haR":[54.5,70.4],"shL":[31.6,-84.7],"elL":[-20.3,6],"haL":[-11.9,76.2],"hipR":[21.9,34.9],"knR":[56.1,168.3],"ftR":[-43.9,276.2],"hipL":[16.4,36.6],"knL":[76.9,169.9],"ftL":[18.4,302.5]},{"rootY":7.3,"hips":[0,0],"chest":[43.4,-72.4],"neck":[43.4,-72.4],"head":[66.9,-140.2],"shR":[61.9,-88.6],"elR":[21.6,5.1],"haR":[50.2,69.5],"shL":[33.8,-83.8],"elL":[-16.6,7.8],"haL":[-4.2,77.4],"hipR":[21.3,34.7],"knR":[66.5,164.8],"ftR":[-20.1,284],"hipL":[17.5,36.5],"knL":[74.4,171.6],"ftL":[12.9,302.8]},{"rootY":7.5,"hips":[0,0],"chest":[43.2,-72.7],"neck":[43.2,-72.7],"head":[65.4,-141.2],"shR":[58,-89.8],"elR":[15.6,3.3],"haR":[42.1,68.4],"shL":[37,-83.4],"elL":[-12.3,8.9],"haL":[7,76.9],"hipR":[20.7,35],"knR":[76,160.8],"ftR":[9.4,292],"hipL":[18.4,36.1],"knL":[71.4,172.9],"ftL":[6.9,302.6]},{"rootY":7.1,"hips":[0,0],"chest":[41.7,-73.8],"neck":[41.7,-73.8],"head":[62.3,-143],"shR":[53.1,-90.9],"elR":[8.3,0.9],"haR":[32.9,66.4],"shL":[38.2,-84.6],"elL":[-9.4,8.6],"haL":[20.2,72.7],"hipR":[20.4,34.6],"knR":[82.5,157.2],"ftR":[40.1,297.6],"hipL":[19.6,36],"knL":[68.2,174.4],"ftL":[0.2,302.3]},{"rootY":7.1,"hips":[0,0],"chest":[39.9,-74.9],"neck":[39.9,-74.9],"head":[57.8,-145],"shR":[48.2,-92.3],"elR":[-0.4,-2.2],"haR":[24,63.2],"shL":[38.8,-85.7],"elL":[-4.9,9.2],"haL":[34.5,67.4],"hipR":[20.5,34.4],"knR":[87.1,154.8],"ftR":[68.4,299.5],"hipL":[20.3,35.6],"knL":[63.9,175.8],"ftL":[-7,302.1]},{"rootY":6.9,"hips":[0,0],"chest":[37.7,-76.2],"neck":[37.7,-76.2],"head":[52.7,-147.2],"shR":[43.4,-93.4],"elR":[-6.2,-3.4],"haR":[17.4,62.2],"shL":[38,-87.6],"elL":[0.5,9.8],"haL":[46.2,62.8],"hipR":[20.5,34.2],"knR":[89.1,153.5],"ftR":[91.1,298.8],"hipL":[21.3,35.3],"knL":[58.7,177.1],"ftL":[-15.2,301.9]},{"rootY":6.6,"hips":[0,0],"chest":[35.3,-77.5],"neck":[35.3,-77.5],"head":[47.7,-149.1],"shR":[39.3,-94.1],"elR":[-9.6,-3.3],"haR":[13.1,62.6],"shL":[36.3,-89.7],"elL":[4.5,9.6],"haL":[53.1,59.5],"hipR":[21.1,34.4],"knR":[91.2,153.2],"ftR":[105.2,297.3],"hipL":[21.1,34.8],"knL":[53.1,178],"ftL":[-22.8,301.7]},{"rootY":7.9,"hips":[0,0],"chest":[34.7,-78.1],"neck":[34.7,-78.1],"head":[44.8,-150.1],"shR":[36.8,-94],"elR":[-10.5,-1.8],"haR":[12,64.2],"shL":[36.7,-91],"elL":[8.5,9.3],"haL":[57.6,58.4],"hipR":[21.4,34.8],"knR":[93.8,152.4],"ftR":[108.4,296.6],"hipL":[21.1,34.3],"knL":[48,178.5],"ftL":[-30.6,300.5]},{"rootY":9.3,"hips":[0,0],"chest":[36.2,-77.6],"neck":[36.2,-77.6],"head":[44.5,-150.1],"shR":[36.8,-92.7],"elR":[-11.8,-0.8],"haR":[13.2,64.5],"shL":[39.6,-91.5],"elL":[10.7,8.2],"haL":[59.4,57.6],"hipR":[21.6,35.2],"knR":[96.7,151.4],"ftR":[103.8,297.1],"hipL":[21.1,33.7],"knL":[44,178.6],"ftL":[-37.4,298.9]},{"rootY":11.6,"hips":[0,0],"chest":[39.1,-76.5],"neck":[39.1,-76.5],"head":[47.2,-149],"shR":[39,-89.8],"elR":[-11.8,1.1],"haR":[16.4,65.3],"shL":[43.4,-92],"elL":[9.2,5.4],"haL":[56.5,55.5],"hipR":[21.5,35.9],"knR":[100.4,149.5],"ftR":[98,296.2],"hipL":[20.5,33.4],"knL":[40.6,178.7],"ftL":[-44.7,296.4]},{"rootY":13.5,"hips":[0,0],"chest":[41.6,-75.2],"neck":[41.6,-75.2],"head":[51,-147.7],"shR":[40.8,-86.6],"elR":[-12.6,2.8],"haR":[19.4,65.4],"shL":[47.3,-92.7],"elL":[7.5,1.7],"haL":[51.5,53.7],"hipR":[21.1,36.9],"knR":[103.3,148.2],"ftR":[91.4,295.1],"hipL":[19.7,33],"knL":[36.9,178.4],"ftL":[-51.4,294]},{"rootY":14.8,"hips":[0,0],"chest":[43.9,-73.9],"neck":[43.9,-73.9],"head":[54.8,-146.2],"shR":[43.3,-83.1],"elR":[-12.3,4.9],"haR":[23.8,65.5],"shL":[50.4,-93.3],"elL":[6,-2.1],"haL":[45.6,52.1],"hipR":[21,37.6],"knR":[105.7,147.6],"ftR":[85,293.9],"hipL":[18.6,32.7],"knL":[32.9,178.1],"ftL":[-58.4,291.6]},{"rootY":15.8,"hips":[0,0],"chest":[45.1,-73.1],"neck":[45.1,-73.1],"head":[57.9,-145.1],"shR":[44.2,-80.2],"elR":[-13.6,6.4],"haR":[28.7,62.7],"shL":[52.4,-94.5],"elL":[2.7,-7],"haL":[38.7,48.6],"hipR":[20.8,38.5],"knR":[106.9,147.9],"ftR":[77.6,293],"hipL":[17.3,32.3],"knL":[28,177.5],"ftL":[-66,288.8]},{"rootY":16.6,"hips":[0,0],"chest":[46.3,-72.3],"neck":[46.3,-72.3],"head":[60,-144.1],"shR":[46.2,-77.4],"elR":[-13.9,7.9],"haR":[36.2,57.3],"shL":[53.3,-95.4],"elL":[-1.3,-11.1],"haL":[32.2,45.6],"hipR":[20,39.3],"knR":[106.8,148.4],"ftR":[70,292.1],"hipL":[16.8,32],"knL":[22.5,177.1],"ftL":[-73.6,286.8]},{"rootY":17.1,"hips":[0,0],"chest":[46.8,-71.9],"neck":[46.8,-71.9],"head":[61.7,-143.3],"shR":[46.1,-75.6],"elR":[-13.3,10.4],"haR":[43.6,51.4],"shL":[54.6,-96.3],"elL":[-4.4,-14.5],"haL":[27.3,43.4],"hipR":[19.7,39.9],"knR":[106.1,149.8],"ftR":[62.2,291.5],"hipL":[16.1,31.7],"knL":[16.2,176.5],"ftL":[-81.6,284.8]},{"rootY":17.4,"hips":[0,0],"chest":[46.4,-71.9],"neck":[46.4,-71.9],"head":[62.2,-143.1],"shR":[45.2,-74.2],"elR":[-11.8,13.4],"haR":[49.2,48.1],"shL":[54.9,-97.7],"elL":[-5.3,-16.2],"haL":[24,43.3],"hipR":[19.4,40.3],"knR":[104.4,151.8],"ftR":[54.6,291.5],"hipL":[16,31.5],"knL":[10.3,175.6],"ftL":[-89.2,282.4]},{"rootY":17.1,"hips":[0,0],"chest":[45.4,-72.2],"neck":[45.4,-72.2],"head":[61.1,-143.3],"shR":[43.9,-73],"elR":[-8.8,17],"haR":[53.7,48.7],"shL":[53.7,-99.6],"elL":[-6.4,-18.1],"haL":[21.4,42.4],"hipR":[19.1,40.6],"knR":[101.5,154.4],"ftR":[47.2,292.3],"hipL":[16.2,31.1],"knL":[6,174.6],"ftL":[-96.2,278.6]},{"rootY":15.2,"hips":[0,0],"chest":[43.8,-72.8],"neck":[43.8,-72.8],"head":[58.8,-143.9],"shR":[42,-72],"elR":[-7.3,19.8],"haR":[54.6,52.3],"shL":[51.9,-101.8],"elL":[-6.7,-19.7],"haL":[21.6,41],"hipR":[19.2,40.5],"knR":[96.5,158.2],"ftR":[38.4,294.5],"hipL":[16.9,30.8],"knL":[8.1,173.8],"ftL":[-98.7,273]},{"rootY":12.2,"hips":[0,0],"chest":[42.5,-73.2],"neck":[42.5,-73.2],"head":[57.2,-144.1],"shR":[40.4,-70.4],"elR":[-6.8,22.4],"haR":[53.5,57.4],"shL":[50.4,-104.2],"elL":[-6.5,-21.5],"haL":[25.3,38.3],"hipR":[19.3,40.1],"knR":[90.7,161.8],"ftR":[31.4,297.5],"hipL":[17.6,31],"knL":[18.1,173.5],"ftL":[-94.5,266.2]},{"rootY":9.2,"hips":[0,0],"chest":[41.1,-73.5],"neck":[41.1,-73.5],"head":[55.9,-144.1],"shR":[39,-69],"elR":[-6,24.9],"haR":[52.2,63.2],"shL":[48.3,-106.3],"elL":[-5.4,-22.1],"haL":[31.8,35.5],"hipR":[19.9,39.5],"knR":[84.7,164.9],"ftR":[25.1,300.4],"hipL":[18.6,31],"knL":[33,172.3],"ftL":[-83.4,260.3]},{"rootY":6.5,"hips":[0,0],"chest":[39.5,-74],"neck":[39.5,-74],"head":[54.3,-144.3],"shR":[36.9,-68.3],"elR":[-5.6,26.7],"haR":[49.8,69],"shL":[47.1,-107.9],"elL":[-2.7,-22.3],"haL":[39.2,32.8],"hipR":[20.4,39],"knR":[79,167.4],"ftR":[20.2,303.1],"hipL":[19.4,30.9],"knL":[50,169.4],"ftL":[-64.2,259.8]},{"rootY":5,"hips":[0,0],"chest":[38.7,-74.2],"neck":[38.7,-74.2],"head":[54.2,-144.2],"shR":[36,-67.9],"elR":[-5.7,27.5],"haR":[46.7,73.8],"shL":[46,-108.7],"elL":[0.5,-21.8],"haL":[45.8,31.2],"hipR":[20.8,38.4],"knR":[74.4,169.1],"ftR":[15.7,304.9],"hipL":[20.1,30.9],"knL":[67.8,164.8],"ftL":[-36.7,265.9]},{"rootY":4,"hips":[0,0],"chest":[37.8,-74.6],"neck":[37.8,-74.6],"head":[53.6,-144.4],"shR":[35.3,-68.4],"elR":[-5.9,27.2],"haR":[42.8,77.7],"shL":[44.7,-108.9],"elL":[2.9,-20.9],"haL":[50.5,30.6],"hipR":[20.8,38],"knR":[69.9,170.4],"ftR":[10.9,305.9],"hipL":[21.2,30.9],"knL":[83.1,159.6],"ftL":[-2.9,277.1]},{"rootY":3.4,"hips":[0,0],"chest":[36.7,-75.1],"neck":[36.7,-75.1],"head":[53.2,-144.7],"shR":[33.7,-69.4],"elR":[-7,26.3],"haR":[37.1,81],"shL":[44.1,-109],"elL":[4.2,-20.1],"haL":[52.4,31.2],"hipR":[21,37.4],"knR":[65.5,171.5],"ftR":[5.5,306.4],"hipL":[22,31],"knL":[93.8,155.4],"ftL":[33.2,288.1]},{"rootY":2.5,"hips":[0,0],"chest":[35.7,-75.6],"neck":[35.7,-75.6],"head":[52.3,-145],"shR":[31.3,-70.8],"elR":[-9.1,25],"haR":[30.4,83.3],"shL":[44.3,-108.7],"elL":[4.7,-19.4],"haL":[52,33],"hipR":[20.4,37],"knR":[60.4,172.5],"ftR":[-0.2,307.1],"hipL":[23.2,31.2],"knL":[100.3,153.3],"ftL":[68.4,295.5]},{"rootY":2.1,"hips":[0,0],"chest":[34.3,-76.3],"neck":[34.3,-76.3],"head":[51.4,-145.5],"shR":[28.1,-72.5],"elR":[-12.6,23.2],"haR":[23.1,84],"shL":[44.6,-108.3],"elL":[5.1,-18.3],"haL":[49.3,36.9],"hipR":[19.4,36.6],"knR":[55.1,173.3],"ftR":[-6.4,307.3],"hipL":[24.4,31.5],"knL":[103.3,153.3],"ftL":[96.7,298]},{"rootY":2.7,"hips":[0,0],"chest":[33.2,-76.7],"neck":[33.2,-76.7],"head":[50.8,-145.9],"shR":[24.9,-74.5],"elR":[-15.4,21.4],"haR":[16.3,84.4],"shL":[45.7,-107.3],"elL":[4.3,-17.3],"haL":[43.8,41.3],"hipR":[18.2,36.3],"knR":[50.6,173.8],"ftR":[-12.7,306.8],"hipL":[25.7,31.9],"knL":[104.4,154.3],"ftL":[114.5,297.8]},{"rootY":3.8,"hips":[0,0],"chest":[33.2,-76.7],"neck":[33.2,-76.7],"head":[51.2,-146.1],"shR":[23.7,-76.2],"elR":[-16.3,19.8],"haR":[12.1,84.3],"shL":[47.4,-105.6],"elL":[4.1,-15.7],"haL":[38.1,46.3],"hipR":[16.8,36],"knR":[46.4,174],"ftR":[-19.8,305.7],"hipL":[26.9,32.2],"knL":[105.7,154.9],"ftL":[121.7,297.4]},{"rootY":4.7,"hips":[0,0],"chest":[34.8,-76],"neck":[34.8,-76],"head":[55.2,-145.6],"shR":[20.8,-77.2],"elR":[-22.4,17.5],"haR":[3.5,82.9],"shL":[54,-103.2],"elL":[6.5,-15],"haL":[35.3,49.5],"hipR":[14.6,35.9],"knR":[42.1,174.2],"ftR":[-27,304.3],"hipL":[28,32.8],"knL":[106.6,155.8],"ftL":[119,298.4]},{"rootY":5.8,"hips":[0,0],"chest":[37.7,-74.5],"neck":[37.7,-74.5],"head":[61.4,-143.5],"shR":[21.1,-77.9],"elR":[-24.4,15.7],"haR":[-1.1,81.9],"shL":[60.8,-99.1],"elL":[9.2,-13.2],"haL":[33,53.3],"hipR":[12,36.1],"knR":[37,174.6],"ftR":[-34.6,303.4],"hipL":[28.7,33.4],"knL":[107.1,156.8],"ftL":[111.3,300.2]},{"rootY":6.3,"hips":[0,0],"chest":[41.7,-72],"neck":[41.7,-72],"head":[69,-140],"shR":[22.3,-77],"elR":[-27.8,14.3],"haR":[-6.8,81],"shL":[69.3,-94.7],"elL":[14.8,-11.5],"haL":[32.2,56.9],"hipR":[9.5,36.3],"knR":[31.1,175],"ftR":[-42.7,302.8],"hipL":[28.5,34.4],"knL":[108,157.5],"ftL":[103.9,301.4]},{"rootY":6.3,"hips":[0,0],"chest":[45.3,-69.6],"neck":[45.3,-69.6],"head":[76,-136.1],"shR":[22.6,-76.1],"elR":[-31,13.3],"haR":[-12.9,80.5],"shL":[77.4,-90.4],"elL":[23.2,-8.5],"haL":[35.1,61.1],"hipR":[6.9,36.3],"knR":[24,175.1],"ftR":[-50.6,302.7],"hipL":[28.4,35.5],"knL":[109.4,157.8],"ftL":[96.8,301.7]},{"rootY":6.6,"hips":[0,0],"chest":[48.3,-67.4],"neck":[48.3,-67.4],"head":[82.7,-131.8],"shR":[23.6,-75.6],"elR":[-32.9,11.9],"haR":[-16.8,79.5],"shL":[83.5,-86.1],"elL":[29.9,-5.3],"haL":[39.5,64.7],"hipR":[4.6,36.4],"knR":[16.5,175.2],"ftR":[-59.2,302.5],"hipL":[27.6,36.6],"knL":[110.2,157.9],"ftL":[89.3,301.3]},{"rootY":6.1,"hips":[0,0],"chest":[49.6,-66.2],"neck":[49.6,-66.2],"head":[85.7,-129.3],"shR":[23.7,-75.4],"elR":[-34.3,11],"haR":[-19.6,78.8],"shL":[86.9,-83.4],"elL":[34.8,-3.1],"haL":[44.1,67],"hipR":[3.4,37.1],"knR":[7.3,175.8],"ftR":[-69.4,302.6],"hipL":[28.3,36.2],"knL":[108.8,158.9],"ftL":[79,300.9]},{"rootY":7.4,"hips":[0,0],"chest":[51.2,-64.8],"neck":[51.2,-64.8],"head":[87.9,-127.6],"shR":[22.2,-74.7],"elR":[-36.9,10.9],"haR":[-22.7,78.7],"shL":[91.7,-81.3],"elL":[41.4,-0.7],"haL":[51.2,69.3],"hipR":[1.2,35.9],"knR":[-0.2,174.6],"ftR":[-76.8,301.6],"hipL":[27,38.1],"knL":[109.3,159.4],"ftL":[73.2,300]},{"rootY":8.1,"hips":[0,0],"chest":[51.9,-64.1],"neck":[51.9,-64.1],"head":[89.2,-126.3],"shR":[21.9,-74],"elR":[-36.6,11.6],"haR":[-23.2,79.7],"shL":[93.5,-80.3],"elL":[45.3,1.1],"haL":[56.3,70.9],"hipR":[0.2,35.7],"knR":[-7.2,174],"ftR":[-84.1,300.8],"hipL":[26.5,38.7],"knL":[108.3,160.1],"ftL":[66.1,299.1]},{"rootY":9.2,"hips":[0,0],"chest":[52.4,-63.4],"neck":[52.4,-63.4],"head":[88.9,-126.4],"shR":[21.9,-73.6],"elR":[-36.2,12.1],"haR":[-22.7,80.5],"shL":[94.8,-79.2],"elL":[47.6,2.4],"haL":[60.9,71.6],"hipR":[-0.7,35.5],"knR":[-13.3,173.2],"ftR":[-90.7,299.6],"hipL":[26.3,39.1],"knL":[107.9,160.3],"ftL":[60.4,297.7]},{"rootY":10.9,"hips":[0,0],"chest":[53.5,-62.4],"neck":[53.5,-62.4],"head":[89.6,-125.7],"shR":[23.4,-72.9],"elR":[-35.5,12.1],"haR":[-21,80.6],"shL":[95.9,-77.8],"elL":[48.1,3.3],"haL":[63.3,71.8],"hipR":[-1.9,35.4],"knR":[-16.2,172.5],"ftR":[-95.1,297.9],"hipL":[26,39.5],"knL":[107.9,160.2],"ftL":[55.8,296]},{"rootY":12.6,"hips":[0,0],"chest":[54.5,-61.2],"neck":[54.5,-61.2],"head":[89.3,-125],"shR":[25.9,-71.8],"elR":[-33.5,12.9],"haR":[-17.8,81.2],"shL":[96.2,-76.1],"elL":[47.6,4.4],"haL":[62.9,72.5],"hipR":[-2.5,34.9],"knR":[-18.4,171.5],"ftR":[-98.4,296.2],"hipL":[25.4,40.1],"knL":[108.4,159.9],"ftL":[52.5,294.3]},{"rootY":14,"hips":[0,0],"chest":[56.1,-59.5],"neck":[56.1,-59.5],"head":[90.5,-122.7],"shR":[29.7,-69.9],"elR":[-31.3,13.6],"haR":[-14.4,81.7],"shL":[96.4,-74.2],"elL":[46.7,5.9],"haL":[60.7,74.1],"hipR":[-3.2,34.9],"knR":[-19.2,170.9],"ftR":[-101,294.4],"hipL":[24.8,40.5],"knL":[108.5,159.5],"ftL":[50.2,292.9]}]},"sit":{"name":"sit","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-77.6],"neck":[-6.9,-77.6],"head":[-11.8,-146],"shR":[-17,-104.6],"elR":[8.8,9.2],"haR":[-16.1,74.9],"shL":[10.1,-102.7],"elL":[23,1.3],"haL":[16.4,71.3],"hipR":[-13.3,38],"knR":[-33,179.8],"ftR":[9.7,332.5],"hipL":[-3.7,38.4],"knL":[-16.3,185.5],"ftL":[32.2,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7,-77.5],"neck":[-7,-77.5],"head":[-12.1,-146],"shR":[-17.1,-104.5],"elR":[8.8,9.4],"haR":[-15.4,75.3],"shL":[9.7,-102.8],"elL":[22.3,1.2],"haL":[15,71],"hipR":[-13.1,38],"knR":[-32.5,179.8],"ftR":[10.3,332.5],"hipL":[-3.7,38.4],"knL":[-15.9,185.6],"ftL":[32.8,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.4,-77.5],"neck":[-7.4,-77.5],"head":[-12.5,-146],"shR":[-17.2,-104.4],"elR":[9,9.5],"haR":[-14.5,75.6],"shL":[9.1,-102.9],"elL":[21.5,1.2],"haL":[13.1,70.8],"hipR":[-13,37.9],"knR":[-32,179.9],"ftR":[10.6,332.6],"hipL":[-3.6,38.5],"knL":[-15.8,185.7],"ftL":[33.4,335.3]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.3,-77.5],"neck":[-7.3,-77.5],"head":[-12.9,-145.9],"shR":[-17.1,-104.2],"elR":[9.6,9.5],"haR":[-14,75.7],"shL":[8.9,-103.1],"elL":[20.9,0.9],"haL":[11.2,70.4],"hipR":[-12.6,38.3],"knR":[-31.8,180.2],"ftR":[11.3,332.8],"hipL":[-3.4,38.3],"knL":[-15,185.5],"ftL":[34.1,335.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.7,-77.5],"neck":[-7.7,-77.5],"head":[-13.6,-145.9],"shR":[-17.2,-104],"elR":[9,10],"haR":[-13.8,76.3],"shL":[8.2,-103.2],"elL":[19.9,0.9],"haL":[8.7,70.2],"hipR":[-12.6,38],"knR":[-31.9,179.9],"ftR":[11.5,332.4],"hipL":[-3.6,38.5],"knL":[-14.7,185.7],"ftL":[34.5,335.4]},{"rootY":0,"hips":[0,0],"chest":[-7.6,-77.5],"neck":[-7.6,-77.5],"head":[-14.3,-145.8],"shR":[-16.3,-103.8],"elR":[9.5,10.4],"haR":[-13.1,76.8],"shL":[7.3,-103.6],"elL":[19.2,0.5],"haL":[6.2,69.6],"hipR":[-12.4,38.1],"knR":[-31.8,179.9],"ftR":[12.1,332.3],"hipL":[-3.7,38.4],"knL":[-14.2,185.7],"ftL":[35.3,335.3]},{"rootY":0.1,"hips":[0,0],"chest":[-7.2,-77.5],"neck":[-7.2,-77.5],"head":[-14.5,-145.6],"shR":[-15,-103.8],"elR":[10,10.6],"haR":[-12.9,76.9],"shL":[6.7,-103.6],"elL":[18.8,0.5],"haL":[4.1,69.1],"hipR":[-12.2,38.2],"knR":[-31.6,180],"ftR":[12.8,332.3],"hipL":[-3.8,38.3],"knL":[-13.6,185.7],"ftL":[36.2,335.2]},{"rootY":0.2,"hips":[0,0],"chest":[-6.8,-77.6],"neck":[-6.8,-77.6],"head":[-15,-145.4],"shR":[-13.1,-103.5],"elR":[10.3,11.4],"haR":[-12.9,77.6],"shL":[5.6,-104],"elL":[19.4,-0.1],"haL":[2.7,68.1],"hipR":[-11.9,38.3],"knR":[-31.7,180],"ftR":[13.5,332.2],"hipL":[-4.3,38.2],"knL":[-12.8,185.6],"ftL":[37.5,335]},{"rootY":0.3,"hips":[0,0],"chest":[-6.7,-77.6],"neck":[-6.7,-77.6],"head":[-16,-145],"shR":[-10.9,-103.4],"elR":[10.8,11.9],"haR":[-13.5,77.6],"shL":[3.7,-104],"elL":[18.2,-0.3],"haL":[-0.2,67.5],"hipR":[-11.5,38.3],"knR":[-31.7,179.9],"ftR":[13.8,332],"hipL":[-4.9,38.2],"knL":[-12.6,185.6],"ftL":[38.3,334.8]},{"rootY":0.5,"hips":[0,0],"chest":[-6.3,-77.6],"neck":[-6.3,-77.6],"head":[-16.6,-144.7],"shR":[-7.9,-103.3],"elR":[12.7,12.4],"haR":[-13.1,77.4],"shL":[1.6,-104.2],"elL":[16.9,-0.6],"haL":[-2.9,66.8],"hipR":[-10.8,38.3],"knR":[-31.3,179.8],"ftR":[15,331.8],"hipL":[-5.5,38.2],"knL":[-12,185.7],"ftL":[39.5,334.6]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-77.7],"neck":[-5.8,-77.7],"head":[-17.1,-144.5],"shR":[-4.9,-103.2],"elR":[15.1,12.8],"haR":[-12.6,77],"shL":[-0.5,-104.4],"elL":[15.1,-0.8],"haL":[-5.6,66.4],"hipR":[-10.1,38.4],"knR":[-31.4,179.8],"ftR":[15.8,331.6],"hipL":[-6.4,38],"knL":[-11.3,185.6],"ftL":[41.1,334.2]},{"rootY":1,"hips":[0,0],"chest":[-5.1,-77.7],"neck":[-5.1,-77.7],"head":[-17.2,-144.4],"shR":[-1.8,-103.3],"elR":[17.9,12.8],"haR":[-11.8,76],"shL":[-2.3,-104.3],"elL":[13.5,-0.8],"haL":[-7.6,66.4],"hipR":[-9.3,37.9],"knR":[-30.4,179.4],"ftR":[17.3,331.2],"hipL":[-7.4,38.5],"knL":[-11.4,186.1],"ftL":[43.1,333.9]},{"rootY":1.5,"hips":[0,0],"chest":[-4.4,-77.7],"neck":[-4.4,-77.7],"head":[-17.1,-144.3],"shR":[1.7,-103.1],"elR":[21.5,13.1],"haR":[-9.8,75.4],"shL":[-4.5,-104.6],"elL":[11.8,-1.2],"haL":[-9,66.2],"hipR":[-8.4,37.8],"knR":[-30,179.3],"ftR":[18.4,330.9],"hipL":[-8.5,38.5],"knL":[-11.4,186.2],"ftL":[44.5,333.4]},{"rootY":1.8,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[-16.7,-144.2],"shR":[5.3,-102.6],"elR":[25.2,13.6],"haR":[-7.5,75.1],"shL":[-6.8,-105.2],"elL":[9,-1.8],"haL":[-11.1,65.8],"hipR":[-7.5,37.8],"knR":[-29.4,179.3],"ftR":[19.9,330.6],"hipL":[-9.7,38.4],"knL":[-11.6,186.1],"ftL":[46,332.7]},{"rootY":2.3,"hips":[0,0],"chest":[-3.2,-77.8],"neck":[-3.2,-77.8],"head":[-16.7,-144.2],"shR":[9.2,-102.3],"elR":[28.9,14],"haR":[-4.3,74.9],"shL":[-10,-105.6],"elL":[5.6,-2.2],"haL":[-13.7,65.6],"hipR":[-6.7,37.6],"knR":[-28.7,179],"ftR":[21,330.2],"hipL":[-10.4,38.7],"knL":[-13.4,186.3],"ftL":[46.7,331.8]},{"rootY":2.8,"hips":[0,0],"chest":[-2.5,-77.8],"neck":[-2.5,-77.8],"head":[-16.2,-144.2],"shR":[11.9,-102.2],"elR":[31.8,14.2],"haR":[-1.3,74.9],"shL":[-11.6,-105.7],"elL":[4,-2.4],"haL":[-14.9,65.4],"hipR":[-6.2,37.7],"knR":[-28.5,179.1],"ftR":[22.6,329.9],"hipL":[-11.5,38.4],"knL":[-15.2,185.9],"ftL":[47.4,330.4]},{"rootY":3.4,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-15.8,-144.2],"shR":[13.9,-102.3],"elR":[33.7,14.2],"haR":[1.5,75],"shL":[-12.7,-105.7],"elL":[2.6,-2.4],"haL":[-16.2,65.4],"hipR":[-5.6,37.4],"knR":[-27.7,178.8],"ftR":[24.1,329.4],"hipL":[-12.3,38.6],"knL":[-19,185.9],"ftL":[47.6,328.5]},{"rootY":3.8,"hips":[0,0],"chest":[-1.8,-77.8],"neck":[-1.8,-77.8],"head":[-15.8,-144.1],"shR":[15.5,-102.4],"elR":[36,14.1],"haR":[5.2,75.1],"shL":[-13.9,-105.5],"elL":[1.3,-2.3],"haL":[-17.8,65.5],"hipR":[-4.9,37.1],"knR":[-27.2,178.5],"ftR":[25.2,328.8],"hipL":[-13.2,38.8],"knL":[-23.8,185.7],"ftL":[47.7,326]},{"rootY":3.9,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-15.9,-144],"shR":[16.9,-102],"elR":[38.4,14.4],"haR":[9.5,76],"shL":[-15.4,-105.9],"elL":[-0.8,-2.7],"haL":[-20.5,64.8],"hipR":[-4.9,37.3],"knR":[-26.2,178.9],"ftR":[26.6,329.1],"hipL":[-13.8,38.5],"knL":[-30.8,184.5],"ftL":[47.1,321.4]},{"rootY":4.6,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-16.2,-143.9],"shR":[17.4,-101.8],"elR":[40.1,14.3],"haR":[13.7,76.8],"shL":[-16,-106.1],"elL":[-2.1,-2.8],"haL":[-22.9,64.3],"hipR":[-5,37.2],"knR":[-26,178.7],"ftR":[27.9,328.5],"hipL":[-13.9,38.5],"knL":[-38.2,183.4],"ftL":[45.4,316.8]},{"rootY":4.9,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-16.8,-143.7],"shR":[17.5,-101.6],"elR":[42.1,14.2],"haR":[18.4,77.6],"shL":[-16.7,-106.3],"elL":[-2.9,-3.1],"haL":[-25.2,63.6],"hipR":[-4.8,37.1],"knR":[-25.4,178.7],"ftR":[29.1,328.2],"hipL":[-14.4,38.5],"knL":[-46.9,181.6],"ftL":[42.3,311.3]},{"rootY":5.1,"hips":[0,0],"chest":[-2.1,-77.7],"neck":[-2.1,-77.7],"head":[-17.2,-143.6],"shR":[17.5,-101.6],"elR":[44,13.8],"haR":[22.9,78.1],"shL":[-17.1,-106.3],"elL":[-2.9,-3.2],"haL":[-27.1,63],"hipR":[-4.5,36.7],"knR":[-24.1,178.4],"ftR":[30.5,327.8],"hipL":[-14.9,38.8],"knL":[-55.6,179.7],"ftL":[38,306.1]},{"rootY":5.3,"hips":[0,0],"chest":[-2.4,-77.7],"neck":[-2.4,-77.7],"head":[-17.9,-143.5],"shR":[17.1,-101.8],"elR":[45.7,13.1],"haR":[27,78.3],"shL":[-17.6,-106],"elL":[-2.8,-3],"haL":[-28.8,62.5],"hipR":[-4.1,37],"knR":[-23.6,178.7],"ftR":[31.9,327.7],"hipL":[-15.6,38.5],"knL":[-63.1,177.4],"ftL":[32.5,302]},{"rootY":5.6,"hips":[0,0],"chest":[-2.8,-77.6],"neck":[-2.8,-77.6],"head":[-18.9,-143.3],"shR":[16.5,-101.8],"elR":[46.7,12.6],"haR":[30.3,78.6],"shL":[-18,-105.9],"elL":[-2.3,-3],"haL":[-29.6,62.1],"hipR":[-3.6,37.2],"knR":[-23.5,178.8],"ftR":[33,327.4],"hipL":[-16.3,38.2],"knL":[-70.1,175.1],"ftL":[24.9,300]},{"rootY":5.9,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[-19.6,-143.1],"shR":[16.2,-102],"elR":[47.7,12.1],"haR":[33.2,78.6],"shL":[-18.5,-105.6],"elL":[-1.9,-2.9],"haL":[-29.9,62],"hipR":[-3.1,37.2],"knR":[-23.2,178.9],"ftR":[34.6,326.9],"hipL":[-16.7,38.2],"knL":[-75.9,173.1],"ftL":[16.3,299.7]},{"rootY":6.2,"hips":[0,0],"chest":[-3.5,-77.5],"neck":[-3.5,-77.5],"head":[-20.6,-142.9],"shR":[15.8,-102.1],"elR":[48.7,11.6],"haR":[35.6,78.4],"shL":[-19.6,-105.5],"elL":[-1.6,-3],"haL":[-29.8,61.8],"hipR":[-2.7,37.4],"knR":[-22.9,178.9],"ftR":[36.3,326.5],"hipL":[-17.2,38],"knL":[-80.7,171.2],"ftL":[6.4,301.2]},{"rootY":6.5,"hips":[0,0],"chest":[-4,-77.5],"neck":[-4,-77.5],"head":[-21.6,-142.7],"shR":[15.5,-102.2],"elR":[49.5,11.1],"haR":[37.2,78.1],"shL":[-20.7,-105.2],"elL":[-1.5,-3],"haL":[-29.2,62.1],"hipR":[-2.3,37.4],"knR":[-22,179],"ftR":[38,326.1],"hipL":[-17.6,38],"knL":[-84.4,169.6],"ftL":[-4.7,304]},{"rootY":6.7,"hips":[0,0],"chest":[-4.5,-77.5],"neck":[-4.5,-77.5],"head":[-22.8,-142.5],"shR":[15.1,-102.5],"elR":[49.7,10.6],"haR":[38,77.6],"shL":[-21.7,-104.9],"elL":[-1.6,-2.8],"haL":[-28.2,62.8],"hipR":[-1.7,37.3],"knR":[-20.7,179],"ftR":[40.2,325.7],"hipL":[-17.9,38.1],"knL":[-86.5,168.8],"ftL":[-16.7,308.5]},{"rootY":7.1,"hips":[0,0],"chest":[-4.9,-77.5],"neck":[-4.9,-77.5],"head":[-23.8,-142.3],"shR":[14.9,-102.9],"elR":[49.9,10.1],"haR":[38.4,76.9],"shL":[-22.9,-104.4],"elL":[-1.9,-2.5],"haL":[-26.7,63.8],"hipR":[-1,37.2],"knR":[-18.7,179.1],"ftR":[41.8,325.8],"hipL":[-18,38.3],"knL":[-87.9,168.1],"ftL":[-30.3,313.4]},{"rootY":6.4,"hips":[0,0],"chest":[-5.4,-77.4],"neck":[-5.4,-77.4],"head":[-25,-142],"shR":[14.7,-103.2],"elR":[50.1,9.7],"haR":[38.4,76.2],"shL":[-24.3,-104],"elL":[-2.5,-2.3],"haL":[-25.2,64.7],"hipR":[-0.2,37.1],"knR":[-16.6,179.1],"ftR":[44.8,325.5],"hipL":[-18.1,38.5],"knL":[-87,168.8],"ftL":[-43.9,319.2]},{"rootY":5.8,"hips":[0,0],"chest":[-6,-77.4],"neck":[-6,-77.4],"head":[-26.2,-141.7],"shR":[15,-103.4],"elR":[50.7,9.4],"haR":[38.7,75.7],"shL":[-26.6,-103.8],"elL":[-4.1,-2.2],"haL":[-24.4,65.6],"hipR":[0.7,37.1],"knR":[-14.1,179.4],"ftR":[47.3,325.6],"hipL":[-18.4,38.7],"knL":[-85.7,169.5],"ftL":[-57.6,323.8]},{"rootY":5.2,"hips":[0,0],"chest":[-6.4,-77.4],"neck":[-6.4,-77.4],"head":[-27.4,-141.5],"shR":[15.1,-104],"elR":[51.2,8.7],"haR":[38.4,74.7],"shL":[-28.4,-103.2],"elL":[-5.1,-1.7],"haL":[-23,66.7],"hipR":[1.7,36.9],"knR":[-10.4,179.5],"ftR":[49.9,326.1],"hipL":[-18.6,38.9],"knL":[-83.7,170.7],"ftL":[-69,327.1]},{"rootY":5,"hips":[0,0],"chest":[-6.9,-77.4],"neck":[-6.9,-77.4],"head":[-28.6,-141.3],"shR":[14.9,-104.8],"elR":[51.9,7.5],"haR":[38,73.1],"shL":[-30,-102.2],"elL":[-5.9,-0.9],"haL":[-21.4,68.1],"hipR":[2.6,36.9],"knR":[-7.1,179.7],"ftR":[52.9,326.2],"hipL":[-18.9,39],"knL":[-82.7,171.2],"ftL":[-78.6,328.6]},{"rootY":4.7,"hips":[0,0],"chest":[-7.4,-77.3],"neck":[-7.4,-77.3],"head":[-29.8,-141],"shR":[14.6,-105.5],"elR":[52.5,6.4],"haR":[37.5,71.5],"shL":[-31.5,-101.3],"elL":[-6.6,-0.1],"haL":[-20.2,69.3],"hipR":[3.3,37],"knR":[-4.1,179.8],"ftR":[55.8,326.2],"hipL":[-19.1,39],"knL":[-80,172.3],"ftL":[-83.9,329.8]},{"rootY":4.7,"hips":[0,0],"chest":[-8,-77.3],"neck":[-8,-77.3],"head":[-31.2,-140.8],"shR":[14.2,-106.3],"elR":[53.3,5.1],"haR":[37.2,69.8],"shL":[-32.9,-100.3],"elL":[-7.7,0.8],"haL":[-19.4,70.5],"hipR":[4,36.6],"knR":[-0.7,179.5],"ftR":[59,325.9],"hipL":[-19,39.4],"knL":[-79.3,172.8],"ftL":[-87,330.2]},{"rootY":5,"hips":[0,0],"chest":[-8.7,-77.3],"neck":[-8.7,-77.3],"head":[-32.6,-140.5],"shR":[13.9,-106.9],"elR":[53.8,4.2],"haR":[36.8,68.5],"shL":[-34.7,-99.5],"elL":[-9,1.6],"haL":[-19.5,71.4],"hipR":[4.7,36.4],"knR":[2.2,179.4],"ftR":[62.2,325.4],"hipL":[-18.8,39.7],"knL":[-78.1,173.4],"ftL":[-86.2,330.7]},{"rootY":5.7,"hips":[0,0],"chest":[-9.5,-77.2],"neck":[-9.5,-77.2],"head":[-34.1,-140.1],"shR":[12,-108.2],"elR":[53.5,2.2],"haR":[36.2,66.2],"shL":[-35.2,-97.7],"elL":[-9.4,3.4],"haL":[-19.1,73.4],"hipR":[5.1,36.3],"knR":[4.4,179.2],"ftR":[66.2,324.5],"hipL":[-18.7,39.9],"knL":[-76.5,174],"ftL":[-82,331.5]},{"rootY":5.8,"hips":[0,0],"chest":[-10.4,-77.1],"neck":[-10.4,-77.1],"head":[-35.8,-139.7],"shR":[10.6,-109.1],"elR":[53.2,0.8],"haR":[36.3,64.7],"shL":[-36.3,-96.4],"elL":[-10.3,4.7],"haL":[-19.7,74.9],"hipR":[5.5,36.2],"knR":[6.6,179.1],"ftR":[69.3,323.8],"hipL":[-18.3,40.1],"knL":[-74.9,174.8],"ftL":[-77.8,332.4]},{"rootY":5,"hips":[0,0],"chest":[-11.4,-77],"neck":[-11.4,-77],"head":[-37.8,-139.1],"shR":[8.6,-110.2],"elR":[52.5,-0.9],"haR":[36.3,63.1],"shL":[-36.8,-94.7],"elL":[-10.8,6.5],"haL":[-20.2,76.7],"hipR":[5.6,36.3],"knR":[8.8,179],"ftR":[73.4,323.1],"hipL":[-17.8,40.2],"knL":[-73.6,175.3],"ftL":[-74.5,332.8]},{"rootY":4.1,"hips":[0,0],"chest":[-12.5,-76.8],"neck":[-12.5,-76.8],"head":[-40,-138.3],"shR":[6.3,-110.9],"elR":[51.5,-2.2],"haR":[36.4,61.9],"shL":[-37.3,-93.4],"elL":[-10.8,7.8],"haL":[-21,78],"hipR":[5.5,36.5],"knR":[9.6,179.2],"ftR":[76.7,322],"hipL":[-17.4,40.1],"knL":[-71.2,176.1],"ftL":[-70.1,333.7]},{"rootY":3.3,"hips":[0,0],"chest":[-13.2,-76.7],"neck":[-13.2,-76.7],"head":[-41.5,-137.6],"shR":[3.9,-111.9],"elR":[50.9,-4.3],"haR":[36.8,60.2],"shL":[-36.6,-91.7],"elL":[-9.8,9.5],"haL":[-21.2,79.6],"hipR":[5.8,36.4],"knR":[11,179],"ftR":[80.3,320.8],"hipL":[-16.7,40.4],"knL":[-68.9,177.1],"ftL":[-65.5,334.6]},{"rootY":2.5,"hips":[0,0],"chest":[-13.7,-76.5],"neck":[-13.7,-76.5],"head":[-42.7,-137],"shR":[2.3,-112.5],"elR":[51.8,-6.1],"haR":[38.3,58.7],"shL":[-36.4,-90.7],"elL":[-8.9,10.3],"haL":[-21.9,80.3],"hipR":[6,36.2],"knR":[13.5,178.9],"ftR":[84.2,319.8],"hipL":[-16.4,40.6],"knL":[-66.9,178],"ftL":[-60.6,335.4]},{"rootY":1.7,"hips":[0,0],"chest":[-13.8,-76.5],"neck":[-13.8,-76.5],"head":[-43.5,-136.4],"shR":[1.5,-112.9],"elR":[52.8,-7.9],"haR":[39.8,57.2],"shL":[-35.9,-89.9],"elL":[-7.8,11],"haL":[-22.7,80.7],"hipR":[6.4,35.9],"knR":[16.9,178.4],"ftR":[88.8,318.9],"hipL":[-16.3,40.8],"knL":[-64.4,179],"ftL":[-55.4,336.3]},{"rootY":0.8,"hips":[0,0],"chest":[-13.5,-76.5],"neck":[-13.5,-76.5],"head":[-43.6,-136.1],"shR":[1.6,-113.5],"elR":[53.2,-9.1],"haR":[40.7,56],"shL":[-35.3,-89.1],"elL":[-6.8,11.7],"haL":[-23.5,81],"hipR":[6.5,35.8],"knR":[19.7,178.4],"ftR":[93.3,317.9],"hipL":[-16.5,40.9],"knL":[-61.3,180],"ftL":[-49.3,337.1]},{"rootY":0.4,"hips":[0,0],"chest":[-13.1,-76.5],"neck":[-13.1,-76.5],"head":[-43.2,-135.9],"shR":[1.8,-114],"elR":[52.9,-9.7],"haR":[40.9,55.2],"shL":[-34.3,-88.6],"elL":[-5.8,12.3],"haL":[-24,81.3],"hipR":[6.6,35.8],"knR":[21.3,178.3],"ftR":[98.1,316.1],"hipL":[-16.7,40.9],"knL":[-58,181],"ftL":[-42.9,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[-12.4,-76.6],"neck":[-12.4,-76.6],"head":[-42.4,-135.8],"shR":[2.7,-114.6],"elR":[52.3,-10],"haR":[40.4,54.4],"shL":[-33.4,-87.9],"elL":[-5.4,13.1],"haL":[-24.6,81.8],"hipR":[6.8,36],"knR":[20.9,178.7],"ftR":[101.8,314.1],"hipL":[-16.9,40.7],"knL":[-55,181.8],"ftL":[-36.5,338.1]},{"rootY":0.2,"hips":[0,0],"chest":[-11.9,-76.6],"neck":[-11.9,-76.6],"head":[-41.6,-135.9],"shR":[3.3,-114.9],"elR":[51.6,-9.8],"haR":[39.2,53.7],"shL":[-32.6,-87.6],"elL":[-5.4,13.6],"haL":[-25.2,82.2],"hipR":[6.7,36.3],"knR":[18.5,179.4],"ftR":[104.6,311.6],"hipL":[-17.4,40.4],"knL":[-53.7,181.9],"ftL":[-31.1,337.7]},{"rootY":0.6,"hips":[0,0],"chest":[-11.4,-76.7],"neck":[-11.4,-76.7],"head":[-40.8,-136],"shR":[4.6,-115.1],"elR":[51.3,-9.6],"haR":[37.8,53.2],"shL":[-32.8,-87.3],"elL":[-6.6,14.2],"haL":[-26.8,82.7],"hipR":[6.3,36.3],"knR":[13.9,180],"ftR":[105.4,308.4],"hipL":[-17.8,40.3],"knL":[-53,182.1],"ftL":[-26.5,337.3]},{"rootY":0.8,"hips":[0,0],"chest":[-11.3,-76.7],"neck":[-11.3,-76.7],"head":[-40.4,-136.1],"shR":[5.1,-115.3],"elR":[50.3,-9.3],"haR":[35,52.6],"shL":[-32.5,-87.1],"elL":[-7.9,14.8],"haL":[-28.1,83.3],"hipR":[5.9,36.6],"knR":[7.2,180.6],"ftR":[103.7,305.4],"hipL":[-18.5,39.8],"knL":[-52.3,182],"ftL":[-22.6,336.7]},{"rootY":1.3,"hips":[0,0],"chest":[-10.8,-76.7],"neck":[-10.8,-76.7],"head":[-39.8,-136.2],"shR":[6,-115.5],"elR":[49.1,-8.9],"haR":[32.1,52.3],"shL":[-32.3,-86.8],"elL":[-9.1,15.4],"haL":[-29.5,83.9],"hipR":[5.4,37.1],"knR":[0.1,180.9],"ftR":[100.9,302.5],"hipL":[-19.2,39.3],"knL":[-50.9,182],"ftL":[-18.4,336.1]},{"rootY":1.4,"hips":[0,0],"chest":[-10.3,-76.7],"neck":[-10.3,-76.7],"head":[-39.1,-136.3],"shR":[7.1,-115.5],"elR":[48.6,-8.5],"haR":[29.6,52],"shL":[-32,-86.9],"elL":[-10.4,15.7],"haL":[-31.1,84.1],"hipR":[4.9,37.3],"knR":[-6.5,180.7],"ftR":[97.1,300.1],"hipL":[-19.7,39],"knL":[-49.6,182.1],"ftL":[-14.6,335.6]},{"rootY":1.7,"hips":[0,0],"chest":[-9.7,-76.8],"neck":[-9.7,-76.8],"head":[-38.3,-136.4],"shR":[8.1,-115.5],"elR":[48.4,-8.1],"haR":[27.3,51.7],"shL":[-31.4,-86.9],"elL":[-11.2,15.9],"haL":[-32.6,84.1],"hipR":[4.3,37.1],"knR":[-12.6,179.9],"ftR":[91.2,299.1],"hipL":[-19.7,38.9],"knL":[-48.3,182.4],"ftL":[-10.8,335.3]},{"rootY":2,"hips":[0,0],"chest":[-9.2,-76.8],"neck":[-9.2,-76.8],"head":[-37.6,-136.4],"shR":[8.5,-115.4],"elR":[48.2,-7.8],"haR":[25.3,51.5],"shL":[-30.2,-87.1],"elL":[-11.3,16],"haL":[-33.8,83.8],"hipR":[3.4,37],"knR":[-18.5,179],"ftR":[83,300.1],"hipL":[-19.4,38.9],"knL":[-47.1,182.6],"ftL":[-7.2,335]},{"rootY":2.6,"hips":[0,0],"chest":[-8.8,-76.8],"neck":[-8.8,-76.8],"head":[-36.9,-136.5],"shR":[8.6,-115.2],"elR":[48.2,-7.4],"haR":[23.9,51.4],"shL":[-29.1,-87.3],"elL":[-11.2,16],"haL":[-34.9,83.4],"hipR":[2.5,36.9],"knR":[-24.3,177.9],"ftR":[72.2,303.1],"hipL":[-19.2,38.9],"knL":[-46.8,182.7],"ftL":[-4.6,334.4]},{"rootY":3.2,"hips":[0,0],"chest":[-8.4,-76.8],"neck":[-8.4,-76.8],"head":[-36.6,-136.6],"shR":[8.2,-115.1],"elR":[47.8,-7.2],"haR":[22.7,51.5],"shL":[-27.7,-87.4],"elL":[-11,16.1],"haL":[-36.2,82.9],"hipR":[1.8,36.7],"knR":[-30,176.5],"ftR":[59.5,306.9],"hipL":[-18.9,39],"knL":[-46,182.8],"ftL":[-1.5,333.8]},{"rootY":4,"hips":[0,0],"chest":[-8.2,-76.7],"neck":[-8.2,-76.7],"head":[-36.3,-136.5],"shR":[7.7,-115.1],"elR":[47.3,-7.1],"haR":[21.6,51.8],"shL":[-26.4,-87.4],"elL":[-9.8,16.1],"haL":[-36.6,82.3],"hipR":[1,37],"knR":[-35.4,175.3],"ftR":[45.9,311.1],"hipL":[-18.8,38.7],"knL":[-45.6,182.6],"ftL":[1.7,332.8]},{"rootY":4.8,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.5,-136.4],"shR":[6.5,-115],"elR":[46.2,-7],"haR":[20.1,52],"shL":[-25.3,-87.3],"elL":[-8.7,16.1],"haL":[-37,81.7],"hipR":[0,37.5],"knR":[-41.5,173.8],"ftR":[31.3,314.6],"hipL":[-18.5,38.2],"knL":[-44.8,182.4],"ftL":[3.5,332.2]},{"rootY":4.9,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.7,-136.3],"shR":[5.5,-114.8],"elR":[45.1,-6.9],"haR":[18.9,52.5],"shL":[-24.1,-87.6],"elL":[-7.7,15.9],"haL":[-36.9,81],"hipR":[-0.8,37.7],"knR":[-46.9,172.3],"ftR":[17.6,317.5],"hipL":[-18.3,37.9],"knL":[-42.9,182.5],"ftL":[5.8,332.2]},{"rootY":4.5,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.8,-136.1],"shR":[4.3,-114.9],"elR":[44.1,-7.1],"haR":[17.6,52.4],"shL":[-22.5,-87.5],"elL":[-6.7,16],"haL":[-36.4,80.9],"hipR":[-1.6,37.8],"knR":[-51.5,170.8],"ftR":[4.5,319.8],"hipL":[-17.9,37.7],"knL":[-40.5,182.8],"ftL":[8,332.6]},{"rootY":4.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.6,-136],"shR":[3.3,-114.6],"elR":[43.6,-7.2],"haR":[16.8,52.4],"shL":[-21.2,-87.8],"elL":[-5.3,15.7],"haL":[-35.1,80.4],"hipR":[-2.2,38.3],"knR":[-55.9,169.6],"ftR":[-8.8,321.7],"hipL":[-17.2,37.4],"knL":[-37.6,182.9],"ftL":[10.1,333]},{"rootY":3.7,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[1.6,-114.4],"elR":[42,-7.3],"haR":[15,52.4],"shL":[-18.9,-88.1],"elL":[-2.6,15.3],"haL":[-31.8,80.2],"hipR":[-3.2,38.4],"knR":[-59.3,168.7],"ftR":[-21.4,322.8],"hipL":[-16.3,37.3],"knL":[-35,183.2],"ftL":[12.2,333.5]},{"rootY":3.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[0.2,-114.1],"elR":[40.4,-7.1],"haR":[13.2,52.7],"shL":[-17.3,-88.6],"elL":[-0.5,14.7],"haL":[-28.7,79.9],"hipR":[-4.6,38.2],"knR":[-61.7,168.1],"ftR":[-32.9,323.4],"hipL":[-15.4,37.4],"knL":[-32.6,183.7],"ftL":[14.3,334]},{"rootY":2.2,"hips":[0,0],"chest":[-8.6,-76.6],"neck":[-8.6,-76.6],"head":[-36.3,-136.1],"shR":[-1.3,-113.9],"elR":[38.6,-7],"haR":[11.5,52.8],"shL":[-15.6,-88.9],"elL":[1.8,14.4],"haL":[-25,80],"hipR":[-5.7,38.2],"knR":[-63.6,167.7],"ftR":[-43.6,323.4],"hipL":[-14.2,37.4],"knL":[-29.4,184.1],"ftL":[16.7,334.7]},{"rootY":1.6,"hips":[0,0],"chest":[-8.7,-76.7],"neck":[-8.7,-76.7],"head":[-36.1,-136.2],"shR":[-3.3,-113.7],"elR":[36.6,-7.1],"haR":[9.5,52.8],"shL":[-13.1,-89.2],"elL":[5.2,13.8],"haL":[-19.9,79.9],"hipR":[-6.8,37.9],"knR":[-64.4,167.7],"ftR":[-52.5,323.2],"hipL":[-12.7,37.8],"knL":[-26.1,184.7],"ftL":[19.2,335.5]},{"rootY":1.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-35.7,-136.2],"shR":[-5.3,-113.3],"elR":[34.4,-7.1],"haR":[7.2,53.2],"shL":[-10.4,-89.7],"elL":[8.9,13.2],"haL":[-14.5,79.7],"hipR":[-8.1,37.7],"knR":[-64.7,168],"ftR":[-59.4,322.6],"hipL":[-11.3,38],"knL":[-22.6,185.2],"ftL":[21.5,336.4]},{"rootY":0.8,"hips":[0,0],"chest":[-8,-76.5],"neck":[-8,-76.5],"head":[-34.9,-136.2],"shR":[-6.9,-112.8],"elR":[32.3,-6.8],"haR":[5.2,53.8],"shL":[-7.4,-90.2],"elL":[13,12.5],"haL":[-8.3,79.5],"hipR":[-9.2,39],"knR":[-65.3,169.7],"ftR":[-64.2,322.3],"hipL":[-9.3,37],"knL":[-16.4,184.5],"ftL":[24.6,336.5]},{"rootY":0.4,"hips":[0,0],"chest":[-7.7,-76.6],"neck":[-7.7,-76.6],"head":[-34.2,-136.3],"shR":[-9,-112.4],"elR":[29.5,-6.5],"haR":[2.5,54.4],"shL":[-4,-90.9],"elL":[17.5,11.6],"haL":[-1.5,78.9],"hipR":[-10.6,38.7],"knR":[-63.1,171.1],"ftR":[-67.4,322.4],"hipL":[-7.5,37.3],"knL":[-13.7,184.8],"ftL":[28.1,336.6]},{"rootY":0.7,"hips":[0,0],"chest":[-7.5,-76.7],"neck":[-7.5,-76.7],"head":[-33.4,-136.5],"shR":[-11,-112.2],"elR":[26.8,-6.5],"haR":[-0.2,54.7],"shL":[-1,-91.4],"elL":[21.5,10.9],"haL":[5,78.5],"hipR":[-12.6,38.1],"knR":[-61.4,172],"ftR":[-68.3,322.7],"hipL":[-6.2,37.8],"knL":[-11.7,185.2],"ftL":[31.5,336.5]},{"rootY":1.4,"hips":[0,0],"chest":[-7,-76.8],"neck":[-7,-76.8],"head":[-32.2,-136.6],"shR":[-13.4,-112],"elR":[23.5,-6.4],"haR":[-3.4,55.3],"shL":[3.1,-91.9],"elL":[26.8,10.1],"haL":[12.7,77.9],"hipR":[-14.2,37.8],"knR":[-59.6,173.3],"ftR":[-66.6,323.6],"hipL":[-4.4,38.1],"knL":[-9.4,185.4],"ftL":[35.6,336]},{"rootY":2.3,"hips":[0,0],"chest":[-6.3,-76.9],"neck":[-6.3,-76.9],"head":[-30.7,-136.9],"shR":[-15.5,-111.9],"elR":[20.7,-6.4],"haR":[-6.2,55.7],"shL":[7.3,-92.4],"elL":[31.9,9.4],"haL":[20.5,77.2],"hipR":[-15.8,37.9],"knR":[-57.2,174.9],"ftR":[-61.1,325.3],"hipL":[-2.2,38.2],"knL":[-6.9,185.2],"ftL":[40,335.1]},{"rootY":3.4,"hips":[0,0],"chest":[-5.9,-77],"neck":[-5.9,-77],"head":[-29.8,-137.1],"shR":[-17.9,-111.6],"elR":[17.3,-6.1],"haR":[-9.6,56.4],"shL":[11.4,-92.8],"elL":[37.5,8.6],"haL":[28.4,76.3],"hipR":[-17.1,38.5],"knR":[-54.9,177],"ftR":[-54.8,327.5],"hipL":[0.5,37.7],"knL":[-2.5,184.5],"ftL":[44.3,334.1]},{"rootY":4.4,"hips":[0,0],"chest":[-6.1,-77],"neck":[-6.1,-77],"head":[-29,-137.1],"shR":[-21.6,-111],"elR":[12.7,-5.7],"haR":[-13.9,57.4],"shL":[15.3,-93.8],"elL":[42.6,7.3],"haL":[35.7,74.7],"hipR":[-18.5,38.5],"knR":[-52.6,178.2],"ftR":[-48.9,329.4],"hipL":[2.4,37.9],"knL":[0.9,184.1],"ftL":[48.2,333.3]},{"rootY":5.1,"hips":[0,0],"chest":[-6.8,-77.1],"neck":[-6.8,-77.1],"head":[-29,-137.1],"shR":[-25.5,-110.8],"elR":[7.3,-5.4],"haR":[-18.7,58.4],"shL":[18.1,-94.2],"elL":[47,6.4],"haL":[42.1,73.1],"hipR":[-19.5,38.7],"knR":[-50.7,179.2],"ftR":[-43.7,330.6],"hipL":[4,37.7],"knL":[4.4,183.4],"ftL":[52.1,332.2]},{"rootY":5.2,"hips":[0,0],"chest":[-8.5,-77],"neck":[-8.5,-77],"head":[-31,-136.7],"shR":[-30.3,-109.3],"elR":[0.3,-4.1],"haR":[-24.8,60.5],"shL":[19,-95.8],"elL":[49.6,4.3],"haL":[46.4,70.5],"hipR":[-20.5,38.6],"knR":[-52.2,179],"ftR":[-42.4,330.6],"hipL":[5.2,37.8],"knL":[5.2,183.1],"ftL":[53.9,331.2]},{"rootY":5,"hips":[0,0],"chest":[-10.1,-76.8],"neck":[-10.1,-76.8],"head":[-33.2,-136.5],"shR":[-35,-107.8],"elR":[-6.9,-2.8],"haR":[-31.5,62.2],"shL":[19.6,-97.4],"elL":[52.7,2],"haL":[50.5,67.8],"hipR":[-21.7,38.2],"knR":[-52.4,178.7],"ftR":[-40.7,330.6],"hipL":[6.9,38.3],"knL":[4,182.8],"ftL":[54.7,330.4]},{"rootY":3.9,"hips":[0,0],"chest":[-11.1,-76.7],"neck":[-11.1,-76.7],"head":[-34.8,-136],"shR":[-39.3,-106.4],"elR":[-13.7,-1.4],"haR":[-38.4,63.6],"shL":[21.5,-98.8],"elL":[57.4,-0.4],"haL":[56.1,65.2],"hipR":[-22.4,39.2],"knR":[-50.7,179.9],"ftR":[-38.3,331.5],"hipL":[9.8,37.5],"knL":[5.4,181.3],"ftL":[54.6,329.5]},{"rootY":2.9,"hips":[0,0],"chest":[-12.2,-76.5],"neck":[-12.2,-76.5],"head":[-36.4,-135.5],"shR":[-43.5,-105],"elR":[-20.2,-0.7],"haR":[-45.6,64.1],"shL":[22.9,-100],"elL":[61,-2.3],"haL":[60.9,63.2],"hipR":[-23.5,39.5],"knR":[-48.9,180.5],"ftR":[-36.1,332],"hipL":[12.2,37.2],"knL":[5.9,180.1],"ftL":[53.9,328.9]},{"rootY":2.4,"hips":[0,0],"chest":[-13.7,-76.2],"neck":[-13.7,-76.2],"head":[-38.2,-135],"shR":[-48.1,-103.6],"elR":[-27,1.2],"haR":[-53.3,65.6],"shL":[24,-101.1],"elL":[64.1,-4.3],"haL":[65.7,61.3],"hipR":[-24.7,39.1],"knR":[-47.7,180.2],"ftR":[-35,332.2],"hipL":[14,37.8],"knL":[6.3,179.7],"ftL":[53,329.2]},{"rootY":1.2,"hips":[0,0],"chest":[-14.1,-76.2],"neck":[-14.1,-76.2],"head":[-38.6,-134.8],"shR":[-50.7,-102.5],"elR":[-32.2,1.6],"haR":[-59.6,65.7],"shL":[25.7,-102.2],"elL":[67.9,-6.4],"haL":[70.7,58.9],"hipR":[-24.8,39.8],"knR":[-46.2,181.1],"ftR":[-33.2,333.3],"hipL":[15.6,37],"knL":[10.4,179],"ftL":[55.3,329.1]},{"rootY":0.6,"hips":[0,0],"chest":[-14.6,-76],"neck":[-14.6,-76],"head":[-39.2,-134.4],"shR":[-53.5,-101.6],"elR":[-37.4,1.2],"haR":[-66.2,64.9],"shL":[27.2,-103],"elL":[71.2,-8],"haL":[75.6,56.8],"hipR":[-25.1,40.1],"knR":[-45.2,181.5],"ftR":[-32.3,334],"hipL":[16.7,36.7],"knL":[14,178.5],"ftL":[58.9,328.7]},{"rootY":0.2,"hips":[0,0],"chest":[-15,-75.9],"neck":[-15,-75.9],"head":[-39.6,-134],"shR":[-55.4,-100.9],"elR":[-43.5,2.7],"haR":[-72.9,66.1],"shL":[28.2,-103.5],"elL":[73.6,-9.3],"haL":[79.8,55.2],"hipR":[-25.5,40.1],"knR":[-44.4,181.4],"ftR":[-31.6,334.2],"hipL":[17.7,36.8],"knL":[17.1,178.2],"ftL":[63.6,328.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-15.2,-75.8],"neck":[-15.2,-75.8],"head":[-39.8,-133.5],"shR":[-57.4,-100.8],"elR":[-48.5,2.7],"haR":[-79.4,65.5],"shL":[29.8,-103.5],"elL":[77,-10.3],"haL":[84.4,53.3],"hipR":[-25.3,40.5],"knR":[-43.9,181.6],"ftR":[-31.4,334.4],"hipL":[18.9,36.4],"knL":[20.4,177.6],"ftL":[69.8,326.7]},{"rootY":-0.3,"hips":[0,0],"chest":[-15.7,-75.7],"neck":[-15.7,-75.7],"head":[-40.2,-133],"shR":[-59.1,-100.3],"elR":[-52.2,3.4],"haR":[-84.5,65.7],"shL":[30.1,-103.7],"elL":[78.9,-11.6],"haL":[87.4,51.7],"hipR":[-25.5,40.7],"knR":[-43.6,181.8],"ftR":[-31.7,334.5],"hipL":[20,36.2],"knL":[22.8,176.8],"ftL":[76.2,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[-16.4,-75.5],"neck":[-16.4,-75.5],"head":[-40.8,-132.4],"shR":[-60.8,-99.4],"elR":[-55.8,3.5],"haR":[-89.6,65.2],"shL":[29.9,-104.2],"elL":[80.6,-13.4],"haL":[89.2,49.2],"hipR":[-25.8,40.8],"knR":[-44.1,181.4],"ftR":[-32.8,334],"hipL":[20.9,36.2],"knL":[24.1,176.1],"ftL":[81.4,322.9]},{"rootY":0.9,"hips":[0,0],"chest":[-16.9,-75.3],"neck":[-16.9,-75.3],"head":[-41,-131.5],"shR":[-61,-98],"elR":[-58.3,4.1],"haR":[-93.6,65.1],"shL":[28.1,-105.2],"elL":[80.4,-15.9],"haL":[88.1,46],"hipR":[-26,40.9],"knR":[-44.6,181.2],"ftR":[-34.4,333.6],"hipL":[21.9,36.2],"knL":[25.2,175.1],"ftL":[86.1,320.4]},{"rootY":1.3,"hips":[0,0],"chest":[-17.7,-75],"neck":[-17.7,-75],"head":[-42.3,-130.6],"shR":[-64.5,-98],"elR":[-63.3,3.5],"haR":[-99.6,63.8],"shL":[30.1,-104.5],"elL":[83.8,-16.5],"haL":[90,44.6],"hipR":[-26,41],"knR":[-45.3,180.9],"ftR":[-36.3,333.2],"hipL":[22.6,36.1],"knL":[26.7,174.4],"ftL":[89.2,318.8]},{"rootY":1.7,"hips":[0,0],"chest":[-18.2,-74.7],"neck":[-18.2,-74.7],"head":[-42.8,-129.8],"shR":[-66.2,-97.6],"elR":[-66.8,3.5],"haR":[-103.9,63.2],"shL":[30.6,-104.4],"elL":[85.3,-17.7],"haL":[89.6,42.5],"hipR":[-25.9,41.2],"knR":[-46.2,180.7],"ftR":[-38.2,332.8],"hipL":[23.4,35.8],"knL":[28.8,174.2],"ftL":[91.2,318.3]},{"rootY":2.3,"hips":[0,0],"chest":[-18.5,-74.5],"neck":[-18.5,-74.5],"head":[-43.4,-128.9],"shR":[-67.8,-97.3],"elR":[-70.4,3.4],"haR":[-107.9,62.3],"shL":[31.3,-104],"elL":[86.6,-18.2],"haL":[88.4,40.9],"hipR":[-25.7,41.4],"knR":[-47.5,180.4],"ftR":[-40.4,332.2],"hipL":[24,35.7],"knL":[30.8,174.4],"ftL":[92,319]},{"rootY":3,"hips":[0,0],"chest":[-18.9,-74.2],"neck":[-18.9,-74.2],"head":[-43.5,-128],"shR":[-68.9,-96.9],"elR":[-73.6,3.4],"haR":[-111.3,61.6],"shL":[31.5,-103.9],"elL":[87.3,-19.1],"haL":[86.4,38.9],"hipR":[-25.6,41.5],"knR":[-49.4,179.9],"ftR":[-43.2,331.4],"hipL":[24.4,35.7],"knL":[32.3,175],"ftL":[90.9,320.8]},{"rootY":4.1,"hips":[0,0],"chest":[-19,-74],"neck":[-19,-74],"head":[-43.5,-127.2],"shR":[-69.7,-96.6],"elR":[-75.3,2.7],"haR":[-113,60.2],"shL":[31.7,-103.5],"elL":[87.9,-19.6],"haL":[84.2,37.4],"hipR":[-25.4,41.6],"knR":[-51.4,179.3],"ftR":[-46.1,330.4],"hipL":[24.8,35.7],"knL":[33.4,175.7],"ftL":[89.3,322.6]},{"rootY":5.2,"hips":[0,0],"chest":[-19.1,-73.7],"neck":[-19.1,-73.7],"head":[-43.4,-126.3],"shR":[-70.4,-96.4],"elR":[-77.9,2.7],"haR":[-115.3,59.4],"shL":[32,-102.9],"elL":[88.3,-19.6],"haL":[81.7,36.5],"hipR":[-25.3,41.6],"knR":[-53.7,178.6],"ftR":[-49.4,329.4],"hipL":[25,35.7],"knL":[33.3,176.2],"ftL":[86.9,324]},{"rootY":6,"hips":[0,0],"chest":[-19.2,-73.3],"neck":[-19.2,-73.3],"head":[-43.2,-125.3],"shR":[-71.2,-96.2],"elR":[-80.4,2.9],"haR":[-117.1,59],"shL":[32.7,-102.2],"elL":[88.9,-19],"haL":[79.4,36.3],"hipR":[-25.4,41.5],"knR":[-55.7,177.9],"ftR":[-52.8,328.7],"hipL":[25.2,35.9],"knL":[32.7,176.5],"ftL":[83.8,325.1]},{"rootY":7,"hips":[0,0],"chest":[-19.2,-72.9],"neck":[-19.2,-72.9],"head":[-42.6,-124.2],"shR":[-71.9,-96.1],"elR":[-82.4,3.1],"haR":[-118.2,58.7],"shL":[33.4,-101.3],"elL":[89.4,-17.7],"haL":[77,37.1],"hipR":[-25.5,41.4],"knR":[-57.8,177.2],"ftR":[-56.3,327.8],"hipL":[25.3,36],"knL":[31.6,176.7],"ftL":[79.9,326.3]},{"rootY":7.7,"hips":[0,0],"chest":[-19,-72.6],"neck":[-19,-72.6],"head":[-41.7,-123],"shR":[-72.5,-95.9],"elR":[-84.3,3.1],"haR":[-118.7,58.3],"shL":[34.4,-100.5],"elL":[89.9,-16.2],"haL":[74.9,38.2],"hipR":[-25.5,41.4],"knR":[-59.7,176.6],"ftR":[-59.6,327.1],"hipL":[25.7,36.2],"knL":[30.4,176.7],"ftL":[76,327.1]},{"rootY":8.5,"hips":[0,0],"chest":[-18.8,-72.1],"neck":[-18.8,-72.1],"head":[-40.8,-121.7],"shR":[-72.8,-95.8],"elR":[-86.7,3.7],"haR":[-119.2,59],"shL":[35.3,-99.4],"elL":[90.3,-14.5],"haL":[72.7,39.6],"hipR":[-25.6,41.3],"knR":[-61.2,175.9],"ftR":[-62.7,326.3],"hipL":[25.9,36.4],"knL":[28.9,176.4],"ftL":[72.6,327.3]},{"rootY":9.4,"hips":[0,0],"chest":[-18.4,-71.7],"neck":[-18.4,-71.7],"head":[-39.8,-120.4],"shR":[-73,-95.6],"elR":[-87.4,3.1],"haR":[-117.8,58.4],"shL":[36.3,-98.4],"elL":[90.6,-12.5],"haL":[70.6,41.2],"hipR":[-25.8,41.1],"knR":[-63,175],"ftR":[-65.8,325.4],"hipL":[25.9,36.7],"knL":[27.2,176.1],"ftL":[70,327.2]},{"rootY":10.4,"hips":[0,0],"chest":[-18.1,-71.1],"neck":[-18.1,-71.1],"head":[-38.8,-119],"shR":[-73.2,-95.4],"elR":[-88.7,2.8],"haR":[-116.8,58.3],"shL":[37.6,-97],"elL":[91.3,-10.3],"haL":[68.9,43.2],"hipR":[-26,40.9],"knR":[-64.6,174.1],"ftR":[-68.6,324.5],"hipL":[26,37],"knL":[25.7,175.5],"ftL":[68.2,326.7]},{"rootY":11.4,"hips":[0,0],"chest":[-17.5,-70.7],"neck":[-17.5,-70.7],"head":[-37.5,-117.7],"shR":[-73.2,-95.3],"elR":[-89.7,2.4],"haR":[-115.5,57.9],"shL":[39,-95.8],"elL":[91.4,-8],"haL":[67.1,45.3],"hipR":[-26.1,40.7],"knR":[-66,173.2],"ftR":[-71.1,323.6],"hipL":[26.1,37.2],"knL":[24.2,174.9],"ftL":[65.9,326.2]},{"rootY":12.5,"hips":[0,0],"chest":[-16.9,-70.3],"neck":[-16.9,-70.3],"head":[-36,-116.3],"shR":[-72.6,-95.3],"elR":[-90.2,1.8],"haR":[-114,57.5],"shL":[40.1,-94.7],"elL":[91.2,-5.7],"haL":[65,47.4],"hipR":[-26.3,40.6],"knR":[-67.6,172.3],"ftR":[-73.3,322.6],"hipL":[26.3,37.3],"knL":[22.7,173.8],"ftL":[63.7,325.2]},{"rootY":13.4,"hips":[0,0],"chest":[-16.1,-69.9],"neck":[-16.1,-69.9],"head":[-34.5,-115.4],"shR":[-72.1,-95.2],"elR":[-90.6,1.4],"haR":[-112.6,57.2],"shL":[41.4,-93.7],"elL":[91.3,-3.8],"haL":[63.2,49.1],"hipR":[-26.6,40.4],"knR":[-69.4,171.3],"ftR":[-75.4,321.5],"hipL":[26.3,37.6],"knL":[21.5,172.6],"ftL":[61.7,324.2]},{"rootY":15,"hips":[0,0],"chest":[-15.3,-69.6],"neck":[-15.3,-69.6],"head":[-32.8,-114.5],"shR":[-71.3,-95.5],"elR":[-91.2,0.8],"haR":[-111.3,56.6],"shL":[42.8,-92.5],"elL":[91.4,-1.7],"haL":[61.3,50.7],"hipR":[-27,40.1],"knR":[-71.5,169.9],"ftR":[-77.3,320],"hipL":[26.4,38],"knL":[20.6,171.3],"ftL":[59.9,322.9]},{"rootY":16.4,"hips":[0,0],"chest":[-14.4,-69.3],"neck":[-14.4,-69.3],"head":[-31.1,-113.9],"shR":[-70.4,-95.7],"elR":[-91.5,0.1],"haR":[-110,56.1],"shL":[44.3,-91.5],"elL":[91.5,0.2],"haL":[59.7,52.2],"hipR":[-27.6,39.7],"knR":[-73.7,168.5],"ftR":[-79.1,318.6],"hipL":[26.2,38.4],"knL":[19.7,170],"ftL":[58.5,321.6]},{"rootY":17.8,"hips":[0,0],"chest":[-13.5,-69.1],"neck":[-13.5,-69.1],"head":[-29.4,-113.3],"shR":[-69.5,-96],"elR":[-91.4,-0.7],"haR":[-108.7,55.5],"shL":[45.6,-90.5],"elL":[91.5,2],"haL":[57.8,53.6],"hipR":[-28.1,39.4],"knR":[-75.8,167.2],"ftR":[-80.7,317.2],"hipL":[26.1,38.7],"knL":[19,168.8],"ftL":[57.2,320.4]},{"rootY":19.2,"hips":[0,0],"chest":[-12.6,-68.9],"neck":[-12.6,-68.9],"head":[-27.6,-112.9],"shR":[-68.6,-96.3],"elR":[-91.5,-1.5],"haR":[-107.6,55],"shL":[47.2,-89.5],"elL":[92,3.7],"haL":[56.4,54.8],"hipR":[-28.4,39.2],"knR":[-77.3,166],"ftR":[-82.1,315.8],"hipL":[25.9,38.9],"knL":[18.1,167.4],"ftL":[55.8,319]},{"rootY":20.5,"hips":[0,0],"chest":[-11.8,-68.8],"neck":[-11.8,-68.8],"head":[-26.1,-112.8],"shR":[-67.8,-96.8],"elR":[-91.5,-2.2],"haR":[-106.6,54.5],"shL":[48.6,-88.7],"elL":[92.3,5],"haL":[55.1,55.9],"hipR":[-28.6,39.1],"knR":[-79.1,164.8],"ftR":[-83.3,314.5],"hipL":[25.7,39],"knL":[17,166.3],"ftL":[54.6,317.7]},{"rootY":21.8,"hips":[0,0],"chest":[-11.2,-68.7],"neck":[-11.2,-68.7],"head":[-24.6,-112.8],"shR":[-67.1,-97.1],"elR":[-91.4,-2.9],"haR":[-105.6,54],"shL":[49.7,-88],"elL":[92.5,6.3],"haL":[53.7,56.9],"hipR":[-28.8,39],"knR":[-80.3,163.7],"ftR":[-84.4,313.2],"hipL":[25.6,39.1],"knL":[15.7,165.1],"ftL":[53.3,316.3]},{"rootY":23.3,"hips":[0,0],"chest":[-10.7,-68.5],"neck":[-10.7,-68.5],"head":[-23.5,-112.7],"shR":[-66.5,-97.4],"elR":[-91.7,-3.4],"haR":[-105.1,53.8],"shL":[50.6,-87.1],"elL":[92.7,7.5],"haL":[52.6,57.8],"hipR":[-28.9,38.9],"knR":[-81.5,162.5],"ftR":[-85.5,311.9],"hipL":[25.4,39.1],"knL":[14.4,163.8],"ftL":[52.2,314.9]},{"rootY":24.5,"hips":[0,0],"chest":[-10.2,-68.4],"neck":[-10.2,-68.4],"head":[-22.5,-112.8],"shR":[-65.8,-97.8],"elR":[-91.7,-4],"haR":[-104.7,53.2],"shL":[51.5,-86.4],"elL":[92.5,8.5],"haL":[51.5,58.4],"hipR":[-29.1,38.8],"knR":[-82.5,161.4],"ftR":[-86.4,310.6],"hipL":[25.2,39.2],"knL":[13.3,162.8],"ftL":[51.2,313.8]},{"rootY":25.9,"hips":[0,0],"chest":[-9.8,-68.4],"neck":[-9.8,-68.4],"head":[-21.4,-112.9],"shR":[-65.1,-98.1],"elR":[-92,-4.6],"haR":[-104.7,52.5],"shL":[51.6,-86.1],"elL":[91.4,9.1],"haL":[49.5,58.6],"hipR":[-29.1,38.8],"knR":[-83.4,160.3],"ftR":[-87.3,309.2],"hipL":[25.1,39.2],"knL":[12.4,161.6],"ftL":[50.3,312.4]},{"rootY":27.2,"hips":[0,0],"chest":[-9.4,-68.3],"neck":[-9.4,-68.3],"head":[-20.7,-113],"shR":[-64.7,-98.2],"elR":[-92,-4.4],"haR":[-104.7,52.7],"shL":[52.2,-85.6],"elL":[90.8,10],"haL":[48.4,58.9],"hipR":[-29.4,38.6],"knR":[-84.1,159.1],"ftR":[-87.8,307.9],"hipL":[24.9,39.4],"knL":[11.7,160.4],"ftL":[49.5,311.1]},{"rootY":28.5,"hips":[0,0],"chest":[-9.2,-68.2],"neck":[-9.2,-68.2],"head":[-20.1,-113.1],"shR":[-64.4,-98.4],"elR":[-92,-4.6],"haR":[-104.9,52.3],"shL":[52.6,-85.1],"elL":[90.2,10.8],"haL":[47.2,59.2],"hipR":[-29.6,38.5],"knR":[-84.9,158],"ftR":[-88.3,306.5],"hipL":[24.9,39.4],"knL":[11.2,159.2],"ftL":[48.9,309.8]},{"rootY":29.8,"hips":[0,0],"chest":[-9,-68.1],"neck":[-9,-68.1],"head":[-19.7,-113.2],"shR":[-64.1,-98.6],"elR":[-92.1,-4.6],"haR":[-105.1,52.1],"shL":[52.9,-84.8],"elL":[89.7,11.4],"haL":[46.2,59.3],"hipR":[-29.8,38.4],"knR":[-85.9,156.8],"ftR":[-88.9,305.2],"hipL":[24.9,39.5],"knL":[10.8,157.9],"ftL":[48.3,308.6]},{"rootY":31.1,"hips":[0,0],"chest":[-8.5,-68],"neck":[-8.5,-68],"head":[-18.9,-113.2],"shR":[-63.5,-98.5],"elR":[-92.3,-4.6],"haR":[-105.3,51.9],"shL":[53.4,-84.5],"elL":[89.3,12.1],"haL":[45.3,59.6],"hipR":[-30,38.4],"knR":[-86.9,155.6],"ftR":[-89.1,303.9],"hipL":[24.8,39.5],"knL":[10.9,156.5],"ftL":[48.1,307.3]},{"rootY":32.4,"hips":[0,0],"chest":[-8.2,-68.1],"neck":[-8.2,-68.1],"head":[-18.3,-113.4],"shR":[-63.2,-98.7],"elR":[-92.6,-4.6],"haR":[-105.6,51.7],"shL":[54.1,-84.6],"elL":[89.4,12.5],"haL":[45.1,59.6],"hipR":[-30.3,38.3],"knR":[-88,154.4],"ftR":[-89.1,302.5],"hipL":[24.9,39.5],"knL":[11.2,155.3],"ftL":[48.1,306]},{"rootY":33.9,"hips":[0,0],"chest":[-7.6,-68.2],"neck":[-7.6,-68.2],"head":[-17.6,-113.8],"shR":[-62.6,-98.9],"elR":[-92.6,-4.6],"haR":[-105.5,51.4],"shL":[54.8,-84.6],"elL":[89.5,13],"haL":[45,59.7],"hipR":[-30.5,38.3],"knR":[-89.1,153.1],"ftR":[-88.9,301],"hipL":[24.8,39.5],"knL":[11.7,153.8],"ftL":[48.3,304.5]},{"rootY":35.3,"hips":[0,0],"chest":[-7.1,-68.5],"neck":[-7.1,-68.5],"head":[-16.9,-114.4],"shR":[-62.2,-99.1],"elR":[-92.9,-4.2],"haR":[-105.6,51.3],"shL":[55.4,-85.3],"elL":[89.6,12.7],"haL":[44.9,59.1],"hipR":[-30.9,38.2],"knR":[-90.1,151.8],"ftR":[-88.7,299.4],"hipL":[24.6,39.5],"knL":[12.2,152.3],"ftL":[48.6,303]},{"rootY":37,"hips":[0,0],"chest":[-7,-69],"neck":[-7,-69],"head":[-16.6,-115.3],"shR":[-62.2,-99.3],"elR":[-93.5,-3.7],"haR":[-105.9,51.2],"shL":[55.6,-86.2],"elL":[89.5,12.2],"haL":[44.7,58.2],"hipR":[-31.3,38],"knR":[-91.3,150.4],"ftR":[-88.7,297.6],"hipL":[24.5,39.5],"knL":[12.6,150.8],"ftL":[48.6,301.4]},{"rootY":38.6,"hips":[0,0],"chest":[-6.8,-69.6],"neck":[-6.8,-69.6],"head":[-16.3,-116.6],"shR":[-62.1,-99.6],"elR":[-93.7,-2.8],"haR":[-106,51.4],"shL":[56,-87.5],"elL":[89.6,11.3],"haL":[44.8,56.8],"hipR":[-31.5,38.1],"knR":[-92.2,149.2],"ftR":[-88.4,295.8],"hipL":[24.6,39.2],"knL":[13.3,149.3],"ftL":[48.8,299.9]},{"rootY":40,"hips":[0,0],"chest":[-6.7,-70.2],"neck":[-6.7,-70.2],"head":[-16.2,-118.2],"shR":[-62.2,-100],"elR":[-94.2,-1.8],"haR":[-106.1,51.6],"shL":[56.2,-88.9],"elL":[89.5,10.3],"haL":[44.7,55.2],"hipR":[-31.6,38.2],"knR":[-93.2,148],"ftR":[-88.2,294.1],"hipL":[24.6,38.9],"knL":[14.1,147.9],"ftL":[48.9,298.5]},{"rootY":41.1,"hips":[0,0],"chest":[-6.7,-71],"neck":[-6.7,-71],"head":[-16,-120],"shR":[-62.3,-100.3],"elR":[-94.8,-0.6],"haR":[-106.4,52],"shL":[56.2,-90.5],"elL":[89,8.9],"haL":[44.2,53.3],"hipR":[-31.9,38.2],"knR":[-94.5,146.5],"ftR":[-88.3,292.4],"hipL":[24.4,38.6],"knL":[14.7,146.7],"ftL":[48.9,297.3]},{"rootY":42.2,"hips":[0,0],"chest":[-6.7,-71.7],"neck":[-6.7,-71.7],"head":[-16,-122.1],"shR":[-62.4,-100.4],"elR":[-95.8,1],"haR":[-107,52.7],"shL":[56,-92.4],"elL":[88.1,7.4],"haL":[43.5,51.5],"hipR":[-32,38.2],"knR":[-95.6,145.2],"ftR":[-88.3,290.8],"hipL":[24.3,38.2],"knL":[14.9,145.6],"ftL":[48.9,296.2]},{"rootY":43.3,"hips":[0,0],"chest":[-6.8,-72.4],"neck":[-6.8,-72.4],"head":[-16,-124.1],"shR":[-62.5,-100.8],"elR":[-96.9,2.5],"haR":[-107.3,53.3],"shL":[55.9,-94],"elL":[86.9,6.1],"haL":[42.6,49.7],"hipR":[-32,38.3],"knR":[-97.1,143.9],"ftR":[-88.6,289.3],"hipL":[24.2,37.8],"knL":[15,144.4],"ftL":[48.6,295.1]},{"rootY":44.5,"hips":[0,0],"chest":[-6.9,-73],"neck":[-6.9,-73],"head":[-16.1,-126.1],"shR":[-62.6,-101],"elR":[-97.9,4.1],"haR":[-107.6,54],"shL":[55.6,-95.5],"elL":[85.5,4.8],"haL":[41.2,48],"hipR":[-32.3,38.1],"knR":[-98.4,142.2],"ftR":[-89.2,287.6],"hipL":[23.9,37.5],"knL":[14.8,143.2],"ftL":[48.2,294]},{"rootY":45.4,"hips":[0,0],"chest":[-6.9,-73.7],"neck":[-6.9,-73.7],"head":[-16.3,-128.1],"shR":[-62.4,-101.6],"elR":[-98.9,5],"haR":[-107.8,53.9],"shL":[55.4,-96.7],"elL":[84.2,3.8],"haL":[39.7,46.5],"hipR":[-32.5,38],"knR":[-99.7,141],"ftR":[-89.8,286.3],"hipL":[23.8,37.1],"knL":[14.4,142.1],"ftL":[47.5,292.8]},{"rootY":46.7,"hips":[0,0],"chest":[-6.8,-74.2],"neck":[-6.8,-74.2],"head":[-16.2,-130],"shR":[-62,-101.9],"elR":[-99.7,5.9],"haR":[-107.7,53.6],"shL":[55.4,-97.6],"elL":[82.8,3.1],"haL":[38,45.3],"hipR":[-32.8,37.8],"knR":[-101,139.2],"ftR":[-90.5,284.6],"hipL":[23.2,37],"knL":[13.8,140.8],"ftL":[46.8,291.6]},{"rootY":47.7,"hips":[0,0],"chest":[-6.5,-74.8],"neck":[-6.5,-74.8],"head":[-15.9,-131.8],"shR":[-61.5,-102.3],"elR":[-101.1,6.1],"haR":[-107.6,52.4],"shL":[55.6,-98.7],"elL":[82.1,1.8],"haL":[36.4,43.3],"hipR":[-32.9,37.8],"knR":[-102.4,137.9],"ftR":[-91.3,283.3],"hipL":[23.1,36.4],"knL":[13.3,139.8],"ftL":[46.1,290.5]},{"rootY":48.9,"hips":[0,0],"chest":[-6.2,-75.2],"neck":[-6.2,-75.2],"head":[-15.5,-133.3],"shR":[-61,-102.7],"elR":[-102.7,5.9],"haR":[-107.5,50.7],"shL":[55.9,-99.4],"elL":[81.9,0.7],"haL":[35.1,41.4],"hipR":[-33.4,37.4],"knR":[-103.6,136.2],"ftR":[-92.1,281.7],"hipL":[22.5,36.1],"knL":[12.7,138.5],"ftL":[45.5,289.3]},{"rootY":50.3,"hips":[0,0],"chest":[-5.9,-75.7],"neck":[-5.9,-75.7],"head":[-14.9,-134.7],"shR":[-60.5,-102.9],"elR":[-104.9,5.4],"haR":[-107.4,48.8],"shL":[56.2,-100.3],"elL":[82.2,-0.6],"haL":[34.4,39.3],"hipR":[-33.8,37],"knR":[-104.9,134.3],"ftR":[-93.1,279.9],"hipL":[22.1,35.8],"knL":[11.9,137],"ftL":[44.6,287.8]},{"rootY":51.3,"hips":[0,0],"chest":[-5.5,-76.1],"neck":[-5.5,-76.1],"head":[-14.2,-136.1],"shR":[-59.9,-103.2],"elR":[-107.4,4.4],"haR":[-107.4,46.4],"shL":[56.5,-101.1],"elL":[83.3,-2.4],"haL":[34.3,36.8],"hipR":[-34,36.8],"knR":[-106.3,132.9],"ftR":[-94,278.5],"hipL":[21.8,35.2],"knL":[10.9,135.8],"ftL":[43.6,286.6]},{"rootY":52.5,"hips":[0,0],"chest":[-5.3,-76.4],"neck":[-5.3,-76.4],"head":[-13.5,-137.3],"shR":[-59.4,-103.3],"elR":[-110.2,3],"haR":[-107.6,43.5],"shL":[56.7,-101.8],"elL":[85,-4.4],"haL":[34.9,34.1],"hipR":[-34.4,36.4],"knR":[-107.7,131.1],"ftR":[-95.2,276.8],"hipL":[21.4,34.8],"knL":[9.8,134.7],"ftL":[42.5,285.4]},{"rootY":53.5,"hips":[0,0],"chest":[-5.2,-76.7],"neck":[-5.2,-76.7],"head":[-12.9,-138.5],"shR":[-59.1,-103.3],"elR":[-113.4,1.5],"haR":[-108.2,40.3],"shL":[56.8,-102.4],"elL":[87.4,-6.8],"haL":[36,31.4],"hipR":[-34.8,36],"knR":[-108.9,129.2],"ftR":[-96.5,275],"hipL":[20.9,34.4],"knL":[8.5,133.5],"ftL":[41.2,284.3]},{"rootY":54.2,"hips":[0,0],"chest":[-5.1,-76.8],"neck":[-5.1,-76.8],"head":[-12.3,-139.5],"shR":[-58.9,-103.2],"elR":[-116.2,0],"haR":[-108.7,37.2],"shL":[56.9,-103],"elL":[90.3,-9.4],"haL":[37.8,28.4],"hipR":[-35.4,35.4],"knR":[-110.1,127.7],"ftR":[-97.8,273.8],"hipL":[20.2,34],"knL":[7.2,132.4],"ftL":[40,283.2]},{"rootY":54.8,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11.5,-140.5],"shR":[-58.4,-103],"elR":[-118.5,-1.5],"haR":[-109,34.3],"shL":[57.1,-103.5],"elL":[93.6,-12.2],"haL":[40.3,25.6],"hipR":[-35.7,35],"knR":[-111.3,126.4],"ftR":[-99.3,272.6],"hipL":[20,33.4],"knL":[6,131.1],"ftL":[38.9,281.9]},{"rootY":55.6,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11,-141.3],"shR":[-58.2,-103],"elR":[-120.7,-2.9],"haR":[-109.9,31.8],"shL":[57.1,-103.7],"elL":[96.8,-14.9],"haL":[43.1,23.3],"hipR":[-36.2,34.4],"knR":[-112.4,124.6],"ftR":[-100.9,271.1],"hipL":[19.4,33.1],"knL":[4.7,129.7],"ftL":[37.6,280.4]},{"rootY":56.2,"hips":[0,0],"chest":[-4.5,-77.1],"neck":[-4.5,-77.1],"head":[-10.2,-141.9],"shR":[-57.7,-102.9],"elR":[-122.2,-4.3],"haR":[-110.4,29.7],"shL":[57.3,-104],"elL":[100.1,-17.4],"haL":[46.2,21.4],"hipR":[-36.2,34.3],"knR":[-113.6,123],"ftR":[-102.3,269.7],"hipL":[19.4,32.3],"knL":[3.9,127.7],"ftL":[36.3,278.7]},{"rootY":56.8,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-9.2,-142.5],"shR":[-57.2,-102.8],"elR":[-123.7,-5.8],"haR":[-111,27.8],"shL":[57.7,-104.1],"elL":[103.5,-19.9],"haL":[49.5,19.6],"hipR":[-35.4,35],"knR":[-115.1,121.4],"ftR":[-104.1,268.5],"hipL":[20.3,31.2],"knL":[3.1,125],"ftL":[34.8,276.2]},{"rootY":57.3,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-8.7,-142.8],"shR":[-57,-102.8],"elR":[-125.6,-7.6],"haR":[-111.9,25.9],"shL":[57.6,-104.2],"elL":[106.4,-22.4],"haL":[52.5,18.1],"hipR":[-36.8,33.5],"knR":[-116.1,119.4],"ftR":[-105.3,266.8],"hipL":[18.6,31.7],"knL":[1.9,122.5],"ftL":[34,273.6]},{"rootY":57.8,"hips":[0,0],"chest":[-3.7,-77.2],"neck":[-3.7,-77.2],"head":[-7.7,-143.2],"shR":[-56.3,-103],"elR":[-127,-9.8],"haR":[-112.4,23.8],"shL":[58,-104],"elL":[110.2,-24.9],"haL":[56.1,16.5],"hipR":[-36.9,33.2],"knR":[-117.3,117.6],"ftR":[-106.8,265.2],"hipL":[18.4,31],"knL":[1.5,119.8],"ftL":[33.2,271]},{"rootY":58.2,"hips":[0,0],"chest":[-3.6,-77.2],"neck":[-3.6,-77.2],"head":[-7,-143.4],"shR":[-56,-103.1],"elR":[-129,-12.4],"haR":[-113.3,21.2],"shL":[58,-103.8],"elL":[113.9,-27.7],"haL":[59.9,14.7],"hipR":[-37.3,32.8],"knR":[-118.6,115.5],"ftR":[-108.7,263.4],"hipL":[17.9,30.9],"knL":[0.7,116.9],"ftL":[32.6,268.2]},{"rootY":58.7,"hips":[0,0],"chest":[-3.2,-77.2],"neck":[-3.2,-77.2],"head":[-6.3,-143.6],"shR":[-55.6,-103.4],"elR":[-131.4,-15.9],"haR":[-114.6,17.9],"shL":[58.5,-103.5],"elL":[118.5,-31],"haL":[64.5,12.3],"hipR":[-37.7,32.3],"knR":[-119.6,113.6],"ftR":[-110.1,261.8],"hipL":[17.4,30.7],"knL":[0.1,114.6],"ftL":[32.2,265.9]},{"rootY":58.9,"hips":[0,0],"chest":[-2.8,-77.2],"neck":[-2.8,-77.2],"head":[-5.4,-143.6],"shR":[-55,-103.7],"elR":[-133.7,-20],"haR":[-116.1,14.1],"shL":[59,-103.2],"elL":[123.2,-34.9],"haL":[69.3,9.1],"hipR":[-37.4,32.5],"knR":[-120.7,112.2],"ftR":[-111.4,260.3],"hipL":[17.8,30],"knL":[-0.3,112.8],"ftL":[31.9,264.2]},{"rootY":59.2,"hips":[0,0],"chest":[-2.6,-77.2],"neck":[-2.6,-77.2],"head":[-4.8,-143.7],"shR":[-54.6,-103.9],"elR":[-136,-24.1],"haR":[-117.8,10.6],"shL":[59.3,-103],"elL":[127.5,-38.7],"haL":[73.9,6.4],"hipR":[-37.7,32.2],"knR":[-121.5,110.5],"ftR":[-112.4,258.9],"hipL":[17.4,30],"knL":[-1,111.4],"ftL":[31.8,262.8]},{"rootY":59.4,"hips":[0,0],"chest":[-2.4,-77.2],"neck":[-2.4,-77.2],"head":[-4.2,-143.6],"shR":[-54.3,-104.1],"elR":[-138,-28.4],"haR":[-119.2,7.2],"shL":[59.7,-102.7],"elL":[131,-42],"haL":[77.9,4.1],"hipR":[-37.9,32],"knR":[-122.2,109.3],"ftR":[-113.1,257.8],"hipL":[17.2,30],"knL":[-1.5,110.6],"ftL":[31.6,261.9]},{"rootY":59.6,"hips":[0,0],"chest":[-2.1,-77.2],"neck":[-2.1,-77.2],"head":[-3.9,-143.4],"shR":[-53.9,-104.3],"elR":[-139.5,-32.5],"haR":[-120.1,4.4],"shL":[60,-102.5],"elL":[133.9,-44.5],"haL":[81.5,2.6],"hipR":[-38,31.9],"knR":[-122.6,108.4],"ftR":[-113.5,256.9],"hipL":[17,30.1],"knL":[-2.1,110.3],"ftL":[31.4,261.5]},{"rootY":59.8,"hips":[0,0],"chest":[-1.9,-77.3],"neck":[-1.9,-77.3],"head":[-3.7,-143.3],"shR":[-53.6,-104.5],"elR":[-140.7,-35.7],"haR":[-120.5,2.9],"shL":[60.3,-102.3],"elL":[135.7,-46],"haL":[83.8,1.8],"hipR":[-38,31.8],"knR":[-122.9,107.7],"ftR":[-113.8,256.3],"hipL":[16.9,30.1],"knL":[-2.6,110.1],"ftL":[31.3,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.8,-77.3],"neck":[-1.8,-77.3],"head":[-3.4,-143],"shR":[-53.3,-104.8],"elR":[-141.3,-38],"haR":[-120.1,2.4],"shL":[60.6,-102],"elL":[136.6,-46.6],"haL":[85.1,2],"hipR":[-38.1,31.7],"knR":[-123.1,107.2],"ftR":[-113.9,255.8],"hipL":[16.8,30.1],"knL":[-2.8,110.2],"ftL":[31.1,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.7,-77.3],"neck":[-1.7,-77.3],"head":[-3.4,-142.7],"shR":[-53.2,-105],"elR":[-141.6,-39.1],"haR":[-119.3,2.7],"shL":[60.9,-101.8],"elL":[136.7,-45.8],"haL":[85.9,3.8],"hipR":[-38.2,31.6],"knR":[-123.3,106.7],"ftR":[-114.5,255.3],"hipL":[16.8,30.2],"knL":[-3.1,110.1],"ftL":[30.7,261.1]},{"rootY":60.1,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[-3.3,-142.3],"shR":[-53,-105.1],"elR":[-141.3,-38.7],"haR":[-117.8,4.3],"shL":[61.1,-101.6],"elL":[135.9,-44.3],"haL":[85.3,5.8],"hipR":[-37.4,32.4],"knR":[-123.9,106.3],"ftR":[-115,254.9],"hipL":[17.8,29.6],"knL":[-3.1,109.7],"ftL":[30.4,260.8]},{"rootY":60.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-3.7,-142],"shR":[-53.3,-105.2],"elR":[-140.9,-37.4],"haR":[-116.5,6.6],"shL":[60.6,-101.5],"elL":[133.8,-42.3],"haL":[83.7,8.4],"hipR":[-38.7,31.1],"knR":[-124.1,105.4],"ftR":[-115.4,254.1],"hipL":[16.1,30.5],"knL":[-3.7,109.8],"ftL":[30.1,260.6]},{"rootY":60.5,"hips":[0,0],"chest":[-1.6,-77.2],"neck":[-1.6,-77.2],"head":[-3.6,-141.9],"shR":[-53.1,-105.3],"elR":[-139.6,-35.4],"haR":[-114.5,9.5],"shL":[60.9,-101.3],"elL":[132.1,-39.5],"haL":[82.6,11.8],"hipR":[-38.4,31.4],"knR":[-124.4,104.6],"ftR":[-115.8,253.4],"hipL":[16.5,30.3],"knL":[-3.7,109.2],"ftL":[30.2,260.1]},{"rootY":60.5,"hips":[0,0],"chest":[-1.8,-77.2],"neck":[-1.8,-77.2],"head":[-3.7,-141.9],"shR":[-53.4,-105.4],"elR":[-138.6,-33.3],"haR":[-112.7,12.5],"shL":[60.7,-101.1],"elL":[129.9,-36.7],"haL":[80.6,15],"hipR":[-38.4,31.4],"knR":[-125,103.7],"ftR":[-116.4,252.7],"hipL":[16.4,30.2],"knL":[-3.9,109],"ftL":[30.1,259.9]},{"rootY":60.8,"hips":[0,0],"chest":[-1.9,-77.1],"neck":[-1.9,-77.1],"head":[-3.7,-141.8],"shR":[-53.8,-105.3],"elR":[-137.3,-30.8],"haR":[-110.7,15.8],"shL":[60.4,-101.1],"elL":[127.7,-34.1],"haL":[78.6,17.8],"hipR":[-38.3,31.5],"knR":[-125.5,102.9],"ftR":[-116.9,252],"hipL":[16.6,30.1],"knL":[-4.1,108.6],"ftL":[29.9,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-2,-77],"neck":[-2,-77],"head":[-4,-141.8],"shR":[-54.1,-105.2],"elR":[-135.6,-28.6],"haR":[-108,18.3],"shL":[60.2,-101],"elL":[125.6,-31.5],"haL":[76.3,20.1],"hipR":[-38,31.8],"knR":[-125.9,102.4],"ftR":[-117.5,251.7],"hipL":[17,29.9],"knL":[-4.2,108.3],"ftL":[29.8,259.3]},{"rootY":60.8,"hips":[0,0],"chest":[-2.1,-77],"neck":[-2.1,-77],"head":[-4,-141.8],"shR":[-54.5,-105.2],"elR":[-134.4,-26.9],"haR":[-106.7,20],"shL":[60.1,-101],"elL":[124.5,-29.7],"haL":[74.6,21.3],"hipR":[-37.9,31.9],"knR":[-126.3,102],"ftR":[-117.9,251.3],"hipL":[17.1,30],"knL":[-4.2,108.2],"ftL":[29.6,259.3]},{"rootY":61,"hips":[0,0],"chest":[-2.4,-76.9],"neck":[-2.4,-76.9],"head":[-4.1,-141.9],"shR":[-55,-105.1],"elR":[-133.9,-26],"haR":[-106.6,20.8],"shL":[59.8,-100.8],"elL":[123.6,-28.6],"haL":[73.6,22.2],"hipR":[-37.7,32.2],"knR":[-126.6,101.7],"ftR":[-118.3,251],"hipL":[17.3,30],"knL":[-4.2,108.2],"ftL":[29.4,259.3]},{"rootY":60.9,"hips":[0,0],"chest":[-2.7,-76.9],"neck":[-2.7,-76.9],"head":[-4,-141.9],"shR":[-55.4,-105.1],"elR":[-134.2,-25.7],"haR":[-107,21.5],"shL":[59.5,-100.7],"elL":[123,-28.1],"haL":[73.3,23.1],"hipR":[-37.8,32.2],"knR":[-126.5,101.8],"ftR":[-118.4,251.1],"hipL":[17.2,30.2],"knL":[-4.2,108.5],"ftL":[29.3,259.5]},{"rootY":60.9,"hips":[0,0],"chest":[-2.9,-76.8],"neck":[-2.9,-76.8],"head":[-3.9,-142],"shR":[-55.6,-105.2],"elR":[-134.6,-25.5],"haR":[-107.1,22.5],"shL":[59.1,-100.5],"elL":[122.6,-27.8],"haL":[73.4,23.9],"hipR":[-37.8,32.2],"knR":[-126.4,101.9],"ftR":[-118.3,251.2],"hipL":[17.1,30.6],"knL":[-4.2,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.2,-76.7],"neck":[-3.2,-76.7],"head":[-3.5,-142.3],"shR":[-55.9,-105.3],"elR":[-135.4,-25.9],"haR":[-107.6,22.9],"shL":[58.9,-100.1],"elL":[122.6,-27.6],"haL":[73.7,24.3],"hipR":[-37.7,32.3],"knR":[-126.2,102],"ftR":[-118.2,251.2],"hipL":[17.3,30.7],"knL":[-4.1,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.3,-76.6],"neck":[-3.3,-76.6],"head":[-3.2,-142.5],"shR":[-56.2,-105.4],"elR":[-136.3,-26.3],"haR":[-108,23.1],"shL":[58.7,-99.7],"elL":[122.4,-27.3],"haL":[73.7,25],"hipR":[-37.7,32.3],"knR":[-126.1,102],"ftR":[-117.9,251.2],"hipL":[17.3,30.8],"knL":[-4,108.7],"ftL":[29.4,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.4,-76.6],"neck":[-3.4,-76.6],"head":[-3,-142.7],"shR":[-56.2,-105.4],"elR":[-137,-26.7],"haR":[-108.1,23.1],"shL":[58.4,-99.6],"elL":[122.3,-27.4],"haL":[73.7,25.1],"hipR":[-37.7,32.4],"knR":[-125.9,102],"ftR":[-117.6,251],"hipL":[17.3,31],"knL":[-4,108.7],"ftL":[29.6,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-3.5,-76.5],"neck":[-3.5,-76.5],"head":[-2.8,-143],"shR":[-56.4,-105.5],"elR":[-137.7,-27],"haR":[-108.3,23.2],"shL":[58.3,-99.3],"elL":[122.1,-27],"haL":[73.7,25.6],"hipR":[-37.5,32.7],"knR":[-125.8,102.2],"ftR":[-117.4,251.1],"hipL":[17.6,31],"knL":[-3.9,108.7],"ftL":[29.8,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.5],"neck":[-3.6,-76.5],"head":[-3.1,-143.1],"shR":[-56.6,-105.4],"elR":[-138.5,-27.4],"haR":[-108.6,23.3],"shL":[58.3,-99.2],"elL":[122,-27],"haL":[73.8,25.7],"hipR":[-37.6,32.5],"knR":[-125.6,102.2],"ftR":[-117.3,251],"hipL":[17.5,31.3],"knL":[-3.9,108.8],"ftL":[30,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.7,-76.4],"neck":[-3.7,-76.4],"head":[-3.5,-143.3],"shR":[-56.9,-105.4],"elR":[-139.1,-27.6],"haR":[-108.9,23.5],"shL":[58.3,-98.9],"elL":[122,-26.6],"haL":[73.9,26.3],"hipR":[-37.6,32.6],"knR":[-125.4,102.3],"ftR":[-117.2,250.9],"hipL":[17.5,31.4],"knL":[-3.9,109],"ftL":[30.3,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.3],"neck":[-3.6,-76.3],"head":[-3.8,-143.4],"shR":[-57,-105.2],"elR":[-139.6,-27.7],"haR":[-109,23.6],"shL":[58.4,-99.1],"elL":[122.1,-26.7],"haL":[74.1,26.3],"hipR":[-37.4,32.7],"knR":[-125.1,102.5],"ftR":[-117,250.9],"hipL":[17.7,31.3],"knL":[-3.9,109],"ftL":[30.5,259.5]},{"rootY":60.6,"hips":[0,0],"chest":[-3.8,-76.3],"neck":[-3.8,-76.3],"head":[-5,-143.5],"shR":[-57.2,-105],"elR":[-140,-27.8],"haR":[-109.1,23.6],"shL":[58.1,-99.3],"elL":[122.2,-27],"haL":[74.2,26.1],"hipR":[-37.5,32.7],"knR":[-124.8,102.6],"ftR":[-116.9,251],"hipL":[17.7,31.6],"knL":[-4.1,108.9],"ftL":[30.4,259.4]},{"rootY":60.5,"hips":[0,0],"chest":[-4,-76.2],"neck":[-4,-76.2],"head":[-6,-143.6],"shR":[-57.7,-104.7],"elR":[-140.6,-27.8],"haR":[-109.4,23.8],"shL":[58,-99.5],"elL":[122.3,-27.1],"haL":[74.4,25.9],"hipR":[-37.6,32.6],"knR":[-124.6,102.8],"ftR":[-117,251.2],"hipL":[17.6,31.7],"knL":[-4.2,109.1],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.1,-76.2],"neck":[-4.1,-76.2],"head":[-7.3,-143.5],"shR":[-58.1,-104.3],"elR":[-141,-27.7],"haR":[-109.5,23.8],"shL":[57.8,-99.7],"elL":[122.4,-27.2],"haL":[74.4,25.9],"hipR":[-37.4,32.8],"knR":[-124.6,102.8],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.4,109.1],"ftL":[30.3,259.6]},{"rootY":60.5,"hips":[0,0],"chest":[-4.3,-76.1],"neck":[-4.3,-76.1],"head":[-8.5,-143.5],"shR":[-58.6,-104],"elR":[-141.3,-27.5],"haR":[-109.5,23.8],"shL":[57.7,-99.9],"elL":[122.6,-27.3],"haL":[74.6,25.7],"hipR":[-37.4,32.8],"knR":[-124.6,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.6],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.4,-76],"neck":[-4.4,-76],"head":[-9.6,-143.4],"shR":[-58.9,-103.7],"elR":[-141.4,-27.3],"haR":[-109.5,23.9],"shL":[57.6,-100],"elL":[122.8,-27.4],"haL":[74.7,25.5],"hipR":[-37.5,32.7],"knR":[-124.5,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.4,-75.9],"neck":[-4.4,-75.9],"head":[-10.1,-143.3],"shR":[-59,-103.3],"elR":[-141.2,-27],"haR":[-109.2,24.1],"shL":[57.4,-100.3],"elL":[123,-27.6],"haL":[74.9,25.4],"hipR":[-37.4,32.8],"knR":[-124.4,102.8],"ftR":[-117,251.1],"hipL":[17.8,31.7],"knL":[-4.3,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.6,-75.9],"neck":[-4.6,-75.9],"head":[-10.4,-143.3],"shR":[-59.4,-103.1],"elR":[-141.3,-26.9],"haR":[-109.3,24.2],"shL":[57.1,-100.3],"elL":[123.3,-27.6],"haL":[75.2,25.3],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.6],"knL":[-4.2,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-103],"elR":[-141.3,-26.6],"haR":[-109.1,24.1],"shL":[56.8,-100.3],"elL":[123.5,-27.5],"haL":[75.2,25.2],"hipR":[-37.3,32.9],"knR":[-124.4,102.9],"ftR":[-117.1,251.2],"hipL":[18,31.7],"knL":[-4.1,108.9],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-102.9],"elR":[-141,-26.5],"haR":[-108.9,24.1],"shL":[56.6,-100.3],"elL":[123.9,-27.6],"haL":[75.5,25.1],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.7],"knL":[-3.7,109],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.9,-75.8],"neck":[-4.9,-75.8],"head":[-11,-143.2],"shR":[-59.7,-102.9],"elR":[-140.6,-26.3],"haR":[-108.8,24.2],"shL":[56.4,-100.3],"elL":[123.9,-27.5],"haL":[75.5,25.1],"hipR":[-37.2,33],"knR":[-124.2,103],"ftR":[-116.9,251.3],"hipL":[18.2,31.6],"knL":[-3.6,108.9],"ftL":[30.5,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.2],"shR":[-59.7,-102.9],"elR":[-140.1,-26],"haR":[-108.6,24.4],"shL":[56.3,-100.3],"elL":[124.1,-27.5],"haL":[75.6,25.1],"hipR":[-37.1,33.2],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.3,31.6],"knL":[-3.4,109],"ftL":[30.4,259.7]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.3],"shR":[-59.7,-102.9],"elR":[-139.8,-25.9],"haR":[-108.4,24.3],"shL":[56.2,-100.3],"elL":[124.2,-27.5],"haL":[75.7,25],"hipR":[-37,33.3],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.5,31.6],"knL":[-3.4,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.8],"neck":[-5.1,-75.8],"head":[-10.7,-143.3],"shR":[-59.6,-103],"elR":[-139.3,-25.7],"haR":[-108.1,24.3],"shL":[56.2,-100.3],"elL":[124.3,-27.5],"haL":[75.7,24.8],"hipR":[-36.8,33.4],"knR":[-124.2,103.1],"ftR":[-116.8,251.3],"hipL":[18.6,31.5],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.9],"neck":[-5,-75.9],"head":[-10.5,-143.3],"shR":[-59.6,-103],"elR":[-138.8,-25.5],"haR":[-107.9,24.3],"shL":[56.2,-100.4],"elL":[124.4,-27.7],"haL":[75.7,24.7],"hipR":[-36.6,33.6],"knR":[-124.3,103.2],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.9],"neck":[-5.1,-75.9],"head":[-10.5,-143.4],"shR":[-59.6,-103.1],"elR":[-138.5,-25.5],"haR":[-107.8,24.1],"shL":[56.1,-100.4],"elL":[124.5,-27.6],"haL":[75.8,24.7],"hipR":[-36.6,33.6],"knR":[-124.4,103.3],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.4,109],"ftL":[30.6,259.7]}]},"twist":{"name":"twist","fps":30,"height":520,"groundY":329,"frameCount":143,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.8,-85.6],"neck":[0.8,-85.6],"head":[0.6,-164.3],"shR":[-68.1,-121.8],"elR":[-162.5,-108.5],"haR":[-233.5,-98.5],"shL":[76,-117],"elL":[171.2,-103.7],"haL":[243.5,-93.5],"hipR":[-69.8,34.9],"knR":[-67.3,174.6],"ftR":[-64.7,326.9],"hipL":[69.7,34.9],"knL":[67.4,172],"ftL":[64.6,329.1]},{"rootY":0,"hips":[0,0],"chest":[-14.9,-83.9],"neck":[-14.9,-83.9],"head":[6.3,-160],"shR":[27.6,-120.5],"elR":[55.4,-30.2],"haR":[35.4,33.1],"shL":[-54.3,-114.3],"elL":[-56.3,-20],"haL":[-97.2,40],"hipR":[25.3,40.9],"knR":[34.5,180.2],"ftR":[61.5,330.1],"hipL":[-66.6,39.1],"knL":[-29.8,171.1],"ftL":[10.8,322.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-14.9,-83.7],"neck":[-14.9,-83.7],"head":[6.1,-160.1],"shR":[27.4,-120.3],"elR":[52.7,-29.7],"haR":[26.4,31.4],"shL":[-54.4,-114.1],"elL":[-52.1,-20.4],"haL":[-89.8,42.1],"hipR":[27.6,40.6],"knR":[34.8,179.9],"ftR":[61.2,330],"hipL":[-67.3,39.6],"knL":[-30.3,171.5],"ftL":[10.9,322.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-14.8,-83.5],"neck":[-14.8,-83.5],"head":[6,-159.9],"shR":[27.5,-119.8],"elR":[50.1,-28.8],"haR":[19.7,30.9],"shL":[-54.1,-114.4],"elL":[-49.5,-21.4],"haL":[-82.8,43.3],"hipR":[29.2,40.7],"knR":[35.3,180],"ftR":[61.1,330.2],"hipL":[-68.1,39.6],"knL":[-30.5,171.4],"ftL":[11.9,322.3]},{"rootY":-0.3,"hips":[0,0],"chest":[-14.6,-83.5],"neck":[-14.6,-83.5],"head":[5.9,-159.9],"shR":[28.2,-119.1],"elR":[48.7,-27.9],"haR":[15.8,30.9],"shL":[-54.1,-115],"elL":[-48.5,-22.3],"haL":[-76.6,43.9],"hipR":[29.9,40.9],"knR":[35.9,180.2],"ftR":[61.3,330.4],"hipL":[-68.4,39.4],"knL":[-30.4,171.1],"ftL":[12.8,321.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-14.9,-83.3],"neck":[-14.9,-83.3],"head":[5.3,-159.8],"shR":[28.8,-118.1],"elR":[48.7,-26.7],"haR":[15.1,31.9],"shL":[-54.7,-115.8],"elL":[-49,-23.3],"haL":[-74.3,43.5],"hipR":[29.7,40.7],"knR":[35.8,180.1],"ftR":[60.6,330.4],"hipL":[-68.1,39.7],"knL":[-30.9,171.6],"ftL":[11,322.7]},{"rootY":-1.1,"hips":[0,0],"chest":[-15.1,-83.5],"neck":[-15.1,-83.5],"head":[3.2,-160.7],"shR":[31.7,-115.2],"elR":[52.9,-23.9],"haR":[20.4,35.5],"shL":[-56.9,-119.2],"elL":[-50.4,-26.4],"haL":[-76.2,40.4],"hipR":[28.8,40.6],"knR":[35.8,180],"ftR":[60.5,330.4],"hipL":[-67.6,39.9],"knL":[-30.3,171.8],"ftL":[11.7,322.8]},{"rootY":-1.5,"hips":[0,0],"chest":[-15.6,-83.5],"neck":[-15.6,-83.5],"head":[-0.2,-160.9],"shR":[33.3,-113.3],"elR":[56.5,-22.4],"haR":[27.7,39.3],"shL":[-58.6,-121.1],"elL":[-52.2,-28],"haL":[-81.7,38.2],"hipR":[27.5,40.3],"knR":[35.7,179.8],"ftR":[60.1,330.1],"hipL":[-66.9,40.1],"knL":[-30,172.1],"ftL":[11.5,323.3]},{"rootY":-2,"hips":[0,0],"chest":[-15.7,-83.6],"neck":[-15.7,-83.6],"head":[-1.8,-161],"shR":[34.6,-112.6],"elR":[58.6,-21.7],"haR":[35.5,42.7],"shL":[-59.3,-122.1],"elL":[-53.6,-28.5],"haL":[-87.6,36.1],"hipR":[26.3,39.9],"knR":[36.1,179.2],"ftR":[59.7,329.6],"hipL":[-66.2,40.4],"knL":[-30.1,172.6],"ftL":[10.1,324.1]},{"rootY":-2,"hips":[0,0],"chest":[-15.6,-83.8],"neck":[-15.6,-83.8],"head":[-2,-160.8],"shR":[34.8,-112.7],"elR":[59.6,-21.8],"haR":[42.1,44.5],"shL":[-59,-122.3],"elL":[-55.4,-28],"haL":[-92.5,34.7],"hipR":[25.2,39.3],"knR":[37,178.5],"ftR":[59.4,329],"hipL":[-65.8,40.5],"knL":[-29.9,172.8],"ftL":[9.9,324.5]},{"rootY":-2.1,"hips":[0,0],"chest":[-15.9,-83.9],"neck":[-15.9,-83.9],"head":[-2.7,-160.6],"shR":[34.8,-112.7],"elR":[60.6,-21.9],"haR":[46.8,45.2],"shL":[-59.1,-122.2],"elL":[-57.9,-27.4],"haL":[-96.5,33.9],"hipR":[24.5,38.7],"knR":[37,177.8],"ftR":[58.8,328.4],"hipL":[-65.6,40.7],"knL":[-30.5,173.1],"ftL":[8.3,325.1]},{"rootY":-2.2,"hips":[0,0],"chest":[-15.6,-84.1],"neck":[-15.6,-84.1],"head":[-2.3,-160.6],"shR":[35.2,-113.6],"elR":[62.3,-23],"haR":[49.3,44],"shL":[-58.8,-121.7],"elL":[-59.1,-26.5],"haL":[-98.4,33.7],"hipR":[24,38.2],"knR":[37.1,177.1],"ftR":[58.5,327.7],"hipL":[-65.6,40.7],"knL":[-30,173],"ftL":[9.3,325]},{"rootY":-2,"hips":[0,0],"chest":[-15.3,-84.2],"neck":[-15.3,-84.2],"head":[-1.6,-160.5],"shR":[35.3,-114.6],"elR":[63.2,-24.3],"haR":[49.4,42.1],"shL":[-58.6,-120.7],"elL":[-59.1,-25.6],"haL":[-98.3,34.6],"hipR":[23.9,37.5],"knR":[36.4,176.4],"ftR":[57.8,326.9],"hipL":[-65.6,41.1],"knL":[-29.9,173.4],"ftL":[9.7,325.3]},{"rootY":-1.9,"hips":[0,0],"chest":[-15.2,-84.2],"neck":[-15.2,-84.2],"head":[-1.4,-160.6],"shR":[35.4,-115.5],"elR":[63.2,-25.1],"haR":[48.4,40.3],"shL":[-58.4,-119.9],"elL":[-58.6,-24.9],"haL":[-96.8,36.1],"hipR":[24.5,37.4],"knR":[35.5,176.5],"ftR":[57.3,326.9],"hipL":[-65.9,41.1],"knL":[-30.4,173.3],"ftL":[9.4,325.3]},{"rootY":-1.8,"hips":[0,0],"chest":[-14.8,-84.3],"neck":[-14.8,-84.3],"head":[-1.3,-160.6],"shR":[35.5,-116.3],"elR":[62.5,-25.8],"haR":[47,39],"shL":[-58.2,-119.1],"elL":[-57.6,-24],"haL":[-94.7,38.2],"hipR":[25.3,37.4],"knR":[34.8,176.6],"ftR":[56.7,327],"hipL":[-66.4,41],"knL":[-30.6,173.1],"ftL":[9.7,324.9]},{"rootY":-1.6,"hips":[0,0],"chest":[-14.7,-84.3],"neck":[-14.7,-84.3],"head":[-1.3,-160.6],"shR":[35.3,-117],"elR":[62,-26.5],"haR":[45.1,37.8],"shL":[-58.1,-118.5],"elL":[-56.9,-23.5],"haL":[-92,40.3],"hipR":[25.9,37.7],"knR":[34.7,177],"ftR":[56.1,327.4],"hipL":[-66.8,40.7],"knL":[-30.7,172.6],"ftL":[10.2,324.3]},{"rootY":-1.5,"hips":[0,0],"chest":[-14.3,-84.3],"neck":[-14.3,-84.3],"head":[-1.4,-160.7],"shR":[35.3,-117.6],"elR":[62.2,-27.2],"haR":[43.7,36.6],"shL":[-57.9,-117.9],"elL":[-54,-23.3],"haL":[-88.4,41],"hipR":[26.8,37.8],"knR":[33.8,177.2],"ftR":[55.6,327.4],"hipL":[-67.1,40.8],"knL":[-31.3,172.8],"ftL":[9.4,324.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-13.8,-84.2],"neck":[-13.8,-84.2],"head":[-1.3,-160.5],"shR":[35.1,-118.1],"elR":[62.7,-27.9],"haR":[42.4,35.5],"shL":[-57.5,-117.3],"elL":[-48.6,-23.6],"haL":[-85,39.6],"hipR":[27.9,38],"knR":[32.3,177.6],"ftR":[55.3,327.6],"hipL":[-67.5,40.8],"knL":[-31.8,172.7],"ftL":[8.8,324.5]},{"rootY":-0.8,"hips":[0,0],"chest":[-12.8,-84.2],"neck":[-12.8,-84.2],"head":[-0.5,-160.4],"shR":[35.3,-118.2],"elR":[63.7,-28.4],"haR":[41,34.1],"shL":[-56.2,-117.2],"elL":[-42.5,-24.6],"haL":[-80.7,37.6],"hipR":[29.6,38.9],"knR":[30.7,178.6],"ftR":[55.9,328.1],"hipL":[-68.6,40],"knL":[-33.1,172],"ftL":[7.3,323.8]},{"rootY":-0.2,"hips":[0,0],"chest":[-11.7,-84],"neck":[-11.7,-84],"head":[0.4,-160.2],"shR":[35.4,-118.3],"elR":[66,-29.6],"haR":[37.3,29.9],"shL":[-54.7,-116.9],"elL":[-34.5,-26.4],"haL":[-72.1,34.7],"hipR":[32.3,41],"knR":[28.4,180.4],"ftR":[57.2,329.1],"hipL":[-70.5,38.4],"knL":[-36.7,171],"ftL":[1.3,323.4]},{"rootY":0.9,"hips":[0,0],"chest":[-11.1,-83.4],"neck":[-11.1,-83.4],"head":[1.3,-159.2],"shR":[33.6,-119.3],"elR":[66.5,-31.9],"haR":[32.1,23],"shL":[-53.2,-114.8],"elL":[-28.8,-26.5],"haL":[-63.6,29.9],"hipR":[34.1,43.4],"knR":[25.3,182.2],"ftR":[56.8,329.9],"hipL":[-72.5,36],"knL":[-45,170.2],"ftL":[-12.5,323.6]},{"rootY":0.9,"hips":[0,0],"chest":[-13.7,-83.4],"neck":[-13.7,-83.4],"head":[0.1,-159.3],"shR":[30.8,-117.8],"elR":[74.5,-34.7],"haR":[44.5,17],"shL":[-54.9,-116.4],"elL":[-33.5,-27.9],"haL":[-76.2,18.8],"hipR":[30.5,43.6],"knR":[19.8,182.5],"ftR":[54.3,328.8],"hipL":[-71.8,35],"knL":[-55.2,171],"ftL":[-23.6,323.8]},{"rootY":0.2,"hips":[0,0],"chest":[-19.9,-83.3],"neck":[-19.9,-83.3],"head":[-3.9,-160],"shR":[25.3,-114.2],"elR":[84.5,-40],"haR":[72.1,12.5],"shL":[-60.2,-119.8],"elL":[-55.1,-27.9],"haL":[-117.4,2.8],"hipR":[16.1,38.4],"knR":[6.8,177.8],"ftR":[51.8,320.7],"hipL":[-61.5,40.6],"knL":[-70.6,176.6],"ftL":[-36.5,327.8]},{"rootY":2,"hips":[0,0],"chest":[-25.9,-81.8],"neck":[-25.9,-81.8],"head":[-10.6,-160],"shR":[20.2,-110.5],"elR":[89.3,-44.8],"haR":[102.4,9],"shL":[-65.5,-120.6],"elL":[-89.7,-28.7],"haL":[-162.3,-20.2],"hipR":[-5.5,31.1],"knR":[-9,170.5],"ftR":[55.8,307.3],"hipL":[-45.3,47.2],"knL":[-81.8,178.4],"ftL":[-43.9,330]},{"rootY":6.9,"hips":[0,0],"chest":[-29.4,-79.9],"neck":[-29.4,-79.9],"head":[-13.8,-158.5],"shR":[16.4,-108],"elR":[90.5,-48.3],"haR":[124.3,2.8],"shL":[-68.9,-119.3],"elL":[-120.3,-38.5],"haL":[-190.3,-48.1],"hipR":[-19.2,27.4],"knR":[-14.7,166.5],"ftR":[56.9,300.7],"hipL":[-32.3,51.9],"knL":[-86.3,177.6],"ftL":[-48.1,330]},{"rootY":12.9,"hips":[0,0],"chest":[-31.6,-78.6],"neck":[-31.6,-78.6],"head":[-13.4,-156.7],"shR":[13.2,-108.4],"elR":[89.2,-50.9],"haR":[126.5,-4.3],"shL":[-71.3,-116.5],"elL":[-130.2,-45.2],"haL":[-195,-61.6],"hipR":[-20.6,23.7],"knR":[-11.2,162.3],"ftR":[56.3,298.5],"hipL":[-28.2,56.6],"knL":[-90.9,178.3],"ftL":[-51.7,330.4]},{"rootY":14.3,"hips":[0,0],"chest":[-33,-78.8],"neck":[-33,-78.8],"head":[-15.6,-157],"shR":[12.4,-109.5],"elR":[85.5,-50],"haR":[104.2,-7.3],"shL":[-74.8,-115.7],"elL":[-126.1,-37.4],"haL":[-189.9,-52.6],"hipR":[-8,22.9],"knR":[-11.6,162.2],"ftR":[55.7,298.1],"hipL":[-36.3,57.3],"knL":[-98.5,178.4],"ftL":[-51.8,327.4]},{"rootY":13.6,"hips":[0,0],"chest":[-31.1,-79.8],"neck":[-31.1,-79.8],"head":[-15.3,-158.4],"shR":[13.7,-113.3],"elR":[71.2,-48.1],"haR":[57.8,-15.4],"shL":[-75.4,-114],"elL":[-114.2,-26.1],"haL":[-185.3,-34.2],"hipR":[14.6,28.9],"knR":[-11.1,165.9],"ftR":[54.3,301.1],"hipL":[-51.9,52.3],"knL":[-96.4,176.4],"ftL":[-50,318]},{"rootY":17,"hips":[0,0],"chest":[-23.4,-80],"neck":[-23.4,-80],"head":[-9.9,-158.9],"shR":[18.5,-119.8],"elR":[49.1,-51.8],"haR":[8.2,-33.1],"shL":[-69.2,-107.3],"elL":[-88,-16.2],"haL":[-159.6,-19.3],"hipR":[37.3,38.8],"knR":[7.6,170.5],"ftR":[53,308],"hipL":[-68.3,43.3],"knL":[-82.3,171.9],"ftL":[-54.8,301.3]},{"rootY":24.4,"hips":[0,0],"chest":[-16.1,-78.6],"neck":[-16.1,-78.6],"head":[-6,-157.9],"shR":[23.1,-122.3],"elR":[30.2,-58.2],"haR":[-25.3,-52.4],"shL":[-62.3,-101.4],"elL":[-62.6,-14.4],"haL":[-124,-13.3],"hipR":[49.8,46.2],"knR":[28,175.2],"ftR":[48.6,318.7],"hipL":[-76.2,36.3],"knL":[-70.2,169],"ftL":[-47.4,294.2]},{"rootY":32.1,"hips":[0,0],"chest":[-14.6,-77.2],"neck":[-14.6,-77.2],"head":[-5.4,-156.6],"shR":[24,-120],"elR":[22.5,-59.5],"haR":[-36.8,-61.4],"shL":[-61.4,-101],"elL":[-51.1,-19.2],"haL":[-103.7,-18.1],"hipR":[52.5,46.5],"knR":[33.3,170.3],"ftR":[52.5,312.9],"hipL":[-77,35.5],"knL":[-68.9,168],"ftL":[-41.8,290.8]},{"rootY":38.6,"hips":[0,0],"chest":[-19.6,-78],"neck":[-19.6,-78],"head":[-9.1,-157.6],"shR":[18.9,-119.7],"elR":[32.4,-55.6],"haR":[-21.2,-56.4],"shL":[-66.4,-103.2],"elL":[-65.2,-19.2],"haL":[-122.7,-26.1],"hipR":[47.4,43.6],"knR":[21.2,166.4],"ftR":[53.1,304.2],"hipL":[-73.8,39.4],"knL":[-76.4,167.9],"ftL":[-41.8,289.4]},{"rootY":40,"hips":[0,0],"chest":[-30.7,-77.5],"neck":[-30.7,-77.5],"head":[-19.2,-157],"shR":[7.5,-118.6],"elR":[49,-51.4],"haR":[10.8,-46.3],"shL":[-77.6,-103.2],"elL":[-99,-17.2],"haL":[-165.6,-31.8],"hipR":[35.1,34.9],"knR":[-6.1,161.2],"ftR":[55.6,290.2],"hipL":[-63.9,47.9],"knL":[-92.7,169.4],"ftL":[-41.9,294]},{"rootY":40.5,"hips":[0,0],"chest":[-41.6,-74.5],"neck":[-41.6,-74.5],"head":[-30.6,-153.9],"shR":[-0.9,-112.3],"elR":[64.3,-48.3],"haR":[49.3,-37.3],"shL":[-90.8,-104],"elL":[-134.4,-20.4],"haL":[-204.4,-41.1],"hipR":[16.9,23],"knR":[-26.7,154.5],"ftR":[60.3,275.2],"hipL":[-49.5,57.6],"knL":[-106.9,170.1],"ftL":[-45.2,301.9]},{"rootY":44,"hips":[0,0],"chest":[-48.2,-70.7],"neck":[-48.2,-70.7],"head":[-37.6,-150],"shR":[-7.1,-107.4],"elR":[69.8,-51.2],"haR":[79.9,-32.7],"shL":[-99,-101.3],"elL":[-154.3,-22.6],"haL":[-222.2,-45.1],"hipR":[0.4,18.6],"knR":[-33.1,154.1],"ftR":[63,270.3],"hipL":[-36,62.5],"knL":[-114.4,164.8],"ftL":[-53.3,302.2]},{"rootY":48.6,"hips":[0,0],"chest":[-50.7,-69.1],"neck":[-50.7,-69.1],"head":[-41.6,-148.8],"shR":[-13.7,-109.1],"elR":[66.3,-57.2],"haR":[85.7,-35.5],"shL":[-100.7,-95.8],"elL":[-156.4,-17.9],"haL":[-222,-37.4],"hipR":[-0.9,23.1],"knR":[-34.1,158.6],"ftR":[56.7,276.2],"hipL":[-32.6,61.2],"knL":[-116.7,158.4],"ftL":[-56.7,297.1]},{"rootY":51,"hips":[0,0],"chest":[-50.2,-69.3],"neck":[-50.2,-69.3],"head":[-43.9,-149.3],"shR":[-15.8,-111.9],"elR":[60,-57.4],"haR":[63.9,-44.4],"shL":[-99.7,-92.7],"elL":[-145.6,-8.2],"haL":[-214.6,-22.2],"hipR":[13.3,31.7],"knR":[-36.4,160.8],"ftR":[41.3,281.6],"hipL":[-42,55.6],"knL":[-113.7,156.7],"ftL":[-55.3,292.6]},{"rootY":51.1,"hips":[0,0],"chest":[-46.5,-69.7],"neck":[-46.5,-69.7],"head":[-43.3,-150.1],"shR":[-16.9,-116.8],"elR":[43.1,-58.1],"haR":[22.9,-54.7],"shL":[-94.4,-87.4],"elL":[-126.1,1.5],"haL":[-198.6,-6.9],"hipR":[28.9,40.5],"knR":[-26.2,162],"ftR":[21.6,291.4],"hipL":[-58.2,46.9],"knL":[-99.5,157.7],"ftL":[-55.8,284.5]},{"rootY":51.2,"hips":[0,0],"chest":[-39.6,-69.7],"neck":[-39.6,-69.7],"head":[-39.5,-150.1],"shR":[-13.9,-120],"elR":[21.8,-61.7],"haR":[-17.3,-64.7],"shL":[-87.1,-82.8],"elL":[-94.5,5.3],"haL":[-163,4.7],"hipR":[42.8,44],"knR":[-7.1,160],"ftR":[20.5,295.3],"hipL":[-69.7,42],"knL":[-85.1,159.1],"ftL":[-60.4,273.1]},{"rootY":50.3,"hips":[0,0],"chest":[-34.5,-70.1],"neck":[-34.5,-70.1],"head":[-36.4,-150.3],"shR":[-9.7,-120.7],"elR":[12.5,-67.8],"haR":[-36.1,-72.5],"shL":[-82.1,-82.5],"elL":[-71.1,0.8],"haL":[-129.9,5.6],"hipR":[51.3,42.4],"knR":[8.6,159.1],"ftR":[26.1,296.5],"hipL":[-72.5,42.4],"knL":[-77.2,164.8],"ftL":[-59.9,275]},{"rootY":46.4,"hips":[0,0],"chest":[-35.4,-71.5],"neck":[-35.4,-71.5],"head":[-37,-151.7],"shR":[-10.2,-121.9],"elR":[17.3,-70.8],"haR":[-29.5,-76.3],"shL":[-82.7,-84.3],"elL":[-75.3,0],"haL":[-131.5,-4.5],"hipR":[50.2,41.2],"knR":[10.4,160.3],"ftR":[28.3,297.1],"hipL":[-71.7,43.3],"knL":[-77.7,168.3],"ftL":[-59.3,283.6]},{"rootY":37.3,"hips":[0,0],"chest":[-39.9,-73.1],"neck":[-39.9,-73.1],"head":[-39.7,-153.5],"shR":[-14.4,-123.6],"elR":[34.2,-70.7],"haR":[1,-77.5],"shL":[-85.6,-86.2],"elL":[-100,0.6],"haL":[-161.7,-16.5],"hipR":[41.9,36.5],"knR":[1.2,162.6],"ftR":[35.2,297.6],"hipL":[-65.7,47.9],"knL":[-86.4,172.7],"ftL":[-65.5,296.8]},{"rootY":23.9,"hips":[0,0],"chest":[-45.9,-72.5],"neck":[-45.9,-72.5],"head":[-43.6,-152.8],"shR":[-16.7,-122.1],"elR":[52.2,-70.7],"haR":[40.1,-81.4],"shL":[-93,-87.2],"elL":[-131.2,-3.3],"haL":[-196.4,-31.2],"hipR":[27.5,24.9],"knR":[-7.7,159.1],"ftR":[38.1,294.2],"hipL":[-52.9,57.5],"knL":[-102.6,180.2],"ftL":[-79.4,317.8]},{"rootY":12.2,"hips":[0,0],"chest":[-48.5,-70],"neck":[-48.5,-70],"head":[-42.8,-150],"shR":[-10.8,-117],"elR":[67.3,-70.3],"haR":[76.3,-88.5],"shL":[-99.7,-88.5],"elL":[-155.8,-11.6],"haL":[-218.9,-48.4],"hipR":[7.6,14.3],"knR":[0.5,153.8],"ftR":[45.8,293.2],"hipL":[-39.5,64.8],"knL":[-103.2,185.8],"ftL":[-86.7,333.8]},{"rootY":7.2,"hips":[0,0],"chest":[-47.8,-69.4],"neck":[-47.8,-69.4],"head":[-39.5,-149.1],"shR":[-7.5,-115.8],"elR":[75.1,-76],"haR":[94.4,-106.4],"shL":[-97.9,-88.7],"elL":[-163.7,-18.7],"haL":[-223.2,-60.3],"hipR":[-4.5,12.5],"knR":[6.6,151.6],"ftR":[53.4,294.6],"hipL":[-30.1,67.3],"knL":[-89.3,190.9],"ftL":[-85.6,342.7]},{"rootY":9,"hips":[0,0],"chest":[-43.9,-72.2],"neck":[-43.9,-72.2],"head":[-34.6,-151.9],"shR":[-4.8,-120.2],"elR":[77.4,-88.1],"haR":[90.5,-133.9],"shL":[-91.6,-89.4],"elL":[-153.9,-16.8],"haL":[-211.4,-61.2],"hipR":[-0.3,16.1],"knR":[15.7,154.5],"ftR":[54.9,300.2],"hipL":[-32.6,65.3],"knL":[-92.8,188.4],"ftL":[-84.3,339.9]},{"rootY":8.1,"hips":[0,0],"chest":[-39.4,-75.8],"neck":[-39.4,-75.8],"head":[-29.7,-155.4],"shR":[-0.5,-124.6],"elR":[73.9,-100.7],"haR":[67.1,-157.3],"shL":[-86.8,-91.9],"elL":[-137.2,-10.2],"haL":[-195.4,-54.3],"hipR":[14.4,16.9],"knR":[26.4,155.7],"ftR":[56.5,303.6],"hipL":[-44,62.8],"knL":[-96.5,189.3],"ftL":[-81,339.2]},{"rootY":2.5,"hips":[0,0],"chest":[-31.6,-79.9],"neck":[-31.6,-79.9],"head":[-22.7,-159.4],"shR":[5.8,-132.6],"elR":[65.3,-114.3],"haR":[38.1,-172.5],"shL":[-79.4,-90.7],"elL":[-106.2,-1.6],"haL":[-165.3,-41.3],"hipR":[34.8,28],"knR":[29.3,167.5],"ftR":[62.6,314.2],"hipL":[-60.7,53],"knL":[-84.3,188],"ftL":[-67.8,337.5]},{"rootY":-3.2,"hips":[0,0],"chest":[-22.2,-82.3],"neck":[-22.2,-82.3],"head":[-15.1,-161.3],"shR":[14,-138.3],"elR":[54.2,-125.8],"haR":[14.7,-182.5],"shL":[-70.4,-88],"elL":[-70.4,1.7],"haL":[-125.6,-31.7],"hipR":[47.2,37.8],"knR":[36.1,175.7],"ftR":[66.6,322.3],"hipL":[-72.8,42],"knL":[-70.9,179],"ftL":[-58,324]},{"rootY":-3.7,"hips":[0,0],"chest":[-15.2,-83.3],"neck":[-15.2,-83.3],"head":[-8.4,-161.8],"shR":[22.9,-139.1],"elR":[51.3,-132.9],"haR":[4.6,-186.2],"shL":[-65.5,-89.3],"elL":[-53.2,-2.5],"haL":[-101.9,-32.3],"hipR":[53.5,40.2],"knR":[43.6,177.9],"ftR":[62.4,326.4],"hipL":[-75.5,38.6],"knL":[-67.7,174.6],"ftL":[-60.7,318.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-12.7,-83.8],"neck":[-12.7,-83.8],"head":[-4,-162],"shR":[28.8,-136.8],"elR":[60.9,-131.9],"haR":[11.4,-182.5],"shL":[-64.2,-93.8],"elL":[-67.2,-7.4],"haL":[-116,-47.5],"hipR":[53,41.5],"knR":[48.8,178.9],"ftR":[69.7,328.1],"hipL":[-76.2,37.2],"knL":[-66.1,172.2],"ftL":[-54.3,320.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-4.5,-161.9],"shR":[28.9,-133.5],"elR":[77.2,-119],"haR":[33,-171.9],"shL":[-68.9,-98.3],"elL":[-100.8,-16.5],"haL":[-148.9,-67.8],"hipR":[45.8,34.9],"knR":[49.7,173.8],"ftR":[74.2,323.1],"hipL":[-72.4,42.6],"knL":[-68.3,179.5],"ftL":[-52.7,329.5]},{"rootY":-3.7,"hips":[0,0],"chest":[-24.5,-82.4],"neck":[-24.5,-82.4],"head":[-9.2,-160.1],"shR":[26.1,-125.2],"elR":[93.5,-97.4],"haR":[62.9,-153.8],"shL":[-79,-105.6],"elL":[-138.7,-34.8],"haL":[-179.4,-95.4],"hipR":[29.2,20.1],"knR":[47,158.5],"ftR":[73.2,308.1],"hipL":[-59.4,55.3],"knL":[-80.3,190.1],"ftL":[-56.2,339.3]},{"rootY":-7.2,"hips":[0,0],"chest":[-32.3,-79.1],"neck":[-32.3,-79.1],"head":[-13.2,-156.1],"shR":[22.8,-113.8],"elR":[100.2,-73.8],"haR":[89.8,-131.6],"shL":[-85,-111.5],"elL":[-161.7,-53.8],"haL":[-194.1,-118.4],"hipR":[11.5,10.4],"knR":[46.7,145.5],"ftR":[77.2,294.7],"hipL":[-46.2,63.5],"knL":[-75.7,195.7],"ftL":[-52.1,346.3]},{"rootY":-9,"hips":[0,0],"chest":[-33.8,-78.2],"neck":[-33.8,-78.2],"head":[-11.9,-154.6],"shR":[20.2,-111.8],"elR":[96.9,-62.5],"haR":[104.3,-118.9],"shL":[-83.8,-111.7],"elL":[-163.2,-58.1],"haL":[-191.5,-122.5],"hipR":[7.2,17.8],"knR":[47.4,151.4],"ftR":[84.4,298.8],"hipL":[-43.2,61],"knL":[-66,190.4],"ftL":[-37.6,340.5]},{"rootY":-8.3,"hips":[0,0],"chest":[-30.3,-80.1],"neck":[-30.3,-80.1],"head":[-10,-156.6],"shR":[22.2,-116.5],"elR":[91.2,-64.7],"haR":[96.2,-123.7],"shL":[-80.4,-110.4],"elL":[-154.2,-49],"haL":[-185,-111.2],"hipR":[15.8,18.7],"knR":[39.2,155.4],"ftR":[86.5,299.9],"hipL":[-49,59.5],"knL":[-60.2,190.9],"ftL":[-32.7,342.2]},{"rootY":-8.5,"hips":[0,0],"chest":[-26.2,-81.9],"neck":[-26.2,-81.9],"head":[-8.8,-158.8],"shR":[24.1,-123.6],"elR":[80.9,-76.6],"haR":[72.3,-138],"shL":[-76.6,-105.8],"elL":[-139.2,-33.3],"haL":[-179.3,-92.4],"hipR":[29.2,32.8],"knR":[32.6,168.7],"ftR":[88.5,310.5],"hipL":[-63.6,47],"knL":[-57.1,181.6],"ftL":[-27.2,334.6]},{"rootY":-5.8,"hips":[0,0],"chest":[-19,-83.3],"neck":[-19,-83.3],"head":[-5.3,-160],"shR":[26.6,-132.7],"elR":[68.4,-93.2],"haR":[48,-155.9],"shL":[-69.3,-97.5],"elL":[-113.2,-15.2],"haL":[-161.1,-70.3],"hipR":[37,45.4],"knR":[35.5,178.5],"ftR":[87.3,321.6],"hipL":[-75.8,32.5],"knL":[-55.1,167.9],"ftL":[-25.3,322]},{"rootY":0.2,"hips":[0,0],"chest":[-10.1,-83.5],"neck":[-10.1,-83.5],"head":[0,-159.1],"shR":[32.3,-136],"elR":[64.8,-103.6],"haR":[34.8,-165.3],"shL":[-59.4,-93.4],"elL":[-81.9,-6.4],"haL":[-135.1,-53.4],"hipR":[42.9,48.1],"knR":[39.1,181.4],"ftR":[73.7,329.5],"hipL":[-79.5,28.2],"knL":[-55.6,163.2],"ftL":[-22.2,316.2]},{"rootY":2.5,"hips":[0,0],"chest":[-5.9,-83.4],"neck":[-5.9,-83.4],"head":[3.4,-158.6],"shR":[36.8,-133.7],"elR":[69.3,-102.8],"haR":[31.7,-160.6],"shL":[-54.7,-96.8],"elL":[-67.3,-9.5],"haL":[-120.4,-53.1],"hipR":[46.2,47.7],"knR":[40.4,182.1],"ftR":[67.8,331.8],"hipL":[-79.1,30],"knL":[-56.6,165],"ftL":[-20.6,316.7]},{"rootY":2.9,"hips":[0,0],"chest":[-9.9,-83.5],"neck":[-9.9,-83.5],"head":[0.8,-159.4],"shR":[34.4,-131.3],"elR":[78.6,-88.6],"haR":[39.2,-140.6],"shL":[-59.5,-100.3],"elL":[-90,-17.7],"haL":[-135.9,-71.5],"hipR":[43.1,46.5],"knR":[37.9,180.8],"ftR":[78.5,327.1],"hipL":[-78.1,31.2],"knL":[-59.3,166.4],"ftL":[-22.5,317.7]},{"rootY":1.4,"hips":[0,0],"chest":[-18.7,-83.1],"neck":[-18.7,-83.1],"head":[-5.9,-159.8],"shR":[27.9,-127.2],"elR":[88.2,-68.1],"haR":[57.1,-109.9],"shL":[-68.9,-104.9],"elL":[-122.9,-31.1],"haL":[-161.8,-92.7],"hipR":[34.2,38.9],"knR":[30.2,176.4],"ftR":[91.9,315.4],"hipL":[-70.4,40.1],"knL":[-68.4,175.2],"ftL":[-32.2,326]},{"rootY":2.1,"hips":[0,0],"chest":[-27.3,-81.4],"neck":[-27.3,-81.4],"head":[-12.2,-158.6],"shR":[23.7,-118.2],"elR":[88.6,-49.3],"haR":[77.9,-77.4],"shL":[-78.3,-111.7],"elL":[-148.5,-47.2],"haL":[-182.2,-111.6],"hipR":[17.1,27.6],"knR":[21.3,167],"ftR":[97.2,298.9],"hipL":[-55,51.7],"knL":[-76.7,183],"ftL":[-41.4,333.5]},{"rootY":4.9,"hips":[0,0],"chest":[-32.6,-79.3],"neck":[-32.6,-79.3],"head":[-16,-156.6],"shR":[19.2,-110.8],"elR":[80.4,-39.1],"haR":[92.8,-53.7],"shL":[-82.2,-115.4],"elL":[-157.6,-56.1],"haL":[-188.9,-119.5],"hipR":[-0.5,22.5],"knR":[16.1,161],"ftR":[93.4,291.5],"hipL":[-39.8,58.1],"knL":[-80.7,181.9],"ftL":[-46.7,331.9]},{"rootY":8.1,"hips":[0,0],"chest":[-35.3,-78],"neck":[-35.3,-78],"head":[-18.2,-155.6],"shR":[13.6,-108.8],"elR":[77.3,-38.5],"haR":[88.1,-50.9],"shL":[-82.8,-115.1],"elL":[-155.1,-53.5],"haL":[-188.5,-112.5],"hipR":[-4.3,22.6],"knR":[17.5,160.1],"ftR":[87.8,294.6],"hipL":[-36.4,58.7],"knL":[-83.4,178.7],"ftL":[-50.4,327.7]},{"rootY":10.8,"hips":[0,0],"chest":[-34,-78.5],"neck":[-34,-78.5],"head":[-18.4,-156.5],"shR":[10.4,-111.2],"elR":[72.5,-40.7],"haR":[59.2,-59.9],"shL":[-79,-113.8],"elL":[-138.7,-38.4],"haL":[-182.1,-87.7],"hipR":[6.7,21.4],"knR":[18.8,159.9],"ftR":[83.9,297.6],"hipL":[-43,59.1],"knL":[-85.4,181.2],"ftL":[-56.3,329]},{"rootY":10.7,"hips":[0,0],"chest":[-29.2,-79.9],"neck":[-29.2,-79.9],"head":[-17.5,-158.5],"shR":[10.7,-116.9],"elR":[55.4,-45.9],"haR":[18.5,-72.7],"shL":[-72.1,-110.4],"elL":[-109.1,-24.8],"haL":[-169.1,-61.8],"hipR":[26.8,32.5],"knR":[25,169.1],"ftR":[78.2,310.3],"hipL":[-57.3,51],"knL":[-79.1,178.8],"ftL":[-52.8,324.4]},{"rootY":12.4,"hips":[0,0],"chest":[-21.7,-79.8],"neck":[-21.7,-79.8],"head":[-13.8,-158.6],"shR":[12,-124.5],"elR":[27.8,-55.4],"haR":[-23.3,-87.1],"shL":[-62.4,-101.5],"elL":[-66.9,-15.3],"haL":[-135.9,-39.1],"hipR":[41,43.7],"knR":[41.2,178.5],"ftR":[71.3,325.7],"hipL":[-72.1,39.1],"knL":[-75.7,172.7],"ftL":[-49.1,316]},{"rootY":18.1,"hips":[0,0],"chest":[-17,-78.4],"neck":[-17,-78.4],"head":[-12.7,-156.9],"shR":[14,-126.1],"elR":[2.3,-63.2],"haR":[-56.2,-95.9],"shL":[-57.2,-96.1],"elL":[-31.1,-16.1],"haL":[-96.9,-24.6],"hipR":[47.9,43.8],"knR":[46.8,175.5],"ftR":[67.7,322.3],"hipL":[-75.8,36.8],"knL":[-80.7,171.4],"ftL":[-59,308.2]},{"rootY":27.9,"hips":[0,0],"chest":[-16.2,-79.1],"neck":[-16.2,-79.1],"head":[-12.2,-157.6],"shR":[14.8,-124.3],"elR":[-6.9,-63.2],"haR":[-70.3,-91.8],"shL":[-55.7,-100.1],"elL":[-23.4,-20.6],"haL":[-82.9,-27.7],"hipR":[47.3,43.2],"knR":[32.5,171.9],"ftR":[57.2,314.4],"hipL":[-74.7,38.3],"knL":[-80.4,171.6],"ftL":[-71.7,300]},{"rootY":34.2,"hips":[0,0],"chest":[-23.9,-79],"neck":[-23.9,-79],"head":[-18.3,-157.7],"shR":[5.7,-123.6],"elR":[0.3,-55.1],"haR":[-65.8,-76.5],"shL":[-60.9,-100.8],"elL":[-46.5,-16],"haL":[-108.1,-38.6],"hipR":[39.8,41.2],"knR":[2.5,168.7],"ftR":[47.3,302.6],"hipL":[-70,41.7],"knL":[-88.9,170.1],"ftL":[-77.3,294.8]},{"rootY":39.4,"hips":[0,0],"chest":[-34,-77.7],"neck":[-34,-77.7],"head":[-26.9,-156.7],"shR":[-4.4,-120.9],"elR":[20.3,-46.1],"haR":[-43.8,-57.5],"shL":[-71.2,-101.1],"elL":[-81.5,-12.8],"haL":[-143.3,-48.3],"hipR":[24.7,31.1],"knR":[-25.3,161],"ftR":[44.7,285.3],"hipL":[-55.6,52.1],"knL":[-110.7,166.9],"ftL":[-82.3,298.7]},{"rootY":44.2,"hips":[0,0],"chest":[-42.7,-74.4],"neck":[-42.7,-74.4],"head":[-34.4,-153.7],"shR":[-10.5,-114.1],"elR":[44.5,-42.2],"haR":[-8.8,-38.7],"shL":[-82.6,-101.8],"elL":[-114.1,-13.1],"haL":[-172.8,-56.5],"hipR":[3.4,21.7],"knR":[-37.1,155.1],"ftR":[39.3,276.7],"hipL":[-38.1,60.7],"knL":[-127.5,156.6],"ftL":[-95,300.1]},{"rootY":47.9,"hips":[0,0],"chest":[-48,-71],"neck":[-48,-71],"head":[-39.6,-150.5],"shR":[-15.4,-109.7],"elR":[56.4,-47.4],"haR":[19.8,-27.6],"shL":[-89.9,-99.4],"elL":[-129.7,-11.9],"haL":[-187.7,-55.5],"hipR":[-10.1,20.6],"knR":[-45.4,155.6],"ftR":[32.4,274.5],"hipL":[-29.9,61.4],"knL":[-131.7,149.5],"ftL":[-103.6,298.4]},{"rootY":52.2,"hips":[0,0],"chest":[-47.6,-71.2],"neck":[-47.6,-71.2],"head":[-40.6,-150.9],"shR":[-16.7,-111.6],"elR":[59.1,-54.4],"haR":[25.9,-27.5],"shL":[-89,-97.6],"elL":[-127.5,-9.6],"haL":[-188,-47.9],"hipR":[-9.4,22.1],"knR":[-48.6,156],"ftR":[30.4,272.7],"hipL":[-30.5,60.4],"knL":[-135.1,146.6],"ftL":[-104.2,295.2]},{"rootY":56,"hips":[0,0],"chest":[-45.8,-72.7],"neck":[-45.8,-72.7],"head":[-40.4,-152.3],"shR":[-16.2,-115.4],"elR":[50.6,-53.1],"haR":[3.9,-34.1],"shL":[-85.9,-96.5],"elL":[-115.5,-5],"haL":[-179.2,-39.5],"hipR":[0.8,24.3],"knR":[-49.5,154.5],"ftR":[29.2,271.4],"hipL":[-37.3,58.8],"knL":[-138.1,145.8],"ftL":[-101.3,290.2]},{"rootY":58.9,"hips":[0,0],"chest":[-41.1,-74.6],"neck":[-41.1,-74.6],"head":[-38.2,-154.1],"shR":[-14.8,-121],"elR":[28.8,-50.4],"haR":[-31.3,-43.6],"shL":[-79.4,-93.9],"elL":[-90.6,0],"haL":[-157.4,-28.6],"hipR":[18.1,29.3],"knR":[-42.2,154.7],"ftR":[28.4,274.1],"hipL":[-50.6,54.1],"knL":[-132.2,149.7],"ftL":[-95.6,283.9]},{"rootY":61.6,"hips":[0,0],"chest":[-35.5,-75.8],"neck":[-35.5,-75.8],"head":[-34.4,-155],"shR":[-12.3,-124.4],"elR":[4.6,-49.8],"haR":[-62.8,-53.4],"shL":[-72.1,-92],"elL":[-58.3,-1.2],"haL":[-125.2,-17.9],"hipR":[36.7,34],"knR":[-27.5,153],"ftR":[26.5,276.7],"hipL":[-63.1,49.4],"knL":[-109.3,162.5],"ftL":[-98.9,267]},{"rootY":64.6,"hips":[0,0],"chest":[-31.3,-76.5],"neck":[-31.3,-76.5],"head":[-31.5,-155.4],"shR":[-9,-126.1],"elR":[-12.1,-52.5],"haR":[-82.1,-59.7],"shL":[-68.1,-91.4],"elL":[-37,-8],"haL":[-100.6,-13.9],"hipR":[49.7,35.7],"knR":[-12,149.6],"ftR":[28.7,276.9],"hipL":[-69.5,46.9],"knL":[-87.8,172.7],"ftL":[-104.9,256.4]},{"rootY":66.7,"hips":[0,0],"chest":[-31.5,-75.8],"neck":[-31.5,-75.8],"head":[-31.9,-154.9],"shR":[-6.9,-125.9],"elR":[-13.9,-53.8],"haR":[-84.4,-59.5],"shL":[-72.3,-89.9],"elL":[-41.4,-8.4],"haL":[-103.1,-18.5],"hipR":[53.8,35],"knR":[-6.6,146],"ftR":[31.3,275],"hipL":[-70.3,46.9],"knL":[-82.3,175.8],"ftL":[-88,266.9]},{"rootY":67,"hips":[0,0],"chest":[-35.2,-74.9],"neck":[-35.2,-74.9],"head":[-35.7,-154.4],"shR":[-7.5,-125.2],"elR":[3.8,-52.5],"haR":[-64.3,-53.6],"shL":[-80.2,-88.8],"elL":[-67.9,-1.8],"haL":[-131.8,-22.7],"hipR":[50.6,32.9],"knR":[-11.7,145.1],"ftR":[30.8,273.7],"hipL":[-67.7,49.6],"knL":[-89.7,173.8],"ftL":[-91.8,270.6]},{"rootY":64.2,"hips":[0,0],"chest":[-43,-72.8],"neck":[-43,-72.8],"head":[-41.8,-152.8],"shR":[-11.1,-121.9],"elR":[29.3,-51.8],"haR":[-29.1,-46.5],"shL":[-92.3,-88.4],"elL":[-102.2,3.6],"haL":[-168.6,-23.9],"hipR":[39.9,28.4],"knR":[-21.9,146.7],"ftR":[32.9,272.8],"hipL":[-61,54],"knL":[-102,172.1],"ftL":[-98.5,280.9]},{"rootY":60.8,"hips":[0,0],"chest":[-49.5,-69.9],"neck":[-49.5,-69.9],"head":[-46.2,-150],"shR":[-12.9,-117],"elR":[53.4,-53.9],"haR":[13.5,-41],"shL":[-103.1,-88.1],"elL":[-129.8,4],"haL":[-195.8,-26.7],"hipR":[23.5,23.9],"knR":[-31.9,149.9],"ftR":[44.1,270.7],"hipL":[-52.2,57.3],"knL":[-114.5,166.2],"ftL":[-105,285.1]},{"rootY":59.3,"hips":[0,0],"chest":[-50,-69.8],"neck":[-50,-69.8],"head":[-46.1,-149.9],"shR":[-10.7,-117.2],"elR":[65.8,-60.3],"haR":[47.7,-38.7],"shL":[-106.6,-87.6],"elL":[-142.5,1.1],"haL":[-204.3,-30.9],"hipR":[13.4,23.5],"knR":[-38,152.6],"ftR":[48.6,269.3],"hipL":[-46.9,57.8],"knL":[-121,161],"ftL":[-106.5,288]},{"rootY":58.4,"hips":[0,0],"chest":[-45.9,-72.6],"neck":[-45.9,-72.6],"head":[-42.9,-152.6],"shR":[-5.4,-121.8],"elR":[71.3,-65.3],"haR":[61.5,-41],"shL":[-103.4,-88.2],"elL":[-137.5,0.1],"haL":[-195.6,-32.2],"hipR":[15.3,25],"knR":[-34,155],"ftR":[54.9,272.2],"hipL":[-49.4,56.2],"knL":[-121.4,160.3],"ftL":[-101.1,289.5]},{"rootY":54.3,"hips":[0,0],"chest":[-39,-76.2],"neck":[-39,-76.2],"head":[-36.5,-156.1],"shR":[3.5,-126.2],"elR":[72.8,-60.9],"haR":[53.7,-44.1],"shL":[-96.7,-91.1],"elL":[-121.8,1.2],"haL":[-181.8,-28.8],"hipR":[25.4,27.1],"knR":[-17.8,157],"ftR":[64,279],"hipL":[-58.6,52.1],"knL":[-112.5,165.4],"ftL":[-86.3,291.4]},{"rootY":45.5,"hips":[0,0],"chest":[-27,-80.2],"neck":[-27,-80.2],"head":[-26.4,-159.6],"shR":[13.5,-133.4],"elR":[66,-56.9],"haR":[32.6,-48],"shL":[-83.8,-90.3],"elL":[-96.5,4.7],"haL":[-162.6,-18.1],"hipR":[40.2,31],"knR":[7.7,156.2],"ftR":[68.6,288.5],"hipL":[-70.7,44.2],"knL":[-92.7,169.7],"ftL":[-67.1,293.3]},{"rootY":35.6,"hips":[0,0],"chest":[-14.7,-82.2],"neck":[-14.7,-82.2],"head":[-16.8,-161],"shR":[24,-138.8],"elR":[57,-58.1],"haR":[10.5,-53.3],"shL":[-71.1,-87.3],"elL":[-71.1,5.6],"haL":[-142.3,-7],"hipR":[53.9,37],"knR":[35.6,157.2],"ftR":[65.8,300.8],"hipL":[-77.3,34.3],"knL":[-78.5,168.4],"ftL":[-54,295.6]},{"rootY":27.6,"hips":[0,0],"chest":[-7.5,-83],"neck":[-7.5,-83],"head":[-10.1,-160.9],"shR":[34.7,-139.2],"elR":[54.2,-60.5],"haR":[0.2,-57.7],"shL":[-66.3,-88.5],"elL":[-58.3,-0.5],"haL":[-131.1,-6.5],"hipR":[61.6,39.8],"knR":[52.5,160.5],"ftR":[67,310.3],"hipL":[-76,30.5],"knL":[-73,167.2],"ftL":[-50.7,299]},{"rootY":23.8,"hips":[0,0],"chest":[-4.8,-83.6],"neck":[-4.8,-83.6],"head":[-5.8,-161],"shR":[43.3,-136.6],"elR":[62.1,-59.7],"haR":[7.9,-60.8],"shL":[-66.7,-93.5],"elL":[-65.3,-5.2],"haL":[-136.3,-21.6],"hipR":[62.3,42.2],"knR":[60.2,164.1],"ftR":[76.9,314.9],"hipL":[-75.8,28.9],"knL":[-67.9,165.6],"ftL":[-44.8,300.7]},{"rootY":20.2,"hips":[0,0],"chest":[-7.2,-84.1],"neck":[-7.2,-84.1],"head":[-4.8,-161.4],"shR":[44.3,-134.9],"elR":[74.9,-56.3],"haR":[29.6,-59],"shL":[-70.3,-96.7],"elL":[-89.6,-6.5],"haL":[-154.6,-39.8],"hipR":[60.6,36.7],"knR":[61,162.4],"ftR":[84.8,312.5],"hipL":[-75.5,35],"knL":[-67.6,171.4],"ftL":[-42.3,310.4]},{"rootY":13.4,"hips":[0,0],"chest":[-15.4,-83.7],"neck":[-15.4,-83.7],"head":[-9.1,-161],"shR":[42.3,-128.9],"elR":[88.6,-49.9],"haR":[59,-51.1],"shL":[-81,-103.4],"elL":[-117.2,-14.7],"haL":[-173.9,-59.1],"hipR":[53.7,23.4],"knR":[55.5,156.4],"ftR":[91.3,304.5],"hipL":[-70.8,46.6],"knL":[-71.3,181.6],"ftL":[-44.9,322.6]},{"rootY":4.1,"hips":[0,0],"chest":[-27.8,-81],"neck":[-27.8,-81],"head":[-15.7,-157.9],"shR":[33.1,-121.1],"elR":[90.3,-44.9],"haR":[81,-42.9],"shL":[-92.5,-107],"elL":[-137.1,-23.1],"haL":[-184.7,-72.9],"hipR":[41.7,13.6],"knR":[49.4,149.9],"ftR":[88.7,297],"hipL":[-62.6,56.5],"knL":[-71.7,188.9],"ftL":[-45.9,332.9]},{"rootY":-2.4,"hips":[0,0],"chest":[-36.1,-77.7],"neck":[-36.1,-77.7],"head":[-20,-154],"shR":[26.8,-114.2],"elR":[89.5,-43.9],"haR":[97.4,-37.7],"shL":[-100.1,-107.9],"elL":[-145.1,-29.3],"haL":[-185.8,-79.8],"hipR":[30.5,11.3],"knR":[47.4,147.8],"ftR":[86.7,294.2],"hipL":[-55.5,61.1],"knL":[-67,190.1],"ftL":[-42,336.1]},{"rootY":-3.3,"hips":[0,0],"chest":[-38.3,-76.7],"neck":[-38.3,-76.7],"head":[-22.6,-153.2],"shR":[22.8,-114.9],"elR":[91.6,-50.3],"haR":[101.9,-45.6],"shL":[-101.9,-105],"elL":[-145.9,-28.3],"haL":[-183.1,-78.5],"hipR":[27.9,11.8],"knR":[47,147.7],"ftR":[88.1,293],"hipL":[-52,62.9],"knL":[-61.9,190],"ftL":[-38.4,337.1]},{"rootY":-1.5,"hips":[0,0],"chest":[-36.4,-77.7],"neck":[-36.4,-77.7],"head":[-25,-154.6],"shR":[22.1,-119],"elR":[94.5,-57.2],"haR":[91,-64.6],"shL":[-99.3,-102.5],"elL":[-141.1,-19.6],"haL":[-182.5,-67.2],"hipR":[34.4,15.6],"knR":[48,150.9],"ftR":[89.8,295.9],"hipL":[-55.9,60.4],"knL":[-59.5,188.9],"ftL":[-35.1,337.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-32.3,-79.5],"neck":[-32.3,-79.5],"head":[-24,-156],"shR":[21.5,-126],"elR":[88.6,-66.3],"haR":[68.5,-87.8],"shL":[-94.1,-97.7],"elL":[-127.2,-7.4],"haL":[-179.6,-49.3],"hipR":[44.1,28.3],"knR":[48.6,160.9],"ftR":[88.2,306.5],"hipL":[-65.6,51.2],"knL":[-58.3,183],"ftL":[-31,333.4]},{"rootY":-1.2,"hips":[0,0],"chest":[-27,-80.9],"neck":[-27,-80.9],"head":[-22,-156.8],"shR":[18.8,-134.4],"elR":[74.1,-78.2],"haR":[41.3,-109.2],"shL":[-85.2,-89.9],"elL":[-102.5,3.1],"haL":[-164.8,-32.1],"hipR":[51.1,37.3],"knR":[50.8,169.3],"ftR":[75.4,318],"hipL":[-73.4,42],"knL":[-55.8,176.5],"ftL":[-26.7,327.9]},{"rootY":-1.1,"hips":[0,0],"chest":[-20.6,-81.9],"neck":[-20.6,-81.9],"head":[-20.1,-156.8],"shR":[18.9,-139],"elR":[64.6,-85.8],"haR":[23.3,-119.6],"shL":[-74.7,-85.9],"elL":[-75.4,5.2],"haL":[-142.9,-22.5],"hipR":[55.6,38.4],"knR":[53.9,173.1],"ftR":[59.4,322.4],"hipL":[-75.2,39.1],"knL":[-52.7,173.9],"ftL":[-23,324.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-16.2,-82.5],"neck":[-16.2,-82.5],"head":[-17.4,-156.8],"shR":[21.4,-139.3],"elR":[61.9,-86.7],"haR":[15.6,-118.5],"shL":[-68.6,-87.3],"elL":[-59.6,1.4],"haL":[-126.8,-23.9],"hipR":[56.5,39],"knR":[57.8,174.9],"ftR":[60.9,323.7],"hipL":[-75.6,38.1],"knL":[-51,172.6],"ftL":[-20.4,323.1]},{"rootY":0.9,"hips":[0,0],"chest":[-17,-82.5],"neck":[-17,-82.5],"head":[-16.4,-157.5],"shR":[20.5,-137.7],"elR":[65,-82],"haR":[18.8,-110.4],"shL":[-67.2,-89.7],"elL":[-68.8,0.1],"haL":[-131.4,-34.8],"hipR":[53.2,38.6],"knR":[58.7,174.4],"ftR":[75.1,324.6],"hipL":[-75.3,39.1],"knL":[-53.4,174.1],"ftL":[-23.1,325]},{"rootY":1.2,"hips":[0,0],"chest":[-21.4,-82.3],"neck":[-21.4,-82.3],"head":[-16.7,-158.8],"shR":[18,-133.7],"elR":[72.5,-69.4],"haR":[33.6,-95],"shL":[-70.5,-94.8],"elL":[-95,-5.6],"haL":[-151,-51.7],"hipR":[43.7,36.6],"knR":[52.9,173],"ftR":[88.1,321.1],"hipL":[-72.4,41.7],"knL":[-58.5,177.2],"ftL":[-29.3,328.8]},{"rootY":1,"hips":[0,0],"chest":[-27.2,-81.5],"neck":[-27.2,-81.5],"head":[-17.7,-159.2],"shR":[17.1,-125.3],"elR":[77,-53.5],"haR":[52.2,-73.6],"shL":[-75.9,-103.7],"elL":[-118.6,-18.8],"haL":[-168.6,-71.9],"hipR":[27.1,30.9],"knR":[44.4,168.8],"ftR":[94,312.8],"hipL":[-62.3,48.1],"knL":[-65.6,183.1],"ftL":[-39.9,335.4]},{"rootY":-0.8,"hips":[0,0],"chest":[-30.1,-80.4],"neck":[-30.1,-80.4],"head":[-16.5,-158.2],"shR":[18.9,-115.3],"elR":[78.8,-41.1],"haR":[69.1,-54.4],"shL":[-78.4,-113],"elL":[-132.8,-33.7],"haL":[-177.3,-89.5],"hipR":[8.2,26],"knR":[35.3,162.7],"ftR":[95.9,302.3],"hipL":[-48,54.1],"knL":[-71.2,185.7],"ftL":[-49.2,338]},{"rootY":-2.1,"hips":[0,0],"chest":[-30.5,-80.1],"neck":[-30.5,-80.1],"head":[-14.5,-157.8],"shR":[18.5,-110.4],"elR":[79,-36.7],"haR":[71.4,-51.2],"shL":[-76.2,-117.6],"elL":[-134.9,-41.5],"haL":[-176.2,-97.2],"hipR":[-1.1,26.2],"knR":[29.6,161.9],"ftR":[91.4,300.4],"hipL":[-41.7,54.5],"knL":[-72.4,184.2],"ftL":[-53.4,336.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-27.8,-81.2],"neck":[-27.8,-81.2],"head":[-11.9,-158.9],"shR":[18.8,-110.4],"elR":[76.2,-36.5],"haR":[55.2,-61.1],"shL":[-70.1,-119.7],"elL":[-126.2,-41.6],"haL":[-169.4,-96.3],"hipR":[0.9,26.8],"knR":[24,163.9],"ftR":[84.6,303.2],"hipL":[-45,52.9],"knL":[-74,184.9],"ftL":[-61.1,336.9]},{"rootY":0.4,"hips":[0,0],"chest":[-22.4,-82.7],"neck":[-22.4,-82.7],"head":[-8.5,-160.7],"shR":[20.3,-114.7],"elR":[61.8,-40.3],"haR":[25.1,-76.2],"shL":[-60.7,-118.3],"elL":[-107.5,-36.3],"haL":[-156.3,-89],"hipR":[10.7,30],"knR":[24.4,168.6],"ftR":[79,310.7],"hipL":[-52.8,49.6],"knL":[-77.1,184.1],"ftL":[-70.7,335.8]},{"rootY":-1.1,"hips":[0,0],"chest":[-15.3,-83.3],"neck":[-15.3,-83.3],"head":[-4.7,-161.8],"shR":[19.9,-123.5],"elR":[35.6,-50.5],"haR":[-9.2,-95.1],"shL":[-48.5,-109.7],"elL":[-74.1,-24.5],"haL":[-128.2,-73.5],"hipR":[22.7,40.5],"knR":[30.8,179.7],"ftR":[71.5,325.9],"hipL":[-64.5,39.9],"knL":[-81.8,175.8],"ftL":[-79.1,326.8]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-82],"neck":[-10.4,-82],"head":[-3.7,-160.2],"shR":[18.8,-128.1],"elR":[10,-58.6],"haR":[-37.3,-108.5],"shL":[-40.1,-101.3],"elL":[-38,-16.2],"haL":[-93.6,-57],"hipR":[29.5,47.4],"knR":[26.1,186],"ftR":[64.4,331.7],"hipL":[-73.7,30.7],"knL":[-90.9,165.8],"ftL":[-94.7,315]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.1,-80.8],"neck":[-8.1,-80.8],"head":[-3.5,-158.6],"shR":[20.2,-125.8],"elR":[-7,-61.9],"haR":[-55.5,-113.3],"shL":[-38.1,-101.7],"elL":[-17.8,-18.3],"haL":[-68.8,-52.5],"hipR":[29.8,49.2],"knR":[18.7,187.8],"ftR":[52.6,333.5],"hipL":[-76.1,27.2],"knL":[-101.4,160.8],"ftL":[-113.1,307.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-8.4,-80.6],"neck":[-8.4,-80.6],"head":[-3.8,-158.4],"shR":[19.6,-123.8],"elR":[-5.2,-58.4],"haR":[-56.3,-107.9],"shL":[-37,-103.7],"elL":[-26.8,-20.4],"haL":[-74.1,-63.6],"hipR":[23.3,49.4],"knR":[7.4,188.1],"ftR":[42.5,332.2],"hipL":[-74,25.9],"knL":[-110.4,157.5],"ftL":[-128.1,304]},{"rootY":-1.8,"hips":[0,0],"chest":[-12.3,-81.9],"neck":[-12.3,-81.9],"head":[-6.6,-160.1],"shR":[16.4,-122.9],"elR":[13.8,-49.2],"haR":[-39.6,-94.2],"shL":[-41.1,-107.7],"elL":[-54.6,-27.7],"haL":[-102,-80.1],"hipR":[10.4,43.1],"knR":[-4.8,181.9],"ftR":[33.8,324.1],"hipL":[-64.8,31.6],"knL":[-119.5,157],"ftL":[-139.8,303.9]},{"rootY":2.1,"hips":[0,0],"chest":[-17.5,-83.4],"neck":[-17.5,-83.4],"head":[-10.2,-162],"shR":[15.7,-118.4],"elR":[41.4,-38.9],"haR":[-9.9,-76.9],"shL":[-49.4,-116.1],"elL":[-87.3,-39.3],"haL":[-132.2,-96.7],"hipR":[-7.9,32.5],"knR":[-19.9,171.2],"ftR":[30.6,310.3],"hipL":[-51.6,39.7],"knL":[-123.2,155.9],"ftL":[-141.8,305]},{"rootY":5.8,"hips":[0,0],"chest":[-21.9,-82.8],"neck":[-21.9,-82.8],"head":[-12.3,-161.2],"shR":[16.9,-109],"elR":[65.3,-30.8],"haR":[21.9,-59.3],"shL":[-54.7,-124.3],"elL":[-110.6,-49.5],"haL":[-152.7,-109],"hipR":[-23.9,23],"knR":[-31.1,161.5],"ftR":[23.4,299.7],"hipL":[-39.6,47],"knL":[-118.9,157.1],"ftL":[-142.4,307.9]},{"rootY":9.3,"hips":[0,0],"chest":[-22.3,-82.1],"neck":[-22.3,-82.1],"head":[-10.5,-160],"shR":[18.4,-104.1],"elR":[75.9,-28.9],"haR":[42.8,-50.5],"shL":[-52.8,-127.3],"elL":[-115.3,-54.4],"haL":[-157.8,-112.7],"hipR":[-30.9,20.1],"knR":[-34.8,158.3],"ftR":[18,296.9],"hipL":[-32.5,50.8],"knL":[-112.4,160.3],"ftL":[-142.9,311.1]},{"rootY":12.8,"hips":[0,0],"chest":[-21.3,-82.5],"neck":[-21.3,-82.5],"head":[-9.2,-160.4],"shR":[18.2,-107.7],"elR":[68.9,-30.7],"haR":[33.9,-59.4],"shL":[-51,-124.5],"elL":[-110.6,-49.4],"haL":[-154.4,-105.9],"hipR":[-27.7,19.2],"knR":[-38.1,157],"ftR":[13.1,295.2],"hipL":[-35.7,50.8],"knL":[-119,158],"ftL":[-150.3,307.2]},{"rootY":15.1,"hips":[0,0],"chest":[-18.5,-83.9],"neck":[-18.5,-83.9],"head":[-9,-161.9],"shR":[16.6,-116.7],"elR":[49.3,-39.4],"haR":[4.5,-78.1],"shL":[-46.6,-118.2],"elL":[-94.9,-38.1],"haL":[-142.5,-93.2],"hipR":[-14.2,23.3],"knR":[-34.4,160.2],"ftR":[8.1,299.5],"hipL":[-46.8,46.4],"knL":[-132,153.2],"ftL":[-160.8,299.7]},{"rootY":14.3,"hips":[0,0],"chest":[-13.5,-83.8],"neck":[-13.5,-83.8],"head":[-8.6,-161.7],"shR":[15.2,-126.7],"elR":[22.9,-53],"haR":[-28.1,-98.1],"shL":[-39.1,-106.9],"elL":[-63,-21.2],"haL":[-114.1,-71.7],"hipR":[7.3,32.8],"knR":[-31.7,165.7],"ftR":[4.9,305.5],"hipL":[-61,39.7],"knL":[-139.7,151.9],"ftL":[-171.2,292]},{"rootY":13.4,"hips":[0,0],"chest":[-10.3,-82.6],"neck":[-10.3,-82.6],"head":[-7.8,-159.6],"shR":[13.7,-131],"elR":[-0.4,-63.5],"haR":[-52.4,-112.2],"shL":[-34,-99],"elL":[-26.2,-12.4],"haL":[-78.2,-51.7],"hipR":[26.3,42],"knR":[-32.3,168.4],"ftR":[0.8,308.7],"hipL":[-70.4,35.3],"knL":[-140.4,152.8],"ftL":[-180.1,282.9]},{"rootY":12.8,"hips":[0,0],"chest":[-10.8,-82],"neck":[-10.8,-82],"head":[-9.7,-158.9],"shR":[12.9,-129],"elR":[-16.4,-68.2],"haR":[-68.4,-117.6],"shL":[-35.2,-100.5],"elL":[-14.3,-15.9],"haL":[-60.6,-50.9],"hipR":[33.5,45.4],"knR":[-30.8,169.4],"ftR":[-4.1,311.1],"hipL":[-74.1,33.1],"knL":[-134.2,155.2],"ftL":[-183.1,276.1]},{"rootY":14.4,"hips":[0,0],"chest":[-11.4,-82.4],"neck":[-11.4,-82.4],"head":[-9.6,-159.8],"shR":[13.7,-127.2],"elR":[-13.5,-65.1],"haR":[-67,-112.8],"shL":[-36.4,-103.5],"elL":[-30.9,-19.7],"haL":[-74.8,-65.6],"hipR":[32.5,42.9],"knR":[-30.3,167.7],"ftR":[-8,309.9],"hipL":[-72.6,35.3],"knL":[-132.4,157],"ftL":[-182.3,278.1]},{"rootY":15.1,"hips":[0,0],"chest":[-14.9,-82.9],"neck":[-14.9,-82.9],"head":[-12.6,-161],"shR":[12.9,-126],"elR":[3.6,-57],"haR":[-52,-101.2],"shL":[-42.4,-106.2],"elL":[-61.7,-25.3],"haL":[-105,-79.6],"hipR":[21.7,37],"knR":[-33.8,165],"ftR":[-12.7,307.4],"hipL":[-67.2,38.8],"knL":[-139.1,154.7],"ftL":[-179,286.9]},{"rootY":15.1,"hips":[0,0],"chest":[-19.8,-83.3],"neck":[-19.8,-83.3],"head":[-15.1,-162],"shR":[10.4,-123.3],"elR":[26.1,-49.9],"haR":[-28.6,-88.8],"shL":[-49,-110.2],"elL":[-91.4,-33.8],"haL":[-134.4,-91.9],"hipR":[1.7,26.4],"knR":[-37,159.5],"ftR":[-16.2,303.1],"hipL":[-57.8,43.3],"knL":[-137.2,154.9],"ftL":[-177.2,297.1]},{"rootY":14.8,"hips":[0,0],"chest":[-22.1,-82.6],"neck":[-22.1,-82.6],"head":[-15.1,-161.4],"shR":[13.6,-113.6],"elR":[51.8,-38.9],"haR":[3,-72.4],"shL":[-53.5,-119.4],"elL":[-111.8,-46.6],"haL":[-155.9,-104.8],"hipR":[-18.3,18.5],"knR":[-41,154.7],"ftR":[-18,300],"hipL":[-45,48.7],"knL":[-126.2,158.4],"ftL":[-175,303.3]},{"rootY":15.8,"hips":[0,0],"chest":[-21.5,-82.1],"neck":[-21.5,-82.1],"head":[-12.4,-160.8],"shR":[15.5,-106.3],"elR":[68.7,-33.2],"haR":[27.2,-59.6],"shL":[-50.5,-125.4],"elL":[-115.2,-54.6],"haL":[-163.3,-108.4],"hipR":[-29.5,18.1],"knR":[-47.1,155.3],"ftR":[-19.6,301.2],"hipL":[-35.9,50.2],"knL":[-114,161.9],"ftL":[-173.3,305.7]},{"rootY":19.3,"hips":[0,0],"chest":[-20.2,-82.6],"neck":[-20.2,-82.6],"head":[-7.8,-161],"shR":[12.6,-107.4],"elR":[67.2,-32.7],"haR":[30.7,-51.2],"shL":[-44.1,-125.1],"elL":[-107.7,-53],"haL":[-163.5,-96.4],"hipR":[-31.3,19.5],"knR":[-51.4,156.1],"ftR":[-22.1,301.8],"hipL":[-34.9,48.8],"knL":[-106.8,164.2],"ftL":[-169.5,307.1]},{"rootY":21.1,"hips":[0,0],"chest":[-18.6,-83.4],"neck":[-18.6,-83.4],"head":[-3.7,-161.6],"shR":[8.1,-111.3],"elR":[50.6,-30.2],"haR":[13.1,-40.7],"shL":[-37.9,-123],"elL":[-93.1,-44.3],"haL":[-158.1,-69],"hipR":[-30.4,20.3],"knR":[-54.5,156.3],"ftR":[-25.4,302.6],"hipL":[-35.8,47.9],"knL":[-107.7,162.5],"ftL":[-152.6,312.6]},{"rootY":19.8,"hips":[0,0],"chest":[-19.6,-83.4],"neck":[-19.6,-83.4],"head":[-0.5,-160.7],"shR":[3.8,-111.6],"elR":[27.6,-25],"haR":[-14.9,-21.4],"shL":[-36.2,-122.7],"elL":[-76.1,-35.4],"haL":[-145.9,-27.6],"hipR":[-30.4,20.5],"knR":[-54.1,157.2],"ftR":[-29.8,305.3],"hipL":[-36.1,47.5],"knL":[-108.7,160.9],"ftL":[-122.4,317.4]},{"rootY":17.7,"hips":[0,0],"chest":[-22.6,-82.6],"neck":[-22.6,-82.6],"head":[1.7,-158.6],"shR":[-1.9,-109.7],"elR":[7.3,-20.7],"haR":[-40,2.5],"shL":[-37.5,-123.2],"elL":[-63.9,-31.1],"haL":[-115.9,19.9],"hipR":[-29.7,20.1],"knR":[-53.7,157.2],"ftR":[-35.3,307],"hipL":[-37.4,47.2],"knL":[-109.7,159.4],"ftL":[-83.5,314.2]},{"rootY":15.9,"hips":[0,0],"chest":[-24.8,-82],"neck":[-24.8,-82],"head":[3.1,-157.1],"shR":[-8.4,-110.7],"elR":[-8.1,-21.8],"haR":[-58.5,18.5],"shL":[-36.7,-121.2],"elL":[-52.6,-26.7],"haL":[-70.5,43.6],"hipR":[-28,21.8],"knR":[-53.4,158.9],"ftR":[-40,310],"hipL":[-37.5,47],"knL":[-104.9,161.6],"ftL":[-40.8,305.1]},{"rootY":16.2,"hips":[0,0],"chest":[-26.1,-81.7],"neck":[-26.1,-81.7],"head":[2.8,-156.4],"shR":[-14.7,-111.7],"elR":[-16.5,-23.8],"haR":[-66.3,26.1],"shL":[-33.8,-119.5],"elL":[-26,-25.1],"haL":[-26.7,43.7],"hipR":[-27,23.8],"knR":[-55.7,160.5],"ftR":[-44.8,312.3],"hipL":[-35.7,47.6],"knL":[-89.2,169.7],"ftL":[1.1,297.5]},{"rootY":18.5,"hips":[0,0],"chest":[-26.7,-81.6],"neck":[-26.7,-81.6],"head":[0.6,-157],"shR":[-22.5,-113.3],"elR":[-23.5,-27.3],"haR":[-71.1,26.3],"shL":[-27.8,-117.6],"elL":[2.9,-29.2],"haL":[1.3,37.4],"hipR":[-27.8,25.4],"knR":[-58.9,161.4],"ftR":[-50,313.5],"hipL":[-32.5,48.6],"knL":[-60.7,180.1],"ftL":[35.7,300.2]},{"rootY":21.7,"hips":[0,0],"chest":[-26.8,-81.4],"neck":[-26.8,-81.4],"head":[-3.2,-157.9],"shR":[-28.7,-111.8],"elR":[-30.5,-27.7],"haR":[-74.8,27.8],"shL":[-22.8,-119],"elL":[16.3,-33.5],"haL":[17.3,31],"hipR":[-31.9,26.5],"knR":[-62.7,162.1],"ftR":[-56.6,313.5],"hipL":[-28.9,47.7],"knL":[-30.8,184],"ftL":[56.8,309.9]},{"rootY":20.3,"hips":[0,0],"chest":[-27.1,-80.8],"neck":[-27.1,-80.8],"head":[-9.3,-158.5],"shR":[-36.2,-109.3],"elR":[-37.2,-25],"haR":[-79,32.7],"shL":[-18.2,-120.3],"elL":[14.8,-31.8],"haL":[23.1,33],"hipR":[-40,27.4],"knR":[-62.5,163.8],"ftR":[-64.5,313.5],"hipL":[-21.6,46.8],"knL":[-36.2,182.9],"ftL":[45.9,315.2]},{"rootY":14.6,"hips":[0,0],"chest":[-25.1,-80.6],"neck":[-25.1,-80.6],"head":[-12.4,-158.9],"shR":[-43.6,-109.2],"elR":[-40.7,-23.2],"haR":[-79.8,36.8],"shL":[-7.5,-119.9],"elL":[16.4,-28.2],"haL":[22.5,37.9],"hipR":[-48.7,29],"knR":[-53.2,165.6],"ftR":[-59.7,314.8],"hipL":[-9.8,47.5],"knL":[-31.5,182.4],"ftL":[37.4,323.6]},{"rootY":11.6,"hips":[0,0],"chest":[-23.4,-80.4],"neck":[-23.4,-80.4],"head":[-14.8,-159.3],"shR":[-50.1,-109.1],"elR":[-44.7,-22.8],"haR":[-80.5,39.4],"shL":[3.2,-119.5],"elL":[21.9,-26.1],"haL":[12.7,39.1],"hipR":[-56.4,28.3],"knR":[-44.9,161.9],"ftR":[-37.1,310.9],"hipL":[0.8,49.7],"knL":[-25.5,183.8],"ftL":[31.6,330.1]},{"rootY":8.8,"hips":[0,0],"chest":[-21,-80.3],"neck":[-21,-80.3],"head":[-14.8,-159.6],"shR":[-55.2,-109.8],"elR":[-50.8,-25.6],"haR":[-81.8,39],"shL":[12.8,-118.8],"elL":[29.6,-24.6],"haL":[3,34],"hipR":[-60.4,30.7],"knR":[-41.7,161.2],"ftR":[-20.7,305.8],"hipL":[10.7,50.5],"knL":[-25.5,182.6],"ftL":[26,330.4]},{"rootY":5.8,"hips":[0,0],"chest":[-19.5,-79.6],"neck":[-19.5,-79.6],"head":[-13.9,-159],"shR":[-58.7,-110.5],"elR":[-60.3,-28.6],"haR":[-90.3,36.4],"shL":[18.8,-116.5],"elL":[35.8,-21.9],"haL":[-1,29.6],"hipR":[-63.7,28.7],"knR":[-44.3,161.2],"ftR":[-25,308.9],"hipL":[14.5,52.6],"knL":[-23,184.4],"ftL":[24,333.3]},{"rootY":1.6,"hips":[0,0],"chest":[-17.9,-78.9],"neck":[-17.9,-78.9],"head":[-11.9,-158.3],"shR":[-58,-112.2],"elR":[-66.7,-30.3],"haR":[-100.9,32.4],"shL":[22.5,-113.4],"elL":[41.8,-19.3],"haL":[2.5,30.7],"hipR":[-64.1,28.7],"knR":[-48.4,164.7],"ftR":[-34.7,314.2],"hipL":[15.4,52.9],"knL":[-17.5,186],"ftL":[23.9,336.4]},{"rootY":-1.2,"hips":[0,0],"chest":[-16.3,-78.3],"neck":[-16.3,-78.3],"head":[-9.1,-157.6],"shR":[-54.3,-114.3],"elR":[-67.4,-32.6],"haR":[-108.8,24.7],"shL":[23.9,-110],"elL":[45.4,-16.3],"haL":[11,38.7],"hipR":[-63.3,28.5],"knR":[-53.9,167.4],"ftR":[-29.1,315.7],"hipL":[15.2,53.8],"knL":[-13.1,187.7],"ftL":[24.8,339.2]},{"rootY":-1,"hips":[0,0],"chest":[-15.4,-78],"neck":[-15.4,-78],"head":[-7,-156.9],"shR":[-50.1,-117.4],"elR":[-66.1,-37.5],"haR":[-112.1,14],"shL":[23.3,-105.9],"elL":[45.5,-12.4],"haL":[22.2,50],"hipR":[-62.3,26.1],"knR":[-55.6,165.6],"ftR":[-17.4,312.3],"hipL":[12.2,55.5],"knL":[-13.2,189.9],"ftL":[26.8,340.9]},{"rootY":1,"hips":[0,0],"chest":[-15,-77.9],"neck":[-15,-77.9],"head":[-6.5,-156.4],"shR":[-46,-120.1],"elR":[-62.5,-42.8],"haR":[-110.4,5.3],"shL":[21.6,-102.6],"elL":[42.5,-8.7],"haL":[35,58.6],"hipR":[-59.6,24.1],"knR":[-59.3,162.9],"ftR":[-14.5,308.5],"hipL":[7.5,56.7],"knL":[-14.7,191.7],"ftL":[30.5,341.5]},{"rootY":1.6,"hips":[0,0],"chest":[-17.6,-78],"neck":[-17.6,-78],"head":[-8.8,-156.2],"shR":[-45.2,-121.8],"elR":[-57.2,-45.8],"haR":[-105.2,3.6],"shL":[16.3,-100.7],"elL":[38.2,-7.2],"haL":[42.7,61.6],"hipR":[-56.3,24.7],"knR":[-66.7,162.9],"ftR":[-27.1,310.1],"hipL":[3.6,55.9],"knL":[-13.1,191.5],"ftL":[34.4,340.6]}]},"walk":{"name":"walk","fps":30,"height":520,"groundY":344,"frameCount":86,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-84.9],"neck":[0.6,-84.9],"head":[1.5,-149.1],"shR":[-71.5,-100.6],"elR":[-174.2,-86.2],"haR":[-242.9,-76.5],"shL":[73.7,-103.6],"elL":[173,-89.6],"haL":[241.5,-80],"hipR":[-33.2,37.2],"knR":[-30.5,193.6],"ftR":[-27.9,342.4],"hipL":[34.2,37.2],"knL":[31.4,193.7],"ftL":[28.8,344]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-84.6],"neck":[-5.8,-84.6],"head":[-7.3,-148.9],"shR":[-78.3,-97],"elR":[-92.1,2.9],"haR":[-91.3,39.8],"shL":[66,-107.6],"elL":[61.1,-12.8],"haL":[72.2,55.4],"hipR":[-36.8,35],"knR":[-14.6,185.3],"ftR":[9.1,317.4],"hipL":[29.5,37.8],"knL":[5.4,172],"ftL":[-8.4,320.6]},{"rootY":2.9,"hips":[0,0],"chest":[-4.6,-84.8],"neck":[-4.6,-84.8],"head":[-6.4,-148.9],"shR":[-77,-97.1],"elR":[-90.6,2.9],"haR":[-90.1,41.3],"shL":[67.1,-107.8],"elL":[61.5,-12.6],"haL":[72.1,55.7],"hipR":[-36.8,35.1],"knR":[-14.7,184.1],"ftR":[9.3,311.3],"hipL":[29.5,37.9],"knL":[3.6,172.2],"ftL":[-9.9,321.8]},{"rootY":3.8,"hips":[0,0],"chest":[-4,-84.8],"neck":[-4,-84.8],"head":[-5.5,-148.8],"shR":[-76.3,-98.1],"elR":[-88.1,2.4],"haR":[-88.2,44.1],"shL":[68,-106.8],"elL":[62.4,-10.8],"haL":[72.4,57.7],"hipR":[-36.9,34.9],"knR":[-15.7,184],"ftR":[8.1,303.8],"hipL":[29.4,38],"knL":[2.8,171.7],"ftL":[-8.7,321.3]},{"rootY":3.6,"hips":[0,0],"chest":[-2.9,-84.9],"neck":[-2.9,-84.9],"head":[-3.4,-148.8],"shR":[-75.1,-98.6],"elR":[-84.8,2.6],"haR":[-85.7,48.5],"shL":[69.3,-106.4],"elL":[64.2,-9.3],"haL":[73.8,59.2],"hipR":[-35.5,36.1],"knR":[-18,188.2],"ftR":[4.3,295.5],"hipL":[31,36.9],"knL":[4.4,172],"ftL":[-7.6,320.9]},{"rootY":2,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[-2.9,-148.7],"shR":[-75,-99.1],"elR":[-82.8,2.7],"haR":[-83.9,53.1],"shL":[69.4,-105.9],"elL":[64.8,-7.9],"haL":[74.2,60.6],"hipR":[-35.7,36],"knR":[-22.7,190.8],"ftR":[-2.9,287.7],"hipL":[30.7,37],"knL":[3.4,174.4],"ftL":[-7.8,322.1]},{"rootY":0.6,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.6,-148.6],"shR":[-74.7,-99.1],"elR":[-80.9,3.3],"haR":[-82.7,58.1],"shL":[69.5,-105.9],"elL":[65.4,-7.2],"haL":[74.4,60.8],"hipR":[-35,36.7],"knR":[-26.4,192.9],"ftR":[-9.8,279.5],"hipL":[31.4,36.2],"knL":[3.5,177.4],"ftL":[-7.6,323.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2,-148.6],"shR":[-74.1,-99.1],"elR":[-78.9,3.7],"haR":[-81.5,61.9],"shL":[69.9,-105.9],"elL":[67.2,-6.7],"haL":[75.3,60.3],"hipR":[-34,37.5],"knR":[-28.4,193.1],"ftR":[-14.1,272.3],"hipL":[32.5,35.2],"knL":[4.8,179.6],"ftL":[-6.8,325.2]},{"rootY":-2.8,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.1,-148.5],"shR":[-74.1,-98.8],"elR":[-77.2,4.5],"haR":[-80.6,65.5],"shL":[69.8,-106.2],"elL":[68.2,-6.6],"haL":[75.5,58.5],"hipR":[-33.8,37.5],"knR":[-30.4,190.8],"ftR":[-17.9,269.4],"hipL":[32.7,35],"knL":[5.4,182.4],"ftL":[-6.7,326.7]},{"rootY":-4.2,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.2,-148.6],"shR":[-74.2,-98.2],"elR":[-76.1,5.4],"haR":[-79.6,68.6],"shL":[69.6,-106.8],"elL":[69.7,-6.8],"haL":[75.2,55.4],"hipR":[-33.4,37.5],"knR":[-30.9,187.3],"ftR":[-22.4,270.9],"hipL":[33.4,34.9],"knL":[6.5,184.6],"ftL":[-6.7,327.8]},{"rootY":-5.4,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[-2.3,-148.7],"shR":[-74.1,-98.1],"elR":[-74.9,5.4],"haR":[-78.3,70.4],"shL":[70,-106.9],"elL":[71.6,-6.7],"haL":[75.1,51.5],"hipR":[-33.2,37.3],"knR":[-29.2,182.8],"ftR":[-26.9,276.6],"hipL":[34,35.2],"knL":[7.5,186.4],"ftL":[-6.1,328.4]},{"rootY":-5.1,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-2.2,-148.7],"shR":[-73.8,-97.8],"elR":[-73.5,5.2],"haR":[-76.8,71.6],"shL":[70.3,-107.2],"elL":[73.8,-7],"haL":[74.8,46.6],"hipR":[-32.7,37.4],"knR":[-26.7,178.5],"ftR":[-31.6,285.8],"hipL":[34.6,35.1],"knL":[8.8,187.6],"ftL":[-5.5,328]},{"rootY":-4.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.6,-148.8],"shR":[-73.2,-97.5],"elR":[-72.2,4.5],"haR":[-75.2,71.9],"shL":[71,-107.5],"elL":[76.1,-7.4],"haL":[74.4,40.8],"hipR":[-32.4,37.3],"knR":[-23.7,175],"ftR":[-34.6,297],"hipL":[34.9,35.1],"knL":[10,188.7],"ftL":[-4.5,327.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1.1,-148.8],"shR":[-72.6,-97],"elR":[-70.6,3.9],"haR":[-73.4,72.2],"shL":[71.5,-108],"elL":[78.2,-7.9],"haL":[74.1,35.1],"hipR":[-31.6,37.7],"knR":[-21.3,172.9],"ftR":[-36,308.4],"hipL":[35.7,34.9],"knL":[11.8,189.4],"ftL":[-3.9,327.3]},{"rootY":-5.9,"hips":[0,0],"chest":[0.3,-84.9],"neck":[0.3,-84.9],"head":[-0.9,-148.8],"shR":[-72.2,-97.2],"elR":[-68.7,2.5],"haR":[-71.2,71.5],"shL":[72.1,-107.9],"elL":[80.4,-7.9],"haL":[74.3,30.1],"hipR":[-31,38.1],"knR":[-19.7,172.5],"ftR":[-34.5,317.3],"hipL":[36.3,34.6],"knL":[13.5,189.5],"ftL":[-3,327.1]},{"rootY":-5.8,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-0.8,-148.7],"shR":[-72.3,-97],"elR":[-67.3,1.5],"haR":[-69.4,70.8],"shL":[71.9,-108.1],"elL":[81.5,-8.2],"haL":[73.5,25.8],"hipR":[-30.8,38],"knR":[-19.2,172.2],"ftR":[-29.4,320.6],"hipL":[36.4,34.8],"knL":[14.7,189.3],"ftL":[-2.6,326.4]},{"rootY":-5.6,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1,-148.7],"shR":[-72.8,-96.8],"elR":[-66.3,0.7],"haR":[-68.1,70],"shL":[71.5,-108.2],"elL":[81.8,-8.5],"haL":[73.1,23.2],"hipR":[-30.7,37.8],"knR":[-19.9,171.4],"ftR":[-22.8,319.6],"hipL":[36.5,35],"knL":[15.6,187.8],"ftL":[-2.7,325]},{"rootY":-5.1,"hips":[0,0],"chest":[0.1,-84.9],"neck":[0.1,-84.9],"head":[-1.2,-148.7],"shR":[-72.6,-96.3],"elR":[-64.8,0.8],"haR":[-66.5,69.9],"shL":[71.7,-108.8],"elL":[82.3,-9],"haL":[73.1,22],"hipR":[-30.1,38.2],"knR":[-19.1,170.5],"ftR":[-17.6,317.9],"hipL":[37,34.8],"knL":[16.5,185.2],"ftL":[-2,322]},{"rootY":-3.5,"hips":[0,0],"chest":[0.4,-84.9],"neck":[0.4,-84.9],"head":[-1.1,-148.6],"shR":[-72.4,-95.7],"elR":[-63.5,1.1],"haR":[-65.3,70.1],"shL":[71.7,-109.4],"elL":[81.9,-9.6],"haL":[72.9,22.9],"hipR":[-30.3,37.9],"knR":[-16.6,171.5],"ftR":[-14.3,319.3],"hipL":[36.8,35],"knL":[17.2,185],"ftL":[-0.1,316.8]},{"rootY":-1.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-1.1,-148.5],"shR":[-72.4,-95.5],"elR":[-62.7,1.7],"haR":[-64.3,70.5],"shL":[71.6,-109.4],"elL":[81.4,-9.7],"haL":[73.3,25.7],"hipR":[-30,38.1],"knR":[-13.6,171.9],"ftR":[-12.1,320.6],"hipL":[37,34.8],"knL":[18.1,184.1],"ftL":[2.1,310.2]},{"rootY":-1.7,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-2.3,-148.3],"shR":[-73.3,-95.1],"elR":[-63.2,2.7],"haR":[-64.7,71.5],"shL":[70.7,-109.7],"elL":[79.4,-10],"haL":[73,30.5],"hipR":[-31.4,36.9],"knR":[-13.6,171.6],"ftR":[-11.5,320.3],"hipL":[35.8,35.8],"knL":[17.9,185.6],"ftL":[3.7,302.5]},{"rootY":-1.9,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.9,-148.2],"shR":[-73.9,-94.4],"elR":[-63.8,4.2],"haR":[-65.6,73.2],"shL":[69.9,-110.3],"elL":[76.7,-10.4],"haL":[73.1,36],"hipR":[-32,36.4],"knR":[-13,172.7],"ftR":[-10.9,320.7],"hipL":[35.2,35.9],"knL":[19.1,187.8],"ftL":[6.4,292.8]},{"rootY":-2.7,"hips":[0,0],"chest":[-1.1,-84.9],"neck":[-1.1,-84.9],"head":[-3.1,-148],"shR":[-73.8,-94.7],"elR":[-64.2,4.9],"haR":[-66.4,74.1],"shL":[70.1,-109.9],"elL":[75.1,-10],"haL":[74.3,42.8],"hipR":[-32.6,36],"knR":[-11.9,174.6],"ftR":[-9.1,321.3],"hipL":[34.7,36.6],"knL":[22.4,191.3],"ftL":[11.3,284.7]},{"rootY":-5,"hips":[0,0],"chest":[-0.8,-84.9],"neck":[-0.8,-84.9],"head":[-2.8,-148],"shR":[-73.6,-95.1],"elR":[-64.8,5.6],"haR":[-67.6,74.9],"shL":[70.5,-109.6],"elL":[73.7,-9.7],"haL":[75.5,48.8],"hipR":[-32.9,35.5],"knR":[-12.4,177.7],"ftR":[-8,323],"hipL":[34.3,37],"knL":[25.5,193.3],"ftL":[15.1,276.3]},{"rootY":-6.5,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.8,-148],"shR":[-74,-95.6],"elR":[-66.4,6],"haR":[-69.5,75.1],"shL":[70.3,-109.1],"elL":[72.4,-9.1],"haL":[76.7,53.7],"hipR":[-33.7,34.9],"knR":[-14.4,180.4],"ftR":[-7.9,324.6],"hipL":[33.6,37.4],"knL":[27.5,193],"ftL":[15.3,270]},{"rootY":-8.3,"hips":[0,0],"chest":[-1,-84.9],"neck":[-1,-84.9],"head":[-2,-148.2],"shR":[-73.7,-96.5],"elR":[-67.6,6],"haR":[-71.2,74.3],"shL":[70.8,-108.2],"elL":[71.9,-8.3],"haL":[78.2,57.5],"hipR":[-34.1,34.7],"knR":[-14.9,182.9],"ftR":[-7.1,326.2],"hipL":[33.2,37.5],"knL":[29.1,190.3],"ftL":[16.1,268.6]},{"rootY":-9.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.3,-148.4],"shR":[-73.6,-97.1],"elR":[-70.2,6.2],"haR":[-73.6,72.9],"shL":[71,-107.7],"elL":[71.4,-7.9],"haL":[78.5,59.4],"hipR":[-34.5,34.6],"knR":[-15.5,185.1],"ftR":[-6.6,327.2],"hipL":[32.8,37.1],"knL":[29.2,185.9],"ftL":[18.2,272.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-1.8,-148.6],"shR":[-74.1,-98.3],"elR":[-73.7,5.3],"haR":[-76.7,69.5],"shL":[70.7,-106.6],"elL":[70.9,-7.3],"haL":[78.9,60.8],"hipR":[-35.3,34.4],"knR":[-17.6,186.4],"ftR":[-6.6,326.8],"hipL":[32,37.5],"knL":[27.1,181.2],"ftL":[20.5,280.6]},{"rootY":-8.9,"hips":[0,0],"chest":[-1.8,-84.9],"neck":[-1.8,-84.9],"head":[-1.3,-148.7],"shR":[-74.2,-98.8],"elR":[-77.4,4.8],"haR":[-78.5,64.8],"shL":[70.6,-106],"elL":[70.7,-7.8],"haL":[78.8,60.6],"hipR":[-35.3,34.8],"knR":[-18.5,187.9],"ftR":[-6.5,326.4],"hipL":[31.9,37.2],"knL":[24.5,175.9],"ftL":[22.1,290.9]},{"rootY":-8.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-1.6,-148.8],"shR":[-74.7,-99.1],"elR":[-81.1,4.1],"haR":[-82.1,59.5],"shL":[70.1,-105.8],"elL":[69.6,-8.7],"haL":[78.1,59.9],"hipR":[-35.9,34.5],"knR":[-19.9,189],"ftR":[-6.9,326.2],"hipL":[31.2,37.4],"knL":[21.5,172.3],"ftL":[22.3,302.5]},{"rootY":-9.7,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.3,-148.9],"shR":[-75,-99.5],"elR":[-84.8,3],"haR":[-84.3,52.2],"shL":[69.8,-105.4],"elL":[68.7,-9.4],"haL":[77,59.2],"hipR":[-35.9,34.7],"knR":[-20.7,190.2],"ftR":[-6.9,327],"hipL":[31.1,37.2],"knL":[19,170.1],"ftL":[21.5,313.1]},{"rootY":-10.3,"hips":[0,0],"chest":[-3.1,-84.9],"neck":[-3.1,-84.9],"head":[-2.7,-149],"shR":[-75.3,-99.6],"elR":[-87.9,2],"haR":[-86.1,44.8],"shL":[69.5,-105.3],"elL":[67.2,-10.4],"haL":[75.4,58.3],"hipR":[-36.3,34.5],"knR":[-21.7,190.2],"ftR":[-7.9,326.8],"hipL":[30.6,37.6],"knL":[17,170.4],"ftL":[19.2,319.8]},{"rootY":-10.1,"hips":[0,0],"chest":[-3.4,-84.9],"neck":[-3.4,-84.9],"head":[-3.4,-148.9],"shR":[-75.5,-99.4],"elR":[-91.1,1],"haR":[-87.8,37.8],"shL":[69.2,-105.5],"elL":[65.8,-11.4],"haL":[73.7,57.3],"hipR":[-36.8,34.2],"knR":[-22.6,189.2],"ftR":[-8.2,325.6],"hipL":[29.9,37.9],"knL":[15.4,171],"ftL":[16.7,321.1]},{"rootY":-9.6,"hips":[0,0],"chest":[-3.3,-84.9],"neck":[-3.3,-84.9],"head":[-4.2,-149],"shR":[-75.4,-99.6],"elR":[-92.3,-0.2],"haR":[-88.5,31.6],"shL":[69.3,-105.3],"elL":[64.8,-11.7],"haL":[72.4,56.9],"hipR":[-36.9,34.3],"knR":[-23.3,187.4],"ftR":[-9.3,323.9],"hipL":[29.7,37.7],"knL":[14.3,171.1],"ftL":[13.6,319.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-3.5,-84.9],"neck":[-3.5,-84.9],"head":[-5,-148.9],"shR":[-75.5,-99.5],"elR":[-93.6,-1.1],"haR":[-89.6,26.8],"shL":[69.1,-105.3],"elL":[63.8,-11.5],"haL":[70.9,57.2],"hipR":[-37.3,34],"knR":[-24,184.9],"ftR":[-10.3,319.8],"hipL":[29.2,37.9],"knL":[13.3,171.6],"ftL":[11.7,320.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-4.4,-149],"shR":[-74.6,-99.6],"elR":[-93.2,-1.4],"haR":[-89.7,24.1],"shL":[70,-105.3],"elL":[64.2,-10.6],"haL":[70.6,58],"hipR":[-37.1,34.3],"knR":[-24.1,184.3],"ftR":[-10.9,314.2],"hipL":[29.3,37.6],"knL":[12.9,172.8],"ftL":[10.4,322.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[-4.2,-149],"shR":[-73.6,-99.5],"elR":[-91.9,-1.1],"haR":[-88.9,24.3],"shL":[71,-105.2],"elL":[64.5,-9.7],"haL":[70.5,59.1],"hipR":[-36.7,34.6],"knR":[-24.3,182.5],"ftR":[-12.4,308.4],"hipL":[29.8,37.2],"knL":[12.6,172.4],"ftL":[8.9,322.7]},{"rootY":-7.4,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-3.5,-149.1],"shR":[-72.7,-99.9],"elR":[-89.2,-0.6],"haR":[-87,26.8],"shL":[71.9,-104.6],"elL":[65.6,-7.9],"haL":[71.5,61],"hipR":[-36.6,34.5],"knR":[-24.9,183.9],"ftR":[-14.6,299.9],"hipL":[30.1,37.4],"knL":[13.7,172.9],"ftL":[9.2,322.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-0.5,-84.9],"neck":[-0.5,-84.9],"head":[-2.8,-149.1],"shR":[-72.3,-100.3],"elR":[-87,0.3],"haR":[-85.5,31.8],"shL":[72.5,-104.1],"elL":[66.8,-6.2],"haL":[72.7,62.8],"hipR":[-35.4,35.4],"knR":[-26.6,188],"ftR":[-18.5,291.9],"hipL":[31.4,36.4],"knL":[14.5,174.4],"ftL":[8.8,323.4]},{"rootY":-10.4,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-3,-149.1],"shR":[-72.4,-100.3],"elR":[-85.6,1.1],"haR":[-84.7,37.5],"shL":[72.5,-104],"elL":[67.2,-5.5],"haL":[73.5,63.1],"hipR":[-35.1,35.8],"knR":[-28.8,191.3],"ftR":[-23.9,283.9],"hipL":[31.8,36.3],"knL":[13.8,177.6],"ftL":[7.2,325.5]},{"rootY":-12.3,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-2.6,-149.2],"shR":[-71.7,-99.4],"elR":[-82.9,2.6],"haR":[-83,44.9],"shL":[72.8,-104.9],"elL":[68.6,-5.9],"haL":[74.8,61.5],"hipR":[-33.6,37.3],"knR":[-29.9,193.6],"ftR":[-26.2,276.7],"hipL":[33.2,34.9],"knL":[13.7,179.9],"ftL":[6.1,326.8]},{"rootY":-14.1,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-3.2,-149.2],"shR":[-72,-99.7],"elR":[-81.3,2.9],"haR":[-82.5,51],"shL":[72.6,-104.7],"elL":[70.3,-5.3],"haL":[76.2,60],"hipR":[-33,37.5],"knR":[-30.9,192.6],"ftR":[-26.5,272.1],"hipL":[34,34.3],"knL":[14.5,182.4],"ftL":[5.2,328.3]},{"rootY":-15.8,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-3.4,-149.3],"shR":[-72.3,-98.8],"elR":[-79.5,4.4],"haR":[-81.8,58.3],"shL":[72.1,-105.6],"elL":[71.6,-5.9],"haL":[76.7,56.1],"hipR":[-33,37.3],"knR":[-31.6,189.3],"ftR":[-27.6,271.8],"hipL":[34.1,34.5],"knL":[14.6,184.9],"ftL":[4.1,329.6]},{"rootY":-16.2,"hips":[0,0],"chest":[-0.5,-85],"neck":[-0.5,-85],"head":[-4,-149.3],"shR":[-72.6,-98.4],"elR":[-77.3,5.1],"haR":[-80.8,63.8],"shL":[71.9,-106],"elL":[73.6,-6],"haL":[77.3,51.5],"hipR":[-32.6,37.1],"knR":[-31,185.1],"ftR":[-29.4,276.7],"hipL":[34.6,34.4],"knL":[14.6,186.4],"ftL":[2.9,329.4]},{"rootY":-15.6,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-4,-149.3],"shR":[-72.6,-97.9],"elR":[-75.5,5.6],"haR":[-79.3,68.5],"shL":[71.9,-106.6],"elL":[76.1,-6.5],"haL":[78.2,45.2],"hipR":[-32.2,37.2],"knR":[-29,180.4],"ftR":[-30.6,285.1],"hipL":[35.1,34.5],"knL":[15.2,187.6],"ftL":[2.6,328.9]},{"rootY":-14.5,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-4.4,-149.4],"shR":[-72.7,-97.4],"elR":[-73.4,5.9],"haR":[-78.2,71.7],"shL":[71.9,-107.1],"elL":[78.4,-7],"haL":[78.7,38.4],"hipR":[-31.9,36.9],"knR":[-26.6,176.2],"ftR":[-32.3,295.7],"hipL":[35.4,34.7],"knL":[15.6,188.8],"ftL":[1.8,328.1]},{"rootY":-14.5,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[-3.7,-149.4],"shR":[-72.4,-97.1],"elR":[-71.2,5.5],"haR":[-76.2,73.4],"shL":[72.2,-107.5],"elL":[81.2,-7.6],"haL":[79.6,31.4],"hipR":[-30.9,37.2],"knR":[-23.9,174.2],"ftR":[-33.1,307.9],"hipL":[36.4,34.1],"knL":[16.6,189.1],"ftL":[1.7,327.2]},{"rootY":-15.2,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.8,-149.4],"shR":[-72.3,-96.9],"elR":[-69.3,4.8],"haR":[-74.1,73.8],"shL":[72.4,-107.7],"elL":[83.2,-8],"haL":[79.9,25],"hipR":[-30.4,37.4],"knR":[-21.9,173.5],"ftR":[-33.4,317.7],"hipL":[36.8,34.2],"knL":[17.5,189.6],"ftL":[1.5,327.4]},{"rootY":-15.1,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-3.4,-149.4],"shR":[-72.2,-96.5],"elR":[-67.8,3.9],"haR":[-72.3,73.1],"shL":[72.5,-108.1],"elL":[85.1,-8.6],"haL":[80.5,19.4],"hipR":[-30.3,37.2],"knR":[-20.3,173.7],"ftR":[-29.8,322.1],"hipL":[36.8,34.6],"knL":[18.4,189.5],"ftL":[2.1,326.7]},{"rootY":-15.1,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.6,-149.4],"shR":[-72.5,-96.4],"elR":[-66.4,2.7],"haR":[-70.1,71.6],"shL":[72.1,-108.3],"elL":[85.8,-8.9],"haL":[80.6,15.8],"hipR":[-29.8,37.5],"knR":[-20.7,173],"ftR":[-24.2,321.2],"hipL":[37.2,34.5],"knL":[18.7,187.6],"ftL":[1.4,325.2]},{"rootY":-13.9,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.5,-149.3],"shR":[-72.7,-96.1],"elR":[-65.1,1.7],"haR":[-67.9,69.9],"shL":[71.9,-108.6],"elL":[86.2,-9.3],"haL":[80.6,13.9],"hipR":[-29.3,37.6],"knR":[-20.2,171.8],"ftR":[-17.6,319.2],"hipL":[37.5,34.5],"knL":[19.3,185],"ftL":[2,321.7]},{"rootY":-12.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.2,-149.2],"shR":[-72.5,-95.8],"elR":[-63.9,1.1],"haR":[-66.1,68.8],"shL":[72,-108.8],"elL":[86,-9.5],"haL":[80.9,14.6],"hipR":[-29.8,37.4],"knR":[-17.5,171.6],"ftR":[-14,319.5],"hipL":[37.1,34.8],"knL":[19.6,183.2],"ftL":[2.9,316.7]},{"rootY":-10.5,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-2.8,-149.1],"shR":[-72.1,-95.8],"elR":[-62.5,0.9],"haR":[-63.8,68.4],"shL":[72.3,-108.8],"elL":[85.8,-9.5],"haL":[81,17.5],"hipR":[-29.4,37.7],"knR":[-14.2,172.7],"ftR":[-11.4,321.3],"hipL":[37.5,34.4],"knL":[20.5,182],"ftL":[4.5,309.4]},{"rootY":-9.5,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-3.3,-149.1],"shR":[-72.9,-95.3],"elR":[-62.6,1.6],"haR":[-63.6,69.3],"shL":[71.3,-109.1],"elL":[83.6,-9.8],"haL":[80.2,22],"hipR":[-30.9,36.4],"knR":[-13.2,172],"ftR":[-11,320.7],"hipL":[36.1,35.6],"knL":[20.8,184.3],"ftL":[6,301.5]},{"rootY":-9,"hips":[0,0],"chest":[-0.3,-84.9],"neck":[-0.3,-84.9],"head":[-3.5,-149],"shR":[-72.8,-95.1],"elR":[-62.4,2.8],"haR":[-63.6,70.8],"shL":[71.2,-109.1],"elL":[81.2,-9.9],"haL":[79.7,29.2],"hipR":[-32,35.6],"knR":[-12.4,171.9],"ftR":[-10,319.7],"hipL":[35.1,36.2],"knL":[22.7,187.6],"ftL":[8.9,291.4]},{"rootY":-9.3,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-2.6,-149],"shR":[-72.3,-95.2],"elR":[-62.4,4],"haR":[-64.4,72.6],"shL":[71.7,-109.1],"elL":[79.1,-9.7],"haL":[79.2,36.8],"hipR":[-32.3,35.3],"knR":[-10.4,173.6],"ftR":[-8.2,320],"hipL":[34.9,36.3],"knL":[26.5,190.8],"ftL":[13.6,281.9]},{"rootY":-10.3,"hips":[0,0],"chest":[0.6,-85],"neck":[0.6,-85],"head":[-1.5,-149.1],"shR":[-71.9,-96],"elR":[-62.4,4.4],"haR":[-65,73.6],"shL":[72.3,-108.4],"elL":[77.4,-8.9],"haL":[79.3,44.8],"hipR":[-32.9,34.9],"knR":[-9.3,176.1],"ftR":[-6.5,321.1],"hipL":[34.2,37],"knL":[30.5,193.5],"ftL":[17.1,272.7]},{"rootY":-11.7,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-1.1,-149.2],"shR":[-72.4,-96.9],"elR":[-63.7,4.6],"haR":[-66.9,73.9],"shL":[72.1,-107.5],"elL":[74.8,-7.8],"haL":[78.6,52],"hipR":[-33.2,34.8],"knR":[-10.6,178.9],"ftR":[-6.7,322.6],"hipL":[34,37.1],"knL":[32.5,192.8],"ftL":[16.5,266.6]},{"rootY":-13.4,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-1.1,-149.2],"shR":[-72.8,-97.6],"elR":[-65.6,5],"haR":[-69.2,73.7],"shL":[71.8,-107],"elL":[71.9,-7],"haL":[77.5,57.3],"hipR":[-33.4,34.5],"knR":[-12.3,181.7],"ftR":[-7.3,323.6],"hipL":[33.8,36.8],"knL":[32.5,190.2],"ftL":[15.7,265.5]},{"rootY":-14.8,"hips":[0,0],"chest":[-0.1,-85],"neck":[-0.1,-85],"head":[-0.3,-149.3],"shR":[-72.4,-98.4],"elR":[-67.4,4.9],"haR":[-71.1,72],"shL":[72.3,-106.1],"elL":[70.3,-6.3],"haL":[76.5,60.6],"hipR":[-34,34.6],"knR":[-13.7,184.4],"ftR":[-7.2,325.4],"hipL":[33.4,36.7],"knL":[32,186.3],"ftL":[18,269.7]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[0.2,-149.4],"shR":[-72.5,-98.9],"elR":[-70.6,4.7],"haR":[-73.9,69],"shL":[72.2,-105.7],"elL":[68.5,-6.1],"haL":[74.8,62.1],"hipR":[-34.9,34.3],"knR":[-15.7,186.1],"ftR":[-7.5,325.9],"hipL":[32.4,37.1],"knL":[30.4,181.9],"ftL":[20.6,278.2]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.8,-85],"neck":[-0.8,-85],"head":[0.2,-149.4],"shR":[-72.7,-99.6],"elR":[-74.1,3.7],"haR":[-77.2,64.1],"shL":[72,-105],"elL":[67.1,-6.1],"haL":[73.1,62.7],"hipR":[-35.1,34.6],"knR":[-17.3,187.9],"ftR":[-7.7,325.8],"hipL":[32.2,36.8],"knL":[27.7,176.9],"ftL":[22.6,289]},{"rootY":-16.2,"hips":[0,0],"chest":[-1.1,-85],"neck":[-1.1,-85],"head":[0.2,-149.3],"shR":[-72.8,-100.2],"elR":[-77.6,2.4],"haR":[-80.1,57.4],"shL":[71.8,-104.5],"elL":[65.7,-6.7],"haL":[71.3,62.3],"hipR":[-35.3,34.7],"knR":[-19.3,189.5],"ftR":[-8.6,326.2],"hipL":[31.9,36.9],"knL":[25.2,173.1],"ftL":[24.3,301.1]},{"rootY":-16.8,"hips":[0,0],"chest":[-1.6,-85],"neck":[-1.6,-85],"head":[0.2,-149.3],"shR":[-73.2,-100.4],"elR":[-81.1,1.2],"haR":[-82.5,50],"shL":[71.3,-104.3],"elL":[64,-7.8],"haL":[69.1,61.2],"hipR":[-36.1,34.2],"knR":[-21.2,189.9],"ftR":[-9.6,326.4],"hipL":[31,37.5],"knL":[23.3,171.1],"ftL":[25.8,312.6]},{"rootY":-18,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[-0.1,-149.2],"shR":[-73.3,-100.5],"elR":[-84.1,-0.3],"haR":[-84.5,42.5],"shL":[71.1,-104.2],"elL":[62.9,-8.9],"haL":[67.7,60.1],"hipR":[-36.4,34.3],"knR":[-22.5,189.9],"ftR":[-10.6,326.6],"hipL":[30.6,37.9],"knL":[21.6,171.1],"ftL":[26.5,320]},{"rootY":-17.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0.2,-149.1],"shR":[-73.5,-100.6],"elR":[-86.6,-1.7],"haR":[-86,34.9],"shL":[71,-104.2],"elL":[61.9,-9.5],"haL":[66.5,59.4],"hipR":[-36.8,34.2],"knR":[-23.9,188.7],"ftR":[-11.9,325.6],"hipL":[30.1,38.2],"knL":[20,171.8],"ftL":[26.2,321.9]},{"rootY":-16.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0,-149],"shR":[-73.4,-100.7],"elR":[-88.1,-3.1],"haR":[-86.7,28.3],"shL":[71,-104.1],"elL":[61.5,-9.5],"haL":[65.8,59.3],"hipR":[-37,34.1],"knR":[-24.8,186.7],"ftR":[-12.6,323.4],"hipL":[29.7,38.2],"knL":[19.3,172],"ftL":[24.1,320.9]},{"rootY":-15.4,"hips":[0,0],"chest":[-2.2,-84.9],"neck":[-2.2,-84.9],"head":[-0.2,-148.9],"shR":[-73.6,-100.9],"elR":[-89,-4.2],"haR":[-87.1,23.5],"shL":[70.8,-104],"elL":[61.2,-9.4],"haL":[65.4,59.4],"hipR":[-36.9,34.3],"knR":[-25.6,184.7],"ftR":[-14.5,319.2],"hipL":[29.8,37.7],"knL":[18.5,172.5],"ftL":[21.3,321.4]},{"rootY":-14.3,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[0,-148.8],"shR":[-73.5,-100.9],"elR":[-89.6,-4.6],"haR":[-87,20.3],"shL":[70.9,-103.9],"elL":[61.5,-8.7],"haL":[65.6,60.3],"hipR":[-37.2,34.1],"knR":[-26.5,182.7],"ftR":[-16.3,313.6],"hipL":[29.4,38.1],"knL":[17.4,173.2],"ftL":[18,323]},{"rootY":-14.2,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[0.3,-148.8],"shR":[-73.3,-100.8],"elR":[-89.1,-3.9],"haR":[-86.5,20.4],"shL":[71.2,-103.9],"elL":[62.3,-7.6],"haL":[66.5,61.4],"hipR":[-35.8,35.3],"knR":[-27.2,182.8],"ftR":[-19.9,307.7],"hipL":[31,37],"knL":[16.5,172.1],"ftL":[16.4,322.4]},{"rootY":-12.7,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[1,-148.7],"shR":[-73.4,-100.7],"elR":[-87.9,-2.8],"haR":[-85.2,23.1],"shL":[71.4,-103.9],"elL":[63.1,-6.5],"haL":[67.7,62.6],"hipR":[-35.6,35.1],"knR":[-28.2,185.2],"ftR":[-22.5,297.3],"hipL":[31.4,37],"knL":[16.8,171.5],"ftL":[15.1,321.3]},{"rootY":-14.3,"hips":[0,0],"chest":[-1.9,-85],"neck":[-1.9,-85],"head":[1.2,-148.7],"shR":[-73.8,-100.5],"elR":[-86.7,-1.1],"haR":[-84.3,28.3],"shL":[71.1,-104.1],"elL":[63.8,-5.7],"haL":[68.9,63],"hipR":[-35,35.7],"knR":[-30.8,189],"ftR":[-27.9,288.9],"hipL":[32.1,36.4],"knL":[16.2,173.2],"ftL":[12.9,321.8]},{"rootY":-16.1,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[1,-148.6],"shR":[-74,-100.2],"elR":[-85.7,0],"haR":[-83,34.2],"shL":[70.9,-104.3],"elL":[64.9,-5.5],"haL":[70.7,62.3],"hipR":[-34.2,36.5],"knR":[-32.5,192.3],"ftR":[-33,280.5],"hipL":[32.7,35.6],"knL":[15.2,176.1],"ftL":[10.6,323.6]},{"rootY":-17.9,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[1.1,-148.7],"shR":[-73.8,-99.9],"elR":[-84,1],"haR":[-81.5,40.9],"shL":[71,-104.6],"elL":[66.7,-5.4],"haL":[72.4,60.8],"hipR":[-33,37.4],"knR":[-33,193.8],"ftR":[-33.9,273],"hipL":[33.9,34.3],"knL":[15,178.6],"ftL":[9,324.9]},{"rootY":-20,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[0.6,-148.7],"shR":[-73.8,-99.6],"elR":[-81.6,2.1],"haR":[-80.6,48.1],"shL":[70.7,-105.1],"elL":[68.3,-5.5],"haL":[73.8,58.1],"hipR":[-33.8,36.7],"knR":[-32.5,191.4],"ftR":[-31.2,268.3],"hipL":[33.1,34.9],"knL":[14.4,181.8],"ftL":[8.7,326.9]},{"rootY":-21.5,"hips":[0,0],"chest":[-2.1,-85],"neck":[-2.1,-85],"head":[-0.1,-148.8],"shR":[-74.1,-98.8],"elR":[-80,3.8],"haR":[-80.1,55.7],"shL":[70.3,-105.9],"elL":[70.2,-6],"haL":[75,54.2],"hipR":[-32.7,37.4],"knR":[-32.6,189],"ftR":[-32.6,268],"hipL":[34.5,34.3],"knL":[15.4,184.5],"ftL":[6.7,328.9]},{"rootY":-22.3,"hips":[0,0],"chest":[-1.5,-85],"neck":[-1.5,-85],"head":[0.3,-148.9],"shR":[-73.7,-98.3],"elR":[-77.9,5],"haR":[-78.7,61.9],"shL":[70.9,-106.4],"elL":[73.2,-6.4],"haL":[76.4,49.9],"hipR":[-32.6,37.1],"knR":[-29.9,184.3],"ftR":[-31.3,272.9],"hipL":[34.7,34.4],"knL":[16,186.2],"ftL":[6.3,329.2]},{"rootY":-21.7,"hips":[0,0],"chest":[-1.2,-85],"neck":[-1.2,-85],"head":[0.3,-149],"shR":[-73.6,-97.8],"elR":[-75.4,5.8],"haR":[-77.2,67.4],"shL":[71,-107],"elL":[75.3,-6.8],"haL":[77.2,44.4],"hipR":[-31.7,37.3],"knR":[-27.2,180],"ftR":[-31.3,281.7],"hipL":[35.6,34.2],"knL":[16.6,187],"ftL":[5.2,328]},{"rootY":-21.9,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[0.6,-149],"shR":[-73.5,-97.2],"elR":[-72.8,6.4],"haR":[-75.9,71.3],"shL":[71.1,-107.5],"elL":[77.5,-7.4],"haL":[78,37.9],"hipR":[-30.8,37.7],"knR":[-24.8,177.1],"ftR":[-32.6,293.8],"hipL":[36.5,33.5],"knL":[17.3,187.9],"ftL":[4,327.5]},{"rootY":-21.1,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[1.3,-149.1],"shR":[-72.6,-97],"elR":[-70.1,6.1],"haR":[-73.3,73.6],"shL":[72.1,-107.7],"elL":[80,-7.7],"haL":[79,32.1],"hipR":[-30.2,37.9],"knR":[-21.6,174.9],"ftR":[-30.6,306.5],"hipL":[37,33.3],"knL":[18,188.4],"ftL":[4.2,326.4]},{"rootY":-21.2,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[0.5,-149.1],"shR":[-72.9,-97.7],"elR":[-68.3,4.7],"haR":[-71.5,73.6],"shL":[71.9,-107.3],"elL":[81.1,-7.4],"haL":[79.1,27],"hipR":[-30.8,37.2],"knR":[-19.9,174],"ftR":[-27.3,317.9],"hipL":[36.4,34.9],"knL":[18.4,190.3],"ftL":[3.9,326]},{"rootY":-22,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.8,-149.1],"shR":[-72.6,-97.1],"elR":[-66,4.1],"haR":[-69,73.4],"shL":[72.2,-107.8],"elL":[82.2,-8],"haL":[79.3,21.9],"hipR":[-31.6,36.4],"knR":[-17.9,174],"ftR":[-20.8,322.6],"hipL":[35.6,35.8],"knL":[19,191.4],"ftL":[3.9,326.3]},{"rootY":-22.4,"hips":[0,0],"chest":[0.5,-85],"neck":[0.5,-85],"head":[0.8,-149],"shR":[-72.5,-96.8],"elR":[-64,2.7],"haR":[-65.9,71.7],"shL":[72.3,-107.9],"elL":[83.1,-8.2],"haL":[79.8,18.9],"hipR":[-30.8,37],"knR":[-16.7,174.3],"ftR":[-14,322.4],"hipL":[36.3,35.6],"knL":[19.5,190.4],"ftL":[3,325.1]},{"rootY":-20.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.5,-148.9],"shR":[-72.8,-96.8],"elR":[-62.6,1],"haR":[-64.4,69.7],"shL":[72,-108.2],"elL":[82.6,-8.4],"haL":[79.2,17.9],"hipR":[-29.2,38],"knR":[-14.7,174.5],"ftR":[-7.3,321.6],"hipL":[37.5,34.7],"knL":[20.3,188.1],"ftL":[2.9,321.6]},{"rootY":-19.4,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.6,-148.9],"shR":[-72.7,-96.4],"elR":[-61.1,0.3],"haR":[-62.2,68],"shL":[72,-108.3],"elL":[81.9,-8.5],"haL":[79.2,18.8],"hipR":[-31,36.5],"knR":[-11.8,174.2],"ftR":[-3.1,321.5],"hipL":[35.9,36.1],"knL":[20.7,189],"ftL":[5,317.3]},{"rootY":-17.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.4,-148.8],"shR":[-72.8,-96.2],"elR":[-60,-0.1],"haR":[-61.3,67.6],"shL":[72,-108.5],"elL":[81.1,-8.8],"haL":[79.6,21.5],"hipR":[-30.7,36.6],"knR":[-8.1,173.7],"ftR":[-0.7,322.2],"hipL":[36.2,35.8],"knL":[21.8,188.1],"ftL":[6.5,309.6]}]},"wave":{"name":"wave","fps":30,"height":520,"groundY":329,"frameCount":75,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.8,-85.6],"neck":[0.8,-85.6],"head":[0.6,-164.3],"shR":[-68.1,-121.8],"elR":[-162.5,-108.5],"haR":[-233.5,-98.5],"shL":[76,-117],"elL":[171.2,-103.7],"haL":[243.5,-93.5],"hipR":[-69.8,34.9],"knR":[-67.3,174.6],"ftR":[-64.7,326.9],"hipL":[69.7,34.9],"knL":[67.4,172],"ftL":[64.6,329.1]},{"rootY":0.1,"hips":[0,0],"chest":[-12.5,-83.8],"neck":[-12.5,-83.8],"head":[0.9,-160.9],"shR":[39,-114.9],"elR":[75.2,-27.7],"haR":[49.9,26.4],"shL":[-59.7,-120.1],"elL":[-56.6,-26.8],"haL":[-93,36.5],"hipR":[34,33.9],"knR":[37.9,165.4],"ftR":[12.5,307.8],"hipL":[-66.4,45.8],"knL":[-97.9,178.9],"ftL":[-125.5,332.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.7,-83.8],"neck":[-12.7,-83.8],"head":[-0.1,-161.1],"shR":[39,-116],"elR":[75.8,-31.2],"haR":[44.7,6.8],"shL":[-60.7,-119.1],"elL":[-56.5,-25.6],"haL":[-92,38.2],"hipR":[34.8,33.6],"knR":[39.6,164.9],"ftR":[14.2,307.2],"hipL":[-66.8,45.8],"knL":[-101,177.6],"ftL":[-124.7,330.9]},{"rootY":-0.4,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-0.3,-161.3],"shR":[39.2,-117],"elR":[70.8,-35.7],"haR":[40.9,-28.3],"shL":[-61.4,-118.1],"elL":[-56.5,-24.5],"haL":[-91.5,39.6],"hipR":[35.7,32.8],"knR":[41.4,164],"ftR":[16.9,306.3],"hipL":[-67,46.2],"knL":[-103,176.6],"ftL":[-121.8,329.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-11.8,-84.2],"neck":[-11.8,-84.2],"head":[0.5,-161.9],"shR":[41.3,-117.7],"elR":[60.4,-46.1],"haR":[41.5,-77],"shL":[-61.7,-118.1],"elL":[-56.2,-24.2],"haL":[-90.8,40.1],"hipR":[36.6,32.2],"knR":[44.3,162.9],"ftR":[21.4,305.2],"hipL":[-67.1,46.7],"knL":[-102.1,176.4],"ftL":[-114.8,329.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-11,-84.5],"neck":[-11,-84.5],"head":[1.9,-162],"shR":[42.5,-118.7],"elR":[50.2,-64.6],"haR":[44.4,-121.3],"shL":[-61,-117.3],"elL":[-55.9,-23],"haL":[-90.5,41.3],"hipR":[37.2,31.4],"knR":[47.5,161.6],"ftR":[27.4,304],"hipL":[-67.1,47.1],"knL":[-98.3,177.3],"ftL":[-106.8,330.6]},{"rootY":-1.9,"hips":[0,0],"chest":[-10.2,-84.7],"neck":[-10.2,-84.7],"head":[3.9,-162.1],"shR":[43.7,-119.7],"elR":[64.8,-82.4],"haR":[36.6,-140.4],"shL":[-60.7,-116.6],"elL":[-54.4,-22.1],"haL":[-89.1,42.1],"hipR":[37.8,30.8],"knR":[50.8,160.8],"ftR":[35,303.5],"hipL":[-67.5,47],"knL":[-92.2,179.1],"ftL":[-97.3,333]},{"rootY":-3.3,"hips":[0,0],"chest":[-10.1,-84.9],"neck":[-10.1,-84.9],"head":[5.5,-161.9],"shR":[43.9,-120.5],"elR":[79.2,-105.8],"haR":[33.5,-152.7],"shL":[-60.7,-116],"elL":[-53.1,-21.4],"haL":[-87.4,43],"hipR":[37.8,31.7],"knR":[53.5,161.7],"ftR":[43.5,305.2],"hipL":[-68.4,45.8],"knL":[-85.5,179.8],"ftL":[-86,334.4]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.9,-85.1],"neck":[-9.9,-85.1],"head":[7.1,-161.8],"shR":[44.5,-121],"elR":[81,-115],"haR":[36.3,-163.9],"shL":[-61.1,-115.8],"elL":[-53.4,-20.9],"haL":[-86.9,43.9],"hipR":[37.3,32.7],"knR":[55.5,163.3],"ftR":[52,307.8],"hipL":[-69.2,44.5],"knL":[-77.9,179.9],"ftL":[-73.5,335.2]},{"rootY":-5.6,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[8.6,-161.3],"shR":[44.2,-122.1],"elR":[65.9,-110.9],"haR":[42,-174.4],"shL":[-61.8,-114.6],"elL":[-54.9,-19.6],"haL":[-88.5,45.2],"hipR":[36.9,33.6],"knR":[56.5,165.2],"ftR":[59.4,310.7],"hipL":[-69.8,43.4],"knL":[-70.1,179.6],"ftL":[-60.8,335.4]},{"rootY":-6.3,"hips":[0,0],"chest":[-10.4,-85.2],"neck":[-10.4,-85.2],"head":[9,-161.1],"shR":[44.1,-122.3],"elR":[54.1,-111.1],"haR":[45.8,-181.3],"shL":[-61.2,-114.2],"elL":[-56,-19.1],"haL":[-90.5,45.2],"hipR":[37,35],"knR":[57.9,167.5],"ftR":[64.4,314.6],"hipL":[-70.5,42.3],"knL":[-63.1,178.5],"ftL":[-48.5,334.4]},{"rootY":-6.7,"hips":[0,0],"chest":[-10.6,-85.2],"neck":[-10.6,-85.2],"head":[9.2,-160.9],"shR":[44.4,-122.1],"elR":[69.2,-111.8],"haR":[37.6,-173.6],"shL":[-61.7,-114.4],"elL":[-58,-19.1],"haL":[-94.8,43.8],"hipR":[37.5,36.2],"knR":[60.1,169.3],"ftR":[70.5,317.2],"hipL":[-71.3,41.2],"knL":[-57.1,177.2],"ftL":[-37.2,332.7]},{"rootY":-6.8,"hips":[0,0],"chest":[-10.5,-85.3],"neck":[-10.5,-85.3],"head":[9.6,-160.7],"shR":[45.1,-122.2],"elR":[82.9,-122.3],"haR":[35.9,-170.6],"shL":[-62.2,-114.2],"elL":[-58.7,-19.1],"haL":[-98.1,42.2],"hipR":[37.8,37.6],"knR":[63.6,170.4],"ftR":[77.5,318.6],"hipL":[-71.9,40.2],"knL":[-52.2,175.7],"ftL":[-27.6,330.7]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.8,-85.2],"neck":[-10.8,-85.2],"head":[7.8,-161.1],"shR":[44.8,-123.1],"elR":[87.7,-125.3],"haR":[40.1,-172.7],"shL":[-63.4,-113.2],"elL":[-59.8,-18.2],"haL":[-100.9,41.9],"hipR":[37.8,38.8],"knR":[65.4,171.9],"ftR":[83.5,320],"hipL":[-72.3,39.4],"knL":[-49.1,174.3],"ftL":[-21,328.9]},{"rootY":-6.2,"hips":[0,0],"chest":[-11.2,-85.1],"neck":[-11.2,-85.1],"head":[7.9,-160.6],"shR":[44.3,-123.7],"elR":[80.7,-118.5],"haR":[50.9,-180.1],"shL":[-64.5,-112.3],"elL":[-61.3,-17.3],"haL":[-102,43.1],"hipR":[38,39],"knR":[66.2,172.5],"ftR":[87.9,320.5],"hipL":[-72.1,39.6],"knL":[-46,174.1],"ftL":[-15.2,328.1]},{"rootY":-6.3,"hips":[0,0],"chest":[-11.8,-85.1],"neck":[-11.8,-85.1],"head":[7.5,-160.4],"shR":[43,-124.4],"elR":[70.5,-117.4],"haR":[57.6,-186.8],"shL":[-65,-111.5],"elL":[-62.3,-16.5],"haL":[-101.4,44.9],"hipR":[38.2,39.3],"knR":[67.5,173.2],"ftR":[91.7,321.3],"hipL":[-72.1,39.6],"knL":[-43.4,173.5],"ftL":[-10.1,327]},{"rootY":-5.9,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[7.9,-160.1],"shR":[43.3,-123.9],"elR":[71.6,-114.9],"haR":[55.9,-183.7],"shL":[-65.5,-111.8],"elL":[-62.5,-16.8],"haL":[-100.3,45.5],"hipR":[38.8,39.5],"knR":[68.7,173.6],"ftR":[95,321.7],"hipL":[-72.2,39.6],"knL":[-40.6,172.9],"ftL":[-4.6,325.7]},{"rootY":-5.4,"hips":[0,0],"chest":[-12,-85],"neck":[-12,-85],"head":[6.7,-160.6],"shR":[44,-123.7],"elR":[84,-115.7],"haR":[45.7,-173.6],"shL":[-65.9,-112],"elL":[-62,-17],"haL":[-99.2,45.6],"hipR":[39.4,40.1],"knR":[69.7,174.6],"ftR":[97.2,322.8],"hipL":[-72.8,39],"knL":[-38.7,171.7],"ftL":[0,323.8]},{"rootY":-4.9,"hips":[0,0],"chest":[-11.8,-85],"neck":[-11.8,-85],"head":[6.3,-160.7],"shR":[44.6,-123.6],"elR":[92.2,-120.5],"haR":[42.3,-167.7],"shL":[-66.3,-112.2],"elL":[-61.7,-17.4],"haL":[-98.9,45.3],"hipR":[39.8,40.3],"knR":[69.5,175.2],"ftR":[99.4,323.1],"hipL":[-72.9,39],"knL":[-37.6,171.4],"ftL":[2.3,323]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[6.4,-160.5],"shR":[44,-124],"elR":[92.7,-121.7],"haR":[45.5,-171.2],"shL":[-66.7,-111.7],"elL":[-62.4,-16.9],"haL":[-99.2,46],"hipR":[39.6,40.8],"knR":[69.1,176.1],"ftR":[101.1,323.7],"hipL":[-73.1,38.4],"knL":[-37.1,170.6],"ftL":[3.4,321.9]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.5,-85],"neck":[-12.5,-85],"head":[5.3,-160.6],"shR":[43.4,-124.2],"elR":[84.2,-116.3],"haR":[55.5,-179.1],"shL":[-67,-111.4],"elL":[-62.7,-16.6],"haL":[-99.9,46.2],"hipR":[39.3,40.1],"knR":[69.6,175.2],"ftR":[101.1,322.9],"hipL":[-72.6,39.2],"knL":[-35.6,171.1],"ftL":[5.9,322]},{"rootY":-4.5,"hips":[0,0],"chest":[-12.6,-85],"neck":[-12.6,-85],"head":[4.3,-160.7],"shR":[43.6,-124],"elR":[73.7,-114.7],"haR":[59.9,-184.1],"shL":[-67.2,-111.6],"elL":[-62.8,-16.7],"haL":[-99.5,46.3],"hipR":[39,39.5],"knR":[69.3,174.5],"ftR":[101.1,322.1],"hipL":[-72.3,39.6],"knL":[-35.3,171.5],"ftL":[5.9,322.4]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.6,-85],"neck":[-12.6,-85],"head":[5,-160.5],"shR":[43.2,-124.4],"elR":[73.8,-111.9],"haR":[54.3,-180],"shL":[-66.6,-111.1],"elL":[-62.7,-16.1],"haL":[-99.2,47],"hipR":[39,39.3],"knR":[69.4,174.4],"ftR":[101.3,322],"hipL":[-72.6,39.3],"knL":[-35.5,171.3],"ftL":[5.6,322.1]},{"rootY":-4,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[5.4,-160.5],"shR":[44.2,-124],"elR":[84.6,-113.9],"haR":[43.8,-170.4],"shL":[-66.4,-111.6],"elL":[-62.2,-16.7],"haL":[-99.4,46],"hipR":[39.2,39.7],"knR":[69.3,174.8],"ftR":[101.5,322.4],"hipL":[-72.9,38.8],"knL":[-35.3,170.6],"ftL":[6.7,321.2]},{"rootY":-3.7,"hips":[0,0],"chest":[-12,-85],"neck":[-12,-85],"head":[4.5,-160.9],"shR":[44.4,-123.8],"elR":[91.6,-119],"haR":[41.3,-166.4],"shL":[-66.4,-111.8],"elL":[-62.1,-16.8],"haL":[-99.7,45.6],"hipR":[39.1,39.7],"knR":[68.9,175],"ftR":[101.3,322.5],"hipL":[-72.9,38.8],"knL":[-35.5,170.6],"ftL":[6,321.3]},{"rootY":-3.7,"hips":[0,0],"chest":[-12.8,-84.9],"neck":[-12.8,-84.9],"head":[4.3,-160.4],"shR":[43.3,-123.9],"elR":[90.4,-118.1],"haR":[46.5,-171.2],"shL":[-67.3,-111.7],"elL":[-62.8,-16.8],"haL":[-99.9,45.9],"hipR":[38.8,39.8],"knR":[68,175.2],"ftR":[100.5,322.7],"hipL":[-72.6,39.1],"knL":[-36,171.1],"ftL":[4.3,322]},{"rootY":-4.1,"hips":[0,0],"chest":[-14,-84.7],"neck":[-14,-84.7],"head":[2.3,-160.6],"shR":[41.9,-123.8],"elR":[79.9,-111.8],"haR":[56.4,-177.4],"shL":[-68.6,-111.3],"elL":[-63.1,-16.6],"haL":[-100,46.3],"hipR":[38.5,39.6],"knR":[67.3,175],"ftR":[99.3,322.6],"hipL":[-72.1,39.6],"knL":[-35.8,171.7],"ftL":[4.4,322.6]},{"rootY":-4.4,"hips":[0,0],"chest":[-14.5,-84.6],"neck":[-14.5,-84.6],"head":[1.3,-160.6],"shR":[41.8,-123.3],"elR":[69.2,-108.1],"haR":[61.4,-178.8],"shL":[-69.6,-111.9],"elL":[-63.7,-17.2],"haL":[-99.5,46.4],"hipR":[38.1,39.4],"knR":[67.7,174.5],"ftR":[98.5,322.3],"hipL":[-71.6,40.1],"knL":[-36,172.4],"ftL":[3.3,323.4]},{"rootY":-4.6,"hips":[0,0],"chest":[-14.7,-84.6],"neck":[-14.7,-84.6],"head":[0.8,-160.5],"shR":[41.7,-123.3],"elR":[73.5,-102.3],"haR":[54.6,-170.5],"shL":[-70.1,-111.8],"elL":[-64.2,-17.1],"haL":[-99.2,46.9],"hipR":[37.8,39.9],"knR":[67.8,174.7],"ftR":[97.6,322.6],"hipL":[-71.6,39.8],"knL":[-36.1,172.2],"ftL":[3.1,323.2]},{"rootY":-4.8,"hips":[0,0],"chest":[-14.9,-84.5],"neck":[-14.9,-84.5],"head":[0,-160.8],"shR":[41.2,-123.4],"elR":[88.9,-105.1],"haR":[45.1,-159],"shL":[-70.4,-111.7],"elL":[-63.6,-17.2],"haL":[-99,46.6],"hipR":[37.4,40.3],"knR":[67.2,175.1],"ftR":[96.5,323],"hipL":[-71.5,39.6],"knL":[-36.6,172.1],"ftL":[2.1,323.3]},{"rootY":-4.8,"hips":[0,0],"chest":[-15.1,-84.5],"neck":[-15.1,-84.5],"head":[0.1,-160.7],"shR":[40.8,-123.2],"elR":[97.3,-112.4],"haR":[44.4,-155.8],"shL":[-70.8,-111.9],"elL":[-63.1,-17.5],"haL":[-99.1,45.9],"hipR":[36.8,40.4],"knR":[65.8,175.4],"ftR":[95.4,323.3],"hipL":[-71,39.9],"knL":[-37,172.6],"ftL":[0.5,324.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-15.8,-84.3],"neck":[-15.8,-84.3],"head":[-0.5,-160.7],"shR":[39.1,-123.4],"elR":[94.6,-111.6],"haR":[51.7,-164.5],"shL":[-71.3,-111.5],"elL":[-62.4,-17.2],"haL":[-98.2,46.2],"hipR":[36.4,40],"knR":[63.9,175.4],"ftR":[93.3,323.2],"hipL":[-70.4,40.5],"knL":[-37.9,173.6],"ftL":[-2.4,325.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-16.7,-84.1],"neck":[-16.7,-84.1],"head":[-2,-160.7],"shR":[38.2,-123.1],"elR":[83.7,-106.6],"haR":[62.1,-172.1],"shL":[-71.9,-111.6],"elL":[-62.2,-17.1],"haL":[-97.1,46.8],"hipR":[35.6,39.9],"knR":[62.8,175.3],"ftR":[91.4,323.2],"hipL":[-69.8,40.8],"knL":[-38.2,174.1],"ftL":[-3.2,326.2]},{"rootY":-5.7,"hips":[0,0],"chest":[-16.6,-84.2],"neck":[-16.6,-84.2],"head":[-2.7,-160.8],"shR":[37.4,-123.4],"elR":[69.9,-105.5],"haR":[66.9,-176],"shL":[-71,-111.2],"elL":[-61.4,-16.4],"haL":[-95,48.1],"hipR":[34.7,39.5],"knR":[62.6,174.4],"ftR":[89.8,322.5],"hipL":[-69.3,41.2],"knL":[-38.8,174.7],"ftL":[-5.2,327.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-16.7,-84.2],"neck":[-16.7,-84.2],"head":[-3,-160.7],"shR":[36.3,-123.8],"elR":[62.2,-101.3],"haR":[58.7,-171.8],"shL":[-70.3,-110.9],"elL":[-60.5,-16],"haL":[-92.8,49.1],"hipR":[34.5,39.5],"knR":[61.7,174.5],"ftR":[87.7,322.7],"hipL":[-69.3,41.1],"knL":[-39.6,174.9],"ftL":[-6.8,327.7]},{"rootY":-5.7,"hips":[0,0],"chest":[-16,-84.4],"neck":[-16,-84.4],"head":[-3.8,-161.2],"shR":[38.3,-122.9],"elR":[71.1,-97.3],"haR":[41.8,-161.2],"shL":[-69.4,-112.2],"elL":[-59.3,-17.2],"haL":[-91.3,48],"hipR":[34.1,39.6],"knR":[59.8,174.9],"ftR":[85.5,323.1],"hipL":[-69.5,40.7],"knL":[-40.7,174.7],"ftL":[-8.7,327.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-15.7,-84.4],"neck":[-15.7,-84.4],"head":[-2.7,-161],"shR":[38.6,-122.7],"elR":[81.3,-105],"haR":[29.9,-152.6],"shL":[-68.8,-112.5],"elL":[-58.8,-17.5],"haL":[-91.4,47.5],"hipR":[32.8,39.8],"knR":[57.9,175.1],"ftR":[83.1,323.3],"hipL":[-69.3,40.2],"knL":[-42,174.5],"ftL":[-11.9,328]},{"rootY":-5.7,"hips":[0,0],"chest":[-16,-84.4],"neck":[-16,-84.4],"head":[-2.4,-160.9],"shR":[37,-123.3],"elR":[83.8,-112.6],"haR":[29.2,-155.8],"shL":[-68.2,-111.9],"elL":[-58.3,-16.9],"haL":[-91.9,47.7],"hipR":[31.5,39.2],"knR":[54.9,174.9],"ftR":[80.8,322.9],"hipL":[-68.6,40.7],"knL":[-43.3,175.4],"ftL":[-15.5,329.4]},{"rootY":-5.8,"hips":[0,0],"chest":[-16.3,-84.4],"neck":[-16.3,-84.4],"head":[-2.8,-161],"shR":[36.2,-123.3],"elR":[76.5,-107.5],"haR":[39.2,-166.4],"shL":[-67.5,-111.6],"elL":[-57.7,-16.5],"haL":[-91.4,48],"hipR":[30.3,38.6],"knR":[51.9,174.7],"ftR":[78.9,322.3],"hipL":[-68,41],"knL":[-44.9,176.1],"ftL":[-19.7,330.6]},{"rootY":-5.9,"hips":[0,0],"chest":[-16.4,-84.4],"neck":[-16.4,-84.4],"head":[-2.7,-160.9],"shR":[35.6,-123.6],"elR":[62.4,-103.2],"haR":[44.8,-171.3],"shL":[-66.8,-111.3],"elL":[-57,-16.1],"haL":[-90.7,48.5],"hipR":[29.5,37.6],"knR":[50,173.9],"ftR":[76.9,321.2],"hipL":[-67.4,41.7],"knL":[-46.4,177.1],"ftL":[-23.4,332.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-15.7,-84.5],"neck":[-15.7,-84.5],"head":[-2.1,-161],"shR":[36.5,-123.2],"elR":[57.5,-99.1],"haR":[42.6,-168.4],"shL":[-65.6,-111.9],"elL":[-56.4,-16.6],"haL":[-89.3,48.4],"hipR":[29.6,36.8],"knR":[50.2,172.4],"ftR":[72,320.4],"hipL":[-67.5,42],"knL":[-48.3,177.7],"ftL":[-27,333]},{"rootY":-5.6,"hips":[0,0],"chest":[-14.4,-84.7],"neck":[-14.4,-84.7],"head":[-0.5,-161.2],"shR":[37.9,-123.3],"elR":[67.3,-96.4],"haR":[31.4,-157],"shL":[-64,-112.1],"elL":[-55.1,-16.9],"haL":[-87.7,48.3],"hipR":[30.4,36.3],"knR":[50.6,170.8],"ftR":[65.9,319],"hipL":[-67.8,42.2],"knL":[-50.3,178.1],"ftL":[-30.5,333.8]},{"rootY":-5.9,"hips":[0,0],"chest":[-13.4,-84.9],"neck":[-13.4,-84.9],"head":[1.7,-161.1],"shR":[39.5,-122.8],"elR":[78.6,-100.8],"haR":[23.4,-144.6],"shL":[-63.3,-113.1],"elL":[-53.4,-18.1],"haL":[-86.7,46.8],"hipR":[31.2,36.1],"knR":[50.4,169.9],"ftR":[60.8,317.9],"hipL":[-68.2,42.3],"knL":[-52.6,178.3],"ftL":[-34.5,334.4]},{"rootY":-6,"hips":[0,0],"chest":[-12.9,-85],"neck":[-12.9,-85],"head":[2.4,-161.3],"shR":[40.6,-122.1],"elR":[83.1,-105.2],"haR":[22.8,-141.3],"shL":[-63,-114],"elL":[-53.5,-19.1],"haL":[-86.5,46],"hipR":[31.9,35.4],"knR":[49.6,168.6],"ftR":[55.2,316.2],"hipL":[-68.1,42.8],"knL":[-55.6,179.2],"ftL":[-41.1,335.6]},{"rootY":-5.9,"hips":[0,0],"chest":[-12.7,-85],"neck":[-12.7,-85],"head":[2.3,-161.5],"shR":[41.1,-121.8],"elR":[79.3,-100.5],"haR":[32.1,-151.6],"shL":[-63.1,-114.4],"elL":[-54.2,-19.6],"haL":[-87.6,45.3],"hipR":[32.3,35],"knR":[49.2,167.3],"ftR":[50.7,313.7],"hipL":[-68,43.3],"knL":[-59.6,180],"ftL":[-50,336.8]},{"rootY":-5.7,"hips":[0,0],"chest":[-12.8,-85],"neck":[-12.8,-85],"head":[2.3,-161.5],"shR":[40.9,-122],"elR":[71.9,-96.5],"haR":[46.7,-160.3],"shL":[-63.1,-114.1],"elL":[-54.4,-19.2],"haL":[-89,45],"hipR":[32.1,34.7],"knR":[48.7,166],"ftR":[47.3,311],"hipL":[-67.5,43.7],"knL":[-64.5,180.8],"ftL":[-61.1,337.8]},{"rootY":-5.2,"hips":[0,0],"chest":[-12.9,-84.9],"neck":[-12.9,-84.9],"head":[2.2,-161.5],"shR":[40.5,-122.1],"elR":[66.3,-95.9],"haR":[64.7,-163.2],"shL":[-63.1,-114],"elL":[-54.7,-19.1],"haL":[-90.3,44.6],"hipR":[32,33.5],"knR":[48.8,163.6],"ftR":[42.1,307.4],"hipL":[-66.9,44.7],"knL":[-70.7,181.7],"ftL":[-73.7,338.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-13.5,-84.8],"neck":[-13.5,-84.8],"head":[1.7,-161.3],"shR":[39.5,-122.2],"elR":[67.1,-91.3],"haR":[81.3,-153],"shL":[-63.3,-113.7],"elL":[-54.6,-18.7],"haL":[-90.6,44.6],"hipR":[31.8,32.6],"knR":[47.2,162.2],"ftR":[35.9,305.1],"hipL":[-66.4,45.5],"knL":[-78,181.8],"ftL":[-86.7,338.3]},{"rootY":-3.5,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[1.7,-161.3],"shR":[39.4,-122.3],"elR":[74,-81],"haR":[91.7,-132.1],"shL":[-63,-113.6],"elL":[-53.9,-18.7],"haL":[-89.2,45],"hipR":[31.8,31.6],"knR":[45.9,161],"ftR":[30.4,303.1],"hipL":[-66.2,46.1],"knL":[-84.3,181.4],"ftL":[-96.7,337.1]},{"rootY":-2.3,"hips":[0,0],"chest":[-13.5,-84.8],"neck":[-13.5,-84.8],"head":[1.7,-161.1],"shR":[39.8,-121.9],"elR":[79.6,-67.5],"haR":[96.2,-102.9],"shL":[-63.2,-114],"elL":[-53.7,-19.2],"haL":[-87.7,45.2],"hipR":[32.3,30.8],"knR":[44.2,160],"ftR":[25.4,301.5],"hipL":[-66.1,46.6],"knL":[-89.3,181],"ftL":[-104.7,336]},{"rootY":-1.5,"hips":[0,0],"chest":[-12.7,-84.9],"neck":[-12.7,-84.9],"head":[2.6,-161],"shR":[40.7,-121.5],"elR":[82.4,-54.2],"haR":[95.9,-69.5],"shL":[-62.3,-114.6],"elL":[-53.9,-19.7],"haL":[-86.2,45.7],"hipR":[33,30.4],"knR":[42.9,159.7],"ftR":[21.4,300.8],"hipL":[-66.4,46.7],"knL":[-92.5,180.5],"ftL":[-110.5,334.8]},{"rootY":-1.1,"hips":[0,0],"chest":[-11.8,-85],"neck":[-11.8,-85],"head":[3.9,-161],"shR":[42.5,-120.7],"elR":[81.5,-43],"haR":[92.4,-36.6],"shL":[-61.5,-115.6],"elL":[-54.7,-20.8],"haL":[-85.7,45.3],"hipR":[34.1,30.5],"knR":[41.7,160],"ftR":[18.1,300.8],"hipL":[-67.1,46.4],"knL":[-94.1,180],"ftL":[-113.5,333.9]},{"rootY":-0.8,"hips":[0,0],"chest":[-10.5,-85.1],"neck":[-10.5,-85.1],"head":[5.6,-160.8],"shR":[44.7,-119.8],"elR":[79,-35.2],"haR":[87.9,-7.7],"shL":[-60.5,-116.8],"elL":[-55.5,-22.2],"haL":[-86.4,44],"hipR":[35.4,31.2],"knR":[40.9,160.7],"ftR":[15.4,301.2],"hipL":[-68.1,45.6],"knL":[-94.9,179.4],"ftL":[-115.4,333]},{"rootY":-0.8,"hips":[0,0],"chest":[-8.8,-85.2],"neck":[-8.8,-85.2],"head":[7.8,-160.7],"shR":[47.4,-118.7],"elR":[79.3,-30.9],"haR":[82.3,13],"shL":[-59.3,-118.1],"elL":[-56.4,-23.7],"haL":[-88.6,41.9],"hipR":[37.1,31.3],"knR":[39.9,161.2],"ftR":[13.7,301.7],"hipL":[-68.8,45.2],"knL":[-95.3,179.4],"ftL":[-117.3,332.9]},{"rootY":-1,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[10.2,-160.4],"shR":[50.3,-117.2],"elR":[85.4,-29.6],"haR":[78.4,25.9],"shL":[-58.1,-119.6],"elL":[-57.7,-25.4],"haL":[-92.1,39],"hipR":[38.6,31.8],"knR":[40.2,161.9],"ftR":[12.7,302.5],"hipL":[-69.6,44.7],"knL":[-96.2,178.9],"ftL":[-119.1,332.4]},{"rootY":-0.9,"hips":[0,0],"chest":[-5.8,-85.1],"neck":[-5.8,-85.1],"head":[12.7,-160.3],"shR":[52.9,-115.7],"elR":[92.3,-29.3],"haR":[78.4,31.9],"shL":[-57,-121.2],"elL":[-58.7,-27.3],"haL":[-95.9,35.6],"hipR":[39.3,32.3],"knR":[40.3,162.4],"ftR":[11.9,302.7],"hipL":[-70,44.4],"knL":[-96.9,178.6],"ftL":[-120.5,332]},{"rootY":-0.8,"hips":[0,0],"chest":[-4.6,-85],"neck":[-4.6,-85],"head":[15,-160.1],"shR":[55.3,-114.1],"elR":[94.2,-27.2],"haR":[79.3,36.4],"shL":[-56.4,-122.6],"elL":[-59.7,-29.1],"haL":[-99.1,32.1],"hipR":[39.8,32.9],"knR":[40.2,163.1],"ftR":[11.1,303.3],"hipL":[-70.2,44.1],"knL":[-97.1,178.3],"ftL":[-121.2,331.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-3.4,-85],"neck":[-3.4,-85],"head":[16.5,-160.2],"shR":[57.1,-113.6],"elR":[91,-24.5],"haR":[79.8,40.8],"shL":[-55.7,-123.1],"elL":[-61.7,-29.4],"haL":[-102.2,30.8],"hipR":[40.3,33.6],"knR":[40.2,163.8],"ftR":[10.2,303.9],"hipL":[-70.6,43.6],"knL":[-97.1,177.9],"ftL":[-121.4,331.5]},{"rootY":-0.7,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[17.7,-160],"shR":[58.6,-112],"elR":[89.5,-21.8],"haR":[80.4,44.7],"shL":[-55.7,-124.5],"elL":[-63.3,-30.6],"haL":[-103.1,29.7],"hipR":[40.9,34.2],"knR":[40.4,164.4],"ftR":[9.6,304.4],"hipL":[-70.9,43.3],"knL":[-97.4,177.6],"ftL":[-122.1,331.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-3.2,-84.8],"neck":[-3.2,-84.8],"head":[18.4,-159.9],"shR":[59.1,-110.8],"elR":[90.9,-21],"haR":[81.8,46.1],"shL":[-56,-125.6],"elL":[-64.3,-31.8],"haL":[-103.5,28.6],"hipR":[41.4,34.3],"knR":[40.7,164.6],"ftR":[8.8,304.4],"hipL":[-71,43.3],"knL":[-97,177.7],"ftL":[-122.1,331.4]},{"rootY":-0.6,"hips":[0,0],"chest":[-3.5,-84.7],"neck":[-3.5,-84.7],"head":[18.9,-159.8],"shR":[59,-110.7],"elR":[92.8,-21.6],"haR":[82.8,45],"shL":[-56.7,-125.6],"elL":[-66.2,-31.7],"haL":[-104.7,28.8],"hipR":[41.7,34.6],"knR":[40.8,165],"ftR":[8.4,304.9],"hipL":[-70.9,43.5],"knL":[-97.5,177.7],"ftL":[-123,331.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.1,-84.7],"neck":[-4.1,-84.7],"head":[18.2,-160],"shR":[58.3,-111.2],"elR":[91.4,-21.8],"haR":[81.7,43.9],"shL":[-58.1,-125.2],"elL":[-68.8,-31.3],"haL":[-107.3,29.2],"hipR":[41.8,34.3],"knR":[40.2,165.2],"ftR":[7.5,305.6],"hipL":[-70.8,43.7],"knL":[-98.6,177.6],"ftL":[-124.8,330.9]},{"rootY":0.4,"hips":[0,0],"chest":[-4.8,-84.7],"neck":[-4.8,-84.7],"head":[17.5,-160],"shR":[57.3,-112.1],"elR":[88.9,-22.1],"haR":[79.5,42.8],"shL":[-59.2,-124.4],"elL":[-69.2,-30.2],"haL":[-106.7,31],"hipR":[42.1,33.3],"knR":[39.6,164.7],"ftR":[7,305.6],"hipL":[-70.3,44.6],"knL":[-99.5,178.1],"ftL":[-126.7,331]},{"rootY":0.8,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[15.4,-160.3],"shR":[55.9,-113],"elR":[86.7,-22.8],"haR":[76.5,41.2],"shL":[-59.7,-123.6],"elL":[-68.2,-29.2],"haL":[-104.6,32.7],"hipR":[42,32.4],"knR":[39.9,163.8],"ftR":[6.4,304.5],"hipL":[-70,45.2],"knL":[-100.8,178.2],"ftL":[-128.6,330.7]},{"rootY":1.1,"hips":[0,0],"chest":[-6.1,-84.9],"neck":[-6.1,-84.9],"head":[13.7,-160.6],"shR":[54.7,-113.9],"elR":[85,-23.6],"haR":[72.8,39.6],"shL":[-59.8,-122.8],"elL":[-65.8,-28],"haL":[-101.4,34.5],"hipR":[41.8,31.9],"knR":[40.1,163.2],"ftR":[6,303.6],"hipL":[-69.8,45.4],"knL":[-101.2,178.2],"ftL":[-128.9,330.5]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.9],"neck":[-6.3,-84.9],"head":[12.3,-160.8],"shR":[53.8,-114.8],"elR":[83.7,-24.5],"haR":[69.3,38.1],"shL":[-59.6,-121.9],"elL":[-63.5,-27],"haL":[-98,36.4],"hipR":[41.5,31.7],"knR":[40.2,162.6],"ftR":[5.9,302.8],"hipL":[-69.5,45.7],"knL":[-100.8,178.5],"ftL":[-128.6,330.8]},{"rootY":1.1,"hips":[0,0],"chest":[-6.6,-84.9],"neck":[-6.6,-84.9],"head":[11.3,-160.8],"shR":[52.6,-115.9],"elR":[82.3,-25.6],"haR":[66,36.7],"shL":[-59.4,-120.7],"elL":[-60.8,-25.8],"haL":[-94.4,38.2],"hipR":[41.1,31.4],"knR":[40.1,162.2],"ftR":[5.7,302.2],"hipL":[-69.3,45.9],"knL":[-101,178.6],"ftL":[-129,330.8]},{"rootY":0.9,"hips":[0,0],"chest":[-7.1,-84.9],"neck":[-7.1,-84.9],"head":[10.4,-160.9],"shR":[51.7,-116.2],"elR":[81.3,-25.9],"haR":[63.6,36.3],"shL":[-59.8,-120.5],"elL":[-59.5,-25.7],"haL":[-92.2,39],"hipR":[40.6,31.8],"knR":[39.7,162.5],"ftR":[5.5,302.4],"hipL":[-69.2,45.8],"knL":[-100.2,178.8],"ftL":[-128.3,331.2]},{"rootY":0.9,"hips":[0,0],"chest":[-7.7,-84.9],"neck":[-7.7,-84.9],"head":[9.3,-160.9],"shR":[50.7,-116.2],"elR":[79.9,-25.7],"haR":[61.7,36.5],"shL":[-60.1,-120.4],"elL":[-59.3,-25.8],"haL":[-91,39.6],"hipR":[40,32.1],"knR":[39.4,162.6],"ftR":[5.5,302.5],"hipL":[-69,45.7],"knL":[-99.9,178.8],"ftL":[-128,331.3]},{"rootY":0.7,"hips":[0,0],"chest":[-8.4,-84.8],"neck":[-8.4,-84.8],"head":[8.5,-160.9],"shR":[49.6,-115.9],"elR":[79.1,-25.5],"haR":[61.1,37.1],"shL":[-60.5,-120.6],"elL":[-61.5,-25.8],"haL":[-93.6,39.5],"hipR":[39.3,32.3],"knR":[39.1,162.7],"ftR":[5.3,302.4],"hipL":[-68.7,45.8],"knL":[-99.8,178.8],"ftL":[-128.2,331.5]},{"rootY":0.4,"hips":[0,0],"chest":[-8.9,-84.7],"neck":[-8.9,-84.7],"head":[8.1,-160.8],"shR":[48.8,-115.6],"elR":[78.3,-25.3],"haR":[61,37.8],"shL":[-60.4,-120.7],"elL":[-61.6,-26],"haL":[-95.1,38.6],"hipR":[38.7,32.6],"knR":[38.9,163],"ftR":[5,302.6],"hipL":[-68.6,45.6],"knL":[-99.5,178.7],"ftL":[-127.9,331.5]},{"rootY":0.4,"hips":[0,0],"chest":[-9.3,-84.6],"neck":[-9.3,-84.6],"head":[7.6,-160.8],"shR":[48.1,-115.2],"elR":[77.5,-24.9],"haR":[61.2,38.7],"shL":[-60.3,-120.9],"elL":[-61.9,-26.4],"haL":[-96.8,37.4],"hipR":[38.3,32.8],"knR":[38.7,163.1],"ftR":[5.3,302.8],"hipL":[-68.4,45.6],"knL":[-99,178.8],"ftL":[-127.6,331.8]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-84.5],"neck":[-9.4,-84.5],"head":[7.4,-160.8],"shR":[47.7,-115.1],"elR":[77.1,-24.7],"haR":[61.4,39.2],"shL":[-60.3,-121],"elL":[-62.3,-26.4],"haL":[-97.7,36.9],"hipR":[37.8,33.2],"knR":[38.3,163.5],"ftR":[5.3,303.2],"hipL":[-68.5,45.3],"knL":[-98.7,178.6],"ftL":[-126.8,331.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.7,-84.4],"neck":[-9.7,-84.4],"head":[7.5,-160.7],"shR":[47.3,-114.7],"elR":[76.7,-24.4],"haR":[60.7,39.7],"shL":[-60.2,-121.1],"elL":[-62.4,-26.6],"haL":[-98,36.5],"hipR":[37.5,33.4],"knR":[38.4,163.6],"ftR":[5.5,303.3],"hipL":[-68.3,45.3],"knL":[-98.3,178.7],"ftL":[-126.4,332]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.5,-84.4],"neck":[-9.5,-84.4],"head":[7.6,-160.7],"shR":[47.3,-114.7],"elR":[76.8,-24.3],"haR":[60.5,39.8],"shL":[-60,-121.1],"elL":[-62.3,-26.5],"haL":[-97.7,36.6],"hipR":[37.4,33.7],"knR":[38.3,163.8],"ftR":[5.5,303.5],"hipL":[-68.2,45.2],"knL":[-97.9,178.7],"ftL":[-126,332.1]}]}}; \ No newline at end of file diff --git a/ink-theater/examples/mocap-figure/ink-puppet.js b/ink-theater/examples/mocap-figure/ink-puppet.js index 731453a0..a83500b0 100644 --- a/ink-theater/examples/mocap-figure/ink-puppet.js +++ b/ink-theater/examples/mocap-figure/ink-puppet.js @@ -6,12 +6,14 @@ * var p = InkPuppet.create(mount, {cx, ground}); * p.drawIn(tl, {start:0.3}); // pencil sketches the figure * InkPuppet.choreograph(tl, p, [ // then plays named mocap clips - * {clip:'wave_hello', dur:3}, - * {clip:'dab', dur:3}, - * {clip:'jumping', dur:3.5}, - * {clip:'zombie', dur:4} + * {clip:'wave', dur:3}, + * {clip:'twist', dur:3}, + * {clip:'jump', dur:3.5}, + * {clip:'walk', dur:4} * ], {start:2.6}); * + * Clip names must exist in mocap/catalog.json (unknown names warn + hold). + * * Clips come from window.INK_CLIPS (load clips.js). Motion = professional mocap. */ (function (root) { @@ -77,7 +79,10 @@ var CLIPS = root.INK_CLIPS || {}; segments.forEach(function (seg) { var clip = CLIPS[seg.clip]; - if (!clip) { t += seg.dur; return; } + if (!clip) { + console.warn('[InkPuppet] unknown clip "' + seg.clip + '" — skipping ' + seg.dur + 's (holds pose). Known clips: ' + Object.keys(CLIPS).join(", ")); + t += seg.dur; return; + } var proxy = { u: 0 }; tl.to(proxy, { u: 1, duration: seg.dur, ease: "none", diff --git a/ink-theater/examples/momentum.html b/ink-theater/examples/momentum.html deleted file mode 100644 index d226bd27..00000000 --- a/ink-theater/examples/momentum.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - -
-
-
- - - - - - - - - -
starting is the hard part
-
all the effort is up front
-
then it carries itself
-
momentum does the rest
-
-
momentum
- -
get it moving — then keep it rolling.
-
-
-
-
- - - - diff --git a/ink-theater/examples/reel.html b/ink-theater/examples/reel.html deleted file mode 100644 index b8d26ef8..00000000 --- a/ink-theater/examples/reel.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - -
-
-
- - - - - - - - - -
-
-
- - - - diff --git a/ink-theater/ink-puppet.js b/ink-theater/ink-puppet.js index 731453a0..a83500b0 100644 --- a/ink-theater/ink-puppet.js +++ b/ink-theater/ink-puppet.js @@ -6,12 +6,14 @@ * var p = InkPuppet.create(mount, {cx, ground}); * p.drawIn(tl, {start:0.3}); // pencil sketches the figure * InkPuppet.choreograph(tl, p, [ // then plays named mocap clips - * {clip:'wave_hello', dur:3}, - * {clip:'dab', dur:3}, - * {clip:'jumping', dur:3.5}, - * {clip:'zombie', dur:4} + * {clip:'wave', dur:3}, + * {clip:'twist', dur:3}, + * {clip:'jump', dur:3.5}, + * {clip:'walk', dur:4} * ], {start:2.6}); * + * Clip names must exist in mocap/catalog.json (unknown names warn + hold). + * * Clips come from window.INK_CLIPS (load clips.js). Motion = professional mocap. */ (function (root) { @@ -77,7 +79,10 @@ var CLIPS = root.INK_CLIPS || {}; segments.forEach(function (seg) { var clip = CLIPS[seg.clip]; - if (!clip) { t += seg.dur; return; } + if (!clip) { + console.warn('[InkPuppet] unknown clip "' + seg.clip + '" — skipping ' + seg.dur + 's (holds pose). Known clips: ' + Object.keys(CLIPS).join(", ")); + t += seg.dur; return; + } var proxy = { u: 0 }; tl.to(proxy, { u: 1, duration: seg.dur, ease: "none", diff --git a/ink-theater/mocap/NOTE.md b/ink-theater/mocap/NOTE.md index 26f6ff24..6d6969ab 100644 --- a/ink-theater/mocap/NOTE.md +++ b/ink-theater/mocap/NOTE.md @@ -1,19 +1,21 @@ # Mocap provenance & licensing -The bundled example BVH clips (`wave_hello`, `jumping`, `dab`, `zombie`) were taken -from Meta's **AnimatedDrawings** example set (`examples/bvh/fair1/`, -github.com/facebookresearch/AnimatedDrawings — code MIT; the repo is archived). -`clips.js` / `clips/*.json` are 2D derivations produced by `bvh2clip.mjs`. +All bundled clips derive from the **CMU Graphics Lab Motion Capture Database** +(http://mocap.cs.cmu.edu), which is **free for all uses, research and commercial**. +BVH files are fetched from the `una-dinosauria/cmu-mocap` mirror; `clips.js` / +`clips/*.json` are 2D derivations produced by `bvh2clip.mjs`. Per-clip source trial +IDs live in `catalog.json` (e.g. `wave` = CMU 141_16, `shuffle` = CMU 77_29). +See `../THIRD_PARTY_NOTICES.md` for the full attribution. -**Before any public or commercial use, verify licensing of the source mocap.** -For unrestricted production use, prefer the **CMU Graphics Lab Motion Capture -Database** (free for any purpose) — thousands of clips incl. walk, run, dance, -wave, jump. Convert any of them with: +## Add a motion (self-extending — no code changes) ``` -node bvh2clip.mjs clips/.json --fps 30 +node add-motion.mjs [category] "[description]" +# e.g. node add-motion.mjs backflip 90_01 dance "a backflip" ``` -Then rebundle `clips.js`. Different skeletons may need the `MAP` (BVH-joint → -rig-joint) in `bvh2clip.mjs` adjusted, and `--axis xy|zy` to pick the projection -plane (frontal vs sagittal). +This fetches the BVH, converts it (auto-mapping fair1 / CMU / Mixamo skeletons), +rebundles `clips.js`, and updates `catalog.json`. CMU has thousands of clips +(walk, run, dance, wave, jump, …). Prefer CMU for anything shipped — it keeps the +library license-clean. Different skeletons may need an alias added to the `ALIAS` +table in `bvh2clip.mjs`, and `--axis xy|zy` to pick the projection plane. diff --git a/ink-theater/mocap/catalog.json b/ink-theater/mocap/catalog.json index f8a05b03..b29cb99b 100644 --- a/ink-theater/mocap/catalog.json +++ b/ink-theater/mocap/catalog.json @@ -6,13 +6,6 @@ "frames": 180, "source": "CMU 01_02" }, - { - "name": "dab", - "category": "dance", - "desc": "does a dab", - "frames": 180, - "source": "FAIR dab" - }, { "name": "dance_glide", "category": "dance", @@ -46,7 +39,7 @@ "category": "locomotion", "desc": "marches on the spot", "frames": 180, - "source": "15_01" + "source": "CMU 15_01" }, { "name": "run", @@ -58,9 +51,9 @@ { "name": "shuffle", "category": "locomotion", - "desc": "a slow zombie shuffle", + "desc": "a slow sneaking creep", "frames": 180, - "source": "FAIR zombie" + "source": "CMU 77_29" }, { "name": "sit", @@ -69,6 +62,13 @@ "frames": 180, "source": "CMU 13_01" }, + { + "name": "twist", + "category": "dance", + "desc": "a twisting dance", + "frames": 143, + "source": "CMU 141_12" + }, { "name": "walk", "category": "locomotion", @@ -80,7 +80,7 @@ "name": "wave", "category": "gesture", "desc": "waves hello", - "frames": 180, - "source": "FAIR wave_hello" + "frames": 75, + "source": "CMU 141_16" } -] \ No newline at end of file +] diff --git a/ink-theater/mocap/clips.js b/ink-theater/mocap/clips.js index 757e894f..32c88064 100644 --- a/ink-theater/mocap/clips.js +++ b/ink-theater/mocap/clips.js @@ -1 +1 @@ -window.INK_CLIPS={"climb":{"name":"climb","fps":30,"height":520,"groundY":339,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.7,-82.8],"neck":[1.7,-82.8],"head":[2.7,-153.6],"shR":[-61.9,-110.7],"elR":[-167.1,-95.9],"haR":[-236.2,-86.1],"shL":[69.9,-107.1],"elL":[169.9,-93.1],"haL":[239.8,-83.3],"hipR":[-26.5,36.4],"knR":[-23.8,187.1],"ftR":[-21.2,339.3],"hipL":[27.6,36.4],"knL":[25.1,181.5],"ftL":[22.4,333.3]},{"rootY":0.3,"hips":[0,0],"chest":[-6.5,-82.3],"neck":[-6.5,-82.3],"head":[-12.8,-153],"shR":[30.3,-106.6],"elR":[47.6,-1.7],"haR":[42.7,62.8],"shL":[-39.1,-112.2],"elL":[-32.5,-13.4],"haL":[-59.8,51.7],"hipR":[6.5,33.7],"knR":[-14.2,182.8],"ftR":[23.8,324],"hipL":[-27.7,39.3],"knL":[-49,182.4],"ftL":[-12.6,324.4]},{"rootY":0,"hips":[0,0],"chest":[-6.3,-82.4],"neck":[-6.3,-82.4],"head":[-12.1,-153],"shR":[31.3,-106.6],"elR":[48,-1.7],"haR":[42.4,62.3],"shL":[-39.2,-112.3],"elL":[-31.5,-13.5],"haL":[-56.3,52.5],"hipR":[6.7,34.2],"knR":[-13.8,183.3],"ftR":[24.1,324.5],"hipL":[-28,39.1],"knL":[-46.9,182.5],"ftL":[-11.5,324.5]},{"rootY":0.2,"hips":[0,0],"chest":[-6.6,-82.5],"neck":[-6.6,-82.5],"head":[-12.5,-153.2],"shR":[31.4,-106.9],"elR":[47.9,-1.9],"haR":[40.6,61.7],"shL":[-40,-112.1],"elL":[-32.2,-13.2],"haL":[-54.5,53.5],"hipR":[6.3,34.6],"knR":[-15,183.7],"ftR":[23.9,324.4],"hipL":[-28.7,38.5],"knL":[-48.1,182],"ftL":[-13.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-6.3,-82.5],"neck":[-6.3,-82.5],"head":[-12.4,-153.2],"shR":[31.4,-107.8],"elR":[46.8,-2.7],"haR":[39,60.5],"shL":[-39.5,-111.2],"elL":[-31.7,-12.3],"haL":[-52.3,54.8],"hipR":[6.6,34.5],"knR":[-15.1,183.5],"ftR":[23.5,323.7],"hipL":[-28.5,38.7],"knL":[-49.2,182.2],"ftL":[-14,324.6]},{"rootY":0.6,"hips":[0,0],"chest":[-6.1,-82.6],"neck":[-6.1,-82.6],"head":[-12.3,-153.3],"shR":[31.9,-108.4],"elR":[46.8,-3.2],"haR":[37.7,59.9],"shL":[-39.4,-110.6],"elL":[-31.9,-11.7],"haL":[-51.6,55.6],"hipR":[6.2,34.5],"knR":[-14.5,183.7],"ftR":[23.9,323.9],"hipL":[-28.8,38.5],"knL":[-49.1,182],"ftL":[-13.5,324.1]},{"rootY":0.4,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.4,-153.4],"shR":[32.2,-108.8],"elR":[47.1,-3.6],"haR":[36.8,59.3],"shL":[-39.2,-110.3],"elL":[-31.6,-11.3],"haL":[-51.2,56],"hipR":[6,34.9],"knR":[-15.3,184],"ftR":[23.8,324],"hipL":[-29,38.2],"knL":[-47.8,182],"ftL":[-13.3,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.6,-153.5],"shR":[31.9,-109.1],"elR":[47.2,-4],"haR":[35.9,58.6],"shL":[-38.8,-109.9],"elL":[-31,-10.9],"haL":[-51.3,56.2],"hipR":[5.9,35.2],"knR":[-15.8,184.2],"ftR":[23.9,323.9],"hipL":[-29.2,38],"knL":[-47.5,181.8],"ftL":[-13.2,324.2]},{"rootY":1.2,"hips":[0,0],"chest":[-6,-82.6],"neck":[-6,-82.6],"head":[-13,-153.5],"shR":[31.7,-109.4],"elR":[47.3,-4.3],"haR":[35.2,58.4],"shL":[-38.8,-109.6],"elL":[-31.4,-10.5],"haL":[-53,56.3],"hipR":[6.4,34.8],"knR":[-16,183.7],"ftR":[23.5,323.2],"hipL":[-28.8,38.5],"knL":[-48.2,182.1],"ftL":[-13.5,324.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.3,-82.6],"neck":[-6.3,-82.6],"head":[-13.9,-153.5],"shR":[31.2,-109.3],"elR":[46.9,-4.3],"haR":[34.6,58.6],"shL":[-39.2,-109.7],"elL":[-31.8,-10.4],"haL":[-54.9,56.1],"hipR":[6.3,34.8],"knR":[-16.3,183.7],"ftR":[22.8,322.9],"hipL":[-28.8,38.4],"knL":[-48.7,182.1],"ftL":[-14.2,324.3]},{"rootY":1.1,"hips":[0,0],"chest":[-6.7,-82.6],"neck":[-6.7,-82.6],"head":[-15.4,-153.4],"shR":[30.1,-109.9],"elR":[45.2,-4.8],"haR":[32.8,58.7],"shL":[-39,-109],"elL":[-31.8,-9.7],"haL":[-56.8,56.2],"hipR":[5.9,35.1],"knR":[-17.1,183.9],"ftR":[22.3,323],"hipL":[-29,38.2],"knL":[-48.4,181.9],"ftL":[-14.8,324.2]},{"rootY":1,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-16.9,-153.2],"shR":[30.2,-109.9],"elR":[44.4,-4.6],"haR":[33.2,59.3],"shL":[-39.4,-109.1],"elL":[-32.4,-9.6],"haL":[-59.1,55.8],"hipR":[6,34.9],"knR":[-16.7,183.8],"ftR":[22.1,323.1],"hipL":[-28.7,38.4],"knL":[-48.9,182],"ftL":[-15.1,323.9]},{"rootY":1.2,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-18.9,-152.9],"shR":[29.9,-110.6],"elR":[43.4,-5.2],"haR":[32.8,59.1],"shL":[-39.4,-108.3],"elL":[-32.7,-8.8],"haL":[-61.4,55.7],"hipR":[5.8,34.8],"knR":[-16.6,183.8],"ftR":[21.7,322.9],"hipL":[-28.5,38.5],"knL":[-49,182],"ftL":[-15.2,323.7]},{"rootY":1.4,"hips":[0,0],"chest":[-7.5,-82.5],"neck":[-7.5,-82.5],"head":[-21.5,-152.4],"shR":[30.1,-110.5],"elR":[43.9,-5.1],"haR":[33.5,59.3],"shL":[-41,-108.4],"elL":[-34.3,-8.8],"haL":[-65.1,54.8],"hipR":[5.2,35.1],"knR":[-17.9,184],"ftR":[21.7,322.8],"hipL":[-28.9,38.1],"knL":[-49.3,181.7],"ftL":[-16,323.6]},{"rootY":1.5,"hips":[0,0],"chest":[-7.8,-82.5],"neck":[-7.8,-82.5],"head":[-23.8,-151.8],"shR":[29.5,-110.9],"elR":[44.1,-5.7],"haR":[33.5,58.7],"shL":[-41.4,-107.9],"elL":[-34.5,-8.3],"haL":[-67.1,54.4],"hipR":[5.5,35.2],"knR":[-17.5,184.2],"ftR":[21.2,322.8],"hipL":[-28.6,38.3],"knL":[-49.5,181.8],"ftL":[-16.4,323.5]},{"rootY":1.7,"hips":[0,0],"chest":[-8.1,-82.5],"neck":[-8.1,-82.5],"head":[-26,-151.3],"shR":[29.6,-111.1],"elR":[45.3,-6],"haR":[34.6,58.3],"shL":[-42.6,-107.6],"elL":[-35,-8.1],"haL":[-68.9,53.8],"hipR":[5.9,34.8],"knR":[-16.8,183.8],"ftR":[20.6,322.6],"hipL":[-28.2,38.7],"knL":[-50.1,182.1],"ftL":[-16.8,323.3]},{"rootY":2.3,"hips":[0,0],"chest":[-8.7,-82.4],"neck":[-8.7,-82.4],"head":[-28.2,-150.8],"shR":[29.1,-111.5],"elR":[45.4,-6.5],"haR":[34.6,57.7],"shL":[-44.4,-107.2],"elL":[-36.2,-7.8],"haL":[-70.9,53.5],"hipR":[6,34.9],"knR":[-17.3,183.7],"ftR":[19.7,322.2],"hipL":[-28.2,38.7],"knL":[-50.7,182],"ftL":[-17.4,322.8]},{"rootY":2.6,"hips":[0,0],"chest":[-9.3,-82.3],"neck":[-9.3,-82.3],"head":[-29.9,-150.3],"shR":[29.3,-111.6],"elR":[46.8,-6.8],"haR":[35.7,57],"shL":[-46.3,-106.9],"elL":[-36.9,-7.8],"haL":[-72.1,53.2],"hipR":[6.7,34.6],"knR":[-16.8,183.5],"ftR":[19,321.9],"hipL":[-28,39],"knL":[-51.5,182.1],"ftL":[-18,322.2]},{"rootY":2.9,"hips":[0,0],"chest":[-9.6,-82.3],"neck":[-9.6,-82.3],"head":[-31.1,-150],"shR":[29.5,-111.7],"elR":[48.1,-7.1],"haR":[37.2,56.4],"shL":[-47.8,-106.7],"elL":[-38.1,-7.8],"haL":[-72.8,53.4],"hipR":[7.6,34.1],"knR":[-15.8,182.9],"ftR":[18.8,321.8],"hipL":[-27.8,39.3],"knL":[-52.7,182.2],"ftL":[-18.5,321.1]},{"rootY":3.1,"hips":[0,0],"chest":[-9.9,-82.2],"neck":[-9.9,-82.2],"head":[-31.9,-149.7],"shR":[29.7,-111.9],"elR":[49.4,-7.5],"haR":[38.6,55.8],"shL":[-49.1,-106.5],"elL":[-39,-7.7],"haL":[-72.9,53.9],"hipR":[8.4,34],"knR":[-14.3,182.9],"ftR":[18.4,321.8],"hipL":[-27.8,39.5],"knL":[-53.5,182.2],"ftL":[-18.6,320]},{"rootY":2.9,"hips":[0,0],"chest":[-10.3,-82.2],"neck":[-10.3,-82.2],"head":[-32.6,-149.5],"shR":[30.7,-111.8],"elR":[50.9,-7.5],"haR":[40.4,55.8],"shL":[-51.2,-106.6],"elL":[-40.9,-7.9],"haL":[-73.3,54.6],"hipR":[9.2,34.1],"knR":[-13.3,183.1],"ftR":[18,321.7],"hipL":[-27.8,39.6],"knL":[-55,182],"ftL":[-19.4,318.6]},{"rootY":3.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.7,-149.4],"shR":[31,-112.1],"elR":[51.6,-7.9],"haR":[42.5,55.3],"shL":[-52.2,-106.1],"elL":[-41.6,-7.7],"haL":[-72.6,55.5],"hipR":[9.7,34],"knR":[-11.4,183.2],"ftR":[18.4,322],"hipL":[-27.9,39.6],"knL":[-58.1,181.3],"ftL":[-20.5,315.9]},{"rootY":2.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.5,-149.4],"shR":[32.3,-111.4],"elR":[53.6,-7.3],"haR":[45.4,56],"shL":[-53.6,-106.8],"elL":[-42.6,-8.5],"haL":[-71.8,55.6],"hipR":[10.2,33.8],"knR":[-8.5,183.2],"ftR":[18.7,322.9],"hipL":[-27.9,39.6],"knL":[-62,180.2],"ftL":[-22.4,312.2]},{"rootY":2.6,"hips":[0,0],"chest":[-10.6,-82],"neck":[-10.6,-82],"head":[-32.3,-149.4],"shR":[32.3,-111.6],"elR":[53.8,-7.6],"haR":[47.1,55.7],"shL":[-54.5,-106.5],"elL":[-43.5,-8.3],"haL":[-71.2,56.5],"hipR":[11.2,33.6],"knR":[-6.7,183.1],"ftR":[18.8,322.6],"hipL":[-27.6,39.9],"knL":[-66.2,179],"ftL":[-23.6,308.4]},{"rootY":2.5,"hips":[0,0],"chest":[-10.3,-82],"neck":[-10.3,-82],"head":[-31.9,-149.4],"shR":[33.5,-111.1],"elR":[55.4,-7.3],"haR":[50.3,56.4],"shL":[-54.9,-107],"elL":[-43.6,-8.9],"haL":[-69.6,56.7],"hipR":[11.8,33.2],"knR":[-4.2,182.8],"ftR":[19.9,322.7],"hipL":[-27.5,40.1],"knL":[-70,177.5],"ftL":[-24.4,304.7]},{"rootY":2.3,"hips":[0,0],"chest":[-9.8,-82],"neck":[-9.8,-82],"head":[-30.8,-149.5],"shR":[34.6,-110.7],"elR":[56.6,-6.9],"haR":[53,57],"shL":[-55.1,-107.5],"elL":[-43.3,-9.5],"haL":[-68,56.6],"hipR":[12.8,33.1],"knR":[-1.2,182.7],"ftR":[21.7,322.8],"hipL":[-27.4,40.2],"knL":[-72.5,176.2],"ftL":[-25.6,302.3]},{"rootY":1.7,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-29.9,-149.5],"shR":[35.9,-110.3],"elR":[57.7,-6.4],"haR":[56.4,58.2],"shL":[-55.2,-107.9],"elL":[-42.9,-10.2],"haL":[-66.1,56.5],"hipR":[13.3,32.9],"knR":[1.4,182.7],"ftR":[23.4,323],"hipL":[-27.5,40.2],"knL":[-74.7,174.9],"ftL":[-28.5,301.6]},{"rootY":1,"hips":[0,0],"chest":[-9.2,-82],"neck":[-9.2,-82],"head":[-29.2,-149.6],"shR":[36.7,-109.8],"elR":[58,-6],"haR":[58.7,59.2],"shL":[-55.6,-108.3],"elL":[-42.4,-11],"haL":[-64.8,56],"hipR":[13.5,33.6],"knR":[3.7,183.3],"ftR":[26,323.4],"hipL":[-27.9,39.9],"knL":[-76.6,173.4],"ftL":[-33.7,303]},{"rootY":1,"hips":[0,0],"chest":[-9,-81.9],"neck":[-9,-81.9],"head":[-28.3,-149.6],"shR":[37.5,-109.2],"elR":[58,-5.3],"haR":[60.3,60.7],"shL":[-55.7,-108.8],"elL":[-41.6,-11.9],"haL":[-63.1,55.4],"hipR":[13.8,33.8],"knR":[6,183.5],"ftR":[29.2,323.1],"hipL":[-28,39.9],"knL":[-77.9,172.1],"ftL":[-39.9,306.1]},{"rootY":0.9,"hips":[0,0],"chest":[-8.8,-81.9],"neck":[-8.8,-81.9],"head":[-27.2,-149.6],"shR":[38,-108.8],"elR":[57.5,-4.6],"haR":[61.7,61.8],"shL":[-55.8,-109.2],"elL":[-41,-12.6],"haL":[-61.6,54.9],"hipR":[14.4,33.9],"knR":[8.9,183.5],"ftR":[32,323.1],"hipL":[-27.7,40],"knL":[-79.1,170.8],"ftL":[-47.4,309.5]},{"rootY":0.3,"hips":[0,0],"chest":[-8.7,-81.7],"neck":[-8.7,-81.7],"head":[-26.7,-149.5],"shR":[38.9,-107.7],"elR":[57.5,-3.5],"haR":[62.9,63.5],"shL":[-56.2,-110],"elL":[-40.9,-14],"haL":[-60.7,53.8],"hipR":[14.9,33.8],"knR":[12.1,183.1],"ftR":[35.6,322.4],"hipL":[-27.4,40.2],"knL":[-79.8,169.9],"ftL":[-55.6,313.1]},{"rootY":0,"hips":[0,0],"chest":[-8.7,-81.6],"neck":[-8.7,-81.6],"head":[-26,-149.4],"shR":[39,-107],"elR":[56.9,-2.7],"haR":[63.2,64.7],"shL":[-56.2,-110.5],"elL":[-40.8,-14.8],"haL":[-59.9,53.2],"hipR":[15.3,33.8],"knR":[15.7,182.6],"ftR":[39.1,322.2],"hipL":[-27.2,40.4],"knL":[-80.3,168.9],"ftL":[-63.9,316]},{"rootY":-0.6,"hips":[0,0],"chest":[-8.8,-81.4],"neck":[-8.8,-81.4],"head":[-25.6,-149.2],"shR":[39,-106.1],"elR":[56.5,-1.9],"haR":[62.4,65.9],"shL":[-56.4,-111],"elL":[-40.9,-15.7],"haL":[-59.8,52.3],"hipR":[15.9,33.6],"knR":[20,181.7],"ftR":[42.9,322],"hipL":[-26.9,40.6],"knL":[-80.1,168.2],"ftL":[-72.2,318]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.8,-81.3],"neck":[-8.8,-81.3],"head":[-25.1,-149],"shR":[39.3,-105.3],"elR":[56.1,-1.2],"haR":[61.5,66.9],"shL":[-56.8,-111.6],"elL":[-40.9,-16.8],"haL":[-60,51.2],"hipR":[15.9,34],"knR":[24,181],"ftR":[47.1,321.7],"hipL":[-26.9,40.6],"knL":[-79.6,167.3],"ftL":[-79.1,318.7]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-81.1],"neck":[-9.4,-81.1],"head":[-24.9,-148.6],"shR":[39.2,-104.6],"elR":[55.6,-0.6],"haR":[60,67.7],"shL":[-57.9,-112],"elL":[-41.6,-17.6],"haL":[-60.6,50.4],"hipR":[16.3,33.8],"knR":[30.3,178.4],"ftR":[50.9,320.9],"hipL":[-26.6,40.8],"knL":[-79,166.9],"ftL":[-84.9,318.6]},{"rootY":0.8,"hips":[0,0],"chest":[-9.6,-80.9],"neck":[-9.6,-80.9],"head":[-25.1,-148.5],"shR":[39.4,-104.1],"elR":[55,-0.2],"haR":[58.5,68.3],"shL":[-58.6,-112.2],"elL":[-42.3,-18.2],"haL":[-61.5,49.7],"hipR":[17.2,33.5],"knR":[36.3,175.5],"ftR":[55.5,319],"hipL":[-26,41.2],"knL":[-77.5,166.4],"ftL":[-88.6,317.8]},{"rootY":1.6,"hips":[0,0],"chest":[-10.2,-80.8],"neck":[-10.2,-80.8],"head":[-25.7,-148.3],"shR":[39.3,-103.7],"elR":[54.1,0.1],"haR":[56.1,68.6],"shL":[-60,-112.2],"elL":[-43.5,-18.8],"haL":[-63,49.1],"hipR":[18,33.7],"knR":[39,174.6],"ftR":[60.2,317],"hipL":[-26,41.2],"knL":[-75.1,166.5],"ftL":[-89.9,317.3]},{"rootY":2.9,"hips":[0,0],"chest":[-10,-80.7],"neck":[-10,-80.7],"head":[-25.1,-148.1],"shR":[40,-103.7],"elR":[54,-0.1],"haR":[54.8,68.5],"shL":[-60.6,-112],"elL":[-44.2,-19],"haL":[-63.6,48.9],"hipR":[19.2,33.2],"knR":[42.5,173.1],"ftR":[66,314.5],"hipL":[-25,41.8],"knL":[-72.4,167],"ftL":[-87.6,317.6]},{"rootY":3.7,"hips":[0,0],"chest":[-10.4,-80.6],"neck":[-10.4,-80.6],"head":[-24.9,-148.1],"shR":[39.9,-104],"elR":[53.2,-0.6],"haR":[53,67.9],"shL":[-61.8,-111.5],"elL":[-46,-18.5],"haL":[-65.2,49.5],"hipR":[20,33.4],"knR":[45.5,172],"ftR":[71.3,312.1],"hipL":[-24.9,41.9],"knL":[-69.5,167.9],"ftL":[-81.6,318.9]},{"rootY":4.1,"hips":[0,0],"chest":[-11.8,-80.6],"neck":[-11.8,-80.6],"head":[-26.1,-148.2],"shR":[39.2,-104.1],"elR":[52.6,-0.8],"haR":[51.4,67.6],"shL":[-64.1,-111.4],"elL":[-48.8,-18.3],"haL":[-67.7,49.7],"hipR":[20.7,33.5],"knR":[48.4,170.7],"ftR":[76.4,309.2],"hipL":[-25,41.9],"knL":[-67.1,169],"ftL":[-73.9,320.5]},{"rootY":3.8,"hips":[0,0],"chest":[-10.9,-80.5],"neck":[-10.9,-80.5],"head":[-25.4,-148.3],"shR":[40.2,-105.2],"elR":[53.3,-2.2],"haR":[51.8,66.1],"shL":[-63.9,-110.1],"elL":[-49.6,-16.6],"haL":[-67.8,51.6],"hipR":[20.8,34],"knR":[52.1,169.7],"ftR":[83.7,306.8],"hipL":[-25.5,41.6],"knL":[-61.2,170.2],"ftL":[-64.7,322]},{"rootY":2.2,"hips":[0,0],"chest":[-10.9,-80.7],"neck":[-10.9,-80.7],"head":[-25.6,-148.6],"shR":[40.9,-105.6],"elR":[54.6,-2.5],"haR":[52.5,65.6],"shL":[-64.6,-110.1],"elL":[-51.5,-16.1],"haL":[-69.1,52.2],"hipR":[21,34.2],"knR":[55.2,168.6],"ftR":[89.8,304.4],"hipL":[-25.7,41.4],"knL":[-57.4,172.3],"ftL":[-57,324.1]},{"rootY":1.5,"hips":[0,0],"chest":[-11.1,-80.8],"neck":[-11.1,-80.8],"head":[-25.5,-148.8],"shR":[41.3,-106.3],"elR":[54.6,-3.1],"haR":[52.6,64.9],"shL":[-65.5,-109.7],"elL":[-53.8,-15.1],"haL":[-71.2,53.3],"hipR":[20.8,34.4],"knR":[48.1,176.1],"ftR":[94.6,300.2],"hipL":[-26.2,41.1],"knL":[-56.5,173.9],"ftL":[-50.8,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[-11.1,-81],"neck":[-11.1,-81],"head":[-25.2,-149.2],"shR":[42,-107.3],"elR":[55.2,-3.9],"haR":[53.2,63.8],"shL":[-66.2,-109],"elL":[-56.6,-13.7],"haL":[-74.1,54.7],"hipR":[20.1,35.2],"knR":[41.1,181.8],"ftR":[97.5,293.5],"hipL":[-27.4,40.3],"knL":[-53.4,176],"ftL":[-43.6,327.5]},{"rootY":-1.4,"hips":[0,0],"chest":[-11.1,-81.2],"neck":[-11.1,-81.2],"head":[-24.8,-149.6],"shR":[42.9,-107.7],"elR":[55.9,-3.8],"haR":[53.6,63.1],"shL":[-67,-109],"elL":[-59.3,-13.2],"haL":[-77.8,54.9],"hipR":[18.8,35.9],"knR":[33,185.3],"ftR":[97.6,285.7],"hipL":[-28.9,39.2],"knL":[-49,177.7],"ftL":[-35.7,328.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-10.9,-81.3],"neck":[-10.9,-81.3],"head":[-24.6,-149.8],"shR":[44.1,-108.1],"elR":[56.6,-3.7],"haR":[53.9,62.6],"shL":[-67.5,-108.7],"elL":[-62.5,-12.5],"haL":[-82.5,55.2],"hipR":[17.5,36.3],"knR":[23.7,186.9],"ftR":[94.2,278.3],"hipL":[-30.3,38.2],"knL":[-43.7,179],"ftL":[-27.6,329.9]},{"rootY":-2.8,"hips":[0,0],"chest":[-10.3,-81.5],"neck":[-10.3,-81.5],"head":[-23.3,-150.1],"shR":[45.5,-108.3],"elR":[57.6,-3.5],"haR":[54.6,61.7],"shL":[-67.3,-109],"elL":[-64.9,-12],"haL":[-86.5,54.9],"hipR":[16.5,36.7],"knR":[15.8,186.7],"ftR":[90.9,270.3],"hipL":[-31.3,37.4],"knL":[-39.1,179.7],"ftL":[-19.6,330]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.9,-81.6],"neck":[-9.9,-81.6],"head":[-23.2,-150.3],"shR":[46.3,-108.5],"elR":[57.9,-3.5],"haR":[54.6,60.6],"shL":[-67.1,-108.9],"elL":[-67.5,-11.3],"haL":[-91.5,54.4],"hipR":[14.9,37.1],"knR":[4.8,185.3],"ftR":[83.5,267.4],"hipL":[-31.8,36.9],"knL":[-34.3,180.4],"ftL":[-13.1,330.6]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.4,-81.8],"neck":[-9.4,-81.8],"head":[-21.9,-150.6],"shR":[47.2,-108.4],"elR":[58.4,-3.3],"haR":[55.2,59.3],"shL":[-66.4,-109.4],"elL":[-69.2,-11.3],"haL":[-95.5,52.7],"hipR":[13.6,37.2],"knR":[-5.1,182.8],"ftR":[75.4,267.8],"hipL":[-32.8,36.1],"knL":[-29.8,180.3],"ftL":[-6.2,330.1]},{"rootY":-2.8,"hips":[0,0],"chest":[-9.1,-81.9],"neck":[-9.1,-81.9],"head":[-21.4,-150.9],"shR":[47.8,-108.4],"elR":[59.2,-3.1],"haR":[55.7,58.4],"shL":[-65.9,-109.7],"elL":[-71.1,-11.4],"haL":[-99.6,50.5],"hipR":[12.6,37.3],"knR":[-15.2,179.6],"ftR":[65.7,271],"hipL":[-33.1,35.7],"knL":[-27.2,180.2],"ftL":[0.3,329.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-21.9,-150.9],"shR":[47.4,-108.3],"elR":[59,-2.9],"haR":[55.4,57.9],"shL":[-65.5,-109.8],"elL":[-72.6,-11.3],"haL":[-102.8,48.2],"hipR":[11.8,37.4],"knR":[-25.1,175.8],"ftR":[54.8,276.8],"hipL":[-33.1,35.7],"knL":[-27.8,180.2],"ftL":[5.8,327.3]},{"rootY":0.8,"hips":[0,0],"chest":[-10.2,-81.9],"neck":[-10.2,-81.9],"head":[-22.6,-151],"shR":[46.3,-108.4],"elR":[58.4,-3.1],"haR":[55,57.4],"shL":[-66.3,-109.5],"elL":[-75.1,-10.9],"haL":[-106.9,45.8],"hipR":[10.2,37.7],"knR":[-34.9,172],"ftR":[40.7,284.6],"hipL":[-33.8,35],"knL":[-27.2,179.6],"ftL":[11.3,325]},{"rootY":1.6,"hips":[0,0],"chest":[-11.1,-81.9],"neck":[-11.1,-81.9],"head":[-23.4,-150.9],"shR":[44.8,-108.4],"elR":[57.5,-3],"haR":[54.8,57.6],"shL":[-66.7,-109.5],"elL":[-77,-11],"haL":[-109.8,43],"hipR":[9.3,38.2],"knR":[-42.5,169],"ftR":[24.1,294.7],"hipL":[-33.6,35],"knL":[-25.6,179.6],"ftL":[16.7,323.5]},{"rootY":3.1,"hips":[0,0],"chest":[-11.6,-81.8],"neck":[-11.6,-81.8],"head":[-24.6,-150.7],"shR":[43.6,-108.2],"elR":[57.6,-3],"haR":[55,57.8],"shL":[-66.5,-109.5],"elL":[-77.4,-10.9],"haL":[-110.9,40.7],"hipR":[9.9,38.6],"knR":[-46.4,166.2],"ftR":[4.7,304.4],"hipL":[-33.1,35.3],"knL":[-23.3,179.9],"ftL":[22.9,321.9]},{"rootY":3.7,"hips":[0,0],"chest":[-12.5,-81.6],"neck":[-12.5,-81.6],"head":[-25.8,-150.5],"shR":[41.9,-108.5],"elR":[56.6,-3.4],"haR":[54.9,58.3],"shL":[-66.9,-108.9],"elL":[-77.8,-10.3],"haL":[-111.9,39.5],"hipR":[8.8,38.8],"knR":[-49.9,165.5],"ftR":[-17.6,312.4],"hipL":[-33.3,34.9],"knL":[-18.2,179.2],"ftL":[28.6,321]},{"rootY":3.2,"hips":[0,0],"chest":[-13.2,-81.5],"neck":[-13.2,-81.5],"head":[-27,-150.2],"shR":[40.2,-108.7],"elR":[56.3,-3.8],"haR":[54.9,58.6],"shL":[-67.1,-108.6],"elL":[-77.4,-10],"haL":[-111.7,38.7],"hipR":[7.9,38.9],"knR":[-50.7,166.5],"ftR":[-40.4,318.1],"hipL":[-33.1,34.9],"knL":[-12.9,178.4],"ftL":[34.4,319.9]},{"rootY":4,"hips":[0,0],"chest":[-13.4,-81.5],"neck":[-13.4,-81.5],"head":[-28.1,-149.9],"shR":[39.2,-108.7],"elR":[56.3,-4.1],"haR":[55.6,59.1],"shL":[-66.7,-108.5],"elL":[-76.2,-9.9],"haL":[-110.5,38.4],"hipR":[7.3,39.3],"knR":[-50.9,167.5],"ftR":[-63.2,319.3],"hipL":[-32.8,34.8],"knL":[-5.7,176.7],"ftL":[40.7,318.5]},{"rootY":5.1,"hips":[0,0],"chest":[-14.1,-81.5],"neck":[-14.1,-81.5],"head":[-30.1,-149.6],"shR":[37.5,-108.4],"elR":[55.3,-4],"haR":[55.4,59.9],"shL":[-66.6,-108.9],"elL":[-75.2,-10.3],"haL":[-109.2,38.4],"hipR":[5.9,38.9],"knR":[-55.6,167.8],"ftR":[-76.8,318.4],"hipL":[-32.7,34.7],"knL":[5.7,172.3],"ftL":[46,316.3]},{"rootY":6.8,"hips":[0,0],"chest":[-13.9,-81.5],"neck":[-13.9,-81.5],"head":[-30.3,-149.5],"shR":[37.2,-107.6],"elR":[56.5,-3.5],"haR":[56.4,61.3],"shL":[-65.5,-109.8],"elL":[-72.5,-11.3],"haL":[-106.2,38.8],"hipR":[5.6,39.1],"knR":[-56.1,168.5],"ftR":[-82.1,318.4],"hipL":[-32.7,34.6],"knL":[8.9,170.7],"ftL":[52.5,313.1]},{"rootY":6.8,"hips":[0,0],"chest":[-12.4,-81.6],"neck":[-12.4,-81.6],"head":[-28.7,-149.6],"shR":[38.4,-107.9],"elR":[57.1,-3.9],"haR":[58.2,61.5],"shL":[-63.5,-109.6],"elL":[-68.7,-11.4],"haL":[-101.7,41.1],"hipR":[6.8,39.5],"knR":[-54.1,169.4],"ftR":[-80.2,319.3],"hipL":[-32.5,34.8],"knL":[12.3,169.2],"ftL":[59.2,309.8]},{"rootY":6.8,"hips":[0,0],"chest":[-11.3,-81.7],"neck":[-11.3,-81.7],"head":[-27.8,-149.6],"shR":[39.5,-106.8],"elR":[57.5,-2.7],"haR":[59.4,63.5],"shL":[-61.7,-111],"elL":[-64.5,-13.1],"haL":[-96.8,42.4],"hipR":[6.4,39.3],"knR":[-54.9,169.7],"ftR":[-76.1,320.2],"hipL":[-32.5,34.8],"knL":[15,167.4],"ftL":[64.7,306.2]},{"rootY":5.8,"hips":[0,0],"chest":[-10.6,-81.8],"neck":[-10.6,-81.8],"head":[-25.6,-149.7],"shR":[40.1,-106.4],"elR":[56.8,-2.2],"haR":[60,64.8],"shL":[-60.3,-111.5],"elL":[-60.1,-13.7],"haL":[-90.5,45.7],"hipR":[6.6,39],"knR":[-54.1,170.7],"ftR":[-70.1,321.4],"hipL":[-32,35.3],"knL":[7.9,171],"ftL":[66.1,303]},{"rootY":4.6,"hips":[0,0],"chest":[-9,-82],"neck":[-9,-82],"head":[-24,-149.7],"shR":[41.1,-105.4],"elR":[57.2,-1.4],"haR":[61,66],"shL":[-56.6,-112.8],"elL":[-53.9,-15],"haL":[-81.4,47.9],"hipR":[6.6,38.2],"knR":[-50.8,172.2],"ftR":[-61.6,322.5],"hipL":[-31.6,35.8],"knL":[-4.7,176],"ftL":[64,297.5]},{"rootY":3,"hips":[0,0],"chest":[-8.7,-82.1],"neck":[-8.7,-82.1],"head":[-25.3,-149.6],"shR":[41.5,-104.8],"elR":[56.7,-0.5],"haR":[60.9,67.3],"shL":[-56.3,-113.7],"elL":[-52,-15.9],"haL":[-76.2,49.7],"hipR":[6.3,37.3],"knR":[-48,174.2],"ftR":[-54.6,323.8],"hipL":[-31.7,36],"knL":[-19.8,179.2],"ftL":[56.6,289.9]},{"rootY":2,"hips":[0,0],"chest":[-8,-82.1],"neck":[-8,-82.1],"head":[-23,-150],"shR":[42.2,-105.7],"elR":[56.2,-1.1],"haR":[60.3,66.9],"shL":[-55.3,-112.8],"elL":[-50.2,-15.1],"haL":[-71.2,52.1],"hipR":[6.6,36.2],"knR":[-43.1,176.1],"ftR":[-47.7,324.9],"hipL":[-31.4,36.5],"knL":[-34.5,181],"ftL":[46.9,282.5]},{"rootY":0.7,"hips":[0,0],"chest":[-7,-82.2],"neck":[-7,-82.2],"head":[-22.2,-150],"shR":[43.4,-104.2],"elR":[56.8,0.6],"haR":[59.7,68.5],"shL":[-53.9,-114.4],"elL":[-48.8,-16.8],"haL":[-67.3,51.4],"hipR":[8.7,35.5],"knR":[-36.1,177.7],"ftR":[-40.8,326],"hipL":[-30.8,37.4],"knL":[-46.7,181.5],"ftL":[36,276.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-82.3],"neck":[-6.4,-82.3],"head":[-21,-150],"shR":[43.3,-107.2],"elR":[55.3,-2.1],"haR":[57,65.5],"shL":[-52.4,-111.4],"elL":[-46.9,-14.3],"haL":[-64.6,54.1],"hipR":[9.2,34.3],"knR":[-31.1,178.8],"ftR":[-34.4,326.4],"hipL":[-30.8,37.6],"knL":[-58.3,180.1],"ftL":[24.3,270.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-7.2,-82.4],"neck":[-7.2,-82.4],"head":[-18.8,-150],"shR":[42.7,-106.6],"elR":[54.1,-1.3],"haR":[54.1,64.8],"shL":[-53,-112.1],"elL":[-46.4,-15.1],"haL":[-63.6,53.4],"hipR":[9.7,34.1],"knR":[-27.6,179.9],"ftR":[-29.2,326.4],"hipL":[-31.3,37.3],"knL":[-68.2,177.4],"ftL":[10.3,267.9]},{"rootY":-2.1,"hips":[0,0],"chest":[-5.7,-82.5],"neck":[-5.7,-82.5],"head":[-19.5,-150],"shR":[44.2,-106.2],"elR":[55.7,-0.9],"haR":[52.2,64.7],"shL":[-51.5,-112.7],"elL":[-43.3,-15.8],"haL":[-60.3,52.6],"hipR":[12,33.6],"knR":[-19.7,180.8],"ftR":[-21.9,327],"hipL":[-31,37.6],"knL":[-73.5,175.1],"ftL":[-1.7,270]},{"rootY":-1.6,"hips":[0,0],"chest":[-5.6,-82.5],"neck":[-5.6,-82.5],"head":[-19.9,-150],"shR":[44.7,-106.5],"elR":[56.2,-1],"haR":[49.8,63],"shL":[-52,-112.5],"elL":[-42,-15.9],"haL":[-59.1,52.5],"hipR":[13.7,32.9],"knR":[-15.3,180.8],"ftR":[-16.1,326.1],"hipL":[-30.5,38],"knL":[-78.3,172.3],"ftL":[-16.7,274.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-5,-82.5],"neck":[-5,-82.5],"head":[-19,-150.1],"shR":[46.3,-106.2],"elR":[58.2,-0.8],"haR":[48.8,61.1],"shL":[-52.6,-112.8],"elL":[-41.3,-16.6],"haL":[-58.6,51.8],"hipR":[15.3,32.9],"knR":[-10.7,181.4],"ftR":[-9.9,325.6],"hipL":[-30.1,38.2],"knL":[-80.3,169.3],"ftL":[-31.4,281.6]},{"rootY":-1.1,"hips":[0,0],"chest":[-4.1,-82.5],"neck":[-4.1,-82.5],"head":[-17.8,-150],"shR":[47.7,-107],"elR":[59.9,-1.5],"haR":[47.9,57.8],"shL":[-52.8,-112],"elL":[-40.9,-16],"haL":[-58.2,52.4],"hipR":[17.3,32.6],"knR":[-5.2,181.5],"ftR":[-3.8,325.1],"hipL":[-29.4,38.7],"knL":[-79.7,166.9],"ftL":[-45.6,290.3]},{"rootY":-0.7,"hips":[0,0],"chest":[-4.2,-82.4],"neck":[-4.2,-82.4],"head":[-18,-149.9],"shR":[48.8,-106.7],"elR":[61.4,-1.2],"haR":[47,55.4],"shL":[-54.2,-112.2],"elL":[-41.9,-16.4],"haL":[-59.7,52],"hipR":[18.1,32.7],"knR":[-1.6,181.9],"ftR":[1.4,324.6],"hipL":[-29.3,38.6],"knL":[-78.1,165.3],"ftL":[-59.4,299.6]},{"rootY":-0.3,"hips":[0,0],"chest":[-3.8,-82.3],"neck":[-3.8,-82.3],"head":[-17.4,-149.7],"shR":[50,-106.4],"elR":[63.3,-1],"haR":[47.2,53.6],"shL":[-54.7,-112.4],"elL":[-42.8,-16.5],"haL":[-60.7,51.8],"hipR":[19.9,32.7],"knR":[3,182.1],"ftR":[6.2,324.3],"hipL":[-28.6,39],"knL":[-74.3,165.1],"ftL":[-70.7,308.2]},{"rootY":0.9,"hips":[0,0],"chest":[-4.4,-82.3],"neck":[-4.4,-82.3],"head":[-16.1,-149.7],"shR":[50,-106.9],"elR":[63.4,-1.5],"haR":[46.4,51.1],"shL":[-56.4,-111.9],"elL":[-45.4,-16.2],"haL":[-63.5,52],"hipR":[20.2,32.9],"knR":[5.3,181.9],"ftR":[10.1,322.9],"hipL":[-28.7,38.9],"knL":[-71.9,165.7],"ftL":[-80.9,314.4]},{"rootY":2.1,"hips":[0,0],"chest":[-4.2,-82.3],"neck":[-4.2,-82.3],"head":[-17.5,-149.5],"shR":[51,-108],"elR":[65.2,-2.7],"haR":[47.7,48.3],"shL":[-57.7,-110.6],"elL":[-47.7,-14.7],"haL":[-65.8,53.4],"hipR":[21.4,32.6],"knR":[10.3,181.2],"ftR":[15.1,321.8],"hipL":[-27.9,39.4],"knL":[-68.6,166.8],"ftL":[-87.1,317.1]},{"rootY":2.8,"hips":[0,0],"chest":[-4.1,-82.3],"neck":[-4.1,-82.3],"head":[-15.7,-149.6],"shR":[52.6,-107.4],"elR":[67.6,-2.3],"haR":[50.6,47.6],"shL":[-59.2,-111.2],"elL":[-50.6,-15.2],"haL":[-68.9,52.6],"hipR":[22.7,33.3],"knR":[14.9,181.6],"ftR":[21.1,321.6],"hipL":[-27.8,39.3],"knL":[-63.9,167.7],"ftL":[-86,317.9]},{"rootY":4.1,"hips":[0,0],"chest":[-4,-82.2],"neck":[-4,-82.2],"head":[-16.6,-149.1],"shR":[53.3,-108.8],"elR":[68.8,-3.7],"haR":[53.3,45.6],"shL":[-60.6,-109.6],"elL":[-53.5,-13.5],"haL":[-72.5,54.1],"hipR":[23.7,33.1],"knR":[18.4,180.6],"ftR":[26.1,319.8],"hipL":[-27.1,39.7],"knL":[-61.2,167.8],"ftL":[-81.1,318.3]},{"rootY":5,"hips":[0,0],"chest":[-4.5,-82.1],"neck":[-4.5,-82.1],"head":[-16.8,-149.5],"shR":[54.4,-108.4],"elR":[70.9,-3.4],"haR":[57.3,46.1],"shL":[-63.3,-110.1],"elL":[-57.5,-13.6],"haL":[-77.2,53.5],"hipR":[24.1,33.1],"knR":[21.3,179.7],"ftR":[31.2,317.1],"hipL":[-27.3,39.3],"knL":[-57.1,168.6],"ftL":[-71.1,319.8]},{"rootY":4.7,"hips":[0,0],"chest":[-4.7,-82.3],"neck":[-4.7,-82.3],"head":[-16.7,-149.4],"shR":[54.2,-108.4],"elR":[70.9,-3.5],"haR":[60.9,47.1],"shL":[-63.3,-110.4],"elL":[-59,-13.6],"haL":[-79.6,52.9],"hipR":[25.4,32.8],"knR":[23.5,179.1],"ftR":[36.1,313.9],"hipL":[-26.5,39.6],"knL":[-49.1,170.2],"ftL":[-61.3,321.3]},{"rootY":4,"hips":[0,0],"chest":[-5.6,-82.2],"neck":[-5.6,-82.2],"head":[-17.4,-149.1],"shR":[53.8,-109.7],"elR":[70.8,-5],"haR":[64.6,46.9],"shL":[-65.2,-108.4],"elL":[-62.5,-11.5],"haL":[-84.3,54.4],"hipR":[25.8,33.4],"knR":[21.7,181.5],"ftR":[39.3,309.4],"hipL":[-26.7,39.2],"knL":[-44.4,171.5],"ftL":[-55.3,322.2]},{"rootY":2.6,"hips":[0,0],"chest":[-7.7,-82.1],"neck":[-7.7,-82.1],"head":[-19.7,-148.7],"shR":[52,-109.7],"elR":[68.8,-5.1],"haR":[66.2,48],"shL":[-68.6,-108.5],"elL":[-67.5,-11.2],"haL":[-89.5,53.9],"hipR":[25.1,34.2],"knR":[16.3,184.1],"ftR":[37.4,301.5],"hipL":[-27.6,38.7],"knL":[-46,172.7],"ftL":[-53.4,323.4]},{"rootY":1.7,"hips":[0,0],"chest":[-7.6,-82],"neck":[-7.6,-82],"head":[-19.9,-148.5],"shR":[52.4,-110.9],"elR":[69.7,-6.4],"haR":[70,47.9],"shL":[-70.1,-107],"elL":[-71,-9.2],"haL":[-93.9,55.4],"hipR":[25.6,34.5],"knR":[14.7,184.7],"ftR":[34.4,290.5],"hipL":[-27.6,38.1],"knL":[-43.5,174.7],"ftL":[-48.7,325.3]},{"rootY":-0.6,"hips":[0,0],"chest":[-6.3,-82],"neck":[-6.3,-82],"head":[-19.1,-149.2],"shR":[54.2,-109.5],"elR":[72,-5],"haR":[74.8,50],"shL":[-69.3,-108.7],"elL":[-73.2,-10.5],"haL":[-96,53.4],"hipR":[24.6,35.5],"knR":[15,184.5],"ftR":[33.2,277.7],"hipL":[-29,36.4],"knL":[-40.2,176.7],"ftL":[-42.8,327.1]},{"rootY":-2.1,"hips":[0,0],"chest":[-8,-81.9],"neck":[-8,-81.9],"head":[-19.1,-148.5],"shR":[53.5,-112.5],"elR":[71.7,-8.3],"haR":[76.9,46.6],"shL":[-73.7,-104.8],"elL":[-81,-7],"haL":[-103.8,56.4],"hipR":[24.5,35.5],"knR":[13.6,181.3],"ftR":[28.1,264.9],"hipL":[-29.1,36.3],"knL":[-39.2,178.1],"ftL":[-41.4,328.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-9,-82.2],"neck":[-9,-82.2],"head":[-18.1,-147.9],"shR":[53.2,-113.3],"elR":[71.9,-9.3],"haR":[79.4,44.8],"shL":[-76.4,-104.5],"elL":[-85.8,-5.7],"haL":[-109.3,57.5],"hipR":[23.6,36.3],"knR":[16.6,178.9],"ftR":[26.2,254.2],"hipL":[-30.3,34.6],"knL":[-36.6,178.3],"ftL":[-37.1,328.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-9.9,-82.1],"neck":[-9.9,-82.1],"head":[-18,-147.3],"shR":[52.8,-112.8],"elR":[72.2,-9],"haR":[83.6,43.6],"shL":[-77.5,-104.8],"elL":[-90.3,-6.3],"haL":[-113.3,56.6],"hipR":[24.4,35.7],"knR":[16.2,173.9],"ftR":[22.3,246],"hipL":[-29.5,35.1],"knL":[-35.9,179.6],"ftL":[-37.1,330.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-10,-81.8],"neck":[-10,-81.8],"head":[-17.4,-148.7],"shR":[52.6,-112.2],"elR":[73.1,-8.6],"haR":[88.2,42.4],"shL":[-77.8,-105.4],"elL":[-92.1,-6.7],"haL":[-115.8,54.8],"hipR":[23.9,35.5],"knR":[15.2,169.5],"ftR":[18.5,242.3],"hipL":[-29.9,35.1],"knL":[-36.4,179.9],"ftL":[-37.6,330.3]},{"rootY":-4.4,"hips":[0,0],"chest":[-10.2,-81.8],"neck":[-10.2,-81.8],"head":[-17.4,-148.6],"shR":[53.1,-111.3],"elR":[75,-8.1],"haR":[94.3,40.5],"shL":[-77.8,-106],"elL":[-94.6,-8],"haL":[-117,53.5],"hipR":[23.6,36],"knR":[16.1,164.5],"ftR":[18.8,244.8],"hipL":[-30.2,34.6],"knL":[-35.2,179.6],"ftL":[-35,329.8]},{"rootY":-3.7,"hips":[0,0],"chest":[-10,-81.6],"neck":[-10,-81.6],"head":[-16.7,-148.6],"shR":[53.4,-111],"elR":[76.8,-8.3],"haR":[100.7,37.5],"shL":[-77.9,-106.1],"elL":[-97,-7.4],"haL":[-118.4,55.1],"hipR":[24.6,36],"knR":[16.6,159.3],"ftR":[18.2,250.3],"hipL":[-29.5,34.6],"knL":[-33.3,179.6],"ftL":[-31.9,328.7]},{"rootY":-3.4,"hips":[0,0],"chest":[-10.7,-81.4],"neck":[-10.7,-81.4],"head":[-16.5,-148.5],"shR":[52.9,-110.5],"elR":[78.1,-8.2],"haR":[106.7,34.4],"shL":[-78.6,-106.4],"elL":[-98.2,-8.5],"haL":[-119.7,47.7],"hipR":[24.2,36],"knR":[14.9,156.1],"ftR":[15.2,260.2],"hipL":[-29.6,35.4],"knL":[-34.9,180.4],"ftL":[-32,328.6]},{"rootY":-2.2,"hips":[0,0],"chest":[-11.1,-81.4],"neck":[-11.1,-81.4],"head":[-15.6,-148],"shR":[52.5,-110.3],"elR":[79.8,-8.6],"haR":[113.2,30.5],"shL":[-79.2,-106.3],"elL":[-99.8,-8.5],"haL":[-120.5,49.1],"hipR":[22.4,37.2],"knR":[16.1,154.9],"ftR":[12.8,272.1],"hipL":[-31.4,33.4],"knL":[-33.8,178.5],"ftL":[-28.7,325.9]},{"rootY":-1.7,"hips":[0,0],"chest":[-10.4,-81.4],"neck":[-10.4,-81.4],"head":[-14.4,-148.2],"shR":[53.3,-110.2],"elR":[82.7,-9.4],"haR":[120.8,26.1],"shL":[-78.5,-106.6],"elL":[-99.5,-8.9],"haL":[-119.9,48.7],"hipR":[23.5,37.5],"knR":[17.3,153.9],"ftR":[7,283.8],"hipL":[-30.4,34.2],"knL":[-32.1,179.3],"ftL":[-26.4,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.1,-81.1],"neck":[-10.1,-81.1],"head":[-13.7,-147.2],"shR":[53.7,-109.6],"elR":[86.1,-9.8],"haR":[128.6,22.1],"shL":[-78,-106.8],"elL":[-100,-9.3],"haL":[-118.7,47],"hipR":[23.4,38.1],"knR":[17.3,155.2],"ftR":[-2.4,294.1],"hipL":[-30.6,34.6],"knL":[-32.7,179.6],"ftL":[-25.4,324.3]},{"rootY":0.9,"hips":[0,0],"chest":[-8.9,-81.3],"neck":[-8.9,-81.3],"head":[-10.8,-147.8],"shR":[55,-109.4],"elR":[90.7,-10.8],"haR":[137.6,17.5],"shL":[-76.8,-107.3],"elL":[-99.6,-10.2],"haL":[-116.9,46.3],"hipR":[23.4,38.2],"knR":[18.3,159.5],"ftR":[-12.4,302.7],"hipL":[-30.6,34.2],"knL":[-31.1,179],"ftL":[-23,322.9]},{"rootY":1.4,"hips":[0,0],"chest":[-7.4,-81.4],"neck":[-7.4,-81.4],"head":[-7.2,-147.8],"shR":[57,-108.6],"elR":[96.4,-11.6],"haR":[147.4,13.3],"shL":[-74.8,-108.4],"elL":[-96.6,-11.7],"haL":[-113.4,41],"hipR":[21.6,39.5],"knR":[18.9,165.2],"ftR":[-19.9,310.5],"hipL":[-32.1,32.7],"knL":[-29.5,177.1],"ftL":[-20,320.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.4,-81.1],"neck":[-6.4,-81.1],"head":[-5.1,-147.4],"shR":[58.3,-107],"elR":[101.9,-11.9],"haR":[156.5,10.1],"shL":[-73.3,-109.4],"elL":[-97.9,-12.6],"haL":[-112.1,45],"hipR":[22.1,39.6],"knR":[17.1,168.8],"ftR":[-28.7,313.7],"hipL":[-31.6,33.3],"knL":[-30,177.5],"ftL":[-20.3,319.4]},{"rootY":3.2,"hips":[0,0],"chest":[-3.5,-81.1],"neck":[-3.5,-81.1],"head":[-0.1,-148],"shR":[61.6,-105.6],"elR":[109.8,-13],"haR":[166.4,7.1],"shL":[-69.7,-110.9],"elL":[-94.2,-15.2],"haL":[-109.2,38.8],"hipR":[21.7,40.4],"knR":[20.3,171.6],"ftR":[-30.3,315],"hipL":[-31.7,32.3],"knL":[-28.2,176.1],"ftL":[-19.2,315.6]},{"rootY":5.7,"hips":[0,0],"chest":[-0.4,-81.2],"neck":[-0.4,-81.2],"head":[3.8,-148.1],"shR":[64.9,-105.4],"elR":[116.5,-14.7],"haR":[175.2,3.9],"shL":[-66.2,-111.5],"elL":[-92,-16.7],"haL":[-108.4,36.9],"hipR":[23,40.1],"knR":[19.4,172.9],"ftR":[-32.3,315.5],"hipL":[-30.2,32.9],"knL":[-29.2,177.3],"ftL":[-20.9,311.4]},{"rootY":3.7,"hips":[0,0],"chest":[3.2,-80.6],"neck":[3.2,-80.6],"head":[10,-147.3],"shR":[68.7,-103.2],"elR":[124.7,-15],"haR":[184.7,3.3],"shL":[-61.3,-112.4],"elL":[-87.7,-17.7],"haL":[-104.8,37.7],"hipR":[25.8,39.2],"knR":[21.1,173.3],"ftR":[-29.7,315.8],"hipL":[-27.1,34.8],"knL":[-30,179.7],"ftL":[-24.8,309.5]},{"rootY":2.1,"hips":[0,0],"chest":[4.4,-80.6],"neck":[4.4,-80.6],"head":[14.6,-146.3],"shR":[69.8,-101.8],"elR":[128.4,-15.1],"haR":[189.3,3.2],"shL":[-58.6,-113.7],"elL":[-85.4,-20],"haL":[-102.3,38.9],"hipR":[27.3,38.6],"knR":[21.3,175.2],"ftR":[-29.5,317.9],"hipL":[-25,35.6],"knL":[-33.4,180.4],"ftL":[-33.6,302.7]},{"rootY":0.6,"hips":[0,0],"chest":[6.6,-80.3],"neck":[6.6,-80.3],"head":[19.2,-146],"shR":[71.4,-100.8],"elR":[133.1,-15.9],"haR":[194.7,3.4],"shL":[-55.4,-114.1],"elL":[-84.1,-20],"haL":[-99.3,43.3],"hipR":[28.3,38],"knR":[22.4,177.1],"ftR":[-29.3,319.5],"hipL":[-23.8,36.1],"knL":[-35.6,179.2],"ftL":[-44.9,294.9]},{"rootY":0.9,"hips":[0,0],"chest":[8.4,-80.1],"neck":[8.4,-80.1],"head":[22.9,-144.8],"shR":[72.8,-100.1],"elR":[137.3,-16.9],"haR":[198.9,3.9],"shL":[-52.4,-114.3],"elL":[-81.8,-21.4],"haL":[-95.1,43.5],"hipR":[29.1,37.8],"knR":[24.7,177.6],"ftR":[-28.5,319.3],"hipL":[-21.6,35.9],"knL":[-31.4,176.1],"ftL":[-52.9,285.4]},{"rootY":1.1,"hips":[0,0],"chest":[10.4,-79.1],"neck":[10.4,-79.1],"head":[29.7,-141.8],"shR":[74,-97.5],"elR":[140.5,-15.2],"haR":[202,8.2],"shL":[-48.6,-115],"elL":[-80.6,-23.1],"haL":[-94.2,41.6],"hipR":[29.8,37.6],"knR":[25,177.9],"ftR":[-27.8,320],"hipL":[-19.2,36.4],"knL":[-26.2,172.4],"ftL":[-59,274.2]},{"rootY":-1.5,"hips":[0,0],"chest":[14.5,-78.6],"neck":[14.5,-78.6],"head":[40.5,-140.9],"shR":[77.8,-97],"elR":[145.5,-15.2],"haR":[207,11.1],"shL":[-43.5,-114.4],"elL":[-78.4,-22.6],"haL":[-90.8,42.6],"hipR":[31.2,36.6],"knR":[25.1,178.9],"ftR":[-26,322.1],"hipL":[-15.9,37.8],"knL":[-15,168.1],"ftL":[-62.8,260.9]},{"rootY":-3.6,"hips":[0,0],"chest":[18.4,-78.1],"neck":[18.4,-78.1],"head":[45.2,-139.4],"shR":[80.4,-95.9],"elR":[149.2,-14.9],"haR":[209.9,15.1],"shL":[-37.7,-114.4],"elL":[-74.6,-24.3],"haL":[-84.8,40.8],"hipR":[31.5,36.2],"knR":[24.2,180.3],"ftR":[-23.9,324.7],"hipL":[-12.5,38],"knL":[-0.8,164.2],"ftL":[-62.3,248.2]},{"rootY":-9.7,"hips":[0,0],"chest":[19.9,-77.6],"neck":[19.9,-77.6],"head":[46.2,-139.2],"shR":[80,-93.5],"elR":[148.3,-12.2],"haR":[207.9,21],"shL":[-32.4,-115.6],"elL":[-72.9,-27.2],"haL":[-79,37.6],"hipR":[29.7,37.3],"knR":[20.9,183.1],"ftR":[-23,328.8],"hipL":[-11.8,37.8],"knL":[17.9,151.4],"ftL":[-64.2,236]},{"rootY":-7,"hips":[0,0],"chest":[24.8,-76.5],"neck":[24.8,-76.5],"head":[50.8,-138.7],"shR":[83.7,-92.1],"elR":[150.6,-9.9],"haR":[210.6,23.1],"shL":[-24.4,-114.3],"elL":[-68.5,-27.3],"haL":[-70.8,36.6],"hipR":[30.3,36.2],"knR":[24.3,182.1],"ftR":[-19.3,327.9],"hipL":[-8.2,38.7],"knL":[32.2,145.4],"ftL":[-51.7,228.8]},{"rootY":-9.9,"hips":[0,0],"chest":[27.4,-75.4],"neck":[27.4,-75.4],"head":[56.8,-136.3],"shR":[83.9,-90],"elR":[149.3,-6.3],"haR":[209.3,25.5],"shL":[-17,-113.7],"elL":[-65,-27.3],"haL":[-62.5,37],"hipR":[29.6,36],"knR":[23.6,182.5],"ftR":[-16.7,329.2],"hipL":[-5.8,38.8],"knL":[53.7,133.5],"ftL":[-40.4,222.9]},{"rootY":-9.6,"hips":[0,0],"chest":[30.4,-74.3],"neck":[30.4,-74.3],"head":[60.6,-135.2],"shR":[85.4,-89.5],"elR":[151.3,-6.2],"haR":[210.8,26.1],"shL":[-11.7,-111.7],"elL":[-62.3,-26.1],"haL":[-53.8,36.1],"hipR":[27.7,37],"knR":[26.1,183.5],"ftR":[-14.2,330.3],"hipL":[-4.3,38],"knL":[70.7,122.2],"ftL":[-23.1,219.2]},{"rootY":-12.4,"hips":[0,0],"chest":[33.8,-72.9],"neck":[33.8,-72.9],"head":[66,-133.2],"shR":[84.5,-86.5],"elR":[151.3,-3.9],"haR":[210.4,28.3],"shL":[-2.6,-111.7],"elL":[-54.8,-25.9],"haL":[-37.4,34.9],"hipR":[27.9,35.7],"knR":[16.9,183.8],"ftR":[-12,332.7],"hipL":[-1.7,39.2],"knL":[89.3,110.2],"ftL":[-5.7,217.4]},{"rootY":-12.1,"hips":[0,0],"chest":[36.1,-72.2],"neck":[36.1,-72.2],"head":[70.2,-132.7],"shR":[83.3,-85.9],"elR":[150.2,-3.5],"haR":[209.5,28.8],"shL":[4.6,-110.5],"elL":[-47.3,-23.9],"haL":[-22.4,35.1],"hipR":[26.1,36],"knR":[17.4,184.6],"ftR":[-9.6,333.9],"hipL":[-0.2,39.3],"knL":[103.2,102.5],"ftL":[15.5,218.7]},{"rootY":-11.3,"hips":[0,0],"chest":[38.3,-71.9],"neck":[38.3,-71.9],"head":[73.6,-132],"shR":[83.4,-83.7],"elR":[149.5,-0.9],"haR":[209.1,31.2],"shL":[10,-111.8],"elL":[-37.5,-22.9],"haL":[-4.2,32.4],"hipR":[26.4,33.5],"knR":[12.8,182.3],"ftR":[-7.4,332.3],"hipL":[3.9,40.8],"knL":[115.2,95],"ftL":[36.2,219.8]},{"rootY":-12.2,"hips":[0,0],"chest":[39.6,-71.4],"neck":[39.6,-71.4],"head":[74.8,-132.2],"shR":[81,-84.3],"elR":[146.1,-0.9],"haR":[206.3,30.6],"shL":[14.9,-110.2],"elL":[-26.7,-19.9],"haL":[16.9,30.3],"hipR":[24,34.6],"knR":[8.3,183.6],"ftR":[-7.6,334.1],"hipL":[3.7,40.8],"knL":[122.3,91.9],"ftL":[51.9,223.7]},{"rootY":-11.6,"hips":[0,0],"chest":[40.7,-71.2],"neck":[40.7,-71.2],"head":[75.9,-132.3],"shR":[81.2,-83.1],"elR":[145.8,0.8],"haR":[206,31.6],"shL":[17.6,-110.8],"elL":[-10.6,-16.6],"haL":[41.4,25.3],"hipR":[23.8,33.8],"knR":[17.1,183.2],"ftR":[-8,332.9],"hipL":[4.6,41.4],"knL":[127.4,91.2],"ftL":[64.5,227.9]},{"rootY":-12.2,"hips":[0,0],"chest":[40.7,-70.8],"neck":[40.7,-70.8],"head":[76.8,-131.8],"shR":[78.9,-81.8],"elR":[143,2.6],"haR":[203.6,32.7],"shL":[20,-111.2],"elL":[5.6,-15.9],"haL":[65,17.6],"hipR":[22.9,37.7],"knR":[28.7,186.7],"ftR":[-8.8,334.2],"hipL":[3.6,37.2],"knL":[128.2,92.9],"ftL":[72.5,233.1]},{"rootY":-12.8,"hips":[0,0],"chest":[41.3,-70.3],"neck":[41.3,-70.3],"head":[76.5,-132.1],"shR":[76.6,-79.6],"elR":[140,5.4],"haR":[200.9,35],"shL":[23.1,-112.4],"elL":[23.2,-17.3],"haL":[88.5,6.8],"hipR":[22.8,38.5],"knR":[31.6,187.5],"ftR":[-9.6,334.1],"hipL":[3.6,35.8],"knL":[129,95.6],"ftL":[77,237.6]},{"rootY":-12.3,"hips":[0,0],"chest":[41.6,-70.8],"neck":[41.6,-70.8],"head":[76.8,-132.7],"shR":[77.8,-86.2],"elR":[139.5,-0.1],"haR":[200.5,29.5],"shL":[22.4,-107],"elL":[37.2,-14.7],"haL":[106.2,-0.8],"hipR":[21.9,38],"knR":[29.8,187.5],"ftR":[-11.2,334.1],"hipL":[5.8,36.4],"knL":[130.6,100.9],"ftL":[74.2,241]},{"rootY":-11.3,"hips":[0,0],"chest":[42.4,-70.2],"neck":[42.4,-70.2],"head":[75.7,-133.2],"shR":[71.9,-83.4],"elR":[131.7,4.3],"haR":[193.3,32.3],"shL":[30.4,-108.5],"elL":[58.7,-20.7],"haL":[129,-14.4],"hipR":[21.1,35.7],"knR":[23.9,185.7],"ftR":[-13.7,333.1],"hipL":[7.7,39.2],"knL":[132.9,103.3],"ftL":[69.9,240.4]},{"rootY":-11.4,"hips":[0,0],"chest":[43.2,-69.9],"neck":[43.2,-69.9],"head":[77.1,-132.7],"shR":[71.2,-82.8],"elR":[127.1,7.6],"haR":[189.3,34.4],"shL":[32.9,-108.5],"elL":[75.7,-25.5],"haL":[146,-26],"hipR":[19.7,33],"knR":[14.6,183.2],"ftR":[-16.3,332.2],"hipL":[8.5,42],"knL":[134.6,104.5],"ftL":[66.1,239.1]},{"rootY":-10.5,"hips":[0,0],"chest":[44.3,-69.3],"neck":[44.3,-69.3],"head":[78.1,-132.1],"shR":[70.6,-86],"elR":[124.4,5.7],"haR":[186.8,31.5],"shL":[36,-103.9],"elL":[90.9,-27.6],"haL":[160.3,-30.9],"hipR":[18.5,34.1],"knR":[18.1,184.3],"ftR":[-19.8,331.8],"hipL":[7.7,41.7],"knL":[133.4,106.1],"ftL":[64.1,239.8]},{"rootY":-11.8,"hips":[0,0],"chest":[45.9,-68.4],"neck":[45.9,-68.4],"head":[79,-131.5],"shR":[71.3,-85.3],"elR":[119.9,9.1],"haR":[182.9,34.1],"shL":[38.4,-102.8],"elL":[104.1,-33.8],"haL":[173.1,-38.1],"hipR":[17.5,35.1],"knR":[10.7,185.4],"ftR":[-22.2,334],"hipL":[7.6,41.2],"knL":[133.4,106.6],"ftL":[61.5,238.7]},{"rootY":-13,"hips":[0,0],"chest":[46.6,-67.8],"neck":[46.6,-67.8],"head":[79.9,-130.7],"shR":[70.1,-86],"elR":[114.4,10.4],"haR":[177.4,35.1],"shL":[41.8,-100.7],"elL":[114.6,-38.2],"haL":[183.3,-41.3],"hipR":[17.2,33.6],"knR":[-3.8,182.8],"ftR":[-25,333.5],"hipL":[7.3,42.5],"knL":[133,106.2],"ftL":[61,237.9]},{"rootY":-17.9,"hips":[0,0],"chest":[47.8,-66.8],"neck":[47.8,-66.8],"head":[80.7,-129.9],"shR":[70.3,-83.8],"elR":[109.7,14.6],"haR":[172.7,40.2],"shL":[44.5,-100.6],"elL":[123.2,-43.7],"haL":[192.2,-43.5],"hipR":[16,36.4],"knR":[-5.3,185.6],"ftR":[-26.9,336.2],"hipL":[6.7,40.6],"knL":[129.3,112],"ftL":[55.8,242.2]},{"rootY":-22.1,"hips":[0,0],"chest":[49.7,-65.7],"neck":[49.7,-65.7],"head":[82.4,-128.9],"shR":[72.8,-83.6],"elR":[106.6,16.7],"haR":[168.9,44.2],"shL":[45.9,-98.5],"elL":[128.4,-45.4],"haL":[197.9,-41.4],"hipR":[14.6,35.1],"knR":[-6.9,184.2],"ftR":[-28.6,334.9],"hipL":[6.1,42.3],"knL":[125.8,119.5],"ftL":[49,248.3]},{"rootY":-25.5,"hips":[0,0],"chest":[51.2,-64.3],"neck":[51.2,-64.3],"head":[83.2,-127.7],"shR":[71.9,-84.2],"elR":[101.6,17.1],"haR":[162.8,47.4],"shL":[50.6,-94.7],"elL":[135.3,-42.9],"haL":[205,-35.2],"hipR":[13.1,35.4],"knR":[-5.1,185],"ftR":[-23.5,336.1],"hipL":[6.7,42.2],"knL":[122.5,126.2],"ftL":[43.5,253.8]},{"rootY":-29.5,"hips":[0,0],"chest":[52.7,-63.4],"neck":[52.7,-63.4],"head":[84.9,-126.6],"shR":[74.1,-81.8],"elR":[99.8,20.3],"haR":[159.6,53.2],"shL":[52.6,-95.1],"elL":[137,-43],"haL":[206.2,-30.9],"hipR":[11.4,31.6],"knR":[-5.6,181.3],"ftR":[-22.7,332.6],"hipL":[4.9,45.2],"knL":[118.6,132.5],"ftL":[38.7,259.6]},{"rootY":-39.2,"hips":[0,0],"chest":[54.2,-62.1],"neck":[54.2,-62.1],"head":[86.4,-125.1],"shR":[75.2,-81],"elR":[96.8,21.9],"haR":[155.3,57.2],"shL":[55.2,-93],"elL":[137.9,-38.4],"haL":[206.5,-22.9],"hipR":[9.8,33.9],"knR":[13.9,184.5],"ftR":[-25.9,331.3],"hipL":[4.2,44.2],"knL":[111.8,140.3],"ftL":[33.5,268.9]},{"rootY":-47.7,"hips":[0,0],"chest":[56,-60.2],"neck":[56,-60.2],"head":[87.9,-123.1],"shR":[76.4,-78.9],"elR":[95.7,24.4],"haR":[153.2,61.9],"shL":[59,-90.5],"elL":[137.6,-31.7],"haL":[205.6,-15.9],"hipR":[9,36.6],"knR":[33.9,185.2],"ftR":[-28.3,323.9],"hipL":[5.7,42.2],"knL":[105.5,147.1],"ftL":[30.3,277.6]},{"rootY":-56.4,"hips":[0,0],"chest":[58.7,-57.7],"neck":[58.7,-57.7],"head":[90.6,-120.5],"shR":[81.3,-74.7],"elR":[97.8,28.9],"haR":[153.9,68.5],"shL":[61.2,-88.9],"elL":[134.1,-24.9],"haL":[201.5,-9.3],"hipR":[11.5,36.7],"knR":[49,182.6],"ftR":[-29,313.1],"hipL":[6.5,41.5],"knL":[98.8,153.3],"ftL":[28.1,286.3]},{"rootY":-64.7,"hips":[0,0],"chest":[59.2,-56.9],"neck":[59.2,-56.9],"head":[91.9,-119.1],"shR":[80.9,-73],"elR":[95.8,30.8],"haR":[150.4,72.8],"shL":[64.2,-88.2],"elL":[132.6,-18.7],"haL":[199.6,-2.6],"hipR":[9.5,37.3],"knR":[66.3,176.8],"ftR":[-23.6,299.6],"hipL":[5.6,41.5],"knL":[91.4,158.5],"ftL":[26.8,294.6]},{"rootY":-72.9,"hips":[0,0],"chest":[58.8,-56.7],"neck":[58.8,-56.7],"head":[92.6,-118],"shR":[78.2,-65.8],"elR":[92.2,37.8],"haR":[145.3,81.7],"shL":[69.1,-92.9],"elL":[134.4,-19.6],"haL":[200.7,-1.9],"hipR":[9.6,37.3],"knR":[81.7,169.6],"ftR":[-20.6,282.3],"hipL":[5,41.6],"knL":[83,163.9],"ftL":[24.9,302.9]},{"rootY":-80.1,"hips":[0,0],"chest":[59.4,-55.1],"neck":[59.4,-55.1],"head":[94.2,-115.6],"shR":[76.6,-60.9],"elR":[89.7,42.3],"haR":[141.6,87.6],"shL":[73.1,-93.4],"elL":[136,-16.7],"haL":[202.2,2.7],"hipR":[8.4,37.2],"knR":[97.4,158.7],"ftR":[-12,264.5],"hipL":[5.9,41.7],"knL":[76.5,168.5],"ftL":[23.8,309.8]},{"rootY":-85.7,"hips":[0,0],"chest":[59.2,-55.3],"neck":[59.2,-55.3],"head":[94.6,-115.3],"shR":[77.8,-59.2],"elR":[90.3,44.1],"haR":[141.1,90.8],"shL":[72.3,-94.9],"elL":[132.7,-16.9],"haL":[198,4.3],"hipR":[7.3,37.5],"knR":[110.6,147],"ftR":[-4,247.1],"hipL":[4.6,41.9],"knL":[68.7,172],"ftL":[22.4,315.3]},{"rootY":-91.3,"hips":[0,0],"chest":[59,-55.1],"neck":[59,-55.1],"head":[94.5,-115.1],"shR":[76.8,-59],"elR":[89.7,44.4],"haR":[139.3,92.5],"shL":[73.3,-94.3],"elL":[131.4,-14.8],"haL":[195.7,8.3],"hipR":[6.6,38],"knR":[121.8,135],"ftR":[3.5,230.8],"hipL":[4.5,41.5],"knL":[61.4,174.9],"ftL":[19.6,320]},{"rootY":-96.9,"hips":[0,0],"chest":[59.5,-54.4],"neck":[59.5,-54.4],"head":[95.6,-114.1],"shR":[77.5,-56],"elR":[89.5,47],"haR":[138.7,95.3],"shL":[73.4,-95.8],"elL":[129.8,-14.7],"haL":[193.5,10.1],"hipR":[7.4,37],"knR":[130.9,123.3],"ftR":[13.2,219.8],"hipL":[5,42.2],"knL":[54.2,178.6],"ftL":[17.5,325.3]},{"rootY":-99.1,"hips":[0,0],"chest":[59,-54.7],"neck":[59,-54.7],"head":[95.3,-114.4],"shR":[76.3,-56.2],"elR":[86.4,46.2],"haR":[135.8,93.9],"shL":[73.9,-96],"elL":[129.3,-13.6],"haL":[192.7,12.7],"hipR":[5.8,38.3],"knR":[138.5,109.5],"ftR":[25.2,210.9],"hipL":[4.4,41.3],"knL":[49.2,179.2],"ftL":[16.8,326.7]},{"rootY":-102.9,"hips":[0,0],"chest":[59.3,-54.5],"neck":[59.3,-54.5],"head":[96.1,-113.6],"shR":[76.2,-56.3],"elR":[84.7,45.8],"haR":[135,91.8],"shL":[74.9,-95.2],"elL":[128.8,-11.7],"haL":[191.4,15.9],"hipR":[6.3,37.2],"knR":[143,100.6],"ftR":[35.6,208.2],"hipL":[4.4,42.2],"knL":[44.3,181.5],"ftL":[14.7,329.8]},{"rootY":-103.7,"hips":[0,0],"chest":[58.2,-55.8],"neck":[58.2,-55.8],"head":[94.5,-115.5],"shR":[77.4,-58.2],"elR":[82.5,41.8],"haR":[133.9,84.6],"shL":[71.7,-96.1],"elL":[124.1,-11.6],"haL":[186.4,16.3],"hipR":[6,38.8],"knR":[146.2,93.9],"ftR":[46.2,208.3],"hipL":[3.5,40.9],"knL":[40.4,181],"ftL":[12.2,329.5]},{"rootY":-108.2,"hips":[0,0],"chest":[59.8,-54.5],"neck":[59.8,-54.5],"head":[96.6,-113.9],"shR":[75.4,-58.7],"elR":[81.1,39.9],"haR":[135.1,77],"shL":[76.8,-92.9],"elL":[126.8,-7.2],"haL":[188.3,21.1],"hipR":[8.3,35],"knR":[146.9,94.2],"ftR":[54.7,215],"hipL":[5.2,43.5],"knL":[37.4,184.8],"ftL":[9.8,333.6]},{"rootY":-108.9,"hips":[0,0],"chest":[59.1,-55.4],"neck":[59.1,-55.4],"head":[96.5,-114.4],"shR":[75.3,-62.6],"elR":[80.7,33.3],"haR":[136.6,62.2],"shL":[75.7,-90.9],"elL":[124.3,-4.2],"haL":[185.9,24.2],"hipR":[8.3,35.3],"knR":[146.8,94.6],"ftR":[62.1,220.7],"hipL":[4.9,43.3],"knL":[35.2,185.1],"ftL":[7,333.8]},{"rootY":-107.4,"hips":[0,0],"chest":[57.6,-56.8],"neck":[57.6,-56.8],"head":[95.7,-115.2],"shR":[72.9,-65.7],"elR":[84.4,30.9],"haR":[143.1,49.5],"shL":[74.9,-90.9],"elL":[121.8,-3.2],"haL":[183.6,25],"hipR":[8.2,36.7],"knR":[146.5,96.5],"ftR":[65.9,225.2],"hipL":[4.5,42.4],"knL":[36,183.9],"ftL":[5.1,331.8]},{"rootY":-105.4,"hips":[0,0],"chest":[56.7,-57.6],"neck":[56.7,-57.6],"head":[95.4,-115.8],"shR":[73.6,-67.5],"elR":[91.2,27.3],"haR":[150.3,35.7],"shL":[71.9,-91.3],"elL":[116.8,-2.8],"haL":[178.1,25.3],"hipR":[6.7,38.5],"knR":[145,98.3],"ftR":[67.6,229],"hipL":[5.2,40.9],"knL":[37.4,182.3],"ftL":[2.8,329.4]},{"rootY":-104.8,"hips":[0,0],"chest":[56.2,-58.5],"neck":[56.2,-58.5],"head":[95.4,-116],"shR":[74.3,-69.9],"elR":[97.4,19.1],"haR":[155.1,19.7],"shL":[69.9,-91.1],"elL":[113.1,-2],"haL":[174.1,26.2],"hipR":[6.8,38.3],"knR":[142.6,103.2],"ftR":[63.9,233.2],"hipL":[4.9,41.1],"knL":[38.4,182.2],"ftL":[0.7,328.5]},{"rootY":-105,"hips":[0,0],"chest":[56.3,-58.8],"neck":[56.3,-58.8],"head":[95.4,-116.5],"shR":[75.4,-72.3],"elR":[124.4,11.7],"haR":[181.6,3.8],"shL":[68.9,-89.5],"elL":[109.7,0.4],"haL":[170.6,28.2],"hipR":[7.6,38.6],"knR":[140.5,109.1],"ftR":[58.4,237],"hipL":[5.6,40.6],"knL":[38.1,181.9],"ftL":[-3,327.3]},{"rootY":-105.5,"hips":[0,0],"chest":[56,-59.4],"neck":[56,-59.4],"head":[95.9,-116.2],"shR":[74.6,-75.4],"elR":[147.9,-2.5],"haR":[203.3,-24.2],"shL":[69.1,-87.5],"elL":[108,3.5],"haL":[169.1,31.6],"hipR":[7.1,38.6],"knR":[138.5,111.9],"ftR":[54.5,238.5],"hipL":[4.7,40.8],"knL":[36.9,182.2],"ftL":[-5.7,327.3]},{"rootY":-106.5,"hips":[0,0],"chest":[56,-59.5],"neck":[56,-59.5],"head":[95.5,-116.6],"shR":[76.1,-77.4],"elR":[160,-14.1],"haR":[214.4,-47.8],"shL":[67.7,-85.6],"elL":[104.2,6.2],"haL":[165.3,34.3],"hipR":[6.3,38.7],"knR":[136.4,113.7],"ftR":[51.1,239.7],"hipL":[4.3,40.9],"knL":[33.7,182.9],"ftL":[-8.5,328.3]},{"rootY":-108.1,"hips":[0,0],"chest":[56.4,-58.9],"neck":[56.4,-58.9],"head":[96.2,-115.5],"shR":[70.4,-77.2],"elR":[158,-19.5],"haR":[217.4,-51.5],"shL":[74.5,-84.6],"elL":[106.5,9],"haL":[167.2,38],"hipR":[6.1,38.7],"knR":[134.1,117.1],"ftR":[47.4,242],"hipL":[4.5,40.9],"knL":[28.4,184],"ftL":[-11.1,330]},{"rootY":-112.9,"hips":[0,0],"chest":[57.6,-57.9],"neck":[57.6,-57.9],"head":[97.7,-113.8],"shR":[72.5,-78.1],"elR":[158.9,-19.8],"haR":[218,-48.1],"shL":[75.1,-81.4],"elL":[103.2,12.9],"haL":[163.2,43.1],"hipR":[5.9,38.5],"knR":[130,122.6],"ftR":[42.7,247.2],"hipL":[4.3,41.1],"knL":[23.2,184.8],"ftL":[-15.5,331.3]},{"rootY":-118.9,"hips":[0,0],"chest":[58.7,-56.8],"neck":[58.7,-56.8],"head":[99,-112.1],"shR":[73.6,-78.9],"elR":[134.5,-3.5],"haR":[198.2,-18.8],"shL":[76.3,-78.2],"elL":[100.1,17.4],"haL":[159.4,49.3],"hipR":[5.4,38.2],"knR":[124.8,128.6],"ftR":[38.3,253.7],"hipL":[2.7,41.6],"knL":[18.5,185.9],"ftL":[-15.2,333.8]},{"rootY":-125.1,"hips":[0,0],"chest":[60.1,-55.5],"neck":[60.1,-55.5],"head":[100,-111],"shR":[79.5,-79.1],"elR":[140.2,-1.2],"haR":[204,-17.2],"shL":[73,-75.2],"elL":[93.5,20.5],"haL":[151.7,54.5],"hipR":[4.4,38.7],"knR":[118.1,136],"ftR":[33.4,262.5],"hipL":[1.5,41.4],"knL":[17,185.6],"ftL":[-12.9,334.5]},{"rootY":-132,"hips":[0,0],"chest":[61.5,-53.7],"neck":[61.5,-53.7],"head":[100.4,-110],"shR":[84.3,-77.5],"elR":[139.7,3.5],"haR":[203.4,-11],"shL":[70.4,-73.4],"elL":[88.1,22.7],"haL":[144.6,59.3],"hipR":[4.1,37.7],"knR":[109.9,142.6],"ftR":[25.9,269.5],"hipL":[0.3,42.3],"knL":[19.7,186.1],"ftL":[-12.7,334.4]},{"rootY":-137.9,"hips":[0,0],"chest":[63.6,-50.9],"neck":[63.6,-50.9],"head":[102.5,-106.6],"shR":[80.5,-75.3],"elR":[132.5,7.7],"haR":[196.1,-4.3],"shL":[77.9,-70.7],"elL":[92.2,25.7],"haL":[147,64.6],"hipR":[4.7,37.6],"knR":[105,147.9],"ftR":[26.1,277.9],"hipL":[0.4,42.4],"knL":[28.3,184.4],"ftL":[-14.1,330.2]},{"rootY":-146.7,"hips":[0,0],"chest":[65.3,-48.6],"neck":[65.3,-48.6],"head":[104.4,-103.7],"shR":[76.7,-73.8],"elR":[123.1,11.7],"haR":[186.7,1.2],"shL":[85.4,-67.6],"elL":[96.8,29.8],"haL":[150.5,70.7],"hipR":[6.1,37.2],"knR":[98.7,154.3],"ftR":[23.5,286.5],"hipL":[0.9,42.6],"knL":[39.2,182.1],"ftL":[-20,321.9]},{"rootY":-152.8,"hips":[0,0],"chest":[65.6,-47.7],"neck":[65.6,-47.7],"head":[104.4,-103],"shR":[76,-73.2],"elR":[120.1,15.7],"haR":[184.6,6],"shL":[87.9,-65.6],"elL":[98,32.3],"haL":[150.7,75],"hipR":[5.5,37.6],"knR":[93.8,158],"ftR":[23.5,292.7],"hipL":[0.1,42.4],"knL":[53.3,176.3],"ftL":[-22.2,307.8]},{"rootY":-159.8,"hips":[0,0],"chest":[66.8,-46.4],"neck":[66.8,-46.4],"head":[105.7,-101.6],"shR":[79,-72.8],"elR":[119.3,18.9],"haR":[184.2,10.4],"shL":[88.2,-62.7],"elL":[97,35.4],"haL":[149.3,78.8],"hipR":[7.2,37],"knR":[88.7,162.3],"ftR":[22.6,299],"hipL":[0.4,42.7],"knL":[68.2,168.7],"ftL":[-22.3,289.8]},{"rootY":-165.7,"hips":[0,0],"chest":[68.3,-44.4],"neck":[68.3,-44.4],"head":[107.7,-98.5],"shR":[85.4,-69.7],"elR":[122.5,24],"haR":[187.6,16.9],"shL":[85.6,-60.9],"elL":[93.7,35.8],"haL":[145.5,78.9],"hipR":[8.8,36.2],"knR":[82.9,166],"ftR":[22.7,305.1],"hipL":[2.3,43],"knL":[83.5,158.3],"ftL":[-17.3,269.4]},{"rootY":-171.2,"hips":[0,0],"chest":[68.7,-43.8],"neck":[68.7,-43.8],"head":[108,-98.4],"shR":[88.3,-69.3],"elR":[123.2,25.6],"haR":[188.3,19],"shL":[84.3,-59.1],"elL":[91.3,37.2],"haL":[143.7,79.2],"hipR":[8.2,36.9],"knR":[77.7,169.4],"ftR":[22.5,310.6],"hipL":[2,42.5],"knL":[97.5,145.8],"ftL":[-11,249]},{"rootY":-175.8,"hips":[0,0],"chest":[69.7,-42.5],"neck":[69.7,-42.5],"head":[108.8,-96.7],"shR":[94,-65.4],"elR":[125.5,30.3],"haR":[190.2,24.5],"shL":[82.2,-58.8],"elL":[87.4,36.6],"haL":[141.6,74.6],"hipR":[9.9,36],"knR":[72.6,171.7],"ftR":[21.6,314.2],"hipL":[2.7,43],"knL":[108.5,132.1],"ftL":[-2.8,231.7]},{"rootY":-180.8,"hips":[0,0],"chest":[70.6,-40.8],"neck":[70.6,-40.8],"head":[110.6,-93.9],"shR":[94.3,-62.2],"elR":[123,33.9],"haR":[187.4,28],"shL":[86,-56.5],"elL":[87.8,37.7],"haL":[143.6,69.2],"hipR":[11.7,35.7],"knR":[67.5,174.6],"ftR":[19.4,318.3],"hipL":[4.7,42.7],"knL":[116.4,119.7],"ftL":[8.4,219.9]},{"rootY":-182.4,"hips":[0,0],"chest":[70.7,-40.2],"neck":[70.7,-40.2],"head":[111.3,-92.3],"shR":[95.4,-59.5],"elR":[121.5,37.4],"haR":[185.6,30.7],"shL":[87.2,-55.7],"elL":[88.8,38.6],"haL":[147.7,60.7],"hipR":[11.3,35.9],"knR":[63.5,176],"ftR":[18.5,320.8],"hipL":[4.8,42.5],"knL":[125.1,107.1],"ftL":[19.6,211.5]},{"rootY":-184.7,"hips":[0,0],"chest":[71,-39.4],"neck":[71,-39.4],"head":[113,-89.4],"shR":[97.3,-57.1],"elR":[120.9,40.7],"haR":[184.9,32.7],"shL":[87.6,-54.4],"elL":[91,38.5],"haL":[150.8,52.1],"hipR":[12.3,35.5],"knR":[59.2,177.6],"ftR":[16.5,322.9],"hipL":[5.2,42.6],"knL":[129.6,97.1],"ftL":[32,208.8]},{"rootY":-185.7,"hips":[0,0],"chest":[71.5,-38.2],"neck":[71.5,-38.2],"head":[115,-87.4],"shR":[99.2,-54.5],"elR":[119.4,44.2],"haR":[183.3,35.3],"shL":[87.8,-52.9],"elL":[94.8,40.2],"haL":[157.1,45.8],"hipR":[12.6,35.4],"knR":[56.9,178.4],"ftR":[14.5,323.8],"hipL":[5.9,42.5],"knL":[133.5,91.9],"ftL":[45.1,211.3]},{"rootY":-187,"hips":[0,0],"chest":[71.9,-36.9],"neck":[71.9,-36.9],"head":[117.4,-83.8],"shR":[98.5,-52.4],"elR":[115.7,46.8],"haR":[179.3,37.1],"shL":[90.7,-50.9],"elL":[101.6,40.7],"haL":[164.1,43.2],"hipR":[12.7,35.5],"knR":[55,179.2],"ftR":[11.8,324.4],"hipL":[6.3,42.3],"knL":[135.3,89.9],"ftL":[56.4,216]},{"rootY":-187.5,"hips":[0,0],"chest":[71.7,-37.2],"neck":[71.7,-37.2],"head":[119.1,-82.1],"shR":[101.3,-50],"elR":[115.2,49.2],"haR":[178.6,39.9],"shL":[88.1,-52.7],"elL":[102.8,38.4],"haL":[166,38.9],"hipR":[12.4,35.6],"knR":[51.4,180.1],"ftR":[8.1,325.2],"hipL":[5.3,42.5],"knL":[134.9,90.2],"ftL":[63.6,221.5]},{"rootY":-188.6,"hips":[0,0],"chest":[71.9,-36.5],"neck":[71.9,-36.5],"head":[120.6,-79.1],"shR":[100.7,-49.3],"elR":[110.9,49.8],"haR":[174.1,40.7],"shL":[89.9,-50.6],"elL":[107.7,39.1],"haL":[170.7,38.1],"hipR":[13,35.4],"knR":[48.6,180.9],"ftR":[3.8,325.6],"hipL":[5.6,42.4],"knL":[134.5,94.2],"ftL":[66.1,227.3]},{"rootY":-188.8,"hips":[0,0],"chest":[72.1,-36.1],"neck":[72.1,-36.1],"head":[122,-77.6],"shR":[100.8,-48.1],"elR":[107.3,50.6],"haR":[170.1,42.1],"shL":[91.1,-49.5],"elL":[109.4,39.4],"haL":[171.8,37.8],"hipR":[13.2,35.1],"knR":[46.6,181.2],"ftR":[-1.6,325],"hipL":[4.9,42.8],"knL":[132.5,100.1],"ftL":[62.1,232.2]},{"rootY":-188.5,"hips":[0,0],"chest":[71.7,-36.4],"neck":[71.7,-36.4],"head":[122.7,-75.3],"shR":[97.5,-46.6],"elR":[100.9,51.8],"haR":[163.7,43.4],"shL":[94.4,-50.5],"elL":[110.6,38],"haL":[171.9,36.7],"hipR":[11,36.2],"knR":[44,182.4],"ftR":[-5,325.7],"hipL":[3.4,42.6],"knL":[129.4,104.7],"ftL":[56.1,235.3]},{"rootY":-191.2,"hips":[0,0],"chest":[72.1,-35.7],"neck":[72.1,-35.7],"head":[124,-73.1],"shR":[101,-45.9],"elR":[99.5,51.7],"haR":[162,44.9],"shL":[91.6,-49.4],"elL":[104.2,39],"haL":[164.8,37.2],"hipR":[10.3,36.1],"knR":[39.7,183.1],"ftR":[-11.4,325.7],"hipL":[2.8,42.8],"knL":[126.7,109.6],"ftL":[48.9,237.9]},{"rootY":-189.6,"hips":[0,0],"chest":[72.5,-35.3],"neck":[72.5,-35.3],"head":[125.8,-71],"shR":[103.3,-45.6],"elR":[94.6,50.4],"haR":[157.2,45.1],"shL":[90.4,-48.2],"elL":[98.1,40.3],"haL":[158.2,37.8],"hipR":[9.1,37.2],"knR":[36.4,184.8],"ftR":[-16.3,326.4],"hipL":[1.2,42.3],"knL":[124.2,112.7],"ftL":[42.6,237.9]},{"rootY":-194.4,"hips":[0,0],"chest":[73.3,-33.6],"neck":[73.3,-33.6],"head":[127.6,-67.2],"shR":[103.4,-43.6],"elR":[87,50.5],"haR":[149.8,47.5],"shL":[92.1,-46.3],"elL":[93.2,42.3],"haL":[152,39.7],"hipR":[8.2,37.1],"knR":[29.7,185.8],"ftR":[-23.1,328],"hipL":[0.9,42.5],"knL":[120.6,119],"ftL":[35.3,242]},{"rootY":-197.7,"hips":[0,0],"chest":[74.4,-31.7],"neck":[74.4,-31.7],"head":[130,-63.6],"shR":[106.1,-42.3],"elR":[80,50.1],"haR":[143.2,50.3],"shL":[91.3,-43.9],"elL":[85.2,46],"haL":[144.2,41.9],"hipR":[8.7,37],"knR":[21.9,186.8],"ftR":[-30.3,329.2],"hipL":[0.1,42.6],"knL":[115.7,126],"ftL":[26.5,246.4]},{"rootY":-203.6,"hips":[0,0],"chest":[75.1,-30.1],"neck":[75.1,-30.1],"head":[131.7,-60.2],"shR":[106.3,-42.1],"elR":[71.1,47.5],"haR":[134.3,52],"shL":[92.4,-41.1],"elL":[77.7,50.7],"haL":[137.9,46.9],"hipR":[6.9,37.5],"knR":[13.3,187.7],"ftR":[-36.1,331.2],"hipL":[-1.2,42.4],"knL":[109.3,132.7],"ftL":[17.6,251.8]},{"rootY":-208.2,"hips":[0,0],"chest":[76.3,-27.7],"neck":[76.3,-27.7],"head":[133.4,-56.6],"shR":[107.8,-39.9],"elR":[64.2,45.6],"haR":[126.8,55.8],"shL":[93.1,-38.7],"elL":[69.9,51.5],"haL":[129.3,50.1],"hipR":[5.8,38.1],"knR":[3.6,188.5],"ftR":[-42.7,333.3],"hipL":[-1.9,42.1],"knL":[101,142],"ftL":[7,258.7]},{"rootY":-213.5,"hips":[0,0],"chest":[76.9,-26.4],"neck":[76.9,-26.4],"head":[134.7,-54.2],"shR":[108.4,-39.5],"elR":[57.1,41.3],"haR":[119,56.9],"shL":[93.1,-37.6],"elL":[61.5,51.2],"haL":[121.3,52.8],"hipR":[4,38.2],"knR":[-5.3,188.4],"ftR":[-49.1,334.1],"hipL":[-3.7,42],"knL":[93.9,147.2],"ftL":[-2.5,262.7]},{"rootY":-216.9,"hips":[0,0],"chest":[76.5,-27.7],"neck":[76.5,-27.7],"head":[134.5,-55.2],"shR":[108,-41.6],"elR":[49.9,34.1],"haR":[110.5,55.6],"shL":[92.7,-38.2],"elL":[53.1,47.9],"haL":[112.5,53.9],"hipR":[-0.5,38.2],"knR":[-6.1,188.7],"ftR":[-54,333.2],"hipL":[-7.6,41.6],"knL":[85.8,151],"ftL":[-10.6,266.4]},{"rootY":-220.6,"hips":[0,0],"chest":[77.8,-24.8],"neck":[77.8,-24.8],"head":[135.8,-52.1],"shR":[108.4,-39],"elR":[44.5,32.9],"haR":[103.6,59.4],"shL":[94.6,-36],"elL":[47.3,46.1],"haL":[105.4,58.9],"hipR":[1.9,37.7],"knR":[-17.3,187.2],"ftR":[-62.2,332.6],"hipL":[-5.5,42.3],"knL":[80.2,158],"ftL":[-19.7,270.3]},{"rootY":-224.2,"hips":[0,0],"chest":[77.6,-25.1],"neck":[77.6,-25.1],"head":[136.1,-52.7],"shR":[106,-40.9],"elR":[38.7,24.7],"haR":[94.6,55.6],"shL":[96.4,-35.3],"elL":[42.2,42.8],"haL":[98.2,62.7],"hipR":[0.8,37.9],"knR":[-13.7,187.9],"ftR":[-71.5,328.7],"hipL":[-5.8,42.1],"knL":[72.4,163.4],"ftL":[-31.1,273.4]},{"rootY":-227.7,"hips":[0,0],"chest":[77.7,-25.3],"neck":[77.7,-25.3],"head":[136.4,-53.1],"shR":[105.8,-41.9],"elR":[35.7,18.7],"haR":[88.8,52.8],"shL":[96.4,-35.3],"elL":[37.8,39.4],"haL":[91.7,64.6],"hipR":[-0.1,37.6],"knR":[-9.2,188.1],"ftR":[-79.9,322.8],"hipL":[-6.1,42.2],"knL":[67,166.9],"ftL":[-34.5,278]},{"rootY":-231.1,"hips":[0,0],"chest":[77.7,-25.5],"neck":[77.7,-25.5],"head":[136.1,-53.8],"shR":[102.7,-42.7],"elR":[30.9,14],"haR":[81.3,50.7],"shL":[99.7,-35],"elL":[36.9,37.4],"haL":[88.5,67.5],"hipR":[-0.9,37.4],"knR":[-6.4,188],"ftR":[-88.3,316.3],"hipL":[-6.5,42.3],"knL":[61,170.3],"ftL":[-40.4,281.5]}]},"dab":{"name":"dab","fps":30,"height":520,"groundY":257,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-2.7,-100.2],"neck":[-0.2,-168.2],"head":[-0.2,-204],"shR":[51.8,-150.4],"elR":[129,-162],"haR":[197.6,-174.4],"shL":[-53.6,-148.5],"elL":[-129.7,-156.2],"haL":[-198.2,-160.7],"hipR":[24.8,7.4],"knR":[22.5,130.4],"ftR":[17.9,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-27.9,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.7,-100.2],"neck":[-0.1,-168.2],"head":[-0.1,-204],"shR":[51.8,-150.4],"elR":[129.1,-161.9],"haR":[197.7,-174.3],"shL":[-53.5,-148.6],"elL":[-129.6,-156.4],"haL":[-198.1,-161.1],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.9,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.6,-100.2],"neck":[0.1,-168.2],"head":[0,-204],"shR":[52,-150.5],"elR":[129.2,-161.8],"haR":[197.9,-174],"shL":[-53.3,-148.8],"elL":[-129.5,-156.8],"haL":[-197.9,-161.7],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.8,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.5,-100.2],"neck":[0.3,-168.1],"head":[0.3,-203.9],"shR":[52.2,-150.5],"elR":[129.4,-161.7],"haR":[198.1,-173.7],"shL":[-53.1,-149],"elL":[-129.3,-157.2],"haL":[-197.7,-162.3],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.8,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28.1,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.4,-100.2],"neck":[0.6,-168.1],"head":[0.5,-203.9],"shR":[52.4,-150.5],"elR":[129.6,-161.5],"haR":[198.4,-173.3],"shL":[-52.9,-149.2],"elL":[-129,-157.5],"haL":[-197.5,-162.7],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.7,255.7],"hipL":[-25.2,8.1],"knL":[-26.5,131.3],"ftL":[-28.2,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.2,-100.2],"neck":[0.8,-168.1],"head":[0.7,-203.9],"shR":[52.6,-150.5],"elR":[129.9,-161.3],"haR":[198.7,-172.9],"shL":[-52.7,-149.4],"elL":[-128.8,-157.8],"haL":[-197.3,-163.2],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.6,255.7],"hipL":[-25.3,8.1],"knL":[-26.6,131.3],"ftL":[-28.3,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-100.2],"neck":[1.1,-168.1],"head":[1,-203.9],"shR":[52.8,-150.5],"elR":[130.1,-161.1],"haR":[198.9,-172.5],"shL":[-52.5,-149.6],"elL":[-128.5,-158.2],"haL":[-197,-163.7],"hipR":[24.8,7.5],"knR":[22.4,130.5],"ftR":[17.4,255.7],"hipL":[-25.3,8.1],"knL":[-26.7,131.3],"ftL":[-28.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-2,-100.2],"neck":[1.3,-168.1],"head":[1.3,-203.9],"shR":[53.1,-150.4],"elR":[130.4,-160.9],"haR":[199.2,-172.3],"shL":[-52.2,-149.8],"elL":[-128.3,-158.6],"haL":[-196.7,-164.3],"hipR":[24.9,7.5],"knR":[22.3,130.5],"ftR":[17.3,255.7],"hipL":[-25.3,8.1],"knL":[-26.8,131.3],"ftL":[-28.6,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.8,-100.2],"neck":[1.6,-168.2],"head":[1.6,-203.9],"shR":[53.3,-150.3],"elR":[130.6,-160.8],"haR":[199.4,-172.2],"shL":[-52,-150],"elL":[-128,-159],"haL":[-196.4,-164.9],"hipR":[24.9,7.5],"knR":[22.2,130.5],"ftR":[17.1,255.7],"hipL":[-25.3,8.1],"knL":[-26.8,131.3],"ftL":[-28.7,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.7,-100.2],"neck":[1.9,-168.2],"head":[1.9,-203.8],"shR":[53.5,-150.3],"elR":[130.8,-160.8],"haR":[199.6,-172.2],"shL":[-51.7,-150.1],"elL":[-127.7,-159.5],"haL":[-196,-165.7],"hipR":[24.8,7.5],"knR":[22.2,130.5],"ftR":[17,255.7],"hipL":[-25.3,8.1],"knL":[-26.9,131.2],"ftL":[-28.9,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.6,-100.2],"neck":[2.2,-168.2],"head":[2.2,-203.8],"shR":[53.8,-150.2],"elR":[131,-160.8],"haR":[199.8,-172.3],"shL":[-51.5,-150.4],"elL":[-127.3,-160.1],"haL":[-195.6,-166.6],"hipR":[24.8,7.5],"knR":[22.1,130.5],"ftR":[16.8,255.7],"hipL":[-25.3,8.1],"knL":[-27,131.2],"ftL":[-29.1,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.5,-100.2],"neck":[2.4,-168.2],"head":[2.4,-203.8],"shR":[54,-150.2],"elR":[131.2,-160.9],"haR":[200,-172.4],"shL":[-51.3,-150.6],"elL":[-127,-160.7],"haL":[-195.3,-167.6],"hipR":[24.8,7.5],"knR":[22,130.5],"ftR":[16.5,255.7],"hipL":[-25.3,8.1],"knL":[-27.1,131.2],"ftL":[-29.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.4,-100.3],"neck":[2.6,-168.2],"head":[2.6,-203.8],"shR":[54.1,-150.3],"elR":[131.4,-161],"haR":[200.1,-172.6],"shL":[-51.1,-150.8],"elL":[-126.8,-161.3],"haL":[-194.9,-168.5],"hipR":[24.8,7.5],"knR":[21.8,130.5],"ftR":[16.2,255.7],"hipL":[-25.3,8.1],"knL":[-27.3,131.2],"ftL":[-29.7,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.3,-100.3],"neck":[2.7,-168.2],"head":[2.8,-203.8],"shR":[54.2,-150.3],"elR":[131.5,-161.1],"haR":[200.2,-172.8],"shL":[-50.9,-151],"elL":[-126.6,-161.7],"haL":[-194.6,-169.2],"hipR":[24.8,7.5],"knR":[21.6,130.5],"ftR":[15.9,255.7],"hipL":[-25.3,8],"knL":[-27.4,131.2],"ftL":[-30,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.2,-100.3],"neck":[2.8,-168.2],"head":[2.9,-203.9],"shR":[54.3,-150.3],"elR":[131.6,-161.2],"haR":[200.3,-173],"shL":[-50.8,-151.2],"elL":[-126.3,-162.1],"haL":[-194.3,-169.8],"hipR":[24.8,7.5],"knR":[21.4,130.5],"ftR":[15.6,255.7],"hipL":[-25.4,8],"knL":[-27.6,131.2],"ftL":[-30.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-100.3],"neck":[3,-168.2],"head":[3.1,-203.8],"shR":[54.5,-150.3],"elR":[131.8,-161.3],"haR":[200.4,-173.1],"shL":[-50.7,-151.3],"elL":[-126.1,-162.4],"haL":[-194.1,-170.2],"hipR":[24.9,7.5],"knR":[21.3,130.5],"ftR":[15.3,255.7],"hipL":[-25.4,8],"knL":[-27.8,131.2],"ftL":[-30.7,256.4]},{"rootY":0,"hips":[0,0],"chest":[-1,-100.3],"neck":[3.1,-168.2],"head":[3.2,-203.8],"shR":[54.6,-150.3],"elR":[131.9,-161.3],"haR":[200.5,-173.1],"shL":[-50.5,-151.4],"elL":[-125.9,-162.5],"haL":[-193.8,-170.3],"hipR":[24.9,7.5],"knR":[21.2,130.5],"ftR":[15,255.7],"hipL":[-25.4,8],"knL":[-27.9,131.2],"ftL":[-31,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.9,-100.3],"neck":[3.2,-168.2],"head":[3.3,-203.8],"shR":[54.7,-150.4],"elR":[132,-161.3],"haR":[200.7,-173.1],"shL":[-50.4,-151.5],"elL":[-125.7,-162.5],"haL":[-193.6,-170.3],"hipR":[24.9,7.6],"knR":[21,130.5],"ftR":[14.6,255.7],"hipL":[-25.5,8],"knL":[-28.1,131.2],"ftL":[-31.4,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.8,-100.3],"neck":[3.3,-168.2],"head":[3.4,-203.8],"shR":[54.8,-150.4],"elR":[132.2,-161.2],"haR":[200.8,-173],"shL":[-50.3,-151.6],"elL":[-125.6,-162.5],"haL":[-193.5,-170.2],"hipR":[24.9,7.6],"knR":[20.8,130.5],"ftR":[14.3,255.6],"hipL":[-25.5,8],"knL":[-28.3,131.1],"ftL":[-31.7,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.7,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[54.9,-150.4],"elR":[132.3,-161.2],"haR":[200.9,-172.9],"shL":[-50.3,-151.6],"elL":[-125.5,-162.5],"haL":[-193.4,-170.1],"hipR":[25,7.6],"knR":[20.6,130.5],"ftR":[13.9,255.6],"hipL":[-25.5,8],"knL":[-28.5,131.1],"ftL":[-32.1,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.7,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[55,-150.4],"elR":[132.4,-161.1],"haR":[201,-172.7],"shL":[-50.2,-151.6],"elL":[-125.5,-162.4],"haL":[-193.4,-169.9],"hipR":[25,7.6],"knR":[20.4,130.5],"ftR":[13.6,255.6],"hipL":[-25.5,8],"knL":[-28.6,131.1],"ftL":[-32.4,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.6,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[55,-150.4],"elR":[132.4,-161],"haR":[201.1,-172.5],"shL":[-50.2,-151.6],"elL":[-125.5,-162.3],"haL":[-193.3,-169.9],"hipR":[25,7.6],"knR":[20.3,130.5],"ftR":[13.4,255.6],"hipL":[-25.6,7.9],"knL":[-28.8,131.1],"ftL":[-32.7,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.5,-100.4],"neck":[3.5,-168.1],"head":[3.5,-203.7],"shR":[55.1,-150.4],"elR":[132.6,-160.9],"haR":[201.2,-172.3],"shL":[-50.1,-151.6],"elL":[-125.4,-162.3],"haL":[-193.3,-169.8],"hipR":[25,7.6],"knR":[20.1,130.5],"ftR":[13.1,255.6],"hipL":[-25.6,7.9],"knL":[-28.9,131.1],"ftL":[-33,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.5,-100.4],"neck":[3.6,-168.1],"head":[3.6,-203.7],"shR":[55.2,-150.4],"elR":[132.7,-160.9],"haR":[201.4,-172.2],"shL":[-50,-151.6],"elL":[-125.3,-162.2],"haL":[-193.2,-169.7],"hipR":[25,7.6],"knR":[20,130.5],"ftR":[12.9,255.6],"hipL":[-25.6,7.9],"knL":[-29,131.1],"ftL":[-33.2,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-100.4],"neck":[3.8,-168.1],"head":[3.7,-203.7],"shR":[55.3,-150.4],"elR":[132.8,-160.8],"haR":[201.5,-172.1],"shL":[-49.9,-151.6],"elL":[-125.2,-162.2],"haL":[-193.2,-169.6],"hipR":[24.9,7.6],"knR":[19.9,130.5],"ftR":[12.8,255.6],"hipL":[-25.6,7.9],"knL":[-29.1,131.1],"ftL":[-33.4,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.2,-100.4],"neck":[3.9,-168.1],"head":[3.8,-203.6],"shR":[55.5,-150.4],"elR":[133,-160.7],"haR":[201.7,-172],"shL":[-49.8,-151.5],"elL":[-125.1,-162.1],"haL":[-193.1,-169.4],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.6,255.6],"hipL":[-25.6,7.9],"knL":[-29.1,131.1],"ftL":[-33.5,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.1,-100.4],"neck":[4.1,-168.1],"head":[3.9,-203.6],"shR":[55.6,-150.2],"elR":[133.2,-160.6],"haR":[201.8,-171.9],"shL":[-49.6,-151.5],"elL":[-125,-162],"haL":[-192.9,-169.3],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.6,255.6],"hipL":[-25.6,7.9],"knL":[-29.2,131],"ftL":[-33.6,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.1,-100.4],"neck":[4.2,-168],"head":[4,-203.6],"shR":[55.8,-150.1],"elR":[133.3,-160.5],"haR":[201.9,-171.8],"shL":[-49.5,-151.4],"elL":[-124.9,-161.9],"haL":[-192.9,-169.2],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.5,255.6],"hipL":[-25.6,7.9],"knL":[-29.2,131],"ftL":[-33.7,256.3]},{"rootY":0.1,"hips":[0,0],"chest":[0,-100.4],"neck":[4.3,-168],"head":[4.1,-203.6],"shR":[55.9,-150.1],"elR":[133.4,-160.4],"haR":[202,-171.7],"shL":[-49.4,-151.4],"elL":[-124.8,-161.8],"haL":[-192.8,-169.1],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.4,255.6],"hipL":[-25.5,7.9],"knL":[-29.3,131],"ftL":[-33.8,256.3]},{"rootY":0.1,"hips":[0,0],"chest":[0,-100.4],"neck":[4.4,-168],"head":[4.2,-203.6],"shR":[55.9,-150.1],"elR":[133.5,-160.4],"haR":[202.1,-171.6],"shL":[-49.3,-151.5],"elL":[-124.8,-161.8],"haL":[-192.8,-169.1],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.3,255.6],"hipL":[-25.5,7.9],"knL":[-29.3,131],"ftL":[-33.8,256.3]},{"rootY":0,"hips":[0,0],"chest":[0.1,-100.4],"neck":[4.6,-168],"head":[4.4,-203.5],"shR":[56.1,-150],"elR":[133.7,-160.4],"haR":[202.3,-171.6],"shL":[-49.2,-151.6],"elL":[-124.6,-161.8],"haL":[-192.6,-169],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.3,255.6],"hipL":[-25.6,7.9],"knL":[-29.3,131],"ftL":[-33.9,256.3]},{"rootY":0,"hips":[0,0],"chest":[0.3,-100.4],"neck":[4.8,-168],"head":[4.6,-203.5],"shR":[56.4,-149.9],"elR":[133.9,-160.3],"haR":[202.5,-171.6],"shL":[-48.9,-151.6],"elL":[-124.4,-161.7],"haL":[-192.4,-168.8],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.3,255.6],"hipL":[-25.6,7.9],"knL":[-29.4,131],"ftL":[-33.9,256.2]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-100.3],"neck":[5.2,-167.9],"head":[5,-203.4],"shR":[56.7,-149.8],"elR":[134.3,-160.1],"haR":[202.8,-171.4],"shL":[-48.6,-151.5],"elL":[-124.1,-161.3],"haL":[-192,-168.3],"hipR":[25,7.7],"knR":[20,130.5],"ftR":[12.3,255.6],"hipL":[-25.7,7.9],"knL":[-29.4,131],"ftL":[-33.9,256.2]},{"rootY":0.1,"hips":[0,0],"chest":[1.1,-100.3],"neck":[5.8,-167.8],"head":[5.5,-203.3],"shR":[57.4,-149.5],"elR":[134.9,-159.7],"haR":[203.4,-171],"shL":[-48,-151.3],"elL":[-123.6,-160.5],"haL":[-191.5,-167.2],"hipR":[25.1,7.7],"knR":[20.1,130.6],"ftR":[12.1,255.7],"hipL":[-25.8,7.8],"knL":[-29.4,130.9],"ftL":[-33.8,256.1]},{"rootY":0.2,"hips":[0,0],"chest":[1.8,-100.2],"neck":[6.6,-167.6],"head":[6.2,-203.1],"shR":[58.2,-149],"elR":[135.8,-158.8],"haR":[204.2,-169.9],"shL":[-47.4,-150.9],"elL":[-123.1,-159.3],"haL":[-191,-165.3],"hipR":[25.3,7.9],"knR":[20.5,130.6],"ftR":[12,255.7],"hipL":[-26,7.7],"knL":[-29.6,130.8],"ftL":[-33.8,256]},{"rootY":0.3,"hips":[0,0],"chest":[2.4,-100.2],"neck":[7.2,-167.5],"head":[6.8,-203],"shR":[59,-148.4],"elR":[136.7,-157.5],"haR":[205.1,-167.9],"shL":[-46.8,-150.4],"elL":[-122.6,-157.4],"haL":[-190.6,-162.4],"hipR":[25.5,8],"knR":[21.2,130.6],"ftR":[11.9,255.6],"hipL":[-26.2,7.5],"knL":[-29.9,130.6],"ftL":[-33.9,255.9]},{"rootY":0.5,"hips":[0,0],"chest":[2.9,-100.1],"neck":[7.6,-167.3],"head":[7.3,-202.8],"shR":[59.6,-147.9],"elR":[137.5,-155.6],"haR":[205.9,-164.7],"shL":[-46.4,-149.8],"elL":[-122.4,-154.9],"haL":[-190.4,-158.4],"hipR":[25.6,8.3],"knR":[21.8,130.6],"ftR":[11.6,255.4],"hipL":[-26.4,7.3],"knL":[-30.2,130.4],"ftL":[-34.1,255.7]},{"rootY":0.6,"hips":[0,0],"chest":[3.5,-99.9],"neck":[8,-167.1],"head":[7.7,-202.6],"shR":[60.1,-147.4],"elR":[138.3,-153.1],"haR":[206.7,-160.3],"shL":[-46.1,-149.2],"elL":[-122.3,-151.9],"haL":[-190.3,-153.2],"hipR":[25.8,8.5],"knR":[22.1,130.6],"ftR":[11.3,255.2],"hipL":[-26.6,7],"knL":[-30.5,130.2],"ftL":[-34.5,255.4]},{"rootY":0.8,"hips":[0,0],"chest":[4.2,-99.8],"neck":[8.4,-166.7],"head":[8.3,-202.2],"shR":[60.8,-146.7],"elR":[139.2,-150],"haR":[207.6,-154.6],"shL":[-45.6,-148.5],"elL":[-121.8,-148.3],"haL":[-189.8,-147.2],"hipR":[25.9,8.8],"knR":[22.2,130.5],"ftR":[11,254.9],"hipL":[-26.8,6.8],"knL":[-30.8,129.8],"ftL":[-35,255.1]},{"rootY":1.1,"hips":[0,0],"chest":[5.1,-99.7],"neck":[9.2,-166.2],"head":[8.9,-201.8],"shR":[61.7,-146],"elR":[140.3,-146.5],"haR":[208.7,-148.2],"shL":[-44.9,-147.6],"elL":[-121,-144.4],"haL":[-188.9,-140.8],"hipR":[25.9,9],"knR":[22.2,130.3],"ftR":[10.8,254.5],"hipL":[-26.9,6.5],"knL":[-31.3,129.3],"ftL":[-35.4,254.6]},{"rootY":1.6,"hips":[0,0],"chest":[6,-99.6],"neck":[10,-165.7],"head":[9.5,-201.3],"shR":[62.7,-145.1],"elR":[141.4,-142.7],"haR":[209.7,-141.5],"shL":[-44.2,-146.6],"elL":[-119.9,-140.5],"haL":[-187.7,-134.4],"hipR":[26,9.1],"knR":[22.1,129.9],"ftR":[10.5,254],"hipL":[-27,6.5],"knL":[-32.2,128.7],"ftL":[-35.8,253.9]},{"rootY":2.1,"hips":[0,0],"chest":[6.7,-99.4],"neck":[10.7,-165.2],"head":[10,-200.8],"shR":[63.6,-144],"elR":[142.2,-138.7],"haR":[210.1,-135],"shL":[-43.6,-145.7],"elL":[-119,-137],"haL":[-186.4,-128.6],"hipR":[26.2,8.9],"knR":[21.8,129.6],"ftR":[10.2,253.6],"hipL":[-27,6.6],"knL":[-33.8,127.9],"ftL":[-36.8,252.8]},{"rootY":2.4,"hips":[0,0],"chest":[7,-99.3],"neck":[11.1,-164.8],"head":[10.2,-200.5],"shR":[64,-142.5],"elR":[142.5,-134.8],"haR":[209.2,-130],"shL":[-43.3,-145.2],"elL":[-118.4,-134.9],"haL":[-185.5,-125.1],"hipR":[26.3,8.8],"knR":[21.4,129.3],"ftR":[9.9,253.3],"hipL":[-27,6.8],"knL":[-36.7,126.9],"ftL":[-39.6,251.4]},{"rootY":2.5,"hips":[0,0],"chest":[7,-99.2],"neck":[11.2,-164.6],"head":[10.4,-200.4],"shR":[64.1,-141.2],"elR":[142.4,-131.7],"haR":[206.4,-128],"shL":[-43.2,-145.2],"elL":[-118.3,-134.9],"haL":[-185.2,-125.3],"hipR":[26.3,8.8],"knR":[21.2,129.2],"ftR":[9.7,253.2],"hipL":[-27,6.8],"knL":[-40.9,125.6],"ftL":[-45.7,250]},{"rootY":2.4,"hips":[0,0],"chest":[7,-99.2],"neck":[11.4,-164.7],"head":[10.8,-200.5],"shR":[64.2,-140.6],"elR":[142.6,-130.5],"haR":[201,-130.1],"shL":[-42.9,-145.7],"elL":[-118.2,-137.3],"haL":[-185.2,-129.5],"hipR":[26.2,9],"knR":[21.4,129.3],"ftR":[9.9,253.3],"hipL":[-27.1,6.5],"knL":[-46,124.5],"ftL":[-55.2,248.8]},{"rootY":2.3,"hips":[0,0],"chest":[7.2,-99.2],"neck":[11.9,-164.9],"head":[11.6,-200.8],"shR":[64.7,-141],"elR":[143.3,-131.5],"haR":[192.7,-136.1],"shL":[-42.4,-146.7],"elL":[-117.8,-141.6],"haL":[-184.9,-136.8],"hipR":[26,9.3],"knR":[22.1,129.5],"ftR":[10.4,253.3],"hipL":[-27.1,6.2],"knL":[-51.5,123.4],"ftL":[-67.7,247.3]},{"rootY":2.2,"hips":[0,0],"chest":[7.5,-99.1],"neck":[12.7,-165.1],"head":[12.5,-201],"shR":[65.4,-142.2],"elR":[144.3,-134.2],"haR":[181,-144.9],"shL":[-41.7,-148.1],"elL":[-117,-147.2],"haL":[-184.2,-146],"hipR":[25.8,9.5],"knR":[23,129.6],"ftR":[11.6,253.2],"hipL":[-27,6.1],"knL":[-57.6,122.1],"ftL":[-82.9,244.7]},{"rootY":2.1,"hips":[0,0],"chest":[7.8,-99.1],"neck":[13.3,-165.4],"head":[13.4,-201.3],"shR":[66,-143.9],"elR":[145,-138.3],"haR":[165.7,-155.3],"shL":[-41.1,-150.2],"elL":[-115.9,-154.2],"haL":[-182.9,-157],"hipR":[25.7,9.5],"knR":[24.1,129.6],"ftR":[13.1,253.1],"hipL":[-27,6],"knL":[-64.8,120],"ftL":[-100.2,240.2]},{"rootY":2.1,"hips":[0,0],"chest":[8.1,-99.1],"neck":[13.7,-165.7],"head":[14,-201.6],"shR":[66.2,-146.2],"elR":[145.2,-144],"haR":[148,-166.3],"shL":[-40.7,-152.7],"elL":[-114.2,-162.4],"haL":[-180.7,-170],"hipR":[25.6,9.6],"knR":[25.3,129.6],"ftR":[15,252.8],"hipL":[-26.9,5.9],"knL":[-72.8,116.9],"ftL":[-118.5,233.6]},{"rootY":2.3,"hips":[0,0],"chest":[8.5,-99],"neck":[14.1,-166],"head":[14.6,-201.8],"shR":[66.4,-149],"elR":[144.5,-151.4],"haR":[130,-177],"shL":[-40.1,-155.2],"elL":[-111.7,-171.7],"haL":[-177.1,-185],"hipR":[25.4,10],"knR":[26.6,129.6],"ftR":[17,252.4],"hipL":[-26.9,5.6],"knL":[-80.7,112.7],"ftL":[-135.7,225.3]},{"rootY":2.9,"hips":[0,0],"chest":[9.3,-98.9],"neck":[14.9,-166.1],"head":[15.3,-201.9],"shR":[66.6,-151.8],"elR":[142.8,-159.9],"haR":[113.4,-186.2],"shL":[-39.1,-157.2],"elL":[-108.4,-181.1],"haL":[-171.7,-201.2],"hipR":[25.2,10.5],"knR":[28.1,129.6],"ftR":[19.5,251.7],"hipL":[-27,5],"knL":[-88.1,107.8],"ftL":[-151,216.1]},{"rootY":3.9,"hips":[0,0],"chest":[10.3,-98.7],"neck":[15.7,-166],"head":[16,-201.9],"shR":[66.8,-154.1],"elR":[140,-168.1],"haR":[99.3,-193.2],"shL":[-37.9,-158.9],"elL":[-104,-190.2],"haL":[-164.6,-216.9],"hipR":[25,11.1],"knR":[30.2,129.3],"ftR":[22.5,250.6],"hipL":[-27.1,4.5],"knL":[-94.8,102.8],"ftL":[-164.2,207]},{"rootY":5.3,"hips":[0,0],"chest":[11.2,-98.4],"neck":[16.6,-165.9],"head":[16.8,-201.7],"shR":[67.2,-155.7],"elR":[136.3,-174.7],"haR":[88,-197.8],"shL":[-36.6,-160.6],"elL":[-99.1,-198.2],"haL":[-156.6,-230.6],"hipR":[24.9,11.5],"knR":[32.9,128.9],"ftR":[26.2,249],"hipL":[-27.1,4],"knL":[-100.3,98.2],"ftL":[-175.1,198.6]},{"rootY":6.8,"hips":[0,0],"chest":[12,-98.1],"neck":[17.4,-165.8],"head":[17.5,-201.6],"shR":[67.6,-156.6],"elR":[132.5,-178.6],"haR":[79.3,-200.2],"shL":[-35.3,-162],"elL":[-94.2,-204.7],"haL":[-148.9,-241.6],"hipR":[24.8,11.7],"knR":[35.6,128.4],"ftR":[30.3,247.3],"hipL":[-27.2,3.7],"knL":[-104.6,94.4],"ftL":[-183.6,191.5]},{"rootY":8.5,"hips":[0,0],"chest":[12.5,-97.9],"neck":[18,-165.8],"head":[18.1,-201.5],"shR":[68,-156.7],"elR":[129.5,-180],"haR":[72.9,-200.7],"shL":[-34.2,-163.2],"elL":[-90.2,-209.6],"haL":[-142.4,-249.9],"hipR":[24.8,11.9],"knR":[38,127.9],"ftR":[34.8,245.6],"hipL":[-27.3,3.6],"knL":[-107.8,91.5],"ftL":[-189.6,186.2]},{"rootY":10.3,"hips":[0,0],"chest":[12.9,-97.8],"neck":[18.5,-165.7],"head":[18.6,-201.4],"shR":[68.4,-156.3],"elR":[127.7,-179.6],"haR":[68.8,-199.6],"shL":[-33.4,-164.1],"elL":[-87.2,-213.2],"haL":[-137.4,-255.8],"hipR":[24.9,12],"knR":[40.1,127.4],"ftR":[39.7,243.8],"hipL":[-27.4,3.5],"knL":[-109.6,89.8],"ftL":[-192.8,183.3]},{"rootY":12.1,"hips":[0,0],"chest":[13.2,-97.6],"neck":[18.8,-165.6],"head":[19.2,-201.3],"shR":[68.8,-155.8],"elR":[127.2,-178.4],"haR":[66.6,-197.6],"shL":[-32.7,-164.7],"elL":[-84.9,-215.5],"haL":[-133.8,-259.8],"hipR":[25,12],"knR":[42.5,126.9],"ftR":[45.3,241.9],"hipL":[-27.4,3.5],"knL":[-109.9,89.5],"ftL":[-193,183.2]},{"rootY":14,"hips":[0,0],"chest":[13.6,-97.3],"neck":[19.5,-165.5],"head":[20.1,-201.1],"shR":[69.4,-155.1],"elR":[127.9,-176.8],"haR":[66.2,-195.3],"shL":[-31.9,-165.1],"elL":[-83.3,-216.8],"haL":[-131.4,-261.9],"hipR":[25,12.1],"knR":[45.5,126.5],"ftR":[51.9,239.9],"hipL":[-27.5,3.4],"knL":[-109,90.4],"ftL":[-190.8,185.3]},{"rootY":15.8,"hips":[0,0],"chest":[14.2,-97],"neck":[20.8,-165.2],"head":[21.7,-200.8],"shR":[70.7,-154.3],"elR":[129.7,-174.8],"haR":[67.4,-193],"shL":[-30.5,-165.5],"elL":[-81.8,-217.3],"haL":[-129.8,-262.5],"hipR":[25,12.2],"knR":[49.2,126],"ftR":[59.6,238],"hipL":[-27.5,3.2],"knL":[-107.2,92.5],"ftL":[-186.8,189.3]},{"rootY":17.8,"hips":[0,0],"chest":[15,-96.7],"neck":[22.5,-165],"head":[23.9,-200.5],"shR":[72.4,-153.3],"elR":[132.4,-172.2],"haR":[69.9,-190.6],"shL":[-28.9,-165.7],"elL":[-80.4,-217.1],"haL":[-128.8,-261.9],"hipR":[24.9,12.3],"knR":[54,125.4],"ftR":[68.4,236.1],"hipL":[-27.5,3.1],"knL":[-104.2,95.6],"ftL":[-180.7,194.8]},{"rootY":20.3,"hips":[0,0],"chest":[15.5,-96.5],"neck":[24.4,-164.8],"head":[26.6,-200.2],"shR":[74.3,-151.8],"elR":[135.6,-168.5],"haR":[73.5,-188.1],"shL":[-27.4,-165.5],"elL":[-79.4,-216.2],"haL":[-128.3,-260.3],"hipR":[24.8,12.4],"knR":[59.7,124.2],"ftR":[78.2,233.7],"hipL":[-27.5,3],"knL":[-100,99.4],"ftL":[-172.7,201.5]},{"rootY":23.7,"hips":[0,0],"chest":[15.5,-96.4],"neck":[26.2,-164.6],"head":[29.6,-199.9],"shR":[76,-149.5],"elR":[139.1,-163.1],"haR":[77.7,-185.3],"shL":[-26.3,-165],"elL":[-79.5,-214.7],"haL":[-129.1,-257.8],"hipR":[24.8,12.3],"knR":[66,122.2],"ftR":[88.9,230.3],"hipL":[-27.3,3.2],"knL":[-95.9,102.9],"ftL":[-164.8,207.6]},{"rootY":28.3,"hips":[0,0],"chest":[14.5,-96.4],"neck":[27.4,-164.3],"head":[32.7,-199.5],"shR":[77.1,-146.3],"elR":[141.8,-155.8],"haR":[81.6,-181.7],"shL":[-25.8,-164.7],"elL":[-80.7,-212.5],"haL":[-131.9,-254],"hipR":[24.8,11.9],"knR":[72.3,119.5],"ftR":[99.8,225.9],"hipL":[-27.1,3.6],"knL":[-93.5,105.3],"ftL":[-159.6,211.5]},{"rootY":33.4,"hips":[0,0],"chest":[12.9,-96.5],"neck":[28,-164.1],"head":[35.8,-198.9],"shR":[77.3,-142.6],"elR":[143.3,-148.4],"haR":[84.6,-177.8],"shL":[-25.9,-164.4],"elL":[-82.4,-209.6],"haL":[-135.9,-248.3],"hipR":[24.7,11.5],"knR":[78,116.4],"ftR":[110.4,221.1],"hipL":[-26.7,4],"knL":[-92.2,107],"ftL":[-156.4,213.7]},{"rootY":36.8,"hips":[0,0],"chest":[11.3,-96.8],"neck":[27.7,-164],"head":[38.4,-198.1],"shR":[76.5,-138.8],"elR":[143.8,-142.9],"haR":[85.6,-173.7],"shL":[-27,-163.2],"elL":[-84.4,-205.8],"haL":[-140.1,-240.9],"hipR":[24.6,11.4],"knR":[82.5,114.5],"ftR":[119.5,218.1],"hipL":[-26.6,4.1],"knL":[-90.3,108.9],"ftL":[-152.8,216.1]},{"rootY":36.8,"hips":[0,0],"chest":[10.1,-97],"neck":[26.9,-164.2],"head":[40.1,-197.5],"shR":[75.1,-135.6],"elR":[143.7,-140.1],"haR":[85,-170.3],"shL":[-28.7,-161.1],"elL":[-87,-201.1],"haL":[-143.9,-233.1],"hipR":[24.4,11.8],"knR":[84.6,114.8],"ftR":[126.3,218.2],"hipL":[-26.6,3.7],"knL":[-87.2,110.8],"ftL":[-148,219.4]},{"rootY":34.3,"hips":[0,0],"chest":[9.2,-97.4],"neck":[25.8,-164.7],"head":[40.3,-197.4],"shR":[73.9,-135.1],"elR":[143.9,-140.5],"haR":[84.1,-169.4],"shL":[-30.4,-159.4],"elL":[-89.8,-197.3],"haL":[-147.1,-227.7],"hipR":[24.3,11.8],"knR":[84.6,116.3],"ftR":[130.7,220.5],"hipL":[-26.6,3.6],"knL":[-84.5,112.4],"ftL":[-143.4,222.6]},{"rootY":31.7,"hips":[0,0],"chest":[8.4,-98],"neck":[24.6,-165.5],"head":[39,-198.2],"shR":[73.1,-136.9],"elR":[144.6,-143.7],"haR":[84.2,-171.5],"shL":[-31.7,-158.8],"elL":[-92.2,-196],"haL":[-149.6,-226.3],"hipR":[24.5,11.2],"knR":[84.1,117.2],"ftR":[133,222.9],"hipL":[-26.6,4.3],"knL":[-83.1,113.6],"ftL":[-140.6,224.8]},{"rootY":30.4,"hips":[0,0],"chest":[7.6,-98.4],"neck":[23.1,-166.1],"head":[36.9,-199.2],"shR":[72,-138.8],"elR":[144.9,-147.9],"haR":[85.1,-175.4],"shL":[-33.1,-158.6],"elL":[-94,-196.6],"haL":[-151.2,-227.8],"hipR":[24.7,10.5],"knR":[84.6,117.1],"ftR":[134.5,224.4],"hipL":[-26.5,5.1],"knL":[-82.5,114.7],"ftL":[-139.4,226.2]},{"rootY":29.8,"hips":[0,0],"chest":[6.5,-98.8],"neck":[21.4,-166.5],"head":[34.4,-200],"shR":[70.5,-139.4],"elR":[144.3,-151.1],"haR":[85.6,-178.5],"shL":[-34.8,-158],"elL":[-95.4,-197.3],"haL":[-152.1,-230],"hipR":[24.9,10],"knR":[85.8,116.4],"ftR":[135.5,225.1],"hipL":[-26.4,5.6],"knL":[-82.1,115.4],"ftL":[-138.8,227]},{"rootY":29.5,"hips":[0,0],"chest":[5.3,-99],"neck":[19.8,-166.7],"head":[32.1,-200.7],"shR":[68.8,-139.4],"elR":[142.9,-152.3],"haR":[84.9,-179.7],"shL":[-36.6,-157.3],"elL":[-96.9,-197.5],"haL":[-153,-231.2],"hipR":[24.9,9.6],"knR":[86.5,115.7],"ftR":[135.8,225.6],"hipL":[-26.3,6],"knL":[-81.9,115.8],"ftL":[-138.6,227.5]},{"rootY":29.1,"hips":[0,0],"chest":[4.1,-99.3],"neck":[18.4,-166.9],"head":[30,-201.2],"shR":[67.5,-139.3],"elR":[141.6,-151.8],"haR":[83.5,-179.3],"shL":[-38,-156.6],"elL":[-98.1,-197.1],"haL":[-154,-231.1],"hipR":[24.9,9.1],"knR":[86.3,115.5],"ftR":[135.7,226],"hipL":[-26.1,6.5],"knL":[-82,116.1],"ftL":[-138.9,227.7]},{"rootY":28.9,"hips":[0,0],"chest":[3.1,-99.4],"neck":[17.4,-167.1],"head":[28.5,-201.5],"shR":[66.6,-139.1],"elR":[140.6,-151],"haR":[82.3,-178.5],"shL":[-38.9,-155.9],"elL":[-98.7,-196.3],"haL":[-154.6,-230.2],"hipR":[25,8.7],"knR":[85.6,115.6],"ftR":[135.5,226.2],"hipL":[-25.9,6.9],"knL":[-82.1,116.4],"ftL":[-139.2,227.9]},{"rootY":28.8,"hips":[0,0],"chest":[2.5,-99.5],"neck":[16.8,-167.1],"head":[27.6,-201.6],"shR":[65.9,-138.5],"elR":[139.8,-150.4],"haR":[81.8,-177.9],"shL":[-39.6,-155.2],"elL":[-99,-195.3],"haL":[-154.7,-228.9],"hipR":[25,8.4],"knR":[85.1,115.7],"ftR":[135.5,226.4],"hipL":[-25.9,7.1],"knL":[-82,116.7],"ftL":[-139.2,228.1]},{"rootY":28.6,"hips":[0,0],"chest":[2.2,-99.4],"neck":[16.6,-167],"head":[27.2,-201.6],"shR":[65.6,-137.9],"elR":[139.5,-149.8],"haR":[81.8,-177.6],"shL":[-39.9,-154.8],"elL":[-99,-194.3],"haL":[-154.6,-227.3],"hipR":[25,8.4],"knR":[85,115.8],"ftR":[135.9,226.6],"hipL":[-25.8,7.2],"knL":[-81.9,116.8],"ftL":[-138.9,228.3]},{"rootY":28.5,"hips":[0,0],"chest":[2.1,-99.4],"neck":[16.5,-166.9],"head":[27.1,-201.5],"shR":[65.5,-137.7],"elR":[139.5,-149.3],"haR":[82,-177.5],"shL":[-39.9,-154.6],"elL":[-98.8,-193.5],"haL":[-154.4,-225.9],"hipR":[25,8.4],"knR":[85,115.9],"ftR":[136.3,226.8],"hipL":[-25.8,7.1],"knL":[-81.8,116.8],"ftL":[-138.6,228.4]},{"rootY":28.4,"hips":[0,0],"chest":[2,-99.4],"neck":[16.6,-166.9],"head":[27.1,-201.5],"shR":[65.4,-137.3],"elR":[139.4,-149],"haR":[82.2,-177.6],"shL":[-39.8,-154.4],"elL":[-98.6,-192.8],"haL":[-154.2,-224.7],"hipR":[24.9,8.5],"knR":[84.9,116],"ftR":[136.7,226.9],"hipL":[-25.9,7.1],"knL":[-81.6,116.8],"ftL":[-138.3,228.5]},{"rootY":28.3,"hips":[0,0],"chest":[1.7,-99.5],"neck":[16.4,-166.9],"head":[27.1,-201.5],"shR":[65,-136.6],"elR":[139.1,-148.9],"haR":[82.3,-177.7],"shL":[-40,-154.2],"elL":[-98.7,-192.2],"haL":[-154.2,-223.8],"hipR":[25,8.5],"knR":[84.8,116.2],"ftR":[137,227],"hipL":[-25.9,7.1],"knL":[-81.5,116.8],"ftL":[-138,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[1.1,-99.5],"neck":[15.9,-166.9],"head":[26.8,-201.5],"shR":[64.3,-136],"elR":[138.6,-148.8],"haR":[82.2,-177.7],"shL":[-40.4,-153.9],"elL":[-99.1,-191.7],"haL":[-154.6,-223],"hipR":[25,8.5],"knR":[84.6,116.2],"ftR":[137.1,227],"hipL":[-25.9,7.1],"knL":[-81.5,116.9],"ftL":[-137.9,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[0.4,-99.6],"neck":[15.1,-167],"head":[26.2,-201.5],"shR":[63.4,-135.9],"elR":[138,-148.8],"haR":[82,-177.7],"shL":[-41.1,-153.9],"elL":[-99.8,-191.3],"haL":[-155.3,-222.3],"hipR":[25.1,8.3],"knR":[84.5,116.2],"ftR":[136.8,227.1],"hipL":[-25.9,7.2],"knL":[-81.7,116.9],"ftL":[-138.2,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[-0.5,-99.6],"neck":[14.1,-167.1],"head":[25.4,-201.5],"shR":[62.5,-135.9],"elR":[137.3,-148.8],"haR":[81.5,-177.9],"shL":[-42,-153.8],"elL":[-100.6,-191],"haL":[-156.2,-221.8],"hipR":[25.1,8.1],"knR":[84.4,116.1],"ftR":[136.4,227.1],"hipL":[-25.9,7.5],"knL":[-81.8,117],"ftL":[-138.6,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[-1.4,-99.7],"neck":[13.1,-167.1],"head":[24.6,-201.5],"shR":[61.4,-136],"elR":[136.4,-149],"haR":[80.9,-178.2],"shL":[-42.9,-153.6],"elL":[-101.5,-190.6],"haL":[-157.1,-221.3],"hipR":[25.1,7.9],"knR":[84.3,115.9],"ftR":[136,227],"hipL":[-25.8,7.7],"knL":[-82,117.1],"ftL":[-139,228.7]},{"rootY":28.3,"hips":[0,0],"chest":[-2.2,-99.7],"neck":[12.3,-167.1],"head":[23.7,-201.5],"shR":[60.6,-136.1],"elR":[135.6,-149.3],"haR":[80.2,-178.4],"shL":[-43.6,-153.3],"elL":[-102.4,-190.2],"haL":[-158,-220.8],"hipR":[25.1,7.7],"knR":[84.1,115.8],"ftR":[135.6,227],"hipL":[-25.7,7.9],"knL":[-82.1,117.2],"ftL":[-139.4,228.6]},{"rootY":28.3,"hips":[0,0],"chest":[-3,-99.7],"neck":[11.6,-167.1],"head":[23,-201.6],"shR":[59.8,-136.2],"elR":[134.9,-149.6],"haR":[79.6,-178.5],"shL":[-44.3,-153.1],"elL":[-103.2,-189.7],"haL":[-158.8,-220.2],"hipR":[25.1,7.4],"knR":[83.9,115.7],"ftR":[135.3,227.1],"hipL":[-25.6,8.1],"knL":[-82.2,117.3],"ftL":[-139.7,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-3.8,-99.7],"neck":[11,-167.1],"head":[22.3,-201.6],"shR":[59.1,-136.2],"elR":[134.2,-150],"haR":[79.1,-178.6],"shL":[-44.8,-152.9],"elL":[-103.8,-189.4],"haL":[-159.6,-219.6],"hipR":[25.1,7.2],"knR":[83.6,115.5],"ftR":[135,227.1],"hipL":[-25.4,8.3],"knL":[-82.3,117.4],"ftL":[-140,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[-4.7,-99.7],"neck":[10.4,-167.1],"head":[21.7,-201.5],"shR":[58.3,-136],"elR":[133.6,-150.2],"haR":[78.7,-178.7],"shL":[-45.4,-152.7],"elL":[-104.5,-189.1],"haL":[-160.3,-219.2],"hipR":[25,6.9],"knR":[83.3,115.4],"ftR":[134.8,227.2],"hipL":[-25.3,8.6],"knL":[-82.4,117.6],"ftL":[-140.3,228.6]},{"rootY":28.1,"hips":[0,0],"chest":[-5.5,-99.7],"neck":[9.7,-167],"head":[21,-201.5],"shR":[57.5,-136],"elR":[132.9,-150.3],"haR":[78.2,-178.8],"shL":[-46.1,-152.6],"elL":[-105.2,-188.9],"haL":[-161,-219],"hipR":[25,6.7],"knR":[83,115.4],"ftR":[134.5,227.3],"hipL":[-25.2,8.8],"knL":[-82.4,117.7],"ftL":[-140.6,228.6]},{"rootY":28.1,"hips":[0,0],"chest":[-6.4,-99.7],"neck":[8.9,-167],"head":[20.3,-201.5],"shR":[56.7,-136],"elR":[132.2,-150.2],"haR":[77.8,-178.8],"shL":[-46.7,-152.7],"elL":[-106,-188.9],"haL":[-161.8,-219.1],"hipR":[25,6.4],"knR":[82.7,115.2],"ftR":[134.1,227.3],"hipL":[-25.1,9.1],"knL":[-82.6,117.8],"ftL":[-140.9,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[-7.4,-99.7],"neck":[8,-167],"head":[19.4,-201.4],"shR":[55.7,-136.1],"elR":[131.5,-150.2],"haR":[77.3,-178.8],"shL":[-47.5,-152.8],"elL":[-106.8,-189],"haL":[-162.6,-219.2],"hipR":[25,6.1],"knR":[82.5,115],"ftR":[133.6,227.2],"hipL":[-24.9,9.3],"knL":[-82.7,117.9],"ftL":[-141.4,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-8.5,-99.6],"neck":[7,-167],"head":[18.5,-201.4],"shR":[54.7,-136.1],"elR":[130.6,-150],"haR":[76.9,-178.8],"shL":[-48.4,-152.9],"elL":[-107.8,-189.1],"haL":[-163.5,-219.4],"hipR":[25,5.8],"knR":[82.3,114.8],"ftR":[133,227.1],"hipL":[-24.8,9.7],"knL":[-82.9,118.1],"ftL":[-142,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-9.7,-99.5],"neck":[6,-166.8],"head":[17.5,-201.3],"shR":[53.6,-136],"elR":[129.7,-149.8],"haR":[76.5,-178.9],"shL":[-49.3,-153.1],"elL":[-108.7,-189.4],"haL":[-164.4,-219.7],"hipR":[25,5.4],"knR":[81.9,114.7],"ftR":[132.2,227.2],"hipL":[-24.7,10],"knL":[-83.1,118.3],"ftL":[-142.6,228.4]},{"rootY":28.2,"hips":[0,0],"chest":[-10.9,-99.4],"neck":[5,-166.7],"head":[16.6,-201.1],"shR":[52.5,-136],"elR":[128.9,-149.5],"haR":[76.1,-178.9],"shL":[-50.2,-153.3],"elL":[-109.6,-189.7],"haL":[-165.2,-220.1],"hipR":[25.1,5],"knR":[81.6,114.5],"ftR":[131.5,227.2],"hipL":[-24.5,10.4],"knL":[-83.4,118.5],"ftL":[-143.3,228.3]},{"rootY":28.2,"hips":[0,0],"chest":[-11.8,-99.3],"neck":[4.2,-166.6],"head":[15.9,-200.9],"shR":[51.6,-135.9],"elR":[128.2,-149.2],"haR":[76,-178.8],"shL":[-50.9,-153.5],"elL":[-110.2,-190],"haL":[-165.7,-220.6],"hipR":[25.1,4.6],"knR":[81.3,114.2],"ftR":[130.9,227.2],"hipL":[-24.4,10.7],"knL":[-83.6,118.6],"ftL":[-144,228.3]},{"rootY":28.2,"hips":[0,0],"chest":[-12.5,-99.2],"neck":[3.6,-166.5],"head":[15.5,-200.8],"shR":[50.9,-135.8],"elR":[127.8,-148.7],"haR":[76.2,-178.7],"shL":[-51.3,-153.7],"elL":[-110.6,-190.1],"haL":[-166,-220.9],"hipR":[25.1,4.4],"knR":[81.1,114.1],"ftR":[130.6,227.1],"hipL":[-24.3,11],"knL":[-83.8,118.8],"ftL":[-144.4,228.2]},{"rootY":28.1,"hips":[0,0],"chest":[-12.9,-99.2],"neck":[3.3,-166.4],"head":[15.4,-200.7],"shR":[50.5,-135.6],"elR":[127.6,-148.3],"haR":[76.6,-178.6],"shL":[-51.5,-153.9],"elL":[-110.7,-190.3],"haL":[-165.9,-221],"hipR":[25.2,4.2],"knR":[80.9,114.1],"ftR":[130.2,227.2],"hipL":[-24.3,11.1],"knL":[-83.8,118.9],"ftL":[-144.6,228.2]},{"rootY":28.1,"hips":[0,0],"chest":[-12.9,-99.2],"neck":[3.3,-166.4],"head":[15.7,-200.6],"shR":[50.4,-135.4],"elR":[127.7,-147.5],"haR":[77.6,-178.3],"shL":[-51.3,-154.2],"elL":[-110.4,-190.3],"haL":[-165.5,-220.8],"hipR":[25.2,4.2],"knR":[81,114],"ftR":[130.1,227.2],"hipL":[-24.3,11.1],"knL":[-83.9,118.9],"ftL":[-144.7,228.3]},{"rootY":28.1,"hips":[0,0],"chest":[-12.4,-99.4],"neck":[3.9,-166.4],"head":[16.4,-200.5],"shR":[50.8,-135.2],"elR":[128.6,-146],"haR":[79.7,-177.6],"shL":[-50.6,-154.2],"elL":[-109.8,-189.5],"haL":[-164.5,-219.6],"hipR":[25.2,4.2],"knR":[81.3,114],"ftR":[130.6,227.1],"hipL":[-24.4,11.1],"knL":[-83.8,118.9],"ftL":[-144.5,228.4]},{"rootY":28.1,"hips":[0,0],"chest":[-11.3,-99.6],"neck":[5,-166.4],"head":[17.7,-200.5],"shR":[51.9,-134.9],"elR":[130.2,-142.9],"haR":[83.4,-176.1],"shL":[-49.3,-153.7],"elL":[-109,-187.4],"haL":[-163.4,-216.4],"hipR":[25.2,4.5],"knR":[81.7,114],"ftR":[131.5,226.9],"hipL":[-24.5,10.8],"knL":[-83.6,118.9],"ftL":[-144,228.5]},{"rootY":28.1,"hips":[0,0],"chest":[-9.5,-99.9],"neck":[6.8,-166.5],"head":[19.6,-200.4],"shR":[53.6,-134.8],"elR":[132.5,-137.4],"haR":[89,-172.8],"shL":[-47.3,-152.8],"elL":[-108.2,-183.4],"haL":[-161.9,-210.3],"hipR":[25.1,4.8],"knR":[82.2,114],"ftR":[132.3,226.7],"hipL":[-24.6,10.5],"knL":[-83.2,118.8],"ftL":[-143.3,228.5]},{"rootY":28.3,"hips":[0,0],"chest":[-7,-100.2],"neck":[9.4,-166.3],"head":[22.3,-200.3],"shR":[56.2,-134.6],"elR":[135.1,-129],"haR":[96.7,-166.9],"shL":[-44.5,-151.1],"elL":[-107.4,-176.7],"haL":[-159.6,-200.1],"hipR":[24.9,5.2],"knR":[82.9,113.8],"ftR":[133.1,226.5],"hipL":[-24.7,10.1],"knL":[-82.8,118.6],"ftL":[-142.4,228.3]},{"rootY":28.9,"hips":[0,0],"chest":[-4,-100.3],"neck":[12.8,-165.9],"head":[25.5,-199.9],"shR":[59.4,-133.6],"elR":[137.1,-117.8],"haR":[106.5,-157.8],"shL":[-41,-148.4],"elL":[-106.1,-166.8],"haL":[-156,-184.8],"hipR":[24.8,5.5],"knR":[83.7,113.5],"ftR":[133.8,225.9],"hipL":[-24.8,9.8],"knL":[-82.3,118.2],"ftL":[-141.1,227.6]},{"rootY":30.5,"hips":[0,0],"chest":[-1,-99.8],"neck":[16.8,-164.6],"head":[28.8,-198.9],"shR":[63.4,-132.4],"elR":[138,-105.5],"haR":[117.5,-145.2],"shL":[-36.9,-146.2],"elL":[-103.7,-154.1],"haL":[-150.9,-164.7],"hipR":[25,5.4],"knR":[84.3,112.6],"ftR":[134.6,224.2],"hipL":[-24.8,9.9],"knL":[-82.3,116.6],"ftL":[-139.2,225.3]},{"rootY":34.2,"hips":[0,0],"chest":[1.6,-98.8],"neck":[21.4,-162.3],"head":[32.4,-196.9],"shR":[68,-131.2],"elR":[138,-94.6],"haR":[128.2,-129.3],"shL":[-32.3,-145.7],"elL":[-99.6,-140.6],"haL":[-143.9,-141.2],"hipR":[25.2,5.1],"knR":[85.2,110.5],"ftR":[135.1,220.2],"hipL":[-24.6,10.3],"knL":[-82.5,113.3],"ftL":[-137.6,220.3]},{"rootY":40.7,"hips":[0,0],"chest":[3.7,-97.7],"neck":[25.7,-159.4],"head":[35.6,-194.2],"shR":[72,-129.1],"elR":[137.6,-86.7],"haR":[137.2,-111.6],"shL":[-27.6,-145.3],"elL":[-95.1,-127.4],"haL":[-134.9,-117.8],"hipR":[25.1,5.2],"knR":[86.3,106.8],"ftR":[135,213.7],"hipL":[-24.3,10.3],"knL":[-83.6,108.6],"ftL":[-137.9,213.2]},{"rootY":48.5,"hips":[0,0],"chest":[5.1,-97.1],"neck":[28.3,-157.2],"head":[37.4,-192.2],"shR":[73.8,-125.3],"elR":[136.7,-80.8],"haR":[143.5,-94.2],"shL":[-24.7,-142.1],"elL":[-92.5,-113.9],"haL":[-126.2,-96.3],"hipR":[24.7,5.7],"knR":[85.9,102.8],"ftR":[133,206.1],"hipL":[-24.2,9.8],"knL":[-87.3,103.2],"ftL":[-141.4,206.1]},{"rootY":54.4,"hips":[0,0],"chest":[5.7,-97.1],"neck":[28.5,-156.8],"head":[36.4,-192],"shR":[72.4,-120.9],"elR":[133.5,-75.6],"haR":[147.1,-77],"shL":[-25.2,-137.2],"elL":[-92.2,-100.1],"haL":[-120.6,-75.7],"hipR":[24.6,6.2],"knR":[82.4,101.2],"ftR":[127.8,200.8],"hipL":[-24.4,9.3],"knL":[-92.9,99.1],"ftL":[-147.6,201.3]},{"rootY":55.5,"hips":[0,0],"chest":[5.3,-97.5],"neck":[26.1,-158.1],"head":[32.5,-193.5],"shR":[68.9,-118.8],"elR":[126.8,-71.5],"haR":[148.4,-57.7],"shL":[-28.3,-133.8],"elL":[-91.8,-87.8],"haL":[-119.4,-55.2],"hipR":[24.8,6.6],"knR":[76.5,103.1],"ftR":[119.4,199.8],"hipL":[-24.7,9],"knL":[-97,98.3],"ftL":[-155.9,199.7]},{"rootY":51.9,"hips":[0,0],"chest":[4.5,-97.9],"neck":[21.8,-160.1],"head":[26.5,-195.6],"shR":[65.9,-120.9],"elR":[118.7,-70],"haR":[147.8,-36.9],"shL":[-32.9,-132.4],"elL":[-91.6,-79.3],"haL":[-122.9,-37.6],"hipR":[25,7.3],"knR":[70.6,106.9],"ftR":[109,203.3],"hipL":[-25.1,8.4],"knL":[-98.3,100.3],"ftL":[-164.1,200.3]},{"rootY":45.9,"hips":[0,0],"chest":[4.2,-98.4],"neck":[16.3,-162],"head":[19.6,-197.5],"shR":[63.6,-125.7],"elR":[111.1,-71.3],"haR":[145,-21.1],"shL":[-37.5,-130.4],"elL":[-93.9,-74.6],"haL":[-130.3,-27],"hipR":[25,8.1],"knR":[66.4,110.9],"ftR":[98.3,209.1],"hipL":[-25.5,7.5],"knL":[-98.4,102.2],"ftL":[-169.2,201.4]},{"rootY":39.6,"hips":[0,0],"chest":[3.6,-98.7],"neck":[9.3,-163.3],"head":[12,-198.8],"shR":[60.1,-130.6],"elR":[102.8,-74.2],"haR":[139,-15.6],"shL":[-42.8,-127.8],"elL":[-99.4,-72.3],"haL":[-140.4,-23],"hipR":[25.5,8.6],"knR":[62.8,114.9],"ftR":[87.6,215.5],"hipL":[-26.2,7.1],"knL":[-98.3,102.6],"ftL":[-169.9,202]},{"rootY":33.5,"hips":[0,0],"chest":[1.5,-98.8],"neck":[0.9,-163.8],"head":[4,-199.2],"shR":[54.1,-133.8],"elR":[93.4,-77.9],"haR":[130.7,-19.5],"shL":[-49.3,-126.5],"elL":[-106.9,-72],"haL":[-151,-23.3],"hipR":[26.5,8.1],"knR":[58,119],"ftR":[77.2,221.6],"hipL":[-26.7,7.6],"knL":[-97.7,102.4],"ftL":[-167.5,202.1]},{"rootY":28,"hips":[0,0],"chest":[-1.7,-98.6],"neck":[-7,-164],"head":[-2.8,-199.2],"shR":[47,-135],"elR":[86,-81.7],"haR":[124.8,-27.8],"shL":[-56.4,-127.4],"elL":[-115,-74.1],"haL":[-161.3,-26.5],"hipR":[27,7.1],"knR":[51,122.8],"ftR":[68.4,226.7],"hipL":[-26.5,8.6],"knL":[-95.2,103.3],"ftL":[-161.9,204]},{"rootY":23.3,"hips":[0,0],"chest":[-4.2,-98.6],"neck":[-12.9,-164.3],"head":[-7.3,-199.1],"shR":[41.3,-135.7],"elR":[82.6,-85.4],"haR":[124.8,-36],"shL":[-62.2,-129.4],"elL":[-122.9,-78.5],"haL":[-171.8,-32.6],"hipR":[26.7,6.4],"knR":[42.1,126],"ftR":[62.3,231.3],"hipL":[-25.8,9.2],"knL":[-91,105.6],"ftL":[-151.1,210.6]},{"rootY":19.7,"hips":[0,0],"chest":[-4.7,-98.8],"neck":[-14.9,-164.6],"head":[-8.4,-199.2],"shR":[39.4,-136.7],"elR":[83.7,-88.9],"haR":[131.2,-42.7],"shL":[-64.7,-131.9],"elL":[-128.4,-85],"haL":[-180.8,-41.9],"hipR":[26,6.3],"knR":[34.5,128.1],"ftR":[59.4,235.1],"hipL":[-25,9.3],"knL":[-83.2,110.4],"ftL":[-133.6,221.5]},{"rootY":17.3,"hips":[0,0],"chest":[-2.6,-99.2],"neck":[-11,-165],"head":[-5.1,-199.8],"shR":[42.5,-135.9],"elR":[89.1,-90],"haR":[144.3,-49.1],"shL":[-61.9,-134.8],"elL":[-128.5,-92.1],"haL":[-184.6,-52.9],"hipR":[26,6.9],"knR":[33.1,129.1],"ftR":[60.4,237.7],"hipL":[-25.2,8.7],"knL":[-70.5,117.3],"ftL":[-113.4,232.5]},{"rootY":15.9,"hips":[0,0],"chest":[1.5,-99.5],"neck":[-1.4,-165.4],"head":[2.3,-200.6],"shR":[50,-132.9],"elR":[98,-86.4],"haR":[161.1,-56.4],"shL":[-53.6,-137.1],"elL":[-122.6,-98.1],"haL":[-181.9,-63.5],"hipR":[26.7,8],"knR":[39.2,129],"ftR":[64.9,238.8],"hipL":[-26.6,7.6],"knL":[-57,122.8],"ftL":[-97.7,239.4]},{"rootY":15.4,"hips":[0,0],"chest":[7.5,-99.2],"neck":[11.4,-165.3],"head":[11.7,-200.5],"shR":[60.8,-130.7],"elR":[107.8,-78.7],"haR":[174.9,-66.5],"shL":[-41.5,-137.3],"elL":[-111.2,-100.4],"haL":[-173.7,-73.1],"hipR":[25.2,10.3],"knR":[49.2,127.7],"ftR":[71,238.7],"hipL":[-26.9,5.3],"knL":[-49.8,124.1],"ftL":[-89.1,241.1]},{"rootY":15.6,"hips":[0,0],"chest":[14.5,-97.9],"neck":[24.2,-163.8],"head":[20.6,-198.7],"shR":[72.9,-131.7],"elR":[115.5,-70.9],"haR":[178.4,-81],"shL":[-28.1,-134.7],"elL":[-94.8,-95.4],"haL":[-160,-80],"hipR":[19.8,13.2],"knR":[56.7,126],"ftR":[75.9,238.4],"hipL":[-23.7,2],"knL":[-48.9,122],"ftL":[-85.4,240]},{"rootY":16.7,"hips":[0,0],"chest":[19.4,-96.3],"neck":[33.9,-161.1],"head":[27.4,-195.6],"shR":[82.5,-135.6],"elR":[119.8,-69.2],"haR":[170.1,-95.9],"shL":[-18,-129.6],"elL":[-78,-82.8],"haL":[-142.6,-83.7],"hipR":[14.2,14.9],"knR":[58.7,124.9],"ftR":[77.8,237.8],"hipL":[-19.2,-0.1],"knL":[-47.5,119.7],"ftL":[-85.3,237.6]},{"rootY":18.6,"hips":[0,0],"chest":[19.4,-95.5],"neck":[36.1,-159.2],"head":[29.4,-193.7],"shR":[85.1,-139.6],"elR":[122.8,-74.8],"haR":[157.3,-105.4],"shL":[-15.7,-123.8],"elL":[-68.6,-67.6],"haL":[-127,-85.5],"hipR":[12.4,15.5],"knR":[56.3,125],"ftR":[76.2,236.2],"hipL":[-17.5,-0.8],"knL":[-45,119.1],"ftL":[-90.5,234.7]},{"rootY":20.9,"hips":[0,0],"chest":[15.9,-96.2],"neck":[28.7,-160.2],"head":[25.6,-195.2],"shR":[79.3,-142.2],"elR":[126.3,-87.6],"haR":[150,-115.1],"shL":[-22.1,-121.1],"elL":[-71.4,-59.2],"haL":[-119.2,-87.9],"hipR":[15.5,15.2],"knR":[52.6,125.4],"ftR":[72.6,234],"hipL":[-20.1,-0.4],"knL":[-44.4,119.3],"ftL":[-99.3,230.7]},{"rootY":22.5,"hips":[0,0],"chest":[9.3,-97.7],"neck":[13.1,-163],"head":[16.1,-197.9],"shR":[66.2,-144.3],"elR":[124.6,-103.6],"haR":[150,-128.3],"shL":[-36.8,-124],"elL":[-86.5,-62.9],"haL":[-119.7,-94.5],"hipR":[21,13.5],"knR":[49.6,125.2],"ftR":[65.7,232.4],"hipL":[-24.4,1.8],"knL":[-52.8,116.7],"ftL":[-107.6,227]},{"rootY":22.4,"hips":[0,0],"chest":[-0.9,-98.4],"neck":[-5.1,-164.5],"head":[3.4,-198.4],"shR":[49.8,-148.6],"elR":[116.8,-118.2],"haR":[157,-142.8],"shL":[-55.7,-131.2],"elL":[-108.8,-77],"haL":[-120.6,-107.5],"hipR":[25.8,9.5],"knR":[47.3,124.1],"ftR":[55.3,231.4],"hipL":[-26.8,6.1],"knL":[-65.3,112.8],"ftL":[-111.7,225.9]},{"rootY":19.9,"hips":[0,0],"chest":[-10.1,-97.5],"neck":[-18.8,-163.5],"head":[-6.9,-196.4],"shR":[36.2,-152.9],"elR":[109.6,-129],"haR":[165.6,-156.7],"shL":[-70.2,-137.7],"elL":[-126.9,-96.8],"haL":[-112,-123.6],"hipR":[27.1,5.8],"knR":[44.7,123.2],"ftR":[48.3,230.5],"hipL":[-26,9.8],"knL":[-69.1,114.1],"ftL":[-110,229.4]},{"rootY":17.6,"hips":[0,0],"chest":[-15.5,-96.6],"neck":[-26.2,-162.1],"head":[-12.5,-194.2],"shR":[28.6,-152.9],"elR":[105.5,-135.2],"haR":[168.8,-164.1],"shL":[-77.6,-142.2],"elL":[-134.2,-120.5],"haL":[-94.6,-138.8],"hipR":[26,3.9],"knR":[39,122.5],"ftR":[50.4,228.7],"hipL":[-23.9,11.6],"knL":[-65.5,118.6],"ftL":[-106.6,234.8]},{"rootY":17.7,"hips":[0,0],"chest":[-16.8,-96.3],"neck":[-28,-161.3],"head":[-14.2,-193.3],"shR":[26.4,-151.5],"elR":[103.1,-131.5],"haR":[161.4,-169.6],"shL":[-78.9,-147],"elL":[-131.1,-146.6],"haL":[-76.6,-151.8],"hipR":[24.5,3.6],"knR":[29.5,123.1],"ftR":[60.1,226.6],"hipL":[-22.1,11.8],"knL":[-62.8,120.6],"ftL":[-104.3,237.4]},{"rootY":19.8,"hips":[0,0],"chest":[-13.9,-96.7],"neck":[-23.7,-161.3],"head":[-12,-194],"shR":[30.7,-148.7],"elR":[105.2,-121.6],"haR":[148.1,-176.7],"shL":[-73.7,-153.3],"elL":[-121.8,-170],"haL":[-63.9,-165.6],"hipR":[23.8,4.8],"knR":[21.9,125.4],"ftR":[70.5,225.3],"hipL":[-21.9,10.7],"knL":[-63.8,118.4],"ftL":[-102,236]},{"rootY":21.1,"hips":[0,0],"chest":[-8,-97.4],"neck":[-12.9,-162.2],"head":[-4.8,-195.9],"shR":[41.2,-142.8],"elR":[115.2,-114.4],"haR":[135.7,-180.8],"shL":[-62.2,-159.5],"elL":[-112.4,-185.7],"haL":[-58.3,-182.6],"hipR":[24.8,6.5],"knR":[22.8,126.9],"ftR":[77,225.3],"hipL":[-24,9.2],"knL":[-64.8,115.9],"ftL":[-97.5,234.6]},{"rootY":19.5,"hips":[0,0],"chest":[0.2,-98.1],"neck":[3.4,-163.1],"head":[7.1,-197.4],"shR":[55.8,-136.9],"elR":[132,-115.2],"haR":[128.5,-181.8],"shL":[-46.3,-163.7],"elL":[-104.3,-191.7],"haL":[-59.4,-202.1],"hipR":[26.4,8.5],"knR":[33.9,125.7],"ftR":[82.7,225.8],"hipL":[-26.8,7.2],"knL":[-61.3,116.8],"ftL":[-88.9,236.2]},{"rootY":16.2,"hips":[0,0],"chest":[10.4,-97.6],"neck":[21.4,-162.7],"head":[21.3,-197],"shR":[72.6,-137.2],"elR":[151.5,-129.6],"haR":[129.2,-182.7],"shL":[-28.7,-165.4],"elL":[-95.9,-190.1],"haL":[-65.1,-220.9],"hipR":[24.7,10.9],"knR":[51.1,121.4],"ftR":[91.6,226.1],"hipL":[-26.6,4.6],"knL":[-52.4,119.9],"ftL":[-77.6,239.4]},{"rootY":13.5,"hips":[0,0],"chest":[17.9,-96.2],"neck":[34,-161.1],"head":[32.5,-195.1],"shR":[84.1,-142.3],"elR":[161.8,-158.4],"haR":[134.1,-185],"shL":[-16.2,-162.9],"elL":[-89.2,-184],"haL":[-74.8,-235.4],"hipR":[19.5,12.4],"knR":[63.2,117.7],"ftR":[97.3,227.9],"hipL":[-22.6,2.9],"knL":[-43.7,122.4],"ftL":[-73.2,241.3]},{"rootY":13.6,"hips":[0,0],"chest":[18.8,-95.7],"neck":[38.1,-160.1],"head":[37.6,-194],"shR":[84.9,-151.1],"elR":[153.7,-190.4],"haR":[139.6,-189.8],"shL":[-11.7,-157],"elL":[-86.6,-177.7],"haL":[-88.9,-243.2],"hipR":[14.2,12.7],"knR":[66.3,117],"ftR":[92.6,231.3],"hipL":[-17.4,2.5],"knL":[-40.1,123.2],"ftL":[-81.3,240]},{"rootY":17.4,"hips":[0,0],"chest":[13.2,-96.7],"neck":[33.9,-160.6],"head":[37.2,-194.6],"shR":[75.4,-161.8],"elR":[135.2,-212.7],"haR":[142.8,-200.5],"shL":[-14.1,-151.7],"elL":[-88.6,-172.7],"haL":[-104.9,-240.6],"hipR":[11.1,12.6],"knR":[66.5,117.1],"ftR":[80.1,233.5],"hipL":[-13.9,2.7],"knL":[-41,122.7],"ftL":[-94.4,235.8]},{"rootY":23.2,"hips":[0,0],"chest":[5.8,-97.4],"neck":[26.1,-161.2],"head":[34.7,-194.8],"shR":[63.7,-168.5],"elR":[118.4,-217.2],"haR":[147.4,-215.9],"shL":[-20.2,-149.3],"elL":[-93.9,-163.7],"haL":[-118.2,-228.9],"hipR":[11.3,13.2],"knR":[71.7,115.1],"ftR":[71.5,231.2],"hipL":[-13.6,2.2],"knL":[-41.6,121.9],"ftL":[-102.9,231.2]},{"rootY":28.2,"hips":[0,0],"chest":[1.9,-97.1],"neck":[20,-161],"head":[31.7,-194.3],"shR":[58.3,-166.6],"elR":[109.3,-202.6],"haR":[152,-229.5],"shL":[-25.9,-144.9],"elL":[-98.2,-143.9],"haL":[-126.8,-207.6],"hipR":[14.6,13.9],"knR":[80.6,112.1],"ftR":[70.3,226.4],"hipL":[-16.7,1.3],"knL":[-39.6,121.7],"ftL":[-105.8,228]},{"rootY":30.2,"hips":[0,0],"chest":[1.6,-96.9],"neck":[15,-161.2],"head":[26.7,-194.7],"shR":[57.5,-159.4],"elR":[106.2,-175.6],"haR":[150.7,-226.1],"shL":[-30,-137.9],"elL":[-98.5,-116.3],"haL":[-130.3,-175.9],"hipR":[19.7,13.3],"knR":[84.3,111.7],"ftR":[68.8,224],"hipL":[-22.2,2],"knL":[-38.5,121.9],"ftL":[-108.7,225.7]},{"rootY":28.5,"hips":[0,0],"chest":[-0.1,-97.1],"neck":[7,-161.4],"head":[17.1,-195.5],"shR":[54.1,-153.4],"elR":[99.2,-143],"haR":[143.4,-195.4],"shL":[-36.3,-132.8],"elL":[-96.7,-91.8],"haL":[-129.7,-132.8],"hipR":[24.5,11.1],"knR":[75.3,116.2],"ftR":[60.3,226.2],"hipL":[-26.4,4.5],"knL":[-43.7,121.7],"ftL":[-115,224.5]},{"rootY":24.6,"hips":[0,0],"chest":[-4.7,-96.9],"neck":[-2.6,-160.4],"head":[5.1,-195],"shR":[47.8,-147],"elR":[82.2,-115.5],"haR":[130.9,-150],"shL":[-45,-132.1],"elL":[-94.1,-76.9],"haL":[-112.8,-84.7],"hipR":[26.4,9.2],"knR":[57.9,121.7],"ftR":[52.2,229.7],"hipL":[-27.2,6.5],"knL":[-52.1,120.2],"ftL":[-115.9,225.8]},{"rootY":21.9,"hips":[0,0],"chest":[-9.2,-96.6],"neck":[-10.2,-158.7],"head":[-5.2,-193.2],"shR":[41,-137.7],"elR":[60.9,-96.2],"haR":[119,-92.9],"shL":[-52.5,-133.4],"elL":[-88.3,-68.7],"haL":[-75.4,-52.5],"hipR":[25.9,8.1],"knR":[41.4,124.8],"ftR":[55,230.2],"hipL":[-25.7,7.5],"knL":[-62,117.2],"ftL":[-101.2,229.3]},{"rootY":22.9,"hips":[0,0],"chest":[-11.3,-96.6],"neck":[-14.2,-157.6],"head":[-11.9,-191.6],"shR":[35.6,-131],"elR":[47.2,-84.4],"haR":[102,-46.1],"shL":[-57.2,-134.8],"elL":[-78.6,-64.4],"haL":[-31.5,-48.2],"hipR":[24.8,7.1],"knR":[30.1,126.4],"ftR":[68.5,227.2],"hipL":[-24,8.5],"knL":[-72.8,114.8],"ftL":[-84.8,231]},{"rootY":25.9,"hips":[0,0],"chest":[-10.3,-96.8],"neck":[-14,-157.8],"head":[-12.8,-191.5],"shR":[35.6,-128.8],"elR":[47.5,-73],"haR":[91.7,-19.1],"shL":[-59,-135.8],"elL":[-65.3,-65.3],"haL":[-0.6,-64.1],"hipR":[24.4,6.7],"knR":[27.4,127.5],"ftR":[82.1,224.3],"hipL":[-23.5,8.9],"knL":[-80,112.7],"ftL":[-78.3,229.5]},{"rootY":27.3,"hips":[0,0],"chest":[-8,-97.1],"neck":[-10.5,-159.3],"head":[-8,-193.2],"shR":[41.3,-129.6],"elR":[54.6,-64.7],"haR":[90.1,-11.9],"shL":[-57.2,-138.2],"elL":[-55,-73.4],"haL":[11.6,-89.7],"hipR":[25.3,7],"knR":[32.5,127.7],"ftR":[90,224.1],"hipL":[-24.7,8.6],"knL":[-81.4,112.1],"ftL":[-76.7,227.2]},{"rootY":24.7,"hips":[0,0],"chest":[-5.1,-97.4],"neck":[-3.7,-160.8],"head":[1.3,-195],"shR":[48.7,-130.3],"elR":[69.6,-62.3],"haR":[100.2,-23.3],"shL":[-52,-142.5],"elL":[-54.6,-88.2],"haL":[9.4,-115.5],"hipR":[26.5,7.9],"knR":[42.4,126.9],"ftR":[95.7,226],"hipL":[-26.5,7.8],"knL":[-74.7,115],"ftL":[-72.8,226.8]},{"rootY":18.7,"hips":[0,0],"chest":[-2.8,-97.5],"neck":[4,-161.2],"head":[11.6,-195.7],"shR":[55.7,-132.1],"elR":[94.1,-68.5],"haR":[115.5,-47.4],"shL":[-45.2,-145],"elL":[-64.5,-109.7],"haL":[-0.6,-137.2],"hipR":[26.2,9.1],"knR":[52.4,125.2],"ftR":[101,228.3],"hipL":[-26.9,6.6],"knL":[-62.2,119.2],"ftL":[-71.3,227.6]},{"rootY":11.4,"hips":[0,0],"chest":[-2,-97.4],"neck":[9.8,-161],"head":[19.4,-195.5],"shR":[60.4,-136],"elR":[120.7,-89.1],"haR":[128.5,-81],"shL":[-38.6,-144.8],"elL":[-77.5,-137.6],"haL":[-12.6,-156.3],"hipR":[24.2,10.2],"knR":[60,122.4],"ftR":[99.6,229.8],"hipL":[-25.3,5.4],"knL":[-49.4,122.2],"ftL":[-80.9,227.4]},{"rootY":6.5,"hips":[0,0],"chest":[-1.3,-97.5],"neck":[13.1,-161.3],"head":[23.2,-195.9],"shR":[62.4,-141],"elR":[138.1,-124.7],"haR":[137,-118.2],"shL":[-33,-147.5],"elL":[-80.9,-167.2],"haL":[-28,-178.9],"hipR":[21.1,11.1],"knR":[66.9,117.6],"ftR":[84.9,229.2],"hipL":[-22.5,4.5],"knL":[-40.8,124.1],"ftL":[-98.2,225.6]},{"rootY":6.5,"hips":[0,0],"chest":[0.1,-97.7],"neck":[14.4,-162.6],"head":[23.2,-197.2],"shR":[62.6,-150.8],"elR":[138.5,-167.2],"haR":[141.8,-159],"shL":[-29,-153.7],"elL":[-72.4,-193.5],"haL":[-49.9,-209.5],"hipR":[18,11.8],"knR":[73.5,113.5],"ftR":[58.5,227.7],"hipL":[-19.6,3.7],"knL":[-40.7,124],"ftL":[-113.5,223.4]},{"rootY":10.7,"hips":[0,0],"chest":[1.1,-97.9],"neck":[14.9,-163.7],"head":[21.2,-197.8],"shR":[59.5,-164.1],"elR":[124.3,-204.7],"haR":[138,-201.8],"shL":[-25.2,-160.4],"elL":[-59.1,-208.5],"haL":[-65.8,-236],"hipR":[16.5,12],"knR":[76.1,114.2],"ftR":[35.7,228.3],"hipL":[-18.1,3.5],"knL":[-46.8,122.2],"ftL":[-123,221.6]},{"rootY":17.5,"hips":[0,0],"chest":[1.5,-98],"neck":[15.5,-164.1],"head":[20,-197],"shR":[53.8,-174.6],"elR":[104.7,-227.3],"haR":[128.2,-239.8],"shL":[-19.6,-165.2],"elL":[-52.2,-213.6],"haL":[-69.2,-253.5],"hipR":[16.2,11.9],"knR":[76.9,116.2],"ftR":[24.2,228.5],"hipL":[-17.9,3.6],"knL":[-53.4,119.8],"ftL":[-129,219.7]},{"rootY":24.7,"hips":[0,0],"chest":[1,-98.1],"neck":[14.8,-163.9],"head":[19.8,-196.4],"shR":[50.2,-177.4],"elR":[92.3,-232.7],"haR":[117.5,-271.1],"shL":[-10.4,-169.6],"elL":[-58,-212.3],"haL":[-69.3,-266.5],"hipR":[16.2,11.9],"knR":[79.6,115.9],"ftR":[20.9,225.8],"hipL":[-17.9,3.6],"knL":[-57.9,118.2],"ftL":[-134.5,217.1]},{"rootY":29.3,"hips":[0,0],"chest":[0.5,-98],"neck":[12.5,-164],"head":[19.2,-196.5],"shR":[50.4,-174.3],"elR":[93.4,-226.1],"haR":[109.4,-285.9],"shL":[-15.3,-170.4],"elL":[-69.1,-203.5],"haL":[-78.7,-261],"hipR":[16.9,11.9],"knR":[82.6,114.5],"ftR":[20.5,221.8],"hipL":[-18.5,3.5],"knL":[-59.7,118.1],"ftL":[-138.9,215.1]},{"rootY":28.8,"hips":[0,0],"chest":[0.9,-97.9],"neck":[10.1,-164.4],"head":[18.3,-196.8],"shR":[50.9,-170.5],"elR":[99.5,-212.7],"haR":[107.1,-281.7],"shL":[-32.5,-155.2],"elL":[-80.6,-194.1],"haL":[-99.9,-235.4],"hipR":[19.3,11.8],"knR":[81.4,115.2],"ftR":[19.8,220.6],"hipL":[-21,3.7],"knL":[-59.1,118.8],"ftL":[-140,214.5]},{"rootY":24,"hips":[0,0],"chest":[0.5,-97.6],"neck":[6,-164],"head":[15.6,-196.1],"shR":[49.2,-167.2],"elR":[98,-194.3],"haR":[117.6,-259.5],"shL":[-39.8,-150.8],"elL":[-97,-177.4],"haL":[-125.1,-196.5],"hipR":[23.2,11],"knR":[71.9,118.2],"ftR":[21.3,221.6],"hipL":[-24.7,4.5],"knL":[-59.4,117.3],"ftL":[-136.6,214.4]},{"rootY":18.3,"hips":[0,0],"chest":[-1.5,-96.9],"neck":[1.2,-162.3],"head":[11.1,-194.4],"shR":[46.9,-161.9],"elR":[87.9,-175.1],"haR":[133.9,-217.2],"shL":[-46.1,-147.7],"elL":[-110.2,-154.6],"haL":[-142.2,-153.8],"hipR":[26,9.6],"knR":[53.5,121.8],"ftR":[32.2,220.6],"hipL":[-26.9,6],"knL":[-64.8,111.5],"ftL":[-126.7,215.6]},{"rootY":14.9,"hips":[0,0],"chest":[-3.9,-96.4],"neck":[-3.3,-160.6],"head":[5.9,-193],"shR":[44.6,-152.9],"elR":[78.7,-155.4],"haR":[137.5,-167],"shL":[-50.8,-144.9],"elL":[-116.6,-125.9],"haL":[-150,-112],"hipR":[26.4,8.3],"knR":[33.7,125.3],"ftR":[55.5,217.6],"hipL":[-26.8,7.4],"knL":[-73.4,106],"ftL":[-110.2,220.4]},{"rootY":15.8,"hips":[0,0],"chest":[-6.2,-96.3],"neck":[-7.8,-159.7],"head":[0.1,-192.5],"shR":[41.5,-145.9],"elR":[74.5,-131.1],"haR":[135.4,-112.2],"shL":[-54.6,-141.8],"elL":[-114.4,-96.8],"haL":[-150.2,-77.2],"hipR":[25.7,7.2],"knR":[21.3,128.5],"ftR":[84.2,215.7],"hipL":[-25.6,8.4],"knL":[-80.3,105.3],"ftL":[-93.9,226.7]},{"rootY":20.6,"hips":[0,0],"chest":[-6.7,-96.6],"neck":[-10.4,-159],"head":[-4.7,-192.2],"shR":[40.7,-143.6],"elR":[71.5,-104.8],"haR":[124.1,-61.9],"shL":[-57.1,-137],"elL":[-104.9,-74.8],"haL":[-136.2,-50.8],"hipR":[25.1,7.2],"knR":[25.3,130.2],"ftR":[107.7,216.3],"hipL":[-24.8,8.5],"knL":[-82.6,106.1],"ftL":[-83.3,229.4]},{"rootY":25.5,"hips":[0,0],"chest":[-6.5,-96.6],"neck":[-11.2,-157.4],"head":[-8.5,-190.6],"shR":[42.2,-139.1],"elR":[67.9,-83.7],"haR":[109.8,-27.7],"shL":[-59.1,-131.9],"elL":[-97.9,-62.7],"haL":[-115.1,-37.7],"hipR":[25.5,7.1],"knR":[37.3,129.4],"ftR":[119.2,218.6],"hipL":[-25,8.6],"knL":[-84.5,104.9],"ftL":[-79,227.6]},{"rootY":27.8,"hips":[0,0],"chest":[-5.7,-96.5],"neck":[-10.5,-155.9],"head":[-10,-188.8],"shR":[44.4,-134.5],"elR":[71.2,-71.6],"haR":[99.1,-11.7],"shL":[-60.8,-130],"elL":[-95.9,-58.9],"haL":[-93.8,-39.2],"hipR":[26.3,7.3],"knR":[50,126.8],"ftR":[123.1,219.5],"hipL":[-26,8.3],"knL":[-86.5,102.5],"ftL":[-77,224.1]},{"rootY":25.7,"hips":[0,0],"chest":[-4.2,-96.9],"neck":[-8.4,-156.3],"head":[-7.3,-188.8],"shR":[46.6,-132.1],"elR":[84.3,-66],"haR":[90.3,-13],"shL":[-60.5,-131.1],"elL":[-96.9,-61.4],"haL":[-80.6,-52.6],"hipR":[26.5,8.6],"knR":[59.4,124.6],"ftR":[124.8,220.6],"hipL":[-26.9,7.1],"knL":[-85.2,102.7],"ftL":[-74.7,223.7]},{"rootY":19.1,"hips":[0,0],"chest":[-2.4,-97.6],"neck":[-5.6,-158.3],"head":[-1.9,-190.1],"shR":[48.9,-131.4],"elR":[96,-67.7],"haR":[84.3,-28.9],"shL":[-58.1,-133.7],"elL":[-100.8,-68.9],"haL":[-80.9,-69.1],"hipR":[26.2,9.5],"knR":[64.4,124.7],"ftR":[124.3,224.7],"hipL":[-27.2,6.1],"knL":[-79,106.7],"ftL":[-71.7,228.1]},{"rootY":12.1,"hips":[0,0],"chest":[-0.8,-97.9],"neck":[-2.5,-160.5],"head":[3.9,-191.8],"shR":[51.6,-133.9],"elR":[101.4,-76],"haR":[79.9,-53.9],"shL":[-55.8,-137.5],"elL":[-109.1,-83.4],"haL":[-89.8,-96.3],"hipR":[26.1,9.9],"knR":[67.2,125.2],"ftR":[116.5,229.6],"hipL":[-27.3,5.7],"knL":[-71.9,111.6],"ftL":[-68.8,233.3]},{"rootY":7.9,"hips":[0,0],"chest":[0.2,-98],"neck":[-0.3,-162],"head":[7.6,-193.9],"shR":[53.6,-138.7],"elR":[103,-88],"haR":[75.7,-83.3],"shL":[-54.1,-139.8],"elL":[-120,-106.7],"haL":[-102.4,-133.2],"hipR":[26,10.1],"knR":[68,125.6],"ftR":[99.1,233.8],"hipL":[-27.4,5.5],"knL":[-68.3,114.7],"ftL":[-69.2,236.1]},{"rootY":6.9,"hips":[0,0],"chest":[0.8,-98],"neck":[0.7,-163.2],"head":[8.4,-196.5],"shR":[53.9,-143.8],"elR":[104,-104.1],"haR":[72.9,-114.2],"shL":[-53.6,-143.8],"elL":[-126.7,-134.3],"haL":[-113.1,-172.1],"hipR":[25.6,10.7],"knR":[67.2,126.4],"ftR":[77.5,237.4],"hipL":[-27.3,4.9],"knL":[-66,116],"ftL":[-75.7,236.3]},{"rootY":8.8,"hips":[0,0],"chest":[1.4,-98.2],"neck":[1.9,-164.4],"head":[7.8,-198.9],"shR":[54.1,-148.1],"elR":[106.3,-122.7],"haR":[72.8,-144.7],"shL":[-52.5,-149.5],"elL":[-127,-161.1],"haL":[-122.2,-206.6],"hipR":[24.8,11.5],"knR":[65.6,127.4],"ftR":[60.2,240],"hipL":[-27,4],"knL":[-60.9,117.6],"ftL":[-85.6,234.9]},{"rootY":12,"hips":[0,0],"chest":[2.1,-98.3],"neck":[3.6,-164.8],"head":[6.5,-200.2],"shR":[54.9,-151.7],"elR":[109.9,-140.1],"haR":[75.5,-173],"shL":[-50.3,-154.2],"elL":[-121.8,-182.8],"haL":[-130.8,-233.9],"hipR":[24.1,12],"knR":[64.5,127.6],"ftR":[52.3,240],"hipL":[-26.5,3.5],"knL":[-55.2,119.6],"ftL":[-92.8,233.2]},{"rootY":13.5,"hips":[0,0],"chest":[2.6,-98.2],"neck":[4,-164.2],"head":[2.8,-200],"shR":[54.4,-154.8],"elR":[113.6,-149.9],"haR":[81.3,-193.3],"shL":[-48.4,-157.9],"elL":[-118.1,-192.5],"haL":[-136.8,-249],"hipR":[23.8,12.2],"knR":[62.8,128.1],"ftR":[50.6,239.4],"hipL":[-26.3,3.3],"knL":[-55,120.1],"ftL":[-95.5,233]},{"rootY":11.6,"hips":[0,0],"chest":[2,-98.4],"neck":[0.8,-163.7],"head":[-4,-199.4],"shR":[50.8,-156.7],"elR":[113.4,-147.9],"haR":[88.8,-200.8],"shL":[-49.3,-161.2],"elL":[-122.4,-187.6],"haL":[-139.8,-250.8],"hipR":[24.4,11.8],"knR":[58.8,129.4],"ftR":[48.9,241],"hipL":[-26.8,3.6],"knL":[-60.8,119.4],"ftL":[-97.6,234.9]},{"rootY":7.8,"hips":[0,0],"chest":[0,-99.1],"neck":[-5.6,-164.1],"head":[-12.3,-199.4],"shR":[45.3,-156.2],"elR":[106.8,-136.5],"haR":[95,-194.5],"shL":[-55.3,-160.1],"elL":[-131.1,-171.9],"haL":[-145.9,-238.4],"hipR":[25.4,10.7],"knR":[52.3,130.7],"ftR":[46.4,243.9],"hipL":[-27.3,4.8],"knL":[-65.9,119.9],"ftL":[-101.2,237.7]},{"rootY":5,"hips":[0,0],"chest":[-2.6,-99.7],"neck":[-11.9,-164.9],"head":[-19.4,-199.8],"shR":[40.5,-154.2],"elR":[97.9,-121.7],"haR":[98.6,-175.2],"shL":[-62.8,-154.5],"elL":[-138.1,-149.4],"haL":[-154.3,-214.9],"hipR":[26.3,9.3],"knR":[47,130.8],"ftR":[48.3,244.4],"hipL":[-27.2,6.2],"knL":[-66,122.2],"ftL":[-101.7,240.7]},{"rootY":4.4,"hips":[0,0],"chest":[-4.2,-99.9],"neck":[-16,-165.3],"head":[-23.4,-199.9],"shR":[37.6,-151.1],"elR":[93.4,-108.7],"haR":[99.8,-145.9],"shL":[-67.3,-146.2],"elL":[-138.5,-123.6],"haL":[-159.7,-182.5],"hipR":[26.6,8.5],"knR":[46.5,129.8],"ftR":[58.5,241.9],"hipL":[-26.9,7],"knL":[-63.6,124.1],"ftL":[-94.5,243.3]},{"rootY":6.9,"hips":[0,0],"chest":[-4.7,-99.6],"neck":[-18.3,-165.2],"head":[-24.4,-199.7],"shR":[36,-146.5],"elR":[93.8,-101],"haR":[96.4,-115.9],"shL":[-68.1,-137.6],"elL":[-132.4,-99.1],"haL":[-157.2,-141.9],"hipR":[26.6,8.1],"knR":[50.2,128.5],"ftR":[74.6,237.2],"hipL":[-26.6,7.5],"knL":[-65.1,123.3],"ftL":[-82.5,242.7]},{"rootY":13.4,"hips":[0,0],"chest":[-5.2,-98.9],"neck":[-19.3,-164.7],"head":[-23.5,-199.4],"shR":[34.5,-141.9],"elR":[95,-97.8],"haR":[88.9,-90.5],"shL":[-67.3,-131.8],"elL":[-125.2,-82.7],"haL":[-145.2,-102],"hipR":[26.6,7.2],"knR":[54.1,126.9],"ftR":[90.4,229.3],"hipL":[-26,8.5],"knL":[-71.7,119.7],"ftL":[-74.6,236.6]},{"rootY":20.8,"hips":[0,0],"chest":[-5,-98.1],"neck":[-18.2,-163.8],"head":[-20.3,-199],"shR":[34.9,-137.3],"elR":[96.8,-95],"haR":[82.7,-75.4],"shL":[-65.5,-128.5],"elL":[-120.4,-74.5],"haL":[-130,-68.6],"hipR":[26.4,6.6],"knR":[57.3,125.9],"ftR":[101.6,219.8],"hipL":[-25.7,9],"knL":[-76.5,116.2],"ftL":[-72.1,229.4]},{"rootY":24.4,"hips":[0,0],"chest":[-4,-97.6],"neck":[-14.7,-162.9],"head":[-14.9,-198.5],"shR":[38,-133.5],"elR":[99.8,-89.2],"haR":[81.1,-68.5],"shL":[-62.3,-126.5],"elL":[-117.7,-71.4],"haL":[-117.9,-47.2],"hipR":[26.6,6.8],"knR":[61.1,125],"ftR":[107.6,214],"hipL":[-26,8.8],"knL":[-75.9,115.8],"ftL":[-70.5,226.3]},{"rootY":21.2,"hips":[0,0],"chest":[-3.1,-97.6],"neck":[-9.8,-162.6],"head":[-8.1,-198.2],"shR":[42.9,-131.5],"elR":[104.5,-84.3],"haR":[87.6,-71.2],"shL":[-59.1,-126.3],"elL":[-115.6,-71],"haL":[-112.2,-39.9],"hipR":[26.9,6.9],"knR":[64.7,124.1],"ftR":[110.7,215.5],"hipL":[-26.4,8.8],"knL":[-70.7,119.1],"ftL":[-67.7,228.3]},{"rootY":13.4,"hips":[0,0],"chest":[-3.1,-97.9],"neck":[-5.3,-163.1],"head":[-1.4,-198.6],"shR":[47.4,-132.1],"elR":[110.9,-86.7],"haR":[96.1,-86.2],"shL":[-56.8,-129.1],"elL":[-116.1,-76.5],"haL":[-113.9,-51.4],"hipR":[27.1,6.7],"knR":[66.8,123.3],"ftR":[110.2,220.6],"hipL":[-26.4,9],"knL":[-64.2,123.1],"ftL":[-66.9,232.8]},{"rootY":4.8,"hips":[0,0],"chest":[-4.2,-98.2],"neck":[-2.6,-164],"head":[3.7,-198.9],"shR":[50,-134.1],"elR":[118.7,-98.1],"haR":[103.5,-111.6],"shL":[-56,-133.7],"elL":[-121.8,-89.8],"haL":[-119.5,-80.8],"hipR":[26.9,6.5],"knR":[67.5,122.8],"ftR":[103.1,224.1],"hipL":[-26.2,9.2],"knL":[-58.6,125.8],"ftL":[-72.4,236.3]},{"rootY":-1.7,"hips":[0,0],"chest":[-6.2,-98.1],"neck":[-2.3,-164.7],"head":[6.5,-198.6],"shR":[50.5,-137.7],"elR":[124.2,-116.6],"haR":[108.3,-141.2],"shL":[-56.4,-137.2],"elL":[-129.3,-110.9],"haL":[-124.6,-119.6],"hipR":[26.1,6.8],"knR":[68.5,122.3],"ftR":[89.5,226.2],"hipL":[-25.6,8.8],"knL":[-53.9,126.5],"ftL":[-84.8,234.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-8.8,-98],"neck":[-4.8,-165.8],"head":[6.9,-197.7],"shR":[48.6,-144.4],"elR":[124.7,-140.3],"haR":[111.1,-170.1],"shL":[-58.3,-142.1],"elL":[-131.3,-136.9],"haL":[-126.3,-160.2],"hipR":[24.8,7.4],"knR":[68.7,121.8],"ftR":[75.4,230.6],"hipL":[-24.5,8.3],"knL":[-50.6,125.6],"ftL":[-100.1,227.6]}]},"dance_glide":{"name":"dance_glide","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":-0.1,"hips":[0,0],"chest":[4.4,-86.4],"neck":[4.4,-86.4],"head":[3.1,-155.3],"shR":[-59.4,-99.3],"elR":[-69.9,2.2],"haR":[-69.5,53.5],"shL":[68.8,-95.4],"elL":[111.7,5.8],"haL":[102.4,55.2],"hipR":[-27.5,39.2],"knR":[-15.5,174.5],"ftR":[81.2,275],"hipL":[28.7,39.5],"knL":[-11.5,165.3],"ftL":[-21.6,316.3]},{"rootY":-0.4,"hips":[0,0],"chest":[3.9,-86.3],"neck":[3.9,-86.3],"head":[2.2,-155.4],"shR":[-59.9,-99.4],"elR":[-71.5,1.1],"haR":[-69.6,52.3],"shL":[68.2,-95.1],"elL":[112.7,5.6],"haL":[102.3,54.8],"hipR":[-27.4,39],"knR":[-15.2,174.3],"ftR":[81.9,275.3],"hipL":[28.4,39.7],"knL":[-12.1,165.6],"ftL":[-21.5,316.7]},{"rootY":-0.8,"hips":[0,0],"chest":[3.6,-86.3],"neck":[3.6,-86.3],"head":[1.7,-155.5],"shR":[-60,-99.3],"elR":[-73.4,0],"haR":[-69.9,51],"shL":[67.6,-95],"elL":[114.3,5],"haL":[102.1,53.9],"hipR":[-27.1,38.7],"knR":[-15,174],"ftR":[82.8,275.7],"hipL":[28.1,40],"knL":[-12.6,165.8],"ftL":[-21.4,316.9]},{"rootY":-1.1,"hips":[0,0],"chest":[3.4,-86.2],"neck":[3.4,-86.2],"head":[1.1,-155.4],"shR":[-60.1,-99.5],"elR":[-75.6,-1.4],"haR":[-70.2,49.4],"shL":[67.1,-94.5],"elL":[116.7,4.4],"haL":[102.5,52.8],"hipR":[-26.7,38.7],"knR":[-14.7,174],"ftR":[83.5,276.1],"hipL":[27.7,40],"knL":[-13.9,165.8],"ftL":[-21.1,317.2]},{"rootY":-1.3,"hips":[0,0],"chest":[3.3,-86.1],"neck":[3.3,-86.1],"head":[1,-155.4],"shR":[-60,-99.6],"elR":[-77.3,-2.4],"haR":[-70.6,48.1],"shL":[66.6,-94.1],"elL":[119,3.6],"haL":[102.7,51.4],"hipR":[-26.6,38.4],"knR":[-13.5,173.6],"ftR":[84.8,275.7],"hipL":[27.4,40.2],"knL":[-14.7,166],"ftL":[-20.7,317.4]},{"rootY":-1.6,"hips":[0,0],"chest":[3.5,-86],"neck":[3.5,-86],"head":[1.3,-155.4],"shR":[-59.5,-99.8],"elR":[-78.1,-3.2],"haR":[-70.4,47.1],"shL":[66.5,-93.5],"elL":[120.9,3.4],"haL":[102.8,50.5],"hipR":[-26,38.3],"knR":[-12.8,173.4],"ftR":[86.1,276.3],"hipL":[27.1,40.3],"knL":[-16,166.1],"ftL":[-19.8,317.7]},{"rootY":-1.5,"hips":[0,0],"chest":[3.7,-85.8],"neck":[3.7,-85.8],"head":[1.7,-155.2],"shR":[-59.2,-100],"elR":[-79.1,-4],"haR":[-70.9,46.3],"shL":[66.6,-92.9],"elL":[122.9,3],"haL":[103.7,49.7],"hipR":[-25.8,38.1],"knR":[-11.1,173.1],"ftR":[87.5,275.9],"hipL":[26.8,40.5],"knL":[-15.3,166.5],"ftL":[-19.2,317.8]},{"rootY":-1.6,"hips":[0,0],"chest":[4.1,-85.7],"neck":[4.1,-85.7],"head":[2.2,-155.2],"shR":[-58.5,-100.5],"elR":[-78.4,-4.4],"haR":[-70.8,46],"shL":[66.9,-92.2],"elL":[124.3,3.1],"haL":[104.5,49.5],"hipR":[-25.9,37.9],"knR":[-8.9,172.6],"ftR":[88.7,275.6],"hipL":[26.6,40.7],"knL":[-15.3,166.9],"ftL":[-18.1,317.9]},{"rootY":-1.8,"hips":[0,0],"chest":[4.9,-85.5],"neck":[4.9,-85.5],"head":[3,-154.9],"shR":[-57.7,-100.3],"elR":[-76.6,-4],"haR":[-70.4,46.6],"shL":[67.8,-92.1],"elL":[124.9,3.3],"haL":[105,49.6],"hipR":[-25.8,37.8],"knR":[-6.9,172.1],"ftR":[88.6,275.2],"hipL":[26.8,40.8],"knL":[-15.2,167.1],"ftL":[-16.9,318]},{"rootY":-1.7,"hips":[0,0],"chest":[6.2,-85.4],"neck":[6.2,-85.4],"head":[4,-154.6],"shR":[-56.6,-100.5],"elR":[-73.9,-3.4],"haR":[-69.8,47.6],"shL":[69.4,-91.7],"elL":[125.2,4.3],"haL":[105.8,50.7],"hipR":[-26.2,37.7],"knR":[-4.4,171.4],"ftR":[86.9,274.5],"hipL":[26.6,40.9],"knL":[-14.4,167.6],"ftL":[-15.8,318.3]},{"rootY":-1.8,"hips":[0,0],"chest":[6.8,-85.4],"neck":[6.8,-85.4],"head":[4.4,-154.7],"shR":[-56.2,-100.7],"elR":[-70.7,-2.6],"haR":[-69.7,48.6],"shL":[70.6,-91.6],"elL":[123.3,5.7],"haL":[105.5,52.3],"hipR":[-27.2,37.1],"knR":[-3.9,170],"ftR":[82,274.1],"hipL":[26.6,41.4],"knL":[-15.4,168],"ftL":[-14.9,318.5]},{"rootY":-1.8,"hips":[0,0],"chest":[7.6,-85.4],"neck":[7.6,-85.4],"head":[4.8,-154.6],"shR":[-55.8,-100.6],"elR":[-67.3,-0.8],"haR":[-69.4,50.4],"shL":[72,-91.9],"elL":[119.9,7.3],"haL":[105,54.4],"hipR":[-27.8,37],"knR":[-4.5,169.1],"ftR":[74.5,273.7],"hipL":[26.8,41.5],"knL":[-15.3,168.2],"ftL":[-14.2,318.5]},{"rootY":-2.2,"hips":[0,0],"chest":[7.9,-85.6],"neck":[7.9,-85.6],"head":[4.6,-154.7],"shR":[-55.9,-100.4],"elR":[-63.9,1.6],"haR":[-70,52.4],"shL":[73.1,-92.6],"elL":[113.7,9.1],"haL":[103.8,56.9],"hipR":[-29.2,36.4],"knR":[-7.7,168],"ftR":[63.4,271.8],"hipL":[26.6,42],"knL":[-15.8,168.9],"ftL":[-13.8,319]},{"rootY":-3.6,"hips":[0,0],"chest":[8.4,-85.6],"neck":[8.4,-85.6],"head":[4.2,-154.7],"shR":[-56,-100],"elR":[-61.7,4.8],"haR":[-71,54.6],"shL":[74.3,-93.2],"elL":[105.9,11],"haL":[102.9,59.4],"hipR":[-30,35.9],"knR":[-14.1,167.5],"ftR":[48.5,269.6],"hipL":[26.2,42.5],"knL":[-14.6,170.1],"ftL":[-13.8,320.1]},{"rootY":-4.3,"hips":[0,0],"chest":[8.4,-85.8],"neck":[8.4,-85.8],"head":[3.3,-154.7],"shR":[-56.6,-99.4],"elR":[-62.5,8.1],"haR":[-74,56.5],"shL":[75.2,-94.4],"elL":[97,11.9],"haL":[101.8,60.7],"hipR":[-31.3,34.9],"knR":[-22.8,165.9],"ftR":[31.9,266.6],"hipL":[25.6,43.3],"knL":[-16.4,170.9],"ftL":[-14.5,320.9]},{"rootY":-4.9,"hips":[0,0],"chest":[8.2,-86],"neck":[8.2,-86],"head":[2.1,-154.8],"shR":[-57.4,-98.9],"elR":[-66.6,10.1],"haR":[-78.6,57.5],"shL":[75.9,-95.3],"elL":[91.4,12.2],"haL":[101.1,61],"hipR":[-32.2,34.6],"knR":[-31.1,165],"ftR":[12.1,264.7],"hipL":[25.5,43.5],"knL":[-15.8,171.6],"ftL":[-15.7,321.5]},{"rootY":-5.3,"hips":[0,0],"chest":[7.8,-86.1],"neck":[7.8,-86.1],"head":[0.8,-154.8],"shR":[-58.5,-97.9],"elR":[-73.1,11.5],"haR":[-86.2,57.8],"shL":[76.1,-96.8],"elL":[88.9,10.7],"haL":[101.2,59.5],"hipR":[-33.3,34.2],"knR":[-40.1,164],"ftR":[-11.2,263.4],"hipL":[25.4,43.8],"knL":[-14.9,172.3],"ftL":[-17.5,321.8]},{"rootY":-5.4,"hips":[0,0],"chest":[7.2,-86.2],"neck":[7.2,-86.2],"head":[-0.7,-154.9],"shR":[-59.5,-97.1],"elR":[-81.1,11.3],"haR":[-95.7,56],"shL":[76.3,-97.9],"elL":[90.3,8.6],"haL":[105.5,56.7],"hipR":[-34.4,34],"knR":[-48.7,162.9],"ftR":[-36.3,262.3],"hipL":[25.5,44],"knL":[-15.9,172.3],"ftL":[-19.3,321.7]},{"rootY":-5.2,"hips":[0,0],"chest":[6.2,-86.3],"neck":[6.2,-86.3],"head":[-2.5,-154.9],"shR":[-61,-96.1],"elR":[-92.1,10.1],"haR":[-108.8,52.6],"shL":[75.9,-99.2],"elL":[95.5,5.3],"haL":[114.2,51.6],"hipR":[-35.3,33.6],"knR":[-57.5,162],"ftR":[-62,261.9],"hipL":[25.7,44.2],"knL":[-15.1,172.6],"ftL":[-21.8,321.4]},{"rootY":-4.7,"hips":[0,0],"chest":[4.9,-86.4],"neck":[4.9,-86.4],"head":[-4.7,-154.7],"shR":[-62.5,-94.8],"elR":[-105.5,7.7],"haR":[-126.4,47.2],"shL":[74.8,-100.7],"elL":[103.6,-0.1],"haL":[126.5,43.1],"hipR":[-35.8,33.7],"knR":[-67.3,161.1],"ftR":[-87.4,261.5],"hipL":[26,44.2],"knL":[-15.4,172.4],"ftL":[-24.8,320.8]},{"rootY":-3.9,"hips":[0,0],"chest":[3.6,-86.5],"neck":[3.6,-86.5],"head":[-6.9,-154.7],"shR":[-64,-93.4],"elR":[-120.6,2.8],"haR":[-146.7,38.5],"shL":[73.5,-102.3],"elL":[113.8,-8.4],"haL":[141.8,29.7],"hipR":[-36,34.2],"knR":[-74.4,161.3],"ftR":[-111.1,262.2],"hipL":[26.8,43.8],"knL":[-15.5,171.8],"ftL":[-27.5,320]},{"rootY":-2.8,"hips":[0,0],"chest":[2.6,-86.5],"neck":[2.6,-86.5],"head":[-8.5,-154.7],"shR":[-65,-91.7],"elR":[-134.3,-3.7],"haR":[-167.6,27.3],"shL":[72.4,-104.1],"elL":[125.7,-20.5],"haL":[159.2,11.2],"hipR":[-36.1,34.8],"knR":[-78.4,162.2],"ftR":[-132.5,264],"hipL":[27.7,43.4],"knL":[-14.1,171.5],"ftL":[-30.5,319]},{"rootY":-1.8,"hips":[0,0],"chest":[1.7,-86.5],"neck":[1.7,-86.5],"head":[-10.3,-154.7],"shR":[-65.9,-90.1],"elR":[-147.8,-12.3],"haR":[-188.4,12.9],"shL":[71.1,-105.8],"elL":[137.9,-35.7],"haL":[176.7,-11.9],"hipR":[-36.2,35.5],"knR":[-78.8,164],"ftR":[-149.9,267.4],"hipL":[28.7,42.9],"knL":[-12.1,171.2],"ftL":[-33,318.3]},{"rootY":-1,"hips":[0,0],"chest":[0.9,-86.4],"neck":[0.9,-86.4],"head":[-12.2,-154.6],"shR":[-66.4,-88.1],"elR":[-160.6,-23.7],"haR":[-207.1,-4.7],"shL":[69.9,-107.7],"elL":[149.1,-54.9],"haL":[192.2,-40.3],"hipR":[-36.4,35.7],"knR":[-77.4,165.2],"ftR":[-162.1,272.7],"hipL":[29.2,42.7],"knL":[-11.1,171],"ftL":[-35.9,317.5]},{"rootY":-0.4,"hips":[0,0],"chest":[0.4,-86.4],"neck":[0.4,-86.4],"head":[-13.5,-154.4],"shR":[-66.6,-86],"elR":[-171.2,-37.9],"haR":[-220.9,-25.2],"shL":[68.7,-109.6],"elL":[158,-77],"haL":[204.3,-72.2],"hipR":[-36.2,36.1],"knR":[-73.7,165.7],"ftR":[-166.8,279.4],"hipL":[30,42.4],"knL":[-9.7,170.5],"ftL":[-38.9,316.9]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-86.3],"neck":[-0.4,-86.3],"head":[-15,-154.3],"shR":[-66.9,-84],"elR":[-178.1,-53.6],"haR":[-228.1,-47.5],"shL":[67.1,-111.4],"elL":[164.1,-100.3],"haL":[211.4,-105.9],"hipR":[-35.8,36.6],"knR":[-65.8,165.3],"ftR":[-162.5,286.3],"hipL":[30.8,41.9],"knL":[-7.9,170.1],"ftL":[-41.7,316.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-86.1],"neck":[-1.1,-86.1],"head":[-16.3,-154.3],"shR":[-66.9,-82.6],"elR":[-180.3,-71.1],"haR":[-227.8,-70.7],"shL":[65.5,-112.7],"elL":[165.5,-124.1],"haL":[212.2,-139.6],"hipR":[-35.2,36.7],"knR":[-55.3,162.7],"ftR":[-150.4,292.2],"hipL":[31.1,41.7],"knL":[-6.6,170],"ftL":[-44.9,316.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-1.5,-86],"neck":[-1.5,-86],"head":[-17.2,-154.1],"shR":[-66.4,-80.9],"elR":[-177.2,-88.5],"haR":[-219.6,-92.8],"shL":[64.2,-113.9],"elL":[163,-147],"haL":[206.9,-171.4],"hipR":[-34.1,36.9],"knR":[-39.1,159.8],"ftR":[-130.4,296.2],"hipL":[31.3,41.4],"knL":[-3.5,170.1],"ftL":[-47.5,316]},{"rootY":-0.3,"hips":[0,0],"chest":[-1.3,-86],"neck":[-1.3,-86],"head":[-17.1,-154.1],"shR":[-65,-79.8],"elR":[-168.7,-100.1],"haR":[-204.7,-111.3],"shL":[63.3,-114.9],"elL":[157.6,-167.3],"haL":[196.3,-199.6],"hipR":[-32.4,37.3],"knR":[-24.9,153.2],"ftR":[-104.7,297.2],"hipL":[31.6,41],"knL":[-1.4,169.9],"ftL":[-50.1,315.6]},{"rootY":-0.2,"hips":[0,0],"chest":[-0.3,-86],"neck":[-0.3,-86],"head":[-16.4,-154.1],"shR":[-62.9,-79.1],"elR":[-156.3,-110.4],"haR":[-184.8,-128.2],"shL":[63.4,-115.7],"elL":[150.5,-183.8],"haL":[182.2,-222.2],"hipR":[-30.1,38],"knR":[-10.3,145.2],"ftR":[-75.2,295.3],"hipL":[32.1,40.2],"knL":[0.3,169.6],"ftL":[-52.1,315.2]},{"rootY":0.2,"hips":[0,0],"chest":[0.7,-86],"neck":[0.7,-86],"head":[-15.9,-153.9],"shR":[-60.4,-78.6],"elR":[-141.7,-118.5],"haR":[-161.6,-142.5],"shL":[63.4,-116.3],"elL":[141.5,-196.3],"haL":[165.3,-239],"hipR":[-27.7,38.6],"knR":[5.3,135.8],"ftR":[-41.5,290.4],"hipL":[32.4,39.4],"knL":[1.6,169],"ftL":[-55.8,314.1]},{"rootY":1,"hips":[0,0],"chest":[1.5,-86.1],"neck":[1.5,-86.1],"head":[-15,-154],"shR":[-58.1,-78.5],"elR":[-124.7,-125.7],"haR":[-135.8,-155.2],"shL":[63,-116.5],"elL":[131.4,-204.3],"haL":[146.8,-249.7],"hipR":[-25.1,38.9],"knR":[20.3,126.9],"ftR":[-7.5,284.2],"hipL":[32.6,38.8],"knL":[1.6,168.6],"ftL":[-61.3,312.4]},{"rootY":2.3,"hips":[0,0],"chest":[1.3,-86.2],"neck":[1.3,-86.2],"head":[-14.8,-154.1],"shR":[-56.6,-78.4],"elR":[-106.1,-131.1],"haR":[-109.9,-165.9],"shL":[61.4,-117],"elL":[118.5,-208.7],"haL":[126.3,-255.2],"hipR":[-23.1,39],"knR":[32.9,119.7],"ftR":[23,278.4],"hipL":[32.2,38.5],"knL":[0.9,168.4],"ftL":[-68.3,310.7]},{"rootY":3.3,"hips":[0,0],"chest":[1,-86.3],"neck":[1,-86.3],"head":[-14.9,-154.3],"shR":[-55.1,-78.1],"elR":[-90,-137.1],"haR":[-86.2,-174.9],"shL":[59.5,-117.6],"elL":[104.5,-211.1],"haL":[106,-257.2],"hipR":[-21,39.2],"knR":[43.7,115],"ftR":[49.8,274.3],"hipL":[31.5,38.3],"knL":[0.3,168.2],"ftL":[-74.9,308.4]},{"rootY":5.2,"hips":[0,0],"chest":[1,-86.4],"neck":[1,-86.4],"head":[-14.3,-154.4],"shR":[-53.2,-77.7],"elR":[-75,-142.2],"haR":[-65,-182.1],"shL":[57.7,-118.2],"elL":[93.5,-212.1],"haL":[88.4,-256.3],"hipR":[-18.3,39.4],"knR":[51.1,112.2],"ftR":[72.9,272.4],"hipL":[30.5,37.9],"knL":[1.4,168.1],"ftL":[-80.1,304.7]},{"rootY":6.8,"hips":[0,0],"chest":[0.9,-86.5],"neck":[0.9,-86.5],"head":[-14,-154.6],"shR":[-50.8,-76.6],"elR":[-61.9,-145.3],"haR":[-46.4,-186.9],"shL":[55.2,-119.5],"elL":[84.2,-213.1],"haL":[72.5,-254.3],"hipR":[-14.7,40.2],"knR":[59.1,112.9],"ftR":[89.9,273.8],"hipL":[29.6,36.8],"knL":[4.7,167.6],"ftL":[-84.2,299.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.5],"neck":[-0.4,-86.5],"head":[-15.6,-154.5],"shR":[-48.9,-75.6],"elR":[-50.6,-147.9],"haR":[-31.1,-190.8],"shL":[50.8,-120.6],"elL":[75.4,-214.3],"haL":[59.2,-252.2],"hipR":[-10.8,40.2],"knR":[66.7,115.4],"ftR":[99,276.9],"hipL":[28,36.4],"knL":[7.4,167.6],"ftL":[-89.5,293.4]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-18.5,-154.2],"shR":[-47.4,-74.9],"elR":[-42.4,-150.9],"haR":[-19.6,-194.6],"shL":[44.9,-121.3],"elL":[67.2,-215.7],"haL":[48.1,-250.6],"hipR":[-7.3,40.4],"knR":[73.3,120.9],"ftR":[100.7,281.9],"hipL":[26.7,35.8],"knL":[10.5,167.9],"ftL":[-95.3,288.1]},{"rootY":10.5,"hips":[0,0],"chest":[-6.1,-86.2],"neck":[-6.1,-86.2],"head":[-23.1,-153.5],"shR":[-46.9,-74.6],"elR":[-36.1,-154],"haR":[-12,-198.5],"shL":[37,-121.4],"elL":[57.7,-217.2],"haL":[36.3,-249],"hipR":[-4.3,40.2],"knR":[80.1,127.7],"ftR":[95.9,288.7],"hipL":[24.7,35.8],"knL":[11.5,168.7],"ftL":[-102.2,282.9]},{"rootY":11.1,"hips":[0,0],"chest":[-10,-85.7],"neck":[-10,-85.7],"head":[-28.3,-152.7],"shR":[-47.3,-74.3],"elR":[-32.3,-156.8],"haR":[-8.1,-201.9],"shL":[29.2,-121],"elL":[49.2,-218.9],"haL":[26.9,-247.2],"hipR":[-1.6,40.5],"knR":[83.9,134.2],"ftR":[86.9,295.7],"hipL":[22.6,35.4],"knL":[15.6,169.2],"ftL":[-107,276.1]},{"rootY":11.9,"hips":[0,0],"chest":[-13.6,-85.1],"neck":[-13.6,-85.1],"head":[-32.7,-151.8],"shR":[-47.3,-73.7],"elR":[-29.6,-159.3],"haR":[-6.6,-204.9],"shL":[21.8,-120.5],"elL":[40.5,-220.3],"haL":[18.9,-246.6],"hipR":[1.3,40],"knR":[85.9,138.2],"ftR":[76.7,299.1],"hipL":[20.7,35.6],"knL":[23.8,170.1],"ftL":[-106.7,269.4]},{"rootY":13,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35.6,-151.3],"shR":[-44.5,-74.4],"elR":[-26.1,-163.7],"haR":[-3.9,-209.1],"shL":[15.2,-119.6],"elL":[32.9,-220.9],"haL":[13.6,-247.5],"hipR":[3.9,39.5],"knR":[87.2,139.8],"ftR":[71.3,299.2],"hipL":[19.4,35.7],"knL":[34.8,169.8],"ftL":[-98.5,264.3]},{"rootY":13.6,"hips":[0,0],"chest":[-16.3,-84.7],"neck":[-16.3,-84.7],"head":[-37.4,-150.8],"shR":[-42,-75.3],"elR":[-23,-167],"haR":[-1.8,-212.3],"shL":[10.8,-118.4],"elL":[28.8,-221.1],"haL":[10.9,-248.5],"hipR":[5.5,37.3],"knR":[86.7,140.7],"ftR":[68.1,298.7],"hipL":[18.2,37.7],"knL":[46.7,170.2],"ftL":[-84.6,262.4]},{"rootY":15.1,"hips":[0,0],"chest":[-16.5,-84.6],"neck":[-16.5,-84.6],"head":[-37.6,-150.8],"shR":[-39,-75.9],"elR":[-18.2,-168.8],"haR":[-0.1,-215.3],"shL":[7.6,-117.8],"elL":[26.7,-222.2],"haL":[9.6,-250.3],"hipR":[6,36.6],"knR":[87,141.2],"ftR":[65.4,297.8],"hipL":[18.4,38.1],"knL":[57.1,168.2],"ftL":[-70.9,259.6]},{"rootY":17.3,"hips":[0,0],"chest":[-16.8,-84.5],"neck":[-16.8,-84.5],"head":[-38.2,-150.6],"shR":[-37.7,-76.7],"elR":[-14.6,-169.2],"haR":[2.1,-215.9],"shL":[5.9,-116.9],"elL":[26.9,-222.6],"haL":[10.7,-251.4],"hipR":[5.9,36.5],"knR":[88.3,140.7],"ftR":[62.7,296.1],"hipL":[18.3,38.2],"knL":[66,165.4],"ftL":[-59.8,257.6]},{"rootY":19.1,"hips":[0,0],"chest":[-17,-84.5],"neck":[-17,-84.5],"head":[-38.3,-150.7],"shR":[-37.3,-78.2],"elR":[-12.5,-169.6],"haR":[5,-215.8],"shL":[5.2,-115.5],"elL":[29,-221.5],"haL":[14.2,-251.2],"hipR":[5.8,36.3],"knR":[89.5,140],"ftR":[60.7,294.5],"hipL":[18.2,38.5],"knL":[73.3,162.4],"ftL":[-51.3,257.8]},{"rootY":18.6,"hips":[0,0],"chest":[-16.7,-84.6],"neck":[-16.7,-84.6],"head":[-36.9,-151.2],"shR":[-36.9,-78.5],"elR":[-11.2,-167.7],"haR":[9.3,-212.4],"shL":[5.8,-115.3],"elL":[32.7,-221.1],"haL":[18.4,-251.5],"hipR":[6.2,36],"knR":[89.9,140.2],"ftR":[59.6,294.4],"hipL":[18.2,38.6],"knL":[77.8,160],"ftL":[-44.5,262.7]},{"rootY":16.3,"hips":[0,0],"chest":[-16.1,-84.7],"neck":[-16.1,-84.7],"head":[-35,-151.7],"shR":[-38.1,-78.3],"elR":[-11.4,-164.3],"haR":[13,-206.6],"shL":[8.4,-115.6],"elL":[39.3,-219.7],"haL":[25.2,-248.8],"hipR":[5.9,35.7],"knR":[89,140.8],"ftR":[58,295.4],"hipL":[18.7,38.7],"knL":[78.6,159],"ftL":[-38.2,271.8]},{"rootY":14.2,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35,-151.5],"shR":[-39.5,-79.6],"elR":[-9,-161.2],"haR":[18.6,-201.2],"shL":[11.4,-114.5],"elL":[46.5,-216.4],"haL":[31.9,-242.8],"hipR":[4.5,35.9],"knR":[87.6,140.9],"ftR":[57.8,295.9],"hipL":[19.6,38.7],"knL":[75.4,159],"ftL":[-33.1,282]},{"rootY":11.3,"hips":[0,0],"chest":[-13.9,-85],"neck":[-13.9,-85],"head":[-31.9,-152.2],"shR":[-42.4,-78.2],"elR":[-7.8,-152.1],"haR":[22.8,-189.4],"shL":[17.7,-116],"elL":[57.6,-214.6],"haL":[41.1,-238.6],"hipR":[1.9,36.2],"knR":[85.8,140.3],"ftR":[57.3,296.4],"hipL":[21.1,38.6],"knL":[68,160.3],"ftL":[-29.2,291.5]},{"rootY":8.7,"hips":[0,0],"chest":[-11.6,-85.3],"neck":[-11.6,-85.3],"head":[-26.8,-153.3],"shR":[-43.8,-80.5],"elR":[-3,-146.4],"haR":[29.4,-182.3],"shL":[24.2,-114.3],"elL":[69.1,-207.4],"haL":[49.5,-230.5],"hipR":[-1.5,36.8],"knR":[84,138],"ftR":[58.2,295.2],"hipL":[23.9,38.1],"knL":[57.9,161.5],"ftL":[-27.3,298.1]},{"rootY":8.7,"hips":[0,0],"chest":[-9.1,-85.6],"neck":[-9.1,-85.6],"head":[-22.7,-154],"shR":[-47,-80.4],"elR":[0.6,-133.8],"haR":[32.5,-169.3],"shL":[32.9,-114.9],"elL":[82.7,-200.1],"haL":[60.3,-224.1],"hipR":[-6,37],"knR":[76.3,135.3],"ftR":[58.2,292.9],"hipL":[26.4,38.2],"knL":[47.1,162.3],"ftL":[-27.2,303.1]},{"rootY":6.9,"hips":[0,0],"chest":[-6.1,-86.1],"neck":[-6.1,-86.1],"head":[-18.4,-154.7],"shR":[-48.6,-83.5],"elR":[7.7,-122.8],"haR":[39.3,-161.6],"shL":[41,-112.5],"elL":[95.6,-186.6],"haL":[72.4,-215],"hipR":[-11.1,36.3],"knR":[68.5,134.3],"ftR":[55.3,296],"hipL":[28.8,38.9],"knL":[39.8,164.1],"ftL":[-27.4,307.3]},{"rootY":6.6,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-15.2,-155.3],"shR":[-52.3,-83.4],"elR":[10.8,-108.9],"haR":[40.6,-150.3],"shL":[50.6,-112.8],"elL":[107,-172.1],"haL":[86.4,-206.3],"hipR":[-14.6,36.1],"knR":[58.9,134.3],"ftR":[51.5,298.2],"hipL":[30.2,39.2],"knL":[34.4,164.2],"ftL":[-28.8,309.4]},{"rootY":6.6,"hips":[0,0],"chest":[-0.8,-86.7],"neck":[-0.8,-86.7],"head":[-10.6,-156],"shR":[-52.3,-84.9],"elR":[18,-97.3],"haR":[46,-139.8],"shL":[56.1,-111.6],"elL":[111.2,-154.5],"haL":[96.2,-193.5],"hipR":[-17.6,36],"knR":[49.3,132.6],"ftR":[43.1,297.1],"hipL":[30.9,39.5],"knL":[35.3,163.1],"ftL":[-24.9,309.1]},{"rootY":6.2,"hips":[0,0],"chest":[0.9,-86.8],"neck":[0.9,-86.8],"head":[-6.8,-156.3],"shR":[-54.7,-84.6],"elR":[20.8,-87],"haR":[47.1,-127.1],"shL":[61.4,-111.8],"elL":[111.3,-138.7],"haL":[104.3,-180.7],"hipR":[-19.8,36.7],"knR":[38.7,131.6],"ftR":[26.3,295.3],"hipL":[31.5,39.3],"knL":[36.6,162.2],"ftL":[-21.5,308.9]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-86.8],"neck":[1.4,-86.8],"head":[-4.9,-156.6],"shR":[-54.9,-85.7],"elR":[21.3,-82.2],"haR":[46,-116.3],"shL":[63.2,-110.4],"elL":[106.8,-123.6],"haL":[110.1,-165.7],"hipR":[-22.2,37.2],"knR":[32.2,136.9],"ftR":[-2.9,293.9],"hipL":[31.9,39.3],"knL":[36.4,161.9],"ftL":[-20.3,309.4]},{"rootY":6.2,"hips":[0,0],"chest":[2,-86.8],"neck":[2,-86.8],"head":[-4.7,-156.6],"shR":[-55.1,-87.5],"elR":[16.6,-81.8],"haR":[38.5,-108.3],"shL":[64.8,-108.5],"elL":[105.9,-109.5],"haL":[116.5,-148.1],"hipR":[-24.3,37.5],"knR":[18.1,143.3],"ftR":[-38.9,291.5],"hipL":[32.4,39.4],"knL":[35.4,160.9],"ftL":[-19.9,308.1]},{"rootY":6.8,"hips":[0,0],"chest":[1.6,-86.8],"neck":[1.6,-86.8],"head":[-4.5,-156.6],"shR":[-55.2,-89.1],"elR":[7.3,-83.7],"haR":[24.2,-100.8],"shL":[64.6,-106.9],"elL":[108,-98.4],"haL":[124.5,-131.3],"hipR":[-26,37.9],"knR":[6.7,149.5],"ftR":[-65.7,289.5],"hipL":[32.9,39.3],"knL":[34.5,160.2],"ftL":[-19.7,307.5]},{"rootY":7.2,"hips":[0,0],"chest":[1.3,-86.8],"neck":[1.3,-86.8],"head":[-4,-156.7],"shR":[-56.5,-89.7],"elR":[-9.2,-88.4],"haR":[1.7,-93.4],"shL":[65.4,-106.3],"elL":[112.9,-91.5],"haL":[134.9,-117.3],"hipR":[-26.5,38.9],"knR":[-8.4,156.7],"ftR":[-97.1,288.5],"hipL":[34.3,38.4],"knL":[34.7,159.6],"ftL":[-19.4,306.9]},{"rootY":8.3,"hips":[0,0],"chest":[0.6,-86.7],"neck":[0.6,-86.7],"head":[-4.8,-156.6],"shR":[-58.4,-89.6],"elR":[-33.7,-90.3],"haR":[-28.5,-86],"shL":[65.5,-106.3],"elL":[120,-87],"haL":[146.6,-105.3],"hipR":[-26.8,39.7],"knR":[-23.8,164.6],"ftR":[-128.5,286.3],"hipL":[34.8,37.9],"knL":[34.1,158.7],"ftL":[-20.1,305.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.7],"neck":[-0.4,-86.7],"head":[-5.6,-156.6],"shR":[-60,-89.3],"elR":[-58.4,-87.9],"haR":[-60,-78],"shL":[65.1,-106.4],"elL":[127.7,-83.5],"haL":[157.7,-96.5],"hipR":[-27.6,39.4],"knR":[-129.3,128.2],"ftR":[-154.9,283.2],"hipL":[34.2,38.4],"knL":[33.6,158.4],"ftL":[-20.8,304.8]},{"rootY":9.7,"hips":[0,0],"chest":[-0.2,-86.5],"neck":[-0.2,-86.5],"head":[-5.8,-156.3],"shR":[-60.9,-89.7],"elR":[-81.7,-85],"haR":[-92.5,-73.5],"shL":[66.1,-105.6],"elL":[138.2,-78.9],"haL":[170.4,-87.6],"hipR":[-28.7,39.4],"knR":[-134.6,124.5],"ftR":[-173.1,280.6],"hipL":[33.8,38.8],"knL":[32.8,158.1],"ftL":[-21.1,304.1]},{"rootY":10.3,"hips":[0,0],"chest":[0.6,-86.3],"neck":[0.6,-86.3],"head":[-5.5,-156.1],"shR":[-60.6,-89.7],"elR":[-102.3,-82.4],"haR":[-122.9,-70.3],"shL":[67.4,-105.2],"elL":[147.7,-76],"haL":[183.4,-80.5],"hipR":[-30,39.6],"knR":[-58.5,170.8],"ftR":[-180.6,280],"hipL":[33.5,38.9],"knL":[31.9,157.6],"ftL":[-21,303.3]},{"rootY":10.8,"hips":[0,0],"chest":[1.7,-86.1],"neck":[1.7,-86.1],"head":[-4.6,-155.7],"shR":[-60.4,-89.5],"elR":[-121.3,-81.6],"haR":[-150.8,-69],"shL":[69.2,-104.7],"elL":[157.9,-72.1],"haL":[195.9,-73.8],"hipR":[-31.3,39.4],"knR":[-63.5,170.9],"ftR":[-179.2,280.2],"hipL":[33.2,39.3],"knL":[31.6,157.4],"ftL":[-20.6,302.5]},{"rootY":11,"hips":[0,0],"chest":[3,-85.6],"neck":[3,-85.6],"head":[-3.3,-155.2],"shR":[-59.9,-89.8],"elR":[-136.9,-82.8],"haR":[-173.6,-70.7],"shL":[71.3,-103.4],"elL":[166.5,-69.5],"haL":[207.3,-68.9],"hipR":[-32.2,39.3],"knR":[-63.1,171.5],"ftR":[-172,279.5],"hipL":[33,39.4],"knL":[31.6,157.6],"ftL":[-19.8,302.2]},{"rootY":11.3,"hips":[0,0],"chest":[4.2,-85],"neck":[4.2,-85],"head":[-1.8,-154.5],"shR":[-59.6,-90.7],"elR":[-148.9,-85.1],"haR":[-191.4,-74.8],"shL":[73.5,-101.2],"elL":[173.8,-67.7],"haL":[217.4,-66.2],"hipR":[-32.3,39.6],"knR":[-60.3,171.1],"ftR":[-158.4,277.5],"hipL":[33.5,39],"knL":[31.1,157.3],"ftL":[-18.7,301.7]},{"rootY":11.9,"hips":[0,0],"chest":[5.3,-84.3],"neck":[5.3,-84.3],"head":[0.3,-153.7],"shR":[-59.2,-91.4],"elR":[-158.2,-89.3],"haR":[-204.8,-81.2],"shL":[75.4,-98.6],"elL":[180,-66.9],"haL":[225.6,-65.3],"hipR":[-32.3,39.8],"knR":[-56.4,170],"ftR":[-139.1,274.2],"hipL":[34.1,38.6],"knL":[29.8,156.6],"ftL":[-17.7,301.1]},{"rootY":12.3,"hips":[0,0],"chest":[6.9,-83.2],"neck":[6.9,-83.2],"head":[2.9,-152.6],"shR":[-58.3,-91.9],"elR":[-163.9,-95.3],"haR":[-213,-89.6],"shL":[77.7,-95.7],"elL":[184.6,-66.5],"haL":[231.6,-65.5],"hipR":[-31.9,39.9],"knR":[-49.3,168.5],"ftR":[-114.7,270.1],"hipL":[34.8,38.1],"knL":[28.6,156.2],"ftL":[-15.7,300.9]},{"rootY":12.6,"hips":[0,0],"chest":[7.6,-82.1],"neck":[7.6,-82.1],"head":[4.5,-151.6],"shR":[-57.9,-92.9],"elR":[-167.3,-102.3],"haR":[-217.8,-99.3],"shL":[79,-92.3],"elL":[187.6,-66],"haL":[235.4,-65.6],"hipR":[-32,39.2],"knR":[-42.2,166.1],"ftR":[-86.9,264.9],"hipL":[34.7,38.4],"knL":[26.4,156.3],"ftL":[-13.3,301]},{"rootY":13,"hips":[0,0],"chest":[8.7,-80.9],"neck":[8.7,-80.9],"head":[7,-150.4],"shR":[-57.1,-93.4],"elR":[-168.3,-109.8],"haR":[-219.3,-109.5],"shL":[80.4,-89],"elL":[189.7,-65.2],"haL":[238.1,-65.6],"hipR":[-31.4,38.8],"knR":[-35.1,164.4],"ftR":[-55.8,258.8],"hipL":[34.8,38.5],"knL":[23.9,156.4],"ftL":[-10.2,301.4]},{"rootY":13.4,"hips":[0,0],"chest":[9.6,-79.7],"neck":[9.6,-79.7],"head":[9.1,-149.2],"shR":[-56.4,-93.8],"elR":[-167.6,-117.2],"haR":[-218.8,-120],"shL":[81.3,-85.8],"elL":[191.1,-64.6],"haL":[239.8,-66],"hipR":[-30.1,38.7],"knR":[-26.3,163],"ftR":[-25.4,253.4],"hipL":[35.1,38.4],"knL":[20.7,155.7],"ftL":[-8.1,300.3]},{"rootY":15,"hips":[0,0],"chest":[9.1,-79],"neck":[9.1,-79],"head":[9.5,-148.6],"shR":[-56.7,-95.4],"elR":[-167.1,-125.8],"haR":[-217.9,-131.7],"shL":[80.6,-82.5],"elL":[190.9,-63.9],"haL":[239.3,-66],"hipR":[-30.5,37.6],"knR":[-17.8,159.6],"ftR":[2.3,247.1],"hipL":[34,39.3],"knL":[16.5,155.1],"ftL":[-7.2,299.4]},{"rootY":15.9,"hips":[0,0],"chest":[8.8,-78.4],"neck":[8.8,-78.4],"head":[10.2,-148.1],"shR":[-56.6,-96.7],"elR":[-165.6,-132.9],"haR":[-215.9,-141.8],"shL":[79.9,-79.9],"elL":[190.5,-63.1],"haL":[238.6,-65.8],"hipR":[-29.6,37.2],"knR":[-8.5,157.2],"ftR":[27.5,242.3],"hipL":[33.7,39.6],"knL":[13.6,154.8],"ftL":[-6,298.8]},{"rootY":16.5,"hips":[0,0],"chest":[8.6,-77.9],"neck":[8.6,-77.9],"head":[10.8,-147.6],"shR":[-56.3,-98],"elR":[-163.8,-139.1],"haR":[-213.3,-151],"shL":[79,-77.5],"elL":[189.7,-61.8],"haL":[237.3,-64.9],"hipR":[-28.6,37.2],"knR":[-1.1,156.7],"ftR":[49.3,240.6],"hipL":[33.5,39.6],"knL":[12.1,154.8],"ftL":[-4.6,298.1]},{"rootY":16.8,"hips":[0,0],"chest":[8.7,-77.5],"neck":[8.7,-77.5],"head":[11.5,-147.3],"shR":[-55.7,-98.9],"elR":[-161.6,-143.8],"haR":[-210.3,-158.4],"shL":[78.2,-75.5],"elL":[188.7,-59.8],"haL":[235.6,-63],"hipR":[-26.8,37.6],"knR":[6.2,157.5],"ftR":[67.7,240.9],"hipL":[33.7,39.1],"knL":[11.6,154.8],"ftL":[-3.6,297.9]},{"rootY":17.3,"hips":[0,0],"chest":[6.5,-78.2],"neck":[6.5,-78.2],"head":[10.1,-147.9],"shR":[-57.4,-100.7],"elR":[-162.3,-148.4],"haR":[-210.2,-164.9],"shL":[75.1,-74.5],"elL":[184.9,-58.3],"haL":[231,-61.4],"hipR":[-26.8,36.9],"knR":[8.5,156.9],"ftR":[79.9,242.8],"hipL":[33.1,39.7],"knL":[8.7,155.3],"ftL":[-4.3,297.3]},{"rootY":18.1,"hips":[0,0],"chest":[4.8,-78.4],"neck":[4.8,-78.4],"head":[9.5,-148.2],"shR":[-58.1,-102.2],"elR":[-162.4,-151.2],"haR":[-209.7,-169.3],"shL":[72.2,-73.5],"elL":[181.2,-56.5],"haL":[226.3,-58.9],"hipR":[-26.2,37.2],"knR":[11.9,158.8],"ftR":[89.1,247.4],"hipL":[33,39.5],"knL":[6.4,154.7],"ftL":[-4.2,296.3]},{"rootY":18.6,"hips":[0,0],"chest":[4.7,-77.6],"neck":[4.7,-77.6],"head":[9.2,-147.3],"shR":[-57.9,-102.4],"elR":[-162.1,-151.9],"haR":[-208.8,-170.7],"shL":[71.9,-71.2],"elL":[179.5,-52.4],"haL":[223.3,-54.1],"hipR":[-25.1,38],"knR":[15.4,161.7],"ftR":[95.5,252.6],"hipL":[33.3,38.9],"knL":[5.9,154.5],"ftL":[-4.1,296.2]},{"rootY":19.2,"hips":[0,0],"chest":[4.1,-76.8],"neck":[4.1,-76.8],"head":[8.9,-146.6],"shR":[-58,-101.8],"elR":[-162.6,-150.4],"haR":[-208.8,-169.8],"shL":[70.3,-70.5],"elL":[175.7,-49.3],"haL":[218.4,-50.2],"hipR":[-24.9,38.1],"knR":[15.2,163.8],"ftR":[98.7,257.5],"hipL":[32.8,39.1],"knL":[5.5,154.6],"ftL":[-4.9,295.7]},{"rootY":19.6,"hips":[0,0],"chest":[3.7,-76.4],"neck":[3.7,-76.4],"head":[8.5,-146.3],"shR":[-57.8,-102.2],"elR":[-163.5,-148.6],"haR":[-209.4,-168.5],"shL":[69.3,-69.5],"elL":[171.9,-45.5],"haL":[213.2,-45],"hipR":[-24.3,38.6],"knR":[15.9,165.1],"ftR":[101.4,259.5],"hipL":[32.8,38.8],"knL":[6.6,154.8],"ftL":[-5.3,295]},{"rootY":20.3,"hips":[0,0],"chest":[2.5,-76.7],"neck":[2.5,-76.7],"head":[7.4,-146.5],"shR":[-58.5,-103],"elR":[-165.1,-147.3],"haR":[-210.8,-167.4],"shL":[67.5,-69],"elL":[166.6,-41.9],"haL":[205.4,-40.3],"hipR":[-25,38.6],"knR":[14.9,164.9],"ftR":[101.1,259],"hipL":[32.4,39],"knL":[7,155],"ftL":[-6.4,294.3]},{"rootY":21.6,"hips":[0,0],"chest":[1.9,-76.7],"neck":[1.9,-76.7],"head":[6.8,-146.5],"shR":[-59.1,-102.7],"elR":[-166.2,-145.5],"haR":[-211.8,-165.9],"shL":[66.6,-69.1],"elL":[161.9,-39.4],"haL":[198.1,-36.5],"hipR":[-25.1,38.8],"knR":[15.6,164.5],"ftR":[99.8,258.1],"hipL":[32.7,38.8],"knL":[6.7,154.2],"ftL":[-7.6,292.7]},{"rootY":22,"hips":[0,0],"chest":[1.2,-76],"neck":[1.2,-76],"head":[5.9,-145.8],"shR":[-59.8,-101.5],"elR":[-167,-144.2],"haR":[-212,-165.5],"shL":[65.5,-69.1],"elL":[157.9,-38.8],"haL":[192,-35.7],"hipR":[-26,38.1],"knR":[15.9,162.2],"ftR":[98.5,255.5],"hipL":[32.5,39.4],"knL":[4,153.1],"ftL":[-9.8,291.1]},{"rootY":22.6,"hips":[0,0],"chest":[0.4,-75.1],"neck":[0.4,-75.1],"head":[4.6,-144.9],"shR":[-60.5,-100],"elR":[-167.1,-143.9],"haR":[-211.6,-166.5],"shL":[64,-68.8],"elL":[155.2,-40.6],"haL":[187.5,-38.4],"hipR":[-26.5,37],"knR":[15.8,159.4],"ftR":[98.2,249.5],"hipL":[32,40.1],"knL":[0.2,152.6],"ftL":[-12.1,290.4]},{"rootY":19.7,"hips":[0,0],"chest":[-0.4,-73.9],"neck":[-0.4,-73.9],"head":[4.2,-143.6],"shR":[-61,-98.9],"elR":[-166.8,-144.7],"haR":[-210.7,-168.8],"shL":[62.3,-67.3],"elL":[153.8,-43.3],"haL":[186.3,-42.3],"hipR":[-25.7,35.7],"knR":[17.7,154.8],"ftR":[101.7,237.7],"hipL":[31.3,40.7],"knL":[-2.8,154.1],"ftL":[-12.8,292.7]},{"rootY":15.2,"hips":[0,0],"chest":[-1.7,-73.3],"neck":[-1.7,-73.3],"head":[3.3,-142.8],"shR":[-62.2,-98.2],"elR":[-166.8,-146.9],"haR":[-209.6,-173],"shL":[60.7,-66.6],"elL":[154.2,-47],"haL":[186.7,-47.9],"hipR":[-25.2,33.5],"knR":[20.9,145.1],"ftR":[108.8,216.1],"hipL":[30,41.9],"knL":[-5.9,156.7],"ftL":[-13.5,296.5]},{"rootY":8.7,"hips":[0,0],"chest":[-2.6,-72.8],"neck":[-2.6,-72.8],"head":[2.6,-142.1],"shR":[-62.6,-98.1],"elR":[-165.4,-150.3],"haR":[-207.1,-178.3],"shL":[59,-65.3],"elL":[155.6,-50],"haL":[189.2,-52.2],"hipR":[-23.7,31.8],"knR":[24.4,133.8],"ftR":[118.7,186.4],"hipL":[29,42.6],"knL":[-8.1,160.5],"ftL":[-13,302.1]},{"rootY":1.9,"hips":[0,0],"chest":[-3.5,-72.9],"neck":[-3.5,-72.9],"head":[1.9,-142.1],"shR":[-63.1,-98.5],"elR":[-163.8,-154.6],"haR":[-204,-184.7],"shL":[57.4,-65],"elL":[156.6,-53],"haL":[191.8,-56.2],"hipR":[-23.2,29],"knR":[27.1,119.1],"ftR":[128.8,148.7],"hipL":[27.4,43.8],"knL":[-11,164.3],"ftL":[-10.9,307.8]},{"rootY":-6.7,"hips":[0,0],"chest":[-4.2,-72.8],"neck":[-4.2,-72.8],"head":[1.6,-141.9],"shR":[-62.9,-99.4],"elR":[-161.7,-158.8],"haR":[-200.3,-190.8],"shL":[55.7,-63.9],"elL":[157.5,-54.3],"haL":[194.3,-58],"hipR":[-23.5,25.2],"knR":[29,102.2],"ftR":[137.4,109],"hipL":[25.1,45.4],"knL":[-14.1,167.9],"ftL":[-7.4,314]},{"rootY":-17.3,"hips":[0,0],"chest":[-4,-71.8],"neck":[-4,-71.8],"head":[2.3,-140.8],"shR":[-61.7,-99.2],"elR":[-158.5,-161.6],"haR":[-195.6,-195.1],"shL":[54.9,-62.2],"elL":[159.2,-52.6],"haL":[198.3,-56.3],"hipR":[-22.2,23],"knR":[30.1,88.7],"ftR":[144.8,70.4],"hipL":[23.3,46.4],"knL":[-15.2,171.3],"ftL":[-5.7,319.9]},{"rootY":-27.4,"hips":[0,0],"chest":[-3.9,-71.2],"neck":[-3.9,-71.2],"head":[2.8,-140.2],"shR":[-60.8,-99.8],"elR":[-155.9,-164.3],"haR":[-191.8,-199],"shL":[54.4,-60.6],"elL":[160.5,-49.4],"haL":[201,-52.3],"hipR":[-22.1,19.2],"knR":[29.7,72.7],"ftR":[150.1,32.4],"hipL":[21.2,47.5],"knL":[-18.7,173.3],"ftL":[-4.1,324.5]},{"rootY":-37.7,"hips":[0,0],"chest":[-3.8,-70.5],"neck":[-3.8,-70.5],"head":[3.5,-139.4],"shR":[-60,-99.9],"elR":[-153.5,-165.9],"haR":[-188.3,-201.8],"shL":[54.1,-59.1],"elL":[161.3,-44.8],"haL":[203.2,-46.3],"hipR":[-22.4,15.3],"knR":[26.8,56.5],"ftR":[153.3,-0.8],"hipL":[18.6,48.5],"knL":[-22.7,174.7],"ftL":[-2.4,328.3]},{"rootY":-46.8,"hips":[0,0],"chest":[-4.2,-69.9],"neck":[-4.2,-69.9],"head":[3.7,-138.8],"shR":[-59,-100.8],"elR":[-151.3,-167.8],"haR":[-184.9,-204.8],"shL":[52.5,-57.1],"elL":[160.4,-38],"haL":[203.7,-37.4],"hipR":[-23.5,10.7],"knR":[24.2,38.5],"ftR":[154.7,-31.7],"hipL":[16,49.1],"knL":[-25.3,175.6],"ftL":[-0.8,331.9]},{"rootY":-54,"hips":[0,0],"chest":[-4.2,-69.5],"neck":[-4.2,-69.5],"head":[4.7,-138.3],"shR":[-57.5,-101.8],"elR":[-148.7,-169.8],"haR":[-181.6,-207.6],"shL":[51.2,-55.3],"elL":[158.7,-30.6],"haL":[203,-27.8],"hipR":[-23.7,8],"knR":[20.4,21.3],"ftR":[154.8,-57.4],"hipL":[13.9,49.4],"knL":[-25,177.2],"ftL":[3.1,335.2]},{"rootY":-59.1,"hips":[0,0],"chest":[-4,-69.5],"neck":[-4,-69.5],"head":[5.9,-138.2],"shR":[-56.5,-102.6],"elR":[-146.7,-171.1],"haR":[-178.9,-209.9],"shL":[50.7,-54.8],"elL":[157.4,-24.8],"haL":[202.2,-19.3],"hipR":[-23.7,4.3],"knR":[17.4,5.3],"ftR":[153.5,-79.3],"hipL":[12.5,49.2],"knL":[-19.9,179],"ftL":[7.9,338.3]},{"rootY":-60.4,"hips":[0,0],"chest":[-4.5,-70.6],"neck":[-4.5,-70.6],"head":[6.2,-139.2],"shR":[-55.6,-104.4],"elR":[-144.9,-173.8],"haR":[-176.5,-213.5],"shL":[49,-55.4],"elL":[154.7,-20.6],"haL":[199.6,-12.6],"hipR":[-26,-1.4],"knR":[14.7,-9.1],"ftR":[150.8,-97.7],"hipL":[9.9,48.1],"knL":[-16.1,179.4],"ftL":[10.8,339.9]},{"rootY":-60.7,"hips":[0,0],"chest":[-3.5,-71.1],"neck":[-3.5,-71.1],"head":[8,-139.5],"shR":[-53.8,-105.7],"elR":[-142,-176.4],"haR":[-172.8,-217],"shL":[49.4,-55.1],"elL":[153.4,-15.2],"haL":[198.5,-5.8],"hipR":[-24.8,-2.1],"knR":[14.5,-16.6],"ftR":[148.3,-110.5],"hipL":[10,48],"knL":[-11.8,180.8],"ftL":[12.1,342.1]},{"rootY":-59.5,"hips":[0,0],"chest":[-2.8,-71.4],"neck":[-2.8,-71.4],"head":[9.5,-139.6],"shR":[-52.8,-106.9],"elR":[-139.9,-178.7],"haR":[-169.8,-220],"shL":[50.1,-54.3],"elL":[153,-11.4],"haL":[198.1,-0.7],"hipR":[-24.3,-2.8],"knR":[16.1,-19.7],"ftR":[145.8,-119.5],"hipL":[10,47.8],"knL":[-9.4,181.4],"ftL":[11,343.3]},{"rootY":-57.6,"hips":[0,0],"chest":[-2,-71.2],"neck":[-2,-71.2],"head":[11.1,-139.1],"shR":[-52.1,-107.5],"elR":[-138.6,-180],"haR":[-167.8,-222],"shL":[51.1,-52.8],"elL":[153.4,-8.4],"haL":[198.2,3.1],"hipR":[-24.6,-3.3],"knR":[17.8,-17.9],"ftR":[144.4,-121.4],"hipL":[9.6,47.6],"knL":[-11,181.1],"ftL":[9.2,343]},{"rootY":-56.1,"hips":[0,0],"chest":[-1.1,-70.3],"neck":[-1.1,-70.3],"head":[12.5,-138],"shR":[-51.3,-107.6],"elR":[-137.3,-180],"haR":[-166.2,-222.3],"shL":[52.2,-50.3],"elL":[153.8,-4.7],"haL":[198.7,7.4],"hipR":[-23.9,-2.1],"knR":[19.8,-13.6],"ftR":[146.2,-116.4],"hipL":[10.4,47.9],"knL":[-13.8,180.7],"ftL":[8.5,342]},{"rootY":-54.7,"hips":[0,0],"chest":[-0.8,-69.8],"neck":[-0.8,-69.8],"head":[13.6,-137.1],"shR":[-51.6,-107.5],"elR":[-137.8,-179.6],"haR":[-166.9,-221.7],"shL":[52.8,-48.8],"elL":[154.4,-2.9],"haL":[199,9.7],"hipR":[-23.9,-0.7],"knR":[20,-7.6],"ftR":[149.6,-104],"hipL":[10.8,48.2],"knL":[-17,180],"ftL":[8,340.6]},{"rootY":-53.3,"hips":[0,0],"chest":[-1.3,-69.3],"neck":[-1.3,-69.3],"head":[12.9,-136.7],"shR":[-52.5,-107.2],"elR":[-139.6,-178.3],"haR":[-169.2,-220],"shL":[52.6,-47.5],"elL":[154.2,-1.7],"haL":[198.7,11.4],"hipR":[-25.4,-0.9],"knR":[19.3,-1.2],"ftR":[153.6,-86.7],"hipL":[9.9,48.3],"knL":[-20.6,179.2],"ftL":[7.2,339.2]},{"rootY":-53.3,"hips":[0,0],"chest":[-0.5,-68.8],"neck":[-0.5,-68.8],"head":[13,-136.3],"shR":[-52.4,-106.2],"elR":[-141,-175.9],"haR":[-171.6,-217],"shL":[53.9,-47.1],"elL":[155.5,-1.2],"haL":[199.4,12.3],"hipR":[-22.4,3.6],"knR":[19.7,8],"ftR":[158,-65],"hipL":[11.3,49.5],"knL":[-21.9,180],"ftL":[7.3,339.1]},{"rootY":-52.1,"hips":[0,0],"chest":[-0.3,-69.3],"neck":[-0.3,-69.3],"head":[12.2,-137.1],"shR":[-52.6,-106.5],"elR":[-143.5,-174.3],"haR":[-175.2,-214.4],"shL":[54.1,-47.5],"elL":[155.9,-2.1],"haL":[199.3,11.4],"hipR":[-22.6,3.9],"knR":[19.4,16.2],"ftR":[159.9,-44.4],"hipL":[11,49.7],"knL":[-24.4,179.4],"ftL":[6.4,338]},{"rootY":-52.3,"hips":[0,0],"chest":[0,-69.3],"neck":[0,-69.3],"head":[11.2,-137.7],"shR":[-52.8,-105.8],"elR":[-146.1,-171.3],"haR":[-179.2,-210.3],"shL":[55,-48.3],"elL":[156.6,-3],"haL":[199.7,10.4],"hipR":[-22.7,4.4],"knR":[19.4,25.6],"ftR":[160.6,-23.5],"hipL":[10.7,49.9],"knL":[-25.7,179.4],"ftL":[5.9,337.7]},{"rootY":-51,"hips":[0,0],"chest":[0,-69.7],"neck":[0,-69.7],"head":[9.7,-138.5],"shR":[-53.5,-105],"elR":[-148.9,-168],"haR":[-183.4,-205.9],"shL":[55.4,-50.1],"elL":[156.7,-4.4],"haL":[199.4,9.3],"hipR":[-23,5.3],"knR":[18.6,34.4],"ftR":[158.8,-5.2],"hipL":[10.4,50.1],"knL":[-28.2,178.7],"ftL":[3.5,337.1]},{"rootY":-50.4,"hips":[0,0],"chest":[-0.9,-70],"neck":[-0.9,-70],"head":[7.8,-139.2],"shR":[-55.1,-103.9],"elR":[-153.1,-163.7],"haR":[-189.2,-200],"shL":[55,-52.2],"elL":[154.9,-4.3],"haL":[197.2,10.2],"hipR":[-23.4,6.6],"knR":[17.8,43.5],"ftR":[155.7,13.5],"hipL":[10.2,50.4],"knL":[-32.1,177.6],"ftL":[0.6,335.4]},{"rootY":-47.9,"hips":[0,0],"chest":[-2.7,-71],"neck":[-2.7,-71],"head":[4.4,-140.4],"shR":[-58,-102.9],"elR":[-158.9,-158.5],"haR":[-196.7,-193.1],"shL":[53.6,-55.5],"elL":[151.3,-4.3],"haL":[192.9,11.8],"hipR":[-24.6,6.9],"knR":[14.9,51.7],"ftR":[149.4,31.1],"hipL":[10.2,50.4],"knL":[-36.2,175.9],"ftL":[-6.2,334.2]},{"rootY":-42.9,"hips":[0,0],"chest":[-5.1,-72.1],"neck":[-5.1,-72.1],"head":[0.3,-141.5],"shR":[-61.3,-102.1],"elR":[-164.6,-153.5],"haR":[-204.2,-186],"shL":[51.6,-58.7],"elL":[146.9,-3.3],"haL":[187.1,14.6],"hipR":[-24.9,9.7],"knR":[11.8,62],"ftR":[141.2,49.1],"hipL":[10.9,50.6],"knL":[-31,174.7],"ftL":[-18.8,332.4]},{"rootY":-34.4,"hips":[0,0],"chest":[-8.1,-73.4],"neck":[-8.1,-73.4],"head":[-4.2,-142.3],"shR":[-65.4,-101.2],"elR":[-170.9,-147.7],"haR":[-211.8,-178.2],"shL":[49.1,-62],"elL":[140.8,-1.8],"haL":[180,17.9],"hipR":[-25.7,11.6],"knR":[9,72.3],"ftR":[131.1,67.5],"hipL":[11.3,50.6],"knL":[-28.6,173.5],"ftL":[-31,329.4]},{"rootY":-24.3,"hips":[0,0],"chest":[-11,-74.3],"neck":[-11,-74.3],"head":[-9.1,-143.2],"shR":[-69.4,-99.7],"elR":[-176.7,-140.7],"haR":[-218.4,-169.4],"shL":[46.5,-65.3],"elL":[134,0.5],"haL":[172,22.2],"hipR":[-26.8,13.5],"knR":[8.3,82.4],"ftR":[119.2,88.7],"hipL":[11.2,50.8],"knL":[-31,172.6],"ftL":[-36.1,326.8]},{"rootY":-12.3,"hips":[0,0],"chest":[-12.3,-74.9],"neck":[-12.3,-74.9],"head":[-11.7,-143.7],"shR":[-71.4,-98.3],"elR":[-179.6,-133.7],"haR":[-221.7,-160.6],"shL":[45.2,-67.5],"elL":[128.1,3.6],"haL":[164.5,27.9],"hipR":[-26.8,15.3],"knR":[8.8,93],"ftR":[107.6,112.9],"hipL":[11.8,50.6],"knL":[-31,171],"ftL":[-36.5,323.2]},{"rootY":-3.5,"hips":[0,0],"chest":[-12.3,-74],"neck":[-12.3,-74],"head":[-12.6,-142.8],"shR":[-71.9,-96.3],"elR":[-180.5,-125.7],"haR":[-222.6,-150.5],"shL":[45.1,-67.3],"elL":[122.6,10.2],"haL":[157.5,37.6],"hipR":[-24.9,19.7],"knR":[6.9,110.7],"ftR":[97.5,144.4],"hipL":[15.2,49.5],"knL":[-23.6,165],"ftL":[-38.9,313.6]},{"rootY":4.2,"hips":[0,0],"chest":[-11.2,-74],"neck":[-11.2,-74],"head":[-11.6,-142.7],"shR":[-71.4,-95.8],"elR":[-179.1,-121.1],"haR":[-220.6,-144.1],"shL":[46.8,-67.5],"elL":[118.9,16],"haL":[151.9,46.9],"hipR":[-23.2,23.7],"knR":[4,127.1],"ftR":[89.2,177.4],"hipL":[19.2,47.9],"knL":[-16.2,160.9],"ftL":[-39.1,307.2]},{"rootY":6.3,"hips":[0,0],"chest":[-11.4,-74],"neck":[-11.4,-74],"head":[-11.8,-142.6],"shR":[-71.6,-95.7],"elR":[-176.6,-119.4],"haR":[-217.3,-141.7],"shL":[46.4,-67.6],"elL":[113.2,21.2],"haL":[144.3,55.6],"hipR":[-22.9,26.6],"knR":[2.3,139],"ftR":[81.2,211.5],"hipL":[20.9,46.8],"knL":[-10.6,159.6],"ftL":[-40.1,304.8]},{"rootY":9.4,"hips":[0,0],"chest":[-12.1,-75],"neck":[-12.1,-75],"head":[-12.7,-143.3],"shR":[-71.7,-97.5],"elR":[-174.1,-122.5],"haR":[-212.5,-145.6],"shL":[45.3,-67.8],"elL":[105.5,26.1],"haL":[135.1,63.7],"hipR":[-24.9,26.4],"knR":[-1.7,146.7],"ftR":[76,236.4],"hipL":[19.7,47.3],"knL":[-13.5,156.9],"ftL":[-41.4,302.1]},{"rootY":11.3,"hips":[0,0],"chest":[-11.5,-76.1],"neck":[-11.5,-76.1],"head":[-12.8,-144.2],"shR":[-70.9,-99.1],"elR":[-168.9,-128.6],"haR":[-205,-153.4],"shL":[45.8,-68.7],"elL":[99.9,29.2],"haL":[127.5,69.5],"hipR":[-25.1,27.8],"knR":[-6.3,155.3],"ftR":[73.5,256],"hipL":[19.2,47],"knL":[-16.8,154.8],"ftL":[-42.3,300.2]},{"rootY":10.4,"hips":[0,0],"chest":[-9.6,-77.3],"neck":[-9.6,-77.3],"head":[-11.7,-145.3],"shR":[-67.8,-101.3],"elR":[-162.4,-136.1],"haR":[-194.2,-163.6],"shL":[46.6,-69.2],"elL":[94.8,31.6],"haL":[120.4,74.1],"hipR":[-25.6,28.9],"knR":[-10,160.8],"ftR":[72.1,272.1],"hipL":[18.8,46.7],"knL":[-20.7,153.6],"ftL":[-42.8,300.6]},{"rootY":9.7,"hips":[0,0],"chest":[-7.5,-79.1],"neck":[-7.5,-79.1],"head":[-10.5,-147.1],"shR":[-64.8,-104.3],"elR":[-156.6,-145.9],"haR":[-183.2,-176.6],"shL":[47.8,-70.2],"elL":[90.3,32.7],"haL":[113.8,77],"hipR":[-26.1,30.3],"knR":[-11.8,164.4],"ftR":[70.9,282.7],"hipL":[18.8,46.2],"knL":[-24.8,152.9],"ftL":[-43.1,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-5.3,-80.4],"neck":[-5.3,-80.4],"head":[-8.6,-148.3],"shR":[-61.9,-106],"elR":[-150.1,-156.2],"haR":[-171.1,-190],"shL":[49.7,-71.6],"elL":[86,32.9],"haL":[107.5,78.5],"hipR":[-26.1,32.5],"knR":[-12.5,167.5],"ftR":[70.5,289.6],"hipL":[19.3,45],"knL":[-26.9,152.1],"ftL":[-43.2,301.9]},{"rootY":9.5,"hips":[0,0],"chest":[-3.1,-81.9],"neck":[-3.1,-81.9],"head":[-6.6,-149.9],"shR":[-58.9,-107.8],"elR":[-142.8,-166.7],"haR":[-158.2,-202.7],"shL":[51.2,-73.3],"elL":[82.8,32],"haL":[102.1,78.6],"hipR":[-26.2,33.7],"knR":[-14.9,169],"ftR":[68.7,293.9],"hipL":[19.1,44.2],"knL":[-27.3,151.7],"ftL":[-43.2,301.8]},{"rootY":9.5,"hips":[0,0],"chest":[-3,-82.3],"neck":[-3,-82.3],"head":[-6.2,-150.4],"shR":[-57.4,-108.5],"elR":[-136.6,-176.5],"haR":[-146.5,-214.3],"shL":[49.9,-74.3],"elL":[78.5,30.9],"haL":[94.5,78.6],"hipR":[-27.2,34.4],"knR":[-16.6,169.5],"ftR":[68.6,296.4],"hipL":[19.3,43.7],"knL":[-28.1,150],"ftL":[-44.7,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-2.2,-83.7],"neck":[-2.2,-83.7],"head":[-5.2,-151.9],"shR":[-56,-109.7],"elR":[-131.5,-185.4],"haR":[-135.4,-224.6],"shL":[50.2,-76.2],"elL":[77.2,28.4],"haL":[90.2,76.8],"hipR":[-27,34.9],"knR":[-16.4,170],"ftR":[69.5,297.8],"hipL":[18.7,43.3],"knL":[-28.7,149.7],"ftL":[-45.3,301.3]},{"rootY":10.8,"hips":[0,0],"chest":[-1.8,-84.3],"neck":[-1.8,-84.3],"head":[-4.4,-152.5],"shR":[-54.7,-110.3],"elR":[-128.4,-194],"haR":[-125.3,-233.5],"shL":[49.6,-77.1],"elL":[75.9,26.6],"haL":[86.5,75.3],"hipR":[-27,35.3],"knR":[-16.3,170.1],"ftR":[69.3,298.6],"hipL":[18.5,43],"knL":[-29.3,147.8],"ftL":[-46.9,300]},{"rootY":11.7,"hips":[0,0],"chest":[-1.6,-84.4],"neck":[-1.6,-84.4],"head":[-4,-152.8],"shR":[-53.4,-109.5],"elR":[-124.3,-198.7],"haR":[-115.6,-237.7],"shL":[48.5,-78.9],"elL":[76.3,23.7],"haL":[85.3,72.5],"hipR":[-27.1,35.2],"knR":[-15.1,170],"ftR":[68.8,300.7],"hipL":[19,43],"knL":[-28.4,146.6],"ftL":[-48.9,299.5]},{"rootY":12.4,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-4.6,-153.1],"shR":[-53.6,-109.2],"elR":[-122.8,-201.4],"haR":[-109.5,-239.1],"shL":[47.3,-79.4],"elL":[84.5,19.8],"haL":[87.6,69.4],"hipR":[-26.4,35.7],"knR":[-14.7,170.4],"ftR":[67.6,303.2],"hipL":[19.1,42.6],"knL":[-28.9,144.8],"ftL":[-51.6,298.6]},{"rootY":12.8,"hips":[0,0],"chest":[-3.6,-84.4],"neck":[-3.6,-84.4],"head":[-6.8,-153.1],"shR":[-54.6,-107.9],"elR":[-123.7,-199.8],"haR":[-107.4,-235.7],"shL":[45,-81],"elL":[90.3,15.9],"haL":[87.1,65],"hipR":[-26.9,35.4],"knR":[-17.6,170.1],"ftR":[64.4,303.9],"hipL":[18.3,42.8],"knL":[-30.3,142.8],"ftL":[-54,297.6]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-84.4],"neck":[-4.4,-84.4],"head":[-8.2,-153.1],"shR":[-53.7,-107],"elR":[-123.7,-195.1],"haR":[-106.3,-229.6],"shL":[41.7,-81.9],"elL":[93,13.9],"haL":[85.9,62.3],"hipR":[-27.8,34.3],"knR":[-19.7,169.1],"ftR":[61.4,304.9],"hipL":[17.2,43.6],"knL":[-31.2,140.8],"ftL":[-55.7,296]},{"rootY":12.7,"hips":[0,0],"chest":[-4.2,-84.6],"neck":[-4.2,-84.6],"head":[-8.5,-153.3],"shR":[-52.2,-106],"elR":[-122.7,-187.6],"haR":[-106.8,-222.4],"shL":[39.8,-83.4],"elL":[96.8,11.3],"haL":[86.7,58.9],"hipR":[-27.8,34],"knR":[-21.3,168.7],"ftR":[59.6,305.4],"hipL":[17.2,43.9],"knL":[-29.6,137.2],"ftL":[-56.3,292.3]},{"rootY":12,"hips":[0,0],"chest":[-4.1,-84.8],"neck":[-4.1,-84.8],"head":[-9.3,-153.6],"shR":[-52.1,-104.7],"elR":[-121.9,-176.4],"haR":[-109.6,-212.5],"shL":[39.7,-85.4],"elL":[101.6,7.6],"haL":[86.3,53],"hipR":[-27.9,34.5],"knR":[-22.1,168.9],"ftR":[58.5,305.9],"hipL":[17.9,43.6],"knL":[-27.9,133.9],"ftL":[-56.5,289.8]},{"rootY":11,"hips":[0,0],"chest":[-4.4,-84.6],"neck":[-4.4,-84.6],"head":[-9.7,-153.4],"shR":[-51.8,-103.5],"elR":[-119.5,-162.1],"haR":[-112.3,-200.5],"shL":[38.6,-86.5],"elL":[103.7,4.3],"haL":[85.4,48.3],"hipR":[-27.9,35.3],"knR":[-20.7,169.1],"ftR":[58,306.7],"hipL":[18.7,42.9],"knL":[-26.5,130.3],"ftL":[-57.7,287.4]},{"rootY":9.9,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-9.9,-153.4],"shR":[-51.9,-102.7],"elR":[-115.9,-144.6],"haR":[-115.1,-185.7],"shL":[37.5,-87.6],"elL":[104,-0.7],"haL":[82.5,42.3],"hipR":[-28.4,35.4],"knR":[-19.5,168.9],"ftR":[57.9,307.4],"hipL":[18.7,42.7],"knL":[-25.6,126.6],"ftL":[-61.3,283.7]},{"rootY":8.4,"hips":[0,0],"chest":[-4.6,-84.9],"neck":[-4.6,-84.9],"head":[-9.5,-153.8],"shR":[-51.5,-101.3],"elR":[-110.1,-124.6],"haR":[-117.8,-168],"shL":[37.8,-89.9],"elL":[104.4,-8.9],"haL":[79.4,32.9],"hipR":[-28,36.2],"knR":[-17.8,169.7],"ftR":[58.2,308.7],"hipL":[19.7,42.1],"knL":[-22.7,123.6],"ftL":[-63.4,279.9]},{"rootY":8,"hips":[0,0],"chest":[-3.6,-85.3],"neck":[-3.6,-85.3],"head":[-8.7,-154.2],"shR":[-50.6,-100.4],"elR":[-102.4,-105.1],"haR":[-119.6,-149.1],"shL":[38.7,-91.9],"elL":[103.2,-19.6],"haL":[74.7,21.1],"hipR":[-28.5,35.5],"knR":[-16.1,168.8],"ftR":[58.7,308.9],"hipL":[18.9,42.6],"knL":[-22.1,120.9],"ftL":[-62.9,277.5]},{"rootY":6.4,"hips":[0,0],"chest":[-2.6,-85.5],"neck":[-2.6,-85.5],"head":[-6.7,-154.5],"shR":[-48.7,-99],"elR":[-93.7,-86],"haR":[-119.8,-128.7],"shL":[38.9,-94.2],"elL":[98.8,-33.3],"haL":[67,5.9],"hipR":[-28.3,36.1],"knR":[-14.8,169.5],"ftR":[59.5,309.9],"hipL":[19.1,42.1],"knL":[-20.7,119.5],"ftL":[-60.7,276.6]},{"rootY":6,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-5,-154.4],"shR":[-48.3,-98.2],"elR":[-87,-69.5],"haR":[-119.7,-108.8],"shL":[40.3,-95.2],"elL":[93.2,-50.2],"haL":[58.4,-13.9],"hipR":[-28,37],"knR":[-13.7,170.2],"ftR":[60.5,310.2],"hipL":[20.3,41.3],"knL":[-17.9,117.2],"ftL":[-58.3,274.5]},{"rootY":6.1,"hips":[0,0],"chest":[-0.9,-85.4],"neck":[-0.9,-85.4],"head":[-2.9,-154.3],"shR":[-48.4,-97.9],"elR":[-81.5,-57.6],"haR":[-119.2,-90.8],"shL":[43.2,-95.7],"elL":[88.7,-69],"haL":[51.4,-37.6],"hipR":[-28,37.1],"knR":[-12.3,169.9],"ftR":[61.8,310],"hipL":[20.3,41.2],"knL":[-16.8,114.7],"ftL":[-55.9,272.7]},{"rootY":5.6,"hips":[0,0],"chest":[0.2,-85.4],"neck":[0.2,-85.4],"head":[-1.1,-154],"shR":[-46.7,-97],"elR":[-76.6,-48.8],"haR":[-116.3,-74.8],"shL":[44,-97],"elL":[81.8,-90.4],"haL":[42.7,-65.6],"hipR":[-27.9,37.3],"knR":[-12.1,170.2],"ftR":[62.6,309.9],"hipL":[20.9,41.1],"knL":[-14.5,113.3],"ftL":[-53.8,271.5]},{"rootY":5.3,"hips":[0,0],"chest":[1.3,-85.4],"neck":[1.3,-85.4],"head":[0.7,-153.5],"shR":[-47,-98],"elR":[-74.2,-43.7],"haR":[-113.8,-62.7],"shL":[47,-96.1],"elL":[76.8,-108.6],"haL":[36.8,-92.1],"hipR":[-27.3,37.6],"knR":[-10.7,170.4],"ftR":[63.4,310.5],"hipL":[21.4,40.9],"knL":[-12.2,111.9],"ftL":[-52,270.2]},{"rootY":5,"hips":[0,0],"chest":[1.6,-85.2],"neck":[1.6,-85.2],"head":[2.4,-152.1],"shR":[-47.8,-98.7],"elR":[-74.3,-40.3],"haR":[-112.6,-51.8],"shL":[49.2,-95.1],"elL":[71.4,-123.1],"haL":[31.3,-116.8],"hipR":[-27.3,37.4],"knR":[-9.9,170.2],"ftR":[63.8,310.6],"hipL":[21.3,41.1],"knL":[-10.5,111],"ftL":[-50.6,269.4]},{"rootY":4.8,"hips":[0,0],"chest":[1.7,-84.9],"neck":[1.7,-84.9],"head":[4.3,-150.2],"shR":[-47.4,-98.5],"elR":[-74.4,-36.7],"haR":[-108.9,-41.2],"shL":[49.3,-94.9],"elL":[66.4,-135.5],"haL":[27.4,-141.3],"hipR":[-27.1,37.3],"knR":[-9.9,170.1],"ftR":[64,310.5],"hipL":[21.1,41.2],"knL":[-9.4,110.5],"ftL":[-49.2,269.1]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-84.6],"neck":[1.4,-84.6],"head":[6.2,-148.1],"shR":[-47.2,-98],"elR":[-75.2,-34.8],"haR":[-106.1,-32.3],"shL":[48.8,-94.8],"elL":[60.3,-144.8],"haL":[23.5,-161.8],"hipR":[-27.1,37.1],"knR":[-9.6,169.7],"ftR":[64.2,310.3],"hipL":[20.8,41.4],"knL":[-8.8,109.5],"ftL":[-48.1,268.4]},{"rootY":5.5,"hips":[0,0],"chest":[1.5,-84.3],"neck":[1.5,-84.3],"head":[8.4,-145.9],"shR":[-46.4,-97.8],"elR":[-75.7,-32.6],"haR":[-102.7,-24.7],"shL":[48.6,-94.6],"elL":[53.4,-152.3],"haL":[19.9,-179.4],"hipR":[-26.5,37.2],"knR":[-9.9,169.8],"ftR":[64.3,310.3],"hipL":[20.8,41.3],"knL":[-8,109.1],"ftL":[-47.1,268]},{"rootY":5.4,"hips":[0,0],"chest":[1.5,-84.2],"neck":[1.5,-84.2],"head":[10.2,-144.3],"shR":[-45.6,-97.6],"elR":[-76.1,-30.6],"haR":[-99.8,-18.1],"shL":[48.2,-94.7],"elL":[46.3,-158.1],"haL":[16.8,-192.9],"hipR":[-26.1,37.1],"knR":[-10.7,170.1],"ftR":[64.3,310.3],"hipL":[20.8,41.4],"knL":[-6.9,109.2],"ftL":[-46.6,268]},{"rootY":5.8,"hips":[0,0],"chest":[1.3,-83.9],"neck":[1.3,-83.9],"head":[11.1,-143],"shR":[-45.6,-97.3],"elR":[-77.7,-28.1],"haR":[-98.8,-12.2],"shL":[47.9,-94.6],"elL":[39.2,-162.9],"haL":[14.1,-203.1],"hipR":[-26.3,36.8],"knR":[-10.4,169.7],"ftR":[64,310.4],"hipL":[20.8,41.8],"knL":[-6.2,109],"ftL":[-46.8,267.5]},{"rootY":6,"hips":[0,0],"chest":[1.2,-83.8],"neck":[1.2,-83.8],"head":[12.2,-141.8],"shR":[-45.1,-96.9],"elR":[-78,-25.6],"haR":[-97.6,-7.4],"shL":[47.3,-94.7],"elL":[32.9,-167.9],"haL":[11.4,-211.5],"hipR":[-26.2,36.5],"knR":[-11.4,169.6],"ftR":[63.7,310.2],"hipL":[20.9,42],"knL":[-6.1,108.9],"ftL":[-47.1,267.3]},{"rootY":6.4,"hips":[0,0],"chest":[1.2,-83.6],"neck":[1.2,-83.6],"head":[12.7,-141.1],"shR":[-44.5,-97],"elR":[-77.3,-24.1],"haR":[-96.2,-4.2],"shL":[47,-94.2],"elL":[28.5,-172.3],"haL":[9.5,-217.9],"hipR":[-26,36.3],"knR":[-12.6,169.5],"ftR":[63.2,310.1],"hipL":[20.8,42.2],"knL":[-6.3,108.6],"ftL":[-47.2,267]},{"rootY":6.1,"hips":[0,0],"chest":[1,-83],"neck":[1,-83],"head":[13.3,-140],"shR":[-44.7,-96.4],"elR":[-78.1,-22],"haR":[-96.1,-0.9],"shL":[46.8,-93.8],"elL":[25.4,-176.1],"haL":[7.9,-222.6],"hipR":[-24.9,37.1],"knR":[-12,170.1],"ftR":[63.3,310.6],"hipL":[21.2,41.6],"knL":[-5.9,109],"ftL":[-47.3,267.4]},{"rootY":6.3,"hips":[0,0],"chest":[0.6,-82.8],"neck":[0.6,-82.8],"head":[13.4,-139.8],"shR":[-44.7,-96.3],"elR":[-78.1,-21.5],"haR":[-95.7,0.6],"shL":[46.1,-93.5],"elL":[24,-179.1],"haL":[6.7,-225.9],"hipR":[-25.1,36.8],"knR":[-12.8,169.8],"ftR":[62.9,310.5],"hipL":[20.9,41.8],"knL":[-6,108.9],"ftL":[-47.2,267.4]},{"rootY":6.2,"hips":[0,0],"chest":[0.5,-82.8],"neck":[0.5,-82.8],"head":[13.4,-139.9],"shR":[-45,-96.4],"elR":[-78.6,-21],"haR":[-95.7,1.6],"shL":[46.4,-93.3],"elL":[23.4,-180.8],"haL":[5.9,-227.6],"hipR":[-24.9,36.8],"knR":[-12.4,169.8],"ftR":[63,310.5],"hipL":[20.9,41.8],"knL":[-6,109.1],"ftL":[-47.1,267.6]},{"rootY":6.4,"hips":[0,0],"chest":[0.1,-82.8],"neck":[0.1,-82.8],"head":[12.8,-140.5],"shR":[-45.3,-96.6],"elR":[-79.4,-21.5],"haR":[-96.2,1.3],"shL":[46.2,-93.1],"elL":[22.5,-181.8],"haL":[4.7,-228.6],"hipR":[-25.4,36.3],"knR":[-13.3,169.5],"ftR":[62.5,310.4],"hipL":[20.8,42.2],"knL":[-6,109.1],"ftL":[-47.2,267.5]},{"rootY":6.5,"hips":[0,0],"chest":[-0.1,-82.5],"neck":[-0.1,-82.5],"head":[11.9,-140.6],"shR":[-45.9,-96.3],"elR":[-80.5,-22.5],"haR":[-97.5,-0.3],"shL":[46.3,-92.8],"elL":[22.2,-181.4],"haL":[4,-228],"hipR":[-25.3,36.4],"knR":[-12.9,169.4],"ftR":[62.3,310.8],"hipL":[20.9,42.1],"knL":[-6.9,109],"ftL":[-47.3,267.7]},{"rootY":6.8,"hips":[0,0],"chest":[-0.5,-82.5],"neck":[-0.5,-82.5],"head":[10.9,-141.2],"shR":[-46.3,-95.6],"elR":[-82.4,-23.8],"haR":[-99.8,-2.7],"shL":[45.8,-93.7],"elL":[22.5,-182.4],"haL":[3.4,-228.7],"hipR":[-25.5,36],"knR":[-13.6,169],"ftR":[62,310.2],"hipL":[20.8,42.4],"knL":[-7.5,109.1],"ftL":[-47.5,267.9]},{"rootY":7,"hips":[0,0],"chest":[-1.1,-82.4],"neck":[-1.1,-82.4],"head":[9.6,-141.6],"shR":[-47.4,-95.5],"elR":[-84.9,-26.4],"haR":[-102.7,-6.7],"shL":[45.7,-93.5],"elL":[22.9,-182.5],"haL":[3.9,-228.8],"hipR":[-25.5,35.9],"knR":[-13.9,168.8],"ftR":[61.8,309.9],"hipL":[20.9,42.5],"knL":[-7.5,109.2],"ftL":[-48.1,267.9]},{"rootY":6.9,"hips":[0,0],"chest":[-1.7,-82.4],"neck":[-1.7,-82.4],"head":[8.6,-141.7],"shR":[-48.8,-96.2],"elR":[-88.2,-29.8],"haR":[-106.3,-11.5],"shL":[46.1,-92.7],"elL":[24.3,-181.3],"haL":[5.7,-227.8],"hipR":[-25.2,36.1],"knR":[-14.1,169],"ftR":[61.2,310.4],"hipL":[20.6,42.4],"knL":[-7.6,109.3],"ftL":[-48.4,268]},{"rootY":7.2,"hips":[0,0],"chest":[-2.5,-82.5],"neck":[-2.5,-82.5],"head":[7.4,-142.4],"shR":[-49.9,-96.8],"elR":[-90.9,-33.5],"haR":[-109.6,-16.8],"shL":[45.7,-92.3],"elL":[26.1,-181.1],"haL":[7.9,-227.8],"hipR":[-26.3,35.3],"knR":[-15.2,168.5],"ftR":[60.7,309.9],"hipL":[20.2,43],"knL":[-6.9,108.7],"ftL":[-48,267.3]},{"rootY":7,"hips":[0,0],"chest":[-3.1,-82.5],"neck":[-3.1,-82.5],"head":[6.9,-143],"shR":[-50.1,-96.7],"elR":[-92.3,-35.5],"haR":[-112.6,-20.4],"shL":[44.5,-92.4],"elL":[28.2,-180.1],"haL":[10.6,-227],"hipR":[-26.2,35.6],"knR":[-16,168.9],"ftR":[60.4,310.1],"hipL":[21,42.8],"knL":[-5,109],"ftL":[-47.5,267.3]},{"rootY":7.4,"hips":[0,0],"chest":[-4,-82.6],"neck":[-4,-82.6],"head":[6,-144],"shR":[-51.1,-97.3],"elR":[-94.7,-36.9],"haR":[-116.3,-23.1],"shL":[43.8,-92],"elL":[31.9,-176.5],"haL":[14.8,-223.7],"hipR":[-26.9,35.2],"knR":[-15.9,168.3],"ftR":[60.4,309.4],"hipL":[21,43.1],"knL":[-4.7,108.6],"ftL":[-46.7,267]},{"rootY":7.1,"hips":[0,0],"chest":[-4.4,-82.5],"neck":[-4.4,-82.5],"head":[6.2,-144.7],"shR":[-51.6,-96.7],"elR":[-94.7,-34.7],"haR":[-118.9,-22.2],"shL":[43,-92.4],"elL":[37.6,-171.6],"haL":[19.5,-218.6],"hipR":[-26.2,36],"knR":[-14.3,168.6],"ftR":[61.1,309.6],"hipL":[21.4,42.5],"knL":[-3.8,108.8],"ftL":[-46,267.2]},{"rootY":6.7,"hips":[0,0],"chest":[-5,-82.4],"neck":[-5,-82.4],"head":[6.3,-145.3],"shR":[-50.9,-96.5],"elR":[-92.2,-30.2],"haR":[-119.4,-18.4],"shL":[40.6,-92.2],"elL":[43,-162.6],"haL":[23.5,-209.1],"hipR":[-25.4,36.9],"knR":[-13,169.1],"ftR":[61.5,310.1],"hipL":[22.1,41.7],"knL":[-3.1,109.3],"ftL":[-45.5,267.7]},{"rootY":6.7,"hips":[0,0],"chest":[-6.2,-82.5],"neck":[-6.2,-82.5],"head":[5.8,-146],"shR":[-52.3,-95.6],"elR":[-90.6,-23.8],"haR":[-120,-11.9],"shL":[39.3,-93.4],"elL":[49.5,-150.7],"haL":[28.5,-196.5],"hipR":[-25.6,36.7],"knR":[-12.6,168.8],"ftR":[61.5,310.1],"hipL":[21.9,41.9],"knL":[-3.2,109.4],"ftL":[-45.5,267.9]},{"rootY":6.7,"hips":[0,0],"chest":[-6.8,-82.9],"neck":[-6.8,-82.9],"head":[6.5,-147.7],"shR":[-52.8,-95.1],"elR":[-88.5,-17],"haR":[-119.1,-3.3],"shL":[37.9,-94.6],"elL":[54.6,-134.9],"haL":[33.1,-180.2],"hipR":[-25.4,36.8],"knR":[-12.7,169],"ftR":[61.8,310.1],"hipL":[22.2,41.8],"knL":[-2.6,109.6],"ftL":[-45.7,267.8]},{"rootY":6.4,"hips":[0,0],"chest":[-7.8,-83.1],"neck":[-7.8,-83.1],"head":[5.9,-148.8],"shR":[-53.7,-94.3],"elR":[-85.5,-10.3],"haR":[-116.9,6.4],"shL":[36.3,-95.8],"elL":[58.3,-116.6],"haL":[37.2,-161.3],"hipR":[-25.2,37],"knR":[-12.6,169.3],"ftR":[62.2,310],"hipL":[22.4,41.7],"knL":[-2.5,110.2],"ftL":[-46.6,268.1]},{"rootY":6.6,"hips":[0,0],"chest":[-8.5,-83.2],"neck":[-8.5,-83.2],"head":[5.1,-149.3],"shR":[-55.6,-95],"elR":[-82.6,-5.1],"haR":[-114.4,15.3],"shL":[36.6,-95.1],"elL":[64.1,-93.8],"haL":[43.6,-136.8],"hipR":[-25,37.1],"knR":[-12.6,169.4],"ftR":[62.6,309.8],"hipL":[22.4,41.5],"knL":[-3,111],"ftL":[-48.3,268.4]},{"rootY":7,"hips":[0,0],"chest":[-9.2,-83.3],"neck":[-9.2,-83.3],"head":[3.8,-150.1],"shR":[-56.3,-94.6],"elR":[-78.9,0.2],"haR":[-109.8,24.8],"shL":[35.4,-95.7],"elL":[68.7,-70.7],"haL":[48.8,-110],"hipR":[-24.7,37.4],"knR":[-13.5,170],"ftR":[62.4,310.1],"hipL":[22.6,41.2],"knL":[-3.5,111.8],"ftL":[-50.8,268.5]},{"rootY":7.2,"hips":[0,0],"chest":[-10.2,-83.3],"neck":[-10.2,-83.3],"head":[2.3,-150.3],"shR":[-57.1,-94.5],"elR":[-75.5,4.8],"haR":[-104.4,33.9],"shL":[33.7,-95.5],"elL":[70.1,-48],"haL":[51.7,-81],"hipR":[-24.8,37.3],"knR":[-12.4,169.7],"ftR":[63.2,309.3],"hipL":[22.3,41.3],"knL":[-5.3,112.6],"ftL":[-54.2,268.6]},{"rootY":7.9,"hips":[0,0],"chest":[-10.8,-83.3],"neck":[-10.8,-83.3],"head":[1.2,-150.7],"shR":[-58.4,-94.4],"elR":[-73.1,8.3],"haR":[-99.1,42.3],"shL":[33.4,-95.5],"elL":[70.5,-29.2],"haL":[54.6,-53],"hipR":[-24.8,37.1],"knR":[-12.9,169.7],"ftR":[63.7,308.8],"hipL":[21.9,41.5],"knL":[-6.9,114.1],"ftL":[-57.3,269.2]},{"rootY":8.7,"hips":[0,0],"chest":[-11.3,-83.6],"neck":[-11.3,-83.6],"head":[0.2,-151.1],"shR":[-59.6,-94.4],"elR":[-71.4,11.5],"haR":[-93.5,49.4],"shL":[33.2,-95.7],"elL":[70.2,-13.8],"haL":[57.1,-26.5],"hipR":[-24.8,36.9],"knR":[-12.7,169.6],"ftR":[64.3,308.3],"hipL":[21.6,41.7],"knL":[-8.8,115.6],"ftL":[-60.2,269.9]},{"rootY":9.7,"hips":[0,0],"chest":[-11.5,-83.8],"neck":[-11.5,-83.8],"head":[-0.5,-151.5],"shR":[-60.3,-94.7],"elR":[-68.5,13.7],"haR":[-87.2,54.8],"shL":[33.2,-95.5],"elL":[69.4,-2.8],"haL":[58.5,-3.2],"hipR":[-24.9,36.6],"knR":[-12,169.3],"ftR":[65.3,307.4],"hipL":[21.3,42],"knL":[-11.7,118],"ftL":[-62.7,271.8]},{"rootY":10.5,"hips":[0,0],"chest":[-11,-84.4],"neck":[-11,-84.4],"head":[-0.6,-152.2],"shR":[-60.3,-95.3],"elR":[-64.9,15.1],"haR":[-81.2,58.5],"shL":[33.6,-95.8],"elL":[67.7,4.7],"haL":[59.8,16.5],"hipR":[-25.1,36.1],"knR":[-10.7,169.1],"ftR":[67.2,306.1],"hipL":[20.5,42.4],"knL":[-14.4,121.6],"ftL":[-64.6,274.7]},{"rootY":11.4,"hips":[0,0],"chest":[-10.4,-84.9],"neck":[-10.4,-84.9],"head":[0.1,-152.8],"shR":[-60.7,-96.3],"elR":[-64,16.1],"haR":[-76.8,61.2],"shL":[35,-95.4],"elL":[66.3,9.6],"haL":[61.9,33.4],"hipR":[-24.4,36.1],"knR":[-9.5,169.3],"ftR":[69.1,305.4],"hipL":[20.4,42.4],"knL":[-17.6,126.1],"ftL":[-65.2,279.1]},{"rootY":12.6,"hips":[0,0],"chest":[-9.1,-85.4],"neck":[-9.1,-85.4],"head":[1.3,-153.4],"shR":[-59.3,-97.4],"elR":[-57.7,16],"haR":[-70,62.3],"shL":[36,-95.1],"elL":[64.1,12.7],"haL":[64.6,46.6],"hipR":[-24,35.8],"knR":[-9.4,169.3],"ftR":[71.9,303.3],"hipL":[20.3,42.7],"knL":[-20.4,130.3],"ftL":[-64,283.1]},{"rootY":14.9,"hips":[0,0],"chest":[-8.1,-85.6],"neck":[-8.1,-85.6],"head":[2.1,-153.5],"shR":[-57.4,-96.9],"elR":[-53.3,17],"haR":[-64.6,64.4],"shL":[35.8,-96],"elL":[61,13],"haL":[66.3,54.7],"hipR":[-23.7,35.7],"knR":[-8.3,169.4],"ftR":[74.7,301.4],"hipL":[20.1,42.7],"knL":[-24.7,133.3],"ftL":[-61.6,286.5]},{"rootY":17.1,"hips":[0,0],"chest":[-6.1,-85.8],"neck":[-6.1,-85.8],"head":[4.2,-153.6],"shR":[-54.8,-97.3],"elR":[-47.8,16.9],"haR":[-58.7,64.9],"shL":[37.2,-96.2],"elL":[58.7,13.2],"haL":[68.7,59.5],"hipR":[-23.3,35.4],"knR":[-7.3,169.4],"ftR":[78.5,299.2],"hipL":[19.7,42.9],"knL":[-27.6,135.6],"ftL":[-57.7,288.8]},{"rootY":19.4,"hips":[0,0],"chest":[-4.2,-85.9],"neck":[-4.2,-85.9],"head":[6.6,-153.5],"shR":[-52.2,-97.1],"elR":[-44.2,17.2],"haR":[-54.4,65.5],"shL":[38.5,-96.8],"elL":[57.6,12.1],"haL":[70.4,60.2],"hipR":[-22.4,35.4],"knR":[-6.1,169.7],"ftR":[81.7,297.3],"hipL":[19.4,42.9],"knL":[-30.3,136.7],"ftL":[-54.8,289.3]},{"rootY":21.7,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.6,-153.5],"shR":[-50.7,-98],"elR":[-41.6,16.3],"haR":[-51.8,64.7],"shL":[40.2,-96.4],"elL":[58.5,11.6],"haL":[72.9,59.9],"hipR":[-23.1,35.5],"knR":[-3.1,169.6],"ftR":[85.8,294.9],"hipL":[18.9,42.9],"knL":[-32.1,137.3],"ftL":[-52.1,288.9]},{"rootY":23.6,"hips":[0,0],"chest":[-0.6,-86.2],"neck":[-0.6,-86.2],"head":[11.8,-153.4],"shR":[-48.2,-98],"elR":[-40,16.3],"haR":[-50.3,64.7],"shL":[42.4,-96.8],"elL":[61.3,9.2],"haL":[75.8,57.4],"hipR":[-22.6,35.2],"knR":[0.2,169],"ftR":[90.8,292.6],"hipL":[18,43.1],"knL":[-33.7,137.4],"ftL":[-48.3,287.3]},{"rootY":25.8,"hips":[0,0],"chest":[0.8,-86.2],"neck":[0.8,-86.2],"head":[14.1,-153.1],"shR":[-47.1,-98.8],"elR":[-40.4,15.6],"haR":[-51.3,63.8],"shL":[44.4,-95.9],"elL":[64.2,8.1],"haL":[78.2,56.5],"hipR":[-22.2,35.6],"knR":[2.6,169.1],"ftR":[94.7,290.3],"hipL":[17.5,42.8],"knL":[-35.1,136.8],"ftL":[-45.1,284.8]}]},"dance_spin":{"name":"dance_spin","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":0.3,"hips":[0,0],"chest":[-0.4,-86.4],"neck":[-0.4,-86.4],"head":[-4.7,-154.9],"shR":[-68.2,-91.5],"elR":[-84.1,15.3],"haR":[-93.3,65.6],"shL":[69.1,-103.8],"elL":[88.1,-3.6],"haL":[95.4,45.8],"hipR":[-34.9,37.4],"knR":[-6.5,167],"ftR":[19.1,322.5],"hipL":[30.9,41.1],"knL":[20.1,174.6],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-5.8,-154.4],"shR":[-68.2,-91.6],"elR":[-83.8,15.4],"haR":[-92.7,65.7],"shL":[69,-103.9],"elL":[87.8,-3.5],"haL":[95.2,45.9],"hipR":[-35.1,37.3],"knR":[-6.8,167],"ftR":[19.1,322.4],"hipL":[30.8,41.2],"knL":[19.9,174.7],"ftL":[-39.5,279.9]},{"rootY":0.6,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-7.1,-154.5],"shR":[-68.2,-91.5],"elR":[-83.1,16.2],"haR":[-92,66.5],"shL":[69,-104.1],"elL":[87.2,-3.4],"haL":[94.9,46],"hipR":[-35.1,37.2],"knR":[-7.2,167.1],"ftR":[18.9,322.3],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-39.7,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.6,-86.4],"neck":[-0.6,-86.4],"head":[-8.3,-154.2],"shR":[-68.3,-91.4],"elR":[-82.6,16.5],"haR":[-91.2,66.8],"shL":[69,-104.3],"elL":[86.7,-3.5],"haL":[94.4,45.9],"hipR":[-35.2,37.1],"knR":[-7.6,166.9],"ftR":[18.8,322.2],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-39.9,279.5]},{"rootY":0.5,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-9.4,-153.8],"shR":[-68.1,-91.4],"elR":[-81.5,16.7],"haR":[-90.1,67.1],"shL":[69.2,-104.4],"elL":[86.5,-3.5],"haL":[94.1,45.9],"hipR":[-35.1,37.2],"knR":[-7.3,166.8],"ftR":[18.7,322],"hipL":[30.9,41.3],"knL":[19,174.3],"ftL":[-39.6,279.7]},{"rootY":0.7,"hips":[0,0],"chest":[-0.7,-86.4],"neck":[-0.7,-86.4],"head":[-10.7,-153.6],"shR":[-68.3,-91.5],"elR":[-80.7,16.7],"haR":[-89,67.1],"shL":[69,-104.3],"elL":[86,-3.4],"haL":[93.4,46],"hipR":[-35.2,37.2],"knR":[-7.7,167],"ftR":[18.7,322],"hipL":[30.8,41.3],"knL":[19,174.4],"ftL":[-39.5,279.8]},{"rootY":0.4,"hips":[0,0],"chest":[-0.9,-86.4],"neck":[-0.9,-86.4],"head":[-11.6,-153.3],"shR":[-68.5,-91.6],"elR":[-79.6,17.1],"haR":[-87.8,67.5],"shL":[68.8,-104.3],"elL":[85.1,-3.4],"haL":[92.4,46.1],"hipR":[-35.2,37.1],"knR":[-7.8,166.8],"ftR":[18.4,321.9],"hipL":[30.7,41.4],"knL":[18.7,174.4],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-1.1,-86.4],"neck":[-1.1,-86.4],"head":[-12.2,-153.4],"shR":[-68.6,-91.7],"elR":[-78.6,17],"haR":[-86.4,67.5],"shL":[68.7,-104.1],"elL":[84.4,-3.3],"haL":[91.5,46.2],"hipR":[-35.3,37.1],"knR":[-7.8,166.9],"ftR":[18.4,321.9],"hipL":[30.6,41.4],"knL":[18.7,174.4],"ftL":[-39.9,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-1.3,-86.4],"neck":[-1.3,-86.4],"head":[-13.1,-153.1],"shR":[-68.8,-91.7],"elR":[-77.6,17],"haR":[-85.1,67.6],"shL":[68.6,-104],"elL":[83.4,-3.6],"haL":[90,46.1],"hipR":[-35.3,37],"knR":[-7.9,167],"ftR":[18.4,322],"hipL":[30.6,41.4],"knL":[18.5,174.5],"ftL":[-40.2,279.3]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.8,-152.9],"shR":[-69,-91.9],"elR":[-77,16.7],"haR":[-84,67.4],"shL":[68.3,-103.9],"elL":[82.9,-3.9],"haL":[89,45.9],"hipR":[-35.5,36.9],"knR":[-8.2,166.8],"ftR":[18.2,321.8],"hipL":[30.4,41.6],"knL":[18.2,174.6],"ftL":[-40.6,279.4]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.6,-153.1],"shR":[-69.1,-91.9],"elR":[-76.4,16.7],"haR":[-83.2,67.4],"shL":[68.3,-103.8],"elL":[82.5,-4.1],"haL":[88.1,45.8],"hipR":[-35.5,36.8],"knR":[-8.4,166.9],"ftR":[18.1,321.9],"hipL":[30.3,41.6],"knL":[18.5,174.8],"ftL":[-40.9,279.2]},{"rootY":0.4,"hips":[0,0],"chest":[-1.5,-86.4],"neck":[-1.5,-86.4],"head":[-13.4,-153.1],"shR":[-69,-91.5],"elR":[-76,17.1],"haR":[-82.9,67.8],"shL":[68.4,-103.9],"elL":[82,-4.7],"haL":[87.4,45.3],"hipR":[-35.5,36.8],"knR":[-8.2,166.9],"ftR":[18.3,321.8],"hipL":[30.3,41.6],"knL":[18.8,174.9],"ftL":[-41.1,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-13.5,-153.1],"shR":[-69.2,-91.4],"elR":[-76.9,16.7],"haR":[-83.9,67.4],"shL":[68,-104],"elL":[81.3,-5.4],"haL":[86.4,44.8],"hipR":[-35.6,36.8],"knR":[-9,166.9],"ftR":[17.9,321.6],"hipL":[30.3,41.7],"knL":[18.2,174.8],"ftL":[-41.9,278.5]},{"rootY":0.8,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-12.4,-153.4],"shR":[-68.6,-91.7],"elR":[-76.9,16],"haR":[-84,66.7],"shL":[68.7,-103.7],"elL":[81.6,-5.9],"haL":[86.6,44.3],"hipR":[-35.3,37.1],"knR":[-7.2,167],"ftR":[18.9,321.8],"hipL":[30.6,41.4],"knL":[19.4,174.7],"ftL":[-41.5,278.8]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-86.5],"neck":[-1.5,-86.5],"head":[-12.4,-153.5],"shR":[-68.8,-91.7],"elR":[-77.9,15.8],"haR":[-85.3,66.4],"shL":[68.5,-103.7],"elL":[81.3,-6.4],"haL":[86.2,43.8],"hipR":[-35.3,37],"knR":[-7.5,167.1],"ftR":[18.5,321.8],"hipL":[30.6,41.5],"knL":[19.4,174.7],"ftL":[-41.6,278.4]},{"rootY":0.8,"hips":[0,0],"chest":[-1.4,-86.4],"neck":[-1.4,-86.4],"head":[-11.8,-153.6],"shR":[-68.7,-91.7],"elR":[-78.7,15],"haR":[-85.8,65.7],"shL":[68.6,-103.6],"elL":[81.4,-6.5],"haL":[86.3,43.7],"hipR":[-35.2,37.1],"knR":[-7.1,167.1],"ftR":[18.6,321.9],"hipL":[30.7,41.4],"knL":[19.5,174.5],"ftL":[-41,278.7]},{"rootY":0.6,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-11.1,-153.7],"shR":[-68.4,-91.7],"elR":[-79.1,14.8],"haR":[-86.1,65.5],"shL":[68.8,-103.4],"elL":[81.3,-6.9],"haL":[86.3,43.3],"hipR":[-35.1,37.2],"knR":[-6.1,166.9],"ftR":[18.9,322],"hipL":[30.7,41.2],"knL":[20,174.6],"ftL":[-40.8,279.2]},{"rootY":0.7,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.5,-153.9],"shR":[-68.3,-91.7],"elR":[-79.8,14.5],"haR":[-86.5,65.2],"shL":[69,-103.4],"elL":[81.3,-7.1],"haL":[86.4,43.1],"hipR":[-35,37.4],"knR":[-5.3,166.8],"ftR":[19.2,321.9],"hipL":[30.9,41],"knL":[19.8,174.4],"ftL":[-40.8,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.1,-154.1],"shR":[-68.1,-91.8],"elR":[-80.5,14],"haR":[-87.2,64.8],"shL":[69.1,-103.2],"elL":[81.2,-6.9],"haL":[86.5,43.3],"hipR":[-34.9,37.4],"knR":[-4.7,166.5],"ftR":[18.8,321.8],"hipL":[31,41],"knL":[19.4,174.3],"ftL":[-41.3,279]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-10.6,-154.1],"shR":[-68.8,-91.8],"elR":[-82.3,13.7],"haR":[-88.6,64.5],"shL":[68.4,-103.1],"elL":[80.3,-7],"haL":[85.7,43.2],"hipR":[-35.2,37.2],"knR":[-6.7,166.9],"ftR":[18.3,321.9],"hipL":[30.6,41.2],"knL":[19.1,174.5],"ftL":[-42.3,278.6]},{"rootY":0.5,"hips":[0,0],"chest":[-2.1,-86.4],"neck":[-2.1,-86.4],"head":[-10.5,-154.2],"shR":[-69.2,-91.6],"elR":[-83.6,14],"haR":[-89.9,64.8],"shL":[68,-103.2],"elL":[80,-6.9],"haL":[85.4,43.2],"hipR":[-35.4,36.9],"knR":[-7.7,166.7],"ftR":[17.6,321.8],"hipL":[30.4,41.5],"knL":[18.5,174.7],"ftL":[-43,278.7]},{"rootY":0.4,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-9.8,-154.4],"shR":[-68.9,-91.4],"elR":[-84.2,14],"haR":[-90.4,64.9],"shL":[68.3,-103.3],"elL":[80.3,-7],"haL":[85.8,43.1],"hipR":[-35.2,37.2],"knR":[-7,166.8],"ftR":[17.8,321.9],"hipL":[30.7,41.2],"knL":[18.9,174.4],"ftL":[-42.9,278.8]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.4],"neck":[-2.2,-86.4],"head":[-10.1,-154.4],"shR":[-69.4,-91.2],"elR":[-86.2,13.9],"haR":[-92,64.8],"shL":[67.8,-103.5],"elL":[80.1,-7.3],"haL":[85.4,42.8],"hipR":[-35.5,36.9],"knR":[-8.4,166.9],"ftR":[17.5,321.8],"hipL":[30.3,41.5],"knL":[18.6,174.8],"ftL":[-43.3,278.6]},{"rootY":0.6,"hips":[0,0],"chest":[-2.4,-86.4],"neck":[-2.4,-86.4],"head":[-9.8,-154.7],"shR":[-69.5,-91.3],"elR":[-87.6,13.6],"haR":[-93.1,64.5],"shL":[67.7,-103.3],"elL":[80,-7.3],"haL":[85.4,42.9],"hipR":[-35.4,36.9],"knR":[-8.5,166.7],"ftR":[17.1,321.6],"hipL":[30.3,41.5],"knL":[18.5,174.8],"ftL":[-43.6,278.6]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.3],"neck":[-2.2,-86.3],"head":[-9.3,-154.8],"shR":[-69.3,-91.4],"elR":[-88.9,13],"haR":[-94,63.9],"shL":[67.9,-103.2],"elL":[80.2,-7.3],"haL":[85.6,42.9],"hipR":[-35.4,37],"knR":[-8.2,166.7],"ftR":[17.4,321.6],"hipL":[30.4,41.4],"knL":[19,174.8],"ftL":[-43.5,278.5]},{"rootY":0.6,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.1,-154.8],"shR":[-69.2,-91.3],"elR":[-90.1,13],"haR":[-95.2,64],"shL":[68,-103.3],"elL":[80.7,-7.4],"haL":[86,42.7],"hipR":[-35.3,37],"knR":[-7.9,166.7],"ftR":[17.3,321.7],"hipL":[30.5,41.4],"knL":[19.4,174.8],"ftL":[-43.2,278.6]},{"rootY":0.9,"hips":[0,0],"chest":[-1.9,-86.3],"neck":[-1.9,-86.3],"head":[-8.7,-154.9],"shR":[-69,-91.3],"elR":[-91.6,12.8],"haR":[-96.5,63.8],"shL":[68.2,-103.4],"elL":[81.1,-7.4],"haL":[86.5,42.8],"hipR":[-35.2,37.1],"knR":[-7.5,166.9],"ftR":[17.9,322],"hipL":[30.6,41.3],"knL":[19.8,174.8],"ftL":[-42.7,278.6]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-8.8,-154.9],"shR":[-68.8,-91.3],"elR":[-92.9,12.6],"haR":[-97.8,63.5],"shL":[68.3,-103.4],"elL":[81.6,-7.2],"haL":[87.1,43],"hipR":[-35.2,37.1],"knR":[-7.1,166.9],"ftR":[18,322],"hipL":[30.7,41.3],"knL":[19.7,174.7],"ftL":[-41.9,278.9]},{"rootY":0.8,"hips":[0,0],"chest":[-1.6,-86.3],"neck":[-1.6,-86.3],"head":[-8.6,-154.9],"shR":[-68.8,-91.1],"elR":[-94.3,12.6],"haR":[-99.1,63.5],"shL":[68.4,-103.5],"elL":[81.9,-7],"haL":[87.4,43.1],"hipR":[-35.2,37.2],"knR":[-7.3,166.9],"ftR":[17.9,322],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-41.5,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-8.8,-155],"shR":[-69,-91.1],"elR":[-95.9,12.7],"haR":[-100.6,63.5],"shL":[68.2,-103.7],"elL":[81.8,-7],"haL":[87.5,43.1],"hipR":[-35.3,37.1],"knR":[-7.6,166.9],"ftR":[17.7,322.1],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-41.6,279.4]},{"rootY":1.1,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.5,-154.8],"shR":[-69.3,-91],"elR":[-97.1,12.8],"haR":[-101.8,63.6],"shL":[67.8,-103.9],"elL":[81.6,-6.7],"haL":[87.5,43.4],"hipR":[-35.4,37],"knR":[-7.8,166.8],"ftR":[17.4,321.9],"hipL":[30.6,41.5],"knL":[18.9,174.7],"ftL":[-42.1,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.3],"neck":[-2.4,-86.3],"head":[-9.7,-154.8],"shR":[-69.6,-90.9],"elR":[-98.2,12.7],"haR":[-102.8,63.4],"shL":[67.5,-104],"elL":[81.6,-6.6],"haL":[87.4,43.5],"hipR":[-35.5,36.9],"knR":[-7.9,166.7],"ftR":[17.1,321.8],"hipL":[30.5,41.6],"knL":[18.6,174.8],"ftL":[-42.7,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-10.2,-154.9],"shR":[-69.9,-91.1],"elR":[-98.9,12.8],"haR":[-103.4,63.5],"shL":[67.2,-104],"elL":[81.6,-6.5],"haL":[87.6,43.5],"hipR":[-35.5,36.8],"knR":[-8.5,166.8],"ftR":[16.7,321.8],"hipL":[30.4,41.6],"knL":[18.5,174.7],"ftL":[-43.3,278.8]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.9,-154.7],"shR":[-70.4,-90.9],"elR":[-99.6,13.3],"haR":[-104,63.9],"shL":[66.6,-104.3],"elL":[81.3,-6.3],"haL":[87.3,43.7],"hipR":[-35.7,36.6],"knR":[-9.5,166.8],"ftR":[16.2,321.8],"hipL":[30.2,41.8],"knL":[18.2,174.9],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.7,-154.9],"shR":[-70.4,-90.6],"elR":[-99.4,13.9],"haR":[-103.7,64.5],"shL":[66.5,-104.7],"elL":[81.3,-6.4],"haL":[87.4,43.6],"hipR":[-35.5,36.9],"knR":[-9.4,167],"ftR":[16,321.9],"hipL":[30.5,41.6],"knL":[18.1,174.6],"ftL":[-43.9,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3,-86.4],"neck":[-3,-86.4],"head":[-11,-154.8],"shR":[-70.3,-90.4],"elR":[-98.2,14.5],"haR":[-102.7,65.1],"shL":[66.6,-104.9],"elL":[81.8,-6.5],"haL":[87.9,43.6],"hipR":[-35.4,36.9],"knR":[-9.1,166.9],"ftR":[15.9,321.8],"hipL":[30.5,41.6],"knL":[17.9,174.6],"ftL":[-43.9,278.7]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.6,-154.6],"shR":[-70.4,-90.2],"elR":[-96.9,15.3],"haR":[-101.7,65.9],"shL":[66.4,-105.2],"elL":[81.8,-6.5],"haL":[88,43.5],"hipR":[-35.5,36.9],"knR":[-9,166.6],"ftR":[15.5,321.7],"hipL":[30.5,41.6],"knL":[17.6,174.6],"ftL":[-44,279.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.4],"neck":[-3.1,-86.4],"head":[-11.9,-154.6],"shR":[-70.4,-89.9],"elR":[-94.8,16],"haR":[-99.7,66.5],"shL":[66.4,-105.4],"elL":[81.8,-6.5],"haL":[88.1,43.5],"hipR":[-35.4,36.9],"knR":[-8.7,166.6],"ftR":[15.6,321.7],"hipL":[30.5,41.6],"knL":[17.5,174.6],"ftL":[-44,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.7,-154.7],"shR":[-70.5,-89.8],"elR":[-92,17.2],"haR":[-97.1,67.7],"shL":[66.3,-105.6],"elL":[81.8,-6.4],"haL":[88.1,43.6],"hipR":[-35.3,37],"knR":[-8.6,166.9],"ftR":[15.7,322],"hipL":[30.6,41.5],"knL":[17.8,174.6],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-12.1,-154.6],"shR":[-70.5,-89.7],"elR":[-89,17.9],"haR":[-94.4,68.4],"shL":[66.3,-105.7],"elL":[81.7,-6.2],"haL":[88.1,43.7],"hipR":[-35.3,37],"knR":[-8.6,167],"ftR":[15.7,322.1],"hipL":[30.7,41.5],"knL":[17.8,174.6],"ftL":[-43.6,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-12.6,-154.5],"shR":[-70.7,-89.8],"elR":[-86,18.6],"haR":[-91.9,69.2],"shL":[66.1,-105.7],"elL":[81.5,-5.8],"haL":[87.9,44.1],"hipR":[-35.4,37],"knR":[-9.3,167.1],"ftR":[15.7,322],"hipL":[30.7,41.6],"knL":[17.7,174.6],"ftL":[-43.8,278.5]},{"rootY":1.1,"hips":[0,0],"chest":[-3.6,-86.4],"neck":[-3.6,-86.4],"head":[-13,-154.5],"shR":[-71,-89.7],"elR":[-83.6,19],"haR":[-89.4,69.6],"shL":[65.8,-105.9],"elL":[81.1,-5.9],"haL":[87.3,44.1],"hipR":[-35.4,36.9],"knR":[-10.2,167.2],"ftR":[15.3,322],"hipL":[30.6,41.7],"knL":[17.3,174.5],"ftL":[-44.3,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.5,-86.4],"neck":[-3.5,-86.4],"head":[-13.1,-154.4],"shR":[-70.9,-89.5],"elR":[-81.1,19.6],"haR":[-87.1,70.3],"shL":[65.9,-106.2],"elL":[80.9,-6.2],"haL":[86.9,43.7],"hipR":[-35.3,37],"knR":[-9.3,167.2],"ftR":[15.5,321.9],"hipL":[30.7,41.6],"knL":[17.5,174.5],"ftL":[-44.2,278.2]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-13,-154.5],"shR":[-70.8,-89.5],"elR":[-78.6,20.2],"haR":[-84.8,70.9],"shL":[65.9,-106.2],"elL":[80.7,-6.1],"haL":[86.6,43.8],"hipR":[-35.3,37],"knR":[-9.4,167.1],"ftR":[15.6,321.9],"hipL":[30.7,41.6],"knL":[17.6,174.6],"ftL":[-44.2,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.5],"neck":[-3.7,-86.5],"head":[-13.3,-154.5],"shR":[-71.1,-89.6],"elR":[-76.8,20.4],"haR":[-83,71.2],"shL":[65.7,-106.1],"elL":[80.2,-5.7],"haL":[86.2,44.2],"hipR":[-35.5,36.8],"knR":[-9.9,167.1],"ftR":[15.5,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44.3,278.2]},{"rootY":1.2,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-13.4,-154.5],"shR":[-71.3,-89.5],"elR":[-75.2,20.6],"haR":[-81.2,71.5],"shL":[65.5,-106.1],"elL":[80,-5.6],"haL":[85.8,44.3],"hipR":[-35.5,36.8],"knR":[-10.1,167.1],"ftR":[15.7,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44,278.7]},{"rootY":1.1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.7],"elR":[-73.4,20.8],"haR":[-79.3,71.6],"shL":[65.5,-105.9],"elL":[79.9,-5.3],"haL":[85.5,44.6],"hipR":[-35.6,36.7],"knR":[-9.9,167],"ftR":[15.8,321.9],"hipL":[30.4,41.8],"knL":[17.5,174.9],"ftL":[-43.8,279.1]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.8],"elR":[-71.9,20.7],"haR":[-77.5,71.6],"shL":[65.5,-105.9],"elL":[79.7,-5.1],"haL":[85.2,44.9],"hipR":[-35.7,36.6],"knR":[-9.9,166.9],"ftR":[15.9,321.8],"hipL":[30.2,41.9],"knL":[17.9,175.1],"ftL":[-43.5,279.3]},{"rootY":1.1,"hips":[0,0],"chest":[-4.1,-86.5],"neck":[-4.1,-86.5],"head":[-13.6,-154.6],"shR":[-71.6,-89.8],"elR":[-70.8,21],"haR":[-76.2,71.9],"shL":[65.3,-105.9],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.8,166.9],"ftR":[15.4,321.8],"hipL":[30,42.1],"knL":[17.6,175.2],"ftL":[-43.6,279.2]},{"rootY":1.3,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.6],"shR":[-71.5,-89.6],"elR":[-69.9,21.3],"haR":[-75,72.2],"shL":[65.4,-106],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.7,166.9],"ftR":[15.6,321.9],"hipL":[30.1,42.1],"knL":[17.4,175.1],"ftL":[-43.1,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.7],"shR":[-71.5,-90],"elR":[-69,21.1],"haR":[-74,71.9],"shL":[65.5,-105.7],"elL":[79.6,-5.1],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.4,166.7],"ftR":[15.5,321.8],"hipL":[30.2,42],"knL":[17.4,175],"ftL":[-42.4,279.5]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13,-154.7],"shR":[-71.4,-89.8],"elR":[-68.5,21.4],"haR":[-73.4,72.3],"shL":[65.5,-105.8],"elL":[79.7,-5.2],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.1,166.7],"ftR":[15.6,321.9],"hipL":[30.3,42],"knL":[17.5,175],"ftL":[-42,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.9,-154.8],"shR":[-71.6,-89.9],"elR":[-68.6,21.4],"haR":[-73.6,72.2],"shL":[65.4,-105.7],"elL":[79.8,-5.2],"haL":[85,44.8],"hipR":[-36.1,36.3],"knR":[-11.6,166.6],"ftR":[15.5,321.9],"hipL":[30,42.2],"knL":[17.4,175.2],"ftL":[-42.1,279.8]},{"rootY":0.7,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.8,-154.9],"shR":[-71.6,-90.1],"elR":[-68.8,21.2],"haR":[-73.9,72],"shL":[65.4,-105.6],"elL":[79.9,-5.1],"haL":[85.1,44.9],"hipR":[-36.1,36.3],"knR":[-11.9,166.5],"ftR":[15.4,321.8],"hipL":[30,42.2],"knL":[17.3,175.2],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-12.7,-154.9],"shR":[-71.5,-90.2],"elR":[-69.2,21],"haR":[-74.6,71.8],"shL":[65.6,-105.4],"elL":[80,-5],"haL":[85.4,45.1],"hipR":[-36.2,36.2],"knR":[-12.1,166.5],"ftR":[15.5,321.8],"hipL":[30,42.2],"knL":[17.4,175.4],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-12.4,-154.9],"shR":[-71.4,-90.3],"elR":[-69.8,20.8],"haR":[-75.5,71.6],"shL":[65.7,-105.3],"elL":[80.2,-4.9],"haL":[85.6,45.1],"hipR":[-36.1,36.3],"knR":[-11.7,166.4],"ftR":[15.7,321.8],"hipL":[30.1,42.2],"knL":[17.5,175.4],"ftL":[-42,280]},{"rootY":0.8,"hips":[0,0],"chest":[-3.6,-86.6],"neck":[-3.6,-86.6],"head":[-12.1,-155],"shR":[-71.2,-90.3],"elR":[-70.6,20.7],"haR":[-76.2,71.5],"shL":[65.8,-105.4],"elL":[80.3,-5.1],"haL":[85.7,45],"hipR":[-35.8,36.6],"knR":[-10.7,166.5],"ftR":[15.7,321.8],"hipL":[30.4,42],"knL":[17.7,175],"ftL":[-41.9,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.4,-86.5],"neck":[-3.4,-86.5],"head":[-11.9,-154.9],"shR":[-71,-90.2],"elR":[-71.7,20.4],"haR":[-77.3,71.2],"shL":[66.1,-105.4],"elL":[80.7,-5.1],"haL":[86,44.9],"hipR":[-35.7,36.7],"knR":[-10.2,166.7],"ftR":[16.2,321.9],"hipL":[30.4,41.9],"knL":[18,175.1],"ftL":[-41.7,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.5],"neck":[-3.1,-86.5],"head":[-11.8,-154.9],"shR":[-70.8,-90.2],"elR":[-73.3,20.1],"haR":[-78.8,70.9],"shL":[66.3,-105.4],"elL":[81,-5.1],"haL":[86.1,45],"hipR":[-35.7,36.6],"knR":[-10.3,166.7],"ftR":[16.3,321.9],"hipL":[30.4,41.9],"knL":[17.9,175.1],"ftL":[-41.8,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.6],"neck":[-3.1,-86.6],"head":[-11.9,-154.9],"shR":[-70.7,-90.3],"elR":[-75.3,19.7],"haR":[-81,70.6],"shL":[66.4,-105.3],"elL":[81,-5.1],"haL":[86,45],"hipR":[-35.7,36.6],"knR":[-10.6,166.7],"ftR":[15.9,322],"hipL":[30.4,41.9],"knL":[17.8,175.2],"ftL":[-42,279.6]},{"rootY":1.3,"hips":[0,0],"chest":[-3,-86.5],"neck":[-3,-86.5],"head":[-11.9,-154.9],"shR":[-70.6,-90.3],"elR":[-77.6,19.3],"haR":[-83.4,70.2],"shL":[66.5,-105.2],"elL":[81.1,-4.9],"haL":[86,45.2],"hipR":[-35.7,36.6],"knR":[-11.2,166.7],"ftR":[15.7,321.9],"hipL":[30.4,41.9],"knL":[17.6,175.2],"ftL":[-42.4,279.4]},{"rootY":1.4,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-12.2,-154.8],"shR":[-70.9,-90.4],"elR":[-80.9,18.6],"haR":[-86.8,69.5],"shL":[66.2,-105.1],"elL":[80.7,-4.9],"haL":[85.6,45.2],"hipR":[-35.9,36.4],"knR":[-12,166.7],"ftR":[15.1,321.9],"hipL":[30.1,42.1],"knL":[17.1,175.3],"ftL":[-43.1,279.1]},{"rootY":1.3,"hips":[0,0],"chest":[-3.2,-86.6],"neck":[-3.2,-86.6],"head":[-12.1,-154.9],"shR":[-70.8,-90.6],"elR":[-83.6,17.8],"haR":[-89.6,68.7],"shL":[66.4,-104.9],"elL":[80.7,-4.7],"haL":[85.7,45.4],"hipR":[-35.9,36.4],"knR":[-11.9,166.7],"ftR":[15.2,321.9],"hipL":[30.2,42.1],"knL":[17.2,175.3],"ftL":[-43.3,279.2]},{"rootY":1.2,"hips":[0,0],"chest":[-2.8,-86.5],"neck":[-2.8,-86.5],"head":[-11.6,-154.9],"shR":[-70.3,-90.9],"elR":[-85.9,17.2],"haR":[-92.5,68],"shL":[66.9,-104.5],"elL":[81.2,-4.5],"haL":[86.2,45.6],"hipR":[-35.8,36.6],"knR":[-11,166.6],"ftR":[15.8,321.9],"hipL":[30.3,41.9],"knL":[17.9,175.4],"ftL":[-43,279.3]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-88.4,16.6],"haR":[-95.7,67.3],"shL":[67.2,-104.3],"elL":[81.8,-4.3],"haL":[86.7,45.8],"hipR":[-35.6,36.8],"knR":[-10.2,166.6],"ftR":[16,322.1],"hipL":[30.4,41.7],"knL":[18.2,175.3],"ftL":[-42.9,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.7,-86.5],"neck":[-2.7,-86.5],"head":[-11.3,-154.9],"shR":[-70.2,-91.1],"elR":[-91.6,15.8],"haR":[-99.3,66.4],"shL":[67.1,-104.1],"elL":[81.9,-4.2],"haL":[86.9,45.9],"hipR":[-35.7,36.6],"knR":[-10.6,166.5],"ftR":[15.8,322.1],"hipL":[30.3,41.9],"knL":[18.1,175.5],"ftL":[-43.1,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11,-154.9],"shR":[-70.1,-91],"elR":[-94.3,15.1],"haR":[-102.8,65.6],"shL":[67.2,-104.2],"elL":[82.1,-4.1],"haL":[87.3,46],"hipR":[-35.7,36.7],"knR":[-10.5,166.6],"ftR":[15.9,322.2],"hipL":[30.3,41.8],"knL":[18.1,175.4],"ftL":[-43,279.8]},{"rootY":1,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.1,-154.8],"shR":[-70.1,-91.3],"elR":[-96.9,14],"haR":[-106.2,64.3],"shL":[67.2,-103.8],"elL":[82.6,-4],"haL":[87.7,46.1],"hipR":[-35.7,36.7],"knR":[-10.3,166.4],"ftR":[16.1,322.1],"hipL":[30.3,41.8],"knL":[18,175.5],"ftL":[-42.8,280]},{"rootY":0.7,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-11,-154.9],"shR":[-70,-91.2],"elR":[-99.4,13.3],"haR":[-109.5,63.5],"shL":[67.3,-103.9],"elL":[82.6,-4.4],"haL":[87.9,45.7],"hipR":[-35.6,36.7],"knR":[-9.9,166.2],"ftR":[15.6,321.9],"hipL":[30.4,41.8],"knL":[18.1,175.4],"ftL":[-42.5,279.9]},{"rootY":0.7,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-154.9],"shR":[-69.8,-91],"elR":[-101.7,12.6],"haR":[-112.6,62.7],"shL":[67.4,-104.1],"elL":[82.8,-4.6],"haL":[88.1,45.4],"hipR":[-35.6,36.8],"knR":[-9.8,166.3],"ftR":[16,321.9],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.9,280.2]},{"rootY":0.6,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-103.5,12.1],"haR":[-115.2,62],"shL":[67.2,-104],"elL":[82.7,-4.8],"haL":[88,45.3],"hipR":[-35.6,36.8],"knR":[-10,166.3],"ftR":[15.8,322],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.6,280.3]},{"rootY":0.4,"hips":[0,0],"chest":[-2.8,-86.3],"neck":[-2.8,-86.3],"head":[-11.5,-154.9],"shR":[-70.3,-90.6],"elR":[-104,12.3],"haR":[-116.8,61.9],"shL":[66.9,-104.2],"elL":[82.2,-4.8],"haL":[87.8,45.3],"hipR":[-35.7,36.7],"knR":[-10.7,166],"ftR":[15.4,321.9],"hipL":[30.4,41.8],"knL":[18.6,175.5],"ftL":[-41.7,280.6]},{"rootY":0.6,"hips":[0,0],"chest":[-3,-86.3],"neck":[-3,-86.3],"head":[-11.9,-154.8],"shR":[-70.5,-90.5],"elR":[-103.3,12.9],"haR":[-116.9,62.2],"shL":[66.7,-104.2],"elL":[82.1,-5.1],"haL":[87.5,45],"hipR":[-35.7,36.7],"knR":[-10.6,166.2],"ftR":[15.4,322],"hipL":[30.4,41.7],"knL":[18.8,175.5],"ftL":[-42,280.4]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.3],"neck":[-3.1,-86.3],"head":[-12.1,-154.8],"shR":[-70.5,-90.3],"elR":[-101.1,13.8],"haR":[-114.8,63],"shL":[66.6,-104.2],"elL":[81.9,-5.5],"haL":[87.2,44.7],"hipR":[-35.7,36.7],"knR":[-10.5,166.2],"ftR":[15.6,322.1],"hipL":[30.5,41.7],"knL":[19.3,175.7],"ftL":[-42.1,280.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.2],"neck":[-3.3,-86.2],"head":[-12.3,-154.8],"shR":[-70.7,-90.3],"elR":[-97.7,14.9],"haR":[-111,64],"shL":[66.5,-104.2],"elL":[81.5,-5.3],"haL":[86.9,44.8],"hipR":[-35.6,36.8],"knR":[-10,166.1],"ftR":[15.7,322.1],"hipL":[30.5,41.7],"knL":[19.6,175.7],"ftL":[-42.1,280.1]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.3],"neck":[-3.7,-86.3],"head":[-12.9,-154.9],"shR":[-71,-90.2],"elR":[-92.7,16.8],"haR":[-105.8,65.7],"shL":[66,-104.4],"elL":[80.9,-5.5],"haL":[86,44.6],"hipR":[-35.6,36.7],"knR":[-10.7,166.3],"ftR":[15.3,322],"hipL":[30.7,41.8],"knL":[19.1,175.5],"ftL":[-42.7,278.9]},{"rootY":0.9,"hips":[0,0],"chest":[-3.7,-86.2],"neck":[-3.7,-86.2],"head":[-12.8,-154.8],"shR":[-70.9,-90.4],"elR":[-86.6,18.1],"haR":[-96.5,67.6],"shL":[66.1,-104.1],"elL":[80.3,-5],"haL":[85.4,45.1],"hipR":[-35.5,36.9],"knR":[-9.7,166.2],"ftR":[15.8,322.1],"hipL":[30.7,41.7],"knL":[19.7,175.7],"ftL":[-42.5,279.6]},{"rootY":0.8,"hips":[0,0],"chest":[-4.2,-86.2],"neck":[-4.2,-86.2],"head":[-13.3,-154.8],"shR":[-71.4,-90.6],"elR":[-81.4,19.5],"haR":[-88,69.4],"shL":[65.7,-104],"elL":[79.6,-4.8],"haL":[84.4,45.4],"hipR":[-35.6,36.7],"knR":[-11,166.1],"ftR":[15.2,321.9],"hipL":[30.6,41.9],"knL":[19.2,175.7],"ftL":[-43,279.2]},{"rootY":0.6,"hips":[0,0],"chest":[-3.3,-86.1],"neck":[-3.3,-86.1],"head":[-12.5,-154.7],"shR":[-70.5,-90.5],"elR":[-75.7,20.6],"haR":[-80,70.8],"shL":[66.5,-103.9],"elL":[80.1,-4.4],"haL":[84.6,45.7],"hipR":[-35.2,37.1],"knR":[-8.6,165.9],"ftR":[16.2,322.1],"hipL":[31,41.5],"knL":[20.2,175.6],"ftL":[-42.3,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.3],"neck":[-3.2,-86.3],"head":[-12.7,-154.8],"shR":[-70.3,-90.2],"elR":[-72,21.8],"haR":[-74.2,72.2],"shL":[66.6,-104.3],"elL":[79.8,-4.7],"haL":[84,45.5],"hipR":[-35.4,37],"knR":[-9.5,166],"ftR":[16.2,322],"hipL":[30.8,41.6],"knL":[20.2,175.9],"ftL":[-42.6,279.9]},{"rootY":0.5,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-12.8,-154.8],"shR":[-70.5,-90.1],"elR":[-70.8,21.7],"haR":[-73.5,72.4],"shL":[66.5,-104.4],"elL":[80.3,-4.6],"haL":[83.9,45.7],"hipR":[-35.4,36.9],"knR":[-9.6,165.9],"ftR":[15.9,322],"hipL":[30.7,41.7],"knL":[20.1,175.9],"ftL":[-43,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-13.1,-154.8],"shR":[-70.6,-89.9],"elR":[-73.2,21.4],"haR":[-77,72.3],"shL":[66.4,-104.7],"elL":[80.8,-4.8],"haL":[83.8,45.4],"hipR":[-35.7,36.6],"knR":[-11,165.8],"ftR":[15.5,321.8],"hipL":[30.4,42],"knL":[19.4,176.1],"ftL":[-43.9,279.2]},{"rootY":0.8,"hips":[0,0],"chest":[-2.6,-86.3],"neck":[-2.6,-86.3],"head":[-13,-154.8],"shR":[-69.9,-90.2],"elR":[-79.9,19.8],"haR":[-82.6,71],"shL":[67.1,-104.6],"elL":[82.9,-4.6],"haL":[85.3,45.7],"hipR":[-35.4,36.9],"knR":[-9.7,165.8],"ftR":[16.1,322],"hipL":[30.7,41.7],"knL":[19.9,176.1],"ftL":[-44,279.8]},{"rootY":0.6,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-13.5,-154.8],"shR":[-70.1,-90],"elR":[-94.4,17],"haR":[-94,67.7],"shL":[66.9,-104.9],"elL":[84.4,-5.2],"haL":[86.2,45.1],"hipR":[-35.6,36.7],"knR":[-10.8,165.6],"ftR":[15.3,321.9],"hipL":[30.5,41.9],"knL":[19.7,176.4],"ftL":[-45,279.4]},{"rootY":0.9,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-14.2,-154.7],"shR":[-70.2,-89.8],"elR":[-111.7,11.8],"haR":[-107.5,61.1],"shL":[66.9,-105.3],"elL":[86.6,-6.4],"haL":[87.7,43.9],"hipR":[-35.7,36.6],"knR":[-11.6,165.7],"ftR":[14.9,322],"hipL":[30.4,42],"knL":[19.5,176.5],"ftL":[-46.3,278.7]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.5],"neck":[-2.4,-86.5],"head":[-14.7,-154.6],"shR":[-70.2,-89.3],"elR":[-129.7,3.6],"haR":[-121.5,51.2],"shL":[66.7,-106],"elL":[89.9,-7.8],"haL":[89.8,42.5],"hipR":[-35.8,36.5],"knR":[-11.6,165.6],"ftR":[14.7,322],"hipL":[30.3,42.1],"knL":[19.3,176.6],"ftL":[-47.4,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-2.3,-86.6],"neck":[-2.3,-86.6],"head":[-15.3,-154.4],"shR":[-70.2,-88.7],"elR":[-144.9,-6.2],"haR":[-131.9,38.3],"shL":[66.4,-106.8],"elL":[93.5,-9.7],"haL":[92.3,40.6],"hipR":[-36,36.2],"knR":[-11.8,165],"ftR":[14.1,321.6],"hipL":[30.1,42.3],"knL":[18.8,176.7],"ftL":[-48.1,278.4]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-15.9,-154.2],"shR":[-70.1,-87.8],"elR":[-155.4,-14.3],"haR":[-137.5,25],"shL":[66.1,-107.9],"elL":[97.1,-11.5],"haL":[95.3,38.7],"hipR":[-36.4,36],"knR":[-12.6,164.8],"ftR":[14.2,321.3],"hipL":[29.8,42.5],"knL":[18.4,177],"ftL":[-48,278.3]},{"rootY":1.8,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-16.7,-153.9],"shR":[-70.1,-87.7],"elR":[-159.9,-18.8],"haR":[-139.6,11.3],"shL":[65.9,-108.2],"elL":[99.5,-11.7],"haL":[97.6,38.5],"hipR":[-36.5,35.9],"knR":[-13.4,164.8],"ftR":[14.6,321.3],"hipL":[29.7,42.6],"knL":[17.9,177],"ftL":[-47,278.5]},{"rootY":1.7,"hips":[0,0],"chest":[-1.9,-86.6],"neck":[-1.9,-86.6],"head":[-17.1,-153.7],"shR":[-69.8,-87.7],"elR":[-159.1,-17],"haR":[-138.2,-1.3],"shL":[66.1,-108.3],"elL":[101.1,-10.9],"haL":[99.4,39.2],"hipR":[-36.5,35.9],"knR":[-13.7,164.7],"ftR":[15,321.1],"hipL":[29.8,42.6],"knL":[17.2,176.8],"ftL":[-45.1,278.9]},{"rootY":1.9,"hips":[0,0],"chest":[-1.3,-86.5],"neck":[-1.3,-86.5],"head":[-17,-153.5],"shR":[-69.3,-87.9],"elR":[-152.5,-9.3],"haR":[-131.7,-10.8],"shL":[66.7,-108.4],"elL":[101.5,-10.2],"haL":[100,39.7],"hipR":[-36.6,35.7],"knR":[-14.8,164.9],"ftR":[15.8,321.1],"hipL":[29.6,42.7],"knL":[17,177],"ftL":[-43.3,279.3]},{"rootY":1.5,"hips":[0,0],"chest":[-1,-86.5],"neck":[-1,-86.5],"head":[-16.9,-153.6],"shR":[-69,-88],"elR":[-139.9,2.9],"haR":[-121.3,-15.5],"shL":[67.2,-108.4],"elL":[101.5,-9.5],"haL":[99.8,40.2],"hipR":[-36.7,35.6],"knR":[-15,164.8],"ftR":[16.4,321],"hipL":[29.6,42.8],"knL":[16.9,177.1],"ftL":[-41.6,280.1]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.4],"neck":[-0.8,-86.4],"head":[-16.2,-154.1],"shR":[-68.8,-87.5],"elR":[-123.4,14],"haR":[-108.5,-17.6],"shL":[67.2,-109],"elL":[100.6,-9.4],"haL":[98.9,40.1],"hipR":[-36.7,35.6],"knR":[-16,164.9],"ftR":[17.3,320.8],"hipL":[29.5,42.8],"knL":[17.6,177.2],"ftL":[-40.5,280.1]},{"rootY":1.9,"hips":[0,0],"chest":[-0.2,-86.3],"neck":[-0.2,-86.3],"head":[-15.5,-154.2],"shR":[-68.2,-86.8],"elR":[-108.1,19.6],"haR":[-96.7,-20.4],"shL":[67.7,-109.7],"elL":[100.3,-9.3],"haL":[99.2,40.2],"hipR":[-36.4,36],"knR":[-14.7,164.8],"ftR":[18.9,320.8],"hipL":[29.9,42.5],"knL":[18.8,177.2],"ftL":[-39.3,280.1]},{"rootY":2.2,"hips":[0,0],"chest":[-0.6,-86.3],"neck":[-0.6,-86.3],"head":[-16,-153.9],"shR":[-68.5,-85.8],"elR":[-96.1,19],"haR":[-87.9,-27.4],"shL":[67,-110.7],"elL":[99.1,-9.7],"haL":[98.8,39.9],"hipR":[-36.5,35.9],"knR":[-15.3,165.1],"ftR":[19.4,320.8],"hipL":[29.9,42.5],"knL":[19.2,177.2],"ftL":[-38.8,280]},{"rootY":1.8,"hips":[0,0],"chest":[-0.6,-86.1],"neck":[-0.6,-86.1],"head":[-15.8,-153.3],"shR":[-68.5,-84.2],"elR":[-87.8,13.3],"haR":[-82.2,-36.3],"shL":[66.4,-112.3],"elL":[98.7,-11.2],"haL":[98.8,38.4],"hipR":[-36.3,36.1],"knR":[-14.6,165.1],"ftR":[20,320.9],"hipL":[30.1,42.4],"knL":[19.8,177],"ftL":[-37.9,280.6]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.1],"neck":[-0.8,-86.1],"head":[-16.1,-152],"shR":[-68.7,-82.5],"elR":[-82.9,2.5],"haR":[-78.5,-48.4],"shL":[65.6,-113.8],"elL":[99.1,-12.9],"haL":[98.7,36.6],"hipR":[-36.2,36.2],"knR":[-12.7,164.9],"ftR":[20.4,320.9],"hipL":[30.2,42.3],"knL":[20.4,177],"ftL":[-37.3,280.9]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86],"neck":[-2.1,-86],"head":[-17.4,-151],"shR":[-69.8,-81.8],"elR":[-80.4,-14.2],"haR":[-76.6,-65.1],"shL":[64.1,-114.5],"elL":[98.6,-13.9],"haL":[98.1,35.5],"hipR":[-35.9,36.5],"knR":[-11.6,165.2],"ftR":[20,321.4],"hipL":[30.6,42],"knL":[20.8,176.6],"ftL":[-37.6,281]},{"rootY":1,"hips":[0,0],"chest":[-3.4,-86],"neck":[-3.4,-86],"head":[-18.6,-149.4],"shR":[-71,-81.3],"elR":[-79.9,-33.7],"haR":[-76.1,-83.5],"shL":[62.6,-115],"elL":[98.1,-14.9],"haL":[97.7,34.5],"hipR":[-35.8,36.6],"knR":[-11.1,165.4],"ftR":[19.8,321.7],"hipL":[30.6,42],"knL":[21.2,176.5],"ftL":[-37.9,281.3]},{"rootY":0.7,"hips":[0,0],"chest":[-4.3,-85.9],"neck":[-4.3,-85.9],"head":[-19.3,-147.9],"shR":[-71.7,-80.2],"elR":[-79.6,-54.1],"haR":[-75.1,-102.7],"shL":[61.3,-115.9],"elL":[97.6,-16.4],"haL":[97.6,33.1],"hipR":[-35,37.3],"knR":[-8.7,165.8],"ftR":[20,322.2],"hipL":[31.3,41.4],"knL":[21.7,175.9],"ftL":[-37.7,281.5]},{"rootY":0.4,"hips":[0,0],"chest":[-5.4,-85.8],"neck":[-5.4,-85.8],"head":[-20.4,-146.7],"shR":[-72.6,-79.8],"elR":[-78.8,-74.5],"haR":[-73.7,-121.9],"shL":[59.9,-116.1],"elL":[96.5,-17.2],"haL":[97.2,32.2],"hipR":[-34.9,37.3],"knR":[-8.1,165.9],"ftR":[20.2,322.6],"hipL":[31.4,41.3],"knL":[21.8,175.9],"ftL":[-38.1,282]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.5,-85.6],"neck":[-6.5,-85.6],"head":[-21.7,-144.8],"shR":[-73.5,-79.6],"elR":[-77.5,-93],"haR":[-72,-139.1],"shL":[58.6,-116],"elL":[95.8,-18.1],"haL":[97.3,31.3],"hipR":[-34.7,37.5],"knR":[-7.4,166],"ftR":[20,322.8],"hipL":[31.5,41.2],"knL":[21.6,175.8],"ftL":[-38.9,282.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-8,-85.4],"neck":[-8,-85.4],"head":[-22.7,-143.5],"shR":[-74.7,-78.6],"elR":[-76.1,-108.1],"haR":[-70,-153.8],"shL":[56.6,-116.6],"elL":[94.1,-19.5],"haL":[96.5,30],"hipR":[-34.7,37.4],"knR":[-8.9,166.3],"ftR":[19.2,322.9],"hipL":[31.4,41.3],"knL":[20.8,175.6],"ftL":[-40.1,281.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-9,-85.2],"neck":[-9,-85.2],"head":[-23.7,-142.3],"shR":[-75.3,-77.8],"elR":[-73.5,-120.5],"haR":[-67.4,-166.1],"shL":[55.1,-117],"elL":[93.2,-20.7],"haL":[96.4,28.8],"hipR":[-34.9,37.3],"knR":[-9.1,166.4],"ftR":[19.4,323.1],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-40.6,282.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.2,-85],"neck":[-9.2,-85],"head":[-24.1,-141.3],"shR":[-75.2,-77.1],"elR":[-69.6,-129.5],"haR":[-63.8,-175.6],"shL":[54.6,-117.4],"elL":[93.4,-22],"haL":[97.4,27.5],"hipR":[-34.1,38],"knR":[-6.3,166.5],"ftR":[20.1,323.4],"hipL":[31.8,40.7],"knL":[21.9,175.3],"ftL":[-40.1,282.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.9,-84.8],"neck":[-9.9,-84.8],"head":[-24.7,-140.6],"shR":[-75.8,-76.7],"elR":[-65.3,-136.2],"haR":[-60.1,-183.3],"shL":[53.6,-117.3],"elL":[93.5,-23.4],"haL":[97.8,26.1],"hipR":[-33.9,38.1],"knR":[-5.2,166.5],"ftR":[20.5,323.4],"hipL":[32,40.6],"knL":[22.6,175.2],"ftL":[-39.5,282.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.6,-84.6],"neck":[-10.6,-84.6],"head":[-25.6,-139.9],"shR":[-76.2,-76.6],"elR":[-60.5,-140.5],"haR":[-56,-188.9],"shL":[52.7,-117.1],"elL":[94.2,-24.7],"haL":[98.5,24.7],"hipR":[-34,38.1],"knR":[-5.2,166.5],"ftR":[21,323.3],"hipL":[31.8,40.6],"knL":[23.2,175.3],"ftL":[-39.4,282.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-11.5,-84.5],"neck":[-11.5,-84.5],"head":[-26,-140.1],"shR":[-77,-76.7],"elR":[-55.2,-140.9],"haR":[-51.5,-190.5],"shL":[51.7,-116.8],"elL":[95.9,-26.3],"haL":[99.2,23.1],"hipR":[-33.9,38.2],"knR":[-4.9,166.3],"ftR":[20.7,322.9],"hipL":[32.1,40.5],"knL":[23.3,175.1],"ftL":[-39.8,281.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-12.4,-84.4],"neck":[-12.4,-84.4],"head":[-26.3,-141.5],"shR":[-78,-77.3],"elR":[-50.3,-137.7],"haR":[-46.2,-188.2],"shL":[51.2,-116.1],"elL":[98.6,-28.4],"haL":[99.7,20.6],"hipR":[-34,38.1],"knR":[-4.3,166],"ftR":[21.1,322.6],"hipL":[31.9,40.6],"knL":[23.9,175.3],"ftL":[-39.8,281.7]},{"rootY":0,"hips":[0,0],"chest":[-12.8,-84.4],"neck":[-12.8,-84.4],"head":[-25.9,-142],"shR":[-78.9,-77.5],"elR":[-47.3,-126.8],"haR":[-41.3,-177.3],"shL":[51.3,-115.8],"elL":[101.4,-31.1],"haL":[100.5,17],"hipR":[-33.9,38.2],"knR":[-4.5,166.2],"ftR":[21.6,322.6],"hipL":[32,40.5],"knL":[24.6,175.2],"ftL":[-39.4,281.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.9,-84.6],"neck":[-12.9,-84.6],"head":[-25,-145.3],"shR":[-79.4,-79.4],"elR":[-46.2,-108.4],"haR":[-37,-158.7],"shL":[52.1,-114.4],"elL":[103.7,-31.3],"haL":[101.4,15.2],"hipR":[-34,38.1],"knR":[-3.7,165.8],"ftR":[21.8,322.3],"hipL":[32,40.6],"knL":[25,175.3],"ftL":[-38.8,281.4]},{"rootY":-0.2,"hips":[0,0],"chest":[-12,-84.9],"neck":[-12,-84.9],"head":[-24.6,-146],"shR":[-79,-81.8],"elR":[-47.5,-83.3],"haR":[-33.6,-132.5],"shL":[54.2,-112.6],"elL":[104.8,-30.1],"haL":[102.6,13.6],"hipR":[-34.4,37.8],"knR":[-2.6,165.3],"ftR":[22.7,321.8],"hipL":[31.6,40.9],"knL":[25.3,175.7],"ftL":[-37.6,282]},{"rootY":0,"hips":[0,0],"chest":[-10.2,-85.3],"neck":[-10.2,-85.3],"head":[-22.7,-147.8],"shR":[-77.4,-85.5],"elR":[-50.7,-54.6],"haR":[-31.3,-101.8],"shL":[57.3,-109.7],"elL":[103.7,-25.3],"haL":[103.7,14.9],"hipR":[-33.8,38.4],"knR":[-1.7,165.6],"ftR":[23.4,322],"hipL":[32.4,40.3],"knL":[25.1,175],"ftL":[-36.6,281.6]},{"rootY":0.1,"hips":[0,0],"chest":[-8.2,-85.6],"neck":[-8.2,-85.6],"head":[-20.5,-148.1],"shR":[-75.6,-86.8],"elR":[-56.6,-22.7],"haR":[-32.8,-65.8],"shL":[59.9,-108.9],"elL":[99.6,-20.3],"haL":[103.3,16.7],"hipR":[-33.7,38.4],"knR":[-2.1,165.7],"ftR":[24,322],"hipL":[32.5,40.3],"knL":[25,175],"ftL":[-35.9,281.6]},{"rootY":0.3,"hips":[0,0],"chest":[-6.2,-85.8],"neck":[-6.2,-85.8],"head":[-18.7,-148.5],"shR":[-73.4,-88.5],"elR":[-63.5,4.4],"haR":[-38.1,-32],"shL":[62.3,-107.6],"elL":[94.3,-15.3],"haL":[103,20.1],"hipR":[-34.2,38],"knR":[-4.4,165.8],"ftR":[24.1,321.8],"hipL":[32.1,40.7],"knL":[25.1,175.4],"ftL":[-35.5,281.8]},{"rootY":0.7,"hips":[0,0],"chest":[-3.7,-85.9],"neck":[-3.7,-85.9],"head":[-16.9,-148.5],"shR":[-70.6,-88.5],"elR":[-71.1,22.4],"haR":[-47.8,-1],"shL":[64.6,-107.7],"elL":[89.1,-14.4],"haL":[103.3,22],"hipR":[-34.4,37.9],"knR":[-6.3,165.9],"ftR":[24.3,321.7],"hipL":[31.9,40.8],"knL":[25.1,175.6],"ftL":[-34.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-2.5,-85.5],"neck":[-2.5,-85.5],"head":[-17.1,-147.2],"shR":[-69.2,-87.7],"elR":[-77.5,27.3],"haR":[-60.6,22.3],"shL":[65.5,-107.8],"elL":[84.5,-16],"haL":[104,23.5],"hipR":[-34.8,37.5],"knR":[-8.9,166],"ftR":[23.9,321.9],"hipL":[31.4,41.1],"knL":[25.1,176.1],"ftL":[-34.8,281.2]},{"rootY":1.1,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-18.6,-146.9],"shR":[-68.8,-86.6],"elR":[-79.3,22.9],"haR":[-74.3,36.9],"shL":[65.9,-108.4],"elL":[82.9,-21.4],"haL":[104.8,21.8],"hipR":[-35.4,37],"knR":[-11,165.4],"ftR":[23.2,321.3],"hipL":[30.9,41.5],"knL":[24.7,176.5],"ftL":[-35.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-1.8,-85.2],"neck":[-1.8,-85.2],"head":[-20,-146.1],"shR":[-69,-84.8],"elR":[-81.3,15.1],"haR":[-87.8,44.5],"shL":[66,-109.7],"elL":[84.1,-28.5],"haL":[107.3,16.3],"hipR":[-35.4,37],"knR":[-10.3,165.2],"ftR":[22.9,321.3],"hipL":[30.9,41.4],"knL":[24.4,176.5],"ftL":[-38.2,281.3]},{"rootY":0.9,"hips":[0,0],"chest":[-1.7,-84.7],"neck":[-1.7,-84.7],"head":[-20.5,-144.5],"shR":[-69.3,-83.1],"elR":[-85.6,5.7],"haR":[-100.8,44.4],"shL":[65.8,-110.1],"elL":[88.6,-36.3],"haL":[113.8,6.6],"hipR":[-34.5,37.8],"knR":[-7.5,165.8],"ftR":[23.2,322.1],"hipL":[31.7,40.8],"knL":[24.3,175.7],"ftL":[-40.2,280.2]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-83.7],"neck":[-2.1,-83.7],"head":[-21.6,-143.4],"shR":[-69.9,-80.5],"elR":[-91.8,-2.2],"haR":[-113.8,40.7],"shL":[64.7,-110.5],"elL":[95.4,-45.8],"haL":[123.4,-8],"hipR":[-34.6,37.8],"knR":[-7.9,165.3],"ftR":[21.9,322.3],"hipL":[31.8,40.7],"knL":[23.5,175.7],"ftL":[-42.3,281.4]},{"rootY":-0.4,"hips":[0,0],"chest":[-2.8,-82.6],"neck":[-2.8,-82.6],"head":[-22.9,-141.9],"shR":[-70.6,-77.6],"elR":[-99.9,-8.7],"haR":[-127.4,34.4],"shL":[63.1,-111],"elL":[104.3,-56.3],"haL":[135.6,-25.8],"hipR":[-34.5,37.9],"knR":[-8,165.1],"ftR":[21.1,322.5],"hipL":[31.9,40.6],"knL":[23.2,175.6],"ftL":[-44.3,281.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-3.2,-81.7],"neck":[-3.2,-81.7],"head":[-23.7,-140.7],"shR":[-70.8,-74.7],"elR":[-108.3,-14.1],"haR":[-140.1,25.1],"shL":[61.7,-111.7],"elL":[115,-69.2],"haL":[150.3,-47.1],"hipR":[-33.6,38.6],"knR":[-5.2,165.3],"ftR":[20.8,323],"hipL":[32.7,40],"knL":[23.6,175.1],"ftL":[-45.3,281]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.7,-79.9],"neck":[-4.7,-79.9],"head":[-25.4,-138.5],"shR":[-72,-70.5],"elR":[-118.4,-16.8],"haR":[-153.6,16],"shL":[58.9,-111.9],"elL":[124.4,-83.6],"haL":[163.9,-69.6],"hipR":[-33.9,38.4],"knR":[-7.1,164.8],"ftR":[19.4,322.7],"hipL":[32.3,40.2],"knL":[23.6,175.5],"ftL":[-47,281.1]},{"rootY":0,"hips":[0,0],"chest":[-5.3,-78.5],"neck":[-5.3,-78.5],"head":[-26.5,-137.2],"shR":[-72.2,-66.8],"elR":[-128.6,-18.5],"haR":[-166.6,7.5],"shL":[57,-112.2],"elL":[134.4,-98.6],"haL":[178,-92.1],"hipR":[-34,38.3],"knR":[-7.7,164.3],"ftR":[18.5,322.6],"hipL":[32.2,40.3],"knL":[24,175.8],"ftL":[-48.7,280.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.7,-76.9],"neck":[-6.7,-76.9],"head":[-28.3,-135.4],"shR":[-73.2,-63.5],"elR":[-139,-20.7],"haR":[-179.6,-0.2],"shL":[54.5,-111.8],"elL":[142.4,-112.7],"haL":[189.1,-112.7],"hipR":[-34.1,38.1],"knR":[-8.1,163.7],"ftR":[16.6,322.5],"hipL":[32,40.5],"knL":[23.4,176],"ftL":[-51.1,280.4]},{"rootY":0.2,"hips":[0,0],"chest":[-7.9,-75.4],"neck":[-7.9,-75.4],"head":[-30.1,-134],"shR":[-74.1,-60.6],"elR":[-149.4,-22.9],"haR":[-192.8,-6],"shL":[52.3,-111.2],"elL":[148.7,-124.8],"haL":[197.4,-130.6],"hipR":[-34.4,37.9],"knR":[-9.2,163],"ftR":[15.2,322.2],"hipL":[31.7,40.6],"knL":[22.9,176.1],"ftL":[-53.9,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-8.5,-74],"neck":[-8.5,-74],"head":[-31.3,-132.9],"shR":[-74.3,-58.1],"elR":[-158.6,-24.5],"haR":[-204.5,-10.1],"shL":[50.9,-110.5],"elL":[153,-134.8],"haL":[202.3,-144.8],"hipR":[-34.1,38.2],"knR":[-9.5,162.7],"ftR":[14.6,322.2],"hipL":[32.1,40.3],"knL":[22.5,175.8],"ftL":[-56.3,278.5]},{"rootY":0.9,"hips":[0,0],"chest":[-9.8,-72.7],"neck":[-9.8,-72.7],"head":[-33,-131.8],"shR":[-75.3,-56.1],"elR":[-168,-24.7],"haR":[-216,-12.1],"shL":[49,-109.5],"elL":[154.1,-141.7],"haL":[202.7,-154.2],"hipR":[-34.5,37.9],"knR":[-11.4,162.1],"ftR":[12.5,321.8],"hipL":[31.7,40.7],"knL":[21.6,176],"ftL":[-58.8,278.4]},{"rootY":1.3,"hips":[0,0],"chest":[-10.5,-71],"neck":[-10.5,-71],"head":[-33.7,-130.5],"shR":[-75.8,-53.5],"elR":[-175.6,-23.3],"haR":[-225.1,-11.8],"shL":[47.5,-108.3],"elL":[153,-145.6],"haL":[199.6,-158.7],"hipR":[-34.6,37.8],"knR":[-12.6,161.3],"ftR":[11.4,321.4],"hipL":[31.6,40.7],"knL":[21.2,176],"ftL":[-60.8,277.7]},{"rootY":1.5,"hips":[0,0],"chest":[-11.4,-69.8],"neck":[-11.4,-69.8],"head":[-34.7,-129.5],"shR":[-76.5,-51.8],"elR":[-181.8,-20.4],"haR":[-231.9,-9.8],"shL":[46.4,-107.1],"elL":[149.5,-146.3],"haL":[192.5,-158.6],"hipR":[-34.8,37.6],"knR":[-13.9,160.7],"ftR":[9.9,321.1],"hipL":[31.4,40.9],"knL":[20.9,176.2],"ftL":[-62.2,277.3]},{"rootY":1.9,"hips":[0,0],"chest":[-11.8,-68.9],"neck":[-11.8,-68.9],"head":[-35.1,-129.1],"shR":[-76.8,-50.7],"elR":[-185.3,-16.2],"haR":[-235.1,-6],"shL":[45.8,-106.1],"elL":[143.9,-143.9],"haL":[181.9,-153.9],"hipR":[-34.7,37.7],"knR":[-14.1,160.2],"ftR":[9.5,320.8],"hipL":[31.5,40.9],"knL":[21.5,176],"ftL":[-62.5,276.8]},{"rootY":2.2,"hips":[0,0],"chest":[-12.4,-68.2],"neck":[-12.4,-68.2],"head":[-36,-128.8],"shR":[-77.4,-50],"elR":[-185.5,-9.6],"haR":[-234.8,0.1],"shL":[45.2,-105.1],"elL":[136,-137.9],"haL":[167.6,-144.6],"hipR":[-34.7,37.7],"knR":[-15.6,159.7],"ftR":[8.3,320.4],"hipL":[31.6,40.8],"knL":[21.7,175.9],"ftL":[-63.2,276.1]},{"rootY":2.6,"hips":[0,0],"chest":[-12.5,-67.6],"neck":[-12.5,-67.6],"head":[-36.3,-128.4],"shR":[-77.4,-49.2],"elR":[-180.6,-2.9],"haR":[-228.5,8],"shL":[44.9,-104.2],"elL":[125.9,-128.7],"haL":[150.1,-131.5],"hipR":[-34.8,37.6],"knR":[-16.4,159],"ftR":[7.7,320],"hipL":[31.6,40.9],"knL":[21.8,175.8],"ftL":[-63.3,276]},{"rootY":3.4,"hips":[0,0],"chest":[-12.4,-67.6],"neck":[-12.4,-67.6],"head":[-36.3,-128.8],"shR":[-77.4,-49.9],"elR":[-171.1,1.9],"haR":[-216.8,15.3],"shL":[45.4,-103.2],"elL":[114.6,-113.8],"haL":[130.2,-113.5],"hipR":[-35.3,37],"knR":[-21,157.8],"ftR":[6.3,319],"hipL":[31.2,41.2],"knL":[21.1,175.8],"ftL":[-63.5,276.1]},{"rootY":3.7,"hips":[0,0],"chest":[-11.9,-67.7],"neck":[-11.9,-67.7],"head":[-35.9,-129.3],"shR":[-77.3,-51],"elR":[-158.2,5.6],"haR":[-200,23.5],"shL":[46.4,-102.1],"elL":[99.1,-94],"haL":[106.6,-91.5],"hipR":[-35.6,36.7],"knR":[-22.5,157.3],"ftR":[6.1,318.5],"hipL":[31,41.4],"knL":[20.8,175.9],"ftL":[-62.9,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10.9,-68],"neck":[-10.9,-68],"head":[-34.5,-130.4],"shR":[-76.3,-51.7],"elR":[-141,9.1],"haR":[-177.2,32.4],"shL":[47.7,-102.2],"elL":[76.4,-73],"haL":[78.8,-68.5],"hipR":[-35.4,36.9],"knR":[-22.7,157.6],"ftR":[6.9,318.5],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-61.5,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10,-68.5],"neck":[-10,-68.5],"head":[-33.6,-131.2],"shR":[-75.7,-53.2],"elR":[-122.4,10.7],"haR":[-150.5,39.7],"shL":[49.4,-101.7],"elL":[54.3,-58.2],"haL":[50.6,-48.9],"hipR":[-35.7,36.6],"knR":[-24.9,157.2],"ftR":[6.7,317.9],"hipL":[30.9,41.7],"knL":[20.3,176],"ftL":[-60.8,275.9]},{"rootY":3.9,"hips":[0,0],"chest":[-9.3,-69.5],"neck":[-9.3,-69.5],"head":[-32.8,-132.6],"shR":[-75.3,-55.2],"elR":[-103.8,12.2],"haR":[-120.9,46.2],"shL":[50.7,-101.7],"elL":[33.4,-44.9],"haL":[23.5,-30.4],"hipR":[-36,36.3],"knR":[-27.2,157.5],"ftR":[6.3,317.7],"hipL":[30.5,42],"knL":[18.8,176.3],"ftL":[-60.8,275.5]},{"rootY":4.2,"hips":[0,0],"chest":[-8.1,-70.8],"neck":[-8.1,-70.8],"head":[-31,-134.6],"shR":[-74.3,-57.3],"elR":[-83.1,12.4],"haR":[-88,49.4],"shL":[52.1,-102.6],"elL":[18.6,-36],"haL":[1,-17],"hipR":[-35.9,36.4],"knR":[-28.2,157.5],"ftR":[6.6,317.1],"hipL":[30.6,42],"knL":[17.8,176.2],"ftL":[-60.9,274.3]},{"rootY":5.9,"hips":[0,0],"chest":[-6.1,-71.6],"neck":[-6.1,-71.6],"head":[-28.7,-135.9],"shR":[-72.5,-59.6],"elR":[-59.7,11.4],"haR":[-55.4,48.4],"shL":[54.8,-101.9],"elL":[11.8,-28.3],"haL":[-15.1,-6.9],"hipR":[-35.7,36.5],"knR":[-25.6,156.4],"ftR":[9.1,315.7],"hipL":[30.8,41.9],"knL":[17.6,175.5],"ftL":[-60.8,271.5]},{"rootY":8.3,"hips":[0,0],"chest":[-3.8,-72.8],"neck":[-3.8,-72.8],"head":[-26.3,-137.5],"shR":[-70.5,-62],"elR":[-36.2,8.4],"haR":[-25.3,42.6],"shL":[57.6,-102],"elL":[5.1,-23.9],"haL":[-27.5,-1.2],"hipR":[-35.8,36.5],"knR":[-24.5,155.1],"ftR":[11.9,313.5],"hipL":[30.7,42],"knL":[17.8,174.8],"ftL":[-62.9,265.8]},{"rootY":10.6,"hips":[0,0],"chest":[-2.9,-74.7],"neck":[-2.9,-74.7],"head":[-24.4,-140.2],"shR":[-69.8,-65.2],"elR":[-15.4,3.6],"haR":[0.7,34.9],"shL":[59.4,-102.7],"elL":[-1.2,-23.2],"haL":[-36.5,0.2],"hipR":[-35.8,36.6],"knR":[-26.1,153.9],"ftR":[13.2,310.4],"hipL":[30.7,42],"knL":[18,174.2],"ftL":[-67.1,259.2]},{"rootY":14.2,"hips":[0,0],"chest":[-2.2,-76.8],"neck":[-2.2,-76.8],"head":[-23.5,-142.7],"shR":[-69.5,-69.3],"elR":[0.5,1.1],"haR":[20.3,26.6],"shL":[61.3,-102.8],"elL":[0.2,-22.1],"haL":[-39.8,-1.5],"hipR":[-36.1,36.4],"knR":[-26.3,151.9],"ftR":[15.4,306.7],"hipL":[30.4,42.1],"knL":[18.3,173.2],"ftL":[-70.2,254.4]},{"rootY":18.5,"hips":[0,0],"chest":[-1.3,-78.1],"neck":[-1.3,-78.1],"head":[-21.8,-144.2],"shR":[-68.8,-70.6],"elR":[5.8,0.4],"haR":[31.5,18.6],"shL":[63,-104.2],"elL":[6.9,-22.3],"haL":[-37.7,-7.2],"hipR":[-36.2,36.1],"knR":[-25.3,149.6],"ftR":[17.4,302],"hipL":[30.2,42.2],"knL":[19.4,172.1],"ftL":[-73.7,251.3]},{"rootY":23.2,"hips":[0,0],"chest":[-1.1,-79.2],"neck":[-1.1,-79.2],"head":[-20.3,-145.6],"shR":[-68.8,-72.4],"elR":[-0.1,7.2],"haR":[34.4,13.9],"shL":[64.4,-105.1],"elL":[20.3,-26],"haL":[-28.6,-18],"hipR":[-36.3,35.7],"knR":[-23.1,147],"ftR":[19.9,297],"hipL":[30.2,42.2],"knL":[21.6,171],"ftL":[-76.5,250.8]},{"rootY":26.4,"hips":[0,0],"chest":[-1.8,-80.2],"neck":[-1.8,-80.2],"head":[-19.5,-146.8],"shR":[-69.2,-73.7],"elR":[-12.7,13.4],"haR":[29.5,10],"shL":[64.8,-106],"elL":[38.8,-32.6],"haL":[-11.6,-30.5],"hipR":[-35.9,35.2],"knR":[-20.3,145.7],"ftR":[22.4,293.6],"hipL":[30.2,42.1],"knL":[25,170.2],"ftL":[-79,252.9]},{"rootY":28.6,"hips":[0,0],"chest":[-1.7,-80.9],"neck":[-1.7,-80.9],"head":[-18,-147.7],"shR":[-68.4,-73.4],"elR":[-26.4,17.8],"haR":[20.9,8.7],"shL":[65,-107.8],"elL":[69.8,-43.4],"haL":[19.8,-41.7],"hipR":[-35.2,35.3],"knR":[-16.4,144.4],"ftR":[25.4,290.9],"hipL":[30.7,41.9],"knL":[28.4,169.6],"ftL":[-79.8,256.8]},{"rootY":27.7,"hips":[0,0],"chest":[-1.3,-80.8],"neck":[-1.3,-80.8],"head":[-16,-147.9],"shR":[-66,-73.2],"elR":[-38.9,20],"haR":[10.7,8.7],"shL":[65.1,-108.6],"elL":[109.8,-57.4],"haL":[59.9,-49.7],"hipR":[-33.6,35.8],"knR":[-10.9,146],"ftR":[29.8,291.9],"hipL":[31.2,41.6],"knL":[32.1,169.9],"ftL":[-80.3,260.2]},{"rootY":22.7,"hips":[0,0],"chest":[0.2,-81],"neck":[0.2,-81],"head":[-14.3,-148],"shR":[-61.5,-71.1],"elR":[-51.3,24.2],"haR":[-1.1,14.6],"shL":[64.8,-110.9],"elL":[145.1,-78.8],"haL":[99.2,-60.9],"hipR":[-32.5,36],"knR":[-4.7,149.3],"ftR":[32.9,296.5],"hipL":[31,41.6],"knL":[32.7,171],"ftL":[-78.8,268.1]},{"rootY":14.5,"hips":[0,0],"chest":[2.7,-81],"neck":[2.7,-81],"head":[-12.5,-147.7],"shR":[-55,-69.5],"elR":[-63.4,27.4],"haR":[-12.4,24.6],"shL":[64.2,-112.8],"elL":[168.1,-98.7],"haL":[131.5,-74.4],"hipR":[-30,37.2],"knR":[3.4,155],"ftR":[35.6,304.8],"hipL":[31.2,40.8],"knL":[31.3,171.9],"ftL":[-76.6,277]},{"rootY":5.8,"hips":[0,0],"chest":[5.5,-80.4],"neck":[5.5,-80.4],"head":[-11.1,-146.8],"shR":[-47.9,-67.2],"elR":[-74.5,29.1],"haR":[-23.7,35.8],"shL":[63.6,-113.8],"elL":[175.5,-115.3],"haL":[153.5,-88.5],"hipR":[-28.4,37.9],"knR":[11.6,159],"ftR":[34.7,312.3],"hipL":[29.9,40.5],"knL":[28.2,172.8],"ftL":[-72.9,287.4]},{"rootY":-3.5,"hips":[0,0],"chest":[8,-80.1],"neck":[8,-80.1],"head":[-10.1,-146.7],"shR":[-40,-66.3],"elR":[-83.7,26.9],"haR":[-35.2,43],"shL":[61.4,-114.7],"elL":[165.6,-129.7],"haL":[162.6,-101.6],"hipR":[-24.8,39.8],"knR":[18.5,163.9],"ftR":[23.9,319.5],"hipL":[29,38.8],"knL":[23.3,172.7],"ftL":[-70.1,297]},{"rootY":-13.1,"hips":[0,0],"chest":[10.7,-79.7],"neck":[10.7,-79.7],"head":[-9,-145.8],"shR":[-31.9,-63.3],"elR":[-86.4,25],"haR":[-41.9,49.1],"shL":[59,-117.1],"elL":[144.3,-139.6],"haL":[159.8,-115.4],"hipR":[-21.8,41.1],"knR":[22,167.9],"ftR":[10.7,325.6],"hipL":[26.9,37.4],"knL":[18.6,172.2],"ftL":[-66.1,305.9]},{"rootY":-21.2,"hips":[0,0],"chest":[13.1,-78.7],"neck":[13.1,-78.7],"head":[-9.2,-143.9],"shR":[-24.8,-59.8],"elR":[-85.6,24.7],"haR":[-46.4,54.1],"shL":[56.5,-118.7],"elL":[112.3,-145.7],"haL":[144.2,-125.4],"hipR":[-20.4,41.2],"knR":[20.6,169.9],"ftR":[-0.1,328.9],"hipL":[22.6,37.3],"knL":[14.6,172.2],"ftL":[-63.9,311.9]},{"rootY":-27.3,"hips":[0,0],"chest":[14.9,-77.8],"neck":[14.9,-77.8],"head":[-9.6,-142.1],"shR":[-17.5,-56.4],"elR":[-82.3,23.5],"haR":[-48.2,56.5],"shL":[53.2,-120.2],"elL":[75.6,-148.3],"haL":[118.9,-135],"hipR":[-18.5,40.9],"knR":[19.2,171.2],"ftR":[-9.2,330.8],"hipL":[17.9,37.5],"knL":[13.1,172.4],"ftL":[-62.4,315.9]},{"rootY":-31.2,"hips":[0,0],"chest":[17,-77.9],"neck":[17,-77.9],"head":[-9,-141.2],"shR":[-9.7,-53.9],"elR":[-75.9,21.9],"haR":[-46.9,57.5],"shL":[50.1,-122.7],"elL":[43.7,-149.3],"haL":[93.3,-143.3],"hipR":[-15.4,41.4],"knR":[19.6,172.6],"ftR":[-16.5,332],"hipL":[14,36.9],"knL":[13.5,172],"ftL":[-58.8,318.7]},{"rootY":-33.5,"hips":[0,0],"chest":[19.4,-77.9],"neck":[19.4,-77.9],"head":[-7.8,-139.9],"shR":[1.9,-53.7],"elR":[-62.6,20.4],"haR":[-38.3,56.6],"shL":[43.9,-123.4],"elL":[10.6,-147.7],"haL":[60.5,-149.9],"hipR":[-11.2,42.2],"knR":[22.6,173.8],"ftR":[-18.5,332.7],"hipL":[10.4,35.9],"knL":[15.1,170.8],"ftL":[-52.4,320.4]},{"rootY":-34.5,"hips":[0,0],"chest":[21.6,-78.1],"neck":[21.6,-78.1],"head":[-6.6,-138.7],"shR":[10.9,-52.5],"elR":[-47.9,21.5],"haR":[-27.8,58],"shL":[39.5,-125.1],"elL":[-16,-145],"haL":[29.5,-154.9],"hipR":[-6.2,41.7],"knR":[24.9,173.8],"ftR":[-19.2,332.2],"hipL":[5.3,36.7],"knL":[17.7,171.3],"ftL":[-45.6,322.4]},{"rootY":-34.9,"hips":[0,0],"chest":[22.4,-78.4],"neck":[22.4,-78.4],"head":[-7.1,-136.7],"shR":[20.1,-51.6],"elR":[-29.7,25.8],"haR":[-13.2,60.6],"shL":[32.7,-126.6],"elL":[-39.7,-142.4],"haL":[-2.5,-159.2],"hipR":[-0.5,41.2],"knR":[25,174.4],"ftR":[-21.6,332.3],"hipL":[0.5,37.4],"knL":[18.8,171.6],"ftL":[-42,323.2]},{"rootY":-34.9,"hips":[0,0],"chest":[24.5,-78.8],"neck":[24.5,-78.8],"head":[-5.4,-135],"shR":[33,-52],"elR":[-5.8,26.2],"haR":[9.4,59.8],"shL":[24.5,-127.5],"elL":[-60.4,-138.6],"haL":[-33.6,-161.1],"hipR":[5,40.4],"knR":[26.2,174.1],"ftR":[-22.6,331.4],"hipL":[-5.5,38.2],"knL":[18,171.9],"ftL":[-36,325.6]},{"rootY":-34.9,"hips":[0,0],"chest":[26.4,-78.9],"neck":[26.4,-78.9],"head":[-3.6,-132.3],"shR":[45.9,-53],"elR":[19.5,25.2],"haR":[34.3,57.2],"shL":[15.6,-127],"elL":[-79,-133],"haL":[-64.2,-159.6],"hipR":[10.5,40.4],"knR":[26.8,174.7],"ftR":[-22.9,331],"hipL":[-11.3,38.2],"knL":[15.7,171.3],"ftL":[-30.3,326.4]},{"rootY":-36.2,"hips":[0,0],"chest":[27.3,-79.3],"neck":[27.3,-79.3],"head":[0.1,-131.3],"shR":[55.5,-52.5],"elR":[42.6,27.6],"haR":[58.6,58.8],"shL":[8.5,-128.3],"elL":[-94.1,-128.9],"haL":[-92.1,-157.4],"hipR":[15.8,40.1],"knR":[26.2,175],"ftR":[-22.1,330.5],"hipL":[-15.7,38.5],"knL":[13.9,170.8],"ftL":[-24.6,327.3]},{"rootY":-35.4,"hips":[0,0],"chest":[28.2,-79.8],"neck":[28.2,-79.8],"head":[4.9,-130.3],"shR":[66.8,-54],"elR":[68.3,27.3],"haR":[87,58],"shL":[-0.9,-128.1],"elL":[-108.6,-123.6],"haL":[-118.7,-153.2],"hipR":[20.4,40.2],"knR":[28.8,175],"ftR":[-16.4,330.7],"hipL":[-20.7,38.5],"knL":[10.2,169.4],"ftL":[-16.5,327.4]},{"rootY":-35.2,"hips":[0,0],"chest":[27.9,-80.4],"neck":[27.9,-80.4],"head":[10.2,-129.9],"shR":[75,-54.5],"elR":[96.7,32.7],"haR":[115.3,61.5],"shL":[-9.4,-128.9],"elL":[-120.7,-119.3],"haL":[-141,-147.2],"hipR":[25,39.1],"knR":[29.6,174.1],"ftR":[-12.5,329.5],"hipL":[-23.5,39.5],"knL":[8.1,169.4],"ftL":[-9.9,328.2]},{"rootY":-34,"hips":[0,0],"chest":[27.9,-80.6],"neck":[27.9,-80.6],"head":[17.3,-128.4],"shR":[83.3,-57.2],"elR":[112.9,28.4],"haR":[139.6,59],"shL":[-18.1,-127.1],"elL":[-128.2,-112],"haL":[-157.9,-139.5],"hipR":[30.2,37.9],"knR":[29.6,173],"ftR":[-6.4,328.5],"hipL":[-25.7,40.7],"knL":[5.1,168.8],"ftL":[-2.8,327.9]},{"rootY":-32.7,"hips":[0,0],"chest":[26,-81.5],"neck":[26,-81.5],"head":[24.3,-128.6],"shR":[87.7,-60.5],"elR":[130.9,27.8],"haR":[162.1,58.5],"shL":[-26.9,-126],"elL":[-132.7,-105.6],"haL":[-170.6,-132],"hipR":[33.1,37.7],"knR":[27.8,172.6],"ftR":[0.6,327.5],"hipL":[-28.4,40.7],"knL":[-1.6,167.5],"ftL":[3.3,327.3]},{"rootY":-31.5,"hips":[0,0],"chest":[24.1,-81.8],"neck":[24.1,-81.8],"head":[32.6,-127.8],"shR":[89.1,-62.9],"elR":[143.2,27.6],"haR":[178,58.6],"shL":[-33.4,-124.4],"elL":[-129.8,-97.2],"haL":[-173,-121.6],"hipR":[35.4,36.9],"knR":[26.1,171.6],"ftR":[10.7,326.2],"hipL":[-29.8,41.4],"knL":[-8.3,166],"ftL":[7.4,326.1]},{"rootY":-30.3,"hips":[0,0],"chest":[23.3,-82],"neck":[23.3,-82],"head":[43.5,-127.2],"shR":[88.6,-65.2],"elR":[149.6,26.2],"haR":[187.8,57.5],"shL":[-36.2,-122.5],"elL":[-119.7,-88.4],"haL":[-165.4,-109.4],"hipR":[36.9,35.2],"knR":[25,170],"ftR":[20.9,324.6],"hipL":[-29.4,42.7],"knL":[-17,165.2],"ftL":[7.7,325.3]},{"rootY":-28.3,"hips":[0,0],"chest":[17.6,-82.8],"neck":[17.6,-82.8],"head":[49.8,-128.7],"shR":[80.5,-68.7],"elR":[146.9,23.2],"haR":[187,54.7],"shL":[-41.3,-121.1],"elL":[-107.3,-81.3],"haL":[-152.1,-98.5],"hipR":[34.6,35.5],"knR":[16,169.5],"ftR":[22.7,323.6],"hipL":[-30.1,42.4],"knL":[-30.4,164.1],"ftL":[-0.5,324.8]},{"rootY":-25.3,"hips":[0,0],"chest":[11.9,-83.7],"neck":[11.9,-83.7],"head":[53,-129.6],"shR":[68.2,-72.1],"elR":[138.3,19.4],"haR":[179,50.1],"shL":[-43,-119.4],"elL":[-90.1,-75.6],"haL":[-131.2,-89.5],"hipR":[30.8,35.7],"knR":[7.4,168.9],"ftR":[24.3,321.5],"hipL":[-29.4,42.1],"knL":[-42.1,164.6],"ftL":[-8.1,325.1]},{"rootY":-21.8,"hips":[0,0],"chest":[6.3,-84.3],"neck":[6.3,-84.3],"head":[53.3,-132.1],"shR":[54,-75.1],"elR":[125.9,14.8],"haR":[165.9,44.3],"shL":[-42.1,-117.7],"elL":[-69.5,-70.2],"haL":[-104.1,-81.3],"hipR":[26.4,35.1],"knR":[-1.2,167.7],"ftR":[26.3,319],"hipL":[-26.4,42.6],"knL":[-50.3,165.6],"ftL":[-13.1,325.4]},{"rootY":-18.6,"hips":[0,0],"chest":[0.6,-84.7],"neck":[0.6,-84.7],"head":[46.7,-136.5],"shR":[38.2,-78.3],"elR":[109.7,9.3],"haR":[147.3,37.2],"shL":[-39.7,-115.5],"elL":[-47.7,-65.2],"haL":[-74.1,-73.5],"hipR":[21,34.8],"knR":[-11.6,166.5],"ftR":[27.4,316.5],"hipL":[-23.3,42.8],"knL":[-58.4,165.9],"ftL":[-18.1,324.8]},{"rootY":-16.8,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[39.6,-139.2],"shR":[23.1,-76.6],"elR":[91.3,8.5],"haR":[125,34.6],"shL":[-33.4,-117.9],"elL":[-22.6,-64.4],"haL":[-40,-70.3],"hipR":[14.2,35.2],"knR":[-20,166.7],"ftR":[31.1,315.2],"hipL":[-19.4,42.5],"knL":[-63.5,166.2],"ftL":[-18.5,323.1]},{"rootY":-13.7,"hips":[0,0],"chest":[-7.7,-85.4],"neck":[-7.7,-85.4],"head":[28.1,-142.4],"shR":[6.5,-82.3],"elR":[70,0.9],"haR":[98.4,25.5],"shL":[-27.4,-112.6],"elL":[0.7,-57.3],"haL":[-7.5,-61.1],"hipR":[8.2,31],"knR":[-26,162.1],"ftR":[32.6,310.5],"hipL":[-14.4,45.2],"knL":[-72.5,166.6],"ftL":[-25.2,322.5]},{"rootY":-14.1,"hips":[0,0],"chest":[-9.4,-85.4],"neck":[-9.4,-85.4],"head":[19.4,-144.9],"shR":[-10.2,-85.6],"elR":[45.9,-4.3],"haR":[69.3,19.3],"shL":[-15,-109.2],"elL":[29.7,-52],"haL":[30.2,-53.1],"hipR":[-0.2,33.8],"knR":[-30.1,165.9],"ftR":[38.8,312.1],"hipL":[-9.3,43.5],"knL":[-68.9,165.4],"ftL":[-25.7,320.6]},{"rootY":-13.8,"hips":[0,0],"chest":[-11.5,-85.5],"neck":[-11.5,-85.5],"head":[9.5,-147.1],"shR":[-24.3,-87.5],"elR":[23.6,-7.7],"haR":[40.9,15],"shL":[-5.7,-107.4],"elL":[52.6,-49.3],"haL":[61.7,-47.5],"hipR":[-7.8,34],"knR":[-34,166.5],"ftR":[40.9,311.4],"hipL":[-4.7,43.2],"knL":[-65,164.7],"ftL":[-32,321.7]},{"rootY":-14.3,"hips":[0,0],"chest":[-13,-85.4],"neck":[-13,-85.4],"head":[2.6,-148.6],"shR":[-36.8,-87.7],"elR":[0.7,-10.1],"haR":[11.7,11.9],"shL":[3.7,-106.8],"elL":[70,-45.8],"haL":[89.2,-42],"hipR":[-13.5,34],"knR":[-34.1,167.3],"ftR":[43.2,312.2],"hipL":[0.8,43.3],"knL":[-57.9,164.5],"ftL":[-38.2,323.7]},{"rootY":-14.6,"hips":[0,0],"chest":[-13.6,-85.5],"neck":[-13.6,-85.5],"head":[-3.2,-149.9],"shR":[-46.9,-88.7],"elR":[-21.5,-11.1],"haR":[-16.7,10.9],"shL":[13,-105.7],"elL":[88.2,-42.1],"haL":[115,-34.9],"hipR":[-20,33.3],"knR":[-33.5,167.4],"ftR":[46.5,311.4],"hipL":[5.2,43.8],"knL":[-51.2,164.4],"ftL":[-42,324.8]}]},"jump":{"name":"jump","fps":30,"height":520,"groundY":343,"frameCount":104,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.2],"elR":[-68.8,9.9],"haR":[-82.2,74.4],"shL":[70,-99.6],"elL":[68.4,5.1],"haL":[77.1,73.3],"hipR":[-31.9,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.6,185.6],"ftL":[40.8,338.2]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.2,74.3],"shL":[70.1,-99.5],"elL":[68.4,5.2],"haL":[77.2,73.3],"hipR":[-32,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.1,74.4],"shL":[70.1,-99.5],"elL":[68.5,5.2],"haL":[77.3,73.3],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.3],"shL":[70.1,-99.4],"elL":[68.4,5.3],"haL":[77.3,73.4],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.2],"shL":[70.1,-99.4],"elL":[68.3,5.3],"haL":[77.1,73.5],"hipR":[-32,38.3],"knR":[-30.3,182.2],"ftR":[-39,336.5],"hipL":[29.3,38],"knL":[30.5,185.6],"ftL":[40.7,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11.1,-145.8],"shR":[-54.4,-107.5],"elR":[-68.6,9.7],"haR":[-81.8,74],"shL":[70.2,-99.3],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.9,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.7],"haR":[-81.7,74],"shL":[70.3,-99.2],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32.1,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77,73.6],"hipR":[-32.1,38.2],"knR":[-30.2,182.1],"ftR":[-38.7,336.4],"hipL":[29.2,38.2],"knL":[30.5,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.9,-145.8],"shR":[-54.2,-107.6],"elR":[-68.5,9.6],"haR":[-81.6,73.9],"shL":[70.4,-99.1],"elL":[68.3,5.6],"haL":[76.9,73.8],"hipR":[-32.1,38.2],"knR":[-30.1,182.1],"ftR":[-38.7,336.4],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.8,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.8,73.8],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.4],"hipL":[29.4,38.1],"knL":[30.6,185.6],"ftL":[41,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.6,-145.9],"shR":[-54.3,-107.6],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-32,38.3],"knR":[-30.1,182.2],"ftR":[-38.8,336.4],"hipL":[29.3,38.1],"knL":[30.7,185.6],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.5,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-31.9,38.4],"knR":[-30.1,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.4,-145.9],"shR":[-54.3,-107.7],"elR":[-68.5,9.4],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.9,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.1,-145.9],"shR":[-54.5,-107.7],"elR":[-68.5,9.3],"haR":[-81.9,73.7],"shL":[70.2,-99],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.3],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.9,-145.9],"shR":[-54.6,-107.8],"elR":[-68.7,9.3],"haR":[-81.9,73.8],"shL":[70.1,-99.1],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.8,38.4],"knR":[-30.1,182.3],"ftR":[-39,336.3],"hipL":[29.6,37.9],"knL":[30.8,185.5],"ftL":[40.8,337.9]},{"rootY":0.4,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.8,-145.9],"shR":[-54.7,-107.6],"elR":[-68.8,9.4],"haR":[-82,74.1],"shL":[70,-99.3],"elL":[68.1,5.3],"haL":[76.8,73.7],"hipR":[-31.8,38.4],"knR":[-30.2,182.3],"ftR":[-39.1,336.3],"hipL":[29.5,38],"knL":[30.7,185.5],"ftL":[40.8,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.7,-145.9],"shR":[-54.7,-107.5],"elR":[-68.8,9.4],"haR":[-81.8,74.3],"shL":[70,-99.3],"elL":[68.3,5.3],"haL":[77,73.7],"hipR":[-31.7,38.6],"knR":[-30,182.5],"ftR":[-39.3,336.4],"hipL":[29.7,37.9],"knL":[30.7,185.4],"ftL":[40.6,337.7]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.4,-145.9],"shR":[-54.8,-107.5],"elR":[-68.9,9.4],"haR":[-82,74.3],"shL":[69.9,-99.4],"elL":[68.3,5.2],"haL":[77.1,73.6],"hipR":[-31.6,38.6],"knR":[-29.9,182.5],"ftR":[-39.4,336.5],"hipL":[29.8,37.9],"knL":[30.7,185.5],"ftL":[40.5,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-77.8],"neck":[0.6,-77.8],"head":[9.2,-145.9],"shR":[-55,-107.5],"elR":[-69.1,9.2],"haR":[-82.1,74.2],"shL":[69.7,-99.4],"elL":[68.3,5.1],"haL":[77.1,73.6],"hipR":[-31.8,38.5],"knR":[-30,182.4],"ftR":[-39.6,336.6],"hipL":[29.6,38.2],"knL":[30.4,185.9],"ftL":[40.4,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.4,-77.8],"neck":[0.4,-77.8],"head":[8.9,-145.8],"shR":[-55.3,-107.4],"elR":[-69.3,9.2],"haR":[-82.2,74.5],"shL":[69.5,-99.5],"elL":[68.4,5],"haL":[77.4,73.7],"hipR":[-31.8,38.5],"knR":[-29.7,182.4],"ftR":[-39.6,336.6],"hipL":[29.7,38.5],"knL":[30.4,186.1],"ftL":[40.4,337.9]},{"rootY":0,"hips":[0,0],"chest":[0.1,-77.6],"neck":[0.1,-77.6],"head":[8.4,-145.7],"shR":[-55.7,-107.3],"elR":[-69.7,9],"haR":[-82.6,74.5],"shL":[69.1,-99.4],"elL":[68.3,4.9],"haL":[77.4,73.8],"hipR":[-31.8,38.6],"knR":[-30,182.4],"ftR":[-40.2,336.7],"hipL":[29.7,38.6],"knL":[30,186.2],"ftL":[39.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[-0.3,-77.4],"neck":[-0.3,-77.4],"head":[7.9,-145.6],"shR":[-56.1,-107.2],"elR":[-70.3,8.7],"haR":[-83,74.3],"shL":[68.7,-99.3],"elL":[68.3,4.9],"haL":[77.7,73.7],"hipR":[-31.8,38.7],"knR":[-30.4,182.4],"ftR":[-41.2,336.8],"hipL":[29.6,38.6],"knL":[29.4,186.2],"ftL":[39.2,337.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.9,-77.1],"neck":[-0.9,-77.1],"head":[7.3,-145.2],"shR":[-56.8,-106.9],"elR":[-71.1,8.6],"haR":[-83.8,74.4],"shL":[68,-99.1],"elL":[68.3,4.8],"haL":[77.7,73.6],"hipR":[-32,38.5],"knR":[-30.9,182.2],"ftR":[-42.2,336.6],"hipL":[29.4,38.8],"knL":[28.4,186.3],"ftL":[38.6,337.2]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-76.6],"neck":[-1.5,-76.6],"head":[6.4,-144.7],"shR":[-57.7,-106.2],"elR":[-72.2,8.7],"haR":[-84.8,74.7],"shL":[67.3,-99],"elL":[68.2,4.4],"haL":[78,73.2],"hipR":[-32.2,38.4],"knR":[-30.9,181.9],"ftR":[-43.2,336.2],"hipL":[29.1,39.1],"knL":[27.4,186.4],"ftL":[37.8,336.8]},{"rootY":1.6,"hips":[0,0],"chest":[-1.8,-75.8],"neck":[-1.8,-75.8],"head":[5.8,-143.8],"shR":[-58.1,-105.1],"elR":[-73,8.9],"haR":[-85.5,75.2],"shL":[66.8,-98.4],"elL":[68.6,4.3],"haL":[78.5,73.2],"hipR":[-31.7,38.8],"knR":[-29.6,181.8],"ftR":[-43.7,335.5],"hipL":[29.6,38.9],"knL":[27.4,185.8],"ftL":[37.3,336.2]},{"rootY":2.4,"hips":[0,0],"chest":[-2.3,-74.7],"neck":[-2.3,-74.7],"head":[4.8,-142.5],"shR":[-58.8,-103.9],"elR":[-74.4,9],"haR":[-86.7,75.4],"shL":[66.2,-97.5],"elL":[69.2,4.4],"haL":[79.1,73.4],"hipR":[-31.2,39.2],"knR":[-28.4,181.4],"ftR":[-44.4,334.3],"hipL":[30.1,38.7],"knL":[26.8,185.1],"ftL":[36.5,335.3]},{"rootY":3.7,"hips":[0,0],"chest":[-2.5,-73.5],"neck":[-2.5,-73.5],"head":[4.3,-141],"shR":[-59.1,-102.4],"elR":[-75.4,9.4],"haR":[-87.6,76.3],"shL":[65.8,-96.2],"elL":[70.3,4.5],"haL":[80.2,73.7],"hipR":[-30.6,39.6],"knR":[-27,180.9],"ftR":[-44.7,333],"hipL":[30.6,38.4],"knL":[26.8,184.2],"ftL":[36.1,334.1]},{"rootY":5,"hips":[0,0],"chest":[-2.8,-72.1],"neck":[-2.8,-72.1],"head":[3.4,-139.2],"shR":[-59.6,-100.6],"elR":[-76.5,10],"haR":[-88.7,77.2],"shL":[65.3,-94.9],"elL":[71.5,4.7],"haL":[81.3,74.3],"hipR":[-30.1,40],"knR":[-26.1,180.2],"ftR":[-45.6,331.6],"hipL":[31.1,38.2],"knL":[26.8,183.2],"ftL":[35.5,332.9]},{"rootY":6.3,"hips":[0,0],"chest":[-3.3,-70.6],"neck":[-3.3,-70.6],"head":[2.5,-137.2],"shR":[-60.2,-98.9],"elR":[-77.3,10.5],"haR":[-89.7,78],"shL":[64.7,-93.2],"elL":[72.7,5.2],"haL":[82.7,75.2],"hipR":[-29.8,40.2],"knR":[-25.3,179.5],"ftR":[-46.5,330.3],"hipL":[31.5,38],"knL":[27.2,182.1],"ftL":[34.7,331.6]},{"rootY":7.7,"hips":[0,0],"chest":[-3.5,-69.1],"neck":[-3.5,-69.1],"head":[1.9,-135.2],"shR":[-60.6,-97],"elR":[-77.8,11.1],"haR":[-90.5,79],"shL":[64.4,-91.9],"elL":[73.9,5.6],"haL":[84.5,75.8],"hipR":[-29.7,40.2],"knR":[-24.6,178.7],"ftR":[-47,328.9],"hipL":[31.7,37.9],"knL":[27.6,181.2],"ftL":[34.3,330.4]},{"rootY":9,"hips":[0,0],"chest":[-3.6,-67.8],"neck":[-3.6,-67.8],"head":[1.5,-133.3],"shR":[-61,-95.1],"elR":[-78.2,11.6],"haR":[-91,79.8],"shL":[64.1,-90.8],"elL":[75,5.4],"haL":[86.4,75.7],"hipR":[-29.3,40.5],"knR":[-23.7,178.2],"ftR":[-47.5,327.6],"hipL":[32.1,37.7],"knL":[28.2,180.2],"ftL":[33.9,329.2]},{"rootY":10,"hips":[0,0],"chest":[-3.9,-66.6],"neck":[-3.9,-66.6],"head":[0.9,-131.6],"shR":[-61.4,-93.5],"elR":[-78.2,11.5],"haR":[-91.4,80.1],"shL":[63.7,-89.7],"elL":[76.1,4.9],"haL":[88.4,75.3],"hipR":[-29.1,40.6],"knR":[-23.3,177.7],"ftR":[-47.9,326.6],"hipL":[32.3,37.5],"knL":[28.1,179.5],"ftL":[33.5,328.2]},{"rootY":10.8,"hips":[0,0],"chest":[-4,-65.5],"neck":[-4,-65.5],"head":[0.7,-130],"shR":[-61.6,-92],"elR":[-78.3,10.7],"haR":[-91.6,79.6],"shL":[63.6,-88.7],"elL":[77.2,3.8],"haL":[90.8,74],"hipR":[-28.6,41],"knR":[-22.9,177.5],"ftR":[-47.9,325.7],"hipL":[32.8,37.1],"knL":[28.3,178.8],"ftL":[33.2,327.4]},{"rootY":11.1,"hips":[0,0],"chest":[-4.1,-64.5],"neck":[-4.1,-64.5],"head":[0.3,-128.8],"shR":[-61.8,-90.5],"elR":[-78.3,9.5],"haR":[-91.6,78.7],"shL":[63.4,-87.9],"elL":[78.2,1.8],"haL":[93.2,71.5],"hipR":[-28.5,41],"knR":[-23.2,177.3],"ftR":[-48.2,325.3],"hipL":[33,37],"knL":[28.2,178.7],"ftL":[32.9,327.1]},{"rootY":11.2,"hips":[0,0],"chest":[-4.2,-63.4],"neck":[-4.2,-63.4],"head":[0,-127.5],"shR":[-62,-89.1],"elR":[-78.6,7.2],"haR":[-91.8,76.4],"shL":[63.2,-86.9],"elL":[79.1,-0.8],"haL":[95.9,67.6],"hipR":[-28.3,41],"knR":[-23.5,177.3],"ftR":[-48.4,325.1],"hipL":[33.1,36.9],"knL":[28.5,178.7],"ftL":[32.8,326.9]},{"rootY":11.6,"hips":[0,0],"chest":[-4.3,-62.4],"neck":[-4.3,-62.4],"head":[-0.3,-126.3],"shR":[-62.1,-87.9],"elR":[-79,4.5],"haR":[-92.2,73.2],"shL":[63.2,-85.7],"elL":[80.4,-4.2],"haL":[98.9,62.1],"hipR":[-28.4,40.9],"knR":[-23.5,177.2],"ftR":[-48.5,324.6],"hipL":[33.1,37],"knL":[29.2,178.5],"ftL":[32.9,326.4]},{"rootY":12,"hips":[0,0],"chest":[-4.4,-61.3],"neck":[-4.4,-61.3],"head":[-0.5,-125],"shR":[-62.3,-86.5],"elR":[-79.3,1.4],"haR":[-92.9,68.9],"shL":[63,-84.4],"elL":[81.3,-8.1],"haL":[101.6,55.1],"hipR":[-28.4,40.8],"knR":[-23.6,177.1],"ftR":[-48.6,324.1],"hipL":[33.1,37],"knL":[29.3,178.4],"ftL":[32.8,325.9]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-60.1],"neck":[-4.4,-60.1],"head":[-0.5,-123.5],"shR":[-62.3,-85.1],"elR":[-79.3,-2.2],"haR":[-93.6,63.5],"shL":[63,-83.1],"elL":[82.1,-12.3],"haL":[103.8,47],"hipR":[-28.4,40.8],"knR":[-23.2,176.9],"ftR":[-48.6,323.1],"hipL":[33.1,36.9],"knL":[29.6,178.1],"ftL":[32.9,324.8]},{"rootY":14.7,"hips":[0,0],"chest":[-4.3,-58.9],"neck":[-4.3,-58.9],"head":[-0.3,-121.9],"shR":[-62.3,-83.3],"elR":[-79,-5.5],"haR":[-94,57.8],"shL":[63.1,-81.9],"elL":[82.7,-16.6],"haL":[105.6,38.7],"hipR":[-28.2,40.8],"knR":[-22.8,176.3],"ftR":[-48.6,321.4],"hipL":[33.3,36.8],"knL":[29.8,177.2],"ftL":[33.2,322.9]},{"rootY":17.6,"hips":[0,0],"chest":[-4,-57.4],"neck":[-4,-57.4],"head":[0,-120.1],"shR":[-62,-81.2],"elR":[-78.9,-8],"haR":[-94.2,52.8],"shL":[63.4,-80.3],"elL":[83.2,-19.5],"haL":[107,32.1],"hipR":[-27.9,41],"knR":[-21.9,175.3],"ftR":[-48.1,318.7],"hipL":[33.6,36.4],"knL":[30.9,175.7],"ftL":[33.7,320.3]},{"rootY":21,"hips":[0,0],"chest":[-3.7,-56],"neck":[-3.7,-56],"head":[0.4,-118.3],"shR":[-61.7,-79.3],"elR":[-78.7,-10],"haR":[-94.4,48.4],"shL":[63.7,-79.1],"elL":[83.2,-22.5],"haL":[107.4,26.5],"hipR":[-27.5,41.3],"knR":[-21.2,174],"ftR":[-47.4,315.5],"hipL":[34.1,35.8],"knL":[32,173.9],"ftL":[34.4,317]},{"rootY":25.3,"hips":[0,0],"chest":[-3.6,-54.7],"neck":[-3.6,-54.7],"head":[0.6,-116.7],"shR":[-61.6,-77.3],"elR":[-78.4,-10.2],"haR":[-94.3,46],"shL":[63.8,-78.1],"elL":[82.2,-23.7],"haL":[106.7,23.6],"hipR":[-27.2,41.5],"knR":[-20.8,172.1],"ftR":[-46.5,311.3],"hipL":[34.3,35.5],"knL":[32.8,172.1],"ftL":[34.9,313.1]},{"rootY":29.7,"hips":[0,0],"chest":[-3.3,-53.6],"neck":[-3.3,-53.6],"head":[0.9,-115.2],"shR":[-61.3,-75.6],"elR":[-77.8,-8.7],"haR":[-93.3,45.9],"shL":[64,-77.3],"elL":[81.7,-23.1],"haL":[105.7,23.9],"hipR":[-26.7,41.8],"knR":[-20,170.3],"ftR":[-45.4,306.6],"hipL":[34.7,35.1],"knL":[33.9,170.2],"ftL":[35.7,309]},{"rootY":33.9,"hips":[0,0],"chest":[-3.6,-53.6],"neck":[-3.6,-53.6],"head":[0.2,-115.1],"shR":[-61.7,-74.9],"elR":[-78,-5.7],"haR":[-93.5,48.1],"shL":[63.6,-77.8],"elL":[80.4,-21.5],"haL":[103.6,26.7],"hipR":[-25.9,42.4],"knR":[-19.9,169.9],"ftR":[-45.3,302.5],"hipL":[35.4,34.4],"knL":[34.8,168.7],"ftL":[35.4,304.8]},{"rootY":38.7,"hips":[0,0],"chest":[-3.5,-53.6],"neck":[-3.5,-53.6],"head":[0,-115.5],"shR":[-61.7,-74.5],"elR":[-77.6,-1.3],"haR":[-92.6,52.7],"shL":[63.6,-78.4],"elL":[79.4,-18.1],"haL":[101.5,32.5],"hipR":[-26.2,42.3],"knR":[-19.3,168.3],"ftR":[-44.5,297],"hipL":[35.2,34.6],"knL":[35.6,167.5],"ftL":[35.8,300.5]},{"rootY":43.9,"hips":[0,0],"chest":[-4.2,-53.4],"neck":[-4.2,-53.4],"head":[-1.1,-115.7],"shR":[-62.5,-73.8],"elR":[-78,4.3],"haR":[-92.4,60.2],"shL":[62.7,-78.9],"elL":[77.3,-14],"haL":[98.1,40.8],"hipR":[-25.6,42.8],"knR":[-19.5,166.9],"ftR":[-44.1,291.2],"hipL":[35.7,34.1],"knL":[35.5,165.4],"ftL":[35.3,294.3]},{"rootY":49.8,"hips":[0,0],"chest":[-4.2,-53.7],"neck":[-4.2,-53.7],"head":[-1.3,-116.6],"shR":[-62.6,-73.7],"elR":[-77.4,10.2],"haR":[-90.9,69.5],"shL":[62.5,-79.9],"elL":[76.1,-9.3],"haL":[95.1,50.3],"hipR":[-25.7,42.8],"knR":[-19.6,164.8],"ftR":[-43.5,283.5],"hipL":[35.6,34.2],"knL":[35.5,163.5],"ftL":[36,287.6]},{"rootY":55.7,"hips":[0,0],"chest":[-4.3,-54],"neck":[-4.3,-54],"head":[-1.8,-117.6],"shR":[-62.9,-73.9],"elR":[-76.8,16.4],"haR":[-88.9,80.3],"shL":[62.3,-80.8],"elL":[74.8,-3.5],"haL":[91.7,60.9],"hipR":[-25.5,43],"knR":[-20.5,161.9],"ftR":[-43.7,274.5],"hipL":[35.7,34.1],"knL":[34.9,161],"ftL":[36.9,279.3]},{"rootY":61.2,"hips":[0,0],"chest":[-4.6,-55],"neck":[-4.6,-55],"head":[-2.3,-119.2],"shR":[-63.2,-75],"elR":[-75.9,22.8],"haR":[-86.3,90.9],"shL":[61.9,-82.1],"elL":[74.1,3],"haL":[87.9,71.4],"hipR":[-25.1,43.3],"knR":[-22.3,159.3],"ftR":[-44.3,265.1],"hipL":[36,33.9],"knL":[34.4,158.8],"ftL":[36.7,270.8]},{"rootY":66.4,"hips":[0,0],"chest":[-4.7,-57],"neck":[-4.7,-57],"head":[-2.6,-122.2],"shR":[-63.3,-77.3],"elR":[-74.5,28.1],"haR":[-81.9,98.1],"shL":[61.7,-84.6],"elL":[73.6,8.3],"haL":[83.7,79.1],"hipR":[-24.3,43.8],"knR":[-24.5,157.6],"ftR":[-44.5,256.3],"hipL":[36.7,33.3],"knL":[34.2,158],"ftL":[36.8,264.3]},{"rootY":70.5,"hips":[0,0],"chest":[-4.7,-59.7],"neck":[-4.7,-59.7],"head":[-3,-126.1],"shR":[-63.4,-80.4],"elR":[-72.6,31.8],"haR":[-78,99.6],"shL":[61.6,-88],"elL":[73.1,11.2],"haL":[79.4,78.6],"hipR":[-25.2,43.3],"knR":[-25,157.4],"ftR":[-44.3,249.6],"hipL":[35.9,34.1],"knL":[34.1,159.6],"ftL":[37.5,259.8]},{"rootY":71,"hips":[0,0],"chest":[-4.5,-62.8],"neck":[-4.5,-62.8],"head":[-3,-130.4],"shR":[-63.2,-83.8],"elR":[-73.5,32.8],"haR":[-76.2,91.3],"shL":[61.7,-91.9],"elL":[77.2,11.2],"haL":[77.9,63.6],"hipR":[-25.8,42.9],"knR":[-24.3,161],"ftR":[-45.8,247.2],"hipL":[35.5,34.7],"knL":[33.1,163.5],"ftL":[37.5,257.4]},{"rootY":68.3,"hips":[0,0],"chest":[-3.3,-65.2],"neck":[-3.3,-65.2],"head":[-1.7,-133.5],"shR":[-62.1,-87.1],"elR":[-77.4,30.1],"haR":[-77.8,70.4],"shL":[62.9,-94.4],"elL":[86.9,6.5],"haL":[82,33.9],"hipR":[-26.4,42.5],"knR":[-21.8,165.4],"ftR":[-45.4,249.3],"hipL":[35,35.2],"knL":[35.1,167.4],"ftL":[37.9,259.8]},{"rootY":60,"hips":[0,0],"chest":[-2.7,-68],"neck":[-2.7,-68],"head":[-1,-136.5],"shR":[-61.5,-91.2],"elR":[-84.2,19.7],"haR":[-82.2,35],"shL":[63.8,-96.5],"elL":[98.9,-6.3],"haL":[88.8,-7.4],"hipR":[-27.2,41.9],"knR":[-22.1,172.3],"ftR":[-45.1,256.7],"hipL":[34.3,35.7],"knL":[38.2,174.4],"ftL":[37.5,266.8]},{"rootY":46.6,"hips":[0,0],"chest":[-2.8,-71.3],"neck":[-2.8,-71.3],"head":[-0.8,-139.7],"shR":[-61.5,-95.5],"elR":[-93.8,2.7],"haR":[-89,-5.9],"shL":[63.9,-99.5],"elL":[108.5,-25],"haL":[96.2,-48.8],"hipR":[-27.6,41.6],"knR":[-25.5,179.3],"ftR":[-45.8,267.9],"hipL":[33.9,35.8],"knL":[40.8,180.3],"ftL":[38.1,276.2]},{"rootY":27.3,"hips":[0,0],"chest":[-3.3,-74.6],"neck":[-3.3,-74.6],"head":[-1.2,-142.4],"shR":[-62.1,-98.9],"elR":[-104.3,-16.6],"haR":[-96.9,-40.3],"shL":[63.2,-103.1],"elL":[115.2,-43.3],"haL":[102.9,-80.8],"hipR":[-27.7,41.5],"knR":[-28.2,184.4],"ftR":[-48.3,280.8],"hipL":[33.8,35.6],"knL":[41.3,183],"ftL":[41.1,286]},{"rootY":2.7,"hips":[0,0],"chest":[-4.3,-77.3],"neck":[-4.3,-77.3],"head":[-2.7,-144.3],"shR":[-63.1,-100.8],"elR":[-113.3,-31.6],"haR":[-105.5,-62.2],"shL":[62.2,-105.8],"elL":[117,-54.7],"haL":[107,-98.7],"hipR":[-28.8,40.7],"knR":[-28.5,184.4],"ftR":[-53.6,294],"hipL":[32.9,36.5],"knL":[39.9,183],"ftL":[46.2,297.1]},{"rootY":-21.4,"hips":[0,0],"chest":[-5.5,-77.7],"neck":[-5.5,-77.7],"head":[-4.3,-144.1],"shR":[-64,-101.6],"elR":[-119,-38.8],"haR":[-113.4,-71.8],"shL":[61.3,-104.4],"elL":[115.9,-54.5],"haL":[110.2,-101],"hipR":[-30,39.8],"knR":[-29.3,182.1],"ftR":[-59,302.7],"hipL":[31.8,37.6],"knL":[38.2,182.3],"ftL":[52,305.8]},{"rootY":-40.6,"hips":[0,0],"chest":[-5.9,-77.5],"neck":[-5.9,-77.5],"head":[-4.8,-143.5],"shR":[-64.4,-101.3],"elR":[-121.8,-38.1],"haR":[-120.4,-69],"shL":[61,-103.6],"elL":[114.4,-47.3],"haL":[114.7,-92.3],"hipR":[-30.2,39.6],"knR":[-26.9,182.5],"ftR":[-57.5,302.2],"hipL":[31.6,37.7],"knL":[37.8,183.4],"ftL":[51.1,306.1]},{"rootY":-56.4,"hips":[0,0],"chest":[-5,-77.7],"neck":[-5,-77.7],"head":[-3.9,-143.7],"shR":[-63.5,-101.7],"elR":[-121.6,-32.5],"haR":[-125.1,-57.6],"shL":[61.9,-103.7],"elL":[112,-37.2],"haL":[120.5,-76.3],"hipR":[-29.4,39.8],"knR":[-23.9,183.6],"ftR":[-51.3,299.2],"hipL":[32.4,36.5],"knL":[38.7,183.5],"ftL":[48.4,305.4]},{"rootY":-69.3,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4,-144.2],"shR":[-63.2,-102.1],"elR":[-120.9,-26],"haR":[-129.8,-42.3],"shL":[62.2,-104],"elL":[108.2,-27.4],"haL":[124.9,-55.2],"hipR":[-29,39.5],"knR":[-24,183.2],"ftR":[-47.8,301.2],"hipL":[32.7,35.6],"knL":[40,183],"ftL":[47.3,308.9]},{"rootY":-78.8,"hips":[0,0],"chest":[-4.7,-77.8],"neck":[-4.7,-77.8],"head":[-3.9,-144.7],"shR":[-63.1,-102.3],"elR":[-119.7,-19.3],"haR":[-133.2,-24.7],"shL":[62.2,-104.2],"elL":[103.5,-20.2],"haL":[127.2,-33.1],"hipR":[-28.4,39.6],"knR":[-24.4,182.8],"ftR":[-46.1,309],"hipL":[33.2,34.8],"knL":[41.1,182.1],"ftL":[47.2,315.3]},{"rootY":-84.2,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4.1,-145.1],"shR":[-63.2,-102.3],"elR":[-117.9,-13],"haR":[-135.1,-6.7],"shL":[62.2,-104.5],"elL":[99.7,-14.7],"haL":[126.8,-10.6],"hipR":[-29.3,39.2],"knR":[-24.7,181.2],"ftR":[-43.8,318],"hipL":[32.4,35.6],"knL":[40.7,182.2],"ftL":[47.6,323.4]},{"rootY":-85.7,"hips":[0,0],"chest":[-4.8,-77.7],"neck":[-4.8,-77.7],"head":[-4.3,-145.4],"shR":[-63.3,-102.2],"elR":[-116.2,-7.1],"haR":[-135.6,10.8],"shL":[62,-104.8],"elL":[97.1,-10.9],"haL":[124.4,10],"hipR":[-29.4,39.1],"knR":[-24.7,180.1],"ftR":[-42,325.8],"hipL":[32.4,35.7],"knL":[39.8,181],"ftL":[48.3,328.8]},{"rootY":-83.7,"hips":[0,0],"chest":[-4.9,-77.6],"neck":[-4.9,-77.6],"head":[-4.5,-145.6],"shR":[-63.4,-102.2],"elR":[-114.3,-2],"haR":[-134.8,26.9],"shL":[62,-104.9],"elL":[94.9,-8],"haL":[120.5,28.4],"hipR":[-29.6,38.8],"knR":[-25.3,179],"ftR":[-41.5,331.5],"hipL":[32.2,35.8],"knL":[39.1,179.5],"ftL":[50.1,332.4]},{"rootY":-77.8,"hips":[0,0],"chest":[-4.6,-77.5],"neck":[-4.6,-77.5],"head":[-4.2,-145.7],"shR":[-63.1,-102.2],"elR":[-111.7,2],"haR":[-132.9,40.8],"shL":[62.3,-104.9],"elL":[92.6,-5.7],"haL":[116.8,42.9],"hipR":[-29.8,38.5],"knR":[-26.2,177.8],"ftR":[-41,334.5],"hipL":[32,36],"knL":[38.8,177.7],"ftL":[52.5,333.6]},{"rootY":-67.9,"hips":[0,0],"chest":[-4.2,-77.4],"neck":[-4.2,-77.4],"head":[-3.9,-145.8],"shR":[-62.6,-102.4],"elR":[-108.7,5],"haR":[-129.8,51.9],"shL":[62.8,-104.6],"elL":[89.9,-3.6],"haL":[111.9,53.8],"hipR":[-29.5,38.6],"knR":[-27.1,176.8],"ftR":[-40.5,335.3],"hipL":[32.2,35.7],"knL":[39,175.3],"ftL":[53.8,332.2]},{"rootY":-53.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-3.3,-145.9],"shR":[-62.2,-102.7],"elR":[-105.4,7.1],"haR":[-125.9,60.5],"shL":[63.2,-104.3],"elL":[87.3,-2.3],"haL":[106.9,60.7],"hipR":[-29,39],"knR":[-28,175.6],"ftR":[-41.1,334.1],"hipL":[32.7,35],"knL":[39.9,173],"ftL":[55.1,329.3]},{"rootY":-35,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-3.8,-146.1],"shR":[-62.5,-102.9],"elR":[-102.1,8.7],"haR":[-121.5,66.8],"shL":[62.9,-104.2],"elL":[83.7,-2.1],"haL":[101.4,64],"hipR":[-28.9,39],"knR":[-29,173.6],"ftR":[-42.8,331.5],"hipL":[32.8,34.5],"knL":[40.6,170.8],"ftL":[55.4,326.5]},{"rootY":-11.7,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.7,-146.3],"shR":[-63.2,-102.9],"elR":[-99.1,10],"haR":[-117.3,71.3],"shL":[62.2,-104.3],"elL":[79.7,-2.8],"haL":[96.3,64.9],"hipR":[-29.6,38.2],"knR":[-29.3,169.3],"ftR":[-43.6,327.6],"hipL":[32.1,34.2],"knL":[39.8,167.6],"ftL":[53.8,324.2]},{"rootY":17.4,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.5,-146.3],"shR":[-63.1,-102.9],"elR":[-94.9,11.1],"haR":[-112.4,74.2],"shL":[62.3,-104.1],"elL":[76.6,-3.4],"haL":[92.3,65.2],"hipR":[-29.7,37.5],"knR":[-27.8,159.9],"ftR":[-40.4,317.2],"hipL":[31.9,33.1],"knL":[40.3,159.5],"ftL":[49.4,315.4]},{"rootY":42.4,"hips":[0,0],"chest":[-3.7,-77.6],"neck":[-3.7,-77.6],"head":[-1.6,-146.3],"shR":[-61.6,-103.1],"elR":[-87.3,12.3],"haR":[-103.8,77.1],"shL":[63.8,-103.9],"elL":[74.2,-3.6],"haL":[88.9,65.7],"hipR":[-27.1,37.6],"knR":[-23.8,144.3],"ftR":[-37.1,294],"hipL":[34.1,28.9],"knL":[41.2,143.7],"ftL":[48,293.3]},{"rootY":59.8,"hips":[0,0],"chest":[-3.3,-77.4],"neck":[-3.3,-77.4],"head":[-0.5,-146.2],"shR":[-61.5,-102.7],"elR":[-80.1,14.1],"haR":[-95.7,80.8],"shL":[63.9,-104.3],"elL":[71.9,-2.1],"haL":[85.8,68.1],"hipR":[-26.3,36.6],"knR":[-24.3,133.2],"ftR":[-32.6,275],"hipL":[34.6,26.3],"knL":[43.3,132.1],"ftL":[48.6,274.1]},{"rootY":69.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-1.2,-146.1],"shR":[-62,-102.8],"elR":[-73.5,15],"haR":[-87.6,83.2],"shL":[63.4,-103.9],"elL":[68.6,-0.6],"haL":[82.6,69.5],"hipR":[-27.6,36.2],"knR":[-27.3,131.8],"ftR":[-30.8,268.3],"hipL":[33.6,27.4],"knL":[46.3,132.2],"ftL":[46.6,269.6]},{"rootY":77.4,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-1.1,-146.1],"shR":[-62.2,-103.1],"elR":[-69.2,15.1],"haR":[-80,84],"shL":[63.2,-103.6],"elL":[67.8,-0.3],"haL":[81.3,69.8],"hipR":[-27.8,36.4],"knR":[-29.1,128.9],"ftR":[-30.5,260.8],"hipL":[33.3,27.9],"knL":[47.6,129.6],"ftL":[47.4,262.3]},{"rootY":80.1,"hips":[0,0],"chest":[-3.4,-77.4],"neck":[-3.4,-77.4],"head":[0,-146.2],"shR":[-61.3,-103.2],"elR":[-66.1,14.7],"haR":[-74.1,83.6],"shL":[64,-103.7],"elL":[68.9,-0.5],"haL":[82.4,69.4],"hipR":[-27.7,36.3],"knR":[-29.3,129],"ftR":[-28.5,257.7],"hipL":[33.4,27.7],"knL":[47,129.4],"ftL":[48.4,259.4]},{"rootY":79.4,"hips":[0,0],"chest":[-3,-77.4],"neck":[-3,-77.4],"head":[1.1,-146.1],"shR":[-60.7,-103.7],"elR":[-64.5,14.1],"haR":[-70.5,83.1],"shL":[64.6,-103.4],"elL":[70.7,-0.1],"haL":[84,69.3],"hipR":[-28.1,36.4],"knR":[-29,131],"ftR":[-27.2,258.4],"hipL":[33.1,28.3],"knL":[45.1,131.7],"ftL":[49.1,260]},{"rootY":76.9,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2,-146.1],"shR":[-60.1,-104],"elR":[-62.8,13.7],"haR":[-68.2,82.9],"shL":[65.2,-103.1],"elL":[72.1,0.5],"haL":[85.8,69.5],"hipR":[-28.2,36.7],"knR":[-28.2,133.4],"ftR":[-26.1,261.1],"hipL":[33,28.6],"knL":[42.3,134.5],"ftL":[49.6,262.3]},{"rootY":72.4,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[2.2,-146.2],"shR":[-59.8,-104.2],"elR":[-62.2,13.6],"haR":[-68.1,83],"shL":[65.5,-102.9],"elL":[73.5,0.9],"haL":[87.5,69.5],"hipR":[-28.6,37],"knR":[-27.8,136.9],"ftR":[-25.3,265.5],"hipL":[32.5,29.4],"knL":[39.6,138.7],"ftL":[50.3,266.6]},{"rootY":66.8,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2.4,-146.2],"shR":[-59.8,-104.4],"elR":[-63.6,13.5],"haR":[-69.8,82.8],"shL":[65.4,-102.7],"elL":[74.7,1.3],"haL":[88.8,69.5],"hipR":[-29,37.4],"knR":[-27.8,141.3],"ftR":[-24.8,271.3],"hipL":[32.1,30.2],"knL":[37.3,143.4],"ftL":[50.8,272]},{"rootY":60.4,"hips":[0,0],"chest":[-2.8,-77.5],"neck":[-2.8,-77.5],"head":[2.3,-146.2],"shR":[-59.9,-104.7],"elR":[-65.2,13.3],"haR":[-72,82.4],"shL":[65.1,-102.5],"elL":[75.7,1.5],"haL":[90,69.5],"hipR":[-29.1,37.7],"knR":[-28.1,146],"ftR":[-24.6,277.7],"hipL":[31.9,30.6],"knL":[35.7,148.3],"ftL":[51.4,278.2]},{"rootY":53.8,"hips":[0,0],"chest":[-3,-77.5],"neck":[-3,-77.5],"head":[2.3,-146.2],"shR":[-60,-104.7],"elR":[-66.8,13.3],"haR":[-74.5,82],"shL":[64.9,-102.5],"elL":[75.9,1.5],"haL":[90.1,69.2],"hipR":[-29.5,37.8],"knR":[-28.4,150.6],"ftR":[-24.7,284.4],"hipL":[31.5,31.2],"knL":[34.4,153.2],"ftL":[51.8,284.7]},{"rootY":47.3,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.2,13.3],"haR":[-76.9,81.5],"shL":[64.7,-102.5],"elL":[76,1.5],"haL":[89.9,69.1],"hipR":[-29.5,38.1],"knR":[-28.4,155],"ftR":[-24.5,290.8],"hipL":[31.5,31.6],"knL":[33.6,157.6],"ftL":[52,290.9]},{"rootY":40.7,"hips":[0,0],"chest":[-3.3,-77.6],"neck":[-3.3,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.9,13.3],"haR":[-79.3,80.9],"shL":[64.5,-102.5],"elL":[75.4,1.6],"haL":[88.9,69.1],"hipR":[-29.8,38.2],"knR":[-27.8,159.4],"ftR":[-24.5,297.2],"hipL":[31.1,32.2],"knL":[32.5,162],"ftL":[52.1,297.2]},{"rootY":34.8,"hips":[0,0],"chest":[-3.4,-77.6],"neck":[-3.4,-77.6],"head":[2.7,-146.2],"shR":[-59.8,-104.6],"elR":[-70.1,13.3],"haR":[-81.8,80.3],"shL":[64.3,-102.6],"elL":[74.5,1.6],"haL":[87.4,69.1],"hipR":[-30.2,38.3],"knR":[-26.7,163.1],"ftR":[-24.5,303.1],"hipL":[30.7,32.8],"knL":[31.8,166],"ftL":[52.4,302.9]},{"rootY":29.4,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[2.7,-146.2],"shR":[-59.7,-104.5],"elR":[-71,13.4],"haR":[-84,79.9],"shL":[64.1,-102.8],"elL":[73.5,1.5],"haL":[85.6,69.2],"hipR":[-30.3,38.5],"knR":[-25.8,166.5],"ftR":[-24.6,308.2],"hipL":[30.6,33.4],"knL":[31.3,169.5],"ftL":[52.4,308.1]},{"rootY":24.5,"hips":[0,0],"chest":[-3.5,-77.7],"neck":[-3.5,-77.7],"head":[2.9,-146.2],"shR":[-59.6,-104.4],"elR":[-72,13.4],"haR":[-85.9,79.5],"shL":[64,-102.9],"elL":[72.6,1.4],"haL":[83.9,69.3],"hipR":[-30.4,38.7],"knR":[-25.2,169.6],"ftR":[-24.7,312.8],"hipL":[30.4,33.7],"knL":[31.5,172.6],"ftL":[52.8,312.9]},{"rootY":20,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[3.1,-146.3],"shR":[-59.4,-104.3],"elR":[-72.8,13.4],"haR":[-87.7,79.1],"shL":[63.9,-103],"elL":[71.7,1.4],"haL":[82.3,69.5],"hipR":[-30.4,38.8],"knR":[-24.9,172.4],"ftR":[-24.9,317.2],"hipL":[30.3,34],"knL":[32.1,175.2],"ftL":[53.1,317.1]},{"rootY":16.2,"hips":[0,0],"chest":[-3.6,-77.7],"neck":[-3.6,-77.7],"head":[3.2,-146.2],"shR":[-59.3,-104.3],"elR":[-73.6,13.3],"haR":[-89.2,78.7],"shL":[63.8,-102.9],"elL":[70.7,1.6],"haL":[80.8,69.9],"hipR":[-30.5,38.9],"knR":[-24.9,174.6],"ftR":[-24.9,320.9],"hipL":[30.1,34.4],"knL":[32.9,177.4],"ftL":[53.1,320.8]},{"rootY":13.1,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.5,-146.2],"shR":[-59.3,-104.2],"elR":[-74,13.3],"haR":[-90.2,78.6],"shL":[63.7,-103],"elL":[70,1.5],"haL":[79.7,69.8],"hipR":[-30.3,39.2],"knR":[-24.9,176.6],"ftR":[-25.2,323.8],"hipL":[30.3,34.5],"knL":[33.7,179],"ftL":[53.1,324.1]},{"rootY":10.5,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.6,-146.2],"shR":[-59.2,-104.2],"elR":[-74.5,13.3],"haR":[-91.2,78.4],"shL":[63.6,-103],"elL":[69.5,1.6],"haL":[78.9,70],"hipR":[-30.2,39.4],"knR":[-24.6,178.2],"ftR":[-25.5,326.2],"hipL":[30.4,34.7],"knL":[34.1,180.2],"ftL":[53,326.5]},{"rootY":8.6,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.7,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-91.7,78.4],"shL":[63.6,-103],"elL":[69.2,1.5],"haL":[78.3,70],"hipR":[-30.4,39.3],"knR":[-24.2,179.2],"ftR":[-25.6,328],"hipL":[30.3,35.1],"knL":[34.1,181.3],"ftL":[52.8,328.3]},{"rootY":7,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.9,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-92.1,78.5],"shL":[63.7,-103.1],"elL":[69.1,1.5],"haL":[78,70],"hipR":[-30.6,39.2],"knR":[-23.8,179.9],"ftR":[-25.5,329.2],"hipL":[30.1,35.5],"knL":[34.2,182.2],"ftL":[52.6,330]},{"rootY":5.7,"hips":[0,0],"chest":[-3.3,-77.8],"neck":[-3.3,-77.8],"head":[4.2,-146.2],"shR":[-58.9,-104.2],"elR":[-74.2,13.3],"haR":[-91.7,78.6],"shL":[64,-103],"elL":[69.2,1.5],"haL":[78.1,70.1],"hipR":[-30.7,39.2],"knR":[-23.3,180.5],"ftR":[-25.3,330.3],"hipL":[30.2,35.7],"knL":[34.3,182.8],"ftL":[52.5,331.2]},{"rootY":4.9,"hips":[0,0],"chest":[-3.1,-77.8],"neck":[-3.1,-77.8],"head":[4.5,-146.2],"shR":[-58.7,-104.3],"elR":[-73.8,13.2],"haR":[-91.2,78.7],"shL":[64.3,-102.9],"elL":[69.6,1.7],"haL":[78.7,70.3],"hipR":[-30.6,39.3],"knR":[-23,181],"ftR":[-25.1,331],"hipL":[30.3,35.7],"knL":[34.5,183],"ftL":[52.3,332]},{"rootY":4.2,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[4.9,-146.2],"shR":[-58.6,-104.3],"elR":[-73.5,13.2],"haR":[-90.6,79.1],"shL":[64.5,-102.9],"elL":[69.8,1.6],"haL":[79.1,70.1],"hipR":[-30.5,39.3],"knR":[-23,181.4],"ftR":[-25.1,331.4],"hipL":[30.4,35.8],"knL":[34.7,183.3],"ftL":[52.1,332.6]},{"rootY":3.9,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[5,-146.2],"shR":[-58.5,-104.5],"elR":[-72.9,13],"haR":[-89.7,79.1],"shL":[64.6,-102.7],"elL":[70.4,1.8],"haL":[79.9,70.3],"hipR":[-30.7,39.2],"knR":[-23.2,181.5],"ftR":[-25.4,331.6],"hipL":[30.2,36],"knL":[34.6,183.6],"ftL":[52,333]},{"rootY":3.8,"hips":[0,0],"chest":[-2.8,-77.8],"neck":[-2.8,-77.8],"head":[5.4,-146.2],"shR":[-58.3,-104.7],"elR":[-72.4,12.8],"haR":[-88.6,79.1],"shL":[64.9,-102.5],"elL":[70.9,2],"haL":[80.8,70.5],"hipR":[-30.8,39.1],"knR":[-23.1,181.6],"ftR":[-25.4,331.6],"hipL":[30.2,36.2],"knL":[34.7,183.7],"ftL":[52.2,333.4]},{"rootY":3.8,"hips":[0,0],"chest":[-2.5,-77.9],"neck":[-2.5,-77.9],"head":[5.9,-146.1],"shR":[-58,-104.7],"elR":[-71.6,12.8],"haR":[-87.7,79.1],"shL":[65.2,-102.4],"elL":[71.3,2],"haL":[81.6,70.5],"hipR":[-30.6,39.2],"knR":[-22.8,181.8],"ftR":[-25.4,331.6],"hipL":[30.4,36.1],"knL":[35,183.6],"ftL":[52.4,333.4]},{"rootY":3.7,"hips":[0,0],"chest":[-2.3,-77.9],"neck":[-2.3,-77.9],"head":[6.3,-146.1],"shR":[-57.7,-104.9],"elR":[-70.7,12.6],"haR":[-86.1,79.3],"shL":[65.5,-102.2],"elL":[71.9,2.1],"haL":[82.4,70.8],"hipR":[-30.6,39.2],"knR":[-22.6,181.9],"ftR":[-25.4,331.7],"hipL":[30.4,36],"knL":[35.3,183.6],"ftL":[52.3,333.5]},{"rootY":3.4,"hips":[0,0],"chest":[-2.2,-77.9],"neck":[-2.2,-77.9],"head":[6.5,-146.1],"shR":[-57.6,-105],"elR":[-70.2,12.5],"haR":[-85.6,79.2],"shL":[65.5,-102.1],"elL":[72,2.2],"haL":[82.8,70.9],"hipR":[-30.8,39.1],"knR":[-22.8,181.9],"ftR":[-25.7,331.9],"hipL":[30.3,36.2],"knL":[35,183.8],"ftL":[51.9,333.6]}]},"kick":{"name":"kick","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-87.6],"neck":[0.6,-87.6],"head":[0.4,-152.5],"shR":[-58.7,-112.6],"elR":[-171.2,-96.8],"haR":[-238.3,-87.4],"shL":[65.5,-107.1],"elL":[168.9,-92.6],"haL":[234.9,-83.3],"hipR":[-23.1,36.4],"knR":[-20.5,186.4],"ftR":[-17.8,340.7],"hipL":[27.2,36.4],"knL":[24.7,179.8],"ftL":[21.8,343.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.3,-152.4],"shR":[-32.2,-108.8],"elR":[-33.7,4.3],"haR":[-63.2,64.9],"shL":[62.6,-110.4],"elL":[70.1,-6.5],"haL":[57,52.4],"hipR":[-31,34.6],"knR":[-64.3,179.9],"ftR":[-51.8,320.6],"hipL":[8.7,38.3],"knL":[-5,180.7],"ftL":[38.3,325.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.5,-152.4],"shR":[-32.3,-108.7],"elR":[-34.3,4.5],"haR":[-64.3,64.9],"shL":[62.7,-110.4],"elL":[70,-6.6],"haL":[56.9,52.5],"hipR":[-30.9,34.6],"knR":[-64.5,180],"ftR":[-52.1,320.6],"hipL":[8.7,38.3],"knL":[-5.2,180.6],"ftL":[38,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14,-152.3],"shR":[-32.2,-108.8],"elR":[-34.8,4.4],"haR":[-65,64.8],"shL":[62.9,-110.4],"elL":[69.8,-6.5],"haL":[56.9,52.7],"hipR":[-30.9,34.7],"knR":[-64.5,180],"ftR":[-52.2,320.5],"hipL":[8.9,38.2],"knL":[-5,180.6],"ftL":[37.9,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14.2,-152.3],"shR":[-32.6,-108.6],"elR":[-35.2,4.6],"haR":[-65.6,64.7],"shL":[63.1,-110.5],"elL":[69.8,-6.6],"haL":[57,52.7],"hipR":[-30.8,34.8],"knR":[-64.6,180],"ftR":[-52.4,320.5],"hipL":[9,38.2],"knL":[-5,180.5],"ftL":[37.8,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.7,-108.6],"elR":[-35.2,4.5],"haR":[-65.6,64.6],"shL":[63.3,-110.5],"elL":[69.9,-6.5],"haL":[57.3,53],"hipR":[-30.7,34.8],"knR":[-64.4,180.1],"ftR":[-52.4,320.4],"hipL":[9.3,38.1],"knL":[-4.8,180.5],"ftL":[37.7,325]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.8,-108.7],"elR":[-35.1,4.5],"haR":[-65.5,64.4],"shL":[63.5,-110.4],"elL":[69.6,-6.4],"haL":[57.3,53.2],"hipR":[-30.8,34.8],"knR":[-64.1,180.2],"ftR":[-52.4,320.5],"hipL":[9.5,38.2],"knL":[-4.5,180.5],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[14.9,-152.2],"shR":[-33.6,-109.3],"elR":[-35.7,3.8],"haR":[-65.9,63.8],"shL":[64.3,-109.9],"elL":[70.1,-5.9],"haL":[58,53.8],"hipR":[-30.7,34.9],"knR":[-63.9,180.3],"ftR":[-52.4,320.4],"hipL":[9.7,38.1],"knL":[-4.3,180.4],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[15.1,-152.2],"shR":[-34.1,-109.7],"elR":[-36.1,3.5],"haR":[-65.9,63.6],"shL":[64.5,-109.5],"elL":[70.1,-5.5],"haL":[58.5,54.3],"hipR":[-30.9,34.7],"knR":[-63.8,180.2],"ftR":[-52.5,320.3],"hipL":[9.7,38.1],"knL":[-4.2,180.4],"ftL":[37.3,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.4,-152.2],"shR":[-34.3,-109.6],"elR":[-35.9,3.7],"haR":[-65.3,63.8],"shL":[64.9,-109.6],"elL":[70.6,-5.6],"haL":[59.1,54.4],"hipR":[-31,34.7],"knR":[-63.8,180.2],"ftR":[-52.4,320.4],"hipL":[9.7,38.2],"knL":[-4.2,180.4],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.8,-152.1],"shR":[-34.6,-109.6],"elR":[-35.9,3.7],"haR":[-65,64],"shL":[65.2,-109.6],"elL":[70.8,-5.5],"haL":[59.4,54.5],"hipR":[-31.1,34.5],"knR":[-63.9,180.1],"ftR":[-52.4,320.3],"hipL":[9.6,38.2],"knL":[-4.3,180.5],"ftL":[37.4,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16,-152.1],"shR":[-34.6,-109.5],"elR":[-35.5,3.8],"haR":[-64.3,64.1],"shL":[65.4,-109.6],"elL":[71.1,-5.5],"haL":[60.4,55.2],"hipR":[-31.2,34.4],"knR":[-63.8,180.1],"ftR":[-52.3,320.3],"hipL":[9.5,38.3],"knL":[-4.3,180.6],"ftL":[37.3,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16.1,-152.1],"shR":[-35.1,-109.3],"elR":[-35.7,4.1],"haR":[-64.1,64.5],"shL":[65.8,-109.7],"elL":[71.4,-5.6],"haL":[60.6,54.8],"hipR":[-31.3,34.4],"knR":[-63.7,180],"ftR":[-52.3,320.3],"hipL":[9.6,38.4],"knL":[-4.3,180.6],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[16.3,-152.1],"shR":[-34.8,-109.6],"elR":[-35.3,3.8],"haR":[-63.5,64.2],"shL":[65.8,-109.5],"elL":[71.4,-5.3],"haL":[60.8,55.2],"hipR":[-31.3,34.4],"knR":[-63.6,180.1],"ftR":[-52.2,320.2],"hipL":[9.7,38.3],"knL":[-4,180.6],"ftL":[37.4,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.4],"neck":[7.8,-87.4],"head":[17,-152],"shR":[-34.8,-109.7],"elR":[-35.1,3.8],"haR":[-63.2,64],"shL":[66.2,-109.4],"elL":[71.7,-5.2],"haL":[61.1,55.3],"hipR":[-31.1,34.6],"knR":[-63.5,180.2],"ftR":[-52.1,320.3],"hipL":[10,38.2],"knL":[-3.7,180.5],"ftL":[37.5,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.2,-152],"shR":[-34.9,-109.6],"elR":[-35,3.9],"haR":[-62.9,64],"shL":[66.4,-109.4],"elL":[71.7,-5.2],"haL":[61.3,55.5],"hipR":[-31,34.7],"knR":[-63.3,180.3],"ftR":[-51.9,320.3],"hipL":[10.3,38.1],"knL":[-3.2,180.3],"ftL":[37.7,325]},{"rootY":0.4,"hips":[0,0],"chest":[8,-87.4],"neck":[8,-87.4],"head":[17.4,-152],"shR":[-35,-109.7],"elR":[-35.2,3.8],"haR":[-63,63.9],"shL":[66.6,-109.2],"elL":[71.5,-5],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.4,180.3],"ftR":[-51.9,320.2],"hipL":[10.4,38],"knL":[-2.9,180.3],"ftL":[37.8,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.4,-152],"shR":[-35.2,-109.9],"elR":[-35.5,3.6],"haR":[-63.3,63.7],"shL":[66.8,-109.1],"elL":[71.6,-4.8],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.3,180.3],"ftR":[-51.8,320.2],"hipL":[10.4,38.1],"knL":[-2.9,180.4],"ftL":[37.9,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.3,-152],"shR":[-35.8,-109.4],"elR":[-36.3,4.1],"haR":[-64,64.2],"shL":[67,-109.2],"elL":[71.6,-5],"haL":[62.7,56.6],"hipR":[-30.9,34.7],"knR":[-63.1,180.4],"ftR":[-51.8,320.3],"hipL":[10.8,38.1],"knL":[-2.6,180.4],"ftL":[38,325.1]},{"rootY":0.5,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.5,-151.9],"shR":[-36.3,-110.1],"elR":[-37,3.4],"haR":[-64.7,63.4],"shL":[67.3,-108.9],"elL":[71.6,-4.6],"haL":[62.7,57],"hipR":[-31,34.6],"knR":[-62.9,180.4],"ftR":[-51.7,320.1],"hipL":[11,38.1],"knL":[-1.9,180.4],"ftL":[38.1,325.1]},{"rootY":0.4,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.6,-151.9],"shR":[-36.4,-110.1],"elR":[-37.6,3.4],"haR":[-65.2,63.6],"shL":[67.4,-108.8],"elL":[71.4,-4.6],"haL":[62.4,56.7],"hipR":[-30.9,34.7],"knR":[-62.5,180.6],"ftR":[-51.5,320.1],"hipL":[11.5,38.1],"knL":[-1.4,180.3],"ftL":[38.2,325.2]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.8,-151.9],"shR":[-36.7,-110],"elR":[-38,3.4],"haR":[-65.6,63.6],"shL":[67.6,-108.9],"elL":[71.6,-4.6],"haL":[62.5,56.4],"hipR":[-30.8,34.8],"knR":[-62,180.8],"ftR":[-51.3,320.2],"hipL":[12,38.1],"knL":[-0.4,180.3],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-37.4,-110.2],"elR":[-39,3.2],"haR":[-66.4,63.6],"shL":[67.9,-108.7],"elL":[72,-4.4],"haL":[62.9,56.4],"hipR":[-30.9,34.7],"knR":[-61.8,180.8],"ftR":[-51.1,320],"hipL":[12.1,38.1],"knL":[0,180.4],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[17.4,-151.9],"shR":[-38,-110.3],"elR":[-39.8,3.1],"haR":[-66.8,63.6],"shL":[68.2,-108.7],"elL":[72.5,-4.4],"haL":[63.2,56.2],"hipR":[-31,34.5],"knR":[-61.2,180.7],"ftR":[-50.8,320.1],"hipL":[12.1,38.3],"knL":[0.3,180.5],"ftL":[38.6,325.6]},{"rootY":0.2,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-39,-110.8],"elR":[-41,2.6],"haR":[-67.9,63.3],"shL":[69,-108.4],"elL":[73.4,-4.1],"haL":[64,56.2],"hipR":[-30.9,34.7],"knR":[-60.7,180.9],"ftR":[-50.5,320.2],"hipL":[12.5,38.3],"knL":[0.7,180.5],"ftL":[38.8,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[17.7,-152],"shR":[-39.6,-110.7],"elR":[-41.6,2.6],"haR":[-68.3,63.4],"shL":[69.1,-108.4],"elL":[74,-4.2],"haL":[64.6,55.9],"hipR":[-30.9,34.6],"knR":[-60.1,181],"ftR":[-50.1,320.2],"hipL":[12.8,38.4],"knL":[1.4,180.5],"ftL":[39.2,325.7]},{"rootY":0,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[17.6,-152],"shR":[-40.5,-110.7],"elR":[-42.7,2.7],"haR":[-69.2,63.5],"shL":[69.3,-108.5],"elL":[74.7,-4.3],"haL":[65.4,55.6],"hipR":[-31,34.6],"knR":[-59.5,181.1],"ftR":[-49.7,320.2],"hipL":[13,38.5],"knL":[1.9,180.6],"ftL":[39.4,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[17.4,-152.1],"shR":[-41.3,-110.7],"elR":[-43.8,2.5],"haR":[-70.4,63.4],"shL":[69.5,-108.5],"elL":[75.4,-4.3],"haL":[66.7,55.3],"hipR":[-30.8,34.7],"knR":[-59.1,181.3],"ftR":[-49.3,320.3],"hipL":[13.5,38.3],"knL":[2.4,180.4],"ftL":[39.8,325.8]},{"rootY":0,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[17.1,-152.2],"shR":[-42,-110.6],"elR":[-44.3,2.6],"haR":[-71.3,63.2],"shL":[69.5,-108.7],"elL":[76.5,-4.6],"haL":[68.5,54.8],"hipR":[-30.5,34.9],"knR":[-58.7,181.5],"ftR":[-49,320.4],"hipL":[14,38.2],"knL":[3.3,180.3],"ftL":[40,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[16.8,-152.2],"shR":[-42.9,-110.4],"elR":[-45.2,2.7],"haR":[-73,62.9],"shL":[69.5,-108.9],"elL":[78.2,-4.9],"haL":[71,54.1],"hipR":[-30.5,34.9],"knR":[-58.2,181.6],"ftR":[-48.5,320.3],"hipL":[14.2,38.2],"knL":[3.8,180.3],"ftL":[40.3,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.5,-87.6],"neck":[6.5,-87.6],"head":[16.3,-152.3],"shR":[-43.7,-110.1],"elR":[-46.2,2.8],"haR":[-74.9,62.4],"shL":[69.3,-109.2],"elL":[79.9,-5.5],"haL":[74.1,53.2],"hipR":[-30.7,34.7],"knR":[-58.1,181.5],"ftR":[-48.2,320.2],"hipL":[14,38.3],"knL":[4,180.4],"ftL":[40.5,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[6.1,-87.6],"neck":[6.1,-87.6],"head":[15.6,-152.3],"shR":[-44.7,-110.3],"elR":[-47.3,2.5],"haR":[-77.2,61.5],"shL":[69.2,-109.2],"elL":[81.7,-5.7],"haL":[77.4,52.3],"hipR":[-30.7,34.7],"knR":[-57.8,181.5],"ftR":[-47.9,320.1],"hipL":[14.1,38.3],"knL":[4.1,180.4],"ftL":[40.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[15.2,-152.3],"shR":[-45.2,-110.4],"elR":[-48.8,2.4],"haR":[-79.7,60.9],"shL":[69.1,-109.2],"elL":[83.3,-6.1],"haL":[81.2,51.6],"hipR":[-30.7,34.7],"knR":[-57.3,181.5],"ftR":[-47.4,320.2],"hipL":[14.1,38.5],"knL":[4.3,180.4],"ftL":[41.1,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.8,-152.3],"shR":[-45.5,-110],"elR":[-50.4,2.7],"haR":[-82.1,60.8],"shL":[68.8,-109.6],"elL":[84.5,-6.8],"haL":[84.7,50.4],"hipR":[-30.6,34.8],"knR":[-57.3,181.6],"ftR":[-47.2,320.3],"hipL":[14.3,38.4],"knL":[4.7,180.4],"ftL":[41.1,325.8]},{"rootY":0,"hips":[0,0],"chest":[5.6,-87.6],"neck":[5.6,-87.6],"head":[14.3,-152.3],"shR":[-45.9,-109.9],"elR":[-52.1,2.7],"haR":[-84.3,60.7],"shL":[68.7,-109.8],"elL":[85.7,-7.4],"haL":[88.1,49.3],"hipR":[-30.6,34.7],"knR":[-57,181.6],"ftR":[-46.8,320.3],"hipL":[14.3,38.4],"knL":[4.9,180.3],"ftL":[41.2,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14,-152.3],"shR":[-46,-109.5],"elR":[-53.9,3.1],"haR":[-86.5,60.9],"shL":[68.3,-110.2],"elL":[85.8,-8.1],"haL":[90.4,48.3],"hipR":[-30.5,34.9],"knR":[-57.8,181.5],"ftR":[-47.1,320.3],"hipL":[14.2,38.3],"knL":[4.2,180.3],"ftL":[41,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.3,-87.6],"neck":[5.3,-87.6],"head":[13.5,-152.3],"shR":[-46.1,-109.3],"elR":[-54.7,3.3],"haR":[-87.7,61],"shL":[68.1,-110.4],"elL":[86.5,-8.5],"haL":[92.6,47.7],"hipR":[-30.5,34.9],"knR":[-58,181.5],"ftR":[-47,320.4],"hipL":[14,38.2],"knL":[3.6,180.2],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.9,-87.7],"neck":[4.9,-87.7],"head":[12.8,-152.4],"shR":[-46.3,-109.1],"elR":[-55.4,3.6],"haR":[-88.7,61.1],"shL":[67.6,-110.5],"elL":[86.3,-9],"haL":[93.7,47.1],"hipR":[-30.6,34.8],"knR":[-58.3,181.4],"ftR":[-47,320.5],"hipL":[13.7,38.3],"knL":[3.2,180.3],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.6,-87.7],"neck":[4.6,-87.7],"head":[12.2,-152.4],"shR":[-46.5,-108.7],"elR":[-55.2,4],"haR":[-89.2,61.2],"shL":[67.2,-110.8],"elL":[85.7,-9.5],"haL":[93.9,46.7],"hipR":[-30.5,34.9],"knR":[-59,181.4],"ftR":[-47.3,320.6],"hipL":[13.6,38.2],"knL":[2.8,180.3],"ftL":[40.8,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.5,-87.7],"neck":[4.5,-87.7],"head":[11.7,-152.4],"shR":[-46.1,-108.2],"elR":[-54.3,4.6],"haR":[-88.7,61.2],"shL":[66.6,-111.4],"elL":[85,-10.1],"haL":[93.4,46],"hipR":[-30.6,34.9],"knR":[-59.6,181.2],"ftR":[-47.8,320.7],"hipL":[13,38.3],"knL":[1.7,180.4],"ftL":[40.5,325.7]},{"rootY":-0.3,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[11.1,-152.5],"shR":[-45.7,-107.7],"elR":[-53.4,5.1],"haR":[-88.5,61.3],"shL":[66,-111.6],"elL":[84.4,-10.5],"haL":[92.3,45.7],"hipR":[-30.7,34.8],"knR":[-59.8,181.1],"ftR":[-47.8,320.8],"hipL":[12.7,38.4],"knL":[1.4,180.5],"ftL":[40.6,325.8]},{"rootY":-0.3,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.8,-152.6],"shR":[-45,-107.7],"elR":[-51.8,5.2],"haR":[-87.8,60.8],"shL":[65.3,-111.7],"elL":[83.4,-10.6],"haL":[90.4,45.6],"hipR":[-30.3,35.2],"knR":[-60.6,181.2],"ftR":[-48.4,321],"hipL":[12.8,38.2],"knL":[1.1,180.3],"ftL":[40.2,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.6,-152.6],"shR":[-44.1,-107.5],"elR":[-49.6,5.6],"haR":[-86.3,60.7],"shL":[64.7,-111.9],"elL":[82,-10.8],"haL":[87.9,45.2],"hipR":[-30.3,35.3],"knR":[-61.2,181.1],"ftR":[-48.9,321.3],"hipL":[12.5,38.3],"knL":[0.4,180.3],"ftL":[39.9,325.8]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.8],"neck":[3.9,-87.8],"head":[10.5,-152.7],"shR":[-42.9,-107.3],"elR":[-47.5,5.8],"haR":[-84.9,60.6],"shL":[63.9,-112],"elL":[80.4,-11],"haL":[84.8,44.7],"hipR":[-30.3,35.3],"knR":[-62.2,180.8],"ftR":[-49.5,321.4],"hipL":[11.7,38.4],"knL":[-1.1,180.5],"ftL":[39.8,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.4,-152.8],"shR":[-41.3,-107.3],"elR":[-45.1,5.9],"haR":[-83.1,60.5],"shL":[63.2,-112.1],"elL":[79.1,-11.2],"haL":[81.6,44.2],"hipR":[-30.1,35.4],"knR":[-63.2,180.7],"ftR":[-50.1,321.6],"hipL":[11.2,38.4],"knL":[-2.2,180.5],"ftL":[39.6,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.8],"shR":[-39.4,-107.7],"elR":[-42.5,5.5],"haR":[-80.9,60.1],"shL":[62.3,-111.8],"elL":[77,-11],"haL":[77.4,44],"hipR":[-29.9,35.5],"knR":[-64.3,180.5],"ftR":[-51,321.9],"hipL":[10.6,38.3],"knL":[-3.2,180.4],"ftL":[39.4,325.6]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.9],"shR":[-37.3,-107.4],"elR":[-40,5.8],"haR":[-78.6,60.6],"shL":[60.9,-112],"elL":[74.1,-11.2],"haL":[72.2,43.3],"hipR":[-29.8,35.6],"knR":[-65.4,180.2],"ftR":[-51.6,322],"hipL":[9.8,38.4],"knL":[-4.5,180.5],"ftL":[39.4,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.1,-152.9],"shR":[-34.9,-107],"elR":[-37.3,6.3],"haR":[-75.9,61.3],"shL":[59.2,-112.3],"elL":[70.5,-11.5],"haL":[66.3,42.5],"hipR":[-29.7,35.6],"knR":[-66.6,179.9],"ftR":[-52.5,321.9],"hipL":[8.9,38.4],"knL":[-5.9,180.5],"ftL":[39.2,325.7]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.7],"neck":[3.9,-87.7],"head":[9.9,-152.9],"shR":[-32.4,-106.6],"elR":[-34.5,6.7],"haR":[-73,62.2],"shL":[57.2,-112.6],"elL":[67.3,-11.6],"haL":[60.3,42.1],"hipR":[-29.4,35.7],"knR":[-67.7,179.7],"ftR":[-53.2,322],"hipL":[8.4,38.3],"knL":[-6.7,180.5],"ftL":[39.1,325.7]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-31,-107.2],"elR":[-32.8,6],"haR":[-70.8,62],"shL":[55.9,-112.2],"elL":[64.2,-11.2],"haL":[54.3,41.7],"hipR":[-29.2,35.8],"knR":[-68.6,179.4],"ftR":[-53.7,322],"hipL":[7.9,38.3],"knL":[-7.6,180.5],"ftL":[39,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-28.5,-107.2],"elR":[-29.8,6.1],"haR":[-67.1,62.7],"shL":[54.2,-112.2],"elL":[61,-11.2],"haL":[48,41.3],"hipR":[-29.2,35.8],"knR":[-68.4,179.4],"ftR":[-53.9,322],"hipL":[7.4,38.3],"knL":[-8.3,180.5],"ftL":[39.1,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.4,-152.8],"shR":[-26.1,-107],"elR":[-26.5,6.2],"haR":[-63,63.2],"shL":[52.8,-112.2],"elL":[58.3,-11.2],"haL":[42.3,40.8],"hipR":[-29.1,35.8],"knR":[-68.4,179.4],"ftR":[-53.8,322],"hipL":[7,38.2],"knL":[-8.5,180.5],"ftL":[39.1,325.3]},{"rootY":0,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.2,-152.9],"shR":[-24.2,-106.8],"elR":[-23.3,6.3],"haR":[-58.8,63.8],"shL":[51.3,-112.4],"elL":[55.2,-11.4],"haL":[36.3,39.5],"hipR":[-29.1,35.8],"knR":[-68.8,179.2],"ftR":[-54.1,321.7],"hipL":[6.7,38],"knL":[-9,180.3],"ftL":[39,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[10.3,-152.8],"shR":[-22.3,-106.6],"elR":[-19.6,6.3],"haR":[-54.2,64.2],"shL":[49.8,-112.7],"elL":[52.2,-11.6],"haL":[30.6,38.4],"hipR":[-29.2,35.7],"knR":[-68.9,179.1],"ftR":[-54.2,321.5],"hipL":[6.3,38],"knL":[-9.5,180.3],"ftL":[38.9,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[4,-87.6],"neck":[4,-87.6],"head":[9.8,-152.9],"shR":[-21.4,-106.5],"elR":[-17.3,6.2],"haR":[-51.3,64.2],"shL":[48.5,-112.9],"elL":[49.7,-11.8],"haL":[25.7,37.3],"hipR":[-29.9,35],"knR":[-68.9,178.6],"ftR":[-54.3,321],"hipL":[5.4,38.4],"knL":[-10.5,180.7],"ftL":[38.8,324.9]},{"rootY":0.5,"hips":[0,0],"chest":[4.8,-87.6],"neck":[4.8,-87.6],"head":[10,-152.8],"shR":[-19.1,-106.2],"elR":[-14.5,6.5],"haR":[-47.2,64.7],"shL":[48.2,-113],"elL":[48.6,-11.6],"haL":[22.9,36.9],"hipR":[-29.2,35.7],"knR":[-69.2,179],"ftR":[-54.2,321],"hipL":[6.1,37.7],"knL":[-9.3,180.1],"ftL":[38.9,324.6]},{"rootY":0.7,"hips":[0,0],"chest":[5,-87.6],"neck":[5,-87.6],"head":[10,-152.9],"shR":[-18.4,-106.5],"elR":[-13.7,6],"haR":[-45.5,64.4],"shL":[48.1,-112.7],"elL":[48,-12.2],"haL":[20.3,35.2],"hipR":[-29.3,35.6],"knR":[-69.1,179],"ftR":[-54.1,320.9],"hipL":[5.8,37.8],"knL":[-9.5,180.2],"ftL":[38.9,324.5]},{"rootY":0.6,"hips":[0,0],"chest":[5.3,-87.5],"neck":[5.3,-87.5],"head":[9.5,-152.9],"shR":[-17.9,-106.8],"elR":[-13.3,5.6],"haR":[-44.8,63.9],"shL":[48.2,-112.4],"elL":[47.6,-11.3],"haL":[19.5,35.8],"hipR":[-29.3,35.6],"knR":[-68.9,179],"ftR":[-53.9,320.9],"hipL":[5.7,37.8],"knL":[-9.5,180.3],"ftL":[39,324.5]},{"rootY":0.7,"hips":[0,0],"chest":[5.7,-87.5],"neck":[5.7,-87.5],"head":[9.7,-152.8],"shR":[-17.3,-106.9],"elR":[-13.4,5.5],"haR":[-44.9,63.5],"shL":[48.4,-112.3],"elL":[47.4,-11.6],"haL":[18.8,35],"hipR":[-29,35.9],"knR":[-69.2,179.2],"ftR":[-53.8,320.8],"hipL":[6.1,37.4],"knL":[-8.9,179.9],"ftL":[39,324.4]},{"rootY":0.7,"hips":[0,0],"chest":[6,-87.5],"neck":[6,-87.5],"head":[9.6,-152.8],"shR":[-17.1,-106.9],"elR":[-14.3,5.4],"haR":[-46.4,63],"shL":[48.9,-112.2],"elL":[48.4,-11.2],"haL":[20,35.4],"hipR":[-28.9,36],"knR":[-69.3,179.3],"ftR":[-53.7,320.7],"hipL":[6.4,37.3],"knL":[-8.3,179.8],"ftL":[39.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[6.2,-87.5],"neck":[6.2,-87.5],"head":[9.7,-152.7],"shR":[-17.5,-107.1],"elR":[-15.9,5.1],"haR":[-49.2,62.1],"shL":[49.4,-112.1],"elL":[49.8,-10.8],"haL":[22.3,35.9],"hipR":[-29.2,35.8],"knR":[-68.9,179.2],"ftR":[-53.2,320.6],"hipL":[6.1,37.5],"knL":[-8.4,180],"ftL":[39.6,324.3]},{"rootY":0.6,"hips":[0,0],"chest":[6.3,-87.5],"neck":[6.3,-87.5],"head":[10,-152.7],"shR":[-18.6,-107.3],"elR":[-18.3,4.8],"haR":[-53.1,61],"shL":[50.6,-111.8],"elL":[51.2,-10.8],"haL":[25.2,36.4],"hipR":[-29.6,35.5],"knR":[-68.3,179.2],"ftR":[-52.9,320.8],"hipL":[6.1,37.8],"knL":[-8.6,180.3],"ftL":[39.7,324.4]},{"rootY":0.5,"hips":[0,0],"chest":[6.3,-87.4],"neck":[6.3,-87.4],"head":[9.9,-152.7],"shR":[-20,-107.5],"elR":[-20.9,4.3],"haR":[-57.7,59.7],"shL":[51.8,-111.5],"elL":[53.4,-10.5],"haL":[29.1,37.2],"hipR":[-30,35.1],"knR":[-67.2,179.1],"ftR":[-52.4,320.7],"hipL":[6.2,38.3],"knL":[-8.6,180.7],"ftL":[39.8,324.7]},{"rootY":0.5,"hips":[0,0],"chest":[6.7,-87.4],"neck":[6.7,-87.4],"head":[10.4,-152.7],"shR":[-20.9,-107.8],"elR":[-24.8,4.2],"haR":[-62.9,58.8],"shL":[53.4,-111.2],"elL":[55.9,-10.1],"haL":[33.8,38.2],"hipR":[-30.2,35],"knR":[-67,179.2],"ftR":[-51.9,320.7],"hipL":[6.4,38.2],"knL":[-8,180.6],"ftL":[40.3,324.5]},{"rootY":0.4,"hips":[0,0],"chest":[7.2,-87.4],"neck":[7.2,-87.4],"head":[11.3,-152.6],"shR":[-22.8,-108.4],"elR":[-28.2,3.5],"haR":[-68.3,57.2],"shL":[55.9,-110.6],"elL":[59.3,-9.3],"haL":[39.8,39.6],"hipR":[-30,35.4],"knR":[-65.8,179.7],"ftR":[-51,320.7],"hipL":[7.9,38],"knL":[-5.5,180.4],"ftL":[40.5,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.4],"neck":[7.4,-87.4],"head":[11.6,-152.6],"shR":[-24.8,-108.7],"elR":[-32.4,3.1],"haR":[-74,56],"shL":[58,-110.2],"elL":[62.2,-8.5],"haL":[45.7,40.7],"hipR":[-30,35.4],"knR":[-65.1,180],"ftR":[-50.6,320.7],"hipL":[8.8,37.9],"knL":[-4.6,180.3],"ftL":[40.7,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.4],"neck":[7.7,-87.4],"head":[12.2,-152.5],"shR":[-26.7,-108.7],"elR":[-36.5,3],"haR":[-79.5,55.1],"shL":[60,-110.1],"elL":[65,-8.3],"haL":[51.6,41.8],"hipR":[-29.9,35.5],"knR":[-64.1,180.4],"ftR":[-50,320.7],"hipL":[9.7,37.9],"knL":[-3.4,180.3],"ftL":[41,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[8.2,-87.3],"neck":[8.2,-87.3],"head":[12.8,-152.5],"shR":[-27.9,-108.2],"elR":[-39.9,3.5],"haR":[-84.1,54.8],"shL":[62,-110.4],"elL":[67.7,-8.6],"haL":[57.4,42.1],"hipR":[-30.1,35.4],"knR":[-63,180.6],"ftR":[-49.3,320.6],"hipL":[10.3,38],"knL":[-2.3,180.4],"ftL":[41.3,325.1]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.6,-152.4],"shR":[-31.1,-109.3],"elR":[-45.4,2.3],"haR":[-90.3,53.1],"shL":[64.3,-109.6],"elL":[70.7,-7.5],"haL":[63.5,44],"hipR":[-30.1,35.4],"knR":[-62,180.8],"ftR":[-48.9,320.6],"hipL":[11.3,38.1],"knL":[-1.1,180.3],"ftL":[41.4,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.4,-152.5],"shR":[-33.2,-109],"elR":[-49.9,2.4],"haR":[-95.3,52.6],"shL":[65.6,-109.8],"elL":[73.3,-7.2],"haL":[69.2,45],"hipR":[-30.2,35.4],"knR":[-61.1,181],"ftR":[-48.5,320.5],"hipL":[12,38.1],"knL":[-0.2,180.3],"ftL":[41.3,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.3,-87.4],"neck":[8.3,-87.4],"head":[13.7,-152.4],"shR":[-35.4,-109.8],"elR":[-54,1.5],"haR":[-99.6,51.1],"shL":[67.4,-109.2],"elL":[76,-6.4],"haL":[74.9,46.4],"hipR":[-29.8,35.6],"knR":[-60.2,181.4],"ftR":[-48.1,320.6],"hipL":[13.2,37.9],"knL":[1.6,180],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[13.5,-152.4],"shR":[-38.2,-111.2],"elR":[-58.4,0.2],"haR":[-103.9,49.3],"shL":[68.3,-108.1],"elL":[78.4,-5.3],"haL":[80.3,47.8],"hipR":[-30.1,35.3],"knR":[-59.3,181.4],"ftR":[-47.7,320.5],"hipL":[13.6,38.1],"knL":[2.4,180.1],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[13.9,-152.5],"shR":[-40.7,-110.3],"elR":[-62.2,0.9],"haR":[-107.4,49.2],"shL":[69.3,-108.8],"elL":[80.6,-5.8],"haL":[85.1,47.4],"hipR":[-29.9,35.4],"knR":[-58.2,181.7],"ftR":[-47.3,320.4],"hipL":[14.7,38.1],"knL":[4.1,180],"ftL":[41.4,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.2,-152.5],"shR":[-43.3,-109.8],"elR":[-66.1,1.3],"haR":[-110.6,49.2],"shL":[70.1,-109.2],"elL":[82.2,-6.1],"haL":[89.5,47.4],"hipR":[-29.2,35.8],"knR":[-57.5,182.2],"ftR":[-47.3,320.6],"hipL":[16.4,37.7],"knL":[5.8,179.4],"ftL":[41.1,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7,-87.5],"neck":[7,-87.5],"head":[14.4,-152.5],"shR":[-45.3,-110.5],"elR":[-69.1,0.5],"haR":[-112.7,47.8],"shL":[70.8,-108.9],"elL":[83.6,-5.7],"haL":[93.7,48],"hipR":[-29.7,35.4],"knR":[-55.9,182.1],"ftR":[-46.4,320.3],"hipL":[16.4,38.1],"knL":[6.8,179.7],"ftL":[41.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[14.5,-152.5],"shR":[-47.2,-110.4],"elR":[-71.9,0.4],"haR":[-114.3,47.3],"shL":[71.2,-108.9],"elL":[84.6,-5.8],"haL":[97.4,48.1],"hipR":[-29.7,35.1],"knR":[-54.7,182.1],"ftR":[-46,320.4],"hipL":[17,38.3],"knL":[8,179.7],"ftL":[42.2,326.3]},{"rootY":-0.2,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.5],"shR":[-48.6,-110.6],"elR":[-74,0.1],"haR":[-115.3,46.7],"shL":[71.6,-108.9],"elL":[85.5,-5.7],"haL":[100.6,48.3],"hipR":[-29.6,35.1],"knR":[-53.1,182.4],"ftR":[-45.2,320.4],"hipL":[17.9,38.5],"knL":[9.9,179.7],"ftL":[42.5,326.5]},{"rootY":-0.4,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.6],"shR":[-50,-110.9],"elR":[-75.9,-0.3],"haR":[-115.5,45.9],"shL":[71.8,-108.7],"elL":[86.4,-5.6],"haL":[104,48.7],"hipR":[-29.1,35.2],"knR":[-51.7,182.7],"ftR":[-44.6,320.6],"hipL":[19,38.5],"knL":[11.7,179.6],"ftL":[42.8,326.8]},{"rootY":-0.7,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[14.5,-152.5],"shR":[-51,-110.4],"elR":[-77.3,0.1],"haR":[-115.6,46.1],"shL":[72,-109],"elL":[87,-5.9],"haL":[106.6,47.7],"hipR":[-28.7,35.3],"knR":[-50.2,183],"ftR":[-44,320.7],"hipL":[19.8,38.6],"knL":[13.1,179.4],"ftL":[43.1,327.2]},{"rootY":-0.8,"hips":[0,0],"chest":[6.3,-87.6],"neck":[6.3,-87.6],"head":[14.7,-152.4],"shR":[-52.2,-111.3],"elR":[-78.6,-0.8],"haR":[-115.2,45.1],"shL":[71.5,-108.3],"elL":[87.3,-5.3],"haL":[108.5,48],"hipR":[-28.2,35.4],"knR":[-48.9,183.2],"ftR":[-43.6,320.8],"hipL":[20.9,38.6],"knL":[14.9,179.1],"ftL":[43.2,327.4]},{"rootY":-0.9,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[14.6,-152.4],"shR":[-53.2,-111.7],"elR":[-79.8,-1.3],"haR":[-114.6,44.5],"shL":[70.9,-108.2],"elL":[87.2,-5.2],"haL":[110.1,48.4],"hipR":[-27.8,35.4],"knR":[-48.1,183.3],"ftR":[-43.3,320.8],"hipL":[21.5,38.6],"knL":[16,178.9],"ftL":[43,327.5]},{"rootY":-1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.7,-152.4],"shR":[-54,-111.5],"elR":[-80.7,-1.2],"haR":[-113.8,44.6],"shL":[70.3,-108.5],"elL":[86.7,-5.5],"haL":[111.1,47.8],"hipR":[-27.5,35.5],"knR":[-47.5,183.4],"ftR":[-43.3,320.8],"hipL":[22.1,38.6],"knL":[17.1,178.7],"ftL":[42.7,327.5]},{"rootY":-1.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14.3,-152.5],"shR":[-54.5,-111.7],"elR":[-80.9,-1.4],"haR":[-112.4,44.4],"shL":[69.8,-108.5],"elL":[86,-5.4],"haL":[111.6,47.5],"hipR":[-27.5,35.4],"knR":[-46.7,183.4],"ftR":[-42.9,320.8],"hipL":[22.2,38.8],"knL":[17.7,178.6],"ftL":[43,327.8]},{"rootY":-1.3,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[14.1,-152.4],"shR":[-55.2,-111.7],"elR":[-81.1,-1.4],"haR":[-111,44.4],"shL":[69.1,-108.7],"elL":[85.2,-5.6],"haL":[111.4,47.6],"hipR":[-27.3,35.4],"knR":[-46.2,183.5],"ftR":[-42.9,321],"hipL":[22.5,38.8],"knL":[18.2,178.5],"ftL":[42.9,327.9]},{"rootY":-1.5,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[13.8,-152.5],"shR":[-55.4,-111.6],"elR":[-80.2,-1.2],"haR":[-108.9,44.5],"shL":[68.7,-108.8],"elL":[84.4,-5.6],"haL":[110.9,47.8],"hipR":[-27.4,35.3],"knR":[-45.4,183.4],"ftR":[-42.6,321.1],"hipL":[22.4,39],"knL":[19,178.5],"ftL":[43.1,328]},{"rootY":-1.6,"hips":[0,0],"chest":[4.7,-87.6],"neck":[4.7,-87.6],"head":[13.5,-152.4],"shR":[-55.8,-111.3],"elR":[-79.6,-0.6],"haR":[-106.9,44.8],"shL":[68.2,-109.1],"elL":[83.1,-5.8],"haL":[109.8,48],"hipR":[-27.2,35.4],"knR":[-45.8,183.5],"ftR":[-43.1,321.3],"hipL":[22.6,39],"knL":[18.7,178.4],"ftL":[42.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[4.5,-87.6],"neck":[4.5,-87.6],"head":[13,-152.5],"shR":[-56.2,-111.1],"elR":[-78.3,-0.1],"haR":[-104.4,45.2],"shL":[67.8,-109.2],"elL":[82,-5.8],"haL":[108.3,48.6],"hipR":[-27.2,35.4],"knR":[-45.9,183.5],"ftR":[-43.4,321.4],"hipL":[22.6,39],"knL":[18.4,178.4],"ftL":[42.3,328.2]},{"rootY":-1.8,"hips":[0,0],"chest":[4.6,-87.6],"neck":[4.6,-87.6],"head":[12.6,-152.5],"shR":[-56.1,-111],"elR":[-76.6,0.4],"haR":[-101.5,45.8],"shL":[67.9,-109.5],"elL":[81.2,-6],"haL":[106.8,49.3],"hipR":[-27.5,35.3],"knR":[-45.9,183.4],"ftR":[-43.4,321.5],"hipL":[22.3,39.2],"knL":[18.1,178.5],"ftL":[42.4,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.3,-87.6],"neck":[4.3,-87.6],"head":[11.7,-152.6],"shR":[-56.3,-110.9],"elR":[-75.1,0.8],"haR":[-99.1,46.7],"shL":[67.8,-109.8],"elL":[80.2,-6.2],"haL":[105,50],"hipR":[-27.5,35.5],"knR":[-46.7,183.4],"ftR":[-44,321.6],"hipL":[22.2,39.1],"knL":[17.3,178.5],"ftL":[41.8,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[11.1,-152.6],"shR":[-56.4,-110.8],"elR":[-73.3,1.3],"haR":[-96.6,47.7],"shL":[67.9,-109.8],"elL":[79.5,-6.2],"haL":[103.1,50.8],"hipR":[-27.6,35.6],"knR":[-47.3,183.3],"ftR":[-44.4,321.7],"hipL":[22.1,39.1],"knL":[16.6,178.5],"ftL":[41.4,328.3]},{"rootY":-1.7,"hips":[0,0],"chest":[3.8,-87.6],"neck":[3.8,-87.6],"head":[10.1,-152.6],"shR":[-56.6,-110.6],"elR":[-71.8,1.8],"haR":[-94.8,49.1],"shL":[67.7,-110.1],"elL":[78.5,-6.3],"haL":[100.5,51.7],"hipR":[-27.8,35.5],"knR":[-48.6,183.1],"ftR":[-45.3,321.6],"hipL":[21.6,39],"knL":[15.3,178.5],"ftL":[40.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[3.5,-87.5],"neck":[3.5,-87.5],"head":[9.7,-152.6],"shR":[-56.7,-110.3],"elR":[-70,2.4],"haR":[-93.2,50.8],"shL":[67.6,-110.4],"elL":[77.8,-6.6],"haL":[98.2,52.3],"hipR":[-28,35.6],"knR":[-49.8,182.9],"ftR":[-46.3,321.5],"hipL":[21.2,38.9],"knL":[13.8,178.5],"ftL":[39.6,328]},{"rootY":-1.7,"hips":[0,0],"chest":[3.1,-87.5],"neck":[3.1,-87.5],"head":[8.2,-152.6],"shR":[-56.8,-110.2],"elR":[-68.3,2.8],"haR":[-91.9,52.5],"shL":[67.4,-110.6],"elL":[76.9,-6.7],"haL":[95.5,52.7],"hipR":[-28,35.8],"knR":[-51.3,182.8],"ftR":[-47.7,321.5],"hipL":[20.9,38.8],"knL":[11.9,178.4],"ftL":[38.3,327.8]},{"rootY":-1.7,"hips":[0,0],"chest":[2.8,-87.5],"neck":[2.8,-87.5],"head":[7,-152.5],"shR":[-56.5,-109.9],"elR":[-66.6,3.2],"haR":[-90.8,54.2],"shL":[67.2,-111],"elL":[76.2,-7.1],"haL":[92.7,53],"hipR":[-28.3,35.8],"knR":[-52.8,182.5],"ftR":[-49.1,321.5],"hipL":[20.1,38.8],"knL":[10.2,178.4],"ftL":[37,327.8]},{"rootY":-1.8,"hips":[0,0],"chest":[2.5,-87.4],"neck":[2.5,-87.4],"head":[5.4,-152.5],"shR":[-56.2,-109.8],"elR":[-64.7,3.5],"haR":[-89.9,56],"shL":[66.7,-111.3],"elL":[75.2,-7.3],"haL":[89.7,53],"hipR":[-28.4,36],"knR":[-54.9,182.2],"ftR":[-51.1,321.7],"hipL":[19.7,38.6],"knL":[8.2,178.3],"ftL":[35.4,327.7]},{"rootY":-1.7,"hips":[0,0],"chest":[2.2,-87.4],"neck":[2.2,-87.4],"head":[4.1,-152.3],"shR":[-55.6,-109.6],"elR":[-62.6,3.7],"haR":[-88.9,57.6],"shL":[66.1,-111.5],"elL":[74.4,-7.5],"haL":[86.6,53],"hipR":[-28.6,36.1],"knR":[-57.2,181.8],"ftR":[-53.6,322],"hipL":[18.8,38.6],"knL":[5.8,178.3],"ftL":[33.8,327.8]},{"rootY":-1.5,"hips":[0,0],"chest":[1.7,-87.3],"neck":[1.7,-87.3],"head":[2.8,-152],"shR":[-54.8,-109.5],"elR":[-60.5,3.9],"haR":[-88.2,58.9],"shL":[65.1,-111.6],"elL":[73.4,-7.6],"haL":[83.5,52.9],"hipR":[-28.6,36.3],"knR":[-60.1,181.2],"ftR":[-56.3,322.1],"hipL":[18.1,38.5],"knL":[3.2,178.1],"ftL":[32,327.5]},{"rootY":-1,"hips":[0,0],"chest":[1.2,-87.2],"neck":[1.2,-87.2],"head":[1.1,-151.8],"shR":[-53.7,-109.5],"elR":[-58.2,3.9],"haR":[-87.2,59.6],"shL":[63.9,-111.6],"elL":[72.4,-7.7],"haL":[80.4,52.8],"hipR":[-28.6,36.5],"knR":[-62.9,180.6],"ftR":[-58.7,321.8],"hipL":[17.2,38.4],"knL":[0.5,178],"ftL":[30.5,327.2]},{"rootY":-0.5,"hips":[0,0],"chest":[0.9,-87.1],"neck":[0.9,-87.1],"head":[-0.1,-151.6],"shR":[-52.3,-109.4],"elR":[-55.4,3.8],"haR":[-85.7,60.3],"shL":[62.5,-111.7],"elL":[72,-7.8],"haL":[77.9,52.5],"hipR":[-28.4,36.7],"knR":[-65.6,179.9],"ftR":[-60.9,321.5],"hipL":[16.5,38.1],"knL":[-2.2,177.6],"ftL":[29,326.8]},{"rootY":-0.1,"hips":[0,0],"chest":[0.6,-87],"neck":[0.6,-87],"head":[-1.8,-151.1],"shR":[-50.8,-109.6],"elR":[-52.4,3.5],"haR":[-84,60.6],"shL":[61,-111.5],"elL":[71,-7.6],"haL":[75,52.6],"hipR":[-28.3,36.8],"knR":[-67.9,179.2],"ftR":[-62.8,321.1],"hipL":[15.7,38],"knL":[-4.1,177.5],"ftL":[27.5,326.5]},{"rootY":0.1,"hips":[0,0],"chest":[0.3,-86.9],"neck":[0.3,-86.9],"head":[-3.2,-150.8],"shR":[-48.9,-109.7],"elR":[-48.9,3.2],"haR":[-81.3,60.6],"shL":[59.2,-111.3],"elL":[69.5,-7.4],"haL":[72,52.8],"hipR":[-28.3,36.9],"knR":[-69.9,178.5],"ftR":[-64.7,320.8],"hipL":[14.6,37.8],"knL":[-6.3,177.3],"ftL":[25.8,326.3]},{"rootY":0.2,"hips":[0,0],"chest":[0,-86.8],"neck":[0,-86.8],"head":[-4.8,-150.4],"shR":[-47,-109.9],"elR":[-44.9,2.7],"haR":[-77.9,60.6],"shL":[57.3,-111],"elL":[68,-7.2],"haL":[69.1,52.9],"hipR":[-28.3,36.9],"knR":[-70.9,178.2],"ftR":[-65.7,320.7],"hipL":[13.8,37.7],"knL":[-8,177.2],"ftL":[24.5,326.2]},{"rootY":0.1,"hips":[0,0],"chest":[-0.4,-86.8],"neck":[-0.4,-86.8],"head":[-6.1,-150.2],"shR":[-45.6,-110],"elR":[-41.4,2.2],"haR":[-74.6,60.6],"shL":[55.5,-110.9],"elL":[66,-7.1],"haL":[66,52.7],"hipR":[-28.2,36.9],"knR":[-72,178],"ftR":[-67,320.9],"hipL":[12.9,37.7],"knL":[-10,177.3],"ftL":[23.3,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-0.6,-86.7],"neck":[-0.6,-86.7],"head":[-6.8,-149.9],"shR":[-43.8,-110.4],"elR":[-37.7,1.4],"haR":[-70.6,60.3],"shL":[53.5,-110.6],"elL":[63.5,-6.8],"haL":[62.3,52.7],"hipR":[-28.1,37],"knR":[-72.9,177.7],"ftR":[-68.4,320.9],"hipL":[12.1,37.7],"knL":[-11.6,177.3],"ftL":[22,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-1.3,-86.6],"neck":[-1.3,-86.6],"head":[-8.5,-149.7],"shR":[-42.4,-110.1],"elR":[-34.1,1],"haR":[-66.3,60.6],"shL":[51.1,-110.6],"elL":[60.9,-6.8],"haL":[58.3,52.5],"hipR":[-27.9,37.1],"knR":[-74,177.5],"ftR":[-69.8,321.1],"hipL":[11.5,37.6],"knL":[-13.2,177.3],"ftL":[20.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-9.7,-149.6],"shR":[-41.3,-110.4],"elR":[-30.8,0.1],"haR":[-62.1,60.2],"shL":[49,-110.1],"elL":[57.7,-6.4],"haL":[53.8,52.5],"hipR":[-27.8,37.1],"knR":[-74.8,177.3],"ftR":[-70.8,321.2],"hipL":[10.7,37.8],"knL":[-14.7,177.4],"ftL":[19.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-149.4],"shR":[-39.6,-110.7],"elR":[-27,-0.8],"haR":[-56.9,59.9],"shL":[46.7,-109.7],"elL":[54.2,-6],"haL":[48.7,52.6],"hipR":[-27.6,37.2],"knR":[-75.7,177],"ftR":[-71.8,321.3],"hipL":[10,37.8],"knL":[-16.2,177.5],"ftL":[19.1,326]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-86.2],"neck":[-3.2,-86.2],"head":[-12.1,-149.1],"shR":[-39.1,-111.4],"elR":[-24.2,-2.2],"haR":[-52.5,59.1],"shL":[44.8,-108.8],"elL":[51.3,-5.2],"haL":[44.9,53.9],"hipR":[-27.6,37],"knR":[-76.2,176.7],"ftR":[-72.3,321.4],"hipL":[9.3,38.2],"knL":[-17.3,177.8],"ftL":[18.6,326.2]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-86.2],"neck":[-3.4,-86.2],"head":[-12.9,-149.1],"shR":[-37.4,-110.8],"elR":[-20.8,-2],"haR":[-47.4,59.6],"shL":[42.5,-109.3],"elL":[47.8,-5.6],"haL":[38.9,52.1],"hipR":[-27.5,37],"knR":[-77.5,176.4],"ftR":[-73.4,321.3],"hipL":[8.3,38.2],"knL":[-19.1,178],"ftL":[17.9,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-3.8,-86],"neck":[-3.8,-86],"head":[-14.2,-148.7],"shR":[-36.4,-110.9],"elR":[-18.1,-2.5],"haR":[-42.8,59.6],"shL":[40.6,-109],"elL":[44.5,-5.4],"haL":[33.9,51.9],"hipR":[-27.2,37],"knR":[-78.3,176.1],"ftR":[-73.9,321.1],"hipL":[7.8,38.3],"knL":[-20.2,178.1],"ftL":[17.6,325.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.6,-85.9],"neck":[-4.6,-85.9],"head":[-15.4,-148.4],"shR":[-37.2,-111.5],"elR":[-17,-3.7],"haR":[-40.1,58.5],"shL":[39.6,-108.2],"elL":[42.1,-4.6],"haL":[29.6,52.4],"hipR":[-27.2,36.9],"knR":[-79.2,175.7],"ftR":[-74.2,320.8],"hipL":[7.4,38.6],"knL":[-20.5,178.5],"ftL":[17.2,326.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-85.7],"neck":[-5,-85.7],"head":[-16,-148.3],"shR":[-36.7,-111.9],"elR":[-14.6,-4.4],"haR":[-36.3,58],"shL":[38.2,-107.5],"elL":[39.6,-4.1],"haL":[25.2,52.9],"hipR":[-26.7,37.2],"knR":[-80,175.5],"ftR":[-74.7,320.6],"hipL":[7.5,38.5],"knL":[-20.7,178.5],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.5,-85.5],"neck":[-5.5,-85.5],"head":[-17.2,-147.9],"shR":[-36.8,-111.8],"elR":[-13.1,-4.7],"haR":[-33.7,57.9],"shL":[37,-107.3],"elL":[37.2,-3.8],"haL":[20.9,52.7],"hipR":[-26.6,37.2],"knR":[-80.6,175.3],"ftR":[-75,320.2],"hipL":[7.2,38.8],"knL":[-21.2,178.7],"ftL":[17.1,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.8,-85.3],"neck":[-5.8,-85.3],"head":[-18.2,-147.4],"shR":[-36.1,-111.9],"elR":[-10.6,-5.1],"haR":[-30.9,57.7],"shL":[35.5,-106.9],"elL":[34.2,-3.3],"haL":[16.3,53],"hipR":[-26.4,37.2],"knR":[-81,175],"ftR":[-74.8,319.8],"hipL":[7.2,38.9],"knL":[-20.8,179],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-85.1],"neck":[-6.4,-85.1],"head":[-19.1,-147.1],"shR":[-36.3,-112.3],"elR":[-9.5,-5.8],"haR":[-29.2,57.1],"shL":[34.4,-106.2],"elL":[31.6,-2.7],"haL":[12.3,53.2],"hipR":[-26.5,37],"knR":[-81.4,174.6],"ftR":[-73.6,319.5],"hipL":[6.7,39.2],"knL":[-21.2,179.3],"ftL":[17.6,326]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.9],"neck":[-7,-84.9],"head":[-20,-146.8],"shR":[-36.3,-112.3],"elR":[-8.8,-5.7],"haR":[-28,57.1],"shL":[33,-105.8],"elL":[28.5,-2.3],"haL":[8.3,53.4],"hipR":[-26.4,36.9],"knR":[-81.9,174.2],"ftR":[-72.4,318.9],"hipL":[6.7,39.5],"knL":[-21.3,179.7],"ftL":[18,326.2]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.6],"neck":[-7,-84.6],"head":[-20.6,-146.3],"shR":[-36.4,-112.4],"elR":[-7.7,-6.4],"haR":[-27.2,56.4],"shL":[32.8,-105.2],"elL":[27.1,-1.7],"haL":[5.7,53.7],"hipR":[-26,37.2],"knR":[-82.4,174.1],"ftR":[-70.6,318.3],"hipL":[7.2,39.5],"knL":[-20.2,179.8],"ftL":[19.1,326.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-7.2,-84.7],"neck":[-7.2,-84.7],"head":[-21,-146.3],"shR":[-36.4,-112.8],"elR":[-7.3,-7],"haR":[-27,55.9],"shL":[32.5,-104.9],"elL":[25.8,-1.4],"haL":[3.4,53.6],"hipR":[-25.8,37.2],"knR":[-83.5,173.6],"ftR":[-69,317.1],"hipL":[6.6,39.4],"knL":[-20.5,180],"ftL":[20.5,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-22.1,-145.4],"shR":[-36.8,-112.2],"elR":[-7.6,-6.3],"haR":[-27.5,56.5],"shL":[31.2,-104.2],"elL":[23.4,-0.8],"haL":[0.3,54],"hipR":[-25.7,37.3],"knR":[-83.2,173.4],"ftR":[-67.1,316.5],"hipL":[8.1,39.9],"knL":[-18.1,180.5],"ftL":[21.6,326.1]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.1,-83.8],"neck":[-8.1,-83.8],"head":[-22.7,-145.1],"shR":[-36.9,-112.4],"elR":[-7.8,-6.7],"haR":[-28.4,56],"shL":[30.8,-103.6],"elL":[22.1,-0.2],"haL":[-1.6,54.4],"hipR":[-25.5,37.4],"knR":[-83.8,173.1],"ftR":[-65.4,315.3],"hipL":[8.4,39.9],"knL":[-17.1,180.7],"ftL":[23.1,325.7]},{"rootY":0.2,"hips":[0,0],"chest":[-8.3,-83.6],"neck":[-8.3,-83.6],"head":[-23.2,-144.7],"shR":[-37.5,-112.4],"elR":[-8.2,-6.9],"haR":[-30,55.6],"shL":[30.6,-103.3],"elL":[21.1,0],"haL":[-2.7,54.6],"hipR":[-25.2,37.6],"knR":[-84.6,172.9],"ftR":[-63.5,313.9],"hipL":[8.9,39.9],"knL":[-15.3,181],"ftL":[24.9,325.2]},{"rootY":0.4,"hips":[0,0],"chest":[-8.8,-83.3],"neck":[-8.8,-83.3],"head":[-24,-144.3],"shR":[-38.5,-112.2],"elR":[-9.2,-6.8],"haR":[-32,55.5],"shL":[30.6,-102.7],"elL":[20.5,0.6],"haL":[-3.2,54.9],"hipR":[-25.4,37.5],"knR":[-84.5,172.7],"ftR":[-61.4,312.5],"hipL":[9.1,40.2],"knL":[-14.4,181.5],"ftL":[27,325.2]},{"rootY":0.6,"hips":[0,0],"chest":[-8.8,-83.2],"neck":[-8.8,-83.2],"head":[-24.1,-144.1],"shR":[-39.2,-112.5],"elR":[-10.6,-7.2],"haR":[-34.1,54.7],"shL":[31,-102.4],"elL":[20.7,0.9],"haL":[-2.7,55.4],"hipR":[-25.2,37.5],"knR":[-84.8,172.6],"ftR":[-58.8,311],"hipL":[9.3,40.3],"knL":[-12.9,181.9],"ftL":[29.9,324.6]},{"rootY":1.3,"hips":[0,0],"chest":[-8.9,-82.9],"neck":[-8.9,-82.9],"head":[-24.6,-143.7],"shR":[-39.3,-112.2],"elR":[-11.5,-7.2],"haR":[-36.1,54.2],"shL":[30.9,-102.1],"elL":[20.8,1.1],"haL":[-2.2,55.6],"hipR":[-25.1,37.6],"knR":[-84.4,172.9],"ftR":[-55.6,309.5],"hipL":[10,40.4],"knL":[-10.6,182.3],"ftL":[32.8,324]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-83.1],"neck":[-8.9,-83.1],"head":[-24.6,-143.7],"shR":[-40.3,-112.6],"elR":[-12.7,-8],"haR":[-38.6,53],"shL":[31.8,-102],"elL":[21.6,1.2],"haL":[-0.2,55.6],"hipR":[-25.1,37.5],"knR":[-84.3,173],"ftR":[-51.8,307.6],"hipL":[9.6,40.5],"knL":[-9.4,182.7],"ftL":[36.3,322.8]},{"rootY":3,"hips":[0,0],"chest":[-9.1,-82.5],"neck":[-9.1,-82.5],"head":[-24.9,-143.1],"shR":[-42.7,-112.6],"elR":[-15,-8.4],"haR":[-42.1,52.1],"shL":[33.8,-100.9],"elL":[24,2],"haL":[3.6,56.4],"hipR":[-24.9,37.8],"knR":[-82.9,173.6],"ftR":[-46.7,305.9],"hipL":[10.9,40.6],"knL":[-6,183],"ftL":[40.3,322.1]},{"rootY":4,"hips":[0,0],"chest":[-8.9,-82.3],"neck":[-8.9,-82.3],"head":[-24.8,-142.9],"shR":[-43,-112.6],"elR":[-16,-8.8],"haR":[-44.6,51.2],"shL":[34.5,-100.5],"elL":[25.9,2.3],"haL":[7.2,56.5],"hipR":[-24.9,37.7],"knR":[-81.6,174.3],"ftR":[-41.7,304],"hipL":[11.4,40.8],"knL":[-3.2,183.5],"ftL":[44.8,321]},{"rootY":5.2,"hips":[0,0],"chest":[-8.9,-82],"neck":[-8.9,-82],"head":[-24.7,-142.5],"shR":[-43.2,-112.4],"elR":[-16.5,-9.4],"haR":[-46.8,50],"shL":[34.7,-100.2],"elL":[28.2,2.4],"haL":[11.2,56.3],"hipR":[-24.9,37.7],"knR":[-79.8,175],"ftR":[-37,302.1],"hipL":[11.8,41.1],"knL":[-0.7,183.9],"ftL":[49.5,319.6]},{"rootY":6.8,"hips":[0,0],"chest":[-8.5,-81.8],"neck":[-8.5,-81.8],"head":[-24.2,-142.1],"shR":[-43.1,-112.2],"elR":[-17.3,-9.4],"haR":[-49.5,49.3],"shL":[35.3,-99.8],"elL":[31.9,2.3],"haL":[17.2,55.7],"hipR":[-25.4,37.4],"knR":[-77.4,175.8],"ftR":[-31.2,299.7],"hipL":[11.8,41.4],"knL":[2.5,184.5],"ftL":[55,317.6]},{"rootY":8.6,"hips":[0,0],"chest":[-7.7,-81.3],"neck":[-7.7,-81.3],"head":[-23.2,-141.6],"shR":[-42.1,-111.6],"elR":[-18.2,-8.9],"haR":[-52.2,48.9],"shL":[36,-99.6],"elL":[37,2.2],"haL":[25.1,54.5],"hipR":[-25.7,37],"knR":[-73.9,176.7],"ftR":[-24.7,297.3],"hipL":[11.8,42],"knL":[4.9,185.2],"ftL":[60.8,315.1]},{"rootY":10.9,"hips":[0,0],"chest":[-8,-81.5],"neck":[-8,-81.5],"head":[-23.2,-141.7],"shR":[-43.3,-111.9],"elR":[-22.1,-9],"haR":[-58.3,47.8],"shL":[36.5,-99.5],"elL":[42.3,1.4],"haL":[34.2,52.3],"hipR":[-26.5,36.5],"knR":[-71.6,177.5],"ftR":[-19.2,293.9],"hipL":[11.2,42.2],"knL":[4.8,185.4],"ftL":[65.9,309.7]},{"rootY":12.9,"hips":[0,0],"chest":[-8.2,-81.1],"neck":[-8.2,-81.1],"head":[-23,-141.2],"shR":[-44.1,-111.8],"elR":[-27.4,-8.1],"haR":[-65.9,47.4],"shL":[37.1,-98.9],"elL":[48.6,0.4],"haL":[45,49.7],"hipR":[-27.2,36.1],"knR":[-68.7,178.2],"ftR":[-14.2,289.9],"hipL":[11.2,42.6],"knL":[4.5,185.7],"ftL":[71.1,300.8]},{"rootY":15,"hips":[0,0],"chest":[-8.9,-80.7],"neck":[-8.9,-80.7],"head":[-23.3,-140.6],"shR":[-45.6,-111.3],"elR":[-34.2,-7.3],"haR":[-75.5,46.4],"shL":[36.7,-98.7],"elL":[55.5,-1.9],"haL":[57.2,45.1],"hipR":[-28,35.7],"knR":[-66.6,178.8],"ftR":[-10.4,285.5],"hipL":[12,42.9],"knL":[1.9,184.4],"ftL":[72,287.3]},{"rootY":17.9,"hips":[0,0],"chest":[-9.4,-80.4],"neck":[-9.4,-80.4],"head":[-23.3,-140.3],"shR":[-48.6,-110.5],"elR":[-44.6,-6],"haR":[-89.2,44.9],"shL":[38.1,-99],"elL":[64.9,-6.3],"haL":[73.1,37.7],"hipR":[-28.6,35.4],"knR":[-65.3,179.2],"ftR":[-6.8,280.9],"hipL":[12.2,43.2],"knL":[-1.8,180.2],"ftL":[66.7,272.3]},{"rootY":20.8,"hips":[0,0],"chest":[-10.2,-80.2],"neck":[-10.2,-80.2],"head":[-23,-140.2],"shR":[-52.3,-109.6],"elR":[-58.9,-5.2],"haR":[-107.6,41],"shL":[39.5,-99.7],"elL":[74.5,-12.2],"haL":[90,27.9],"hipR":[-29.7,34.5],"knR":[-63.4,179.6],"ftR":[-2.5,277.3],"hipL":[11.3,43.7],"knL":[-5,172.7],"ftL":[56,260.3]},{"rootY":22.6,"hips":[0,0],"chest":[-10.7,-79.8],"neck":[-10.7,-79.8],"head":[-22.5,-140.1],"shR":[-54.6,-108.8],"elR":[-74,-4.9],"haR":[-126.6,33.7],"shL":[40.7,-99.6],"elL":[86.9,-18.9],"haL":[109,14.6],"hipR":[-29.8,34.4],"knR":[-58.7,181.1],"ftR":[2.9,275.6],"hipL":[11.5,43.9],"knL":[-6.9,161.3],"ftL":[41.4,256]},{"rootY":20.9,"hips":[0,0],"chest":[-10.4,-79.9],"neck":[-10.4,-79.9],"head":[-21.4,-140.4],"shR":[-56.4,-108.8],"elR":[-88.5,-6.2],"haR":[-143.2,21.3],"shL":[43.1,-99.9],"elL":[100.3,-28.3],"haL":[129.8,-1.4],"hipR":[-30.1,34],"knR":[-50.7,182.6],"ftR":[9.6,277.2],"hipL":[11.2,44.2],"knL":[-10.2,149.4],"ftL":[26.5,260.6]},{"rootY":16.3,"hips":[0,0],"chest":[-9.3,-80.5],"neck":[-9.3,-80.5],"head":[-20.1,-141],"shR":[-56.8,-108.7],"elR":[-100.1,-8],"haR":[-153.8,6.5],"shL":[45.8,-101.1],"elL":[113.6,-37.6],"haL":[149.5,-18.3],"hipR":[-30.8,33.4],"knR":[-40.7,182.2],"ftR":[15.3,280],"hipL":[10.6,44.6],"knL":[-15.2,141.4],"ftL":[12.1,272.7]},{"rootY":9.6,"hips":[0,0],"chest":[-7.7,-80.9],"neck":[-7.7,-80.9],"head":[-18.4,-141.7],"shR":[-56,-107.7],"elR":[-108.5,-9.8],"haR":[-158.1,-6.9],"shL":[48,-103],"elL":[123.3,-46.5],"haL":[166.5,-34.1],"hipR":[-31.9,32.2],"knR":[-33.9,178.4],"ftR":[16.7,281.5],"hipL":[9.3,45.3],"knL":[-20.9,139.2],"ftL":[-1.5,287.7]},{"rootY":1.2,"hips":[0,0],"chest":[-5.7,-82],"neck":[-5.7,-82],"head":[-17,-143],"shR":[-54.4,-106.5],"elR":[-115.1,-11.8],"haR":[-159.8,-17.8],"shL":[50.4,-106.1],"elL":[133.3,-54.9],"haL":[181.6,-48.7],"hipR":[-32.9,31.2],"knR":[-30.8,172.2],"ftR":[9.3,283.3],"hipL":[8,45.6],"knL":[-25.4,143.1],"ftL":[-14.3,302.7]},{"rootY":-5.2,"hips":[0,0],"chest":[-2.8,-83.3],"neck":[-2.8,-83.3],"head":[-14.3,-144.8],"shR":[-51.7,-105.4],"elR":[-118.9,-14.1],"haR":[-159.5,-26.7],"shL":[53.2,-109.6],"elL":[142.1,-64.3],"haL":[194.7,-63.6],"hipR":[-33.6,30.6],"knR":[-29.7,164.2],"ftR":[2.6,276.6],"hipL":[7.2,45.5],"knL":[-27.4,149.3],"ftL":[-25.3,312.7]},{"rootY":-6.7,"hips":[0,0],"chest":[0,-84.7],"neck":[0,-84.7],"head":[-11.6,-146.7],"shR":[-50.4,-105.6],"elR":[-120.6,-16.4],"haR":[-159.8,-33.6],"shL":[57.5,-111.7],"elL":[151.2,-73.2],"haL":[206.4,-77.3],"hipR":[-35.2,29.2],"knR":[-33.6,157.1],"ftR":[0.8,255.8],"hipL":[5.2,45.4],"knL":[-30.3,153.3],"ftL":[-34.1,315.6]},{"rootY":-2.9,"hips":[0,0],"chest":[2.6,-86],"neck":[2.6,-86],"head":[-8.6,-148.5],"shR":[-48.3,-105.3],"elR":[-119.4,-16.7],"haR":[-159.3,-36],"shL":[60.8,-113.9],"elL":[158.2,-82.6],"haL":[214.5,-90.8],"hipR":[-36.8,27.7],"knR":[-43.1,151.2],"ftR":[-2.8,226.7],"hipL":[3.5,44.9],"knL":[-32.4,153.5],"ftL":[-41.2,315.2]},{"rootY":5.7,"hips":[0,0],"chest":[5.5,-86.6],"neck":[5.5,-86.6],"head":[-5,-149.5],"shR":[-46.1,-104.3],"elR":[-116.1,-14.9],"haR":[-158.4,-33.9],"shL":[64.8,-115],"elL":[164.6,-89.2],"haL":[221.1,-101.6],"hipR":[-37.8,26.9],"knR":[-54.8,147.1],"ftR":[-9.9,194.8],"hipL":[3.6,44.1],"knL":[-29.1,151],"ftL":[-46.4,313.1]},{"rootY":18.4,"hips":[0,0],"chest":[8,-86.9],"neck":[8,-86.9],"head":[-1.5,-150.3],"shR":[-44.2,-103.4],"elR":[-110.7,-11.3],"haR":[-156.9,-28.3],"shL":[68.1,-115.4],"elL":[168.7,-91.8],"haL":[224.3,-108.4],"hipR":[-38.6,25.8],"knR":[-69.4,144.1],"ftR":[-21.8,164.3],"hipL":[3.4,43.3],"knL":[-23.8,148.1],"ftL":[-52.5,308]},{"rootY":29,"hips":[0,0],"chest":[9.4,-87],"neck":[9.4,-87],"head":[-0.1,-150.4],"shR":[-43.5,-103],"elR":[-101,-5],"haR":[-153.2,-17.3],"shL":[70.4,-115],"elL":[169.5,-87.8],"haL":[223.8,-107.4],"hipR":[-38.6,25.6],"knR":[-86,145.3],"ftR":[-39.7,146.2],"hipL":[4.3,41.7],"knL":[-21,142.8],"ftL":[-50.4,298.1]},{"rootY":37.7,"hips":[0,0],"chest":[9.3,-87.1],"neck":[9.3,-87.1],"head":[-1.5,-150.3],"shR":[-43.5,-102.9],"elR":[-87.7,1.7],"haR":[-145.4,0.3],"shL":[70.4,-115.1],"elL":[164.9,-77],"haL":[217.4,-97],"hipR":[-37.5,26.6],"knR":[-104.4,149.1],"ftR":[-63.3,145.1],"hipL":[6.3,39.4],"knL":[-19.2,139.5],"ftL":[-46.1,289]},{"rootY":42.8,"hips":[0,0],"chest":[7.3,-87.3],"neck":[7.3,-87.3],"head":[-4.7,-150],"shR":[-45.1,-102.5],"elR":[-74.4,7],"haR":[-133.7,20.7],"shL":[67.9,-115.9],"elL":[154.3,-63.5],"haL":[205.1,-80],"hipR":[-36.1,28],"knR":[-122.2,148.8],"ftR":[-90.5,165.4],"hipL":[8.1,36.8],"knL":[-19.8,140.2],"ftL":[-46.3,284]},{"rootY":46,"hips":[0,0],"chest":[3.8,-87.4],"neck":[3.8,-87.4],"head":[-9.2,-149.8],"shR":[-47.5,-101.4],"elR":[-60.9,10.8],"haR":[-118.2,38.5],"shL":[63.3,-117.3],"elL":[139.6,-52.7],"haL":[187.5,-61.3],"hipR":[-35,28.7],"knR":[-134.1,140.4],"ftR":[-119.6,204],"hipL":[9.6,34.7],"knL":[-22.1,141.3],"ftL":[-47.1,280.7]},{"rootY":48.2,"hips":[0,0],"chest":[1.2,-87.4],"neck":[1.2,-87.4],"head":[-12.8,-149.5],"shR":[-49,-100.7],"elR":[-46.7,11.4],"haR":[-98.4,51.6],"shL":[59.1,-118.6],"elL":[123.8,-43.8],"haL":[166.6,-41.7],"hipR":[-33.2,29.6],"knR":[-133.3,130.9],"ftR":[-148.3,248.9],"hipL":[12.2,31.7],"knL":[-22.5,142.1],"ftL":[-46.1,277.7]},{"rootY":47.4,"hips":[0,0],"chest":[-0.6,-87.3],"neck":[-0.6,-87.3],"head":[-15.8,-149.2],"shR":[-49,-99.3],"elR":[-33,10.8],"haR":[-76.6,61.6],"shL":[55,-120.3],"elL":[106.6,-36],"haL":[139.6,-22.9],"hipR":[-31.7,30.7],"knR":[-123.4,124.8],"ftR":[-169.4,270.8],"hipL":[13.6,29.6],"knL":[-22.6,144.9],"ftL":[-44.9,278.5]},{"rootY":41.8,"hips":[0,0],"chest":[-1.3,-87.2],"neck":[-1.3,-87.2],"head":[-17,-149],"shR":[-47.4,-98.7],"elR":[-18.7,8.2],"haR":[-53.6,66.1],"shL":[52.1,-121],"elL":[89.2,-29.4],"haL":[110.3,-6.1],"hipR":[-31,31.5],"knR":[-114.7,117.7],"ftR":[-158.6,259],"hipL":[14,28.9],"knL":[-21.9,149.8],"ftL":[-43.7,283.7]},{"rootY":39.1,"hips":[0,0],"chest":[-2.6,-87.2],"neck":[-2.6,-87.2],"head":[-18.5,-149.1],"shR":[-45.9,-98],"elR":[-7.3,5.6],"haR":[-33,68.3],"shL":[48.3,-122.1],"elL":[69,-25.2],"haL":[77.3,5.9],"hipR":[-30.7,32.1],"knR":[-105,107.4],"ftR":[-142,233.5],"hipL":[14.3,29.6],"knL":[-22.3,152.6],"ftL":[-42.6,287.3]},{"rootY":36.8,"hips":[0,0],"chest":[-2.6,-87.3],"neck":[-2.6,-87.3],"head":[-18.2,-149.5],"shR":[-42.7,-97.5],"elR":[3.9,2.8],"haR":[-13.4,67.7],"shL":[45.3,-122.9],"elL":[50.7,-23.2],"haL":[44.3,13.2],"hipR":[-28.2,33.2],"knR":[-90,97.1],"ftR":[-111.8,216.9],"hipL":[16.9,26.2],"knL":[-23,152.2],"ftL":[-39.4,287.1]},{"rootY":36.7,"hips":[0,0],"chest":[-3.8,-87.3],"neck":[-3.8,-87.3],"head":[-19.1,-149.9],"shR":[-40.6,-97.8],"elR":[12.1,-0.6],"haR":[1.5,64.9],"shL":[41.7,-122.8],"elL":[35.5,-22.1],"haL":[12.5,16.8],"hipR":[-27.5,33],"knR":[-72.9,83.9],"ftR":[-70.2,203],"hipL":[18.5,25.8],"knL":[-21.6,153.8],"ftL":[-38.6,287.3]},{"rootY":34.5,"hips":[0,0],"chest":[-2.2,-87.4],"neck":[-2.2,-87.4],"head":[-17.6,-150.2],"shR":[-35.9,-98.2],"elR":[19.8,-2.5],"haR":[15.1,62.6],"shL":[40.7,-122.8],"elL":[25.3,-22.3],"haL":[-13.1,16.2],"hipR":[-27,32.6],"knR":[-53.1,72.2],"ftR":[-30.6,193.9],"hipL":[20,26],"knL":[-17.1,156.3],"ftL":[-35.5,289.6]},{"rootY":31.3,"hips":[0,0],"chest":[-0.8,-87.4],"neck":[-0.8,-87.4],"head":[-16,-150.3],"shR":[-31.4,-98.1],"elR":[24.6,-2.3],"haR":[24.8,61.9],"shL":[39.8,-122.8],"elL":[17,-23.6],"haL":[-33.5,12.1],"hipR":[-27.4,32.2],"knR":[-33.2,66.2],"ftR":[3.4,188.9],"hipL":[20.3,27.8],"knL":[-14.4,159.7],"ftL":[-32.4,292]},{"rootY":29.3,"hips":[0,0],"chest":[0.2,-87.5],"neck":[0.2,-87.5],"head":[-14.3,-150.7],"shR":[-28.8,-98.3],"elR":[27,-2.3],"haR":[30.3,60.9],"shL":[39.8,-122.8],"elL":[8.9,-25.7],"haL":[-48.9,5.8],"hipR":[-25.6,33],"knR":[-15.9,63.5],"ftR":[31.6,187.2],"hipL":[22.5,27.1],"knL":[-10.2,161],"ftL":[-32,293.5]},{"rootY":25.9,"hips":[0,0],"chest":[0.3,-87.5],"neck":[0.3,-87.5],"head":[-13.2,-151],"shR":[-29.2,-98.8],"elR":[27.4,-3.3],"haR":[31.5,59.2],"shL":[40.7,-122.2],"elL":[0.7,-28.2],"haL":[-60.5,-1.7],"hipR":[-24.6,33],"knR":[-1.6,66.3],"ftR":[56.2,191.8],"hipL":[24.2,27.7],"knL":[-4.8,164],"ftL":[-31.9,297.3]},{"rootY":23.7,"hips":[0,0],"chest":[0.8,-87.6],"neck":[0.8,-87.6],"head":[-11.8,-151.4],"shR":[-30.5,-97.6],"elR":[26.7,-2.7],"haR":[30.9,59.5],"shL":[42.6,-123.4],"elL":[-7.2,-33.4],"haL":[-69.4,-11.2],"hipR":[-22.3,34],"knR":[11.5,74.6],"ftR":[75.8,201.6],"hipL":[27.3,28.4],"knL":[1.5,165.8],"ftL":[-31.2,298.4]},{"rootY":20.5,"hips":[0,0],"chest":[1.4,-87.6],"neck":[1.4,-87.6],"head":[-10.8,-151.7],"shR":[-33.8,-97.5],"elR":[23.1,-3],"haR":[26.5,59.5],"shL":[45.7,-123.6],"elL":[-12.2,-37.9],"haL":[-74.6,-19.8],"hipR":[-20.8,34.5],"knR":[23.3,85.9],"ftR":[88.9,216.7],"hipL":[29.2,29.7],"knL":[7.3,168.2],"ftL":[-30.3,300.9]},{"rootY":18.4,"hips":[0,0],"chest":[1.6,-87.6],"neck":[1.6,-87.6],"head":[-10.1,-151.9],"shR":[-36.3,-96.5],"elR":[18.3,-1.5],"haR":[20.8,61.3],"shL":[47.3,-124.5],"elL":[-15.9,-41.9],"haL":[-78.9,-27.9],"hipR":[-18.8,35.4],"knR":[32.5,97.3],"ftR":[93.3,234.3],"hipL":[31.2,30.4],"knL":[11.3,169.9],"ftL":[-31,302.9]},{"rootY":17,"hips":[0,0],"chest":[1.7,-87.5],"neck":[1.7,-87.5],"head":[-9.5,-151.9],"shR":[-41.8,-97.1],"elR":[8.7,-1.1],"haR":[9.7,62.4],"shL":[51.6,-123.7],"elL":[-14.2,-43.3],"haL":[-77.2,-32.8],"hipR":[-14.9,36.3],"knR":[41,108.6],"ftR":[90.9,253],"hipL":[34.4,28.9],"knL":[13.7,169.4],"ftL":[-33.5,303.2]},{"rootY":15.9,"hips":[0,0],"chest":[2.2,-87.3],"neck":[2.2,-87.3],"head":[-8.7,-151.8],"shR":[-45.8,-97.8],"elR":[-3.2,1.1],"haR":[-4.5,65],"shL":[55.3,-122.5],"elL":[-11.4,-43.3],"haL":[-74.7,-35.4],"hipR":[-16.5,35.6],"knR":[47.8,120.2],"ftR":[85.2,269.7],"hipL":[32.9,31.7],"knL":[15.2,172.9],"ftL":[-33.4,305.7]},{"rootY":16.5,"hips":[0,0],"chest":[0,-87.4],"neck":[0,-87.4],"head":[-10.6,-152],"shR":[-51.7,-97.5],"elR":[-18.3,3.9],"haR":[-24.2,68.4],"shL":[55.7,-122.5],"elL":[-9.1,-43.6],"haL":[-72.3,-36.5],"hipR":[-13,36.5],"knR":[49.6,133.7],"ftR":[72.5,286.3],"hipL":[35.2,31.1],"knL":[16.4,172.2],"ftL":[-37.7,302.4]},{"rootY":17.9,"hips":[0,0],"chest":[-1.4,-87.3],"neck":[-1.4,-87.3],"head":[-11.2,-152.1],"shR":[-56,-98.1],"elR":[-32.9,5.8],"haR":[-45.3,70.4],"shL":[56.4,-121.5],"elL":[-3.6,-42.8],"haL":[-67.7,-35.3],"hipR":[-12.3,36.6],"knR":[48.5,145.7],"ftR":[59.8,299],"hipL":[35.2,32],"knL":[17.2,173.2],"ftL":[-41.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[-1.8,-87.2],"neck":[-1.8,-87.2],"head":[-11.3,-152],"shR":[-59.5,-98.8],"elR":[-48,7.4],"haR":[-67.5,71.2],"shL":[57.6,-120.4],"elL":[4.9,-41.5],"haL":[-60.3,-31.4],"hipR":[-11.6,35.9],"knR":[50.5,151.2],"ftR":[61.4,304.6],"hipL":[34.7,33.1],"knL":[19,174.6],"ftL":[-43.3,299.4]},{"rootY":19.3,"hips":[0,0],"chest":[-1.3,-87.6],"neck":[-1.3,-87.6],"head":[-10.4,-152.4],"shR":[-60.8,-98],"elR":[-60.7,10.4],"haR":[-88,71.9],"shL":[58.7,-120.7],"elL":[15.7,-41.7],"haL":[-49.2,-26.7],"hipR":[-13,35.4],"knR":[48.1,152.6],"ftR":[64.4,305.2],"hipL":[33.7,34],"knL":[18.2,175.3],"ftL":[-44.9,297.5]},{"rootY":21.4,"hips":[0,0],"chest":[0.5,-87.7],"neck":[0.5,-87.7],"head":[-8.4,-152.5],"shR":[-60.8,-97.4],"elR":[-70.6,12],"haR":[-105.7,70],"shL":[60.1,-121.4],"elL":[29.1,-41.4],"haL":[-33.1,-21.5],"hipR":[-12.5,35.6],"knR":[47.6,153.1],"ftR":[65,305.4],"hipL":[34.1,33.6],"knL":[17.4,174.7],"ftL":[-44.7,295.5]},{"rootY":22.5,"hips":[0,0],"chest":[0,-87.6],"neck":[0,-87.6],"head":[-7.6,-152.6],"shR":[-62.3,-99.4],"elR":[-79.9,10.8],"haR":[-121.2,63.7],"shL":[60.1,-119.9],"elL":[42,-38.6],"haL":[-13,-14],"hipR":[-11.7,35.4],"knR":[49.7,151.8],"ftR":[65.1,304],"hipL":[34.6,33.2],"knL":[17.8,174.4],"ftL":[-44.1,294.9]},{"rootY":22.8,"hips":[0,0],"chest":[-0.3,-87.5],"neck":[-0.3,-87.5],"head":[-6.3,-152.6],"shR":[-63.1,-100.5],"elR":[-88.3,9.4],"haR":[-133.2,56.4],"shL":[59.9,-119],"elL":[52.6,-35.4],"haL":[11.5,-6.6],"hipR":[-11.4,34.7],"knR":[51.7,151],"ftR":[65.9,303.1],"hipL":[34.3,33.6],"knL":[19.6,175],"ftL":[-42.7,294.9]},{"rootY":22.9,"hips":[0,0],"chest":[-0.4,-87.6],"neck":[-0.4,-87.6],"head":[-4.6,-152.8],"shR":[-63.3,-101.8],"elR":[-95.3,7],"haR":[-141.3,46.8],"shL":[60,-117.7],"elL":[61.1,-32.5],"haL":[40.8,-0.3],"hipR":[-10.3,34.7],"knR":[54.5,150.7],"ftR":[67.9,303],"hipL":[34.7,33.4],"knL":[22.3,175],"ftL":[-39.9,294.9]},{"rootY":21.9,"hips":[0,0],"chest":[-0.7,-87.6],"neck":[-0.7,-87.6],"head":[-3.3,-152.9],"shR":[-63.7,-103.4],"elR":[-101.9,3.6],"haR":[-147.1,35.8],"shL":[59.8,-116.3],"elL":[69.5,-30.5],"haL":[71.1,1.9],"hipR":[-9.3,34.8],"knR":[56.4,151.5],"ftR":[69.9,304.1],"hipL":[35,33.3],"knL":[24.4,175],"ftL":[-37.4,296]},{"rootY":20.5,"hips":[0,0],"chest":[-0.6,-87.6],"neck":[-0.6,-87.6],"head":[-1.6,-152.9],"shR":[-63.6,-104.2],"elR":[-108.1,0.3],"haR":[-150.2,25],"shL":[59.4,-115.3],"elL":[80.6,-29.8],"haL":[101.2,1.3],"hipR":[-9,34.9],"knR":[57,152.8],"ftR":[72.8,305.5],"hipL":[34.9,33.5],"knL":[25.9,175.5],"ftL":[-34.5,298.4]},{"rootY":19.3,"hips":[0,0],"chest":[-0.2,-87.7],"neck":[-0.2,-87.7],"head":[0.1,-152.9],"shR":[-62.9,-105.6],"elR":[-113.1,-3.7],"haR":[-150.2,14.5],"shL":[59.3,-114.3],"elL":[93.5,-30.6],"haL":[130.6,-2.3],"hipR":[-8.7,35.4],"knR":[56.8,154],"ftR":[75.5,306.5],"hipL":[35,33.5],"knL":[26.2,175.7],"ftL":[-31.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[0.4,-87.7],"neck":[0.4,-87.7],"head":[2,-152.9],"shR":[-62,-106.6],"elR":[-116.6,-7.1],"haR":[-149.3,5.6],"shL":[59.3,-113.5],"elL":[107.1,-31],"haL":[155,-6.9],"hipR":[-8.6,36],"knR":[55.3,155],"ftR":[77.2,307.3],"hipL":[35.1,33.5],"knL":[25.8,175.7],"ftL":[-28.5,303.3]},{"rootY":16.8,"hips":[0,0],"chest":[1.6,-87.7],"neck":[1.6,-87.7],"head":[4.3,-152.8],"shR":[-60.4,-107.6],"elR":[-118.4,-10.2],"haR":[-147,-1.6],"shL":[60,-112.8],"elL":[120.1,-32.5],"haL":[175.9,-11],"hipR":[-9.4,36.5],"knR":[53.3,155.3],"ftR":[77.9,307.4],"hipL":[34.8,33.7],"knL":[25.5,176.2],"ftL":[-25.1,306.4]},{"rootY":16.1,"hips":[0,0],"chest":[3,-87.7],"neck":[3,-87.7],"head":[6.9,-152.6],"shR":[-58.4,-108.6],"elR":[-118.6,-13],"haR":[-143.5,-6.9],"shL":[61.3,-111.9],"elL":[129.8,-34.1],"haL":[190.2,-14.6],"hipR":[-10.2,36.8],"knR":[50.2,155.7],"ftR":[75.6,307.8],"hipL":[34.6,33.9],"knL":[25.5,176.6],"ftL":[-21.9,308.9]},{"rootY":15.9,"hips":[0,0],"chest":[4.4,-87.6],"neck":[4.4,-87.6],"head":[9.3,-152.4],"shR":[-56.4,-109.5],"elR":[-117.7,-15],"haR":[-139.8,-10],"shL":[62.7,-111.4],"elL":[135,-36.4],"haL":[198.3,-18.2],"hipR":[-11,37.2],"knR":[46.6,155.7],"ftR":[70.5,308],"hipL":[34.4,34.2],"knL":[25,176.9],"ftL":[-19,311]},{"rootY":15.1,"hips":[0,0],"chest":[5.6,-87.5],"neck":[5.6,-87.5],"head":[11.7,-151.9],"shR":[-54.8,-109.9],"elR":[-116.2,-16.1],"haR":[-135.9,-10.5],"shL":[63.5,-111.1],"elL":[134.7,-38.4],"haL":[199.1,-21.3],"hipR":[-11.6,37.4],"knR":[42.7,155.5],"ftR":[60.9,308.5],"hipL":[34.1,34.4],"knL":[24.1,177.2],"ftL":[-16.7,312.7]}]},"march":{"name":"march","fps":30,"height":520,"groundY":342,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.1,-86.1],"neck":[1.1,-86.1],"head":[2,-151.3],"shR":[-51.8,-120.1],"elR":[-155.8,-105.5],"haR":[-222.9,-96.1],"shL":[58.6,-114],"elL":[159.3,-99.8],"haL":[225.6,-90.5],"hipR":[-21.8,38.1],"knR":[-19.3,184.4],"ftR":[-16.5,341.7],"hipL":[25.5,38.1],"knL":[22.9,183.4],"ftL":[20.2,338.8]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.4],"neck":[-6.3,-84.4],"head":[-27.5,-144.7],"shR":[46.2,-120.7],"elR":[65.5,-17.5],"haR":[73.1,36.4],"shL":[-63.6,-112.6],"elL":[-58.1,-16.3],"haL":[-67.7,49],"hipR":[27.5,34.4],"knR":[17.9,175.6],"ftR":[12.4,313.9],"hipL":[-19.2,41.9],"knL":[-28.3,162.4],"ftL":[-38.2,316.8]},{"rootY":2.8,"hips":[0,0],"chest":[-6.7,-84.2],"neck":[-6.7,-84.2],"head":[-28.7,-144.1],"shR":[45.2,-121.3],"elR":[65.2,-18.2],"haR":[73,34.5],"shL":[-64.1,-111.7],"elL":[-56.9,-15.8],"haL":[-66.6,50.2],"hipR":[27.6,34.3],"knR":[18.6,175],"ftR":[14.5,308.9],"hipL":[-19.1,42],"knL":[-27.4,163.1],"ftL":[-36.6,318.2]},{"rootY":1.7,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-30.3,-143.6],"shR":[43.6,-121.7],"elR":[64,-18.7],"haR":[72.1,33.8],"shL":[-65.3,-110.9],"elL":[-56.4,-15.3],"haL":[-65.8,51],"hipR":[26.6,35],"knR":[18,175.5],"ftR":[16.2,304.2],"hipL":[-20.2,41.6],"knL":[-27.8,163],"ftL":[-35.3,318.3]},{"rootY":0.4,"hips":[0,0],"chest":[-8.7,-83.9],"neck":[-8.7,-83.9],"head":[-31.7,-143.4],"shR":[42.2,-122.3],"elR":[62.6,-19.4],"haR":[70.8,33.8],"shL":[-66.1,-110],"elL":[-55.8,-14.7],"haL":[-64.8,51.6],"hipR":[25.5,35.5],"knR":[16.9,177],"ftR":[17.8,297.6],"hipL":[-21.4,41.3],"knL":[-28.8,164.2],"ftL":[-34,319.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-9,-84],"neck":[-9,-84],"head":[-32.6,-143.1],"shR":[41.7,-122.4],"elR":[62.3,-19.7],"haR":[70.2,34.5],"shL":[-66.2,-110],"elL":[-54.8,-15.3],"haL":[-63.4,50.8],"hipR":[25,35.5],"knR":[16.7,178.9],"ftR":[18.5,289.7],"hipL":[-21.8,41.1],"knL":[-30.1,165.8],"ftL":[-32.3,320.5]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.4,-84],"neck":[-9.4,-84],"head":[-33,-143.4],"shR":[41.2,-122.6],"elR":[62.1,-20],"haR":[69.5,35.2],"shL":[-66.5,-109.9],"elL":[-54.4,-15.7],"haL":[-62.7,50.4],"hipR":[23.8,35.8],"knR":[16.9,181.1],"ftR":[18.3,280.7],"hipL":[-23,40.5],"knL":[-32.1,166.9],"ftL":[-30.4,320.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.3,-84.2],"neck":[-9.3,-84.2],"head":[-33,-143.5],"shR":[41.4,-122.6],"elR":[62,-20.1],"haR":[68.8,35.9],"shL":[-66.3,-110],"elL":[-54.1,-16.5],"haL":[-62.4,49.8],"hipR":[22.1,36.4],"knR":[18.4,182.6],"ftR":[19,272],"hipL":[-24.8,39.4],"knL":[-32.7,168],"ftL":[-26.9,319.9]},{"rootY":0.8,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-32.4,-143.8],"shR":[41.9,-122.3],"elR":[61.4,-19.8],"haR":[67.9,37.4],"shL":[-66.1,-110.7],"elL":[-54.5,-16.9],"haL":[-62.6,49.5],"hipR":[20.2,36.9],"knR":[20.9,182.7],"ftR":[19.5,265],"hipL":[-26.7,37.9],"knL":[-31.7,168.8],"ftL":[-23.1,318.6]},{"rootY":1.9,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-31.8,-144],"shR":[42.4,-121.6],"elR":[60,-18.9],"haR":[66.5,39.5],"shL":[-66,-111.4],"elL":[-55.6,-17.1],"haL":[-64.1,49.3],"hipR":[19.9,36.8],"knR":[23,180.6],"ftR":[17.8,259.3],"hipL":[-27.1,37.4],"knL":[-29.8,169.9],"ftL":[-21.1,317.6]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-84.4],"neck":[-8.9,-84.4],"head":[-30.7,-144.4],"shR":[43.1,-121.2],"elR":[57.9,-18.3],"haR":[64.6,41.6],"shL":[-65.7,-112],"elL":[-56.7,-16.3],"haL":[-65.9,50],"hipR":[19.5,37],"knR":[25.1,177.3],"ftR":[17.7,258.8],"hipL":[-27.6,36.6],"knL":[-28.3,171.5],"ftL":[-19.3,317.2]},{"rootY":2.3,"hips":[0,0],"chest":[-8.3,-84.5],"neck":[-8.3,-84.5],"head":[-29,-144.5],"shR":[44,-121],"elR":[55.5,-17.7],"haR":[62.4,43.5],"shL":[-65.1,-112.4],"elL":[-57.7,-15.4],"haL":[-67.7,50.7],"hipR":[19.3,37.3],"knR":[26.4,173.3],"ftR":[18.6,263.7],"hipL":[-27.9,36],"knL":[-26.3,173.5],"ftL":[-17.5,317.1]},{"rootY":1.1,"hips":[0,0],"chest":[-7.5,-84.6],"neck":[-7.5,-84.6],"head":[-27,-145.2],"shR":[45.2,-120.6],"elR":[53.4,-17],"haR":[60.4,45.3],"shL":[-64.5,-112.9],"elL":[-59,-15],"haL":[-69.6,50.7],"hipR":[19,37.4],"knR":[26.7,169.2],"ftR":[18.6,273.6],"hipL":[-28.1,35.7],"knL":[-24.4,174.6],"ftL":[-15.6,317.2]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-84.7],"neck":[-6.9,-84.7],"head":[-25.1,-145.7],"shR":[46.3,-120],"elR":[51.8,-16.4],"haR":[58.2,47.2],"shL":[-63.9,-113.7],"elL":[-60.5,-15.1],"haL":[-71.5,50],"hipR":[18.8,37.6],"knR":[26.6,165.2],"ftR":[18.9,286.1],"hipL":[-28.4,35.4],"knL":[-22.9,176.3],"ftL":[-14,317.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-6.4,-84.7],"neck":[-6.4,-84.7],"head":[-23.4,-146.4],"shR":[47,-119.3],"elR":[50.5,-15.8],"haR":[56.5,48.7],"shL":[-63.4,-114.2],"elL":[-62.9,-15.1],"haL":[-74,49.1],"hipR":[18.6,37.9],"knR":[26.6,162.3],"ftR":[20.3,298.7],"hipL":[-28.6,35],"knL":[-21.3,177.8],"ftL":[-12.4,318.3]},{"rootY":-3.2,"hips":[0,0],"chest":[-5.8,-84.7],"neck":[-5.8,-84.7],"head":[-21,-146.8],"shR":[47.7,-118.8],"elR":[49.2,-15.6],"haR":[54.6,49.3],"shL":[-62.8,-114.8],"elL":[-65.8,-15.3],"haL":[-76.4,47.7],"hipR":[18.8,38.2],"knR":[25.8,161],"ftR":[22.3,310],"hipL":[-28.4,35.2],"knL":[-20.5,179.2],"ftL":[-12,319.7]},{"rootY":-4.9,"hips":[0,0],"chest":[-5.7,-84.6],"neck":[-5.7,-84.6],"head":[-18.8,-147.4],"shR":[48,-118.2],"elR":[48,-15.3],"haR":[52.7,50.1],"shL":[-62.6,-115.4],"elL":[-69.7,-15.9],"haL":[-79.4,45.3],"hipR":[18.4,38.6],"knR":[24.3,161.7],"ftR":[25.3,317.7],"hipL":[-28.8,35.1],"knL":[-20.8,179.9],"ftL":[-12,320.6]},{"rootY":-4.1,"hips":[0,0],"chest":[-5.4,-84.7],"neck":[-5.4,-84.7],"head":[-18.2,-146.9],"shR":[48.2,-117.7],"elR":[46.4,-15.1],"haR":[51,50.7],"shL":[-62.2,-116],"elL":[-73.6,-16.3],"haL":[-82.7,43],"hipR":[18.1,38.9],"knR":[22.6,162.9],"ftR":[28.3,319.9],"hipL":[-29,35],"knL":[-21.3,180],"ftL":[-12.5,319.8]},{"rootY":-3.4,"hips":[0,0],"chest":[-4.9,-84.7],"neck":[-4.9,-84.7],"head":[-16.7,-147.1],"shR":[48.7,-117.6],"elR":[45.2,-15.2],"haR":[49.7,50.7],"shL":[-61.5,-116.3],"elL":[-76.8,-16.7],"haL":[-85.1,40.7],"hipR":[17.3,39.2],"knR":[21.8,164.1],"ftR":[30.4,318.6],"hipL":[-29.7,34.6],"knL":[-22,179],"ftL":[-13.2,319.1]},{"rootY":-2,"hips":[0,0],"chest":[-4.5,-84.7],"neck":[-4.5,-84.7],"head":[-15.4,-147.5],"shR":[49.1,-117.1],"elR":[44,-15],"haR":[48.5,51.1],"shL":[-60.8,-116.8],"elL":[-79.6,-17.4],"haL":[-87.3,38.4],"hipR":[17.3,39.4],"knR":[21.9,164.4],"ftR":[30.6,317.3],"hipL":[-29.7,34.7],"knL":[-22.6,178.6],"ftL":[-13.8,317.5]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.1,-84.6],"neck":[-4.1,-84.6],"head":[-14.1,-147.4],"shR":[49.6,-116.5],"elR":[43.1,-14.5],"haR":[48,52],"shL":[-60,-117.3],"elL":[-81.2,-18.1],"haL":[-88.7,35.8],"hipR":[17.4,39.7],"knR":[22.7,163.1],"ftR":[29.8,317],"hipL":[-29.6,34.6],"knL":[-22.8,177.7],"ftL":[-15.3,314.3]},{"rootY":1.5,"hips":[0,0],"chest":[-3.5,-84.5],"neck":[-3.5,-84.5],"head":[-12.8,-147.5],"shR":[50.1,-116.1],"elR":[42.1,-14.2],"haR":[47.1,52.5],"shL":[-59.2,-117.7],"elL":[-81.6,-18.6],"haL":[-89.5,33.8],"hipR":[17.4,39.8],"knR":[22.6,162.4],"ftR":[28.5,318],"hipL":[-29.6,34.5],"knL":[-23,176.4],"ftL":[-16.6,310.7]},{"rootY":1,"hips":[0,0],"chest":[-3,-84.5],"neck":[-3,-84.5],"head":[-11.3,-147.6],"shR":[50.6,-115.5],"elR":[41.7,-13.5],"haR":[46.9,53.5],"shL":[-58.3,-118.3],"elL":[-80.9,-19.2],"haL":[-89.5,32.3],"hipR":[17.5,39.8],"knR":[22,162.5],"ftR":[27.4,319.1],"hipL":[-29.5,34.7],"knL":[-23.3,175.1],"ftL":[-17.9,306.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-9.6,-147.8],"shR":[51.5,-114.8],"elR":[41.6,-12.7],"haR":[47.1,54.5],"shL":[-57,-118.9],"elL":[-79.1,-19.8],"haL":[-88.3,31.6],"hipR":[18.7,39.5],"knR":[22.8,163.5],"ftR":[27.6,320.5],"hipL":[-28.4,35.5],"knL":[-22.9,175.5],"ftL":[-19.7,302.6]},{"rootY":-2.6,"hips":[0,0],"chest":[-1.8,-84.5],"neck":[-1.8,-84.5],"head":[-8.4,-148],"shR":[51.9,-114.3],"elR":[41.5,-12.4],"haR":[47.2,54.9],"shL":[-56.2,-119.4],"elL":[-78.2,-20.5],"haL":[-87.3,31.4],"hipR":[19.8,39.2],"knR":[23.3,165],"ftR":[25.3,322.2],"hipL":[-27.3,36.2],"knL":[-23.1,176.5],"ftL":[-22.8,297.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-1.7,-84.6],"neck":[-1.7,-84.6],"head":[-8,-148.4],"shR":[51.9,-114.2],"elR":[41.2,-12.2],"haR":[47.1,55.1],"shL":[-55.9,-119.7],"elL":[-78.1,-20.9],"haL":[-86.4,31.7],"hipR":[20.3,39],"knR":[23.2,167.1],"ftR":[23.6,324],"hipL":[-26.8,36.3],"knL":[-23.6,178.1],"ftL":[-25,291.7]},{"rootY":-5.3,"hips":[0,0],"chest":[-1.5,-84.7],"neck":[-1.5,-84.7],"head":[-7.4,-148.8],"shR":[52,-113.9],"elR":[41.6,-12],"haR":[47.7,55.1],"shL":[-55.6,-120],"elL":[-77.9,-21.5],"haL":[-85.1,32.2],"hipR":[21.2,38.6],"knR":[23,168.6],"ftR":[21.1,324.8],"hipL":[-26,36.7],"knL":[-24.4,180.3],"ftL":[-26,286.1]},{"rootY":-5.4,"hips":[0,0],"chest":[-1.5,-84.8],"neck":[-1.5,-84.8],"head":[-7.1,-149.1],"shR":[52.1,-113.7],"elR":[42.4,-11.9],"haR":[48.9,55.1],"shL":[-55.6,-120.2],"elL":[-78.2,-22.1],"haL":[-83.8,32.2],"hipR":[22.1,38],"knR":[21.7,169.7],"ftR":[18.4,324.5],"hipL":[-25.1,36.9],"knL":[-26.1,181.9],"ftL":[-27.6,278.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-1.9,-84.8],"neck":[-1.9,-84.8],"head":[-7.6,-149.2],"shR":[51.8,-114],"elR":[43.5,-11.8],"haR":[50.3,54.9],"shL":[-56.1,-119.9],"elL":[-78.5,-22.1],"haL":[-82.7,32.7],"hipR":[22.9,37.2],"knR":[19.6,170.6],"ftR":[15.2,323.5],"hipL":[-24.3,37],"knL":[-28.3,182.2],"ftL":[-28.9,271.1]},{"rootY":-3.5,"hips":[0,0],"chest":[-2.2,-84.8],"neck":[-2.2,-84.8],"head":[-8.8,-149.8],"shR":[51.7,-114.5],"elR":[45.3,-11.8],"haR":[52.5,54.6],"shL":[-56.8,-119.6],"elL":[-77.6,-21.7],"haL":[-81.3,33.8],"hipR":[23.6,36.4],"knR":[17.3,171.7],"ftR":[12.7,322.4],"hipL":[-23.6,37],"knL":[-30.6,181.2],"ftL":[-29.2,264.6]},{"rootY":-3.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-9.4,-149.9],"shR":[51.6,-114.7],"elR":[47.2,-11.3],"haR":[55.1,54.7],"shL":[-57.4,-119.6],"elL":[-74.8,-21.3],"haL":[-78.5,35.2],"hipR":[24.6,35.4],"knR":[16.1,172.9],"ftR":[11.1,321.9],"hipL":[-22.5,37.6],"knL":[-32.5,179.5],"ftL":[-29.7,263.1]},{"rootY":-3.4,"hips":[0,0],"chest":[-3.1,-85.1],"neck":[-3.1,-85.1],"head":[-10,-150.3],"shR":[51.5,-114.9],"elR":[49.2,-10.9],"haR":[57.7,54.8],"shL":[-58,-119.5],"elL":[-71.5,-20.8],"haL":[-75.9,36.9],"hipR":[25,34.9],"knR":[15.6,174.6],"ftR":[10.1,322],"hipL":[-22.2,37.9],"knL":[-33.3,176.9],"ftL":[-30,266.1]},{"rootY":-4.2,"hips":[0,0],"chest":[-3.4,-85.2],"neck":[-3.4,-85.2],"head":[-10.6,-150.5],"shR":[51.5,-115.2],"elR":[51.2,-10.8],"haR":[60.4,54.4],"shL":[-58.5,-119.3],"elL":[-68.2,-20.3],"haL":[-73.1,38.7],"hipR":[25.5,34.5],"knR":[15.4,176.3],"ftR":[9.6,322.2],"hipL":[-21.6,38.3],"knL":[-33.3,173.9],"ftL":[-30,273.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-11.4,-150.6],"shR":[51.5,-115.7],"elR":[53.3,-11.1],"haR":[62.9,53.3],"shL":[-58.9,-118.8],"elL":[-65.3,-19.8],"haL":[-70.6,40.5],"hipR":[26.4,33.8],"knR":[15.6,177.4],"ftR":[9.2,322.4],"hipL":[-20.6,38.8],"knL":[-32.5,170.9],"ftL":[-29.1,282.8]},{"rootY":-5.5,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-12.5,-150.5],"shR":[51.5,-116.1],"elR":[55.6,-11.5],"haR":[65.3,52],"shL":[-59.1,-118.1],"elL":[-63.3,-19.5],"haL":[-68.7,41.8],"hipR":[26.7,33.8],"knR":[15.4,178.5],"ftR":[9.2,322.7],"hipL":[-20.3,39.2],"knL":[-31.1,168],"ftL":[-28,293.8]},{"rootY":-7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-12.8,-150.6],"shR":[52.1,-116.8],"elR":[58.8,-12.3],"haR":[68.1,49.8],"shL":[-58.5,-117.7],"elL":[-61.1,-19.5],"haL":[-66.2,43.1],"hipR":[26.7,33.8],"knR":[16.7,179.5],"ftR":[10.1,323.2],"hipL":[-20.2,39.5],"knL":[-28.8,166.7],"ftL":[-26.2,304.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-14.2,-150.4],"shR":[51.9,-117.3],"elR":[61.4,-13],"haR":[70.3,48.8],"shL":[-58.5,-117.2],"elL":[-59.7,-19.4],"haL":[-64.8,44.1],"hipR":[27,33.8],"knR":[17.1,179.7],"ftR":[10.1,323.6],"hipL":[-19.9,40],"knL":[-27.1,165.7],"ftL":[-25.8,313.5]},{"rootY":-7,"hips":[0,0],"chest":[-3.2,-85.1],"neck":[-3.2,-85.1],"head":[-15.5,-150.1],"shR":[51.6,-117.7],"elR":[63.9,-13.6],"haR":[72,46.3],"shL":[-58.7,-116.4],"elL":[-58.3,-19.1],"haL":[-63.8,45.2],"hipR":[28.1,33.4],"knR":[17.4,178.9],"ftR":[9.7,322.9],"hipL":[-18.6,40.9],"knL":[-24.8,165.4],"ftL":[-26.7,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-3.6,-85],"neck":[-3.6,-85],"head":[-16.6,-149.9],"shR":[50.9,-118.1],"elR":[66,-14.3],"haR":[73.2,44.3],"shL":[-59.1,-116],"elL":[-57.1,-19.2],"haL":[-63.1,45.8],"hipR":[28.1,33.7],"knR":[17.9,178.3],"ftR":[10,322.4],"hipL":[-18.6,41.3],"knL":[-22.8,165.9],"ftL":[-27.7,321.3]},{"rootY":-5.2,"hips":[0,0],"chest":[-3.9,-84.9],"neck":[-3.9,-84.9],"head":[-17.5,-149.7],"shR":[50.3,-118.6],"elR":[67.3,-15.1],"haR":[74.1,42],"shL":[-59.5,-115.3],"elL":[-55.3,-18.6],"haL":[-62.2,47.1],"hipR":[28.6,33.6],"knR":[19.1,176.7],"ftR":[10.8,320.9],"hipL":[-18,41.7],"knL":[-21.1,165.5],"ftL":[-27.5,319.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-4.2,-84.8],"neck":[-4.2,-84.8],"head":[-18.3,-149.4],"shR":[49.8,-118.8],"elR":[68.4,-15.5],"haR":[75.1,40.3],"shL":[-59.7,-114.9],"elL":[-53.9,-18.2],"haL":[-61.5,47.9],"hipR":[28.7,33.6],"knR":[20,175.2],"ftR":[12.5,317.9],"hipL":[-17.8,41.9],"knL":[-21,164.9],"ftL":[-27.1,319]},{"rootY":-1.3,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-19.4,-149.1],"shR":[48.9,-119],"elR":[68.2,-15.8],"haR":[75,38.9],"shL":[-60.4,-114.4],"elL":[-53.1,-18],"haL":[-61.1,48.3],"hipR":[28.3,33.8],"knR":[20.2,174.5],"ftR":[14.4,313.9],"hipL":[-18.2,42],"knL":[-21.9,164.1],"ftL":[-25.9,319.1]},{"rootY":-1.8,"hips":[0,0],"chest":[-5.8,-84.3],"neck":[-5.8,-84.3],"head":[-20.6,-148.9],"shR":[47.4,-119.4],"elR":[66.9,-16.3],"haR":[74.1,38],"shL":[-61.3,-113.7],"elL":[-53.3,-17],"haL":[-61.3,49.5],"hipR":[27.5,34.2],"knR":[19.7,174.1],"ftR":[16,309.5],"hipL":[-19.2,41.8],"knL":[-22.4,162.9],"ftL":[-24.4,318.3]},{"rootY":-3,"hips":[0,0],"chest":[-7,-84.2],"neck":[-7,-84.2],"head":[-22.1,-148.7],"shR":[45.8,-119.8],"elR":[64.8,-16.7],"haR":[72.4,37.8],"shL":[-62.4,-113.1],"elL":[-53.8,-16],"haL":[-62.1,50.5],"hipR":[26.2,34.9],"knR":[18.5,175.7],"ftR":[17.4,303.4],"hipL":[-20.6,41.4],"knL":[-23.4,164.2],"ftL":[-22.8,319.7]},{"rootY":-4.8,"hips":[0,0],"chest":[-7.3,-84.4],"neck":[-7.3,-84.4],"head":[-22.6,-148.8],"shR":[45.2,-120.2],"elR":[63.5,-17.1],"haR":[71.3,38.2],"shL":[-62.6,-112.9],"elL":[-53.7,-15.9],"haL":[-62.3,50.5],"hipR":[25.7,35],"knR":[18.9,177.5],"ftR":[19.6,296],"hipL":[-21.1,41.1],"knL":[-23.4,166.7],"ftL":[-20.2,321.8]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.5,-84.4],"neck":[-7.5,-84.4],"head":[-22.6,-148.9],"shR":[45.1,-120.3],"elR":[62.9,-17.3],"haR":[70.4,39],"shL":[-62.6,-112.7],"elL":[-53.6,-15.8],"haL":[-62.6,50.5],"hipR":[25.3,35.1],"knR":[20.6,180],"ftR":[20.9,289],"hipL":[-21.6,40.9],"knL":[-23.8,169],"ftL":[-17.9,323.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-23,-149],"shR":[44.6,-120.3],"elR":[62.1,-17.3],"haR":[69.1,39.9],"shL":[-63.2,-112.8],"elL":[-54.5,-16.2],"haL":[-63.8,50],"hipR":[24.1,35.6],"knR":[23,181.9],"ftR":[22,280.5],"hipL":[-22.9,40.2],"knL":[-24.6,170.8],"ftL":[-15.6,324.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-8.5,-84.5],"neck":[-8.5,-84.5],"head":[-23,-149.1],"shR":[44.3,-120.1],"elR":[61.1,-17.2],"haR":[67.6,40.8],"shL":[-63.7,-112.9],"elL":[-56.5,-16.3],"haL":[-65.8,49.7],"hipR":[22.4,36.3],"knR":[25.1,182.1],"ftR":[23.6,272.8],"hipL":[-24.6,39.1],"knL":[-25.7,171.9],"ftL":[-13,323.8]},{"rootY":-6.8,"hips":[0,0],"chest":[-8.3,-84.6],"neck":[-8.3,-84.6],"head":[-22.3,-149.3],"shR":[44.8,-119.8],"elR":[60.4,-16.8],"haR":[66.5,42],"shL":[-63.5,-113.6],"elL":[-58,-16.2],"haL":[-67.6,49.3],"hipR":[21.1,36.5],"knR":[27.8,180.5],"ftR":[25.1,266.5],"hipL":[-25.9,38],"knL":[-25.1,172.9],"ftL":[-9.8,323]},{"rootY":-6.2,"hips":[0,0],"chest":[-8.4,-84.7],"neck":[-8.4,-84.7],"head":[-21.8,-149.5],"shR":[45.1,-119.5],"elR":[58.5,-16.4],"haR":[64.5,42.9],"shL":[-63.5,-114.1],"elL":[-60,-15.8],"haL":[-70.2,49.3],"hipR":[20.5,36.4],"knR":[29.2,177.3],"ftR":[25.3,263],"hipL":[-26.5,37.4],"knL":[-24.1,174.3],"ftL":[-7.8,322.4]},{"rootY":-5.7,"hips":[0,0],"chest":[-8.2,-84.9],"neck":[-8.2,-84.9],"head":[-21.1,-149.8],"shR":[45.6,-119.2],"elR":[56.7,-15.9],"haR":[62.6,44.2],"shL":[-63.2,-114.5],"elL":[-62,-15.1],"haL":[-72.9,49.3],"hipR":[19.4,36.8],"knR":[29.2,173.4],"ftR":[26.1,263.9],"hipL":[-27.7,36.4],"knL":[-23.1,175.3],"ftL":[-5.5,321.8]},{"rootY":-6.2,"hips":[0,0],"chest":[-7.8,-85],"neck":[-7.8,-85],"head":[-20.2,-150],"shR":[46.3,-119],"elR":[54.8,-15.3],"haR":[60.5,46.2],"shL":[-62.8,-115],"elL":[-64,-14.6],"haL":[-75.6,49.1],"hipR":[18.6,37.1],"knR":[27,169.7],"ftR":[26.7,270.5],"hipL":[-28.4,36],"knL":[-22.8,176.1],"ftL":[-4,321.3]},{"rootY":-5.6,"hips":[0,0],"chest":[-7.4,-85.2],"neck":[-7.4,-85.2],"head":[-19,-150.2],"shR":[47,-118.6],"elR":[53,-14.8],"haR":[58.7,47.7],"shL":[-62.3,-115.3],"elL":[-65.4,-14.3],"haL":[-77.9,48.4],"hipR":[17.8,37.2],"knR":[24,165.7],"ftR":[26.6,279.9],"hipL":[-29.1,35.5],"knL":[-22.3,177.1],"ftL":[-2.4,320.5]},{"rootY":-5.3,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[-18.1,-150.4],"shR":[47.3,-118.2],"elR":[51.3,-14.3],"haR":[56.8,49.2],"shL":[-62.2,-115.8],"elL":[-67.3,-14.6],"haL":[-80.4,47],"hipR":[17.2,37.3],"knR":[20.1,162.3],"ftR":[24.5,291.2],"hipL":[-29.6,35.2],"knL":[-21.6,178.1],"ftL":[-0.5,320.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-7.2,-85.3],"neck":[-7.2,-85.3],"head":[-17.5,-150.4],"shR":[47.7,-117.7],"elR":[50.4,-13.9],"haR":[55.5,50.3],"shL":[-62.1,-116.3],"elL":[-69.1,-15],"haL":[-82.4,45.1],"hipR":[16.2,37.8],"knR":[16.8,160.8],"ftR":[21.8,303.1],"hipL":[-30.4,34.9],"knL":[-21.2,178.8],"ftL":[1.1,320]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.1,-85.3],"neck":[-7.1,-85.3],"head":[-16.7,-150.5],"shR":[48.1,-117.2],"elR":[49.9,-13.5],"haR":[54.5,51.3],"shL":[-61.7,-117],"elL":[-70.7,-15.7],"haL":[-83.7,42.6],"hipR":[15.5,38],"knR":[13.5,161.1],"ftR":[18.3,313.4],"hipL":[-30.9,34.8],"knL":[-20.5,179.4],"ftL":[2.9,320.2]},{"rootY":-7,"hips":[0,0],"chest":[-7,-85.3],"neck":[-7,-85.3],"head":[-15.7,-150.6],"shR":[48.5,-116.8],"elR":[49.7,-13.2],"haR":[53.6,52.1],"shL":[-61.4,-117.4],"elL":[-72.9,-16.4],"haL":[-84.8,39.7],"hipR":[15,38.4],"knR":[10.8,162.6],"ftR":[14.1,319.5],"hipL":[-31.3,34.9],"knL":[-19.4,179.6],"ftL":[4.7,320.1]},{"rootY":-6.6,"hips":[0,0],"chest":[-6.7,-85.4],"neck":[-6.7,-85.4],"head":[-14.7,-150.7],"shR":[48.9,-116.6],"elR":[49.4,-13.3],"haR":[52.9,52.3],"shL":[-61,-117.9],"elL":[-74.3,-17.1],"haL":[-85.6,36.8],"hipR":[14,38.7],"knR":[7.8,164.7],"ftR":[10.8,321.1],"hipL":[-32,34.6],"knL":[-18.4,178.8],"ftL":[6.2,319.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-6.9,-85.4],"neck":[-6.9,-85.4],"head":[-14.3,-150.7],"shR":[49,-116.1],"elR":[48.7,-13.2],"haR":[51.9,52.7],"shL":[-60.9,-118.4],"elL":[-75.9,-17.8],"haL":[-86.4,33.7],"hipR":[13.8,39],"knR":[4.5,165.1],"ftR":[7,319.4],"hipL":[-32.1,34.7],"knL":[-18,178.1],"ftL":[6,318.2]},{"rootY":-3,"hips":[0,0],"chest":[-6.7,-85.3],"neck":[-6.7,-85.3],"head":[-13.5,-150.7],"shR":[49.3,-115.8],"elR":[48.6,-13],"haR":[51.6,53.1],"shL":[-60.6,-118.7],"elL":[-76.9,-18.3],"haL":[-86.8,31.3],"hipR":[13.5,39.2],"knR":[3.7,164.3],"ftR":[4.3,319],"hipL":[-32.3,34.7],"knL":[-17.8,177.3],"ftL":[6.6,315]},{"rootY":-1.4,"hips":[0,0],"chest":[-6.4,-85.2],"neck":[-6.4,-85.2],"head":[-12.7,-150.7],"shR":[49.7,-115.5],"elR":[48.2,-13.1],"haR":[51.4,53.3],"shL":[-60.2,-118.9],"elL":[-77.3,-18.7],"haL":[-86.6,29.5],"hipR":[13.3,39.2],"knR":[2,163],"ftR":[3.5,319],"hipL":[-32.5,34.5],"knL":[-17,175.8],"ftL":[7.1,311.7]},{"rootY":-1.4,"hips":[0,0],"chest":[-6,-85.2],"neck":[-6,-85.2],"head":[-11,-150.7],"shR":[50.7,-114.6],"elR":[48.1,-12],"haR":[51.7,54.6],"shL":[-59.2,-120.1],"elL":[-75.9,-19.8],"haL":[-85.3,28.5],"hipR":[13.4,39.2],"knR":[0.8,162.6],"ftR":[4.1,319.3],"hipL":[-32.4,34.7],"knL":[-15.9,174.9],"ftL":[7.9,307.9]},{"rootY":-2.2,"hips":[0,0],"chest":[-5.4,-85.2],"neck":[-5.4,-85.2],"head":[-9.4,-150.6],"shR":[51.4,-114.1],"elR":[48,-11.6],"haR":[52.1,55.3],"shL":[-58.6,-120.2],"elL":[-74,-19.8],"haL":[-83.8,29.3],"hipR":[14.8,38.9],"knR":[1,163.3],"ftR":[4.9,320.5],"hipL":[-31.2,35.7],"knL":[-15.3,175.8],"ftL":[7.9,303.4]},{"rootY":-4,"hips":[0,0],"chest":[-5.1,-85.1],"neck":[-5.1,-85.1],"head":[-8.8,-150.6],"shR":[52.2,-113.3],"elR":[48.2,-10.9],"haR":[52.6,55.9],"shL":[-57.7,-121.1],"elL":[-71.9,-20.7],"haL":[-81.8,30.2],"hipR":[15,39],"knR":[1.7,165.4],"ftR":[6.1,322.5],"hipL":[-31,35.9],"knL":[-15.9,176.3],"ftL":[6.8,298.6]},{"rootY":-6.1,"hips":[0,0],"chest":[-4.5,-85.1],"neck":[-4.5,-85.1],"head":[-7.7,-150.6],"shR":[53.1,-112.7],"elR":[49,-10.4],"haR":[53.5,56.4],"shL":[-56.7,-121.8],"elL":[-69.8,-21.6],"haL":[-79.5,31.2],"hipR":[15.4,38.7],"knR":[2.6,167.7],"ftR":[7,324.3],"hipL":[-30.6,36.2],"knL":[-17.8,177.9],"ftL":[6.1,293.1]},{"rootY":-8.5,"hips":[0,0],"chest":[-4,-85.1],"neck":[-4,-85.1],"head":[-6.9,-150.6],"shR":[53.6,-112.5],"elR":[49.9,-10.3],"haR":[54.3,56.4],"shL":[-56.2,-121.6],"elL":[-68.9,-22],"haL":[-78,33.3],"hipR":[16.4,38.3],"knR":[3.1,170.1],"ftR":[7,326],"hipL":[-29.8,36.9],"knL":[-21.6,180.7],"ftL":[4,288.3]},{"rootY":-9.4,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.8,-150.6],"shR":[53.7,-112.5],"elR":[50.9,-10.4],"haR":[55,56.1],"shL":[-56,-121.6],"elL":[-67.9,-22.3],"haL":[-76.4,34.7],"hipR":[17.4,37.7],"knR":[3.5,171.7],"ftR":[7.1,326.6],"hipL":[-28.8,37.4],"knL":[-26.3,182.4],"ftL":[2.6,281.7]},{"rootY":-9.9,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.9,-150.6],"shR":[53.6,-112.7],"elR":[52.4,-10.5],"haR":[56.2,55.7],"shL":[-55.8,-121.5],"elL":[-66.8,-22.7],"haL":[-74.9,35.7],"hipR":[18.3,37],"knR":[3,173],"ftR":[7.1,326.7],"hipL":[-27.9,37.9],"knL":[-31.9,183],"ftL":[0.7,275.5]},{"rootY":-10,"hips":[0,0],"chest":[-4.4,-84.9],"neck":[-4.4,-84.9],"head":[-7.6,-150.5],"shR":[52.8,-113],"elR":[53.3,-10.5],"haR":[56.9,55.3],"shL":[-56.4,-120.9],"elL":[-65.9,-22.7],"haL":[-73.9,36.8],"hipR":[19,36.2],"knR":[1.8,173.9],"ftR":[6.7,326.1],"hipL":[-27.2,38.2],"knL":[-37.9,182.2],"ftL":[-1.4,269.7]},{"rootY":-9.2,"hips":[0,0],"chest":[-4.8,-84.8],"neck":[-4.8,-84.8],"head":[-8.3,-150.4],"shR":[52.2,-113.4],"elR":[54.4,-10.5],"haR":[58,54.8],"shL":[-56.6,-120.6],"elL":[-63.8,-22.8],"haL":[-72.2,37.9],"hipR":[19.2,35.7],"knR":[1.5,174.9],"ftR":[7.1,325.4],"hipL":[-26.9,38.4],"knL":[-43.9,179.9],"ftL":[-4,267]},{"rootY":-9.3,"hips":[0,0],"chest":[-5.3,-84.8],"neck":[-5.3,-84.8],"head":[-9.4,-150.4],"shR":[51.5,-113.7],"elR":[55.2,-10.4],"haR":[59.1,54.4],"shL":[-56.7,-120.3],"elL":[-60.9,-22.6],"haL":[-70.3,39.2],"hipR":[19.2,35.5],"knR":[1.5,176.1],"ftR":[8,325],"hipL":[-26.7,38.6],"knL":[-48.5,177.1],"ftL":[-7.5,269.3]},{"rootY":-9.2,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[-10.6,-150.4],"shR":[50.6,-113.8],"elR":[55.9,-10.2],"haR":[60.1,53.9],"shL":[-56.3,-120.4],"elL":[-57.1,-22.8],"haL":[-67.7,39.8],"hipR":[19.6,35.1],"knR":[1.7,177.2],"ftR":[9.4,324.4],"hipL":[-26.1,39.1],"knL":[-51.8,174.2],"ftL":[-12.1,275.2]},{"rootY":-9.2,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-11.8,-150.4],"shR":[49.7,-114.1],"elR":[57,-10.5],"haR":[61.3,52.9],"shL":[-56.1,-120],"elL":[-53.6,-22],"haL":[-65.2,41.5],"hipR":[20.3,34.5],"knR":[2.5,177.7],"ftR":[11,323.7],"hipL":[-25.2,39.7],"knL":[-54,171.4],"ftL":[-17.1,284.3]},{"rootY":-9.9,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-12.6,-150.4],"shR":[48.9,-114.5],"elR":[58.6,-10.7],"haR":[62.5,51.9],"shL":[-55.5,-119.7],"elL":[-50.4,-21.6],"haL":[-62.8,42.5],"hipR":[20.4,34.3],"knR":[4.2,178.6],"ftR":[13.4,323.3],"hipL":[-24.9,40],"knL":[-54.6,169.1],"ftL":[-21.9,295.3]},{"rootY":-11.1,"hips":[0,0],"chest":[-6.2,-84.7],"neck":[-6.2,-84.7],"head":[-13.9,-150.2],"shR":[48,-115],"elR":[60,-11.3],"haR":[63.5,50.4],"shL":[-55.1,-119],"elL":[-48.3,-21.2],"haL":[-60.6,43.5],"hipR":[20.8,34],"knR":[6.5,179.2],"ftR":[15.7,323.3],"hipL":[-24.2,40.6],"knL":[-54.6,167.8],"ftL":[-28,306.7]},{"rootY":-11.6,"hips":[0,0],"chest":[-7.8,-84.4],"neck":[-7.8,-84.4],"head":[-16.3,-149.9],"shR":[45.6,-115.2],"elR":[60.1,-11.5],"haR":[62.6,49.3],"shL":[-56.2,-118.4],"elL":[-47.8,-21],"haL":[-60.2,43.9],"hipR":[21.2,33.8],"knR":[7,179.4],"ftR":[16.7,323.5],"hipL":[-23.6,41],"knL":[-54.5,167.1],"ftL":[-37.3,316.2]},{"rootY":-12.4,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-16.9,-149.9],"shR":[44.5,-115.8],"elR":[61.3,-12.4],"haR":[62.7,47.6],"shL":[-55.5,-117.8],"elL":[-45.9,-20.7],"haL":[-58.2,44.4],"hipR":[20.1,34.6],"knR":[9.9,180.5],"ftR":[20.7,324.1],"hipL":[-24.5,40.8],"knL":[-52.9,168.1],"ftL":[-44.8,322.6]},{"rootY":-11.8,"hips":[0,0],"chest":[-7.8,-84.7],"neck":[-7.8,-84.7],"head":[-17.1,-150.1],"shR":[44.1,-116.5],"elR":[63.3,-13.3],"haR":[63.6,45.9],"shL":[-55,-117.6],"elL":[-44.2,-20.9],"haL":[-56.6,44.3],"hipR":[20,34.6],"knR":[14.4,179.9],"ftR":[25,323.9],"hipL":[-24.4,41.1],"knL":[-51,168.6],"ftL":[-52.1,324.1]},{"rootY":-10.4,"hips":[0,0],"chest":[-7.4,-84.9],"neck":[-7.4,-84.9],"head":[-17,-150.2],"shR":[43.9,-117.1],"elR":[64.2,-14.1],"haR":[63.8,43.7],"shL":[-54.2,-117.4],"elL":[-42.2,-20.7],"haL":[-54.5,44.6],"hipR":[19.5,34.9],"knR":[19.3,178.9],"ftR":[30.1,323],"hipL":[-24.7,41.1],"knL":[-50.8,167.4],"ftL":[-56.3,322]},{"rootY":-7.5,"hips":[0,0],"chest":[-8.7,-84.5],"neck":[-8.7,-84.5],"head":[-18.5,-149.8],"shR":[42,-117.1],"elR":[63.1,-14.3],"haR":[61.9,42.2],"shL":[-55.3,-116.7],"elL":[-41.9,-20.1],"haL":[-54.6,45.2],"hipR":[21.4,33.8],"knR":[20,177.1],"ftR":[31.5,319.9],"hipL":[-22.3,42.4],"knL":[-51.3,166.5],"ftL":[-59.5,320.7]},{"rootY":-5,"hips":[0,0],"chest":[-10.2,-84.4],"neck":[-10.2,-84.4],"head":[-19.8,-149.7],"shR":[40,-117.2],"elR":[61.3,-14.4],"haR":[59.9,41.2],"shL":[-56.6,-116.5],"elL":[-41.8,-19.7],"haL":[-54.4,45.7],"hipR":[20.6,34.2],"knR":[20.3,177],"ftR":[35.1,316.4],"hipL":[-23,42.1],"knL":[-51.9,166],"ftL":[-57.1,320.9]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-84.3],"neck":[-10.4,-84.3],"head":[-19.6,-149.7],"shR":[38.9,-117.7],"elR":[60.1,-15],"haR":[58.6,40.2],"shL":[-55.7,-115.6],"elL":[-39.8,-18.4],"haL":[-52,47.3],"hipR":[21.4,33.8],"knR":[22.6,175.5],"ftR":[39.3,312.4],"hipL":[-22.5,42.3],"knL":[-51.1,166.1],"ftL":[-52.9,321.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-11.3,-84.3],"neck":[-11.3,-84.3],"head":[-20.5,-149.6],"shR":[37.4,-118.6],"elR":[57.4,-15.6],"haR":[56,39.8],"shL":[-56.3,-114.5],"elL":[-39.3,-17.1],"haL":[-51.3,48.7],"hipR":[19.9,35.1],"knR":[21.7,176.7],"ftR":[43.3,308.5],"hipL":[-24.1,41.5],"knL":[-50.6,166.7],"ftL":[-48.3,322.2]},{"rootY":-7.4,"hips":[0,0],"chest":[-11.2,-84.5],"neck":[-11.2,-84.5],"head":[-20.8,-149.6],"shR":[37.2,-119],"elR":[55.6,-15.7],"haR":[54.2,40],"shL":[-56.3,-114.4],"elL":[-38.8,-16.4],"haL":[-50.3,49.5],"hipR":[18.7,35.5],"knR":[20.1,178.3],"ftR":[47.2,302.2],"hipL":[-25.1,41.1],"knL":[-50.2,168.7],"ftL":[-42.6,323.9]},{"rootY":-8.9,"hips":[0,0],"chest":[-11,-84.7],"neck":[-11,-84.7],"head":[-20.1,-149.8],"shR":[37.6,-119.1],"elR":[55.4,-15.6],"haR":[53.3,40.9],"shL":[-55.9,-114.6],"elL":[-37.8,-16.8],"haL":[-48.8,49.1],"hipR":[18.5,35.2],"knR":[19.1,179.6],"ftR":[49.6,294.8],"hipL":[-25.2,40.9],"knL":[-49.8,170.9],"ftL":[-38,325.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-10.7,-84.8],"neck":[-10.7,-84.8],"head":[-19.3,-150],"shR":[38.2,-119.2],"elR":[55.5,-15.7],"haR":[52.8,41.2],"shL":[-55.6,-114.5],"elL":[-38,-16.4],"haL":[-48.3,49.7],"hipR":[17.6,35.3],"knR":[18,181.2],"ftR":[50.8,287.5],"hipL":[-26,40.4],"knL":[-49.5,172.3],"ftL":[-32.7,326]},{"rootY":-9.2,"hips":[0,0],"chest":[-10.9,-84.9],"neck":[-10.9,-84.9],"head":[-18.8,-150.1],"shR":[38.3,-119.2],"elR":[55.1,-15.7],"haR":[51.6,41.2],"shL":[-55.7,-114.6],"elL":[-38.5,-16.8],"haL":[-49.2,48.9],"hipR":[15.3,36.4],"knR":[16.2,182.7],"ftR":[51.5,280.1],"hipL":[-28.1,39.2],"knL":[-48.7,172.9],"ftL":[-26.4,325.3]},{"rootY":-7.9,"hips":[0,0],"chest":[-10.5,-85],"neck":[-10.5,-85],"head":[-17.7,-150.3],"shR":[39.1,-119],"elR":[54.9,-15.5],"haR":[50.3,41.6],"shL":[-55.4,-114.8],"elL":[-40.1,-16.8],"haL":[-51.1,48.5],"hipR":[13.6,36.6],"knR":[14.7,181.8],"ftR":[51.6,272.6],"hipL":[-29.5,38.1],"knL":[-47.5,173.2],"ftL":[-20.1,323.9]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.9,-150.3],"shR":[39.8,-118.3],"elR":[54.1,-14.6],"haR":[49.2,43.1],"shL":[-55,-115.7],"elL":[-42.6,-16.7],"haL":[-54.9,48.1],"hipR":[13.7,36],"knR":[12.3,178.9],"ftR":[49.1,266.5],"hipL":[-29.4,38.1],"knL":[-46.2,174],"ftL":[-15.6,322.6]},{"rootY":-4.9,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.2,-150.3],"shR":[40,-117.8],"elR":[52.7,-14.1],"haR":[47.4,44.5],"shL":[-54.8,-116.3],"elL":[-44.8,-16.6],"haL":[-59.1,47.4],"hipR":[13.1,35.8],"knR":[8.7,175.4],"ftR":[45.5,263.8],"hipL":[-30,37.6],"knL":[-45.4,174.4],"ftL":[-11.5,320.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-10.4,-85],"neck":[-10.4,-85],"head":[-15.3,-150.6],"shR":[40.3,-117.2],"elR":[50.6,-13.3],"haR":[46.1,46.5],"shL":[-54.8,-117],"elL":[-47,-16.9],"haL":[-63.7,45.8],"hipR":[11.1,36.7],"knR":[4,171.9],"ftR":[42.5,266.6],"hipL":[-31.6,36.4],"knL":[-44.2,174.5],"ftL":[-7.4,319.3]},{"rootY":-2.7,"hips":[0,0],"chest":[-9.5,-85.2],"neck":[-9.5,-85.2],"head":[-13.8,-150.8],"shR":[41.5,-117],"elR":[49.7,-12.8],"haR":[45.9,48.2],"shL":[-53.8,-117.5],"elL":[-48.3,-17],"haL":[-67.6,44],"hipR":[9.8,37],"knR":[-0.7,168.6],"ftR":[39.1,273.2],"hipL":[-32.6,35.6],"knL":[-42.2,175.2],"ftL":[-2.4,318.1]},{"rootY":-2.4,"hips":[0,0],"chest":[-9.4,-85.2],"neck":[-9.4,-85.2],"head":[-13.4,-150.7],"shR":[41.9,-116.6],"elR":[48.1,-12.3],"haR":[45.2,49.8],"shL":[-53.3,-117.7],"elL":[-50.2,-17.1],"haL":[-72,41.9],"hipR":[9.1,36.9],"knR":[-7.2,165.1],"ftR":[32.5,283],"hipL":[-33,35.3],"knL":[-40.3,176.3],"ftL":[0.9,317.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-12.3,-150.9],"shR":[42.4,-116.4],"elR":[47.6,-12.1],"haR":[45.4,51],"shL":[-52.5,-117.8],"elL":[-51.8,-17.2],"haL":[-76.1,39.6],"hipR":[7.6,37.4],"knR":[-12.6,163],"ftR":[25.1,294.6],"hipL":[-33.9,34.6],"knL":[-37.4,176.9],"ftL":[5.3,317.7]},{"rootY":-4.5,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-11.7,-150.9],"shR":[42.4,-115.7],"elR":[47.3,-11.6],"haR":[45.2,52.1],"shL":[-52.5,-118.5],"elL":[-54.4,-18],"haL":[-80.5,36.9],"hipR":[7.7,37.6],"knR":[-17.3,162.2],"ftR":[15.5,306],"hipL":[-33.6,35],"knL":[-34.7,178.4],"ftL":[7.9,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-10.5,-151],"shR":[43.3,-115.3],"elR":[48.5,-11.4],"haR":[46.5,52.8],"shL":[-51.3,-119],"elL":[-55.6,-18.7],"haL":[-83.8,34.2],"hipR":[5.1,38],"knR":[-19.8,163.5],"ftR":[7.6,316],"hipL":[-34.8,33.9],"knL":[-31.3,178.3],"ftL":[12.6,319.2]},{"rootY":-8.3,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-9.8,-151.1],"shR":[43.3,-115],"elR":[49.7,-11.4],"haR":[47.1,53.4],"shL":[-50.8,-119.1],"elL":[-57.3,-19],"haL":[-86.7,32.2],"hipR":[6.6,37.8],"knR":[-22,164.7],"ftR":[-2.5,320.7],"hipL":[-33.4,35.3],"knL":[-28.5,180.2],"ftL":[13.9,320.9]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.9,-85.4],"neck":[-8.9,-85.4],"head":[-9.2,-151.1],"shR":[42.8,-114.8],"elR":[49.9,-11.5],"haR":[47.1,53.5],"shL":[-49.8,-119.4],"elL":[-58.2,-19.7],"haL":[-89.2,29.7],"hipR":[4.3,38.4],"knR":[-19.7,169.6],"ftR":[-4.4,324.8],"hipL":[-34.3,34.5],"knL":[-28.3,179.5],"ftL":[16,318.1]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-9,-151.1],"shR":[41.9,-114.3],"elR":[49.9,-11.4],"haR":[46.9,53.9],"shL":[-49.5,-119.9],"elL":[-59.3,-20.4],"haL":[-91.7,27.9],"hipR":[3.3,38.6],"knR":[-18.9,171.4],"ftR":[-14.7,324.6],"hipL":[-34.3,34.5],"knL":[-28.5,179.6],"ftL":[17.5,316.4]},{"rootY":-2.5,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-8.7,-150.8],"shR":[41.1,-114.3],"elR":[50.2,-11.8],"haR":[47,53.9],"shL":[-47.8,-119.7],"elL":[-58.5,-20.4],"haL":[-92.3,26.8],"hipR":[3,38.5],"knR":[-20.7,170.6],"ftR":[-17.3,323.8],"hipL":[-33.9,34.8],"knL":[-27.5,179.9],"ftL":[20.6,314.7]},{"rootY":0.8,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[-9.2,-151],"shR":[39.3,-114.3],"elR":[48.9,-12.3],"haR":[45.9,53.5],"shL":[-47.6,-119.4],"elL":[-57.6,-20.2],"haL":[-93.6,26.4],"hipR":[1,38.9],"knR":[-25.5,170.1],"ftR":[-16.3,324.3],"hipL":[-34.7,33.8],"knL":[-28.4,178.9],"ftL":[22.9,310.3]},{"rootY":3.3,"hips":[0,0],"chest":[-11,-85.1],"neck":[-11,-85.1],"head":[-9.4,-150.8],"shR":[37.5,-114.1],"elR":[47.3,-11.7],"haR":[44.6,54.8],"shL":[-47.6,-120],"elL":[-56.2,-20.7],"haL":[-92.9,25.9],"hipR":[-0.4,38.8],"knR":[-29.5,170.7],"ftR":[-14.6,325.6],"hipL":[-34.7,33.6],"knL":[-29.5,178.7],"ftL":[24.9,306.2]},{"rootY":2.7,"hips":[0,0],"chest":[-11.3,-85.1],"neck":[-11.3,-85.1],"head":[-9.1,-150.8],"shR":[36.1,-113.9],"elR":[45.7,-11.5],"haR":[43.6,55.4],"shL":[-46.9,-120.4],"elL":[-53.4,-20.4],"haL":[-91.9,27.8],"hipR":[-1.4,38.8],"knR":[-34.6,170.2],"ftR":[-18.9,325.4],"hipL":[-34.3,33.7],"knL":[-29.4,178.6],"ftL":[27.2,303.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-11.7,-85],"neck":[-11.7,-85],"head":[-9.1,-150.7],"shR":[34,-113.8],"elR":[44.2,-11.4],"haR":[42.7,55.7],"shL":[-44.5,-120],"elL":[-47.7,-20],"haL":[-86.4,29.8],"hipR":[-1.5,38.3],"knR":[-43.8,166.3],"ftR":[-26.4,321.8],"hipL":[-33.5,34.4],"knL":[-24.7,178.4],"ftL":[28.8,305.4]},{"rootY":-4,"hips":[0,0],"chest":[-11.9,-85],"neck":[-11.9,-85],"head":[-9.1,-150.8],"shR":[32,-114.2],"elR":[43.1,-11.7],"haR":[41.7,55.5],"shL":[-42.7,-119.6],"elL":[-39.9,-21.9],"haL":[-77.2,28.3],"hipR":[-1.5,38.2],"knR":[-45.6,166.8],"ftR":[-24.2,322.4],"hipL":[-32.8,35],"knL":[-25.4,178.7],"ftL":[28.8,302.6]},{"rootY":-5.5,"hips":[0,0],"chest":[-12.2,-85],"neck":[-12.2,-85],"head":[-9.3,-150.7],"shR":[29.8,-114],"elR":[42,-11.3],"haR":[39.7,55.8],"shL":[-41.1,-119.9],"elL":[-37,-20.3],"haL":[-72.8,34.5],"hipR":[-2.2,37.8],"knR":[-47.3,168.3],"ftR":[-21.9,323.5],"hipL":[-32,35.5],"knL":[-26.1,179],"ftL":[29.2,300.1]},{"rootY":-6.7,"hips":[0,0],"chest":[-12.4,-84.9],"neck":[-12.4,-84.9],"head":[-9.4,-150.7],"shR":[26.9,-114.4],"elR":[40.3,-11.6],"haR":[36.7,55.3],"shL":[-38.3,-119.4],"elL":[-31.4,-20],"haL":[-64.2,37.7],"hipR":[-2.8,37.6],"knR":[-48,170],"ftR":[-19.3,324.5],"hipL":[-31.1,36],"knL":[-26.6,179.3],"ftL":[31.3,297.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[-10.5,-150.7],"shR":[24.4,-113.6],"elR":[39.2,-10.6],"haR":[33.9,55.9],"shL":[-37.8,-120.2],"elL":[-29.1,-21],"haL":[-58.3,39],"hipR":[-3.4,37.2],"knR":[-48.3,171.3],"ftR":[-17.1,325.2],"hipL":[-29.4,37.1],"knL":[-28.3,180.5],"ftL":[34,295.5]},{"rootY":-8.2,"hips":[0,0],"chest":[-14.4,-84.6],"neck":[-14.4,-84.6],"head":[-11.2,-150.5],"shR":[20.4,-112.8],"elR":[38.3,-9.8],"haR":[30,56.1],"shL":[-36,-120.8],"elL":[-24.1,-22.1],"haL":[-49.9,39.7],"hipR":[-4.8,37.3],"knR":[-49.6,172.4],"ftR":[-15.5,325.5],"hipL":[-28.1,37.4],"knL":[-29.6,181],"ftL":[39,292]},{"rootY":-8.9,"hips":[0,0],"chest":[-15.6,-84.4],"neck":[-15.6,-84.4],"head":[-13.1,-150.3],"shR":[16,-112.5],"elR":[35.3,-9.5],"haR":[24.8,55.6],"shL":[-34.4,-120.7],"elL":[-20.7,-21.9],"haL":[-42.7,41.2],"hipR":[-6.4,37.3],"knR":[-50.2,173.6],"ftR":[-13.8,325.9],"hipL":[-26.6,37.8],"knL":[-30.4,181.6],"ftL":[46.1,288.4]},{"rootY":-9.2,"hips":[0,0],"chest":[-17.5,-84],"neck":[-17.5,-84],"head":[-15.2,-149.9],"shR":[11.1,-111.4],"elR":[31.8,-8.5],"haR":[18.8,55.6],"shL":[-34.2,-121.4],"elL":[-16.8,-23.2],"haL":[-37.1,40.3],"hipR":[-7.8,37.6],"knR":[-51.5,174.8],"ftR":[-12.6,326.2],"hipL":[-25.4,37.9],"knL":[-32,181.6],"ftL":[54,284.5]},{"rootY":-10.1,"hips":[0,0],"chest":[-18.9,-83.8],"neck":[-18.9,-83.8],"head":[-16.4,-149.6],"shR":[4.9,-111.1],"elR":[27.1,-8.6],"haR":[11.9,54.6],"shL":[-31.7,-121.3],"elL":[-11.7,-23.6],"haL":[-30.7,40.2],"hipR":[-9,37.7],"knR":[-52.4,175.8],"ftR":[-12,326.7],"hipL":[-23.7,38.2],"knL":[-34.5,181.8],"ftL":[60.6,283.4]},{"rootY":-10.8,"hips":[0,0],"chest":[-19.6,-83.6],"neck":[-19.6,-83.6],"head":[-18.2,-149.4],"shR":[-0.8,-110.6],"elR":[22.5,-8.6],"haR":[5.1,53.6],"shL":[-28.6,-121.6],"elL":[-5.2,-24.9],"haL":[-24.1,38.8],"hipR":[-10.6,38.1],"knR":[-53.5,176.8],"ftR":[-11.1,327.1],"hipL":[-21.7,38.3],"knL":[-35.7,181.8],"ftL":[66.1,284.2]},{"rootY":-11.1,"hips":[0,0],"chest":[-20.5,-83.4],"neck":[-20.5,-83.4],"head":[-19.2,-149.2],"shR":[-6.9,-110.6],"elR":[17.9,-9.6],"haR":[-1.8,51.9],"shL":[-25.1,-121.2],"elL":[1.4,-25.1],"haL":[-18.2,38.2],"hipR":[-12.2,38.3],"knR":[-54.7,177.7],"ftR":[-10.1,327.4],"hipL":[-19.8,38.2],"knL":[-36,181.7],"ftL":[70.5,286.5]},{"rootY":-11.4,"hips":[0,0],"chest":[-20.8,-83.4],"neck":[-20.8,-83.4],"head":[-19.8,-149.1],"shR":[-12.1,-110.4],"elR":[12.3,-10],"haR":[-8.9,50.8],"shL":[-20.9,-121.4],"elL":[7.9,-25.6],"haL":[-13,37.1],"hipR":[-14.1,38.2],"knR":[-55.5,178.4],"ftR":[-8.5,327.4],"hipL":[-18.1,38.3],"knL":[-35,181.5],"ftL":[73.6,290]},{"rootY":-11.7,"hips":[0,0],"chest":[-20.6,-83.4],"neck":[-20.6,-83.4],"head":[-20.4,-149.4],"shR":[-16.8,-109.8],"elR":[7.4,-10.1],"haR":[-15.8,50.2],"shL":[-16.1,-122.1],"elL":[14.6,-26.5],"haL":[-7.5,35.5],"hipR":[-15.6,38.6],"knR":[-56.5,179],"ftR":[-7,327.4],"hipL":[-15.4,38.3],"knL":[-31.9,181.8],"ftL":[75.9,293.6]},{"rootY":-11.2,"hips":[0,0],"chest":[-20.7,-83.4],"neck":[-20.7,-83.4],"head":[-20.4,-149.3],"shR":[-20.9,-109.4],"elR":[2.6,-10.5],"haR":[-22.5,49.4],"shL":[-12.1,-122.3],"elL":[19.8,-26.7],"haL":[-3.3,34.6],"hipR":[-17.6,38.4],"knR":[-57.1,179.3],"ftR":[-5.6,327.2],"hipL":[-13.2,38.3],"knL":[-28.3,181.8],"ftL":[75.3,296.9]},{"rootY":-11,"hips":[0,0],"chest":[-19.9,-83.6],"neck":[-19.9,-83.6],"head":[-19.4,-149.5],"shR":[-24.7,-109.6],"elR":[-2.1,-11.3],"haR":[-28.8,48.3],"shL":[-7.8,-122.5],"elL":[24.5,-26.6],"haL":[0.7,34],"hipR":[-19.3,38.4],"knR":[-57.6,179.5],"ftR":[-4.3,326.9],"hipL":[-10.6,38.4],"knL":[-23.7,182.3],"ftL":[72.8,300.7]},{"rootY":-10.4,"hips":[0,0],"chest":[-19.7,-83.6],"neck":[-19.7,-83.6],"head":[-18.5,-149.5],"shR":[-28.7,-109.8],"elR":[-7.5,-11.3],"haR":[-35.4,48.1],"shL":[-3.3,-122.3],"elL":[28.6,-26.1],"haL":[4.6,33.9],"hipR":[-21.2,38.1],"knR":[-59,179.1],"ftR":[-3.8,326],"hipL":[-7.9,38.8],"knL":[-18.6,183.1],"ftL":[67.6,304.4]},{"rootY":-10.2,"hips":[0,0],"chest":[-19.2,-83.6],"neck":[-19.2,-83.6],"head":[-18.8,-149.6],"shR":[-32.1,-109],"elR":[-12.2,-10.6],"haR":[-41.5,48.8],"shL":[0.7,-122.9],"elL":[32,-26.2],"haL":[7.9,33.2],"hipR":[-22.7,38.1],"knR":[-60.3,178.7],"ftR":[-3,325],"hipL":[-5.1,39],"knL":[-13.4,183.5],"ftL":[59.7,307.7]},{"rootY":-1.9,"hips":[0,0],"chest":[-18,-83.8],"neck":[-18,-83.8],"head":[-16.7,-149.7],"shR":[-35.5,-109.3],"elR":[-18,-10.2],"haR":[-47.4,49.4],"shL":[6.2,-122.8],"elL":[36.4,-25.8],"haL":[13.3,33.5],"hipR":[-23.7,38.4],"knR":[-52.9,180.5],"ftR":[4.3,324.3],"hipL":[-2.5,38.6],"knL":[-14.2,182.6],"ftL":[50.3,302.8]},{"rootY":-1.2,"hips":[0,0],"chest":[-17.1,-83.8],"neck":[-17.1,-83.8],"head":[-15.2,-149.6],"shR":[-38.7,-109.4],"elR":[-22.5,-9.8],"haR":[-52.8,49.9],"shL":[10.8,-122.8],"elL":[40.2,-25.5],"haL":[17.2,33.4],"hipR":[-24.8,38.4],"knR":[-52.9,180.3],"ftR":[5.2,324.1],"hipL":[0.7,38.7],"knL":[-10.8,183],"ftL":[44.2,304.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-14.1,-149.5],"shR":[-42,-109.3],"elR":[-27.4,-9],"haR":[-58.2,50.8],"shL":[15.7,-122.7],"elL":[44.1,-25.1],"haL":[21.8,33.6],"hipR":[-25.4,38.7],"knR":[-53.3,180.1],"ftR":[6.6,324.2],"hipL":[4.1,38.4],"knL":[-8.8,182.8],"ftL":[40.1,308.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-14.5,-83.9],"neck":[-14.5,-83.9],"head":[-12.5,-149.7],"shR":[-44.9,-109.7],"elR":[-31.4,-9.2],"haR":[-62.4,50.9],"shL":[20.8,-122.7],"elL":[48.9,-25.1],"haL":[26.1,33.4],"hipR":[-25.9,38.7],"knR":[-55.1,179.5],"ftR":[6.7,323.2],"hipL":[6,38.2],"knL":[-7.5,182.6],"ftL":[38.8,311]},{"rootY":0,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-11.2,-149.7],"shR":[-47.2,-110],"elR":[-34.4,-9.2],"haR":[-65.3,51],"shL":[26.3,-122.4],"elL":[53.2,-24.6],"haL":[33,33.5],"hipR":[-26.2,38.7],"knR":[-56.3,178.8],"ftR":[8.7,321.5],"hipL":[8.1,38.1],"knL":[-4,182.6],"ftL":[39.4,313.4]},{"rootY":1.1,"hips":[0,0],"chest":[-11.3,-84.2],"neck":[-11.3,-84.2],"head":[-9.4,-149.9],"shR":[-49.9,-111.1],"elR":[-38.6,-10.1],"haR":[-68.8,50.3],"shL":[30.8,-121.9],"elL":[56.8,-23.9],"haL":[38,33.9],"hipR":[-26.2,38.8],"knR":[-57.7,178.4],"ftR":[9.2,320.6],"hipL":[9.9,37.9],"knL":[-2.2,182.3],"ftL":[39.3,314.2]},{"rootY":1.8,"hips":[0,0],"chest":[-9.9,-83.8],"neck":[-9.9,-83.8],"head":[-7.5,-149.5],"shR":[-51.4,-109.6],"elR":[-41.9,-8.4],"haR":[-71,52],"shL":[34.3,-122.4],"elL":[59.3,-24.3],"haL":[42.5,33.3],"hipR":[-26.1,38.9],"knR":[-57.2,178.4],"ftR":[9.4,320.8],"hipL":[12.1,37.7],"knL":[0.2,181.7],"ftL":[37.1,314.3]},{"rootY":1.8,"hips":[0,0],"chest":[-9.3,-83.8],"neck":[-9.3,-83.8],"head":[-6.1,-149.5],"shR":[-53.4,-110.3],"elR":[-45.7,-8.9],"haR":[-73.3,51.4],"shL":[37.1,-121.8],"elL":[60.6,-23.5],"haL":[47.1,34],"hipR":[-25.8,39],"knR":[-59.2,177.6],"ftR":[7.2,320],"hipL":[14.1,37.4],"knL":[1.4,181],"ftL":[34.5,314.4]},{"rootY":2.2,"hips":[0,0],"chest":[-8.8,-83.7],"neck":[-8.8,-83.7],"head":[-4.8,-149.4],"shR":[-55.6,-110.9],"elR":[-49.5,-9.3],"haR":[-75.6,50.7],"shL":[40.1,-121],"elL":[61.8,-22.4],"haL":[52.3,35.3],"hipR":[-25.5,39.1],"knR":[-61.3,176.4],"ftR":[5.3,318.7],"hipL":[15.7,37.1],"knL":[2.3,180.1],"ftL":[32.3,314.3]},{"rootY":2.5,"hips":[0,0],"chest":[-7.8,-83.6],"neck":[-7.8,-83.6],"head":[-3.1,-149.2],"shR":[-56.8,-111.2],"elR":[-52.7,-9.7],"haR":[-76.8,49.8],"shL":[42.7,-120.5],"elL":[62.6,-21.7],"haL":[57.5,35.4],"hipR":[-25.2,39.1],"knR":[-63.3,174.9],"ftR":[3.8,316.6],"hipL":[16.9,36.8],"knL":[3.4,179.4],"ftL":[30.3,314.4]},{"rootY":2.7,"hips":[0,0],"chest":[-6.5,-83.5],"neck":[-6.5,-83.5],"head":[-0.8,-149.1],"shR":[-57.4,-111.2],"elR":[-55.7,-9.7],"haR":[-77.9,49.3],"shL":[45.2,-120.2],"elL":[63.7,-21.5],"haL":[63.2,36.6],"hipR":[-24.9,39],"knR":[-63.7,173.9],"ftR":[3.5,314.6],"hipL":[18.2,36.6],"knL":[4.8,179],"ftL":[29,314.9]},{"rootY":-6.3,"hips":[0,0],"chest":[-5.8,-83.7],"neck":[-5.8,-83.7],"head":[0.7,-149.3],"shR":[-58.6,-114],"elR":[-58.5,-12.1],"haR":[-78.8,46.4],"shL":[47.9,-118.6],"elL":[65,-19.5],"haL":[69.6,39.2],"hipR":[-24.8,38.9],"knR":[-66.7,172.1],"ftR":[-17.7,314],"hipL":[19.1,36.6],"knL":[9.1,180.4],"ftL":[28.7,320.5]},{"rootY":-6.3,"hips":[0,0],"chest":[-4.1,-84],"neck":[-4.1,-84],"head":[3.2,-149.4],"shR":[-57,-113.2],"elR":[-58.5,-11],"haR":[-77.4,47.1],"shL":[49.9,-119.1],"elL":[66,-20.2],"haL":[74.7,39.4],"hipR":[-24.3,38.9],"knR":[-62.1,173.3],"ftR":[-21.6,314.2],"hipL":[20.3,36.4],"knL":[12.6,180.8],"ftL":[28.2,324.1]},{"rootY":-6.9,"hips":[0,0],"chest":[-2.5,-84.1],"neck":[-2.5,-84.1],"head":[5.5,-149.6],"shR":[-55.9,-113.6],"elR":[-58.3,-11],"haR":[-75.7,47.1],"shL":[52.1,-118.9],"elL":[67.6,-20],"haL":[80.4,40.6],"hipR":[-24.2,38.6],"knR":[-55.4,175.2],"ftR":[-26.7,316.3],"hipL":[21,36.5],"knL":[14.1,180.9],"ftL":[28.3,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[-1.2,-84.2],"neck":[-1.2,-84.2],"head":[7.7,-149.5],"shR":[-55.1,-114.3],"elR":[-57.8,-11.5],"haR":[-73.8,46.5],"shL":[54,-118.3],"elL":[69.6,-19.6],"haL":[85.5,41.7],"hipR":[-23.8,38.4],"knR":[-46.9,177.4],"ftR":[-29.7,319.1],"hipL":[22.4,36.6],"knL":[16.3,180.9],"ftL":[29.5,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[0.6,-84.5],"neck":[0.6,-84.5],"head":[10.6,-149.6],"shR":[-53.6,-115.2],"elR":[-56.8,-12.3],"haR":[-71.1,45.8],"shL":[56.3,-117.8],"elL":[72.3,-19.3],"haL":[90.4,42.4],"hipR":[-23,38.2],"knR":[-37.3,179.6],"ftR":[-30.3,321.5],"hipL":[23.8,36.8],"knL":[19.8,181],"ftL":[31.3,324.7]},{"rootY":-6.3,"hips":[0,0],"chest":[1.9,-84.5],"neck":[1.9,-84.5],"head":[12.9,-149.5],"shR":[-52.4,-115.9],"elR":[-56,-13],"haR":[-68.9,45.4],"shL":[58,-116.9],"elL":[74.4,-18.8],"haL":[94.4,43.3],"hipR":[-22.2,38.4],"knR":[-31.2,181.2],"ftR":[-30.6,323.2],"hipL":[24.7,36.6],"knL":[21.6,180.8],"ftL":[32.1,324.4]},{"rootY":-6.5,"hips":[0,0],"chest":[2.9,-84.4],"neck":[2.9,-84.4],"head":[14.5,-149.3],"shR":[-51.6,-116.2],"elR":[-55.8,-13.3],"haR":[-66.6,45.8],"shL":[58.9,-116.4],"elL":[75.1,-18.3],"haL":[96.5,44.1],"hipR":[-22.3,38.1],"knR":[-28,181.4],"ftR":[-28.1,323.7],"hipL":[24.8,36.9],"knL":[22.8,181.1],"ftL":[33.2,324.8]},{"rootY":-6.9,"hips":[0,0],"chest":[3.1,-84.7],"neck":[3.1,-84.7],"head":[15.2,-149.4],"shR":[-51.5,-116.9],"elR":[-56.1,-14],"haR":[-65.4,45.6],"shL":[59.1,-116.3],"elL":[74.3,-18],"haL":[96.5,44.7],"hipR":[-22.2,37.7],"knR":[-26.1,181.4],"ftR":[-26,323.4],"hipL":[25.1,37.1],"knL":[23.9,181.4],"ftL":[33.8,324.9]},{"rootY":-7.2,"hips":[0,0],"chest":[3.7,-84.6],"neck":[3.7,-84.6],"head":[16,-149.3],"shR":[-50.9,-117.2],"elR":[-56.3,-14.4],"haR":[-64.2,45.8],"shL":[59.6,-115.8],"elL":[73,-17.6],"haL":[95.4,45.2],"hipR":[-21.9,37.6],"knR":[-25.1,181.4],"ftR":[-24.2,323.1],"hipL":[25.4,37.4],"knL":[25.6,181.6],"ftL":[35.2,325.3]},{"rootY":-7.1,"hips":[0,0],"chest":[4.3,-84.6],"neck":[4.3,-84.6],"head":[16.8,-149.3],"shR":[-50.4,-117.1],"elR":[-56.3,-14.5],"haR":[-63,46.3],"shL":[60,-115.9],"elL":[71.2,-17.7],"haL":[93.1,45.3],"hipR":[-22,37.7],"knR":[-26.5,181.6],"ftR":[-24.3,323.5],"hipL":[25.3,37.3],"knL":[25.7,181.6],"ftL":[35.8,325]},{"rootY":-7,"hips":[0,0],"chest":[5.3,-84.6],"neck":[5.3,-84.6],"head":[17.6,-149.2],"shR":[-49.5,-117.1],"elR":[-55.6,-14.6],"haR":[-61.4,46.6],"shL":[60.8,-115.5],"elL":[69.5,-17.9],"haL":[90.6,45.4],"hipR":[-21.2,37.8],"knR":[-25.7,182],"ftR":[-22.9,323.5],"hipL":[26.1,37.3],"knL":[28.5,181.7],"ftL":[38,325.1]},{"rootY":-6.9,"hips":[0,0],"chest":[5.4,-84.6],"neck":[5.4,-84.6],"head":[18,-149.2],"shR":[-49.3,-117.4],"elR":[-55.1,-14.7],"haR":[-60.5,46.8],"shL":[60.8,-115.8],"elL":[67.4,-18.4],"haL":[87.3,45.3],"hipR":[-21.5,37.8],"knR":[-26.6,182.1],"ftR":[-22.4,323.6],"hipL":[25.8,37.3],"knL":[28.2,181.8],"ftL":[38.9,324.9]},{"rootY":-6.6,"hips":[0,0],"chest":[5.5,-84.4],"neck":[5.5,-84.4],"head":[18,-148.9],"shR":[-49,-117.6],"elR":[-54.1,-15],"haR":[-58.8,46.8],"shL":[61.1,-115.1],"elL":[65.4,-18],"haL":[84,46.1],"hipR":[-21.6,37.6],"knR":[-25.2,182.3],"ftR":[-19.8,323.6],"hipL":[25.7,37.7],"knL":[29.2,182.1],"ftL":[40.6,324.8]},{"rootY":-6.5,"hips":[0,0],"chest":[6,-84.7],"neck":[6,-84.7],"head":[18.4,-149.4],"shR":[-48.6,-117.7],"elR":[-53.3,-15.2],"haR":[-57.9,46.8],"shL":[61.4,-115.5],"elL":[63.3,-18.7],"haL":[80.5,45.7],"hipR":[-21.9,37.3],"knR":[-22.6,182.3],"ftR":[-16.9,323.3],"hipL":[25.4,38.1],"knL":[30.4,182.5],"ftL":[42.9,324.6]},{"rootY":-6.4,"hips":[0,0],"chest":[6.9,-84.8],"neck":[6.9,-84.8],"head":[19.4,-149.4],"shR":[-47.6,-117.9],"elR":[-52.1,-15.2],"haR":[-56,47.4],"shL":[62.4,-115.8],"elL":[62.1,-19],"haL":[77.9,45.7],"hipR":[-21.1,37.2],"knR":[-18.1,182.6],"ftR":[-13.1,322.7],"hipL":[26,38.5],"knL":[33,182.6],"ftL":[46.4,324]},{"rootY":-5.9,"hips":[0,0],"chest":[6.3,-84.5],"neck":[6.3,-84.5],"head":[18.4,-149.3],"shR":[-48.2,-117.6],"elR":[-52.3,-15.1],"haR":[-56.1,47.4],"shL":[61.8,-115.3],"elL":[59.4,-18.8],"haL":[73.6,46.1],"hipR":[-23.2,36.8],"knR":[-20.5,182],"ftR":[-13.3,323.1],"hipL":[24,38.7],"knL":[29.3,182.9],"ftL":[45.6,322.6]},{"rootY":-5.5,"hips":[0,0],"chest":[6.5,-84.4],"neck":[6.5,-84.4],"head":[18.6,-149.2],"shR":[-48,-117.5],"elR":[-52.1,-15.1],"haR":[-55.7,47.6],"shL":[62.1,-115.6],"elL":[58.4,-19.1],"haL":[71,45.9],"hipR":[-23.8,36.4],"knR":[-19.5,181.7],"ftR":[-11.4,322.9],"hipL":[23.4,39.2],"knL":[29,182.9],"ftL":[47.1,320.5]},{"rootY":-5,"hips":[0,0],"chest":[7.9,-84.3],"neck":[7.9,-84.3],"head":[19.9,-149.1],"shR":[-46.7,-117.3],"elR":[-50.9,-14.9],"haR":[-54.5,48.3],"shL":[63.5,-115.5],"elL":[58.9,-19.3],"haL":[69.9,45.6],"hipR":[-23.2,35.8],"knR":[-14.8,181.4],"ftR":[-6.4,322],"hipL":[23.7,39.7],"knL":[32,182.4],"ftL":[50.9,317]},{"rootY":-4.5,"hips":[0,0],"chest":[8.4,-84],"neck":[8.4,-84],"head":[20.5,-149],"shR":[-46,-117.3],"elR":[-50.4,-15],"haR":[-54,48.5],"shL":[64.2,-115],"elL":[59.4,-18.8],"haL":[69,46],"hipR":[-23.7,35.3],"knR":[-13.1,180.9],"ftR":[-3.5,321.8],"hipL":[23.1,40.2],"knL":[32.6,180.9],"ftL":[54.1,311.8]},{"rootY":-4.1,"hips":[0,0],"chest":[8.4,-84.1],"neck":[8.4,-84.1],"head":[20.6,-149.1],"shR":[-45.9,-117.7],"elR":[-50.5,-15.3],"haR":[-54.4,48.5],"shL":[64.2,-115.2],"elL":[59.6,-18.9],"haL":[68.3,45.5],"hipR":[-24.6,34.7],"knR":[-12.5,180.3],"ftR":[-1,321.3],"hipL":[22.2,40.5],"knL":[32.6,178.3],"ftL":[57.2,304.5]},{"rootY":-3.4,"hips":[0,0],"chest":[7.2,-83.6],"neck":[7.2,-83.6],"head":[19.4,-148.6],"shR":[-46.9,-117.5],"elR":[-51.8,-15.4],"haR":[-55.9,48.3],"shL":[63.2,-114.5],"elL":[59,-18.2],"haL":[66.7,45.3],"hipR":[-26.7,34.2],"knR":[-15.7,179.7],"ftR":[-0.6,321.2],"hipL":[20.2,40.7],"knL":[29.5,174.1],"ftL":[57.5,297]},{"rootY":-2.5,"hips":[0,0],"chest":[7,-83.6],"neck":[7,-83.6],"head":[19.2,-148.6],"shR":[-47.1,-117.6],"elR":[-52.5,-15.5],"haR":[-56.8,48.2],"shL":[63,-114.5],"elL":[59.2,-18.5],"haL":[66.5,44],"hipR":[-27.3,33.4],"knR":[-14.4,178.8],"ftR":[2.4,319.7],"hipL":[19.4,40.9],"knL":[29.7,170.1],"ftL":[58.7,290.6]},{"rootY":-1.1,"hips":[0,0],"chest":[6.6,-83.5],"neck":[6.6,-83.5],"head":[19.2,-148.5],"shR":[-47.3,-117.6],"elR":[-52.9,-15.8],"haR":[-57.2,47.9],"shL":[62.8,-114.4],"elL":[59,-18.7],"haL":[66.5,42.7],"hipR":[-27.5,33.3],"knR":[-14,178.7],"ftR":[4.4,318.8],"hipL":[19.2,40.7],"knL":[29,166.3],"ftL":[57.3,287.6]},{"rootY":-1.2,"hips":[0,0],"chest":[6.6,-83.4],"neck":[6.6,-83.4],"head":[19.3,-148.3],"shR":[-47.4,-117.3],"elR":[-53,-15.6],"haR":[-57.4,47.9],"shL":[62.7,-114.3],"elL":[58.9,-18.8],"haL":[67,41.6],"hipR":[-27.5,33.4],"knR":[-13.4,178.9],"ftR":[6.1,318.5],"hipL":[19.3,40.5],"knL":[29.1,163.4],"ftL":[54.4,288.4]},{"rootY":-1.3,"hips":[0,0],"chest":[6.2,-83.1],"neck":[6.2,-83.1],"head":[19.3,-148],"shR":[-47.7,-117.3],"elR":[-53,-15.6],"haR":[-57.5,47.9],"shL":[62.3,-113.9],"elL":[58.2,-18.5],"haL":[67.2,41.4],"hipR":[-27.6,33.5],"knR":[-13,179],"ftR":[7.3,318.6],"hipL":[19.2,40.6],"knL":[29,160.6],"ftL":[50.4,292.4]},{"rootY":-2.6,"hips":[0,0],"chest":[5.6,-83.1],"neck":[5.6,-83.1],"head":[18.9,-148],"shR":[-48.3,-117.4],"elR":[-53.6,-15.9],"haR":[-58,47.8],"shL":[61.7,-113.6],"elL":[57.2,-18.6],"haL":[67,41.4],"hipR":[-27.4,34],"knR":[-12.9,179.6],"ftR":[7.8,319.7],"hipL":[19.4,40.7],"knL":[28.3,159.6],"ftL":[45.5,298.9]},{"rootY":-3.7,"hips":[0,0],"chest":[5.7,-83.5],"neck":[5.7,-83.5],"head":[19.4,-148.2],"shR":[-48.4,-117.5],"elR":[-54,-16.2],"haR":[-58.2,47.7],"shL":[61.5,-114.2],"elL":[56.6,-19.3],"haL":[67,41],"hipR":[-27.1,34.2],"knR":[-11.5,179.5],"ftR":[9.2,320],"hipL":[19.8,40.9],"knL":[28.5,159.8],"ftL":[41.7,306.2]},{"rootY":-5.9,"hips":[0,0],"chest":[5.1,-83.3],"neck":[5.1,-83.3],"head":[18.7,-148.1],"shR":[-48.9,-117.4],"elR":[-54.9,-16.3],"haR":[-58.7,47.9],"shL":[60.6,-114],"elL":[55.3,-19.5],"haL":[66.2,41.1],"hipR":[-27.3,34.7],"knR":[-12.1,179.9],"ftR":[9.1,321.2],"hipL":[19.5,41.1],"knL":[26.3,161],"ftL":[36.8,312.8]},{"rootY":-7.5,"hips":[0,0],"chest":[4.5,-83.2],"neck":[4.5,-83.2],"head":[18.4,-147.9],"shR":[-49.5,-117.3],"elR":[-56.2,-16.4],"haR":[-59.2,47.9],"shL":[60,-113.8],"elL":[54.2,-19.9],"haL":[66.1,41.4],"hipR":[-27.4,35.1],"knR":[-12.4,180],"ftR":[8.9,322],"hipL":[19.4,41.2],"knL":[24.1,163.1],"ftL":[32.6,317.7]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.3],"neck":[3.9,-83.3],"head":[18.2,-147.8],"shR":[-50.1,-117.2],"elR":[-57.3,-16.4],"haR":[-59.6,48],"shL":[59.3,-114.1],"elL":[53,-20.7],"haL":[65.3,41.2],"hipR":[-28,35.2],"knR":[-12.6,179.5],"ftR":[8.5,321.7],"hipL":[18.8,41.7],"knL":[21.6,164.8],"ftL":[29,320.2]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.1],"neck":[3.9,-83.1],"head":[18.3,-147.6],"shR":[-50.3,-116.7],"elR":[-58,-15.7],"haR":[-60.6,48.5],"shL":[59.1,-114.4],"elL":[52.2,-21.7],"haL":[64.4,41],"hipR":[-27.9,35.4],"knR":[-12,178.6],"ftR":[9.1,321.5],"hipL":[18.9,41.8],"knL":[20.2,165.7],"ftL":[26.3,320.6]},{"rootY":-7.3,"hips":[0,0],"chest":[3.5,-82.5],"neck":[3.5,-82.5],"head":[18,-146.9],"shR":[-50.5,-116.4],"elR":[-58.7,-15.2],"haR":[-61.2,48.6],"shL":[58.8,-113.3],"elL":[51.6,-21.7],"haL":[63.8,41.8],"hipR":[-28.3,35.2],"knR":[-11.8,177.4],"ftR":[8.7,320.1],"hipL":[18.4,42.1],"knL":[18.3,165.8],"ftL":[23.3,320.2]},{"rootY":-5.4,"hips":[0,0],"chest":[3.4,-82.7],"neck":[3.4,-82.7],"head":[17.9,-147.1],"shR":[-50.6,-116.5],"elR":[-58.9,-15.1],"haR":[-61.4,48.2],"shL":[58.7,-114.1],"elL":[51.3,-23.1],"haL":[63.5,41.2],"hipR":[-28.2,35.3],"knR":[-12,176.9],"ftR":[8.7,318.5],"hipL":[18.4,42.2],"knL":[16.8,165.9],"ftL":[20.8,320.4]},{"rootY":-3.2,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18.1,-146.8],"shR":[-50.9,-116],"elR":[-59.3,-14.4],"haR":[-61.5,48.1],"shL":[58.6,-113.9],"elL":[51.1,-23.4],"haL":[63.2,41.6],"hipR":[-28.6,35.1],"knR":[-12.2,175.9],"ftR":[8.1,316.1],"hipL":[18,42.5],"knL":[15.5,166.2],"ftL":[18.9,321.4]},{"rootY":-3.1,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18,-146.9],"shR":[-50.9,-116.1],"elR":[-58.7,-14.2],"haR":[-61.5,47.8],"shL":[58.5,-114],"elL":[51,-23.2],"haL":[62.7,42.4],"hipR":[-28,35.5],"knR":[-11.8,174.6],"ftR":[7.5,314.3],"hipL":[18.7,42.4],"knL":[14.3,164.6],"ftL":[17.5,320]},{"rootY":-3,"hips":[0,0],"chest":[3.1,-82.1],"neck":[3.1,-82.1],"head":[17.9,-146.4],"shR":[-50.8,-115.9],"elR":[-58.1,-13.9],"haR":[-61.4,47.6],"shL":[58.6,-113.3],"elL":[51.1,-22],"haL":[62.7,44],"hipR":[-27.7,35.8],"knR":[-12.1,173.8],"ftR":[6,311.6],"hipL":[19.1,42.3],"knL":[13.2,164.4],"ftL":[16.2,319.8]},{"rootY":-3.9,"hips":[0,0],"chest":[2.7,-81.8],"neck":[2.7,-81.8],"head":[17.6,-146.1],"shR":[-51.2,-115.9],"elR":[-58.4,-13.9],"haR":[-61.9,47.4],"shL":[58.4,-113],"elL":[51,-21.2],"haL":[62.4,44.7],"hipR":[-27.8,35.8],"knR":[-13.7,174.1],"ftR":[3,307.5],"hipL":[19,42.4],"knL":[12.3,165.8],"ftL":[14.8,321]},{"rootY":-5.7,"hips":[0,0],"chest":[2.8,-82.2],"neck":[2.8,-82.2],"head":[17.3,-146.6],"shR":[-51.2,-116.2],"elR":[-58.8,-14.2],"haR":[-62.3,47.1],"shL":[58.6,-113.4],"elL":[51.7,-21.1],"haL":[62.5,44.6],"hipR":[-27.7,36],"knR":[-15.8,175.2],"ftR":[0.2,302.9],"hipL":[19.1,42.1],"knL":[11.9,168],"ftL":[13.3,322.8]},{"rootY":-7.3,"hips":[0,0],"chest":[2.9,-83.1],"neck":[2.9,-83.1],"head":[16.9,-147.6],"shR":[-51.3,-116.9],"elR":[-59.2,-15.1],"haR":[-63,46],"shL":[58.8,-114],"elL":[52.7,-21.3],"haL":[63.1,44.2],"hipR":[-27.2,36.3],"knR":[-18.5,177.6],"ftR":[-3,297.2],"hipL":[19.6,41.6],"knL":[12.1,170.1],"ftL":[11.7,324.2]},{"rootY":-8.6,"hips":[0,0],"chest":[2.7,-83.2],"neck":[2.7,-83.2],"head":[16.1,-147.9],"shR":[-51.3,-117.2],"elR":[-58.9,-15.2],"haR":[-63.3,45.7],"shL":[59,-114.1],"elL":[54.1,-21.2],"haL":[64.2,44.4],"hipR":[-26.5,36.6],"knR":[-22.1,180.4],"ftR":[-6.8,291.6],"hipL":[20.4,40.9],"knL":[12.8,171.8],"ftL":[10.2,324.7]},{"rootY":-7.6,"hips":[0,0],"chest":[3.1,-83.7],"neck":[3.1,-83.7],"head":[15.9,-148.5],"shR":[-51,-117.1],"elR":[-58.4,-15.2],"haR":[-63.4,45.5],"shL":[59.5,-114.5],"elL":[56,-21.4],"haL":[66.3,44.3],"hipR":[-25.7,36.8],"knR":[-25.5,182.5],"ftR":[-9.6,285.2],"hipL":[21.3,40.1],"knL":[13.4,172.5],"ftL":[8.7,323.9]},{"rootY":-7.1,"hips":[0,0],"chest":[3,-83.7],"neck":[3,-83.7],"head":[15.6,-148.6],"shR":[-51.1,-117.1],"elR":[-57.5,-14.8],"haR":[-63.4,45.6],"shL":[59.5,-115],"elL":[58.4,-20.9],"haL":[68.6,45],"hipR":[-24.6,37.2],"knR":[-29.2,183.4],"ftR":[-13.9,277.4],"hipL":[22.5,39],"knL":[13.4,173.5],"ftL":[7.7,323.3]},{"rootY":-5.2,"hips":[0,0],"chest":[3,-84],"neck":[3,-84],"head":[15.2,-148.9],"shR":[-51,-117.1],"elR":[-56.1,-14.6],"haR":[-63.4,45.8],"shL":[59.6,-115.4],"elL":[61.4,-20],"haL":[71.7,46.1],"hipR":[-23.7,37.4],"knR":[-32.7,182.7],"ftR":[-18,268],"hipL":[23.4,37.8],"knL":[13.1,173.9],"ftL":[6.3,321.6]},{"rootY":-4.2,"hips":[0,0],"chest":[3.2,-84.3],"neck":[3.2,-84.3],"head":[14.9,-149.4],"shR":[-50.8,-116.7],"elR":[-54.1,-14.1],"haR":[-62.9,46.3],"shL":[59.6,-116],"elL":[64.1,-19.1],"haL":[74.9,46.9],"hipR":[-22.5,37.7],"knR":[-35.6,180.2],"ftR":[-19.2,263.9],"hipL":[24.7,36.6],"knL":[13.4,174.4],"ftL":[5.5,320.4]},{"rootY":-3.4,"hips":[0,0],"chest":[2.4,-84.3],"neck":[2.4,-84.3],"head":[13.9,-149.4],"shR":[-51.4,-116.7],"elR":[-52.6,-13.9],"haR":[-62.5,47.1],"shL":[58.8,-116.2],"elL":[65.7,-17.8],"haL":[77,48],"hipR":[-21.7,38],"knR":[-38.9,176.3],"ftR":[-21.9,263.5],"hipL":[25.3,35.6],"knL":[13,175.1],"ftL":[4.2,319.5]},{"rootY":-3.2,"hips":[0,0],"chest":[2.4,-84.5],"neck":[2.4,-84.5],"head":[13.5,-149.7],"shR":[-51.3,-116.6],"elR":[-50.5,-14],"haR":[-61.1,47.7],"shL":[58.7,-116.7],"elL":[67.8,-17.3],"haL":[79.1,47.7],"hipR":[-20.7,38.1],"knR":[-38.5,172],"ftR":[-23,267.6],"hipL":[26.4,35.1],"knL":[14.2,175.8],"ftL":[4.4,319]},{"rootY":-3.1,"hips":[0,0],"chest":[1.9,-84.6],"neck":[1.9,-84.6],"head":[12.7,-149.9],"shR":[-51.8,-116.5],"elR":[-49.4,-13.9],"haR":[-60,48.9],"shL":[58.1,-117.1],"elL":[69.2,-16.9],"haL":[80.6,47.1],"hipR":[-20.2,38.2],"knR":[-37.9,167.8],"ftR":[-25.3,276.3],"hipL":[26.9,34.7],"knL":[14.4,176.9],"ftL":[3.9,318.8]},{"rootY":-3.3,"hips":[0,0],"chest":[1.8,-84.7],"neck":[1.8,-84.7],"head":[12.1,-150],"shR":[-51.8,-115.8],"elR":[-48.2,-13.5],"haR":[-58.6,50.3],"shL":[57.6,-117.8],"elL":[70.6,-17.3],"haL":[81.3,44.8],"hipR":[-20,38.4],"knR":[-36.7,163.2],"ftR":[-27.1,287.3],"hipL":[27,34.5],"knL":[13.5,177.6],"ftL":[3,318.4]},{"rootY":-4.2,"hips":[0,0],"chest":[1.6,-84.6],"neck":[1.6,-84.6],"head":[11.2,-150],"shR":[-52,-115.2],"elR":[-47.2,-13.4],"haR":[-57.2,51.1],"shL":[57.2,-118],"elL":[72.2,-17.5],"haL":[81.3,42],"hipR":[-20,38.7],"knR":[-34.8,160.1],"ftR":[-28.6,298.9],"hipL":[27,34.6],"knL":[13.2,178.5],"ftL":[2.5,318.9]}]},"run":{"name":"run","fps":30,"height":520,"groundY":345,"frameCount":38,"frames":[{"rootY":0,"hips":[0,0],"chest":[-0.1,-78.3],"neck":[-0.1,-78.3],"head":[0.8,-147.2],"shR":[-62.2,-107.2],"elR":[-178.8,-90.8],"haR":[-251.1,-80.6],"shL":[63.5,-104.3],"elL":[173.6,-88.9],"haL":[245.1,-78.8],"hipR":[-31.4,37.4],"knR":[-28.8,187],"ftR":[-26.1,343.4],"hipL":[31.7,37.4],"knL":[29,189.2],"ftL":[26.3,344.6]},{"rootY":4.5,"hips":[0,0],"chest":[4.7,-75.6],"neck":[4.7,-75.6],"head":[11.9,-144.3],"shR":[-55.1,-110.3],"elR":[-84.8,-7.9],"haR":[-79.1,42.7],"shL":[70.1,-99.4],"elL":[75.5,4.8],"haL":[60.3,6.5],"hipR":[-32.9,36.1],"knR":[-38.4,185.5],"ftR":[-30.1,178.3],"hipL":[30.1,39.3],"knL":[15.4,179.1],"ftL":[3.3,323.8]},{"rootY":8.2,"hips":[0,0],"chest":[5.5,-75],"neck":[5.5,-75],"head":[12.5,-143.5],"shR":[-54.1,-110.2],"elR":[-77.4,-10.3],"haR":[-81,45.7],"shL":[71.2,-98.8],"elL":[77.8,10.7],"haL":[57.2,-1],"hipR":[-31.1,37.9],"knR":[-45.3,180.7],"ftR":[-31.1,181.7],"hipL":[31.9,38],"knL":[15.3,183.5],"ftL":[2.9,319.7]},{"rootY":5.6,"hips":[0,0],"chest":[4.7,-75],"neck":[4.7,-75],"head":[10.8,-143.6],"shR":[-54.7,-110.1],"elR":[-72.4,-13.6],"haR":[-82,45.1],"shL":[70.5,-98.8],"elL":[78.7,11.9],"haL":[53.7,-8.5],"hipR":[-30.5,38.5],"knR":[-45,170],"ftR":[-32.4,200],"hipL":[32.6,37.7],"knL":[16,187.9],"ftL":[1.5,316]},{"rootY":-0.4,"hips":[0,0],"chest":[4.7,-74.9],"neck":[4.7,-74.9],"head":[9.5,-143.7],"shR":[-54.6,-109],"elR":[-67.8,-17],"haR":[-80.3,42.8],"shL":[70.2,-99.6],"elL":[81.9,11],"haL":[52.1,-14.9],"hipR":[-29,39.5],"knR":[-39.4,160.3],"ftR":[-31.8,228.3],"hipL":[33.8,36.9],"knL":[19.4,187.5],"ftL":[3.9,310]},{"rootY":-8,"hips":[0,0],"chest":[4,-75.3],"neck":[4,-75.3],"head":[7.2,-144.3],"shR":[-55.1,-108.4],"elR":[-63.1,-21],"haR":[-77.7,39.7],"shL":[69,-101],"elL":[85.9,8.9],"haL":[50.9,-20.4],"hipR":[-29.2,39.6],"knR":[-31.9,154.5],"ftR":[-30.4,260.8],"hipL":[33.7,37.2],"knL":[22.4,183.6],"ftL":[9.2,305.1]},{"rootY":-14.3,"hips":[0,0],"chest":[2.9,-75.7],"neck":[2.9,-75.7],"head":[4.8,-145.1],"shR":[-56.1,-107.2],"elR":[-58.7,-24.2],"haR":[-75.7,37.5],"shL":[67,-103],"elL":[89.9,5.8],"haL":[50.1,-23.5],"hipR":[-29.6,39.7],"knR":[-28,153.7],"ftR":[-29.4,290.2],"hipL":[33.4,37.3],"knL":[23.8,173.6],"ftL":[14.6,298.4]},{"rootY":-20.1,"hips":[0,0],"chest":[1.3,-76],"neck":[1.3,-76],"head":[1.5,-145.5],"shR":[-57.7,-106.8],"elR":[-55.5,-27.1],"haR":[-74.3,34.7],"shL":[65.2,-103.8],"elL":[93.4,3.7],"haL":[50.1,-23],"hipR":[-28.9,40.4],"knR":[-25.4,159.4],"ftR":[-28.5,312.6],"hipL":[34,36.7],"knL":[26.8,158.9],"ftL":[19.3,284]},{"rootY":-21.4,"hips":[0,0],"chest":[0.1,-76.1],"neck":[0.1,-76.1],"head":[-0.6,-145.6],"shR":[-59.2,-106.5],"elR":[-53.9,-26.8],"haR":[-73.7,34.1],"shL":[63.6,-104.4],"elL":[95.4,2],"haL":[50.7,-19.7],"hipR":[-27.2,41.6],"knR":[-21.1,167.2],"ftR":[-24.9,323.5],"hipL":[35.5,35.2],"knL":[24.7,163.6],"ftL":[20.8,261.4]},{"rootY":-18.9,"hips":[0,0],"chest":[-1,-76.2],"neck":[-1,-76.2],"head":[-2.1,-145.6],"shR":[-60.9,-105.5],"elR":[-55.8,-22.2],"haR":[-75.3,37.2],"shL":[61.8,-106],"elL":[94.5,-0.8],"haL":[50.4,-13.6],"hipR":[-27.5,41.5],"knR":[-19.1,172.8],"ftR":[-18.1,328.1],"hipL":[35.2,35.2],"knL":[22,171.8],"ftL":[24,235.3]},{"rootY":-13,"hips":[0,0],"chest":[-2.6,-76.2],"neck":[-2.6,-76.2],"head":[-3.8,-145.6],"shR":[-62.9,-104.3],"elR":[-61.3,-16.1],"haR":[-78.9,39.8],"shL":[59.6,-107.1],"elL":[92.2,-3.9],"haL":[51,-4.8],"hipR":[-29.4,40.1],"knR":[-19,176.7],"ftR":[-9.5,332.5],"hipL":[33.5,36.4],"knL":[21.9,180.5],"ftL":[24.9,205.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-3.1,-76.1],"neck":[-3.1,-76.1],"head":[-5.2,-145.3],"shR":[-64,-104.6],"elR":[-67.1,-8.8],"haR":[-81.5,38.6],"shL":[59.8,-106.4],"elL":[91.3,-6],"haL":[55.5,6.3],"hipR":[-31.8,38.2],"knR":[-16.4,175.9],"ftR":[-0.9,329.9],"hipL":[31.1,37.8],"knL":[32.3,188],"ftL":[25.7,178.4]},{"rootY":4.3,"hips":[0,0],"chest":[-3.7,-75.5],"neck":[-3.7,-75.5],"head":[-6.4,-144.6],"shR":[-65,-104.2],"elR":[-73.5,-0.1],"haR":[-82.5,35.3],"shL":[59.1,-106],"elL":[87.7,-10.1],"haL":[59.5,14.3],"hipR":[-34,36.3],"knR":[-13.5,174.6],"ftR":[2.2,320.5],"hipL":[28.7,39.2],"knL":[46.6,189.7],"ftL":[27.3,163.4]},{"rootY":7.7,"hips":[0,0],"chest":[-4.1,-75.2],"neck":[-4.1,-75.2],"head":[-6.9,-143.9],"shR":[-65.6,-104],"elR":[-79,6.9],"haR":[-81.6,29.5],"shL":[58.8,-105.7],"elL":[83.6,-15.6],"haL":[62.2,18.5],"hipR":[-34.9,35.5],"knR":[-13.7,179.3],"ftR":[2.2,316.2],"hipL":[27.8,40.3],"knL":[55.1,183.3],"ftL":[29.4,165.8]},{"rootY":6.4,"hips":[0,0],"chest":[-3.8,-75.2],"neck":[-3.8,-75.2],"head":[-6.5,-144.1],"shR":[-66.3,-103.5],"elR":[-83.1,10.2],"haR":[-78.6,20.5],"shL":[59,-106.1],"elL":[80.6,-20.2],"haL":[63.1,17.9],"hipR":[-34.9,35.3],"knR":[-13.4,183],"ftR":[2,311.1],"hipL":[27.9,40.5],"knL":[52.4,171.1],"ftL":[30.2,183.3]},{"rootY":0.7,"hips":[0,0],"chest":[-3.4,-75.6],"neck":[-3.4,-75.6],"head":[-4.9,-144.8],"shR":[-66.2,-104.3],"elR":[-85.6,10.2],"haR":[-73.8,10.4],"shL":[59.6,-105.7],"elL":[77.7,-23],"haL":[63.7,16],"hipR":[-36.1,34.7],"knR":[-16.6,182.2],"ftR":[-0.9,304.8],"hipL":[26.3,41.2],"knL":[44,162.3],"ftL":[29.8,211.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-4.1,-76.1],"neck":[-4.1,-76.1],"head":[-3.8,-145.7],"shR":[-66.8,-105.4],"elR":[-89.3,9.1],"haR":[-70.7,3.8],"shL":[58.9,-105.6],"elL":[71.6,-25.8],"haL":[62.6,13.6],"hipR":[-35.5,35.1],"knR":[-20.1,177.4],"ftR":[-7.9,297.6],"hipL":[27.2,41],"knL":[33.4,156.1],"ftL":[29.4,245.2]},{"rootY":-12.2,"hips":[0,0],"chest":[-3.7,-76.8],"neck":[-3.7,-76.8],"head":[-1.7,-146.5],"shR":[-66.1,-106.9],"elR":[-92.8,6.7],"haR":[-68.3,0.5],"shL":[59.3,-105.2],"elL":[65.9,-28],"haL":[61.7,11.5],"hipR":[-35,35.2],"knR":[-25.2,162.6],"ftR":[-16.5,289.6],"hipL":[27.8,40.7],"knL":[27.3,154.8],"ftL":[29.7,279.6]},{"rootY":-17.1,"hips":[0,0],"chest":[-3.1,-77.1],"neck":[-3.1,-77.1],"head":[-0.1,-146.9],"shR":[-64.9,-108.4],"elR":[-95.1,4.1],"haR":[-65.6,-0.8],"shL":[60,-104],"elL":[62.1,-27.8],"haL":[61,10.1],"hipR":[-34.9,35.3],"knR":[-28.6,154.4],"ftR":[-23.1,276],"hipL":[27.9,41],"knL":[23.9,158.9],"ftL":[29.9,306.7]},{"rootY":-17.4,"hips":[0,0],"chest":[-1.6,-76.9],"neck":[-1.6,-76.9],"head":[2.4,-146.8],"shR":[-63.1,-109],"elR":[-95.1,2.4],"haR":[-63.4,2.4],"shL":[61.7,-103.1],"elL":[60.8,-24.6],"haL":[60.9,9.9],"hipR":[-36.3,34.2],"knR":[-23.5,162.9],"ftR":[-27.5,254.8],"hipL":[26.3,41.8],"knL":[21.6,166.9],"ftL":[28.5,322]},{"rootY":-13.9,"hips":[0,0],"chest":[-0.5,-77.1],"neck":[-0.5,-77.1],"head":[4.3,-146.7],"shR":[-61.5,-109.8],"elR":[-94.3,0.1],"haR":[-63.8,8.7],"shL":[63.3,-102.8],"elL":[61.3,-19.1],"haL":[60.9,11.1],"hipR":[-35.2,34.5],"knR":[-19,168.4],"ftR":[-29.3,229.3],"hipL":[27.4,41.5],"knL":[24,172.5],"ftL":[25.5,327.3]},{"rootY":-7.6,"hips":[0,0],"chest":[1,-77],"neck":[1,-77],"head":[6.2,-146.6],"shR":[-59.5,-110.6],"elR":[-92.4,-2.2],"haR":[-66.7,17.4],"shL":[65.3,-101.6],"elL":[65.1,-11],"haL":[61.9,12],"hipR":[-34.1,35.4],"knR":[-19.4,177.4],"ftR":[-29.4,206.2],"hipL":[28.7,40.3],"knL":[24.2,176.4],"ftL":[18.9,331.5]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-77],"neck":[2.3,-77],"head":[7.9,-146.5],"shR":[-58,-111.1],"elR":[-89.1,-4],"haR":[-70.4,26.1],"shL":[67,-101.1],"elL":[70.1,-2.4],"haL":[61.5,8.9],"hipR":[-33,35.8],"knR":[-26,183.5],"ftR":[-27.5,186.2],"hipL":[29.9,39.5],"knL":[23.5,176.9],"ftL":[12.6,329.8]},{"rootY":4.6,"hips":[0,0],"chest":[4.5,-76.3],"neck":[4.5,-76.3],"head":[10.9,-145.6],"shR":[-55.5,-111],"elR":[-81.6,-6.6],"haR":[-72.3,32.6],"shL":[69.6,-100.2],"elL":[76.1,6.1],"haL":[61.6,3.1],"hipR":[-29.9,38.6],"knR":[-33.9,187.8],"ftR":[-26.9,180.9],"hipL":[33.2,36.5],"knL":[22,177.9],"ftL":[11.1,323.6]},{"rootY":5.1,"hips":[0,0],"chest":[3.6,-76.1],"neck":[3.6,-76.1],"head":[10.1,-145.2],"shR":[-56.2,-110.9],"elR":[-77.5,-10.7],"haR":[-75.6,35.1],"shL":[69,-99.9],"elL":[78,10.2],"haL":[57.6,-5.1],"hipR":[-30.8,38.2],"knR":[-37.5,181.4],"ftR":[-27,188.6],"hipL":[32.2,37.4],"knL":[19.5,184.5],"ftL":[10.7,322.1]},{"rootY":0.8,"hips":[0,0],"chest":[3.1,-76],"neck":[3.1,-76],"head":[9.3,-145.2],"shR":[-56.3,-111],"elR":[-74,-14.5],"haR":[-75.8,33.6],"shL":[68.9,-99.6],"elL":[77.8,11.3],"haL":[54.6,-14.4],"hipR":[-30,39.1],"knR":[-37,171.7],"ftR":[-27.2,209],"hipL":[33,36.8],"knL":[18.7,187.6],"ftL":[10.8,318.1]},{"rootY":-7.4,"hips":[0,0],"chest":[3.2,-76.1],"neck":[3.2,-76.1],"head":[8.2,-145.5],"shR":[-56,-110.1],"elR":[-70.6,-17.4],"haR":[-75.6,32.4],"shL":[68.8,-100.5],"elL":[77.5,10.2],"haL":[50.9,-23.4],"hipR":[-29.3,39.5],"knR":[-33.7,163.5],"ftR":[-26.8,238.3],"hipL":[33.7,36.6],"knL":[20.7,187],"ftL":[13,313.5]},{"rootY":-15.9,"hips":[0,0],"chest":[3.4,-76.3],"neck":[3.4,-76.3],"head":[7.5,-145.9],"shR":[-55.6,-109.3],"elR":[-66.5,-20.9],"haR":[-74.4,30.5],"shL":[68.6,-101.5],"elL":[78,8.7],"haL":[48.2,-30.3],"hipR":[-29.8,39.3],"knR":[-29.2,158.1],"ftR":[-25.2,269.7],"hipL":[33.3,37.1],"knL":[22.9,183.6],"ftL":[17.4,308.7]},{"rootY":-22.4,"hips":[0,0],"chest":[2.6,-76.6],"neck":[2.6,-76.6],"head":[5.8,-146.3],"shR":[-56.3,-108.5],"elR":[-62.3,-24.4],"haR":[-72.9,28.4],"shL":[67.5,-102.7],"elL":[78.8,7.1],"haL":[45,-35.3],"hipR":[-30.5,39.2],"knR":[-27.5,156.3],"ftR":[-25.6,296.6],"hipL":[32.5,37.6],"knL":[24.7,175.5],"ftL":[20.4,301.7]},{"rootY":-27.4,"hips":[0,0],"chest":[0.9,-76.7],"neck":[0.9,-76.7],"head":[3.8,-146.5],"shR":[-57.6,-108],"elR":[-58.9,-27.5],"haR":[-71.6,26.5],"shL":[65.8,-102.7],"elL":[80.1,6.8],"haL":[42.8,-36.2],"hipR":[-30.4,39.6],"knR":[-26.7,160.4],"ftR":[-27.6,314.9],"hipL":[32.6,37.3],"knL":[28,161.5],"ftL":[23.3,288.7]},{"rootY":-27.9,"hips":[0,0],"chest":[0,-76.9],"neck":[0,-76.9],"head":[3,-146.8],"shR":[-58.6,-108.2],"elR":[-57.2,-28.8],"haR":[-70.3,24.7],"shL":[64.7,-103.3],"elL":[81.6,6.2],"haL":[42,-33.7],"hipR":[-29,40.6],"knR":[-24.2,166.3],"ftR":[-28,322.2],"hipL":[33.8,36],"knL":[24.8,162.1],"ftL":[23.1,267.9]},{"rootY":-25.2,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[1.7,-147.1],"shR":[-60.5,-108.1],"elR":[-59,-26.7],"haR":[-71.3,24.6],"shL":[62.9,-104.4],"elL":[82.3,5.1],"haL":[41.7,-27.9],"hipR":[-29.2,40.5],"knR":[-25.7,170.6],"ftR":[-24.4,324.8],"hipL":[33.5,35.8],"knL":[18.6,169.8],"ftL":[23.5,242.7]},{"rootY":-18.4,"hips":[0,0],"chest":[-2.4,-77.5],"neck":[-2.4,-77.5],"head":[0.5,-147.2],"shR":[-61.6,-108],"elR":[-63.9,-21.6],"haR":[-74,25.4],"shL":[61.9,-105.1],"elL":[83.1,3.4],"haL":[44,-19.2],"hipR":[-30.9,39.2],"knR":[-25.1,175.3],"ftR":[-17.3,329.8],"hipL":[31.6,36.7],"knL":[15.1,178.7],"ftL":[22.4,212.9]},{"rootY":-8.2,"hips":[0,0],"chest":[-2.6,-77.6],"neck":[-2.6,-77.6],"head":[-0.1,-147.4],"shR":[-62.1,-107.9],"elR":[-69.8,-14.5],"haR":[-76.8,24.8],"shL":[61.7,-105.1],"elL":[83.6,1.4],"haL":[48.4,-8.7],"hipR":[-31.8,38.2],"knR":[-24.5,177],"ftR":[-10.6,332.8],"hipL":[30.8,36.8],"knL":[20.7,185.6],"ftL":[21,183.2]},{"rootY":1.3,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[-0.5,-147.3],"shR":[-62.2,-107.6],"elR":[-74.8,-6.2],"haR":[-77.9,22],"shL":[62,-105.1],"elL":[83.3,-1.3],"haL":[54.3,2.3],"hipR":[-33.1,36.7],"knR":[-20.6,177.1],"ftR":[-3.4,328.1],"hipL":[29.6,37.3],"knL":[33.3,189.1],"ftL":[21.2,163.9]},{"rootY":7.2,"hips":[0,0],"chest":[-3.2,-77.1],"neck":[-3.2,-77.1],"head":[-1.9,-146.8],"shR":[-63.8,-106.7],"elR":[-80.7,2],"haR":[-79.1,16.9],"shL":[60.8,-105.5],"elL":[79.7,-5.1],"haL":[58.5,12],"hipR":[-36.7,33.3],"knR":[-21.7,176.9],"ftR":[-3.3,320.3],"hipL":[25.5,40.7],"knL":[45.1,187.5],"ftL":[22.3,162.5]},{"rootY":8.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-0.7,-146.6],"shR":[-63.7,-106.1],"elR":[-82.9,6.8],"haR":[-76.6,7.9],"shL":[61.7,-106.3],"elL":[76.8,-9.8],"haL":[62.2,16.1],"hipR":[-36,34],"knR":[-20.2,180.9],"ftR":[-5,315.3],"hipL":[26.5,40.4],"knL":[43.6,176.2],"ftL":[23.3,175.7]},{"rootY":3.6,"hips":[0,0],"chest":[-1.9,-77],"neck":[-1.9,-77],"head":[-0.8,-146.7],"shR":[-64.1,-106.4],"elR":[-83.7,8.6],"haR":[-73.1,-3.4],"shL":[61.7,-105.8],"elL":[73.9,-12.2],"haL":[63.1,17.1],"hipR":[-37.2,32.9],"knR":[-20.9,181.7],"ftR":[-7.5,309.1],"hipL":[25.1,41.2],"knL":[36.2,164.2],"ftL":[23.4,201.2]}]},"shuffle":{"name":"shuffle","fps":30,"height":520,"groundY":256,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.2],"neck":[-3.8,-168.3],"head":[-1.6,-203.7],"shR":[50.1,-147],"elR":[128.4,-146.4],"haR":[193.7,-148.9],"shL":[-57.7,-145.7],"elL":[-134.6,-146.3],"haL":[-203,-146.3],"hipR":[26.6,7.9],"knR":[30.4,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.2],"neck":[-3.8,-168.3],"head":[-1.7,-203.6],"shR":[50.1,-147],"elR":[128.4,-146.4],"haR":[193.6,-148.7],"shL":[-57.7,-145.5],"elL":[-134.6,-145.9],"haL":[-203.1,-145.7],"hipR":[26.6,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-3.9,-168.3],"head":[-1.8,-203.6],"shR":[50.1,-146.9],"elR":[128.3,-146.4],"haR":[193.6,-148.6],"shL":[-57.7,-145.3],"elL":[-134.7,-145.3],"haL":[-203.2,-144.8],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.8],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-3.9,-168.3],"head":[-1.9,-203.6],"shR":[50,-146.9],"elR":[128.3,-146.4],"haR":[193.5,-148.6],"shL":[-57.7,-145],"elL":[-134.8,-144.6],"haL":[-203.3,-143.7],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.8],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-4.1,-168.2],"head":[-2,-203.6],"shR":[49.9,-146.9],"elR":[128.2,-146.4],"haR":[193.4,-148.6],"shL":[-57.8,-144.8],"elL":[-134.9,-143.9],"haL":[-203.5,-142.6],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.2,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-4.3,-168.2],"head":[-2.2,-203.6],"shR":[49.8,-147.1],"elR":[128.1,-146.4],"haR":[193.4,-148.6],"shL":[-58,-144.7],"elL":[-135.1,-143.3],"haL":[-203.7,-141.5],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.2,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.1],"neck":[-4.5,-168.2],"head":[-2.5,-203.5],"shR":[49.6,-147.2],"elR":[127.9,-146.5],"haR":[193.3,-148.5],"shL":[-58.1,-144.5],"elL":[-135.3,-142.6],"haL":[-203.9,-140.5],"hipR":[26.5,7.9],"knR":[30.4,129.6],"ftR":[30.1,254.7],"hipL":[-26.8,7.7],"knL":[-23.6,130.8],"ftL":[-20.5,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-100.1],"neck":[-4.7,-168.1],"head":[-2.8,-203.5],"shR":[49.4,-147.2],"elR":[127.8,-146.6],"haR":[193.3,-148.5],"shL":[-58.3,-144.3],"elL":[-135.4,-142],"haL":[-204.1,-139.5],"hipR":[26.5,7.9],"knR":[30.4,129.6],"ftR":[30,254.7],"hipL":[-26.8,7.7],"knL":[-23.6,130.8],"ftL":[-20.6,256]},{"rootY":0,"hips":[0,0],"chest":[-3.5,-100.1],"neck":[-4.9,-168.1],"head":[-3.1,-203.5],"shR":[49.3,-147.3],"elR":[127.6,-146.7],"haR":[193.2,-148.5],"shL":[-58.5,-144.1],"elL":[-135.6,-141.5],"haL":[-204.3,-138.7],"hipR":[26.5,7.9],"knR":[30.3,129.6],"ftR":[29.9,254.7],"hipL":[-26.8,7.7],"knL":[-23.7,130.8],"ftL":[-20.7,256]},{"rootY":0,"hips":[0,0],"chest":[-3.7,-100.1],"neck":[-5.2,-168.1],"head":[-3.4,-203.5],"shR":[49,-147.3],"elR":[127.4,-146.8],"haR":[193.1,-148.7],"shL":[-58.7,-143.8],"elL":[-135.8,-141],"haL":[-204.5,-138],"hipR":[26.5,7.9],"knR":[30.3,129.6],"ftR":[29.7,254.7],"hipL":[-26.8,7.7],"knL":[-23.7,130.8],"ftL":[-20.8,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.8,-100.1],"neck":[-5.4,-168.1],"head":[-3.7,-203.5],"shR":[48.8,-147.3],"elR":[127.2,-146.9],"haR":[193,-149],"shL":[-58.9,-143.6],"elL":[-136,-140.6],"haL":[-204.7,-137.4],"hipR":[26.5,7.9],"knR":[30.2,129.6],"ftR":[29.6,254.7],"hipL":[-26.8,7.7],"knL":[-23.8,130.9],"ftL":[-21,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4,-100.1],"neck":[-5.7,-168.1],"head":[-4,-203.5],"shR":[48.6,-147.3],"elR":[127,-147.1],"haR":[192.9,-149.3],"shL":[-59.1,-143.3],"elL":[-136.3,-140.2],"haL":[-205,-137],"hipR":[26.5,7.9],"knR":[30.1,129.6],"ftR":[29.4,254.7],"hipL":[-26.8,7.7],"knL":[-23.9,130.9],"ftL":[-21.1,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4.1,-100.1],"neck":[-6,-168.1],"head":[-4.4,-203.5],"shR":[48.4,-147.3],"elR":[126.8,-147.3],"haR":[192.8,-149.7],"shL":[-59.3,-143.1],"elL":[-136.5,-139.9],"haL":[-205.2,-136.6],"hipR":[26.5,7.8],"knR":[30,129.6],"ftR":[29.3,254.7],"hipL":[-26.7,7.7],"knL":[-23.9,130.9],"ftL":[-21.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4.2,-100.1],"neck":[-6.3,-168],"head":[-4.8,-203.5],"shR":[48.1,-147.3],"elR":[126.6,-147.5],"haR":[192.6,-150],"shL":[-59.5,-142.8],"elL":[-136.8,-139.7],"haL":[-205.5,-136.3],"hipR":[26.5,7.8],"knR":[29.9,129.6],"ftR":[29,254.8],"hipL":[-26.7,7.7],"knL":[-24,130.9],"ftL":[-21.5,256.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.2,-100.1],"neck":[-6.7,-168],"head":[-5.2,-203.5],"shR":[47.8,-147.4],"elR":[126.3,-147.7],"haR":[192.4,-150.3],"shL":[-59.8,-142.6],"elL":[-137.1,-139.4],"haL":[-205.9,-136.1],"hipR":[26.5,7.8],"knR":[29.8,129.6],"ftR":[28.8,254.8],"hipL":[-26.7,7.8],"knL":[-24.2,130.9],"ftL":[-21.8,256.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.4,-100.1],"neck":[-7.1,-168],"head":[-5.7,-203.5],"shR":[47.5,-147.4],"elR":[126.1,-147.9],"haR":[192.1,-150.6],"shL":[-60.1,-142.2],"elL":[-137.4,-139.2],"haL":[-206.2,-135.8],"hipR":[26.5,7.8],"knR":[29.6,129.6],"ftR":[28.4,254.8],"hipL":[-26.7,7.8],"knL":[-24.3,131],"ftL":[-22.1,256.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.5,-100.1],"neck":[-7.5,-167.9],"head":[-6.1,-203.4],"shR":[47.2,-147.3],"elR":[125.8,-148],"haR":[191.8,-150.9],"shL":[-60.4,-141.9],"elL":[-137.7,-138.9],"haL":[-206.5,-135.5],"hipR":[26.6,7.7],"knR":[29.4,129.7],"ftR":[28.1,254.9],"hipL":[-26.7,7.8],"knL":[-24.5,131],"ftL":[-22.5,256.3]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.6,-100.1],"neck":[-7.8,-167.9],"head":[-6.5,-203.4],"shR":[47,-147.2],"elR":[125.5,-148.1],"haR":[191.6,-151.1],"shL":[-60.6,-141.7],"elL":[-137.9,-138.6],"haL":[-206.7,-135.2],"hipR":[26.6,7.7],"knR":[29.2,129.7],"ftR":[27.7,254.9],"hipL":[-26.7,7.9],"knL":[-24.7,131.1],"ftL":[-22.9,256.3]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.7,-100.1],"neck":[-7.9,-167.9],"head":[-6.9,-203.4],"shR":[46.8,-147.1],"elR":[125.4,-148.2],"haR":[191.4,-151.3],"shL":[-60.7,-141.5],"elL":[-138,-138.4],"haL":[-206.8,-134.9],"hipR":[26.6,7.6],"knR":[29,129.8],"ftR":[27.4,255],"hipL":[-26.7,7.9],"knL":[-24.9,131.1],"ftL":[-23.2,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.7,-100.1],"neck":[-8.1,-167.9],"head":[-7.2,-203.4],"shR":[46.7,-147.1],"elR":[125.2,-148.2],"haR":[191.2,-151.5],"shL":[-60.8,-141.4],"elL":[-138.1,-138.1],"haL":[-207,-134.6],"hipR":[26.6,7.6],"knR":[28.8,129.8],"ftR":[27.1,255.1],"hipL":[-26.7,8],"knL":[-25,131.1],"ftL":[-23.6,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.9,-100.1],"neck":[-8.2,-167.9],"head":[-7.4,-203.5],"shR":[46.5,-147],"elR":[125.1,-148.3],"haR":[191,-151.7],"shL":[-60.9,-141.3],"elL":[-138.3,-138],"haL":[-207.1,-134.3],"hipR":[26.6,7.6],"knR":[28.5,129.9],"ftR":[26.7,255.1],"hipL":[-26.7,8],"knL":[-25.2,131.2],"ftL":[-23.9,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.3,-167.9],"head":[-7.7,-203.5],"shR":[46.4,-147],"elR":[125,-148.4],"haR":[190.9,-151.9],"shL":[-61,-141.2],"elL":[-138.4,-137.9],"haL":[-207.3,-134.2],"hipR":[26.6,7.6],"knR":[28.3,129.9],"ftR":[26.4,255.2],"hipL":[-26.7,8],"knL":[-25.3,131.2],"ftL":[-24.2,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.4,-167.9],"head":[-7.9,-203.5],"shR":[46.4,-147],"elR":[124.9,-148.6],"haR":[190.8,-152.1],"shL":[-61.1,-141.2],"elL":[-138.6,-137.8],"haL":[-207.5,-134.2],"hipR":[26.6,7.5],"knR":[28.1,129.9],"ftR":[26.1,255.2],"hipL":[-26.7,8],"knL":[-25.5,131.2],"ftL":[-24.5,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.5,-167.8],"head":[-8.2,-203.4],"shR":[46.3,-147],"elR":[124.8,-148.7],"haR":[190.7,-152.3],"shL":[-61.1,-141.2],"elL":[-138.8,-137.8],"haL":[-207.8,-134.1],"hipR":[26.6,7.5],"knR":[27.9,130],"ftR":[25.8,255.3],"hipL":[-26.7,8.1],"knL":[-25.7,131.2],"ftL":[-24.9,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.6,-167.8],"head":[-8.4,-203.4],"shR":[46.2,-147],"elR":[124.7,-148.8],"haR":[190.6,-152.5],"shL":[-61.2,-141.2],"elL":[-139,-137.7],"haL":[-208.1,-134],"hipR":[26.6,7.5],"knR":[27.7,130],"ftR":[25.5,255.3],"hipL":[-26.7,8.1],"knL":[-25.9,131.3],"ftL":[-25.3,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.7,-167.7],"head":[-8.5,-203.3],"shR":[46.2,-147],"elR":[124.7,-148.9],"haR":[190.7,-152.7],"shL":[-61.2,-141.1],"elL":[-139.1,-137.6],"haL":[-208.3,-133.8],"hipR":[26.6,7.4],"knR":[27.5,130],"ftR":[25.3,255.3],"hipL":[-26.7,8.1],"knL":[-26,131.3],"ftL":[-25.5,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.8,-100.1],"neck":[-8.6,-167.7],"head":[-8.5,-203.3],"shR":[46.2,-146.9],"elR":[124.8,-149],"haR":[190.8,-152.9],"shL":[-61.1,-141],"elL":[-139.1,-137.4],"haL":[-208.3,-133.5],"hipR":[26.7,7.4],"knR":[27.4,130.1],"ftR":[25.2,255.4],"hipL":[-26.7,8.1],"knL":[-26.1,131.3],"ftL":[-25.7,256.5]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.6,-100.1],"neck":[-8.5,-167.7],"head":[-8.4,-203.3],"shR":[46.3,-146.8],"elR":[124.9,-149],"haR":[190.9,-152.9],"shL":[-61,-140.9],"elL":[-139,-137.1],"haL":[-208.3,-133.1],"hipR":[26.7,7.4],"knR":[27.3,130.1],"ftR":[25.2,255.4],"hipL":[-26.7,8.1],"knL":[-26.1,131.3],"ftL":[-25.7,256.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.4,-100.2],"neck":[-8.3,-167.7],"head":[-8.3,-203.2],"shR":[46.5,-146.7],"elR":[125,-148.8],"haR":[191,-152.7],"shL":[-60.8,-140.8],"elL":[-138.8,-136.7],"haL":[-208.1,-132.5],"hipR":[26.7,7.4],"knR":[27.3,130.1],"ftR":[25.3,255.4],"hipL":[-26.7,8.1],"knL":[-26,131.3],"ftL":[-25.6,256.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.2,-100.2],"neck":[-8,-167.7],"head":[-8.1,-203.2],"shR":[46.8,-146.6],"elR":[125.2,-148.6],"haR":[191,-152.2],"shL":[-60.5,-140.8],"elL":[-138.5,-136.3],"haL":[-207.8,-131.8],"hipR":[26.7,7.4],"knR":[27.4,130.1],"ftR":[25.5,255.4],"hipL":[-26.7,8.1],"knL":[-25.9,131.3],"ftL":[-25.3,256.5]},{"rootY":-0.5,"hips":[0,0],"chest":[-4,-100.2],"neck":[-7.9,-167.6],"head":[-8,-203.1],"shR":[46.9,-146.4],"elR":[125.1,-148.1],"haR":[190.6,-151.5],"shL":[-60.4,-140.6],"elL":[-138.2,-136],"haL":[-207.4,-131.3],"hipR":[26.7,7.4],"knR":[27.6,130.1],"ftR":[25.8,255.4],"hipL":[-26.7,8.1],"knL":[-25.8,131.3],"ftL":[-25,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4,-100.1],"neck":[-7.9,-167.3],"head":[-8.1,-202.9],"shR":[46.9,-146.3],"elR":[124.8,-147.6],"haR":[189.8,-150.4],"shL":[-60.5,-140.5],"elL":[-138,-135.6],"haL":[-207,-130.7],"hipR":[26.7,7.4],"knR":[27.7,130.1],"ftR":[26.1,255.4],"hipL":[-26.7,8.2],"knL":[-25.6,131.3],"ftL":[-24.7,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.2,-100],"neck":[-8,-167.1],"head":[-8.2,-202.7],"shR":[46.7,-146.3],"elR":[124.1,-147],"haR":[188.4,-149.2],"shL":[-60.7,-140.5],"elL":[-137.7,-135.5],"haL":[-206.5,-130.4],"hipR":[26.8,7.3],"knR":[27.9,130.1],"ftR":[26.4,255.4],"hipL":[-26.7,8.2],"knL":[-25.5,131.4],"ftL":[-24.4,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.3,-100],"neck":[-8,-166.9],"head":[-8.3,-202.5],"shR":[46.6,-146.3],"elR":[123.3,-146.5],"haR":[186.5,-148.1],"shL":[-60.8,-140.5],"elL":[-137.1,-135.6],"haL":[-205.5,-130.5],"hipR":[26.8,7.3],"knR":[28.2,130],"ftR":[26.9,255.3],"hipL":[-26.6,8.3],"knL":[-25.2,131.4],"ftL":[-23.8,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.3,-99.9],"neck":[-8,-166.8],"head":[-8.4,-202.4],"shR":[46.5,-146.3],"elR":[122.1,-146.1],"haR":[183.9,-147.3],"shL":[-60.9,-140.6],"elL":[-136.2,-135.9],"haL":[-204,-131.2],"hipR":[26.7,7.2],"knR":[28.6,130],"ftR":[27.5,255.3],"hipL":[-26.6,8.3],"knL":[-24.8,131.4],"ftL":[-23.1,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.3,-99.9],"neck":[-8,-166.6],"head":[-8.4,-202.3],"shR":[46.5,-146.1],"elR":[120.5,-145.8],"haR":[180.3,-146.9],"shL":[-60.9,-140.6],"elL":[-134.9,-136.5],"haL":[-201.6,-132.2],"hipR":[26.7,7.2],"knR":[29,129.9],"ftR":[28.4,255.2],"hipL":[-26.6,8.4],"knL":[-24.3,131.5],"ftL":[-22.3,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.4,-99.8],"neck":[-7.8,-166.6],"head":[-8.2,-202.3],"shR":[46.5,-146.1],"elR":[118.4,-145.6],"haR":[175.5,-146.5],"shL":[-60.9,-141.1],"elL":[-132.9,-137.3],"haL":[-198.3,-133.3],"hipR":[26.7,7.1],"knR":[29.5,129.9],"ftR":[29.4,255.2],"hipL":[-26.5,8.5],"knL":[-23.7,131.5],"ftL":[-21.2,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.4,-99.8],"neck":[-7.5,-166.5],"head":[-7.9,-202.3],"shR":[46.6,-146.1],"elR":[115.9,-145.6],"haR":[169.7,-146.5],"shL":[-60.8,-141.8],"elL":[-129.8,-138.3],"haL":[-193.5,-134.5],"hipR":[26.7,7.1],"knR":[30.2,129.8],"ftR":[30.8,255.2],"hipL":[-26.5,8.5],"knL":[-22.9,131.6],"ftL":[-19.8,256.3]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.3,-99.7],"neck":[-7.2,-166.5],"head":[-7.6,-202.4],"shR":[46.8,-146.1],"elR":[112.7,-145.7],"haR":[162.6,-146.9],"shL":[-60.6,-142.5],"elL":[-125.7,-139.5],"haL":[-186.9,-135.8],"hipR":[26.6,7.1],"knR":[31.1,129.8],"ftR":[32.4,255.1],"hipL":[-26.5,8.5],"knL":[-22,131.6],"ftL":[-18.2,256.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.2,-99.6],"neck":[-6.9,-166.4],"head":[-7.2,-202.4],"shR":[46.9,-145.9],"elR":[108.7,-146],"haR":[154,-147.7],"shL":[-60.4,-143.3],"elL":[-121,-140.7],"haL":[-178.7,-137.5],"hipR":[26.6,7.1],"knR":[32.4,129.6],"ftR":[34.1,254.9],"hipL":[-26.4,8.5],"knL":[-21.1,131.5],"ftL":[-16.4,256.1]},{"rootY":0.1,"hips":[0,0],"chest":[-4.1,-99.6],"neck":[-6.7,-166.5],"head":[-6.7,-202.5],"shR":[47,-146],"elR":[104.1,-146.5],"haR":[144.2,-148.6],"shL":[-60.4,-144.2],"elL":[-115.7,-142.3],"haL":[-169,-139.7],"hipR":[26.6,7.3],"knR":[34,129.4],"ftR":[36,254.5],"hipL":[-26.5,8.3],"knL":[-20.4,131.3],"ftL":[-14.5,255.7]},{"rootY":0.8,"hips":[0,0],"chest":[-4.1,-99.7],"neck":[-6.7,-166.7],"head":[-6.4,-202.7],"shR":[47,-146.5],"elR":[99.2,-147.2],"haR":[133.5,-149.7],"shL":[-60.4,-145.4],"elL":[-110,-144.4],"haL":[-158.1,-142.5],"hipR":[26.4,7.8],"knR":[35.8,129],"ftR":[38,253.6],"hipL":[-26.7,7.8],"knL":[-19.7,130.7],"ftL":[-12.5,255]},{"rootY":1.8,"hips":[0,0],"chest":[-4.1,-99.6],"neck":[-7,-166.7],"head":[-6.3,-202.8],"shR":[46.8,-147],"elR":[93.9,-148],"haR":[122.2,-150.9],"shL":[-60.5,-146.3],"elL":[-104,-146.4],"haL":[-146.5,-145.6],"hipR":[26.3,8.5],"knR":[36.9,128.3],"ftR":[39.7,252],"hipL":[-26.9,7.1],"knL":[-19.1,129.9],"ftL":[-10.6,254]},{"rootY":2.5,"hips":[0,0],"chest":[-4.1,-99.3],"neck":[-7.5,-166.5],"head":[-6.7,-202.7],"shR":[46.4,-147.3],"elR":[88.3,-148.4],"haR":[110.5,-151.7],"shL":[-60.9,-146.7],"elL":[-98.1,-147.9],"haL":[-134.6,-148.3],"hipR":[26.1,9.1],"knR":[37.5,127.3],"ftR":[40.5,249.7],"hipL":[-27,6.5],"knL":[-18.6,129.4],"ftL":[-9.2,253.2]},{"rootY":2.8,"hips":[0,0],"chest":[-4.4,-99.1],"neck":[-8.1,-166.3],"head":[-7.3,-202.5],"shR":[45.9,-147.2],"elR":[82.6,-148.4],"haR":[98.9,-152.1],"shL":[-61.3,-146.7],"elL":[-92.4,-149.1],"haL":[-122.7,-150.5],"hipR":[26.1,9.3],"knR":[37.6,125.9],"ftR":[40.2,247],"hipL":[-27,6.3],"knL":[-18.1,129.1],"ftL":[-8.1,252.9]},{"rootY":3,"hips":[0,0],"chest":[-4.7,-98.9],"neck":[-8.5,-166.3],"head":[-7.9,-202.5],"shR":[45.4,-147.1],"elR":[77,-148.2],"haR":[88.1,-152.1],"shL":[-61.6,-146.8],"elL":[-86.9,-150.1],"haL":[-111.4,-152.5],"hipR":[26.1,9.3],"knR":[37.2,124.3],"ftR":[39,244.4],"hipL":[-27,6.3],"knL":[-17.7,129.1],"ftL":[-7.2,252.7]},{"rootY":3,"hips":[0,0],"chest":[-5.2,-98.7],"neck":[-9,-166.3],"head":[-8.7,-202.5],"shR":[44.9,-146.8],"elR":[71.5,-147.7],"haR":[78.4,-151.7],"shL":[-62,-146.8],"elL":[-81.7,-151],"haL":[-101.1,-154.4],"hipR":[26.1,9.2],"knR":[36.4,122.8],"ftR":[37.5,242.5],"hipL":[-27,6.4],"knL":[-17.5,129.2],"ftL":[-6.6,252.6]},{"rootY":3,"hips":[0,0],"chest":[-5.7,-98.6],"neck":[-9.7,-166.2],"head":[-9.6,-202.4],"shR":[44.2,-146.7],"elR":[66.3,-147],"haR":[69.8,-150.8],"shL":[-62.5,-146.7],"elL":[-77,-152],"haL":[-92.1,-156.1],"hipR":[26.2,9.1],"knR":[35.5,121.5],"ftR":[36.1,241.4],"hipL":[-27,6.5],"knL":[-17.5,129.4],"ftL":[-6.4,252.5]},{"rootY":3,"hips":[0,0],"chest":[-6.2,-98.5],"neck":[-10.3,-166.1],"head":[-10.4,-202.3],"shR":[43.5,-146.8],"elR":[61.5,-146.1],"haR":[62.5,-149.2],"shL":[-62.9,-147],"elL":[-72.7,-152.8],"haL":[-84.3,-157.4],"hipR":[26.2,9],"knR":[34.8,120.2],"ftR":[35.4,240.9],"hipL":[-27,6.6],"knL":[-17.5,129.4],"ftL":[-6.2,252.5]},{"rootY":3,"hips":[0,0],"chest":[-6.5,-98.5],"neck":[-10.9,-166.1],"head":[-11.2,-202.4],"shR":[42.9,-147.1],"elR":[57.5,-145.1],"haR":[56.3,-147.2],"shL":[-63.2,-147.6],"elL":[-68.8,-153.6],"haL":[-77.4,-158.1],"hipR":[26.2,9],"knR":[34.5,118.9],"ftR":[35.3,240.8],"hipL":[-27,6.6],"knL":[-17.5,129.4],"ftL":[-5.9,252.4]},{"rootY":2.9,"hips":[0,0],"chest":[-6.7,-98.5],"neck":[-11.4,-166.2],"head":[-12.2,-202.4],"shR":[42.5,-147.2],"elR":[54.2,-144.2],"haR":[51.1,-145.1],"shL":[-63.4,-148.1],"elL":[-65.4,-154],"haL":[-71.5,-158.4],"hipR":[26.2,9],"knR":[34.4,117.8],"ftR":[35.3,241.1],"hipL":[-27,6.6],"knL":[-17.5,129.5],"ftL":[-5.8,252.3]},{"rootY":2.9,"hips":[0,0],"chest":[-7.1,-98.4],"neck":[-12,-166.1],"head":[-13.3,-202.4],"shR":[41.9,-147],"elR":[51.4,-143.3],"haR":[46.6,-143.3],"shL":[-63.8,-148.2],"elL":[-62.9,-154.1],"haL":[-66.7,-158.4],"hipR":[26.3,8.8],"knR":[34.2,117.2],"ftR":[35.1,241.6],"hipL":[-26.9,6.8],"knL":[-17.6,129.7],"ftL":[-6.1,252.3]},{"rootY":2.8,"hips":[0,0],"chest":[-7.3,-98.3],"neck":[-12.5,-166],"head":[-14.5,-202.2],"shR":[41.3,-146.8],"elR":[49.1,-142.6],"haR":[42.9,-142.2],"shL":[-64.1,-148.1],"elL":[-61,-153.8],"haL":[-62.8,-158],"hipR":[26.4,8.7],"knR":[33.8,116.9],"ftR":[34.8,242],"hipL":[-26.9,7],"knL":[-17.9,129.9],"ftL":[-6.6,252.4]},{"rootY":2.9,"hips":[0,0],"chest":[-7.2,-98.2],"neck":[-12.7,-165.9],"head":[-15.5,-202.2],"shR":[41.1,-146.7],"elR":[47.5,-142.4],"haR":[40,-142.1],"shL":[-64.2,-148.2],"elL":[-59.3,-153.5],"haL":[-59.5,-157.2],"hipR":[26.5,8.6],"knR":[33.5,116.8],"ftR":[34.4,242.2],"hipL":[-26.9,7.1],"knL":[-18.3,129.9],"ftL":[-7,252.2]},{"rootY":3.1,"hips":[0,0],"chest":[-6.7,-98.3],"neck":[-12.6,-166],"head":[-16.3,-202.2],"shR":[41.2,-146.6],"elR":[46.4,-142.8],"haR":[37.6,-143],"shL":[-63.9,-148.5],"elL":[-57.6,-153],"haL":[-56.7,-155.8],"hipR":[26.5,8.6],"knR":[33.2,117],"ftR":[34,242],"hipL":[-27,7],"knL":[-18.6,129.9],"ftL":[-7.4,252]},{"rootY":3.3,"hips":[0,0],"chest":[-6.2,-98.3],"neck":[-12.4,-166.1],"head":[-17.3,-202.1],"shR":[41.4,-146.7],"elR":[45.7,-143.6],"haR":[35.5,-144.6],"shL":[-63.6,-148.7],"elL":[-56.1,-151.9],"haL":[-54.7,-153.6],"hipR":[26.5,8.6],"knR":[32.7,117.2],"ftR":[33.6,241.7],"hipL":[-27,7],"knL":[-19.2,130],"ftL":[-8.1,251.7]},{"rootY":3.5,"hips":[0,0],"chest":[-5.6,-98.3],"neck":[-12.3,-166.1],"head":[-18.5,-201.9],"shR":[41.5,-146.9],"elR":[45.1,-144.7],"haR":[33.5,-146.7],"shL":[-63.4,-148.6],"elL":[-54.8,-150.4],"haL":[-53.4,-150.4],"hipR":[26.6,8.6],"knR":[32,117.6],"ftR":[32.9,241.5],"hipL":[-27,7.1],"knL":[-19.9,130],"ftL":[-9,251.5]},{"rootY":3.8,"hips":[0,0],"chest":[-4.8,-98.4],"neck":[-12,-166.1],"head":[-19.7,-201.6],"shR":[41.8,-147.3],"elR":[44.8,-146.3],"haR":[31.9,-149.4],"shL":[-63.1,-148.3],"elL":[-53.7,-148.4],"haL":[-52.5,-146.8],"hipR":[26.6,8.6],"knR":[31.3,118.1],"ftR":[32.4,241.6],"hipL":[-27,7],"knL":[-20.4,130],"ftL":[-10,251.3]},{"rootY":4.1,"hips":[0,0],"chest":[-3.8,-98.5],"neck":[-11.4,-166.3],"head":[-20.6,-201.4],"shR":[42.3,-147.7],"elR":[44.6,-148.2],"haR":[30.8,-152.6],"shL":[-62.5,-147.6],"elL":[-52.7,-146.2],"haL":[-51.9,-142.9],"hipR":[26.5,8.8],"knR":[30.7,118.7],"ftR":[31.9,242.1],"hipL":[-27.1,6.9],"knL":[-20.8,129.8],"ftL":[-10.9,251]},{"rootY":4.5,"hips":[0,0],"chest":[-2.7,-98.6],"neck":[-10.7,-166.4],"head":[-21.5,-201.1],"shR":[43.1,-147.8],"elR":[44.6,-150.2],"haR":[29.9,-155.9],"shL":[-61.8,-146.6],"elL":[-51.9,-143.9],"haL":[-51.6,-139.2],"hipR":[26.5,8.9],"knR":[30.2,119.3],"ftR":[31.5,242.8],"hipL":[-27.1,6.7],"knL":[-21.2,129.5],"ftL":[-12,250.7]},{"rootY":5,"hips":[0,0],"chest":[-1.5,-98.7],"neck":[-9.9,-166.5],"head":[-22.3,-200.6],"shR":[44,-147.9],"elR":[44.8,-151.9],"haR":[29.1,-159.2],"shL":[-61,-145.9],"elL":[-51.2,-141.9],"haL":[-51.6,-135.8],"hipR":[26.4,9.1],"knR":[29.4,119.9],"ftR":[30.7,243.9],"hipL":[-27.1,6.6],"knL":[-21.7,129.1],"ftL":[-13.3,250.2]},{"rootY":5.5,"hips":[0,0],"chest":[-0.3,-98.8],"neck":[-8.9,-166.6],"head":[-23,-200.1],"shR":[45,-147.9],"elR":[45.2,-153.5],"haR":[28.7,-162.2],"shL":[-60.1,-145.5],"elL":[-50.5,-140.2],"haL":[-51.7,-132.8],"hipR":[26.4,9.2],"knR":[28.5,120.9],"ftR":[29.2,245.5],"hipL":[-27.2,6.4],"knL":[-22.3,128.7],"ftL":[-14.8,249.5]},{"rootY":5.9,"hips":[0,0],"chest":[1,-99],"neck":[-7.8,-166.8],"head":[-23.6,-199.5],"shR":[46.1,-147.6],"elR":[45.7,-154.7],"haR":[28.4,-164.9],"shL":[-59,-144.9],"elL":[-49.9,-138.7],"haL":[-51.9,-130.4],"hipR":[26.4,9.2],"knR":[27.5,122.3],"ftR":[27,247.2],"hipL":[-27.1,6.5],"knL":[-23.2,128.5],"ftL":[-16.7,248.8]},{"rootY":6,"hips":[0,0],"chest":[2.2,-99],"neck":[-6.5,-166.9],"head":[-24.2,-198.6],"shR":[47.3,-146.6],"elR":[46.3,-155.4],"haR":[28.3,-167],"shL":[-57.9,-144],"elL":[-49.4,-137.1],"haL":[-52.2,-128.3],"hipR":[26.5,8.8],"knR":[26.3,123.6],"ftR":[24.6,248.6],"hipL":[-27.1,6.8],"knL":[-24.4,128.6],"ftL":[-18.9,248.2]},{"rootY":5.9,"hips":[0,0],"chest":[3.6,-99],"neck":[-4.9,-166.9],"head":[-24.4,-197.4],"shR":[48.8,-146.1],"elR":[47.3,-156],"haR":[28.7,-168.8],"shL":[-56.3,-143],"elL":[-48.7,-135.7],"haL":[-52.3,-126.6],"hipR":[26.6,8.6],"knR":[25.1,124.2],"ftR":[22.3,249.3],"hipL":[-27,7.1],"knL":[-25.6,128.6],"ftL":[-21.2,247.2]},{"rootY":5.8,"hips":[0,0],"chest":[5.7,-99],"neck":[-2.7,-167],"head":[-23.8,-196.3],"shR":[50.8,-146.8],"elR":[49,-157.4],"haR":[30.2,-170.9],"shL":[-54.2,-142.7],"elL":[-47.5,-134.9],"haL":[-51.9,-125.4],"hipR":[26.5,8.8],"knR":[23.7,124.2],"ftR":[20.6,249.4],"hipL":[-27.1,6.8],"knL":[-26.7,128],"ftL":[-23.2,245.7]},{"rootY":5.8,"hips":[0,0],"chest":[8.1,-99],"neck":[-0.5,-167.1],"head":[-22.6,-195.5],"shR":[53,-148.4],"elR":[51.1,-159.7],"haR":[32.4,-173.5],"shL":[-51.8,-143],"elL":[-46,-134.5],"haL":[-51.1,-124.4],"hipR":[26.3,9.5],"knR":[22.1,124.1],"ftR":[19.3,249.4],"hipL":[-27.2,6.1],"knL":[-27.8,127.2],"ftL":[-24.8,243.8]},{"rootY":5.7,"hips":[0,0],"chest":[10.1,-98.9],"neck":[1.2,-167.1],"head":[-21.3,-195],"shR":[54.4,-149.6],"elR":[52.8,-162.3],"haR":[34.4,-176.6],"shL":[-50,-143.2],"elL":[-44.9,-134.1],"haL":[-50.3,-123.4],"hipR":[26.1,10],"knR":[20,124.5],"ftR":[17.8,249.5],"hipL":[-27.3,5.5],"knL":[-29.5,126.6],"ftL":[-26.7,242.1]},{"rootY":5.5,"hips":[0,0],"chest":[11.3,-98.9],"neck":[2.2,-167.1],"head":[-20.1,-195],"shR":[55.2,-150],"elR":[54,-164.4],"haR":[36,-179.8],"shL":[-49.1,-143.1],"elL":[-44.5,-133.7],"haL":[-49.9,-122.7],"hipR":[26,10],"knR":[17.7,125.2],"ftR":[16,249.7],"hipL":[-27.2,5.5],"knL":[-31.5,126.5],"ftL":[-28.9,240.7]},{"rootY":5.4,"hips":[0,0],"chest":[11.6,-98.9],"neck":[2.9,-167.2],"head":[-18.7,-195.4],"shR":[55.5,-149.8],"elR":[54.8,-165.8],"haR":[37,-182.7],"shL":[-48.6,-143.5],"elL":[-44.5,-133.6],"haL":[-50.1,-122.2],"hipR":[26.1,9.8],"knR":[16,125.8],"ftR":[13.8,249.9],"hipL":[-27.1,5.8],"knL":[-33.4,126.7],"ftL":[-31,239.1]},{"rootY":5.4,"hips":[0,0],"chest":[11.8,-98.9],"neck":[3.7,-167.4],"head":[-16.9,-196.1],"shR":[55.9,-149.7],"elR":[55.6,-166.8],"haR":[37.8,-184.8],"shL":[-48,-144.4],"elL":[-44.4,-134],"haL":[-50.4,-122.1],"hipR":[26.1,9.6],"knR":[15.2,126.5],"ftR":[11.9,250.2],"hipL":[-27,5.9],"knL":[-35.1,126.8],"ftL":[-32.8,237.1]},{"rootY":5.4,"hips":[0,0],"chest":[12.1,-98.8],"neck":[4.5,-167.5],"head":[-14.8,-196.9],"shR":[56.4,-149.9],"elR":[56,-167.4],"haR":[38.1,-185.9],"shL":[-47.3,-145.1],"elL":[-44.1,-134.5],"haL":[-50.7,-122.3],"hipR":[26.1,9.7],"knR":[14.9,127.3],"ftR":[10.4,250.6],"hipL":[-27.1,5.9],"knL":[-37.4,127.1],"ftL":[-34.6,234.2]},{"rootY":5.4,"hips":[0,0],"chest":[12.2,-98.8],"neck":[4.9,-167.6],"head":[-13,-197.9],"shR":[56.8,-150.2],"elR":[55.7,-167.9],"haR":[37.6,-186.2],"shL":[-46.9,-145.2],"elL":[-44,-134.8],"haL":[-51,-122.9],"hipR":[26.1,9.7],"knR":[14.4,128],"ftR":[9,250.7],"hipL":[-27.1,5.9],"knL":[-40.7,127.5],"ftL":[-36.9,230.5]},{"rootY":5.5,"hips":[0,0],"chest":[12.1,-98.8],"neck":[4.6,-167.6],"head":[-11.5,-198.9],"shR":[56.7,-150.8],"elR":[54.6,-168.2],"haR":[36.5,-185.9],"shL":[-47.1,-144.7],"elL":[-44.3,-135],"haL":[-51.3,-123.7],"hipR":[26.1,9.6],"knR":[13.6,128.3],"ftR":[7.7,250.5],"hipL":[-27.1,6],"knL":[-44.7,127.7],"ftL":[-39.5,226.6]},{"rootY":5.6,"hips":[0,0],"chest":[11.9,-98.8],"neck":[4.3,-167.6],"head":[-10.4,-199.6],"shR":[56.4,-151.3],"elR":[53.2,-168.2],"haR":[35.2,-185.1],"shL":[-47.3,-144.2],"elL":[-44.8,-135],"haL":[-51.6,-124.2],"hipR":[26.2,9.5],"knR":[12.8,128.6],"ftR":[6.8,250.2],"hipL":[-27.1,6.1],"knL":[-48.7,127.3],"ftL":[-42,223.8]},{"rootY":5.4,"hips":[0,0],"chest":[11.9,-98.6],"neck":[4.2,-167.4],"head":[-9.5,-199.9],"shR":[56.4,-151.6],"elR":[52,-167.7],"haR":[33.8,-183.6],"shL":[-47.2,-143.8],"elL":[-45.2,-134.7],"haL":[-51.7,-124.2],"hipR":[26.2,9.6],"knR":[12.8,129],"ftR":[6.3,250],"hipL":[-27.1,6],"knL":[-52.2,126.6],"ftL":[-44.8,223.8]},{"rootY":5.1,"hips":[0,0],"chest":[12,-98.5],"neck":[4.3,-167.2],"head":[-8.9,-200],"shR":[56.5,-152],"elR":[51,-166.9],"haR":[32.6,-181.3],"shL":[-47.1,-143.6],"elL":[-45.4,-134.4],"haL":[-51.8,-123.8],"hipR":[26.2,9.6],"knR":[13.5,129.6],"ftR":[6.2,250],"hipL":[-27.2,6],"knL":[-55.5,125.6],"ftL":[-49,226.5]},{"rootY":4.8,"hips":[0,0],"chest":[12,-98.3],"neck":[4.4,-167.1],"head":[-8.6,-199.9],"shR":[56.6,-152.3],"elR":[50.2,-165.7],"haR":[31.4,-178.8],"shL":[-47,-143.6],"elL":[-45.5,-134.2],"haL":[-51.9,-123.5],"hipR":[26.2,9.7],"knR":[14.4,130.2],"ftR":[5.9,250.2],"hipL":[-27.2,5.9],"knL":[-58.5,124.5],"ftL":[-54.8,230.6]},{"rootY":4.7,"hips":[0,0],"chest":[11.9,-98.2],"neck":[4.3,-167],"head":[-8.5,-199.8],"shR":[56.6,-152.6],"elR":[49.7,-164.7],"haR":[30.7,-176.5],"shL":[-46.9,-143.7],"elL":[-45.5,-134.1],"haL":[-51.9,-123.4],"hipR":[26.2,9.8],"knR":[15,130.8],"ftR":[5.5,250.2],"hipL":[-27.3,5.8],"knL":[-60.9,123.3],"ftL":[-61.6,234.6]},{"rootY":4.9,"hips":[0,0],"chest":[12,-98.1],"neck":[4.4,-166.8],"head":[-8.4,-199.7],"shR":[56.7,-152.8],"elR":[49.5,-163.8],"haR":[30.4,-174.4],"shL":[-46.8,-143.7],"elL":[-45.3,-134.2],"haL":[-51.8,-123.4],"hipR":[26.1,10],"knR":[15.4,131.1],"ftR":[5.6,249.9],"hipL":[-27.4,5.6],"knL":[-62.2,122.1],"ftL":[-68.7,237.8]},{"rootY":5.3,"hips":[0,0],"chest":[12.3,-98],"neck":[4.8,-166.7],"head":[-8,-199.6],"shR":[57.1,-152.9],"elR":[49.7,-162.9],"haR":[30.7,-172.7],"shL":[-46.4,-143.6],"elL":[-44.9,-134.1],"haL":[-51.6,-123.5],"hipR":[26,10.1],"knR":[15.9,131.4],"ftR":[6.1,249.4],"hipL":[-27.4,5.4],"knL":[-62.5,121],"ftL":[-75.4,240.1]},{"rootY":5.9,"hips":[0,0],"chest":[12.6,-97.9],"neck":[5.3,-166.6],"head":[-7.5,-199.6],"shR":[57.6,-152.8],"elR":[50.3,-162],"haR":[31.5,-171.1],"shL":[-45.9,-143.4],"elL":[-44.3,-134],"haL":[-51.1,-123.4],"hipR":[25.9,10.3],"knR":[16.5,131.7],"ftR":[6.9,248.7],"hipL":[-27.4,5.3],"knL":[-62.1,120.1],"ftL":[-81,241.4]},{"rootY":6.4,"hips":[0,0],"chest":[12.9,-97.8],"neck":[5.9,-166.5],"head":[-6.8,-199.6],"shR":[58.2,-152.4],"elR":[51.2,-161],"haR":[32.7,-169.6],"shL":[-45.3,-143.2],"elL":[-43.6,-133.8],"haL":[-50.5,-123],"hipR":[25.9,10.4],"knR":[17.4,132.1],"ftR":[8.1,248.2],"hipL":[-27.4,5.1],"knL":[-61.2,119.4],"ftL":[-84.7,241.8]},{"rootY":6.7,"hips":[0,0],"chest":[13.2,-97.6],"neck":[6.6,-166.4],"head":[-5.9,-199.6],"shR":[58.9,-152.1],"elR":[52.4,-160],"haR":[34.4,-168],"shL":[-44.7,-143.2],"elL":[-42.9,-133.5],"haL":[-49.8,-122.5],"hipR":[25.8,10.5],"knR":[18.5,132.5],"ftR":[9.6,247.8],"hipL":[-27.4,5.1],"knL":[-59.8,118.9],"ftL":[-86.4,241.4]},{"rootY":6.9,"hips":[0,0],"chest":[13.4,-97.5],"neck":[7.2,-166.3],"head":[-4.9,-199.7],"shR":[59.7,-151.8],"elR":[53.5,-159.1],"haR":[36.2,-166.6],"shL":[-44.1,-143.2],"elL":[-42.1,-133.2],"haL":[-48.9,-122],"hipR":[25.8,10.5],"knR":[19.8,132.9],"ftR":[11.5,247.4],"hipL":[-27.4,5],"knL":[-58.2,118.3],"ftL":[-86.1,240.2]},{"rootY":7.1,"hips":[0,0],"chest":[13.5,-97.4],"neck":[7.7,-166.2],"head":[-3.9,-199.9],"shR":[60.2,-151.7],"elR":[54.6,-158.3],"haR":[38.2,-165.3],"shL":[-43.7,-143.1],"elL":[-41.4,-133.2],"haL":[-47.9,-122],"hipR":[25.8,10.5],"knR":[21.2,133.2],"ftR":[13.6,246.9],"hipL":[-27.4,5.1],"knL":[-56.3,117.6],"ftL":[-83.7,238.7]},{"rootY":7.3,"hips":[0,0],"chest":[13.2,-97.3],"neck":[7.7,-166.2],"head":[-3,-200.3],"shR":[60.3,-151.7],"elR":[55.5,-157.8],"haR":[39.9,-164.2],"shL":[-43.7,-142.7],"elL":[-41,-133.4],"haL":[-47.1,-122.6],"hipR":[25.7,10.4],"knR":[22.8,133.3],"ftR":[15.8,246.4],"hipL":[-27.3,5.2],"knL":[-54.1,117.1],"ftL":[-79.8,237.6]},{"rootY":7.5,"hips":[0,0],"chest":[12.5,-97.4],"neck":[7.1,-166.3],"head":[-2.3,-200.9],"shR":[59.8,-151.7],"elR":[56,-157.4],"haR":[41.4,-163.2],"shL":[-44.3,-142.2],"elL":[-41.2,-133.9],"haL":[-46.6,-124],"hipR":[25.7,10.2],"knR":[24.6,133.3],"ftR":[18.1,245.7],"hipL":[-27.2,5.4],"knL":[-51.5,116.9],"ftL":[-75.1,236.9]},{"rootY":7.9,"hips":[0,0],"chest":[11.3,-97.4],"neck":[6.1,-166.5],"head":[-1.6,-201.5],"shR":[58.9,-151.5],"elR":[56.1,-157],"haR":[42.6,-162.5],"shL":[-45.2,-141.9],"elL":[-42,-134.9],"haL":[-46.6,-126.2],"hipR":[25.8,9.9],"knR":[26.3,133.1],"ftR":[20.5,244.8],"hipL":[-27.1,5.7],"knL":[-48.4,117.2],"ftL":[-69.8,236.7]},{"rootY":8.5,"hips":[0,0],"chest":[10,-97.5],"neck":[5,-166.7],"head":[-0.9,-202],"shR":[58.1,-151.2],"elR":[55.9,-156.6],"haR":[43.4,-162],"shL":[-46.3,-141.9],"elL":[-43.1,-136.5],"haL":[-47,-129.3],"hipR":[25.8,9.6],"knR":[28,132.8],"ftR":[23.2,243.4],"hipL":[-27,6],"knL":[-44.9,117.9],"ftL":[-63.2,237.3]},{"rootY":9.3,"hips":[0,0],"chest":[8.7,-97.5],"neck":[4.3,-166.8],"head":[-0.1,-202.4],"shR":[57.5,-150.7],"elR":[55.9,-156.1],"haR":[44.1,-161.5],"shL":[-47.1,-142.2],"elL":[-43.8,-138.3],"haL":[-47.3,-132.9],"hipR":[25.9,9.4],"knR":[30.1,132.3],"ftR":[26.3,241.6],"hipL":[-26.9,6.2],"knL":[-40.8,119.5],"ftL":[-55.3,239.2]},{"rootY":10,"hips":[0,0],"chest":[7.6,-97.4],"neck":[3.8,-166.8],"head":[1,-202.6],"shR":[57.2,-149.6],"elR":[56.2,-155.2],"haR":[45.1,-160.8],"shL":[-47.6,-142.2],"elL":[-44.1,-140.4],"haL":[-47.4,-136.8],"hipR":[25.8,9.4],"knR":[32.8,131.9],"ftR":[30.2,239.6],"hipL":[-26.8,6.2],"knL":[-36.7,121.5],"ftL":[-47.4,241.5]},{"rootY":10.5,"hips":[0,0],"chest":[6.8,-97],"neck":[3.4,-166.5],"head":[2.1,-202.3],"shR":[56.9,-147.4],"elR":[56.8,-153.6],"haR":[46.6,-160],"shL":[-48,-141.6],"elL":[-44,-142.3],"haL":[-46.9,-141],"hipR":[25.4,10],"knR":[36,131.8],"ftR":[34.9,237.3],"hipL":[-26.8,5.6],"knL":[-33.6,122.9],"ftL":[-41,243.4]},{"rootY":10.4,"hips":[0,0],"chest":[6.3,-96.1],"neck":[2.6,-165.7],"head":[3.3,-201.5],"shR":[56.5,-144.9],"elR":[57.5,-151.7],"haR":[48.4,-158.7],"shL":[-48.4,-140.4],"elL":[-43.7,-143.7],"haL":[-45.8,-145],"hipR":[25,11.2],"knR":[39.2,132.1],"ftR":[39.9,234.5],"hipL":[-26.9,4.3],"knL":[-31.3,123],"ftL":[-36.3,244.5]},{"rootY":9.5,"hips":[0,0],"chest":[6.2,-94.9],"neck":[1.2,-164.6],"head":[4.3,-200.2],"shR":[55.6,-143.9],"elR":[58.1,-149.8],"haR":[49.8,-156.2],"shL":[-49.2,-138.8],"elL":[-43.7,-144.7],"haL":[-44.6,-148.2],"hipR":[24.5,12.4],"knR":[41.9,132.3],"ftR":[44.9,231.2],"hipL":[-27,3],"knL":[-28.9,122.8],"ftL":[-32.1,245.6]},{"rootY":8,"hips":[0,0],"chest":[5.4,-93.9],"neck":[-1,-163.6],"head":[4.6,-199],"shR":[53.9,-144.6],"elR":[57.9,-148.3],"haR":[50.6,-152.7],"shL":[-50.9,-137.4],"elL":[-44.4,-145.5],"haL":[-44,-151],"hipR":[24.2,13],"knR":[44.3,132.4],"ftR":[49.1,227.5],"hipL":[-27,2.4],"knL":[-26.9,123.3],"ftL":[-28.1,247.2]},{"rootY":6.6,"hips":[0,0],"chest":[3.6,-93.2],"neck":[-3.5,-162.9],"head":[4.3,-197.8],"shR":[51.6,-145.5],"elR":[56.7,-147],"haR":[50.9,-149.3],"shL":[-53.2,-136.7],"elL":[-45.8,-146.7],"haL":[-44.1,-154],"hipR":[24,13.1],"knR":[47,132.8],"ftR":[51.7,222.7],"hipL":[-26.8,2.2],"knL":[-25.6,124.2],"ftL":[-24.9,248.6]},{"rootY":6.3,"hips":[0,0],"chest":[1.5,-92.8],"neck":[-5.7,-162.5],"head":[3.5,-197],"shR":[49.5,-145.3],"elR":[55.4,-146],"haR":[51,-147.3],"shL":[-55.3,-136.9],"elL":[-47,-149],"haL":[-44.5,-158.2],"hipR":[23.7,13.5],"knR":[50.3,133.5],"ftR":[52.5,216.4],"hipL":[-26.6,1.7],"knL":[-24.7,124.3],"ftL":[-22.5,249]},{"rootY":6.8,"hips":[0,0],"chest":[0,-92.5],"neck":[-7.2,-162.2],"head":[2.3,-196.6],"shR":[48.2,-144.5],"elR":[54.7,-145],"haR":[50.9,-146.2],"shL":[-56.8,-137.5],"elL":[-47.5,-151.7],"haL":[-44.7,-162.8],"hipR":[23.3,14.3],"knR":[53.5,133.7],"ftR":[51.7,209.8],"hipL":[-26.5,0.8],"knL":[-24,123.8],"ftL":[-20.4,248.6]},{"rootY":7.1,"hips":[0,0],"chest":[-1,-92.3],"neck":[-8.5,-161.9],"head":[0.5,-196.5],"shR":[47.1,-144.1],"elR":[54.4,-143.5],"haR":[50.3,-144.1],"shL":[-57.9,-137.3],"elL":[-47.5,-153.4],"haL":[-44.4,-166.2],"hipR":[23.1,14.7],"knR":[55.4,132.9],"ftR":[49.7,205.5],"hipL":[-26.5,0.3],"knL":[-23.6,123.4],"ftL":[-18.7,248.3]},{"rootY":6.8,"hips":[0,0],"chest":[-1.9,-92.1],"neck":[-9.8,-161.7],"head":[-1.7,-196.7],"shR":[45.9,-144.5],"elR":[53.9,-141.7],"haR":[49.5,-140.7],"shL":[-59,-136.4],"elL":[-47.3,-153.8],"haL":[-43.3,-167.8],"hipR":[23.2,14.5],"knR":[55.9,131.1],"ftR":[47.1,205.4],"hipL":[-26.6,0.4],"knL":[-23.3,123.6],"ftL":[-17.8,248.6]},{"rootY":6.2,"hips":[0,0],"chest":[-2.8,-92.2],"neck":[-11.1,-161.7],"head":[-4.2,-197],"shR":[44.7,-145.1],"elR":[53,-140],"haR":[48.8,-137],"shL":[-60.2,-135.5],"elL":[-46.9,-153.5],"haL":[-41.1,-167.9],"hipR":[23.5,14.2],"knR":[55.5,128.7],"ftR":[45.4,209.5],"hipL":[-26.7,0.9],"knL":[-22.8,124],"ftL":[-17.6,249.2]},{"rootY":5.8,"hips":[0,0],"chest":[-3.7,-92.4],"neck":[-12.3,-161.8],"head":[-6.6,-197.4],"shR":[43.4,-145.5],"elR":[51.6,-138.7],"haR":[48.1,-134.1],"shL":[-61.4,-135],"elL":[-46.1,-153.1],"haL":[-38.1,-167.7],"hipR":[23.8,13.9],"knR":[54.4,125.9],"ftR":[45.6,216.6],"hipL":[-26.8,1.2],"knL":[-22.3,124.3],"ftL":[-17.6,249.6]},{"rootY":5.5,"hips":[0,0],"chest":[-4.5,-92.5],"neck":[-13.3,-161.8],"head":[-8.7,-197.6],"shR":[42.3,-145.5],"elR":[50.2,-137.6],"haR":[47,-131.6],"shL":[-62.4,-134.7],"elL":[-45,-152.6],"haL":[-35.1,-167.2],"hipR":[24,13.6],"knR":[53,123.3],"ftR":[47.8,225.3],"hipL":[-26.9,1.6],"knL":[-22.1,124.7],"ftL":[-17.7,249.9]},{"rootY":5.3,"hips":[0,0],"chest":[-4.9,-92.5],"neck":[-13.9,-161.8],"head":[-10.1,-197.7],"shR":[41.6,-145.4],"elR":[49.3,-136.3],"haR":[46,-129.2],"shL":[-63,-134.6],"elL":[-43.7,-152.1],"haL":[-32.2,-166.4],"hipR":[24.2,13.3],"knR":[52.4,121.2],"ftR":[50.9,234.4],"hipL":[-27,1.8],"knL":[-22.1,124.9],"ftL":[-17.7,250.1]},{"rootY":5.3,"hips":[0,0],"chest":[-4.7,-92.5],"neck":[-13.8,-161.7],"head":[-10.7,-197.8],"shR":[41.6,-145.2],"elR":[49.1,-134.9],"haR":[45.3,-126.8],"shL":[-63,-134.6],"elL":[-42.3,-151.5],"haL":[-29.8,-165.2],"hipR":[24.4,13.2],"knR":[52.9,120.2],"ftR":[54.5,241.5],"hipL":[-27.1,2],"knL":[-22.4,125.1],"ftL":[-17.8,250.2]},{"rootY":5.3,"hips":[0,0],"chest":[-4.1,-92.6],"neck":[-13.3,-161.8],"head":[-10.5,-197.9],"shR":[42,-144.9],"elR":[49.2,-133.4],"haR":[44.9,-124.6],"shL":[-62.7,-134.5],"elL":[-41.2,-150.7],"haL":[-28,-163.7],"hipR":[24.5,13.1],"knR":[53.7,119.9],"ftR":[58.5,244.9],"hipL":[-27.2,2.1],"knL":[-22.6,125.1],"ftL":[-18,250.3]},{"rootY":5.2,"hips":[0,0],"chest":[-3.4,-92.8],"neck":[-12.4,-161.9],"head":[-9.7,-198.1],"shR":[42.5,-144.1],"elR":[48.9,-132],"haR":[44,-122.6],"shL":[-62.1,-134.6],"elL":[-40.6,-149.8],"haL":[-27.2,-162],"hipR":[24.6,12.9],"knR":[53.1,120.5],"ftR":[62.9,244.6],"hipL":[-27.3,2.3],"knL":[-22.8,125.3],"ftL":[-18.4,250.3]},{"rootY":5.3,"hips":[0,0],"chest":[-2.9,-92.9],"neck":[-11.3,-162.1],"head":[-8.8,-198.2],"shR":[43.2,-143.3],"elR":[48.3,-130.8],"haR":[42.3,-121],"shL":[-61.5,-135.2],"elL":[-40.4,-149.1],"haL":[-27.4,-160.2],"hipR":[24.7,12.9],"knR":[51,121.7],"ftR":[66.8,241.5],"hipL":[-27.4,2.4],"knL":[-23.3,125.3],"ftL":[-19.4,250.3]},{"rootY":5.6,"hips":[0,0],"chest":[-2.3,-92.9],"neck":[-9.9,-162.2],"head":[-7.8,-198.4],"shR":[44.1,-142.8],"elR":[47.6,-129.9],"haR":[40.2,-120],"shL":[-60.8,-136.6],"elL":[-40.5,-148.9],"haL":[-28.4,-158.7],"hipR":[24.7,12.9],"knR":[49.3,122.1],"ftR":[69.9,237.4],"hipL":[-27.5,2.3],"knL":[-23.9,125.2],"ftL":[-20.8,250]},{"rootY":5.8,"hips":[0,0],"chest":[-1.6,-92.8],"neck":[-8.5,-162.3],"head":[-6.8,-198.5],"shR":[45,-142.4],"elR":[47,-129.1],"haR":[38.2,-119.2],"shL":[-60,-137.7],"elL":[-40.6,-148.7],"haL":[-29.8,-157.3],"hipR":[24.8,12.8],"knR":[49.6,121.1],"ftR":[72.5,234.2],"hipL":[-27.6,2.4],"knL":[-24.8,125.3],"ftL":[-22.6,249.8]},{"rootY":5.8,"hips":[0,0],"chest":[-1.1,-92.7],"neck":[-7.2,-162.2],"head":[-5.8,-198.5],"shR":[45.8,-141.8],"elR":[46.5,-128.5],"haR":[36.3,-118.8],"shL":[-59.2,-138.2],"elL":[-40.7,-148.4],"haL":[-31.3,-156.2],"hipR":[25,12.4],"knR":[51.3,118.9],"ftR":[74.6,232.5],"hipL":[-27.7,2.8],"knL":[-25.8,125.5],"ftL":[-24.7,249.7]},{"rootY":5.9,"hips":[0,0],"chest":[-0.8,-92.3],"neck":[-6.3,-161.9],"head":[-5.2,-198.2],"shR":[46.3,-141],"elR":[45.9,-128.1],"haR":[34.4,-119],"shL":[-58.7,-138.8],"elL":[-41.1,-148.3],"haL":[-32.8,-155.5],"hipR":[25.2,12],"knR":[52.8,116.4],"ftR":[75.5,232.3],"hipL":[-27.6,3.2],"knL":[-27.2,125.7],"ftL":[-27.3,249.6]},{"rootY":6.2,"hips":[0,0],"chest":[-0.5,-92.1],"neck":[-5.7,-161.7],"head":[-4.9,-198],"shR":[46.6,-140.2],"elR":[45.1,-128.1],"haR":[32.5,-119.9],"shL":[-58.4,-139.9],"elL":[-41.8,-148.7],"haL":[-34.4,-155.3],"hipR":[25.4,11.6],"knR":[53,113.9],"ftR":[74.8,232.8],"hipL":[-27.6,3.7],"knL":[-28.9,125.7],"ftL":[-30.6,249.2]},{"rootY":6.9,"hips":[0,0],"chest":[-0.1,-91.9],"neck":[-5.2,-161.6],"head":[-4.8,-197.9],"shR":[46.8,-139.6],"elR":[44.4,-128.6],"haR":[30.9,-121.6],"shL":[-58.1,-140.8],"elL":[-42.5,-149.3],"haL":[-36,-155.6],"hipR":[25.5,11.3],"knR":[51.4,111.6],"ftR":[72.9,233.2],"hipL":[-27.6,4],"knL":[-30.9,125.4],"ftL":[-34.5,248.4]},{"rootY":8.3,"hips":[0,0],"chest":[0.5,-91.7],"neck":[-4.7,-161.5],"head":[-4.9,-197.7],"shR":[47.3,-139.3],"elR":[44.1,-129.8],"haR":[29.7,-124.1],"shL":[-57.6,-140.9],"elL":[-43.1,-149.9],"haL":[-37.7,-156.6],"hipR":[25.6,11.2],"knR":[48.2,110.6],"ftR":[70.1,233.7],"hipL":[-27.6,4.1],"knL":[-33.1,124.7],"ftL":[-38.9,247]},{"rootY":10.3,"hips":[0,0],"chest":[1.6,-91.5],"neck":[-4,-161.2],"head":[-5.1,-197.4],"shR":[47.9,-139.2],"elR":[44.2,-131.5],"haR":[29,-127.5],"shL":[-56.9,-140.4],"elL":[-43.4,-150.5],"haL":[-39,-158.1],"hipR":[25.5,11.3],"knR":[44.3,111.8],"ftR":[66.3,235.2],"hipL":[-27.6,4.1],"knL":[-35.5,123.7],"ftL":[-43.7,244.9]},{"rootY":12.9,"hips":[0,0],"chest":[2.9,-91.4],"neck":[-3.5,-161.1],"head":[-5.6,-197.2],"shR":[48.6,-139.1],"elR":[44.4,-133.8],"haR":[28.4,-132.4],"shL":[-56.2,-139.7],"elL":[-43.9,-150.9],"haL":[-40.3,-159.6],"hipR":[25.5,11.3],"knR":[39.3,113.9],"ftR":[60.9,236.8],"hipL":[-27.6,4],"knL":[-38.2,122.8],"ftL":[-49.2,242.2]},{"rootY":16,"hips":[0,0],"chest":[3.7,-91.6],"neck":[-3.4,-161.4],"head":[-6.8,-197.2],"shR":[48.7,-138.9],"elR":[44.1,-136.9],"haR":[26.7,-139.3],"shL":[-55.9,-138.3],"elL":[-44.8,-150.6],"haL":[-42.3,-160],"hipR":[25.6,11.1],"knR":[32.3,115],"ftR":[54,236.6],"hipL":[-27.6,4.3],"knL":[-41.5,122.3],"ftL":[-55.7,238.9]},{"rootY":18.6,"hips":[0,0],"chest":[3.3,-92],"neck":[-4.2,-161.7],"head":[-8.8,-197.2],"shR":[47.9,-138.7],"elR":[43.2,-140.8],"haR":[23.4,-148.5],"shL":[-56.3,-135.9],"elL":[-46.2,-148.3],"haL":[-44.8,-157.3],"hipR":[26,10.2],"knR":[23.7,114.6],"ftR":[46.2,234.6],"hipL":[-27.4,5.3],"knL":[-45.1,122.6],"ftL":[-62.9,235.3]},{"rootY":19.5,"hips":[0,0],"chest":[1.7,-92.2],"neck":[-5.8,-161.9],"head":[-10.9,-197.2],"shR":[46.2,-138.7],"elR":[41.9,-145.2],"haR":[19.3,-158.8],"shL":[-57.3,-133.3],"elL":[-47.4,-143.8],"haL":[-46.2,-150.5],"hipR":[26.5,8.9],"knR":[16.3,114.6],"ftR":[38.6,233.3],"hipL":[-27.1,6.6],"knL":[-48.3,123.9],"ftL":[-69.5,231.7]},{"rootY":18.2,"hips":[0,0],"chest":[-0.4,-92.5],"neck":[-8,-162.2],"head":[-12.4,-197.5],"shR":[44.2,-139.5],"elR":[40.9,-150],"haR":[15.4,-169.3],"shL":[-59,-132],"elL":[-47.9,-138.1],"haL":[-45.5,-140.8],"hipR":[26.9,7.6],"knR":[12,115.9],"ftR":[31.7,234.6],"hipL":[-26.7,8],"knL":[-51.1,126.3],"ftL":[-73.8,227.8]},{"rootY":15.7,"hips":[0,0],"chest":[-2.4,-93.2],"neck":[-10.2,-162.8],"head":[-13.1,-198.3],"shR":[42.3,-141.2],"elR":[40,-155.3],"haR":[12.3,-179.5],"shL":[-60.9,-132.2],"elL":[-47.9,-133.1],"haL":[-43.5,-131.2],"hipR":[27.1,6.4],"knR":[10.1,117.8],"ftR":[25.7,237.3],"hipL":[-26.4,9.1],"knL":[-54,128.5],"ftL":[-75.1,222.9]},{"rootY":13.4,"hips":[0,0],"chest":[-3.6,-94],"neck":[-11.6,-163.6],"head":[-12.9,-199.2],"shR":[41.3,-143.7],"elR":[39.4,-161],"haR":[10.8,-189],"shL":[-62.3,-133.2],"elL":[-47.6,-129.5],"haL":[-41.3,-123.7],"hipR":[27.3,5.6],"knR":[8.8,119.4],"ftR":[21,239.6],"hipL":[-26,10],"knL":[-56.3,129.4],"ftL":[-73.6,217.2]},{"rootY":11.7,"hips":[0,0],"chest":[-3.9,-94.6],"neck":[-11.8,-164.2],"head":[-11.8,-199.9],"shR":[41.4,-146],"elR":[39.6,-166.3],"haR":[11.1,-196.8],"shL":[-62.6,-134],"elL":[-47.1,-127.1],"haL":[-39.7,-118.3],"hipR":[27.3,5.1],"knR":[8.2,120.6],"ftR":[17.7,241.1],"hipL":[-25.8,10.4],"knL":[-57.1,128.8],"ftL":[-70.2,212]},{"rootY":10.6,"hips":[0,0],"chest":[-3.5,-95],"neck":[-11,-164.7],"head":[-9.9,-200.5],"shR":[42.3,-147.4],"elR":[40.6,-170.2],"haR":[12.6,-202.2],"shL":[-62,-134.5],"elL":[-46.7,-125.2],"haL":[-38.8,-114.4],"hipR":[27.3,5.1],"knR":[8.7,121.6],"ftR":[15.5,242.2],"hipL":[-25.8,10.5],"knL":[-57.2,126.9],"ftL":[-66,209.1]},{"rootY":9.9,"hips":[0,0],"chest":[-2.8,-95.3],"neck":[-9.7,-164.9],"head":[-7.8,-200.8],"shR":[43.4,-147.7],"elR":[42,-172.1],"haR":[14.5,-204.7],"shL":[-61,-135.1],"elL":[-46.6,-123.9],"haL":[-38.8,-111.6],"hipR":[27.3,5.3],"knR":[9.9,122.6],"ftR":[13.8,243],"hipL":[-25.9,10.3],"knL":[-57.3,124.3],"ftL":[-61.9,209.7]},{"rootY":9.3,"hips":[0,0],"chest":[-2.3,-95.4],"neck":[-8.3,-165],"head":[-5.7,-201],"shR":[44.6,-147.3],"elR":[43.5,-171.9],"haR":[16.6,-204.4],"shL":[-60,-135.9],"elL":[-46.7,-123.2],"haL":[-39.7,-109.9],"hipR":[27.3,5.5],"knR":[11.1,123.3],"ftR":[12.4,243.5],"hipL":[-26,10.1],"knL":[-57.6,121.6],"ftL":[-58.7,213.4]},{"rootY":8.8,"hips":[0,0],"chest":[-1.8,-95.4],"neck":[-7.1,-165],"head":[-3.8,-201],"shR":[45.8,-146.9],"elR":[45.4,-170.1],"haR":[18.9,-201.8],"shL":[-59.1,-136.9],"elL":[-46.8,-123.2],"haL":[-40.9,-109.1],"hipR":[27.3,5.6],"knR":[12,124.1],"ftR":[11.3,244],"hipL":[-26.1,10],"knL":[-57.4,119.4],"ftL":[-57.2,219.1]},{"rootY":8.1,"hips":[0,0],"chest":[-1.6,-95.2],"neck":[-6.3,-164.8],"head":[-2.1,-200.7],"shR":[46.6,-146.8],"elR":[47.3,-167.4],"haR":[21.3,-197.2],"shL":[-58.5,-137.6],"elL":[-47,-123.4],"haL":[-41.9,-108.7],"hipR":[27.3,5.7],"knR":[12.9,125.1],"ftR":[10.5,244.7],"hipL":[-26.1,9.8],"knL":[-56.8,117.6],"ftL":[-57.6,225.2]},{"rootY":7.4,"hips":[0,0],"chest":[-1.8,-95],"neck":[-5.9,-164.4],"head":[-0.7,-200.3],"shR":[47,-146.7],"elR":[48.7,-164.3],"haR":[23.5,-191.5],"shL":[-58.3,-138.4],"elL":[-47.3,-123.6],"haL":[-42.5,-108.6],"hipR":[27.3,5.8],"knR":[13.8,126],"ftR":[9.7,245.5],"hipL":[-26.2,9.8],"knL":[-56,116.2],"ftL":[-59.5,230.4]},{"rootY":6.8,"hips":[0,0],"chest":[-2.1,-94.8],"neck":[-5.5,-164.2],"head":[0.6,-200],"shR":[47.3,-146.3],"elR":[49.4,-161],"haR":[25.5,-185.2],"shL":[-58.2,-139.3],"elL":[-47.8,-123.8],"haL":[-43,-108.5],"hipR":[27.3,5.8],"knR":[14.6,126.7],"ftR":[9.2,246.1],"hipL":[-26.2,9.7],"knL":[-55,115],"ftL":[-61.8,234.1]},{"rootY":6.4,"hips":[0,0],"chest":[-2.1,-94.7],"neck":[-4.9,-164.1],"head":[2,-199.8],"shR":[47.8,-145.7],"elR":[49.8,-157.5],"haR":[27.3,-178.6],"shL":[-57.8,-140.2],"elL":[-48,-124.2],"haL":[-43.5,-108.5],"hipR":[27.3,5.9],"knR":[15.2,127.3],"ftR":[9.1,246.5],"hipL":[-26.2,9.7],"knL":[-53.7,113.9],"ftL":[-63.3,236.2]},{"rootY":6.1,"hips":[0,0],"chest":[-1.8,-94.8],"neck":[-4,-164],"head":[3.3,-199.6],"shR":[48.5,-145.2],"elR":[50.3,-154.1],"haR":[28.7,-172],"shL":[-57.1,-140.8],"elL":[-47.8,-124.6],"haL":[-43.7,-108.7],"hipR":[27.3,6],"knR":[16,127.9],"ftR":[9.3,246.7],"hipL":[-26.2,9.5],"knL":[-52.1,113],"ftL":[-63.9,237.1]},{"rootY":6,"hips":[0,0],"chest":[-1.6,-94.8],"neck":[-3.1,-164],"head":[4.4,-199.6],"shR":[49.3,-144.9],"elR":[50.9,-150.9],"haR":[29.7,-165.7],"shL":[-56.2,-141.4],"elL":[-47.4,-125.1],"haL":[-43.8,-109],"hipR":[27.2,6.2],"knR":[16.7,128.4],"ftR":[9.8,246.7],"hipL":[-26.2,9.3],"knL":[-50.5,112.5],"ftL":[-63.9,237.1]},{"rootY":6.1,"hips":[0,0],"chest":[-1.4,-94.9],"neck":[-2.5,-164.1],"head":[5.2,-199.6],"shR":[49.9,-144.7],"elR":[51.3,-148.1],"haR":[30.4,-160.1],"shL":[-55.5,-141.9],"elL":[-46.9,-125.6],"haL":[-43.7,-109.5],"hipR":[27.2,6.3],"knR":[17.4,128.8],"ftR":[10.4,246.5],"hipL":[-26.2,9.2],"knL":[-48.6,112.8],"ftL":[-62.9,236.7]},{"rootY":6.3,"hips":[0,0],"chest":[-1.4,-95.2],"neck":[-2.1,-164.3],"head":[5.8,-199.7],"shR":[50.3,-144.2],"elR":[51.5,-145.4],"haR":[30.8,-155.1],"shL":[-55.1,-142.4],"elL":[-46.6,-126.2],"haL":[-43.5,-109.9],"hipR":[27.2,6.2],"knR":[18.1,129],"ftR":[11,246.3],"hipL":[-26.2,9.3],"knL":[-46.3,113.8],"ftL":[-60.6,236]},{"rootY":6.6,"hips":[0,0],"chest":[-1.7,-95.6],"neck":[-2.1,-164.6],"head":[6,-200],"shR":[50.3,-143.7],"elR":[51.4,-143.1],"haR":[31.1,-150.8],"shL":[-55,-142.8],"elL":[-46.5,-126.7],"haL":[-43.3,-110.4],"hipR":[27.3,6],"knR":[18.9,128.9],"ftR":[11.7,245.9],"hipL":[-26.2,9.6],"knL":[-43.6,115.4],"ftL":[-57.2,235]},{"rootY":7.1,"hips":[0,0],"chest":[-2.2,-95.9],"neck":[-2.5,-164.9],"head":[5.9,-200.2],"shR":[49.9,-143.2],"elR":[51,-140.9],"haR":[31.1,-147],"shL":[-55.3,-143],"elL":[-46.7,-127.3],"haL":[-43.2,-111.6],"hipR":[27.4,5.7],"knR":[19.8,128.5],"ftR":[12.4,245.4],"hipL":[-26.1,9.9],"knL":[-40.5,117.6],"ftL":[-52.5,234.6]},{"rootY":7.7,"hips":[0,0],"chest":[-2.7,-96.2],"neck":[-2.8,-165.2],"head":[5.8,-200.5],"shR":[49.5,-142.6],"elR":[50.7,-138.6],"haR":[30.9,-143.1],"shL":[-55.6,-143],"elL":[-46.9,-128.3],"haL":[-43,-113.5],"hipR":[27.4,5.5],"knR":[20.9,127.9],"ftR":[13.6,244.7],"hipL":[-26,10.1],"knL":[-36.4,120.3],"ftL":[-45.7,235.9]},{"rootY":8.5,"hips":[0,0],"chest":[-3.2,-96.7],"neck":[-3,-165.7],"head":[5.8,-200.9],"shR":[49.3,-141.4],"elR":[50.5,-135.1],"haR":[30.6,-138.2],"shL":[-55.8,-142.5],"elL":[-46.8,-129.6],"haL":[-43.1,-116],"hipR":[27.4,5.6],"knR":[22,127.3],"ftR":[15.1,243.6],"hipL":[-26.1,10],"knL":[-31.5,123.4],"ftL":[-37.1,238.4]},{"rootY":9.4,"hips":[0,0],"chest":[-4,-97.1],"neck":[-3.2,-166.1],"head":[5.8,-201.3],"shR":[49,-139.6],"elR":[50.3,-130.4],"haR":[30.5,-131.4],"shL":[-56,-141.9],"elL":[-47.2,-131.1],"haL":[-43.2,-119.7],"hipR":[27.3,5.8],"knR":[23.2,126.9],"ftR":[16.8,242.2],"hipL":[-26.2,9.8],"knL":[-27.4,125.5],"ftL":[-29.6,240.4]},{"rootY":10.3,"hips":[0,0],"chest":[-4.2,-97.4],"neck":[-2.8,-166.3],"head":[5.9,-201.5],"shR":[48.9,-137.6],"elR":[49.8,-124.8],"haR":[31.1,-122.3],"shL":[-56.1,-141.2],"elL":[-48,-133],"haL":[-42.7,-125],"hipR":[27.1,6.6],"knR":[24.7,127],"ftR":[19.1,240.6],"hipL":[-26.4,9.1],"knL":[-25.3,125.7],"ftL":[-24.9,241]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-97.2],"neck":[-1.1,-166.1],"head":[6.9,-201.4],"shR":[50.1,-135.7],"elR":[49.6,-119],"haR":[32.9,-111.1],"shL":[-54.8,-140.6],"elL":[-48.3,-135.6],"haL":[-41.4,-131.5],"hipR":[26.7,8.1],"knR":[26.7,127.9],"ftR":[22.7,239.1],"hipL":[-26.9,7.5],"knL":[-24.4,124.5],"ftL":[-21.7,241.4]},{"rootY":9.3,"hips":[0,0],"chest":[1.2,-96.9],"neck":[2,-165.8],"head":[8.9,-201.3],"shR":[52.9,-135.1],"elR":[49.8,-113.7],"haR":[35,-99],"shL":[-51.9,-140.3],"elL":[-47.6,-139.1],"haL":[-39.7,-139],"hipR":[26.1,9.9],"knR":[29.2,129.1],"ftR":[27.2,237.4],"hipL":[-27.3,5.8],"knL":[-22.9,123.8],"ftL":[-18.1,242.7]},{"rootY":7.4,"hips":[0,0],"chest":[5,-96.7],"neck":[5.6,-165.8],"head":[10.9,-201.5],"shR":[56.2,-136.2],"elR":[50.1,-109.3],"haR":[36.2,-87.8],"shL":[-48.5,-140.5],"elL":[-46.7,-143.4],"haL":[-38.5,-147.4],"hipR":[25.7,10.9],"knR":[32.1,130],"ftR":[31.7,235],"hipL":[-27.5,4.6],"knL":[-20.9,124.2],"ftL":[-13.7,244.6]},{"rootY":5.9,"hips":[0,0],"chest":[7.6,-96.9],"neck":[8.3,-166.1],"head":[12.3,-201.9],"shR":[58.6,-137.8],"elR":[50.6,-105.9],"haR":[36.5,-79.4],"shL":[-46,-141.4],"elL":[-46.1,-148.7],"haL":[-37.9,-157.2],"hipR":[25.3,11.5],"knR":[35.5,130.9],"ftR":[35.8,231.8],"hipL":[-27.5,4.1],"knL":[-19.2,124.7],"ftL":[-10,246]},{"rootY":5.3,"hips":[0,0],"chest":[8.9,-97.1],"neck":[10,-166.3],"head":[13.5,-202.1],"shR":[60.1,-138.2],"elR":[51.7,-103],"haR":[37,-73.7],"shL":[-44.6,-142.5],"elL":[-45.6,-154.6],"haL":[-37.1,-167.5],"hipR":[24.9,12.2],"knR":[40,132.5],"ftR":[40.3,227.2],"hipL":[-27.6,3.2],"knL":[-17.7,124.5],"ftL":[-6.8,246.6]},{"rootY":5.5,"hips":[0,0],"chest":[9.6,-97.2],"neck":[10.9,-166.3],"head":[14.6,-202],"shR":[60.9,-137.3],"elR":[52.9,-100.1],"haR":[38,-69.6],"shL":[-43.8,-143.5],"elL":[-45.2,-160.1],"haL":[-35.5,-176.9],"hipR":[24.3,13.3],"knR":[45.6,134],"ftR":[45.7,220.7],"hipL":[-27.6,2.1],"knL":[-16.2,123.8],"ftL":[-3.7,246.6]},{"rootY":6.1,"hips":[0,0],"chest":[9.7,-97],"neck":[11.3,-166.1],"head":[15.4,-201.7],"shR":[61.3,-136.2],"elR":[53.7,-97.6],"haR":[38.6,-66.5],"shL":[-43.4,-144.6],"elL":[-44.5,-164.8],"haL":[-33.4,-184.6],"hipR":[23.6,14.4],"knR":[50.8,134.5],"ftR":[51.4,213],"hipL":[-27.5,0.8],"knL":[-14.8,122.9],"ftL":[-0.5,246.1]},{"rootY":6.7,"hips":[0,0],"chest":[9.4,-96.8],"neck":[11.2,-165.8],"head":[15.5,-201.4],"shR":[61.3,-135.6],"elR":[53.7,-95.7],"haR":[38.1,-64],"shL":[-43.4,-145.3],"elL":[-43.5,-167.9],"haL":[-31.7,-189.7],"hipR":[23,15.2],"knR":[53.4,133.3],"ftR":[55.4,206.2],"hipL":[-27.4,-0.2],"knL":[-13.8,122.2],"ftL":[1.6,245.7]},{"rootY":6.6,"hips":[0,0],"chest":[8.8,-96.7],"neck":[10.4,-165.5],"head":[14.7,-201.1],"shR":[60.8,-135.5],"elR":[53,-94.4],"haR":[36.9,-61.8],"shL":[-43.9,-145.3],"elL":[-42.5,-169],"haL":[-30.6,-191.7],"hipR":[22.8,15.4],"knR":[53,131.1],"ftR":[56.6,201.8],"hipL":[-27.4,-0.5],"knL":[-13.2,121.8],"ftL":[2.5,245.7]},{"rootY":5.8,"hips":[0,0],"chest":[7.5,-96.8],"neck":[8.6,-165.5],"head":[12.8,-201.2],"shR":[59.5,-136],"elR":[51.6,-93.7],"haR":[35.7,-60],"shL":[-45.3,-144.9],"elL":[-42.1,-168],"haL":[-30.2,-190.1],"hipR":[23.1,15.1],"knR":[50,128.3],"ftR":[55.1,201.6],"hipL":[-27.5,-0.1],"knL":[-12.9,122.2],"ftL":[2.2,246.5]},{"rootY":4.6,"hips":[0,0],"chest":[5.6,-97],"neck":[6.1,-165.7],"head":[10.3,-201.4],"shR":[57.4,-137],"elR":[50,-93.9],"haR":[34.9,-59.1],"shL":[-47.5,-144.7],"elL":[-42.5,-165.4],"haL":[-30.4,-185.2],"hipR":[23.7,14.3],"knR":[45.9,125.1],"ftR":[51.8,206.1],"hipL":[-27.6,0.8],"knL":[-13.2,123.2],"ftL":[1.4,247.6]},{"rootY":3.5,"hips":[0,0],"chest":[3.4,-97.2],"neck":[3.3,-165.7],"head":[7.6,-201.5],"shR":[55,-138.1],"elR":[48.5,-95],"haR":[34.8,-60],"shL":[-49.9,-144.9],"elL":[-43,-161.9],"haL":[-30.7,-178.2],"hipR":[24.3,13.6],"knR":[41.8,121.5],"ftR":[48.5,213.5],"hipL":[-27.7,1.7],"knL":[-13.9,124.1],"ftL":[0.2,248.6]},{"rootY":3,"hips":[0,0],"chest":[1.6,-97.1],"neck":[0.7,-165.6],"head":[5.1,-201.4],"shR":[52.8,-138.7],"elR":[47.6,-96.7],"haR":[35.3,-62.4],"shL":[-52.1,-144.6],"elL":[-43.3,-157.5],"haL":[-31.1,-169.8],"hipR":[24.5,13.2],"knR":[38.6,118.1],"ftR":[46.2,221.5],"hipL":[-27.8,2.1],"knL":[-14.5,124.6],"ftL":[-0.9,249.1]},{"rootY":2.8,"hips":[0,0],"chest":[0.4,-97],"neck":[-1.3,-165.3],"head":[3,-201.2],"shR":[51.2,-139],"elR":[47.2,-98.7],"haR":[36.2,-65.7],"shL":[-53.8,-143.4],"elL":[-43.5,-151.9],"haL":[-31.2,-160],"hipR":[24.7,13.1],"knR":[36.8,115.5],"ftR":[44.9,229.1],"hipL":[-27.8,2.2],"knL":[-15,124.8],"ftL":[-1.7,249.3]},{"rootY":3,"hips":[0,0],"chest":[0,-96.9],"neck":[-2.6,-165.1],"head":[1.5,-201.1],"shR":[50.4,-139.3],"elR":[47.7,-100.8],"haR":[37.5,-69.4],"shL":[-54.6,-142],"elL":[-43.3,-145.5],"haL":[-31.2,-149.1],"hipR":[24.7,13.1],"knR":[36.1,114],"ftR":[43.5,235.4],"hipL":[-27.8,2.3],"knL":[-15.3,124.8],"ftL":[-2.2,249.2]},{"rootY":3.3,"hips":[0,0],"chest":[0.3,-96.8],"neck":[-3,-164.9],"head":[0.4,-201],"shR":[50.3,-139.5],"elR":[49.1,-103],"haR":[39.2,-73.7],"shL":[-54.7,-141],"elL":[-42.3,-139.4],"haL":[-31.3,-138.1],"hipR":[24.6,13.2],"knR":[35.6,113.9],"ftR":[41.4,238.9],"hipL":[-27.8,2.1],"knL":[-15.4,124.6],"ftL":[-2.5,248.9]},{"rootY":3.9,"hips":[0,0],"chest":[0.7,-96.8],"neck":[-3.1,-164.7],"head":[-0.5,-200.9],"shR":[50.5,-139.5],"elR":[50.9,-105.1],"haR":[41.1,-78.5],"shL":[-54.3,-140.3],"elL":[-40.6,-134.2],"haL":[-31.7,-127.5],"hipR":[24.6,13.3],"knR":[34.7,115.1],"ftR":[38.7,238.8],"hipL":[-27.9,2],"knL":[-15.5,124.3],"ftL":[-2.8,248.3]},{"rootY":4.7,"hips":[0,0],"chest":[1.2,-96.7],"neck":[-3.3,-164.6],"head":[-1.6,-200.9],"shR":[50.6,-139.3],"elR":[52.7,-107.1],"haR":[42.9,-83.3],"shL":[-54.2,-139.1],"elL":[-39.2,-129.1],"haL":[-32.3,-117.5],"hipR":[24.6,13.3],"knR":[32.5,117.3],"ftR":[35.4,235.5],"hipL":[-27.9,2],"knL":[-15.8,124],"ftL":[-3.3,247.7]},{"rootY":5.7,"hips":[0,0],"chest":[1.5,-96.6],"neck":[-3.5,-164.5],"head":[-2.8,-200.8],"shR":[50.6,-139.4],"elR":[54.3,-109.1],"haR":[44.6,-88.2],"shL":[-54.4,-137.7],"elL":[-38.9,-123.8],"haL":[-32.6,-108.2],"hipR":[24.5,13.3],"knR":[28.7,119.1],"ftR":[30.8,231.1],"hipL":[-27.9,2],"knL":[-16.4,123.7],"ftL":[-4.2,246.7]},{"rootY":7.1,"hips":[0,0],"chest":[1.7,-96.5],"neck":[-3.7,-164.5],"head":[-3.8,-200.8],"shR":[50.6,-139.4],"elR":[55.9,-111.3],"haR":[46.4,-93.3],"shL":[-54.5,-136.6],"elL":[-38.7,-119.1],"haL":[-32.9,-100.7],"hipR":[24.5,13.4],"knR":[25,119.4],"ftR":[24.9,228.6],"hipL":[-27.9,2],"knL":[-17.2,123.4],"ftL":[-5.4,245.4]},{"rootY":8.6,"hips":[0,0],"chest":[1.7,-96.4],"neck":[-3.7,-164.4],"head":[-4.5,-200.7],"shR":[50.7,-139.4],"elR":[57.7,-113.4],"haR":[48.2,-98.6],"shL":[-54.4,-136.3],"elL":[-38.3,-116.3],"haL":[-33,-95.7],"hipR":[24.6,13.2],"knR":[22.4,118.8],"ftR":[19.1,228.8],"hipL":[-27.9,2.1],"knL":[-18,123.1],"ftL":[-6.6,243.7]},{"rootY":10.2,"hips":[0,0],"chest":[1.6,-96.4],"neck":[-3.4,-164.5],"head":[-5,-200.8],"shR":[50.9,-139.6],"elR":[59.4,-115.7],"haR":[50.2,-103.8],"shL":[-54.2,-136.6],"elL":[-38.1,-115.3],"haL":[-33.1,-93.3],"hipR":[24.8,12.9],"knR":[21,118.7],"ftR":[15.2,231],"hipL":[-27.8,2.5],"knL":[-18.9,123.1],"ftL":[-7.8,241.8]},{"rootY":12,"hips":[0,0],"chest":[1.7,-96.8],"neck":[-3.1,-164.9],"head":[-5.1,-201.2],"shR":[51.2,-139.7],"elR":[61,-118.6],"haR":[52.5,-109.6],"shL":[-53.9,-136.9],"elL":[-38.6,-115.4],"haL":[-34,-93.6],"hipR":[25.1,12.2],"knR":[19.8,119.6],"ftR":[12.6,234.1],"hipL":[-27.7,3.3],"knL":[-20.2,123.6],"ftL":[-9.1,239.9]},{"rootY":13.8,"hips":[0,0],"chest":[1.3,-97.3],"neck":[-3.3,-165.4],"head":[-5.3,-201.6],"shR":[50.7,-139],"elR":[61.7,-122.6],"haR":[54.6,-117.2],"shL":[-54.3,-136.1],"elL":[-41,-116.5],"haL":[-37.2,-96.7],"hipR":[25.7,10.9],"knR":[17.5,120.9],"ftR":[8.5,236.4],"hipL":[-27.5,4.6],"knL":[-22.3,124.7],"ftL":[-11.3,237.9]},{"rootY":14.5,"hips":[0,0],"chest":[-1.1,-97.4],"neck":[-4.4,-165.6],"head":[-5.9,-201.7],"shR":[48.8,-137.1],"elR":[61.4,-126.9],"haR":[55.4,-126.7],"shL":[-55.8,-134.9],"elL":[-45.8,-118.6],"haL":[-43.5,-102.3],"hipR":[26.6,8.6],"knR":[14.7,121.8],"ftR":[2.6,237.5],"hipL":[-27,7],"knL":[-24.6,126.4],"ftL":[-14.7,236]},{"rootY":13.9,"hips":[0,0],"chest":[-5.6,-97.3],"neck":[-5.7,-165.8],"head":[-5.8,-201.7],"shR":[46.6,-135.9],"elR":[61.2,-130.9],"haR":[55.5,-136.3],"shL":[-58.2,-135.9],"elL":[-52.2,-122.5],"haL":[-51.8,-109.3],"hipR":[27.3,5.9],"knR":[13,121.8],"ftR":[-1.6,238],"hipL":[-26.2,9.7],"knL":[-26.3,128.3],"ftL":[-18.1,233.7]},{"rootY":12,"hips":[0,0],"chest":[-9.1,-97.7],"neck":[-6.4,-166.3],"head":[-4.3,-202.2],"shR":[45.6,-136.7],"elR":[62.7,-134.2],"haR":[56.1,-144.7],"shL":[-59.9,-140.5],"elL":[-58.3,-128.8],"haL":[-60,-117.7],"hipR":[27.6,4.5],"knR":[12.5,121.5],"ftR":[-2.5,239],"hipL":[-25.7,11],"knL":[-27.7,130.6],"ftL":[-19.6,229.9]},{"rootY":9.9,"hips":[0,0],"chest":[-10.2,-98.4],"neck":[-6.5,-166.9],"head":[-2,-202.5],"shR":[45.7,-138.7],"elR":[65.3,-136.9],"haR":[57.7,-152.1],"shL":[-60.2,-145.7],"elL":[-63,-136.5],"haL":[-67,-128.2],"hipR":[27.6,4.1],"knR":[12.7,121.8],"ftR":[-2.2,240.8],"hipL":[-25.5,11.4],"knL":[-29.5,132.9],"ftL":[-19.2,224.1]},{"rootY":8.3,"hips":[0,0],"chest":[-10.4,-98.8],"neck":[-6.5,-167.1],"head":[0.3,-202.5],"shR":[46,-139.9],"elR":[68,-139.5],"haR":[59.4,-159.4],"shL":[-59.9,-148.4],"elL":[-66.8,-144.3],"haL":[-72.7,-140.8],"hipR":[27.7,3.7],"knR":[12.5,122.2],"ftR":[-2.8,242.3],"hipL":[-25.3,11.8],"knL":[-33.3,134.5],"ftL":[-18.1,216.8]},{"rootY":7.2,"hips":[0,0],"chest":[-10.4,-98.8],"neck":[-5.8,-166.9],"head":[2.4,-202.1],"shR":[46.4,-139.6],"elR":[70.2,-141.9],"haR":[61.1,-165.6],"shL":[-59.6,-149],"elL":[-69.9,-151.1],"haL":[-76.7,-153],"hipR":[27.8,2.8],"knR":[12.2,122.3],"ftR":[-3.3,243.3],"hipL":[-25,12.5],"knL":[-38.3,134.9],"ftL":[-17.2,210.3]},{"rootY":6.1,"hips":[0,0],"chest":[-10.5,-98.6],"neck":[-4.4,-166.6],"head":[4.8,-201.6],"shR":[47.1,-138.6],"elR":[72.1,-143.1],"haR":[63.1,-169.3],"shL":[-59,-149.6],"elL":[-72,-156.4],"haL":[-79,-162.7],"hipR":[27.9,2.1],"knR":[12.4,122.5],"ftR":[-2.6,244.2],"hipL":[-24.6,13.2],"knL":[-43.1,134.2],"ftL":[-17,207]},{"rootY":4.9,"hips":[0,0],"chest":[-10.1,-98.4],"neck":[-2.7,-166.2],"head":[7.3,-201.1],"shR":[48.2,-137.6],"elR":[73.5,-142.8],"haR":[65.2,-169.8],"shL":[-57.9,-151],"elL":[-73,-160.8],"haL":[-80,-170.2],"hipR":[27.9,1.9],"knR":[12.7,122.9],"ftR":[-1.6,245.4],"hipL":[-24.5,13.4],"knL":[-47.1,132.6],"ftL":[-18.2,207.6]},{"rootY":3.6,"hips":[0,0],"chest":[-9.2,-98.2],"neck":[-1.1,-165.9],"head":[9.6,-200.6],"shR":[49.4,-136.8],"elR":[74.3,-141.4],"haR":[67,-167.8],"shL":[-56.5,-152.3],"elL":[-72.9,-164.8],"haL":[-80.1,-176.6],"hipR":[27.9,1.9],"knR":[13,123.4],"ftR":[-1.4,246.6],"hipL":[-24.5,13.3],"knL":[-50.1,130.4],"ftL":[-21.2,211.5]},{"rootY":2.5,"hips":[0,0],"chest":[-7.9,-98.1],"neck":[0.6,-165.7],"head":[11.6,-200.3],"shR":[50.7,-136.3],"elR":[75.1,-139.8],"haR":[68.5,-164.2],"shL":[-55.1,-153],"elL":[-71.9,-168.4],"haL":[-79,-182.4],"hipR":[27.9,2.1],"knR":[13.2,123.9],"ftR":[-1.4,247.6],"hipL":[-24.6,13.2],"knL":[-52.3,127.7],"ftL":[-25.2,217.4]},{"rootY":1.7,"hips":[0,0],"chest":[-6.7,-98],"neck":[2.2,-165.5],"head":[13.3,-200.1],"shR":[52.1,-136.1],"elR":[75.7,-138.2],"haR":[69.7,-159.5],"shL":[-53.7,-153.6],"elL":[-70.4,-171.4],"haL":[-77.1,-187],"hipR":[27.8,2.3],"knR":[13.6,124.3],"ftR":[-1,248.4],"hipL":[-24.7,13.1],"knL":[-53.7,125],"ftL":[-29.5,224.5]},{"rootY":1.2,"hips":[0,0],"chest":[-5.8,-97.9],"neck":[3.5,-165.4],"head":[14.6,-200],"shR":[53.1,-136],"elR":[75.6,-136.5],"haR":[70.5,-153.6],"shL":[-52.5,-154.4],"elL":[-68.8,-173.6],"haL":[-74.9,-190.4],"hipR":[27.8,2.5],"knR":[13.9,124.7],"ftR":[-0.4,249.1],"hipL":[-24.8,12.9],"knL":[-54.3,122.5],"ftL":[-34.2,231.7]},{"rootY":0.8,"hips":[0,0],"chest":[-5.2,-97.9],"neck":[4.2,-165.3],"head":[15.6,-199.8],"shR":[53.7,-136],"elR":[74.8,-134.1],"haR":[71.1,-146.4],"shL":[-51.8,-155.1],"elL":[-67.6,-175.3],"haL":[-72.7,-193.1],"hipR":[27.8,2.6],"knR":[14,125],"ftR":[-0.2,249.5],"hipL":[-24.8,12.7],"knL":[-53.4,120.5],"ftL":[-39.6,237.9]}]},"sit":{"name":"sit","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-77.6],"neck":[-6.9,-77.6],"head":[-11.8,-146],"shR":[-17,-104.6],"elR":[8.8,9.2],"haR":[-16.1,74.9],"shL":[10.1,-102.7],"elL":[23,1.3],"haL":[16.4,71.3],"hipR":[-13.3,38],"knR":[-33,179.8],"ftR":[9.7,332.5],"hipL":[-3.7,38.4],"knL":[-16.3,185.5],"ftL":[32.2,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7,-77.5],"neck":[-7,-77.5],"head":[-12.1,-146],"shR":[-17.1,-104.5],"elR":[8.8,9.4],"haR":[-15.4,75.3],"shL":[9.7,-102.8],"elL":[22.3,1.2],"haL":[15,71],"hipR":[-13.1,38],"knR":[-32.5,179.8],"ftR":[10.3,332.5],"hipL":[-3.7,38.4],"knL":[-15.9,185.6],"ftL":[32.8,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.4,-77.5],"neck":[-7.4,-77.5],"head":[-12.5,-146],"shR":[-17.2,-104.4],"elR":[9,9.5],"haR":[-14.5,75.6],"shL":[9.1,-102.9],"elL":[21.5,1.2],"haL":[13.1,70.8],"hipR":[-13,37.9],"knR":[-32,179.9],"ftR":[10.6,332.6],"hipL":[-3.6,38.5],"knL":[-15.8,185.7],"ftL":[33.4,335.3]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.3,-77.5],"neck":[-7.3,-77.5],"head":[-12.9,-145.9],"shR":[-17.1,-104.2],"elR":[9.6,9.5],"haR":[-14,75.7],"shL":[8.9,-103.1],"elL":[20.9,0.9],"haL":[11.2,70.4],"hipR":[-12.6,38.3],"knR":[-31.8,180.2],"ftR":[11.3,332.8],"hipL":[-3.4,38.3],"knL":[-15,185.5],"ftL":[34.1,335.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.7,-77.5],"neck":[-7.7,-77.5],"head":[-13.6,-145.9],"shR":[-17.2,-104],"elR":[9,10],"haR":[-13.8,76.3],"shL":[8.2,-103.2],"elL":[19.9,0.9],"haL":[8.7,70.2],"hipR":[-12.6,38],"knR":[-31.9,179.9],"ftR":[11.5,332.4],"hipL":[-3.6,38.5],"knL":[-14.7,185.7],"ftL":[34.5,335.4]},{"rootY":0,"hips":[0,0],"chest":[-7.6,-77.5],"neck":[-7.6,-77.5],"head":[-14.3,-145.8],"shR":[-16.3,-103.8],"elR":[9.5,10.4],"haR":[-13.1,76.8],"shL":[7.3,-103.6],"elL":[19.2,0.5],"haL":[6.2,69.6],"hipR":[-12.4,38.1],"knR":[-31.8,179.9],"ftR":[12.1,332.3],"hipL":[-3.7,38.4],"knL":[-14.2,185.7],"ftL":[35.3,335.3]},{"rootY":0.1,"hips":[0,0],"chest":[-7.2,-77.5],"neck":[-7.2,-77.5],"head":[-14.5,-145.6],"shR":[-15,-103.8],"elR":[10,10.6],"haR":[-12.9,76.9],"shL":[6.7,-103.6],"elL":[18.8,0.5],"haL":[4.1,69.1],"hipR":[-12.2,38.2],"knR":[-31.6,180],"ftR":[12.8,332.3],"hipL":[-3.8,38.3],"knL":[-13.6,185.7],"ftL":[36.2,335.2]},{"rootY":0.2,"hips":[0,0],"chest":[-6.8,-77.6],"neck":[-6.8,-77.6],"head":[-15,-145.4],"shR":[-13.1,-103.5],"elR":[10.3,11.4],"haR":[-12.9,77.6],"shL":[5.6,-104],"elL":[19.4,-0.1],"haL":[2.7,68.1],"hipR":[-11.9,38.3],"knR":[-31.7,180],"ftR":[13.5,332.2],"hipL":[-4.3,38.2],"knL":[-12.8,185.6],"ftL":[37.5,335]},{"rootY":0.3,"hips":[0,0],"chest":[-6.7,-77.6],"neck":[-6.7,-77.6],"head":[-16,-145],"shR":[-10.9,-103.4],"elR":[10.8,11.9],"haR":[-13.5,77.6],"shL":[3.7,-104],"elL":[18.2,-0.3],"haL":[-0.2,67.5],"hipR":[-11.5,38.3],"knR":[-31.7,179.9],"ftR":[13.8,332],"hipL":[-4.9,38.2],"knL":[-12.6,185.6],"ftL":[38.3,334.8]},{"rootY":0.5,"hips":[0,0],"chest":[-6.3,-77.6],"neck":[-6.3,-77.6],"head":[-16.6,-144.7],"shR":[-7.9,-103.3],"elR":[12.7,12.4],"haR":[-13.1,77.4],"shL":[1.6,-104.2],"elL":[16.9,-0.6],"haL":[-2.9,66.8],"hipR":[-10.8,38.3],"knR":[-31.3,179.8],"ftR":[15,331.8],"hipL":[-5.5,38.2],"knL":[-12,185.7],"ftL":[39.5,334.6]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-77.7],"neck":[-5.8,-77.7],"head":[-17.1,-144.5],"shR":[-4.9,-103.2],"elR":[15.1,12.8],"haR":[-12.6,77],"shL":[-0.5,-104.4],"elL":[15.1,-0.8],"haL":[-5.6,66.4],"hipR":[-10.1,38.4],"knR":[-31.4,179.8],"ftR":[15.8,331.6],"hipL":[-6.4,38],"knL":[-11.3,185.6],"ftL":[41.1,334.2]},{"rootY":1,"hips":[0,0],"chest":[-5.1,-77.7],"neck":[-5.1,-77.7],"head":[-17.2,-144.4],"shR":[-1.8,-103.3],"elR":[17.9,12.8],"haR":[-11.8,76],"shL":[-2.3,-104.3],"elL":[13.5,-0.8],"haL":[-7.6,66.4],"hipR":[-9.3,37.9],"knR":[-30.4,179.4],"ftR":[17.3,331.2],"hipL":[-7.4,38.5],"knL":[-11.4,186.1],"ftL":[43.1,333.9]},{"rootY":1.5,"hips":[0,0],"chest":[-4.4,-77.7],"neck":[-4.4,-77.7],"head":[-17.1,-144.3],"shR":[1.7,-103.1],"elR":[21.5,13.1],"haR":[-9.8,75.4],"shL":[-4.5,-104.6],"elL":[11.8,-1.2],"haL":[-9,66.2],"hipR":[-8.4,37.8],"knR":[-30,179.3],"ftR":[18.4,330.9],"hipL":[-8.5,38.5],"knL":[-11.4,186.2],"ftL":[44.5,333.4]},{"rootY":1.8,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[-16.7,-144.2],"shR":[5.3,-102.6],"elR":[25.2,13.6],"haR":[-7.5,75.1],"shL":[-6.8,-105.2],"elL":[9,-1.8],"haL":[-11.1,65.8],"hipR":[-7.5,37.8],"knR":[-29.4,179.3],"ftR":[19.9,330.6],"hipL":[-9.7,38.4],"knL":[-11.6,186.1],"ftL":[46,332.7]},{"rootY":2.3,"hips":[0,0],"chest":[-3.2,-77.8],"neck":[-3.2,-77.8],"head":[-16.7,-144.2],"shR":[9.2,-102.3],"elR":[28.9,14],"haR":[-4.3,74.9],"shL":[-10,-105.6],"elL":[5.6,-2.2],"haL":[-13.7,65.6],"hipR":[-6.7,37.6],"knR":[-28.7,179],"ftR":[21,330.2],"hipL":[-10.4,38.7],"knL":[-13.4,186.3],"ftL":[46.7,331.8]},{"rootY":2.8,"hips":[0,0],"chest":[-2.5,-77.8],"neck":[-2.5,-77.8],"head":[-16.2,-144.2],"shR":[11.9,-102.2],"elR":[31.8,14.2],"haR":[-1.3,74.9],"shL":[-11.6,-105.7],"elL":[4,-2.4],"haL":[-14.9,65.4],"hipR":[-6.2,37.7],"knR":[-28.5,179.1],"ftR":[22.6,329.9],"hipL":[-11.5,38.4],"knL":[-15.2,185.9],"ftL":[47.4,330.4]},{"rootY":3.4,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-15.8,-144.2],"shR":[13.9,-102.3],"elR":[33.7,14.2],"haR":[1.5,75],"shL":[-12.7,-105.7],"elL":[2.6,-2.4],"haL":[-16.2,65.4],"hipR":[-5.6,37.4],"knR":[-27.7,178.8],"ftR":[24.1,329.4],"hipL":[-12.3,38.6],"knL":[-19,185.9],"ftL":[47.6,328.5]},{"rootY":3.8,"hips":[0,0],"chest":[-1.8,-77.8],"neck":[-1.8,-77.8],"head":[-15.8,-144.1],"shR":[15.5,-102.4],"elR":[36,14.1],"haR":[5.2,75.1],"shL":[-13.9,-105.5],"elL":[1.3,-2.3],"haL":[-17.8,65.5],"hipR":[-4.9,37.1],"knR":[-27.2,178.5],"ftR":[25.2,328.8],"hipL":[-13.2,38.8],"knL":[-23.8,185.7],"ftL":[47.7,326]},{"rootY":3.9,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-15.9,-144],"shR":[16.9,-102],"elR":[38.4,14.4],"haR":[9.5,76],"shL":[-15.4,-105.9],"elL":[-0.8,-2.7],"haL":[-20.5,64.8],"hipR":[-4.9,37.3],"knR":[-26.2,178.9],"ftR":[26.6,329.1],"hipL":[-13.8,38.5],"knL":[-30.8,184.5],"ftL":[47.1,321.4]},{"rootY":4.6,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-16.2,-143.9],"shR":[17.4,-101.8],"elR":[40.1,14.3],"haR":[13.7,76.8],"shL":[-16,-106.1],"elL":[-2.1,-2.8],"haL":[-22.9,64.3],"hipR":[-5,37.2],"knR":[-26,178.7],"ftR":[27.9,328.5],"hipL":[-13.9,38.5],"knL":[-38.2,183.4],"ftL":[45.4,316.8]},{"rootY":4.9,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-16.8,-143.7],"shR":[17.5,-101.6],"elR":[42.1,14.2],"haR":[18.4,77.6],"shL":[-16.7,-106.3],"elL":[-2.9,-3.1],"haL":[-25.2,63.6],"hipR":[-4.8,37.1],"knR":[-25.4,178.7],"ftR":[29.1,328.2],"hipL":[-14.4,38.5],"knL":[-46.9,181.6],"ftL":[42.3,311.3]},{"rootY":5.1,"hips":[0,0],"chest":[-2.1,-77.7],"neck":[-2.1,-77.7],"head":[-17.2,-143.6],"shR":[17.5,-101.6],"elR":[44,13.8],"haR":[22.9,78.1],"shL":[-17.1,-106.3],"elL":[-2.9,-3.2],"haL":[-27.1,63],"hipR":[-4.5,36.7],"knR":[-24.1,178.4],"ftR":[30.5,327.8],"hipL":[-14.9,38.8],"knL":[-55.6,179.7],"ftL":[38,306.1]},{"rootY":5.3,"hips":[0,0],"chest":[-2.4,-77.7],"neck":[-2.4,-77.7],"head":[-17.9,-143.5],"shR":[17.1,-101.8],"elR":[45.7,13.1],"haR":[27,78.3],"shL":[-17.6,-106],"elL":[-2.8,-3],"haL":[-28.8,62.5],"hipR":[-4.1,37],"knR":[-23.6,178.7],"ftR":[31.9,327.7],"hipL":[-15.6,38.5],"knL":[-63.1,177.4],"ftL":[32.5,302]},{"rootY":5.6,"hips":[0,0],"chest":[-2.8,-77.6],"neck":[-2.8,-77.6],"head":[-18.9,-143.3],"shR":[16.5,-101.8],"elR":[46.7,12.6],"haR":[30.3,78.6],"shL":[-18,-105.9],"elL":[-2.3,-3],"haL":[-29.6,62.1],"hipR":[-3.6,37.2],"knR":[-23.5,178.8],"ftR":[33,327.4],"hipL":[-16.3,38.2],"knL":[-70.1,175.1],"ftL":[24.9,300]},{"rootY":5.9,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[-19.6,-143.1],"shR":[16.2,-102],"elR":[47.7,12.1],"haR":[33.2,78.6],"shL":[-18.5,-105.6],"elL":[-1.9,-2.9],"haL":[-29.9,62],"hipR":[-3.1,37.2],"knR":[-23.2,178.9],"ftR":[34.6,326.9],"hipL":[-16.7,38.2],"knL":[-75.9,173.1],"ftL":[16.3,299.7]},{"rootY":6.2,"hips":[0,0],"chest":[-3.5,-77.5],"neck":[-3.5,-77.5],"head":[-20.6,-142.9],"shR":[15.8,-102.1],"elR":[48.7,11.6],"haR":[35.6,78.4],"shL":[-19.6,-105.5],"elL":[-1.6,-3],"haL":[-29.8,61.8],"hipR":[-2.7,37.4],"knR":[-22.9,178.9],"ftR":[36.3,326.5],"hipL":[-17.2,38],"knL":[-80.7,171.2],"ftL":[6.4,301.2]},{"rootY":6.5,"hips":[0,0],"chest":[-4,-77.5],"neck":[-4,-77.5],"head":[-21.6,-142.7],"shR":[15.5,-102.2],"elR":[49.5,11.1],"haR":[37.2,78.1],"shL":[-20.7,-105.2],"elL":[-1.5,-3],"haL":[-29.2,62.1],"hipR":[-2.3,37.4],"knR":[-22,179],"ftR":[38,326.1],"hipL":[-17.6,38],"knL":[-84.4,169.6],"ftL":[-4.7,304]},{"rootY":6.7,"hips":[0,0],"chest":[-4.5,-77.5],"neck":[-4.5,-77.5],"head":[-22.8,-142.5],"shR":[15.1,-102.5],"elR":[49.7,10.6],"haR":[38,77.6],"shL":[-21.7,-104.9],"elL":[-1.6,-2.8],"haL":[-28.2,62.8],"hipR":[-1.7,37.3],"knR":[-20.7,179],"ftR":[40.2,325.7],"hipL":[-17.9,38.1],"knL":[-86.5,168.8],"ftL":[-16.7,308.5]},{"rootY":7.1,"hips":[0,0],"chest":[-4.9,-77.5],"neck":[-4.9,-77.5],"head":[-23.8,-142.3],"shR":[14.9,-102.9],"elR":[49.9,10.1],"haR":[38.4,76.9],"shL":[-22.9,-104.4],"elL":[-1.9,-2.5],"haL":[-26.7,63.8],"hipR":[-1,37.2],"knR":[-18.7,179.1],"ftR":[41.8,325.8],"hipL":[-18,38.3],"knL":[-87.9,168.1],"ftL":[-30.3,313.4]},{"rootY":6.4,"hips":[0,0],"chest":[-5.4,-77.4],"neck":[-5.4,-77.4],"head":[-25,-142],"shR":[14.7,-103.2],"elR":[50.1,9.7],"haR":[38.4,76.2],"shL":[-24.3,-104],"elL":[-2.5,-2.3],"haL":[-25.2,64.7],"hipR":[-0.2,37.1],"knR":[-16.6,179.1],"ftR":[44.8,325.5],"hipL":[-18.1,38.5],"knL":[-87,168.8],"ftL":[-43.9,319.2]},{"rootY":5.8,"hips":[0,0],"chest":[-6,-77.4],"neck":[-6,-77.4],"head":[-26.2,-141.7],"shR":[15,-103.4],"elR":[50.7,9.4],"haR":[38.7,75.7],"shL":[-26.6,-103.8],"elL":[-4.1,-2.2],"haL":[-24.4,65.6],"hipR":[0.7,37.1],"knR":[-14.1,179.4],"ftR":[47.3,325.6],"hipL":[-18.4,38.7],"knL":[-85.7,169.5],"ftL":[-57.6,323.8]},{"rootY":5.2,"hips":[0,0],"chest":[-6.4,-77.4],"neck":[-6.4,-77.4],"head":[-27.4,-141.5],"shR":[15.1,-104],"elR":[51.2,8.7],"haR":[38.4,74.7],"shL":[-28.4,-103.2],"elL":[-5.1,-1.7],"haL":[-23,66.7],"hipR":[1.7,36.9],"knR":[-10.4,179.5],"ftR":[49.9,326.1],"hipL":[-18.6,38.9],"knL":[-83.7,170.7],"ftL":[-69,327.1]},{"rootY":5,"hips":[0,0],"chest":[-6.9,-77.4],"neck":[-6.9,-77.4],"head":[-28.6,-141.3],"shR":[14.9,-104.8],"elR":[51.9,7.5],"haR":[38,73.1],"shL":[-30,-102.2],"elL":[-5.9,-0.9],"haL":[-21.4,68.1],"hipR":[2.6,36.9],"knR":[-7.1,179.7],"ftR":[52.9,326.2],"hipL":[-18.9,39],"knL":[-82.7,171.2],"ftL":[-78.6,328.6]},{"rootY":4.7,"hips":[0,0],"chest":[-7.4,-77.3],"neck":[-7.4,-77.3],"head":[-29.8,-141],"shR":[14.6,-105.5],"elR":[52.5,6.4],"haR":[37.5,71.5],"shL":[-31.5,-101.3],"elL":[-6.6,-0.1],"haL":[-20.2,69.3],"hipR":[3.3,37],"knR":[-4.1,179.8],"ftR":[55.8,326.2],"hipL":[-19.1,39],"knL":[-80,172.3],"ftL":[-83.9,329.8]},{"rootY":4.7,"hips":[0,0],"chest":[-8,-77.3],"neck":[-8,-77.3],"head":[-31.2,-140.8],"shR":[14.2,-106.3],"elR":[53.3,5.1],"haR":[37.2,69.8],"shL":[-32.9,-100.3],"elL":[-7.7,0.8],"haL":[-19.4,70.5],"hipR":[4,36.6],"knR":[-0.7,179.5],"ftR":[59,325.9],"hipL":[-19,39.4],"knL":[-79.3,172.8],"ftL":[-87,330.2]},{"rootY":5,"hips":[0,0],"chest":[-8.7,-77.3],"neck":[-8.7,-77.3],"head":[-32.6,-140.5],"shR":[13.9,-106.9],"elR":[53.8,4.2],"haR":[36.8,68.5],"shL":[-34.7,-99.5],"elL":[-9,1.6],"haL":[-19.5,71.4],"hipR":[4.7,36.4],"knR":[2.2,179.4],"ftR":[62.2,325.4],"hipL":[-18.8,39.7],"knL":[-78.1,173.4],"ftL":[-86.2,330.7]},{"rootY":5.7,"hips":[0,0],"chest":[-9.5,-77.2],"neck":[-9.5,-77.2],"head":[-34.1,-140.1],"shR":[12,-108.2],"elR":[53.5,2.2],"haR":[36.2,66.2],"shL":[-35.2,-97.7],"elL":[-9.4,3.4],"haL":[-19.1,73.4],"hipR":[5.1,36.3],"knR":[4.4,179.2],"ftR":[66.2,324.5],"hipL":[-18.7,39.9],"knL":[-76.5,174],"ftL":[-82,331.5]},{"rootY":5.8,"hips":[0,0],"chest":[-10.4,-77.1],"neck":[-10.4,-77.1],"head":[-35.8,-139.7],"shR":[10.6,-109.1],"elR":[53.2,0.8],"haR":[36.3,64.7],"shL":[-36.3,-96.4],"elL":[-10.3,4.7],"haL":[-19.7,74.9],"hipR":[5.5,36.2],"knR":[6.6,179.1],"ftR":[69.3,323.8],"hipL":[-18.3,40.1],"knL":[-74.9,174.8],"ftL":[-77.8,332.4]},{"rootY":5,"hips":[0,0],"chest":[-11.4,-77],"neck":[-11.4,-77],"head":[-37.8,-139.1],"shR":[8.6,-110.2],"elR":[52.5,-0.9],"haR":[36.3,63.1],"shL":[-36.8,-94.7],"elL":[-10.8,6.5],"haL":[-20.2,76.7],"hipR":[5.6,36.3],"knR":[8.8,179],"ftR":[73.4,323.1],"hipL":[-17.8,40.2],"knL":[-73.6,175.3],"ftL":[-74.5,332.8]},{"rootY":4.1,"hips":[0,0],"chest":[-12.5,-76.8],"neck":[-12.5,-76.8],"head":[-40,-138.3],"shR":[6.3,-110.9],"elR":[51.5,-2.2],"haR":[36.4,61.9],"shL":[-37.3,-93.4],"elL":[-10.8,7.8],"haL":[-21,78],"hipR":[5.5,36.5],"knR":[9.6,179.2],"ftR":[76.7,322],"hipL":[-17.4,40.1],"knL":[-71.2,176.1],"ftL":[-70.1,333.7]},{"rootY":3.3,"hips":[0,0],"chest":[-13.2,-76.7],"neck":[-13.2,-76.7],"head":[-41.5,-137.6],"shR":[3.9,-111.9],"elR":[50.9,-4.3],"haR":[36.8,60.2],"shL":[-36.6,-91.7],"elL":[-9.8,9.5],"haL":[-21.2,79.6],"hipR":[5.8,36.4],"knR":[11,179],"ftR":[80.3,320.8],"hipL":[-16.7,40.4],"knL":[-68.9,177.1],"ftL":[-65.5,334.6]},{"rootY":2.5,"hips":[0,0],"chest":[-13.7,-76.5],"neck":[-13.7,-76.5],"head":[-42.7,-137],"shR":[2.3,-112.5],"elR":[51.8,-6.1],"haR":[38.3,58.7],"shL":[-36.4,-90.7],"elL":[-8.9,10.3],"haL":[-21.9,80.3],"hipR":[6,36.2],"knR":[13.5,178.9],"ftR":[84.2,319.8],"hipL":[-16.4,40.6],"knL":[-66.9,178],"ftL":[-60.6,335.4]},{"rootY":1.7,"hips":[0,0],"chest":[-13.8,-76.5],"neck":[-13.8,-76.5],"head":[-43.5,-136.4],"shR":[1.5,-112.9],"elR":[52.8,-7.9],"haR":[39.8,57.2],"shL":[-35.9,-89.9],"elL":[-7.8,11],"haL":[-22.7,80.7],"hipR":[6.4,35.9],"knR":[16.9,178.4],"ftR":[88.8,318.9],"hipL":[-16.3,40.8],"knL":[-64.4,179],"ftL":[-55.4,336.3]},{"rootY":0.8,"hips":[0,0],"chest":[-13.5,-76.5],"neck":[-13.5,-76.5],"head":[-43.6,-136.1],"shR":[1.6,-113.5],"elR":[53.2,-9.1],"haR":[40.7,56],"shL":[-35.3,-89.1],"elL":[-6.8,11.7],"haL":[-23.5,81],"hipR":[6.5,35.8],"knR":[19.7,178.4],"ftR":[93.3,317.9],"hipL":[-16.5,40.9],"knL":[-61.3,180],"ftL":[-49.3,337.1]},{"rootY":0.4,"hips":[0,0],"chest":[-13.1,-76.5],"neck":[-13.1,-76.5],"head":[-43.2,-135.9],"shR":[1.8,-114],"elR":[52.9,-9.7],"haR":[40.9,55.2],"shL":[-34.3,-88.6],"elL":[-5.8,12.3],"haL":[-24,81.3],"hipR":[6.6,35.8],"knR":[21.3,178.3],"ftR":[98.1,316.1],"hipL":[-16.7,40.9],"knL":[-58,181],"ftL":[-42.9,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[-12.4,-76.6],"neck":[-12.4,-76.6],"head":[-42.4,-135.8],"shR":[2.7,-114.6],"elR":[52.3,-10],"haR":[40.4,54.4],"shL":[-33.4,-87.9],"elL":[-5.4,13.1],"haL":[-24.6,81.8],"hipR":[6.8,36],"knR":[20.9,178.7],"ftR":[101.8,314.1],"hipL":[-16.9,40.7],"knL":[-55,181.8],"ftL":[-36.5,338.1]},{"rootY":0.2,"hips":[0,0],"chest":[-11.9,-76.6],"neck":[-11.9,-76.6],"head":[-41.6,-135.9],"shR":[3.3,-114.9],"elR":[51.6,-9.8],"haR":[39.2,53.7],"shL":[-32.6,-87.6],"elL":[-5.4,13.6],"haL":[-25.2,82.2],"hipR":[6.7,36.3],"knR":[18.5,179.4],"ftR":[104.6,311.6],"hipL":[-17.4,40.4],"knL":[-53.7,181.9],"ftL":[-31.1,337.7]},{"rootY":0.6,"hips":[0,0],"chest":[-11.4,-76.7],"neck":[-11.4,-76.7],"head":[-40.8,-136],"shR":[4.6,-115.1],"elR":[51.3,-9.6],"haR":[37.8,53.2],"shL":[-32.8,-87.3],"elL":[-6.6,14.2],"haL":[-26.8,82.7],"hipR":[6.3,36.3],"knR":[13.9,180],"ftR":[105.4,308.4],"hipL":[-17.8,40.3],"knL":[-53,182.1],"ftL":[-26.5,337.3]},{"rootY":0.8,"hips":[0,0],"chest":[-11.3,-76.7],"neck":[-11.3,-76.7],"head":[-40.4,-136.1],"shR":[5.1,-115.3],"elR":[50.3,-9.3],"haR":[35,52.6],"shL":[-32.5,-87.1],"elL":[-7.9,14.8],"haL":[-28.1,83.3],"hipR":[5.9,36.6],"knR":[7.2,180.6],"ftR":[103.7,305.4],"hipL":[-18.5,39.8],"knL":[-52.3,182],"ftL":[-22.6,336.7]},{"rootY":1.3,"hips":[0,0],"chest":[-10.8,-76.7],"neck":[-10.8,-76.7],"head":[-39.8,-136.2],"shR":[6,-115.5],"elR":[49.1,-8.9],"haR":[32.1,52.3],"shL":[-32.3,-86.8],"elL":[-9.1,15.4],"haL":[-29.5,83.9],"hipR":[5.4,37.1],"knR":[0.1,180.9],"ftR":[100.9,302.5],"hipL":[-19.2,39.3],"knL":[-50.9,182],"ftL":[-18.4,336.1]},{"rootY":1.4,"hips":[0,0],"chest":[-10.3,-76.7],"neck":[-10.3,-76.7],"head":[-39.1,-136.3],"shR":[7.1,-115.5],"elR":[48.6,-8.5],"haR":[29.6,52],"shL":[-32,-86.9],"elL":[-10.4,15.7],"haL":[-31.1,84.1],"hipR":[4.9,37.3],"knR":[-6.5,180.7],"ftR":[97.1,300.1],"hipL":[-19.7,39],"knL":[-49.6,182.1],"ftL":[-14.6,335.6]},{"rootY":1.7,"hips":[0,0],"chest":[-9.7,-76.8],"neck":[-9.7,-76.8],"head":[-38.3,-136.4],"shR":[8.1,-115.5],"elR":[48.4,-8.1],"haR":[27.3,51.7],"shL":[-31.4,-86.9],"elL":[-11.2,15.9],"haL":[-32.6,84.1],"hipR":[4.3,37.1],"knR":[-12.6,179.9],"ftR":[91.2,299.1],"hipL":[-19.7,38.9],"knL":[-48.3,182.4],"ftL":[-10.8,335.3]},{"rootY":2,"hips":[0,0],"chest":[-9.2,-76.8],"neck":[-9.2,-76.8],"head":[-37.6,-136.4],"shR":[8.5,-115.4],"elR":[48.2,-7.8],"haR":[25.3,51.5],"shL":[-30.2,-87.1],"elL":[-11.3,16],"haL":[-33.8,83.8],"hipR":[3.4,37],"knR":[-18.5,179],"ftR":[83,300.1],"hipL":[-19.4,38.9],"knL":[-47.1,182.6],"ftL":[-7.2,335]},{"rootY":2.6,"hips":[0,0],"chest":[-8.8,-76.8],"neck":[-8.8,-76.8],"head":[-36.9,-136.5],"shR":[8.6,-115.2],"elR":[48.2,-7.4],"haR":[23.9,51.4],"shL":[-29.1,-87.3],"elL":[-11.2,16],"haL":[-34.9,83.4],"hipR":[2.5,36.9],"knR":[-24.3,177.9],"ftR":[72.2,303.1],"hipL":[-19.2,38.9],"knL":[-46.8,182.7],"ftL":[-4.6,334.4]},{"rootY":3.2,"hips":[0,0],"chest":[-8.4,-76.8],"neck":[-8.4,-76.8],"head":[-36.6,-136.6],"shR":[8.2,-115.1],"elR":[47.8,-7.2],"haR":[22.7,51.5],"shL":[-27.7,-87.4],"elL":[-11,16.1],"haL":[-36.2,82.9],"hipR":[1.8,36.7],"knR":[-30,176.5],"ftR":[59.5,306.9],"hipL":[-18.9,39],"knL":[-46,182.8],"ftL":[-1.5,333.8]},{"rootY":4,"hips":[0,0],"chest":[-8.2,-76.7],"neck":[-8.2,-76.7],"head":[-36.3,-136.5],"shR":[7.7,-115.1],"elR":[47.3,-7.1],"haR":[21.6,51.8],"shL":[-26.4,-87.4],"elL":[-9.8,16.1],"haL":[-36.6,82.3],"hipR":[1,37],"knR":[-35.4,175.3],"ftR":[45.9,311.1],"hipL":[-18.8,38.7],"knL":[-45.6,182.6],"ftL":[1.7,332.8]},{"rootY":4.8,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.5,-136.4],"shR":[6.5,-115],"elR":[46.2,-7],"haR":[20.1,52],"shL":[-25.3,-87.3],"elL":[-8.7,16.1],"haL":[-37,81.7],"hipR":[0,37.5],"knR":[-41.5,173.8],"ftR":[31.3,314.6],"hipL":[-18.5,38.2],"knL":[-44.8,182.4],"ftL":[3.5,332.2]},{"rootY":4.9,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.7,-136.3],"shR":[5.5,-114.8],"elR":[45.1,-6.9],"haR":[18.9,52.5],"shL":[-24.1,-87.6],"elL":[-7.7,15.9],"haL":[-36.9,81],"hipR":[-0.8,37.7],"knR":[-46.9,172.3],"ftR":[17.6,317.5],"hipL":[-18.3,37.9],"knL":[-42.9,182.5],"ftL":[5.8,332.2]},{"rootY":4.5,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.8,-136.1],"shR":[4.3,-114.9],"elR":[44.1,-7.1],"haR":[17.6,52.4],"shL":[-22.5,-87.5],"elL":[-6.7,16],"haL":[-36.4,80.9],"hipR":[-1.6,37.8],"knR":[-51.5,170.8],"ftR":[4.5,319.8],"hipL":[-17.9,37.7],"knL":[-40.5,182.8],"ftL":[8,332.6]},{"rootY":4.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.6,-136],"shR":[3.3,-114.6],"elR":[43.6,-7.2],"haR":[16.8,52.4],"shL":[-21.2,-87.8],"elL":[-5.3,15.7],"haL":[-35.1,80.4],"hipR":[-2.2,38.3],"knR":[-55.9,169.6],"ftR":[-8.8,321.7],"hipL":[-17.2,37.4],"knL":[-37.6,182.9],"ftL":[10.1,333]},{"rootY":3.7,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[1.6,-114.4],"elR":[42,-7.3],"haR":[15,52.4],"shL":[-18.9,-88.1],"elL":[-2.6,15.3],"haL":[-31.8,80.2],"hipR":[-3.2,38.4],"knR":[-59.3,168.7],"ftR":[-21.4,322.8],"hipL":[-16.3,37.3],"knL":[-35,183.2],"ftL":[12.2,333.5]},{"rootY":3.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[0.2,-114.1],"elR":[40.4,-7.1],"haR":[13.2,52.7],"shL":[-17.3,-88.6],"elL":[-0.5,14.7],"haL":[-28.7,79.9],"hipR":[-4.6,38.2],"knR":[-61.7,168.1],"ftR":[-32.9,323.4],"hipL":[-15.4,37.4],"knL":[-32.6,183.7],"ftL":[14.3,334]},{"rootY":2.2,"hips":[0,0],"chest":[-8.6,-76.6],"neck":[-8.6,-76.6],"head":[-36.3,-136.1],"shR":[-1.3,-113.9],"elR":[38.6,-7],"haR":[11.5,52.8],"shL":[-15.6,-88.9],"elL":[1.8,14.4],"haL":[-25,80],"hipR":[-5.7,38.2],"knR":[-63.6,167.7],"ftR":[-43.6,323.4],"hipL":[-14.2,37.4],"knL":[-29.4,184.1],"ftL":[16.7,334.7]},{"rootY":1.6,"hips":[0,0],"chest":[-8.7,-76.7],"neck":[-8.7,-76.7],"head":[-36.1,-136.2],"shR":[-3.3,-113.7],"elR":[36.6,-7.1],"haR":[9.5,52.8],"shL":[-13.1,-89.2],"elL":[5.2,13.8],"haL":[-19.9,79.9],"hipR":[-6.8,37.9],"knR":[-64.4,167.7],"ftR":[-52.5,323.2],"hipL":[-12.7,37.8],"knL":[-26.1,184.7],"ftL":[19.2,335.5]},{"rootY":1.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-35.7,-136.2],"shR":[-5.3,-113.3],"elR":[34.4,-7.1],"haR":[7.2,53.2],"shL":[-10.4,-89.7],"elL":[8.9,13.2],"haL":[-14.5,79.7],"hipR":[-8.1,37.7],"knR":[-64.7,168],"ftR":[-59.4,322.6],"hipL":[-11.3,38],"knL":[-22.6,185.2],"ftL":[21.5,336.4]},{"rootY":0.8,"hips":[0,0],"chest":[-8,-76.5],"neck":[-8,-76.5],"head":[-34.9,-136.2],"shR":[-6.9,-112.8],"elR":[32.3,-6.8],"haR":[5.2,53.8],"shL":[-7.4,-90.2],"elL":[13,12.5],"haL":[-8.3,79.5],"hipR":[-9.2,39],"knR":[-65.3,169.7],"ftR":[-64.2,322.3],"hipL":[-9.3,37],"knL":[-16.4,184.5],"ftL":[24.6,336.5]},{"rootY":0.4,"hips":[0,0],"chest":[-7.7,-76.6],"neck":[-7.7,-76.6],"head":[-34.2,-136.3],"shR":[-9,-112.4],"elR":[29.5,-6.5],"haR":[2.5,54.4],"shL":[-4,-90.9],"elL":[17.5,11.6],"haL":[-1.5,78.9],"hipR":[-10.6,38.7],"knR":[-63.1,171.1],"ftR":[-67.4,322.4],"hipL":[-7.5,37.3],"knL":[-13.7,184.8],"ftL":[28.1,336.6]},{"rootY":0.7,"hips":[0,0],"chest":[-7.5,-76.7],"neck":[-7.5,-76.7],"head":[-33.4,-136.5],"shR":[-11,-112.2],"elR":[26.8,-6.5],"haR":[-0.2,54.7],"shL":[-1,-91.4],"elL":[21.5,10.9],"haL":[5,78.5],"hipR":[-12.6,38.1],"knR":[-61.4,172],"ftR":[-68.3,322.7],"hipL":[-6.2,37.8],"knL":[-11.7,185.2],"ftL":[31.5,336.5]},{"rootY":1.4,"hips":[0,0],"chest":[-7,-76.8],"neck":[-7,-76.8],"head":[-32.2,-136.6],"shR":[-13.4,-112],"elR":[23.5,-6.4],"haR":[-3.4,55.3],"shL":[3.1,-91.9],"elL":[26.8,10.1],"haL":[12.7,77.9],"hipR":[-14.2,37.8],"knR":[-59.6,173.3],"ftR":[-66.6,323.6],"hipL":[-4.4,38.1],"knL":[-9.4,185.4],"ftL":[35.6,336]},{"rootY":2.3,"hips":[0,0],"chest":[-6.3,-76.9],"neck":[-6.3,-76.9],"head":[-30.7,-136.9],"shR":[-15.5,-111.9],"elR":[20.7,-6.4],"haR":[-6.2,55.7],"shL":[7.3,-92.4],"elL":[31.9,9.4],"haL":[20.5,77.2],"hipR":[-15.8,37.9],"knR":[-57.2,174.9],"ftR":[-61.1,325.3],"hipL":[-2.2,38.2],"knL":[-6.9,185.2],"ftL":[40,335.1]},{"rootY":3.4,"hips":[0,0],"chest":[-5.9,-77],"neck":[-5.9,-77],"head":[-29.8,-137.1],"shR":[-17.9,-111.6],"elR":[17.3,-6.1],"haR":[-9.6,56.4],"shL":[11.4,-92.8],"elL":[37.5,8.6],"haL":[28.4,76.3],"hipR":[-17.1,38.5],"knR":[-54.9,177],"ftR":[-54.8,327.5],"hipL":[0.5,37.7],"knL":[-2.5,184.5],"ftL":[44.3,334.1]},{"rootY":4.4,"hips":[0,0],"chest":[-6.1,-77],"neck":[-6.1,-77],"head":[-29,-137.1],"shR":[-21.6,-111],"elR":[12.7,-5.7],"haR":[-13.9,57.4],"shL":[15.3,-93.8],"elL":[42.6,7.3],"haL":[35.7,74.7],"hipR":[-18.5,38.5],"knR":[-52.6,178.2],"ftR":[-48.9,329.4],"hipL":[2.4,37.9],"knL":[0.9,184.1],"ftL":[48.2,333.3]},{"rootY":5.1,"hips":[0,0],"chest":[-6.8,-77.1],"neck":[-6.8,-77.1],"head":[-29,-137.1],"shR":[-25.5,-110.8],"elR":[7.3,-5.4],"haR":[-18.7,58.4],"shL":[18.1,-94.2],"elL":[47,6.4],"haL":[42.1,73.1],"hipR":[-19.5,38.7],"knR":[-50.7,179.2],"ftR":[-43.7,330.6],"hipL":[4,37.7],"knL":[4.4,183.4],"ftL":[52.1,332.2]},{"rootY":5.2,"hips":[0,0],"chest":[-8.5,-77],"neck":[-8.5,-77],"head":[-31,-136.7],"shR":[-30.3,-109.3],"elR":[0.3,-4.1],"haR":[-24.8,60.5],"shL":[19,-95.8],"elL":[49.6,4.3],"haL":[46.4,70.5],"hipR":[-20.5,38.6],"knR":[-52.2,179],"ftR":[-42.4,330.6],"hipL":[5.2,37.8],"knL":[5.2,183.1],"ftL":[53.9,331.2]},{"rootY":5,"hips":[0,0],"chest":[-10.1,-76.8],"neck":[-10.1,-76.8],"head":[-33.2,-136.5],"shR":[-35,-107.8],"elR":[-6.9,-2.8],"haR":[-31.5,62.2],"shL":[19.6,-97.4],"elL":[52.7,2],"haL":[50.5,67.8],"hipR":[-21.7,38.2],"knR":[-52.4,178.7],"ftR":[-40.7,330.6],"hipL":[6.9,38.3],"knL":[4,182.8],"ftL":[54.7,330.4]},{"rootY":3.9,"hips":[0,0],"chest":[-11.1,-76.7],"neck":[-11.1,-76.7],"head":[-34.8,-136],"shR":[-39.3,-106.4],"elR":[-13.7,-1.4],"haR":[-38.4,63.6],"shL":[21.5,-98.8],"elL":[57.4,-0.4],"haL":[56.1,65.2],"hipR":[-22.4,39.2],"knR":[-50.7,179.9],"ftR":[-38.3,331.5],"hipL":[9.8,37.5],"knL":[5.4,181.3],"ftL":[54.6,329.5]},{"rootY":2.9,"hips":[0,0],"chest":[-12.2,-76.5],"neck":[-12.2,-76.5],"head":[-36.4,-135.5],"shR":[-43.5,-105],"elR":[-20.2,-0.7],"haR":[-45.6,64.1],"shL":[22.9,-100],"elL":[61,-2.3],"haL":[60.9,63.2],"hipR":[-23.5,39.5],"knR":[-48.9,180.5],"ftR":[-36.1,332],"hipL":[12.2,37.2],"knL":[5.9,180.1],"ftL":[53.9,328.9]},{"rootY":2.4,"hips":[0,0],"chest":[-13.7,-76.2],"neck":[-13.7,-76.2],"head":[-38.2,-135],"shR":[-48.1,-103.6],"elR":[-27,1.2],"haR":[-53.3,65.6],"shL":[24,-101.1],"elL":[64.1,-4.3],"haL":[65.7,61.3],"hipR":[-24.7,39.1],"knR":[-47.7,180.2],"ftR":[-35,332.2],"hipL":[14,37.8],"knL":[6.3,179.7],"ftL":[53,329.2]},{"rootY":1.2,"hips":[0,0],"chest":[-14.1,-76.2],"neck":[-14.1,-76.2],"head":[-38.6,-134.8],"shR":[-50.7,-102.5],"elR":[-32.2,1.6],"haR":[-59.6,65.7],"shL":[25.7,-102.2],"elL":[67.9,-6.4],"haL":[70.7,58.9],"hipR":[-24.8,39.8],"knR":[-46.2,181.1],"ftR":[-33.2,333.3],"hipL":[15.6,37],"knL":[10.4,179],"ftL":[55.3,329.1]},{"rootY":0.6,"hips":[0,0],"chest":[-14.6,-76],"neck":[-14.6,-76],"head":[-39.2,-134.4],"shR":[-53.5,-101.6],"elR":[-37.4,1.2],"haR":[-66.2,64.9],"shL":[27.2,-103],"elL":[71.2,-8],"haL":[75.6,56.8],"hipR":[-25.1,40.1],"knR":[-45.2,181.5],"ftR":[-32.3,334],"hipL":[16.7,36.7],"knL":[14,178.5],"ftL":[58.9,328.7]},{"rootY":0.2,"hips":[0,0],"chest":[-15,-75.9],"neck":[-15,-75.9],"head":[-39.6,-134],"shR":[-55.4,-100.9],"elR":[-43.5,2.7],"haR":[-72.9,66.1],"shL":[28.2,-103.5],"elL":[73.6,-9.3],"haL":[79.8,55.2],"hipR":[-25.5,40.1],"knR":[-44.4,181.4],"ftR":[-31.6,334.2],"hipL":[17.7,36.8],"knL":[17.1,178.2],"ftL":[63.6,328.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-15.2,-75.8],"neck":[-15.2,-75.8],"head":[-39.8,-133.5],"shR":[-57.4,-100.8],"elR":[-48.5,2.7],"haR":[-79.4,65.5],"shL":[29.8,-103.5],"elL":[77,-10.3],"haL":[84.4,53.3],"hipR":[-25.3,40.5],"knR":[-43.9,181.6],"ftR":[-31.4,334.4],"hipL":[18.9,36.4],"knL":[20.4,177.6],"ftL":[69.8,326.7]},{"rootY":-0.3,"hips":[0,0],"chest":[-15.7,-75.7],"neck":[-15.7,-75.7],"head":[-40.2,-133],"shR":[-59.1,-100.3],"elR":[-52.2,3.4],"haR":[-84.5,65.7],"shL":[30.1,-103.7],"elL":[78.9,-11.6],"haL":[87.4,51.7],"hipR":[-25.5,40.7],"knR":[-43.6,181.8],"ftR":[-31.7,334.5],"hipL":[20,36.2],"knL":[22.8,176.8],"ftL":[76.2,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[-16.4,-75.5],"neck":[-16.4,-75.5],"head":[-40.8,-132.4],"shR":[-60.8,-99.4],"elR":[-55.8,3.5],"haR":[-89.6,65.2],"shL":[29.9,-104.2],"elL":[80.6,-13.4],"haL":[89.2,49.2],"hipR":[-25.8,40.8],"knR":[-44.1,181.4],"ftR":[-32.8,334],"hipL":[20.9,36.2],"knL":[24.1,176.1],"ftL":[81.4,322.9]},{"rootY":0.9,"hips":[0,0],"chest":[-16.9,-75.3],"neck":[-16.9,-75.3],"head":[-41,-131.5],"shR":[-61,-98],"elR":[-58.3,4.1],"haR":[-93.6,65.1],"shL":[28.1,-105.2],"elL":[80.4,-15.9],"haL":[88.1,46],"hipR":[-26,40.9],"knR":[-44.6,181.2],"ftR":[-34.4,333.6],"hipL":[21.9,36.2],"knL":[25.2,175.1],"ftL":[86.1,320.4]},{"rootY":1.3,"hips":[0,0],"chest":[-17.7,-75],"neck":[-17.7,-75],"head":[-42.3,-130.6],"shR":[-64.5,-98],"elR":[-63.3,3.5],"haR":[-99.6,63.8],"shL":[30.1,-104.5],"elL":[83.8,-16.5],"haL":[90,44.6],"hipR":[-26,41],"knR":[-45.3,180.9],"ftR":[-36.3,333.2],"hipL":[22.6,36.1],"knL":[26.7,174.4],"ftL":[89.2,318.8]},{"rootY":1.7,"hips":[0,0],"chest":[-18.2,-74.7],"neck":[-18.2,-74.7],"head":[-42.8,-129.8],"shR":[-66.2,-97.6],"elR":[-66.8,3.5],"haR":[-103.9,63.2],"shL":[30.6,-104.4],"elL":[85.3,-17.7],"haL":[89.6,42.5],"hipR":[-25.9,41.2],"knR":[-46.2,180.7],"ftR":[-38.2,332.8],"hipL":[23.4,35.8],"knL":[28.8,174.2],"ftL":[91.2,318.3]},{"rootY":2.3,"hips":[0,0],"chest":[-18.5,-74.5],"neck":[-18.5,-74.5],"head":[-43.4,-128.9],"shR":[-67.8,-97.3],"elR":[-70.4,3.4],"haR":[-107.9,62.3],"shL":[31.3,-104],"elL":[86.6,-18.2],"haL":[88.4,40.9],"hipR":[-25.7,41.4],"knR":[-47.5,180.4],"ftR":[-40.4,332.2],"hipL":[24,35.7],"knL":[30.8,174.4],"ftL":[92,319]},{"rootY":3,"hips":[0,0],"chest":[-18.9,-74.2],"neck":[-18.9,-74.2],"head":[-43.5,-128],"shR":[-68.9,-96.9],"elR":[-73.6,3.4],"haR":[-111.3,61.6],"shL":[31.5,-103.9],"elL":[87.3,-19.1],"haL":[86.4,38.9],"hipR":[-25.6,41.5],"knR":[-49.4,179.9],"ftR":[-43.2,331.4],"hipL":[24.4,35.7],"knL":[32.3,175],"ftL":[90.9,320.8]},{"rootY":4.1,"hips":[0,0],"chest":[-19,-74],"neck":[-19,-74],"head":[-43.5,-127.2],"shR":[-69.7,-96.6],"elR":[-75.3,2.7],"haR":[-113,60.2],"shL":[31.7,-103.5],"elL":[87.9,-19.6],"haL":[84.2,37.4],"hipR":[-25.4,41.6],"knR":[-51.4,179.3],"ftR":[-46.1,330.4],"hipL":[24.8,35.7],"knL":[33.4,175.7],"ftL":[89.3,322.6]},{"rootY":5.2,"hips":[0,0],"chest":[-19.1,-73.7],"neck":[-19.1,-73.7],"head":[-43.4,-126.3],"shR":[-70.4,-96.4],"elR":[-77.9,2.7],"haR":[-115.3,59.4],"shL":[32,-102.9],"elL":[88.3,-19.6],"haL":[81.7,36.5],"hipR":[-25.3,41.6],"knR":[-53.7,178.6],"ftR":[-49.4,329.4],"hipL":[25,35.7],"knL":[33.3,176.2],"ftL":[86.9,324]},{"rootY":6,"hips":[0,0],"chest":[-19.2,-73.3],"neck":[-19.2,-73.3],"head":[-43.2,-125.3],"shR":[-71.2,-96.2],"elR":[-80.4,2.9],"haR":[-117.1,59],"shL":[32.7,-102.2],"elL":[88.9,-19],"haL":[79.4,36.3],"hipR":[-25.4,41.5],"knR":[-55.7,177.9],"ftR":[-52.8,328.7],"hipL":[25.2,35.9],"knL":[32.7,176.5],"ftL":[83.8,325.1]},{"rootY":7,"hips":[0,0],"chest":[-19.2,-72.9],"neck":[-19.2,-72.9],"head":[-42.6,-124.2],"shR":[-71.9,-96.1],"elR":[-82.4,3.1],"haR":[-118.2,58.7],"shL":[33.4,-101.3],"elL":[89.4,-17.7],"haL":[77,37.1],"hipR":[-25.5,41.4],"knR":[-57.8,177.2],"ftR":[-56.3,327.8],"hipL":[25.3,36],"knL":[31.6,176.7],"ftL":[79.9,326.3]},{"rootY":7.7,"hips":[0,0],"chest":[-19,-72.6],"neck":[-19,-72.6],"head":[-41.7,-123],"shR":[-72.5,-95.9],"elR":[-84.3,3.1],"haR":[-118.7,58.3],"shL":[34.4,-100.5],"elL":[89.9,-16.2],"haL":[74.9,38.2],"hipR":[-25.5,41.4],"knR":[-59.7,176.6],"ftR":[-59.6,327.1],"hipL":[25.7,36.2],"knL":[30.4,176.7],"ftL":[76,327.1]},{"rootY":8.5,"hips":[0,0],"chest":[-18.8,-72.1],"neck":[-18.8,-72.1],"head":[-40.8,-121.7],"shR":[-72.8,-95.8],"elR":[-86.7,3.7],"haR":[-119.2,59],"shL":[35.3,-99.4],"elL":[90.3,-14.5],"haL":[72.7,39.6],"hipR":[-25.6,41.3],"knR":[-61.2,175.9],"ftR":[-62.7,326.3],"hipL":[25.9,36.4],"knL":[28.9,176.4],"ftL":[72.6,327.3]},{"rootY":9.4,"hips":[0,0],"chest":[-18.4,-71.7],"neck":[-18.4,-71.7],"head":[-39.8,-120.4],"shR":[-73,-95.6],"elR":[-87.4,3.1],"haR":[-117.8,58.4],"shL":[36.3,-98.4],"elL":[90.6,-12.5],"haL":[70.6,41.2],"hipR":[-25.8,41.1],"knR":[-63,175],"ftR":[-65.8,325.4],"hipL":[25.9,36.7],"knL":[27.2,176.1],"ftL":[70,327.2]},{"rootY":10.4,"hips":[0,0],"chest":[-18.1,-71.1],"neck":[-18.1,-71.1],"head":[-38.8,-119],"shR":[-73.2,-95.4],"elR":[-88.7,2.8],"haR":[-116.8,58.3],"shL":[37.6,-97],"elL":[91.3,-10.3],"haL":[68.9,43.2],"hipR":[-26,40.9],"knR":[-64.6,174.1],"ftR":[-68.6,324.5],"hipL":[26,37],"knL":[25.7,175.5],"ftL":[68.2,326.7]},{"rootY":11.4,"hips":[0,0],"chest":[-17.5,-70.7],"neck":[-17.5,-70.7],"head":[-37.5,-117.7],"shR":[-73.2,-95.3],"elR":[-89.7,2.4],"haR":[-115.5,57.9],"shL":[39,-95.8],"elL":[91.4,-8],"haL":[67.1,45.3],"hipR":[-26.1,40.7],"knR":[-66,173.2],"ftR":[-71.1,323.6],"hipL":[26.1,37.2],"knL":[24.2,174.9],"ftL":[65.9,326.2]},{"rootY":12.5,"hips":[0,0],"chest":[-16.9,-70.3],"neck":[-16.9,-70.3],"head":[-36,-116.3],"shR":[-72.6,-95.3],"elR":[-90.2,1.8],"haR":[-114,57.5],"shL":[40.1,-94.7],"elL":[91.2,-5.7],"haL":[65,47.4],"hipR":[-26.3,40.6],"knR":[-67.6,172.3],"ftR":[-73.3,322.6],"hipL":[26.3,37.3],"knL":[22.7,173.8],"ftL":[63.7,325.2]},{"rootY":13.4,"hips":[0,0],"chest":[-16.1,-69.9],"neck":[-16.1,-69.9],"head":[-34.5,-115.4],"shR":[-72.1,-95.2],"elR":[-90.6,1.4],"haR":[-112.6,57.2],"shL":[41.4,-93.7],"elL":[91.3,-3.8],"haL":[63.2,49.1],"hipR":[-26.6,40.4],"knR":[-69.4,171.3],"ftR":[-75.4,321.5],"hipL":[26.3,37.6],"knL":[21.5,172.6],"ftL":[61.7,324.2]},{"rootY":15,"hips":[0,0],"chest":[-15.3,-69.6],"neck":[-15.3,-69.6],"head":[-32.8,-114.5],"shR":[-71.3,-95.5],"elR":[-91.2,0.8],"haR":[-111.3,56.6],"shL":[42.8,-92.5],"elL":[91.4,-1.7],"haL":[61.3,50.7],"hipR":[-27,40.1],"knR":[-71.5,169.9],"ftR":[-77.3,320],"hipL":[26.4,38],"knL":[20.6,171.3],"ftL":[59.9,322.9]},{"rootY":16.4,"hips":[0,0],"chest":[-14.4,-69.3],"neck":[-14.4,-69.3],"head":[-31.1,-113.9],"shR":[-70.4,-95.7],"elR":[-91.5,0.1],"haR":[-110,56.1],"shL":[44.3,-91.5],"elL":[91.5,0.2],"haL":[59.7,52.2],"hipR":[-27.6,39.7],"knR":[-73.7,168.5],"ftR":[-79.1,318.6],"hipL":[26.2,38.4],"knL":[19.7,170],"ftL":[58.5,321.6]},{"rootY":17.8,"hips":[0,0],"chest":[-13.5,-69.1],"neck":[-13.5,-69.1],"head":[-29.4,-113.3],"shR":[-69.5,-96],"elR":[-91.4,-0.7],"haR":[-108.7,55.5],"shL":[45.6,-90.5],"elL":[91.5,2],"haL":[57.8,53.6],"hipR":[-28.1,39.4],"knR":[-75.8,167.2],"ftR":[-80.7,317.2],"hipL":[26.1,38.7],"knL":[19,168.8],"ftL":[57.2,320.4]},{"rootY":19.2,"hips":[0,0],"chest":[-12.6,-68.9],"neck":[-12.6,-68.9],"head":[-27.6,-112.9],"shR":[-68.6,-96.3],"elR":[-91.5,-1.5],"haR":[-107.6,55],"shL":[47.2,-89.5],"elL":[92,3.7],"haL":[56.4,54.8],"hipR":[-28.4,39.2],"knR":[-77.3,166],"ftR":[-82.1,315.8],"hipL":[25.9,38.9],"knL":[18.1,167.4],"ftL":[55.8,319]},{"rootY":20.5,"hips":[0,0],"chest":[-11.8,-68.8],"neck":[-11.8,-68.8],"head":[-26.1,-112.8],"shR":[-67.8,-96.8],"elR":[-91.5,-2.2],"haR":[-106.6,54.5],"shL":[48.6,-88.7],"elL":[92.3,5],"haL":[55.1,55.9],"hipR":[-28.6,39.1],"knR":[-79.1,164.8],"ftR":[-83.3,314.5],"hipL":[25.7,39],"knL":[17,166.3],"ftL":[54.6,317.7]},{"rootY":21.8,"hips":[0,0],"chest":[-11.2,-68.7],"neck":[-11.2,-68.7],"head":[-24.6,-112.8],"shR":[-67.1,-97.1],"elR":[-91.4,-2.9],"haR":[-105.6,54],"shL":[49.7,-88],"elL":[92.5,6.3],"haL":[53.7,56.9],"hipR":[-28.8,39],"knR":[-80.3,163.7],"ftR":[-84.4,313.2],"hipL":[25.6,39.1],"knL":[15.7,165.1],"ftL":[53.3,316.3]},{"rootY":23.3,"hips":[0,0],"chest":[-10.7,-68.5],"neck":[-10.7,-68.5],"head":[-23.5,-112.7],"shR":[-66.5,-97.4],"elR":[-91.7,-3.4],"haR":[-105.1,53.8],"shL":[50.6,-87.1],"elL":[92.7,7.5],"haL":[52.6,57.8],"hipR":[-28.9,38.9],"knR":[-81.5,162.5],"ftR":[-85.5,311.9],"hipL":[25.4,39.1],"knL":[14.4,163.8],"ftL":[52.2,314.9]},{"rootY":24.5,"hips":[0,0],"chest":[-10.2,-68.4],"neck":[-10.2,-68.4],"head":[-22.5,-112.8],"shR":[-65.8,-97.8],"elR":[-91.7,-4],"haR":[-104.7,53.2],"shL":[51.5,-86.4],"elL":[92.5,8.5],"haL":[51.5,58.4],"hipR":[-29.1,38.8],"knR":[-82.5,161.4],"ftR":[-86.4,310.6],"hipL":[25.2,39.2],"knL":[13.3,162.8],"ftL":[51.2,313.8]},{"rootY":25.9,"hips":[0,0],"chest":[-9.8,-68.4],"neck":[-9.8,-68.4],"head":[-21.4,-112.9],"shR":[-65.1,-98.1],"elR":[-92,-4.6],"haR":[-104.7,52.5],"shL":[51.6,-86.1],"elL":[91.4,9.1],"haL":[49.5,58.6],"hipR":[-29.1,38.8],"knR":[-83.4,160.3],"ftR":[-87.3,309.2],"hipL":[25.1,39.2],"knL":[12.4,161.6],"ftL":[50.3,312.4]},{"rootY":27.2,"hips":[0,0],"chest":[-9.4,-68.3],"neck":[-9.4,-68.3],"head":[-20.7,-113],"shR":[-64.7,-98.2],"elR":[-92,-4.4],"haR":[-104.7,52.7],"shL":[52.2,-85.6],"elL":[90.8,10],"haL":[48.4,58.9],"hipR":[-29.4,38.6],"knR":[-84.1,159.1],"ftR":[-87.8,307.9],"hipL":[24.9,39.4],"knL":[11.7,160.4],"ftL":[49.5,311.1]},{"rootY":28.5,"hips":[0,0],"chest":[-9.2,-68.2],"neck":[-9.2,-68.2],"head":[-20.1,-113.1],"shR":[-64.4,-98.4],"elR":[-92,-4.6],"haR":[-104.9,52.3],"shL":[52.6,-85.1],"elL":[90.2,10.8],"haL":[47.2,59.2],"hipR":[-29.6,38.5],"knR":[-84.9,158],"ftR":[-88.3,306.5],"hipL":[24.9,39.4],"knL":[11.2,159.2],"ftL":[48.9,309.8]},{"rootY":29.8,"hips":[0,0],"chest":[-9,-68.1],"neck":[-9,-68.1],"head":[-19.7,-113.2],"shR":[-64.1,-98.6],"elR":[-92.1,-4.6],"haR":[-105.1,52.1],"shL":[52.9,-84.8],"elL":[89.7,11.4],"haL":[46.2,59.3],"hipR":[-29.8,38.4],"knR":[-85.9,156.8],"ftR":[-88.9,305.2],"hipL":[24.9,39.5],"knL":[10.8,157.9],"ftL":[48.3,308.6]},{"rootY":31.1,"hips":[0,0],"chest":[-8.5,-68],"neck":[-8.5,-68],"head":[-18.9,-113.2],"shR":[-63.5,-98.5],"elR":[-92.3,-4.6],"haR":[-105.3,51.9],"shL":[53.4,-84.5],"elL":[89.3,12.1],"haL":[45.3,59.6],"hipR":[-30,38.4],"knR":[-86.9,155.6],"ftR":[-89.1,303.9],"hipL":[24.8,39.5],"knL":[10.9,156.5],"ftL":[48.1,307.3]},{"rootY":32.4,"hips":[0,0],"chest":[-8.2,-68.1],"neck":[-8.2,-68.1],"head":[-18.3,-113.4],"shR":[-63.2,-98.7],"elR":[-92.6,-4.6],"haR":[-105.6,51.7],"shL":[54.1,-84.6],"elL":[89.4,12.5],"haL":[45.1,59.6],"hipR":[-30.3,38.3],"knR":[-88,154.4],"ftR":[-89.1,302.5],"hipL":[24.9,39.5],"knL":[11.2,155.3],"ftL":[48.1,306]},{"rootY":33.9,"hips":[0,0],"chest":[-7.6,-68.2],"neck":[-7.6,-68.2],"head":[-17.6,-113.8],"shR":[-62.6,-98.9],"elR":[-92.6,-4.6],"haR":[-105.5,51.4],"shL":[54.8,-84.6],"elL":[89.5,13],"haL":[45,59.7],"hipR":[-30.5,38.3],"knR":[-89.1,153.1],"ftR":[-88.9,301],"hipL":[24.8,39.5],"knL":[11.7,153.8],"ftL":[48.3,304.5]},{"rootY":35.3,"hips":[0,0],"chest":[-7.1,-68.5],"neck":[-7.1,-68.5],"head":[-16.9,-114.4],"shR":[-62.2,-99.1],"elR":[-92.9,-4.2],"haR":[-105.6,51.3],"shL":[55.4,-85.3],"elL":[89.6,12.7],"haL":[44.9,59.1],"hipR":[-30.9,38.2],"knR":[-90.1,151.8],"ftR":[-88.7,299.4],"hipL":[24.6,39.5],"knL":[12.2,152.3],"ftL":[48.6,303]},{"rootY":37,"hips":[0,0],"chest":[-7,-69],"neck":[-7,-69],"head":[-16.6,-115.3],"shR":[-62.2,-99.3],"elR":[-93.5,-3.7],"haR":[-105.9,51.2],"shL":[55.6,-86.2],"elL":[89.5,12.2],"haL":[44.7,58.2],"hipR":[-31.3,38],"knR":[-91.3,150.4],"ftR":[-88.7,297.6],"hipL":[24.5,39.5],"knL":[12.6,150.8],"ftL":[48.6,301.4]},{"rootY":38.6,"hips":[0,0],"chest":[-6.8,-69.6],"neck":[-6.8,-69.6],"head":[-16.3,-116.6],"shR":[-62.1,-99.6],"elR":[-93.7,-2.8],"haR":[-106,51.4],"shL":[56,-87.5],"elL":[89.6,11.3],"haL":[44.8,56.8],"hipR":[-31.5,38.1],"knR":[-92.2,149.2],"ftR":[-88.4,295.8],"hipL":[24.6,39.2],"knL":[13.3,149.3],"ftL":[48.8,299.9]},{"rootY":40,"hips":[0,0],"chest":[-6.7,-70.2],"neck":[-6.7,-70.2],"head":[-16.2,-118.2],"shR":[-62.2,-100],"elR":[-94.2,-1.8],"haR":[-106.1,51.6],"shL":[56.2,-88.9],"elL":[89.5,10.3],"haL":[44.7,55.2],"hipR":[-31.6,38.2],"knR":[-93.2,148],"ftR":[-88.2,294.1],"hipL":[24.6,38.9],"knL":[14.1,147.9],"ftL":[48.9,298.5]},{"rootY":41.1,"hips":[0,0],"chest":[-6.7,-71],"neck":[-6.7,-71],"head":[-16,-120],"shR":[-62.3,-100.3],"elR":[-94.8,-0.6],"haR":[-106.4,52],"shL":[56.2,-90.5],"elL":[89,8.9],"haL":[44.2,53.3],"hipR":[-31.9,38.2],"knR":[-94.5,146.5],"ftR":[-88.3,292.4],"hipL":[24.4,38.6],"knL":[14.7,146.7],"ftL":[48.9,297.3]},{"rootY":42.2,"hips":[0,0],"chest":[-6.7,-71.7],"neck":[-6.7,-71.7],"head":[-16,-122.1],"shR":[-62.4,-100.4],"elR":[-95.8,1],"haR":[-107,52.7],"shL":[56,-92.4],"elL":[88.1,7.4],"haL":[43.5,51.5],"hipR":[-32,38.2],"knR":[-95.6,145.2],"ftR":[-88.3,290.8],"hipL":[24.3,38.2],"knL":[14.9,145.6],"ftL":[48.9,296.2]},{"rootY":43.3,"hips":[0,0],"chest":[-6.8,-72.4],"neck":[-6.8,-72.4],"head":[-16,-124.1],"shR":[-62.5,-100.8],"elR":[-96.9,2.5],"haR":[-107.3,53.3],"shL":[55.9,-94],"elL":[86.9,6.1],"haL":[42.6,49.7],"hipR":[-32,38.3],"knR":[-97.1,143.9],"ftR":[-88.6,289.3],"hipL":[24.2,37.8],"knL":[15,144.4],"ftL":[48.6,295.1]},{"rootY":44.5,"hips":[0,0],"chest":[-6.9,-73],"neck":[-6.9,-73],"head":[-16.1,-126.1],"shR":[-62.6,-101],"elR":[-97.9,4.1],"haR":[-107.6,54],"shL":[55.6,-95.5],"elL":[85.5,4.8],"haL":[41.2,48],"hipR":[-32.3,38.1],"knR":[-98.4,142.2],"ftR":[-89.2,287.6],"hipL":[23.9,37.5],"knL":[14.8,143.2],"ftL":[48.2,294]},{"rootY":45.4,"hips":[0,0],"chest":[-6.9,-73.7],"neck":[-6.9,-73.7],"head":[-16.3,-128.1],"shR":[-62.4,-101.6],"elR":[-98.9,5],"haR":[-107.8,53.9],"shL":[55.4,-96.7],"elL":[84.2,3.8],"haL":[39.7,46.5],"hipR":[-32.5,38],"knR":[-99.7,141],"ftR":[-89.8,286.3],"hipL":[23.8,37.1],"knL":[14.4,142.1],"ftL":[47.5,292.8]},{"rootY":46.7,"hips":[0,0],"chest":[-6.8,-74.2],"neck":[-6.8,-74.2],"head":[-16.2,-130],"shR":[-62,-101.9],"elR":[-99.7,5.9],"haR":[-107.7,53.6],"shL":[55.4,-97.6],"elL":[82.8,3.1],"haL":[38,45.3],"hipR":[-32.8,37.8],"knR":[-101,139.2],"ftR":[-90.5,284.6],"hipL":[23.2,37],"knL":[13.8,140.8],"ftL":[46.8,291.6]},{"rootY":47.7,"hips":[0,0],"chest":[-6.5,-74.8],"neck":[-6.5,-74.8],"head":[-15.9,-131.8],"shR":[-61.5,-102.3],"elR":[-101.1,6.1],"haR":[-107.6,52.4],"shL":[55.6,-98.7],"elL":[82.1,1.8],"haL":[36.4,43.3],"hipR":[-32.9,37.8],"knR":[-102.4,137.9],"ftR":[-91.3,283.3],"hipL":[23.1,36.4],"knL":[13.3,139.8],"ftL":[46.1,290.5]},{"rootY":48.9,"hips":[0,0],"chest":[-6.2,-75.2],"neck":[-6.2,-75.2],"head":[-15.5,-133.3],"shR":[-61,-102.7],"elR":[-102.7,5.9],"haR":[-107.5,50.7],"shL":[55.9,-99.4],"elL":[81.9,0.7],"haL":[35.1,41.4],"hipR":[-33.4,37.4],"knR":[-103.6,136.2],"ftR":[-92.1,281.7],"hipL":[22.5,36.1],"knL":[12.7,138.5],"ftL":[45.5,289.3]},{"rootY":50.3,"hips":[0,0],"chest":[-5.9,-75.7],"neck":[-5.9,-75.7],"head":[-14.9,-134.7],"shR":[-60.5,-102.9],"elR":[-104.9,5.4],"haR":[-107.4,48.8],"shL":[56.2,-100.3],"elL":[82.2,-0.6],"haL":[34.4,39.3],"hipR":[-33.8,37],"knR":[-104.9,134.3],"ftR":[-93.1,279.9],"hipL":[22.1,35.8],"knL":[11.9,137],"ftL":[44.6,287.8]},{"rootY":51.3,"hips":[0,0],"chest":[-5.5,-76.1],"neck":[-5.5,-76.1],"head":[-14.2,-136.1],"shR":[-59.9,-103.2],"elR":[-107.4,4.4],"haR":[-107.4,46.4],"shL":[56.5,-101.1],"elL":[83.3,-2.4],"haL":[34.3,36.8],"hipR":[-34,36.8],"knR":[-106.3,132.9],"ftR":[-94,278.5],"hipL":[21.8,35.2],"knL":[10.9,135.8],"ftL":[43.6,286.6]},{"rootY":52.5,"hips":[0,0],"chest":[-5.3,-76.4],"neck":[-5.3,-76.4],"head":[-13.5,-137.3],"shR":[-59.4,-103.3],"elR":[-110.2,3],"haR":[-107.6,43.5],"shL":[56.7,-101.8],"elL":[85,-4.4],"haL":[34.9,34.1],"hipR":[-34.4,36.4],"knR":[-107.7,131.1],"ftR":[-95.2,276.8],"hipL":[21.4,34.8],"knL":[9.8,134.7],"ftL":[42.5,285.4]},{"rootY":53.5,"hips":[0,0],"chest":[-5.2,-76.7],"neck":[-5.2,-76.7],"head":[-12.9,-138.5],"shR":[-59.1,-103.3],"elR":[-113.4,1.5],"haR":[-108.2,40.3],"shL":[56.8,-102.4],"elL":[87.4,-6.8],"haL":[36,31.4],"hipR":[-34.8,36],"knR":[-108.9,129.2],"ftR":[-96.5,275],"hipL":[20.9,34.4],"knL":[8.5,133.5],"ftL":[41.2,284.3]},{"rootY":54.2,"hips":[0,0],"chest":[-5.1,-76.8],"neck":[-5.1,-76.8],"head":[-12.3,-139.5],"shR":[-58.9,-103.2],"elR":[-116.2,0],"haR":[-108.7,37.2],"shL":[56.9,-103],"elL":[90.3,-9.4],"haL":[37.8,28.4],"hipR":[-35.4,35.4],"knR":[-110.1,127.7],"ftR":[-97.8,273.8],"hipL":[20.2,34],"knL":[7.2,132.4],"ftL":[40,283.2]},{"rootY":54.8,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11.5,-140.5],"shR":[-58.4,-103],"elR":[-118.5,-1.5],"haR":[-109,34.3],"shL":[57.1,-103.5],"elL":[93.6,-12.2],"haL":[40.3,25.6],"hipR":[-35.7,35],"knR":[-111.3,126.4],"ftR":[-99.3,272.6],"hipL":[20,33.4],"knL":[6,131.1],"ftL":[38.9,281.9]},{"rootY":55.6,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11,-141.3],"shR":[-58.2,-103],"elR":[-120.7,-2.9],"haR":[-109.9,31.8],"shL":[57.1,-103.7],"elL":[96.8,-14.9],"haL":[43.1,23.3],"hipR":[-36.2,34.4],"knR":[-112.4,124.6],"ftR":[-100.9,271.1],"hipL":[19.4,33.1],"knL":[4.7,129.7],"ftL":[37.6,280.4]},{"rootY":56.2,"hips":[0,0],"chest":[-4.5,-77.1],"neck":[-4.5,-77.1],"head":[-10.2,-141.9],"shR":[-57.7,-102.9],"elR":[-122.2,-4.3],"haR":[-110.4,29.7],"shL":[57.3,-104],"elL":[100.1,-17.4],"haL":[46.2,21.4],"hipR":[-36.2,34.3],"knR":[-113.6,123],"ftR":[-102.3,269.7],"hipL":[19.4,32.3],"knL":[3.9,127.7],"ftL":[36.3,278.7]},{"rootY":56.8,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-9.2,-142.5],"shR":[-57.2,-102.8],"elR":[-123.7,-5.8],"haR":[-111,27.8],"shL":[57.7,-104.1],"elL":[103.5,-19.9],"haL":[49.5,19.6],"hipR":[-35.4,35],"knR":[-115.1,121.4],"ftR":[-104.1,268.5],"hipL":[20.3,31.2],"knL":[3.1,125],"ftL":[34.8,276.2]},{"rootY":57.3,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-8.7,-142.8],"shR":[-57,-102.8],"elR":[-125.6,-7.6],"haR":[-111.9,25.9],"shL":[57.6,-104.2],"elL":[106.4,-22.4],"haL":[52.5,18.1],"hipR":[-36.8,33.5],"knR":[-116.1,119.4],"ftR":[-105.3,266.8],"hipL":[18.6,31.7],"knL":[1.9,122.5],"ftL":[34,273.6]},{"rootY":57.8,"hips":[0,0],"chest":[-3.7,-77.2],"neck":[-3.7,-77.2],"head":[-7.7,-143.2],"shR":[-56.3,-103],"elR":[-127,-9.8],"haR":[-112.4,23.8],"shL":[58,-104],"elL":[110.2,-24.9],"haL":[56.1,16.5],"hipR":[-36.9,33.2],"knR":[-117.3,117.6],"ftR":[-106.8,265.2],"hipL":[18.4,31],"knL":[1.5,119.8],"ftL":[33.2,271]},{"rootY":58.2,"hips":[0,0],"chest":[-3.6,-77.2],"neck":[-3.6,-77.2],"head":[-7,-143.4],"shR":[-56,-103.1],"elR":[-129,-12.4],"haR":[-113.3,21.2],"shL":[58,-103.8],"elL":[113.9,-27.7],"haL":[59.9,14.7],"hipR":[-37.3,32.8],"knR":[-118.6,115.5],"ftR":[-108.7,263.4],"hipL":[17.9,30.9],"knL":[0.7,116.9],"ftL":[32.6,268.2]},{"rootY":58.7,"hips":[0,0],"chest":[-3.2,-77.2],"neck":[-3.2,-77.2],"head":[-6.3,-143.6],"shR":[-55.6,-103.4],"elR":[-131.4,-15.9],"haR":[-114.6,17.9],"shL":[58.5,-103.5],"elL":[118.5,-31],"haL":[64.5,12.3],"hipR":[-37.7,32.3],"knR":[-119.6,113.6],"ftR":[-110.1,261.8],"hipL":[17.4,30.7],"knL":[0.1,114.6],"ftL":[32.2,265.9]},{"rootY":58.9,"hips":[0,0],"chest":[-2.8,-77.2],"neck":[-2.8,-77.2],"head":[-5.4,-143.6],"shR":[-55,-103.7],"elR":[-133.7,-20],"haR":[-116.1,14.1],"shL":[59,-103.2],"elL":[123.2,-34.9],"haL":[69.3,9.1],"hipR":[-37.4,32.5],"knR":[-120.7,112.2],"ftR":[-111.4,260.3],"hipL":[17.8,30],"knL":[-0.3,112.8],"ftL":[31.9,264.2]},{"rootY":59.2,"hips":[0,0],"chest":[-2.6,-77.2],"neck":[-2.6,-77.2],"head":[-4.8,-143.7],"shR":[-54.6,-103.9],"elR":[-136,-24.1],"haR":[-117.8,10.6],"shL":[59.3,-103],"elL":[127.5,-38.7],"haL":[73.9,6.4],"hipR":[-37.7,32.2],"knR":[-121.5,110.5],"ftR":[-112.4,258.9],"hipL":[17.4,30],"knL":[-1,111.4],"ftL":[31.8,262.8]},{"rootY":59.4,"hips":[0,0],"chest":[-2.4,-77.2],"neck":[-2.4,-77.2],"head":[-4.2,-143.6],"shR":[-54.3,-104.1],"elR":[-138,-28.4],"haR":[-119.2,7.2],"shL":[59.7,-102.7],"elL":[131,-42],"haL":[77.9,4.1],"hipR":[-37.9,32],"knR":[-122.2,109.3],"ftR":[-113.1,257.8],"hipL":[17.2,30],"knL":[-1.5,110.6],"ftL":[31.6,261.9]},{"rootY":59.6,"hips":[0,0],"chest":[-2.1,-77.2],"neck":[-2.1,-77.2],"head":[-3.9,-143.4],"shR":[-53.9,-104.3],"elR":[-139.5,-32.5],"haR":[-120.1,4.4],"shL":[60,-102.5],"elL":[133.9,-44.5],"haL":[81.5,2.6],"hipR":[-38,31.9],"knR":[-122.6,108.4],"ftR":[-113.5,256.9],"hipL":[17,30.1],"knL":[-2.1,110.3],"ftL":[31.4,261.5]},{"rootY":59.8,"hips":[0,0],"chest":[-1.9,-77.3],"neck":[-1.9,-77.3],"head":[-3.7,-143.3],"shR":[-53.6,-104.5],"elR":[-140.7,-35.7],"haR":[-120.5,2.9],"shL":[60.3,-102.3],"elL":[135.7,-46],"haL":[83.8,1.8],"hipR":[-38,31.8],"knR":[-122.9,107.7],"ftR":[-113.8,256.3],"hipL":[16.9,30.1],"knL":[-2.6,110.1],"ftL":[31.3,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.8,-77.3],"neck":[-1.8,-77.3],"head":[-3.4,-143],"shR":[-53.3,-104.8],"elR":[-141.3,-38],"haR":[-120.1,2.4],"shL":[60.6,-102],"elL":[136.6,-46.6],"haL":[85.1,2],"hipR":[-38.1,31.7],"knR":[-123.1,107.2],"ftR":[-113.9,255.8],"hipL":[16.8,30.1],"knL":[-2.8,110.2],"ftL":[31.1,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.7,-77.3],"neck":[-1.7,-77.3],"head":[-3.4,-142.7],"shR":[-53.2,-105],"elR":[-141.6,-39.1],"haR":[-119.3,2.7],"shL":[60.9,-101.8],"elL":[136.7,-45.8],"haL":[85.9,3.8],"hipR":[-38.2,31.6],"knR":[-123.3,106.7],"ftR":[-114.5,255.3],"hipL":[16.8,30.2],"knL":[-3.1,110.1],"ftL":[30.7,261.1]},{"rootY":60.1,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[-3.3,-142.3],"shR":[-53,-105.1],"elR":[-141.3,-38.7],"haR":[-117.8,4.3],"shL":[61.1,-101.6],"elL":[135.9,-44.3],"haL":[85.3,5.8],"hipR":[-37.4,32.4],"knR":[-123.9,106.3],"ftR":[-115,254.9],"hipL":[17.8,29.6],"knL":[-3.1,109.7],"ftL":[30.4,260.8]},{"rootY":60.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-3.7,-142],"shR":[-53.3,-105.2],"elR":[-140.9,-37.4],"haR":[-116.5,6.6],"shL":[60.6,-101.5],"elL":[133.8,-42.3],"haL":[83.7,8.4],"hipR":[-38.7,31.1],"knR":[-124.1,105.4],"ftR":[-115.4,254.1],"hipL":[16.1,30.5],"knL":[-3.7,109.8],"ftL":[30.1,260.6]},{"rootY":60.5,"hips":[0,0],"chest":[-1.6,-77.2],"neck":[-1.6,-77.2],"head":[-3.6,-141.9],"shR":[-53.1,-105.3],"elR":[-139.6,-35.4],"haR":[-114.5,9.5],"shL":[60.9,-101.3],"elL":[132.1,-39.5],"haL":[82.6,11.8],"hipR":[-38.4,31.4],"knR":[-124.4,104.6],"ftR":[-115.8,253.4],"hipL":[16.5,30.3],"knL":[-3.7,109.2],"ftL":[30.2,260.1]},{"rootY":60.5,"hips":[0,0],"chest":[-1.8,-77.2],"neck":[-1.8,-77.2],"head":[-3.7,-141.9],"shR":[-53.4,-105.4],"elR":[-138.6,-33.3],"haR":[-112.7,12.5],"shL":[60.7,-101.1],"elL":[129.9,-36.7],"haL":[80.6,15],"hipR":[-38.4,31.4],"knR":[-125,103.7],"ftR":[-116.4,252.7],"hipL":[16.4,30.2],"knL":[-3.9,109],"ftL":[30.1,259.9]},{"rootY":60.8,"hips":[0,0],"chest":[-1.9,-77.1],"neck":[-1.9,-77.1],"head":[-3.7,-141.8],"shR":[-53.8,-105.3],"elR":[-137.3,-30.8],"haR":[-110.7,15.8],"shL":[60.4,-101.1],"elL":[127.7,-34.1],"haL":[78.6,17.8],"hipR":[-38.3,31.5],"knR":[-125.5,102.9],"ftR":[-116.9,252],"hipL":[16.6,30.1],"knL":[-4.1,108.6],"ftL":[29.9,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-2,-77],"neck":[-2,-77],"head":[-4,-141.8],"shR":[-54.1,-105.2],"elR":[-135.6,-28.6],"haR":[-108,18.3],"shL":[60.2,-101],"elL":[125.6,-31.5],"haL":[76.3,20.1],"hipR":[-38,31.8],"knR":[-125.9,102.4],"ftR":[-117.5,251.7],"hipL":[17,29.9],"knL":[-4.2,108.3],"ftL":[29.8,259.3]},{"rootY":60.8,"hips":[0,0],"chest":[-2.1,-77],"neck":[-2.1,-77],"head":[-4,-141.8],"shR":[-54.5,-105.2],"elR":[-134.4,-26.9],"haR":[-106.7,20],"shL":[60.1,-101],"elL":[124.5,-29.7],"haL":[74.6,21.3],"hipR":[-37.9,31.9],"knR":[-126.3,102],"ftR":[-117.9,251.3],"hipL":[17.1,30],"knL":[-4.2,108.2],"ftL":[29.6,259.3]},{"rootY":61,"hips":[0,0],"chest":[-2.4,-76.9],"neck":[-2.4,-76.9],"head":[-4.1,-141.9],"shR":[-55,-105.1],"elR":[-133.9,-26],"haR":[-106.6,20.8],"shL":[59.8,-100.8],"elL":[123.6,-28.6],"haL":[73.6,22.2],"hipR":[-37.7,32.2],"knR":[-126.6,101.7],"ftR":[-118.3,251],"hipL":[17.3,30],"knL":[-4.2,108.2],"ftL":[29.4,259.3]},{"rootY":60.9,"hips":[0,0],"chest":[-2.7,-76.9],"neck":[-2.7,-76.9],"head":[-4,-141.9],"shR":[-55.4,-105.1],"elR":[-134.2,-25.7],"haR":[-107,21.5],"shL":[59.5,-100.7],"elL":[123,-28.1],"haL":[73.3,23.1],"hipR":[-37.8,32.2],"knR":[-126.5,101.8],"ftR":[-118.4,251.1],"hipL":[17.2,30.2],"knL":[-4.2,108.5],"ftL":[29.3,259.5]},{"rootY":60.9,"hips":[0,0],"chest":[-2.9,-76.8],"neck":[-2.9,-76.8],"head":[-3.9,-142],"shR":[-55.6,-105.2],"elR":[-134.6,-25.5],"haR":[-107.1,22.5],"shL":[59.1,-100.5],"elL":[122.6,-27.8],"haL":[73.4,23.9],"hipR":[-37.8,32.2],"knR":[-126.4,101.9],"ftR":[-118.3,251.2],"hipL":[17.1,30.6],"knL":[-4.2,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.2,-76.7],"neck":[-3.2,-76.7],"head":[-3.5,-142.3],"shR":[-55.9,-105.3],"elR":[-135.4,-25.9],"haR":[-107.6,22.9],"shL":[58.9,-100.1],"elL":[122.6,-27.6],"haL":[73.7,24.3],"hipR":[-37.7,32.3],"knR":[-126.2,102],"ftR":[-118.2,251.2],"hipL":[17.3,30.7],"knL":[-4.1,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.3,-76.6],"neck":[-3.3,-76.6],"head":[-3.2,-142.5],"shR":[-56.2,-105.4],"elR":[-136.3,-26.3],"haR":[-108,23.1],"shL":[58.7,-99.7],"elL":[122.4,-27.3],"haL":[73.7,25],"hipR":[-37.7,32.3],"knR":[-126.1,102],"ftR":[-117.9,251.2],"hipL":[17.3,30.8],"knL":[-4,108.7],"ftL":[29.4,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.4,-76.6],"neck":[-3.4,-76.6],"head":[-3,-142.7],"shR":[-56.2,-105.4],"elR":[-137,-26.7],"haR":[-108.1,23.1],"shL":[58.4,-99.6],"elL":[122.3,-27.4],"haL":[73.7,25.1],"hipR":[-37.7,32.4],"knR":[-125.9,102],"ftR":[-117.6,251],"hipL":[17.3,31],"knL":[-4,108.7],"ftL":[29.6,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-3.5,-76.5],"neck":[-3.5,-76.5],"head":[-2.8,-143],"shR":[-56.4,-105.5],"elR":[-137.7,-27],"haR":[-108.3,23.2],"shL":[58.3,-99.3],"elL":[122.1,-27],"haL":[73.7,25.6],"hipR":[-37.5,32.7],"knR":[-125.8,102.2],"ftR":[-117.4,251.1],"hipL":[17.6,31],"knL":[-3.9,108.7],"ftL":[29.8,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.5],"neck":[-3.6,-76.5],"head":[-3.1,-143.1],"shR":[-56.6,-105.4],"elR":[-138.5,-27.4],"haR":[-108.6,23.3],"shL":[58.3,-99.2],"elL":[122,-27],"haL":[73.8,25.7],"hipR":[-37.6,32.5],"knR":[-125.6,102.2],"ftR":[-117.3,251],"hipL":[17.5,31.3],"knL":[-3.9,108.8],"ftL":[30,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.7,-76.4],"neck":[-3.7,-76.4],"head":[-3.5,-143.3],"shR":[-56.9,-105.4],"elR":[-139.1,-27.6],"haR":[-108.9,23.5],"shL":[58.3,-98.9],"elL":[122,-26.6],"haL":[73.9,26.3],"hipR":[-37.6,32.6],"knR":[-125.4,102.3],"ftR":[-117.2,250.9],"hipL":[17.5,31.4],"knL":[-3.9,109],"ftL":[30.3,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.3],"neck":[-3.6,-76.3],"head":[-3.8,-143.4],"shR":[-57,-105.2],"elR":[-139.6,-27.7],"haR":[-109,23.6],"shL":[58.4,-99.1],"elL":[122.1,-26.7],"haL":[74.1,26.3],"hipR":[-37.4,32.7],"knR":[-125.1,102.5],"ftR":[-117,250.9],"hipL":[17.7,31.3],"knL":[-3.9,109],"ftL":[30.5,259.5]},{"rootY":60.6,"hips":[0,0],"chest":[-3.8,-76.3],"neck":[-3.8,-76.3],"head":[-5,-143.5],"shR":[-57.2,-105],"elR":[-140,-27.8],"haR":[-109.1,23.6],"shL":[58.1,-99.3],"elL":[122.2,-27],"haL":[74.2,26.1],"hipR":[-37.5,32.7],"knR":[-124.8,102.6],"ftR":[-116.9,251],"hipL":[17.7,31.6],"knL":[-4.1,108.9],"ftL":[30.4,259.4]},{"rootY":60.5,"hips":[0,0],"chest":[-4,-76.2],"neck":[-4,-76.2],"head":[-6,-143.6],"shR":[-57.7,-104.7],"elR":[-140.6,-27.8],"haR":[-109.4,23.8],"shL":[58,-99.5],"elL":[122.3,-27.1],"haL":[74.4,25.9],"hipR":[-37.6,32.6],"knR":[-124.6,102.8],"ftR":[-117,251.2],"hipL":[17.6,31.7],"knL":[-4.2,109.1],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.1,-76.2],"neck":[-4.1,-76.2],"head":[-7.3,-143.5],"shR":[-58.1,-104.3],"elR":[-141,-27.7],"haR":[-109.5,23.8],"shL":[57.8,-99.7],"elL":[122.4,-27.2],"haL":[74.4,25.9],"hipR":[-37.4,32.8],"knR":[-124.6,102.8],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.4,109.1],"ftL":[30.3,259.6]},{"rootY":60.5,"hips":[0,0],"chest":[-4.3,-76.1],"neck":[-4.3,-76.1],"head":[-8.5,-143.5],"shR":[-58.6,-104],"elR":[-141.3,-27.5],"haR":[-109.5,23.8],"shL":[57.7,-99.9],"elL":[122.6,-27.3],"haL":[74.6,25.7],"hipR":[-37.4,32.8],"knR":[-124.6,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.6],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.4,-76],"neck":[-4.4,-76],"head":[-9.6,-143.4],"shR":[-58.9,-103.7],"elR":[-141.4,-27.3],"haR":[-109.5,23.9],"shL":[57.6,-100],"elL":[122.8,-27.4],"haL":[74.7,25.5],"hipR":[-37.5,32.7],"knR":[-124.5,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.4,-75.9],"neck":[-4.4,-75.9],"head":[-10.1,-143.3],"shR":[-59,-103.3],"elR":[-141.2,-27],"haR":[-109.2,24.1],"shL":[57.4,-100.3],"elL":[123,-27.6],"haL":[74.9,25.4],"hipR":[-37.4,32.8],"knR":[-124.4,102.8],"ftR":[-117,251.1],"hipL":[17.8,31.7],"knL":[-4.3,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.6,-75.9],"neck":[-4.6,-75.9],"head":[-10.4,-143.3],"shR":[-59.4,-103.1],"elR":[-141.3,-26.9],"haR":[-109.3,24.2],"shL":[57.1,-100.3],"elL":[123.3,-27.6],"haL":[75.2,25.3],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.6],"knL":[-4.2,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-103],"elR":[-141.3,-26.6],"haR":[-109.1,24.1],"shL":[56.8,-100.3],"elL":[123.5,-27.5],"haL":[75.2,25.2],"hipR":[-37.3,32.9],"knR":[-124.4,102.9],"ftR":[-117.1,251.2],"hipL":[18,31.7],"knL":[-4.1,108.9],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-102.9],"elR":[-141,-26.5],"haR":[-108.9,24.1],"shL":[56.6,-100.3],"elL":[123.9,-27.6],"haL":[75.5,25.1],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.7],"knL":[-3.7,109],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.9,-75.8],"neck":[-4.9,-75.8],"head":[-11,-143.2],"shR":[-59.7,-102.9],"elR":[-140.6,-26.3],"haR":[-108.8,24.2],"shL":[56.4,-100.3],"elL":[123.9,-27.5],"haL":[75.5,25.1],"hipR":[-37.2,33],"knR":[-124.2,103],"ftR":[-116.9,251.3],"hipL":[18.2,31.6],"knL":[-3.6,108.9],"ftL":[30.5,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.2],"shR":[-59.7,-102.9],"elR":[-140.1,-26],"haR":[-108.6,24.4],"shL":[56.3,-100.3],"elL":[124.1,-27.5],"haL":[75.6,25.1],"hipR":[-37.1,33.2],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.3,31.6],"knL":[-3.4,109],"ftL":[30.4,259.7]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.3],"shR":[-59.7,-102.9],"elR":[-139.8,-25.9],"haR":[-108.4,24.3],"shL":[56.2,-100.3],"elL":[124.2,-27.5],"haL":[75.7,25],"hipR":[-37,33.3],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.5,31.6],"knL":[-3.4,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.8],"neck":[-5.1,-75.8],"head":[-10.7,-143.3],"shR":[-59.6,-103],"elR":[-139.3,-25.7],"haR":[-108.1,24.3],"shL":[56.2,-100.3],"elL":[124.3,-27.5],"haL":[75.7,24.8],"hipR":[-36.8,33.4],"knR":[-124.2,103.1],"ftR":[-116.8,251.3],"hipL":[18.6,31.5],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.9],"neck":[-5,-75.9],"head":[-10.5,-143.3],"shR":[-59.6,-103],"elR":[-138.8,-25.5],"haR":[-107.9,24.3],"shL":[56.2,-100.4],"elL":[124.4,-27.7],"haL":[75.7,24.7],"hipR":[-36.6,33.6],"knR":[-124.3,103.2],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.9],"neck":[-5.1,-75.9],"head":[-10.5,-143.4],"shR":[-59.6,-103.1],"elR":[-138.5,-25.5],"haR":[-107.8,24.1],"shL":[56.1,-100.4],"elL":[124.5,-27.6],"haL":[75.8,24.7],"hipR":[-36.6,33.6],"knR":[-124.4,103.3],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.4,109],"ftL":[30.6,259.7]}]},"walk":{"name":"walk","fps":30,"height":520,"groundY":344,"frameCount":86,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-84.9],"neck":[0.6,-84.9],"head":[1.5,-149.1],"shR":[-71.5,-100.6],"elR":[-174.2,-86.2],"haR":[-242.9,-76.5],"shL":[73.7,-103.6],"elL":[173,-89.6],"haL":[241.5,-80],"hipR":[-33.2,37.2],"knR":[-30.5,193.6],"ftR":[-27.9,342.4],"hipL":[34.2,37.2],"knL":[31.4,193.7],"ftL":[28.8,344]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-84.6],"neck":[-5.8,-84.6],"head":[-7.3,-148.9],"shR":[-78.3,-97],"elR":[-92.1,2.9],"haR":[-91.3,39.8],"shL":[66,-107.6],"elL":[61.1,-12.8],"haL":[72.2,55.4],"hipR":[-36.8,35],"knR":[-14.6,185.3],"ftR":[9.1,317.4],"hipL":[29.5,37.8],"knL":[5.4,172],"ftL":[-8.4,320.6]},{"rootY":2.9,"hips":[0,0],"chest":[-4.6,-84.8],"neck":[-4.6,-84.8],"head":[-6.4,-148.9],"shR":[-77,-97.1],"elR":[-90.6,2.9],"haR":[-90.1,41.3],"shL":[67.1,-107.8],"elL":[61.5,-12.6],"haL":[72.1,55.7],"hipR":[-36.8,35.1],"knR":[-14.7,184.1],"ftR":[9.3,311.3],"hipL":[29.5,37.9],"knL":[3.6,172.2],"ftL":[-9.9,321.8]},{"rootY":3.8,"hips":[0,0],"chest":[-4,-84.8],"neck":[-4,-84.8],"head":[-5.5,-148.8],"shR":[-76.3,-98.1],"elR":[-88.1,2.4],"haR":[-88.2,44.1],"shL":[68,-106.8],"elL":[62.4,-10.8],"haL":[72.4,57.7],"hipR":[-36.9,34.9],"knR":[-15.7,184],"ftR":[8.1,303.8],"hipL":[29.4,38],"knL":[2.8,171.7],"ftL":[-8.7,321.3]},{"rootY":3.6,"hips":[0,0],"chest":[-2.9,-84.9],"neck":[-2.9,-84.9],"head":[-3.4,-148.8],"shR":[-75.1,-98.6],"elR":[-84.8,2.6],"haR":[-85.7,48.5],"shL":[69.3,-106.4],"elL":[64.2,-9.3],"haL":[73.8,59.2],"hipR":[-35.5,36.1],"knR":[-18,188.2],"ftR":[4.3,295.5],"hipL":[31,36.9],"knL":[4.4,172],"ftL":[-7.6,320.9]},{"rootY":2,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[-2.9,-148.7],"shR":[-75,-99.1],"elR":[-82.8,2.7],"haR":[-83.9,53.1],"shL":[69.4,-105.9],"elL":[64.8,-7.9],"haL":[74.2,60.6],"hipR":[-35.7,36],"knR":[-22.7,190.8],"ftR":[-2.9,287.7],"hipL":[30.7,37],"knL":[3.4,174.4],"ftL":[-7.8,322.1]},{"rootY":0.6,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.6,-148.6],"shR":[-74.7,-99.1],"elR":[-80.9,3.3],"haR":[-82.7,58.1],"shL":[69.5,-105.9],"elL":[65.4,-7.2],"haL":[74.4,60.8],"hipR":[-35,36.7],"knR":[-26.4,192.9],"ftR":[-9.8,279.5],"hipL":[31.4,36.2],"knL":[3.5,177.4],"ftL":[-7.6,323.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2,-148.6],"shR":[-74.1,-99.1],"elR":[-78.9,3.7],"haR":[-81.5,61.9],"shL":[69.9,-105.9],"elL":[67.2,-6.7],"haL":[75.3,60.3],"hipR":[-34,37.5],"knR":[-28.4,193.1],"ftR":[-14.1,272.3],"hipL":[32.5,35.2],"knL":[4.8,179.6],"ftL":[-6.8,325.2]},{"rootY":-2.8,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.1,-148.5],"shR":[-74.1,-98.8],"elR":[-77.2,4.5],"haR":[-80.6,65.5],"shL":[69.8,-106.2],"elL":[68.2,-6.6],"haL":[75.5,58.5],"hipR":[-33.8,37.5],"knR":[-30.4,190.8],"ftR":[-17.9,269.4],"hipL":[32.7,35],"knL":[5.4,182.4],"ftL":[-6.7,326.7]},{"rootY":-4.2,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.2,-148.6],"shR":[-74.2,-98.2],"elR":[-76.1,5.4],"haR":[-79.6,68.6],"shL":[69.6,-106.8],"elL":[69.7,-6.8],"haL":[75.2,55.4],"hipR":[-33.4,37.5],"knR":[-30.9,187.3],"ftR":[-22.4,270.9],"hipL":[33.4,34.9],"knL":[6.5,184.6],"ftL":[-6.7,327.8]},{"rootY":-5.4,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[-2.3,-148.7],"shR":[-74.1,-98.1],"elR":[-74.9,5.4],"haR":[-78.3,70.4],"shL":[70,-106.9],"elL":[71.6,-6.7],"haL":[75.1,51.5],"hipR":[-33.2,37.3],"knR":[-29.2,182.8],"ftR":[-26.9,276.6],"hipL":[34,35.2],"knL":[7.5,186.4],"ftL":[-6.1,328.4]},{"rootY":-5.1,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-2.2,-148.7],"shR":[-73.8,-97.8],"elR":[-73.5,5.2],"haR":[-76.8,71.6],"shL":[70.3,-107.2],"elL":[73.8,-7],"haL":[74.8,46.6],"hipR":[-32.7,37.4],"knR":[-26.7,178.5],"ftR":[-31.6,285.8],"hipL":[34.6,35.1],"knL":[8.8,187.6],"ftL":[-5.5,328]},{"rootY":-4.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.6,-148.8],"shR":[-73.2,-97.5],"elR":[-72.2,4.5],"haR":[-75.2,71.9],"shL":[71,-107.5],"elL":[76.1,-7.4],"haL":[74.4,40.8],"hipR":[-32.4,37.3],"knR":[-23.7,175],"ftR":[-34.6,297],"hipL":[34.9,35.1],"knL":[10,188.7],"ftL":[-4.5,327.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1.1,-148.8],"shR":[-72.6,-97],"elR":[-70.6,3.9],"haR":[-73.4,72.2],"shL":[71.5,-108],"elL":[78.2,-7.9],"haL":[74.1,35.1],"hipR":[-31.6,37.7],"knR":[-21.3,172.9],"ftR":[-36,308.4],"hipL":[35.7,34.9],"knL":[11.8,189.4],"ftL":[-3.9,327.3]},{"rootY":-5.9,"hips":[0,0],"chest":[0.3,-84.9],"neck":[0.3,-84.9],"head":[-0.9,-148.8],"shR":[-72.2,-97.2],"elR":[-68.7,2.5],"haR":[-71.2,71.5],"shL":[72.1,-107.9],"elL":[80.4,-7.9],"haL":[74.3,30.1],"hipR":[-31,38.1],"knR":[-19.7,172.5],"ftR":[-34.5,317.3],"hipL":[36.3,34.6],"knL":[13.5,189.5],"ftL":[-3,327.1]},{"rootY":-5.8,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-0.8,-148.7],"shR":[-72.3,-97],"elR":[-67.3,1.5],"haR":[-69.4,70.8],"shL":[71.9,-108.1],"elL":[81.5,-8.2],"haL":[73.5,25.8],"hipR":[-30.8,38],"knR":[-19.2,172.2],"ftR":[-29.4,320.6],"hipL":[36.4,34.8],"knL":[14.7,189.3],"ftL":[-2.6,326.4]},{"rootY":-5.6,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1,-148.7],"shR":[-72.8,-96.8],"elR":[-66.3,0.7],"haR":[-68.1,70],"shL":[71.5,-108.2],"elL":[81.8,-8.5],"haL":[73.1,23.2],"hipR":[-30.7,37.8],"knR":[-19.9,171.4],"ftR":[-22.8,319.6],"hipL":[36.5,35],"knL":[15.6,187.8],"ftL":[-2.7,325]},{"rootY":-5.1,"hips":[0,0],"chest":[0.1,-84.9],"neck":[0.1,-84.9],"head":[-1.2,-148.7],"shR":[-72.6,-96.3],"elR":[-64.8,0.8],"haR":[-66.5,69.9],"shL":[71.7,-108.8],"elL":[82.3,-9],"haL":[73.1,22],"hipR":[-30.1,38.2],"knR":[-19.1,170.5],"ftR":[-17.6,317.9],"hipL":[37,34.8],"knL":[16.5,185.2],"ftL":[-2,322]},{"rootY":-3.5,"hips":[0,0],"chest":[0.4,-84.9],"neck":[0.4,-84.9],"head":[-1.1,-148.6],"shR":[-72.4,-95.7],"elR":[-63.5,1.1],"haR":[-65.3,70.1],"shL":[71.7,-109.4],"elL":[81.9,-9.6],"haL":[72.9,22.9],"hipR":[-30.3,37.9],"knR":[-16.6,171.5],"ftR":[-14.3,319.3],"hipL":[36.8,35],"knL":[17.2,185],"ftL":[-0.1,316.8]},{"rootY":-1.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-1.1,-148.5],"shR":[-72.4,-95.5],"elR":[-62.7,1.7],"haR":[-64.3,70.5],"shL":[71.6,-109.4],"elL":[81.4,-9.7],"haL":[73.3,25.7],"hipR":[-30,38.1],"knR":[-13.6,171.9],"ftR":[-12.1,320.6],"hipL":[37,34.8],"knL":[18.1,184.1],"ftL":[2.1,310.2]},{"rootY":-1.7,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-2.3,-148.3],"shR":[-73.3,-95.1],"elR":[-63.2,2.7],"haR":[-64.7,71.5],"shL":[70.7,-109.7],"elL":[79.4,-10],"haL":[73,30.5],"hipR":[-31.4,36.9],"knR":[-13.6,171.6],"ftR":[-11.5,320.3],"hipL":[35.8,35.8],"knL":[17.9,185.6],"ftL":[3.7,302.5]},{"rootY":-1.9,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.9,-148.2],"shR":[-73.9,-94.4],"elR":[-63.8,4.2],"haR":[-65.6,73.2],"shL":[69.9,-110.3],"elL":[76.7,-10.4],"haL":[73.1,36],"hipR":[-32,36.4],"knR":[-13,172.7],"ftR":[-10.9,320.7],"hipL":[35.2,35.9],"knL":[19.1,187.8],"ftL":[6.4,292.8]},{"rootY":-2.7,"hips":[0,0],"chest":[-1.1,-84.9],"neck":[-1.1,-84.9],"head":[-3.1,-148],"shR":[-73.8,-94.7],"elR":[-64.2,4.9],"haR":[-66.4,74.1],"shL":[70.1,-109.9],"elL":[75.1,-10],"haL":[74.3,42.8],"hipR":[-32.6,36],"knR":[-11.9,174.6],"ftR":[-9.1,321.3],"hipL":[34.7,36.6],"knL":[22.4,191.3],"ftL":[11.3,284.7]},{"rootY":-5,"hips":[0,0],"chest":[-0.8,-84.9],"neck":[-0.8,-84.9],"head":[-2.8,-148],"shR":[-73.6,-95.1],"elR":[-64.8,5.6],"haR":[-67.6,74.9],"shL":[70.5,-109.6],"elL":[73.7,-9.7],"haL":[75.5,48.8],"hipR":[-32.9,35.5],"knR":[-12.4,177.7],"ftR":[-8,323],"hipL":[34.3,37],"knL":[25.5,193.3],"ftL":[15.1,276.3]},{"rootY":-6.5,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.8,-148],"shR":[-74,-95.6],"elR":[-66.4,6],"haR":[-69.5,75.1],"shL":[70.3,-109.1],"elL":[72.4,-9.1],"haL":[76.7,53.7],"hipR":[-33.7,34.9],"knR":[-14.4,180.4],"ftR":[-7.9,324.6],"hipL":[33.6,37.4],"knL":[27.5,193],"ftL":[15.3,270]},{"rootY":-8.3,"hips":[0,0],"chest":[-1,-84.9],"neck":[-1,-84.9],"head":[-2,-148.2],"shR":[-73.7,-96.5],"elR":[-67.6,6],"haR":[-71.2,74.3],"shL":[70.8,-108.2],"elL":[71.9,-8.3],"haL":[78.2,57.5],"hipR":[-34.1,34.7],"knR":[-14.9,182.9],"ftR":[-7.1,326.2],"hipL":[33.2,37.5],"knL":[29.1,190.3],"ftL":[16.1,268.6]},{"rootY":-9.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.3,-148.4],"shR":[-73.6,-97.1],"elR":[-70.2,6.2],"haR":[-73.6,72.9],"shL":[71,-107.7],"elL":[71.4,-7.9],"haL":[78.5,59.4],"hipR":[-34.5,34.6],"knR":[-15.5,185.1],"ftR":[-6.6,327.2],"hipL":[32.8,37.1],"knL":[29.2,185.9],"ftL":[18.2,272.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-1.8,-148.6],"shR":[-74.1,-98.3],"elR":[-73.7,5.3],"haR":[-76.7,69.5],"shL":[70.7,-106.6],"elL":[70.9,-7.3],"haL":[78.9,60.8],"hipR":[-35.3,34.4],"knR":[-17.6,186.4],"ftR":[-6.6,326.8],"hipL":[32,37.5],"knL":[27.1,181.2],"ftL":[20.5,280.6]},{"rootY":-8.9,"hips":[0,0],"chest":[-1.8,-84.9],"neck":[-1.8,-84.9],"head":[-1.3,-148.7],"shR":[-74.2,-98.8],"elR":[-77.4,4.8],"haR":[-78.5,64.8],"shL":[70.6,-106],"elL":[70.7,-7.8],"haL":[78.8,60.6],"hipR":[-35.3,34.8],"knR":[-18.5,187.9],"ftR":[-6.5,326.4],"hipL":[31.9,37.2],"knL":[24.5,175.9],"ftL":[22.1,290.9]},{"rootY":-8.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-1.6,-148.8],"shR":[-74.7,-99.1],"elR":[-81.1,4.1],"haR":[-82.1,59.5],"shL":[70.1,-105.8],"elL":[69.6,-8.7],"haL":[78.1,59.9],"hipR":[-35.9,34.5],"knR":[-19.9,189],"ftR":[-6.9,326.2],"hipL":[31.2,37.4],"knL":[21.5,172.3],"ftL":[22.3,302.5]},{"rootY":-9.7,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.3,-148.9],"shR":[-75,-99.5],"elR":[-84.8,3],"haR":[-84.3,52.2],"shL":[69.8,-105.4],"elL":[68.7,-9.4],"haL":[77,59.2],"hipR":[-35.9,34.7],"knR":[-20.7,190.2],"ftR":[-6.9,327],"hipL":[31.1,37.2],"knL":[19,170.1],"ftL":[21.5,313.1]},{"rootY":-10.3,"hips":[0,0],"chest":[-3.1,-84.9],"neck":[-3.1,-84.9],"head":[-2.7,-149],"shR":[-75.3,-99.6],"elR":[-87.9,2],"haR":[-86.1,44.8],"shL":[69.5,-105.3],"elL":[67.2,-10.4],"haL":[75.4,58.3],"hipR":[-36.3,34.5],"knR":[-21.7,190.2],"ftR":[-7.9,326.8],"hipL":[30.6,37.6],"knL":[17,170.4],"ftL":[19.2,319.8]},{"rootY":-10.1,"hips":[0,0],"chest":[-3.4,-84.9],"neck":[-3.4,-84.9],"head":[-3.4,-148.9],"shR":[-75.5,-99.4],"elR":[-91.1,1],"haR":[-87.8,37.8],"shL":[69.2,-105.5],"elL":[65.8,-11.4],"haL":[73.7,57.3],"hipR":[-36.8,34.2],"knR":[-22.6,189.2],"ftR":[-8.2,325.6],"hipL":[29.9,37.9],"knL":[15.4,171],"ftL":[16.7,321.1]},{"rootY":-9.6,"hips":[0,0],"chest":[-3.3,-84.9],"neck":[-3.3,-84.9],"head":[-4.2,-149],"shR":[-75.4,-99.6],"elR":[-92.3,-0.2],"haR":[-88.5,31.6],"shL":[69.3,-105.3],"elL":[64.8,-11.7],"haL":[72.4,56.9],"hipR":[-36.9,34.3],"knR":[-23.3,187.4],"ftR":[-9.3,323.9],"hipL":[29.7,37.7],"knL":[14.3,171.1],"ftL":[13.6,319.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-3.5,-84.9],"neck":[-3.5,-84.9],"head":[-5,-148.9],"shR":[-75.5,-99.5],"elR":[-93.6,-1.1],"haR":[-89.6,26.8],"shL":[69.1,-105.3],"elL":[63.8,-11.5],"haL":[70.9,57.2],"hipR":[-37.3,34],"knR":[-24,184.9],"ftR":[-10.3,319.8],"hipL":[29.2,37.9],"knL":[13.3,171.6],"ftL":[11.7,320.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-4.4,-149],"shR":[-74.6,-99.6],"elR":[-93.2,-1.4],"haR":[-89.7,24.1],"shL":[70,-105.3],"elL":[64.2,-10.6],"haL":[70.6,58],"hipR":[-37.1,34.3],"knR":[-24.1,184.3],"ftR":[-10.9,314.2],"hipL":[29.3,37.6],"knL":[12.9,172.8],"ftL":[10.4,322.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[-4.2,-149],"shR":[-73.6,-99.5],"elR":[-91.9,-1.1],"haR":[-88.9,24.3],"shL":[71,-105.2],"elL":[64.5,-9.7],"haL":[70.5,59.1],"hipR":[-36.7,34.6],"knR":[-24.3,182.5],"ftR":[-12.4,308.4],"hipL":[29.8,37.2],"knL":[12.6,172.4],"ftL":[8.9,322.7]},{"rootY":-7.4,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-3.5,-149.1],"shR":[-72.7,-99.9],"elR":[-89.2,-0.6],"haR":[-87,26.8],"shL":[71.9,-104.6],"elL":[65.6,-7.9],"haL":[71.5,61],"hipR":[-36.6,34.5],"knR":[-24.9,183.9],"ftR":[-14.6,299.9],"hipL":[30.1,37.4],"knL":[13.7,172.9],"ftL":[9.2,322.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-0.5,-84.9],"neck":[-0.5,-84.9],"head":[-2.8,-149.1],"shR":[-72.3,-100.3],"elR":[-87,0.3],"haR":[-85.5,31.8],"shL":[72.5,-104.1],"elL":[66.8,-6.2],"haL":[72.7,62.8],"hipR":[-35.4,35.4],"knR":[-26.6,188],"ftR":[-18.5,291.9],"hipL":[31.4,36.4],"knL":[14.5,174.4],"ftL":[8.8,323.4]},{"rootY":-10.4,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-3,-149.1],"shR":[-72.4,-100.3],"elR":[-85.6,1.1],"haR":[-84.7,37.5],"shL":[72.5,-104],"elL":[67.2,-5.5],"haL":[73.5,63.1],"hipR":[-35.1,35.8],"knR":[-28.8,191.3],"ftR":[-23.9,283.9],"hipL":[31.8,36.3],"knL":[13.8,177.6],"ftL":[7.2,325.5]},{"rootY":-12.3,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-2.6,-149.2],"shR":[-71.7,-99.4],"elR":[-82.9,2.6],"haR":[-83,44.9],"shL":[72.8,-104.9],"elL":[68.6,-5.9],"haL":[74.8,61.5],"hipR":[-33.6,37.3],"knR":[-29.9,193.6],"ftR":[-26.2,276.7],"hipL":[33.2,34.9],"knL":[13.7,179.9],"ftL":[6.1,326.8]},{"rootY":-14.1,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-3.2,-149.2],"shR":[-72,-99.7],"elR":[-81.3,2.9],"haR":[-82.5,51],"shL":[72.6,-104.7],"elL":[70.3,-5.3],"haL":[76.2,60],"hipR":[-33,37.5],"knR":[-30.9,192.6],"ftR":[-26.5,272.1],"hipL":[34,34.3],"knL":[14.5,182.4],"ftL":[5.2,328.3]},{"rootY":-15.8,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-3.4,-149.3],"shR":[-72.3,-98.8],"elR":[-79.5,4.4],"haR":[-81.8,58.3],"shL":[72.1,-105.6],"elL":[71.6,-5.9],"haL":[76.7,56.1],"hipR":[-33,37.3],"knR":[-31.6,189.3],"ftR":[-27.6,271.8],"hipL":[34.1,34.5],"knL":[14.6,184.9],"ftL":[4.1,329.6]},{"rootY":-16.2,"hips":[0,0],"chest":[-0.5,-85],"neck":[-0.5,-85],"head":[-4,-149.3],"shR":[-72.6,-98.4],"elR":[-77.3,5.1],"haR":[-80.8,63.8],"shL":[71.9,-106],"elL":[73.6,-6],"haL":[77.3,51.5],"hipR":[-32.6,37.1],"knR":[-31,185.1],"ftR":[-29.4,276.7],"hipL":[34.6,34.4],"knL":[14.6,186.4],"ftL":[2.9,329.4]},{"rootY":-15.6,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-4,-149.3],"shR":[-72.6,-97.9],"elR":[-75.5,5.6],"haR":[-79.3,68.5],"shL":[71.9,-106.6],"elL":[76.1,-6.5],"haL":[78.2,45.2],"hipR":[-32.2,37.2],"knR":[-29,180.4],"ftR":[-30.6,285.1],"hipL":[35.1,34.5],"knL":[15.2,187.6],"ftL":[2.6,328.9]},{"rootY":-14.5,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-4.4,-149.4],"shR":[-72.7,-97.4],"elR":[-73.4,5.9],"haR":[-78.2,71.7],"shL":[71.9,-107.1],"elL":[78.4,-7],"haL":[78.7,38.4],"hipR":[-31.9,36.9],"knR":[-26.6,176.2],"ftR":[-32.3,295.7],"hipL":[35.4,34.7],"knL":[15.6,188.8],"ftL":[1.8,328.1]},{"rootY":-14.5,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[-3.7,-149.4],"shR":[-72.4,-97.1],"elR":[-71.2,5.5],"haR":[-76.2,73.4],"shL":[72.2,-107.5],"elL":[81.2,-7.6],"haL":[79.6,31.4],"hipR":[-30.9,37.2],"knR":[-23.9,174.2],"ftR":[-33.1,307.9],"hipL":[36.4,34.1],"knL":[16.6,189.1],"ftL":[1.7,327.2]},{"rootY":-15.2,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.8,-149.4],"shR":[-72.3,-96.9],"elR":[-69.3,4.8],"haR":[-74.1,73.8],"shL":[72.4,-107.7],"elL":[83.2,-8],"haL":[79.9,25],"hipR":[-30.4,37.4],"knR":[-21.9,173.5],"ftR":[-33.4,317.7],"hipL":[36.8,34.2],"knL":[17.5,189.6],"ftL":[1.5,327.4]},{"rootY":-15.1,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-3.4,-149.4],"shR":[-72.2,-96.5],"elR":[-67.8,3.9],"haR":[-72.3,73.1],"shL":[72.5,-108.1],"elL":[85.1,-8.6],"haL":[80.5,19.4],"hipR":[-30.3,37.2],"knR":[-20.3,173.7],"ftR":[-29.8,322.1],"hipL":[36.8,34.6],"knL":[18.4,189.5],"ftL":[2.1,326.7]},{"rootY":-15.1,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.6,-149.4],"shR":[-72.5,-96.4],"elR":[-66.4,2.7],"haR":[-70.1,71.6],"shL":[72.1,-108.3],"elL":[85.8,-8.9],"haL":[80.6,15.8],"hipR":[-29.8,37.5],"knR":[-20.7,173],"ftR":[-24.2,321.2],"hipL":[37.2,34.5],"knL":[18.7,187.6],"ftL":[1.4,325.2]},{"rootY":-13.9,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.5,-149.3],"shR":[-72.7,-96.1],"elR":[-65.1,1.7],"haR":[-67.9,69.9],"shL":[71.9,-108.6],"elL":[86.2,-9.3],"haL":[80.6,13.9],"hipR":[-29.3,37.6],"knR":[-20.2,171.8],"ftR":[-17.6,319.2],"hipL":[37.5,34.5],"knL":[19.3,185],"ftL":[2,321.7]},{"rootY":-12.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.2,-149.2],"shR":[-72.5,-95.8],"elR":[-63.9,1.1],"haR":[-66.1,68.8],"shL":[72,-108.8],"elL":[86,-9.5],"haL":[80.9,14.6],"hipR":[-29.8,37.4],"knR":[-17.5,171.6],"ftR":[-14,319.5],"hipL":[37.1,34.8],"knL":[19.6,183.2],"ftL":[2.9,316.7]},{"rootY":-10.5,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-2.8,-149.1],"shR":[-72.1,-95.8],"elR":[-62.5,0.9],"haR":[-63.8,68.4],"shL":[72.3,-108.8],"elL":[85.8,-9.5],"haL":[81,17.5],"hipR":[-29.4,37.7],"knR":[-14.2,172.7],"ftR":[-11.4,321.3],"hipL":[37.5,34.4],"knL":[20.5,182],"ftL":[4.5,309.4]},{"rootY":-9.5,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-3.3,-149.1],"shR":[-72.9,-95.3],"elR":[-62.6,1.6],"haR":[-63.6,69.3],"shL":[71.3,-109.1],"elL":[83.6,-9.8],"haL":[80.2,22],"hipR":[-30.9,36.4],"knR":[-13.2,172],"ftR":[-11,320.7],"hipL":[36.1,35.6],"knL":[20.8,184.3],"ftL":[6,301.5]},{"rootY":-9,"hips":[0,0],"chest":[-0.3,-84.9],"neck":[-0.3,-84.9],"head":[-3.5,-149],"shR":[-72.8,-95.1],"elR":[-62.4,2.8],"haR":[-63.6,70.8],"shL":[71.2,-109.1],"elL":[81.2,-9.9],"haL":[79.7,29.2],"hipR":[-32,35.6],"knR":[-12.4,171.9],"ftR":[-10,319.7],"hipL":[35.1,36.2],"knL":[22.7,187.6],"ftL":[8.9,291.4]},{"rootY":-9.3,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-2.6,-149],"shR":[-72.3,-95.2],"elR":[-62.4,4],"haR":[-64.4,72.6],"shL":[71.7,-109.1],"elL":[79.1,-9.7],"haL":[79.2,36.8],"hipR":[-32.3,35.3],"knR":[-10.4,173.6],"ftR":[-8.2,320],"hipL":[34.9,36.3],"knL":[26.5,190.8],"ftL":[13.6,281.9]},{"rootY":-10.3,"hips":[0,0],"chest":[0.6,-85],"neck":[0.6,-85],"head":[-1.5,-149.1],"shR":[-71.9,-96],"elR":[-62.4,4.4],"haR":[-65,73.6],"shL":[72.3,-108.4],"elL":[77.4,-8.9],"haL":[79.3,44.8],"hipR":[-32.9,34.9],"knR":[-9.3,176.1],"ftR":[-6.5,321.1],"hipL":[34.2,37],"knL":[30.5,193.5],"ftL":[17.1,272.7]},{"rootY":-11.7,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-1.1,-149.2],"shR":[-72.4,-96.9],"elR":[-63.7,4.6],"haR":[-66.9,73.9],"shL":[72.1,-107.5],"elL":[74.8,-7.8],"haL":[78.6,52],"hipR":[-33.2,34.8],"knR":[-10.6,178.9],"ftR":[-6.7,322.6],"hipL":[34,37.1],"knL":[32.5,192.8],"ftL":[16.5,266.6]},{"rootY":-13.4,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-1.1,-149.2],"shR":[-72.8,-97.6],"elR":[-65.6,5],"haR":[-69.2,73.7],"shL":[71.8,-107],"elL":[71.9,-7],"haL":[77.5,57.3],"hipR":[-33.4,34.5],"knR":[-12.3,181.7],"ftR":[-7.3,323.6],"hipL":[33.8,36.8],"knL":[32.5,190.2],"ftL":[15.7,265.5]},{"rootY":-14.8,"hips":[0,0],"chest":[-0.1,-85],"neck":[-0.1,-85],"head":[-0.3,-149.3],"shR":[-72.4,-98.4],"elR":[-67.4,4.9],"haR":[-71.1,72],"shL":[72.3,-106.1],"elL":[70.3,-6.3],"haL":[76.5,60.6],"hipR":[-34,34.6],"knR":[-13.7,184.4],"ftR":[-7.2,325.4],"hipL":[33.4,36.7],"knL":[32,186.3],"ftL":[18,269.7]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[0.2,-149.4],"shR":[-72.5,-98.9],"elR":[-70.6,4.7],"haR":[-73.9,69],"shL":[72.2,-105.7],"elL":[68.5,-6.1],"haL":[74.8,62.1],"hipR":[-34.9,34.3],"knR":[-15.7,186.1],"ftR":[-7.5,325.9],"hipL":[32.4,37.1],"knL":[30.4,181.9],"ftL":[20.6,278.2]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.8,-85],"neck":[-0.8,-85],"head":[0.2,-149.4],"shR":[-72.7,-99.6],"elR":[-74.1,3.7],"haR":[-77.2,64.1],"shL":[72,-105],"elL":[67.1,-6.1],"haL":[73.1,62.7],"hipR":[-35.1,34.6],"knR":[-17.3,187.9],"ftR":[-7.7,325.8],"hipL":[32.2,36.8],"knL":[27.7,176.9],"ftL":[22.6,289]},{"rootY":-16.2,"hips":[0,0],"chest":[-1.1,-85],"neck":[-1.1,-85],"head":[0.2,-149.3],"shR":[-72.8,-100.2],"elR":[-77.6,2.4],"haR":[-80.1,57.4],"shL":[71.8,-104.5],"elL":[65.7,-6.7],"haL":[71.3,62.3],"hipR":[-35.3,34.7],"knR":[-19.3,189.5],"ftR":[-8.6,326.2],"hipL":[31.9,36.9],"knL":[25.2,173.1],"ftL":[24.3,301.1]},{"rootY":-16.8,"hips":[0,0],"chest":[-1.6,-85],"neck":[-1.6,-85],"head":[0.2,-149.3],"shR":[-73.2,-100.4],"elR":[-81.1,1.2],"haR":[-82.5,50],"shL":[71.3,-104.3],"elL":[64,-7.8],"haL":[69.1,61.2],"hipR":[-36.1,34.2],"knR":[-21.2,189.9],"ftR":[-9.6,326.4],"hipL":[31,37.5],"knL":[23.3,171.1],"ftL":[25.8,312.6]},{"rootY":-18,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[-0.1,-149.2],"shR":[-73.3,-100.5],"elR":[-84.1,-0.3],"haR":[-84.5,42.5],"shL":[71.1,-104.2],"elL":[62.9,-8.9],"haL":[67.7,60.1],"hipR":[-36.4,34.3],"knR":[-22.5,189.9],"ftR":[-10.6,326.6],"hipL":[30.6,37.9],"knL":[21.6,171.1],"ftL":[26.5,320]},{"rootY":-17.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0.2,-149.1],"shR":[-73.5,-100.6],"elR":[-86.6,-1.7],"haR":[-86,34.9],"shL":[71,-104.2],"elL":[61.9,-9.5],"haL":[66.5,59.4],"hipR":[-36.8,34.2],"knR":[-23.9,188.7],"ftR":[-11.9,325.6],"hipL":[30.1,38.2],"knL":[20,171.8],"ftL":[26.2,321.9]},{"rootY":-16.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0,-149],"shR":[-73.4,-100.7],"elR":[-88.1,-3.1],"haR":[-86.7,28.3],"shL":[71,-104.1],"elL":[61.5,-9.5],"haL":[65.8,59.3],"hipR":[-37,34.1],"knR":[-24.8,186.7],"ftR":[-12.6,323.4],"hipL":[29.7,38.2],"knL":[19.3,172],"ftL":[24.1,320.9]},{"rootY":-15.4,"hips":[0,0],"chest":[-2.2,-84.9],"neck":[-2.2,-84.9],"head":[-0.2,-148.9],"shR":[-73.6,-100.9],"elR":[-89,-4.2],"haR":[-87.1,23.5],"shL":[70.8,-104],"elL":[61.2,-9.4],"haL":[65.4,59.4],"hipR":[-36.9,34.3],"knR":[-25.6,184.7],"ftR":[-14.5,319.2],"hipL":[29.8,37.7],"knL":[18.5,172.5],"ftL":[21.3,321.4]},{"rootY":-14.3,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[0,-148.8],"shR":[-73.5,-100.9],"elR":[-89.6,-4.6],"haR":[-87,20.3],"shL":[70.9,-103.9],"elL":[61.5,-8.7],"haL":[65.6,60.3],"hipR":[-37.2,34.1],"knR":[-26.5,182.7],"ftR":[-16.3,313.6],"hipL":[29.4,38.1],"knL":[17.4,173.2],"ftL":[18,323]},{"rootY":-14.2,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[0.3,-148.8],"shR":[-73.3,-100.8],"elR":[-89.1,-3.9],"haR":[-86.5,20.4],"shL":[71.2,-103.9],"elL":[62.3,-7.6],"haL":[66.5,61.4],"hipR":[-35.8,35.3],"knR":[-27.2,182.8],"ftR":[-19.9,307.7],"hipL":[31,37],"knL":[16.5,172.1],"ftL":[16.4,322.4]},{"rootY":-12.7,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[1,-148.7],"shR":[-73.4,-100.7],"elR":[-87.9,-2.8],"haR":[-85.2,23.1],"shL":[71.4,-103.9],"elL":[63.1,-6.5],"haL":[67.7,62.6],"hipR":[-35.6,35.1],"knR":[-28.2,185.2],"ftR":[-22.5,297.3],"hipL":[31.4,37],"knL":[16.8,171.5],"ftL":[15.1,321.3]},{"rootY":-14.3,"hips":[0,0],"chest":[-1.9,-85],"neck":[-1.9,-85],"head":[1.2,-148.7],"shR":[-73.8,-100.5],"elR":[-86.7,-1.1],"haR":[-84.3,28.3],"shL":[71.1,-104.1],"elL":[63.8,-5.7],"haL":[68.9,63],"hipR":[-35,35.7],"knR":[-30.8,189],"ftR":[-27.9,288.9],"hipL":[32.1,36.4],"knL":[16.2,173.2],"ftL":[12.9,321.8]},{"rootY":-16.1,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[1,-148.6],"shR":[-74,-100.2],"elR":[-85.7,0],"haR":[-83,34.2],"shL":[70.9,-104.3],"elL":[64.9,-5.5],"haL":[70.7,62.3],"hipR":[-34.2,36.5],"knR":[-32.5,192.3],"ftR":[-33,280.5],"hipL":[32.7,35.6],"knL":[15.2,176.1],"ftL":[10.6,323.6]},{"rootY":-17.9,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[1.1,-148.7],"shR":[-73.8,-99.9],"elR":[-84,1],"haR":[-81.5,40.9],"shL":[71,-104.6],"elL":[66.7,-5.4],"haL":[72.4,60.8],"hipR":[-33,37.4],"knR":[-33,193.8],"ftR":[-33.9,273],"hipL":[33.9,34.3],"knL":[15,178.6],"ftL":[9,324.9]},{"rootY":-20,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[0.6,-148.7],"shR":[-73.8,-99.6],"elR":[-81.6,2.1],"haR":[-80.6,48.1],"shL":[70.7,-105.1],"elL":[68.3,-5.5],"haL":[73.8,58.1],"hipR":[-33.8,36.7],"knR":[-32.5,191.4],"ftR":[-31.2,268.3],"hipL":[33.1,34.9],"knL":[14.4,181.8],"ftL":[8.7,326.9]},{"rootY":-21.5,"hips":[0,0],"chest":[-2.1,-85],"neck":[-2.1,-85],"head":[-0.1,-148.8],"shR":[-74.1,-98.8],"elR":[-80,3.8],"haR":[-80.1,55.7],"shL":[70.3,-105.9],"elL":[70.2,-6],"haL":[75,54.2],"hipR":[-32.7,37.4],"knR":[-32.6,189],"ftR":[-32.6,268],"hipL":[34.5,34.3],"knL":[15.4,184.5],"ftL":[6.7,328.9]},{"rootY":-22.3,"hips":[0,0],"chest":[-1.5,-85],"neck":[-1.5,-85],"head":[0.3,-148.9],"shR":[-73.7,-98.3],"elR":[-77.9,5],"haR":[-78.7,61.9],"shL":[70.9,-106.4],"elL":[73.2,-6.4],"haL":[76.4,49.9],"hipR":[-32.6,37.1],"knR":[-29.9,184.3],"ftR":[-31.3,272.9],"hipL":[34.7,34.4],"knL":[16,186.2],"ftL":[6.3,329.2]},{"rootY":-21.7,"hips":[0,0],"chest":[-1.2,-85],"neck":[-1.2,-85],"head":[0.3,-149],"shR":[-73.6,-97.8],"elR":[-75.4,5.8],"haR":[-77.2,67.4],"shL":[71,-107],"elL":[75.3,-6.8],"haL":[77.2,44.4],"hipR":[-31.7,37.3],"knR":[-27.2,180],"ftR":[-31.3,281.7],"hipL":[35.6,34.2],"knL":[16.6,187],"ftL":[5.2,328]},{"rootY":-21.9,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[0.6,-149],"shR":[-73.5,-97.2],"elR":[-72.8,6.4],"haR":[-75.9,71.3],"shL":[71.1,-107.5],"elL":[77.5,-7.4],"haL":[78,37.9],"hipR":[-30.8,37.7],"knR":[-24.8,177.1],"ftR":[-32.6,293.8],"hipL":[36.5,33.5],"knL":[17.3,187.9],"ftL":[4,327.5]},{"rootY":-21.1,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[1.3,-149.1],"shR":[-72.6,-97],"elR":[-70.1,6.1],"haR":[-73.3,73.6],"shL":[72.1,-107.7],"elL":[80,-7.7],"haL":[79,32.1],"hipR":[-30.2,37.9],"knR":[-21.6,174.9],"ftR":[-30.6,306.5],"hipL":[37,33.3],"knL":[18,188.4],"ftL":[4.2,326.4]},{"rootY":-21.2,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[0.5,-149.1],"shR":[-72.9,-97.7],"elR":[-68.3,4.7],"haR":[-71.5,73.6],"shL":[71.9,-107.3],"elL":[81.1,-7.4],"haL":[79.1,27],"hipR":[-30.8,37.2],"knR":[-19.9,174],"ftR":[-27.3,317.9],"hipL":[36.4,34.9],"knL":[18.4,190.3],"ftL":[3.9,326]},{"rootY":-22,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.8,-149.1],"shR":[-72.6,-97.1],"elR":[-66,4.1],"haR":[-69,73.4],"shL":[72.2,-107.8],"elL":[82.2,-8],"haL":[79.3,21.9],"hipR":[-31.6,36.4],"knR":[-17.9,174],"ftR":[-20.8,322.6],"hipL":[35.6,35.8],"knL":[19,191.4],"ftL":[3.9,326.3]},{"rootY":-22.4,"hips":[0,0],"chest":[0.5,-85],"neck":[0.5,-85],"head":[0.8,-149],"shR":[-72.5,-96.8],"elR":[-64,2.7],"haR":[-65.9,71.7],"shL":[72.3,-107.9],"elL":[83.1,-8.2],"haL":[79.8,18.9],"hipR":[-30.8,37],"knR":[-16.7,174.3],"ftR":[-14,322.4],"hipL":[36.3,35.6],"knL":[19.5,190.4],"ftL":[3,325.1]},{"rootY":-20.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.5,-148.9],"shR":[-72.8,-96.8],"elR":[-62.6,1],"haR":[-64.4,69.7],"shL":[72,-108.2],"elL":[82.6,-8.4],"haL":[79.2,17.9],"hipR":[-29.2,38],"knR":[-14.7,174.5],"ftR":[-7.3,321.6],"hipL":[37.5,34.7],"knL":[20.3,188.1],"ftL":[2.9,321.6]},{"rootY":-19.4,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.6,-148.9],"shR":[-72.7,-96.4],"elR":[-61.1,0.3],"haR":[-62.2,68],"shL":[72,-108.3],"elL":[81.9,-8.5],"haL":[79.2,18.8],"hipR":[-31,36.5],"knR":[-11.8,174.2],"ftR":[-3.1,321.5],"hipL":[35.9,36.1],"knL":[20.7,189],"ftL":[5,317.3]},{"rootY":-17.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.4,-148.8],"shR":[-72.8,-96.2],"elR":[-60,-0.1],"haR":[-61.3,67.6],"shL":[72,-108.5],"elL":[81.1,-8.8],"haL":[79.6,21.5],"hipR":[-30.7,36.6],"knR":[-8.1,173.7],"ftR":[-0.7,322.2],"hipL":[36.2,35.8],"knL":[21.8,188.1],"ftL":[6.5,309.6]}]},"wave":{"name":"wave","fps":30,"height":520,"groundY":284,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[3.1,-86],"neck":[3.7,-146.1],"head":[2.6,-177.8],"shR":[61.2,-143.1],"elR":[139.1,-124.1],"haR":[222.8,-109],"shL":[-55.1,-141.8],"elL":[-130,-112.1],"haL":[-215.5,-84.1],"hipR":[29.3,7.8],"knR":[37.3,164],"ftR":[48.3,283.2],"hipL":[-28.9,9.2],"knL":[-38.3,165.3],"ftL":[-49.4,284.2]},{"rootY":0,"hips":[0,0],"chest":[3,-86],"neck":[3.4,-146.1],"head":[2.3,-177.8],"shR":[61,-143.2],"elR":[139,-124.5],"haR":[222.7,-109.5],"shL":[-55.3,-141.7],"elL":[-130.2,-111.9],"haL":[-215.6,-83.7],"hipR":[29.3,7.7],"knR":[37.4,163.9],"ftR":[48.2,283.1],"hipL":[-28.8,9.3],"knL":[-38.5,165.3],"ftL":[-49.7,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.1,-146.1],"head":[1.8,-177.8],"shR":[60.6,-143.5],"elR":[138.7,-125.1],"haR":[222.4,-110.6],"shL":[-55.6,-141.4],"elL":[-130.5,-111.5],"haL":[-215.9,-83.2],"hipR":[29.3,7.6],"knR":[37.5,163.8],"ftR":[48,283],"hipL":[-28.8,9.4],"knL":[-38.8,165.4],"ftL":[-50.2,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[2.7,-85.9],"neck":[2.7,-146.1],"head":[1.3,-177.8],"shR":[60.2,-143.8],"elR":[138.4,-125.9],"haR":[222.2,-112],"shL":[-56,-141.2],"elL":[-130.8,-111.1],"haL":[-216.2,-82.6],"hipR":[29.3,7.5],"knR":[37.4,163.7],"ftR":[47.7,282.9],"hipL":[-28.8,9.5],"knL":[-39.1,165.5],"ftL":[-50.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-85.9],"neck":[2.3,-146.2],"head":[0.8,-177.8],"shR":[59.9,-144.2],"elR":[138.1,-126.8],"haR":[222.1,-113.4],"shL":[-56.4,-141],"elL":[-131,-110.6],"haL":[-216.3,-81.9],"hipR":[29.3,7.5],"knR":[37.1,163.7],"ftR":[47.2,282.9],"hipL":[-28.8,9.5],"knL":[-39.4,165.5],"ftL":[-51.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.9],"neck":[2,-146.2],"head":[0.4,-177.8],"shR":[59.5,-144.6],"elR":[138,-127.7],"haR":[222,-114.9],"shL":[-56.6,-140.8],"elL":[-131.1,-110.1],"haL":[-216.4,-81.1],"hipR":[29.4,7.5],"knR":[36.9,163.7],"ftR":[46.8,282.9],"hipL":[-28.8,9.5],"knL":[-39.6,165.5],"ftL":[-51.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[1.8,-146.2],"head":[0.1,-177.8],"shR":[59.3,-144.9],"elR":[137.8,-128.6],"haR":[222,-116.3],"shL":[-56.8,-140.6],"elL":[-131.2,-109.6],"haL":[-216.3,-80.2],"hipR":[29.4,7.4],"knR":[36.8,163.7],"ftR":[46.5,282.9],"hipL":[-28.8,9.5],"knL":[-39.8,165.5],"ftL":[-51.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-85.9],"neck":[1.5,-146.2],"head":[-0.3,-177.9],"shR":[59,-145.3],"elR":[137.6,-129.4],"haR":[221.9,-117.5],"shL":[-57.1,-140.4],"elL":[-131.3,-109.1],"haL":[-216.3,-79.2],"hipR":[29.4,7.4],"knR":[36.5,163.7],"ftR":[46.1,283],"hipL":[-28.8,9.5],"knL":[-39.9,165.5],"ftL":[-52,284.4]},{"rootY":0,"hips":[0,0],"chest":[2.2,-86],"neck":[1.2,-146.3],"head":[-0.6,-177.9],"shR":[58.6,-145.6],"elR":[137.3,-130],"haR":[221.7,-118.4],"shL":[-57.4,-140.4],"elL":[-131.5,-108.8],"haL":[-216.3,-78.4],"hipR":[29.3,7.5],"knR":[36,163.8],"ftR":[45.5,283.1],"hipL":[-28.8,9.5],"knL":[-40.1,165.4],"ftL":[-52.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[2,-86],"neck":[0.9,-146.3],"head":[-1,-177.9],"shR":[58.3,-146],"elR":[137,-130.6],"haR":[221.4,-119.1],"shL":[-57.7,-140.4],"elL":[-131.7,-108.4],"haL":[-216.3,-77.8],"hipR":[29.3,7.6],"knR":[35.7,163.9],"ftR":[45,283.2],"hipL":[-28.8,9.4],"knL":[-40.3,165.4],"ftL":[-52.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.9,-86],"neck":[0.6,-146.3],"head":[-1.4,-177.9],"shR":[57.9,-146.3],"elR":[136.6,-131],"haR":[221,-119.6],"shL":[-58,-140.3],"elL":[-131.9,-108.2],"haL":[-216.5,-77.3],"hipR":[29.3,7.5],"knR":[35.7,163.9],"ftR":[44.8,283.2],"hipL":[-28.8,9.4],"knL":[-40.4,165.4],"ftL":[-52.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.7,-86],"neck":[0.2,-146.3],"head":[-1.8,-177.9],"shR":[57.5,-146.5],"elR":[136.3,-131.3],"haR":[220.7,-120],"shL":[-58.3,-140.3],"elL":[-132.2,-108.1],"haL":[-216.7,-77],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[44.7,283.2],"hipL":[-28.8,9.5],"knL":[-40.5,165.4],"ftL":[-52.7,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.6,-86.1],"neck":[-0.1,-146.3],"head":[-2.2,-177.9],"shR":[57.2,-146.8],"elR":[136,-131.7],"haR":[220.4,-120.4],"shL":[-58.6,-140.3],"elL":[-132.5,-108.1],"haL":[-217,-76.9],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[44.6,283.2],"hipL":[-28.8,9.5],"knL":[-40.6,165.5],"ftL":[-52.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.5,-86.2],"neck":[-0.3,-146.3],"head":[-2.6,-177.9],"shR":[56.9,-147],"elR":[135.7,-132.1],"haR":[220.2,-120.8],"shL":[-58.9,-140.3],"elL":[-132.7,-108.1],"haL":[-217.3,-76.9],"hipR":[29.3,7.5],"knR":[35.7,163.8],"ftR":[44.6,283.2],"hipL":[-28.8,9.5],"knL":[-40.6,165.4],"ftL":[-52.9,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.4,-86.2],"neck":[-0.5,-146.4],"head":[-2.9,-178],"shR":[56.6,-147.2],"elR":[135.5,-132.6],"haR":[220.2,-121.4],"shL":[-59.1,-140.2],"elL":[-133,-108.2],"haL":[-217.5,-77],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.7,283.1],"hipL":[-28.8,9.5],"knL":[-40.6,165.5],"ftL":[-52.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.3,-86.3],"neck":[-0.7,-146.4],"head":[-3.1,-178],"shR":[56.5,-147.3],"elR":[135.4,-133],"haR":[220.2,-122],"shL":[-59.2,-140.2],"elL":[-133.1,-108.2],"haL":[-217.7,-77],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.8,283.1],"hipL":[-28.8,9.5],"knL":[-40.5,165.5],"ftL":[-52.8,284.2]},{"rootY":0,"hips":[0,0],"chest":[1.2,-86.4],"neck":[-0.8,-146.4],"head":[-3.3,-178],"shR":[56.3,-147.5],"elR":[135.3,-133.5],"haR":[220.1,-122.6],"shL":[-59.3,-140.1],"elL":[-133.2,-108.2],"haL":[-217.8,-77.1],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.9,283.1],"hipL":[-28.8,9.5],"knL":[-40.4,165.5],"ftL":[-52.6,284.2]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.4],"neck":[-0.9,-146.4],"head":[-3.5,-178],"shR":[56.1,-147.7],"elR":[135.2,-133.9],"haR":[220,-123],"shL":[-59.5,-140.2],"elL":[-133.3,-108.2],"haL":[-217.9,-77],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[45.2,283.1],"hipL":[-28.8,9.5],"knL":[-40.3,165.5],"ftL":[-52.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.4],"neck":[-1,-146.4],"head":[-3.6,-178],"shR":[55.9,-147.9],"elR":[135,-134.2],"haR":[219.7,-123.2],"shL":[-59.6,-140.2],"elL":[-133.4,-108.3],"haL":[-217.9,-76.9],"hipR":[29.3,7.5],"knR":[36,163.8],"ftR":[45.5,283],"hipL":[-28.8,9.5],"knL":[-40.3,165.5],"ftL":[-52.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.4],"neck":[-1.1,-146.4],"head":[-3.7,-177.9],"shR":[55.7,-148.2],"elR":[134.8,-134.4],"haR":[219.4,-123.1],"shL":[-59.6,-140.4],"elL":[-133.5,-108.3],"haL":[-217.9,-76.7],"hipR":[29.3,7.5],"knR":[36.1,163.8],"ftR":[45.7,283],"hipL":[-28.8,9.5],"knL":[-40.2,165.5],"ftL":[-52,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.2,-146.4],"head":[-3.9,-177.9],"shR":[55.6,-148.5],"elR":[134.6,-134.4],"haR":[219,-122.8],"shL":[-59.7,-140.5],"elL":[-133.5,-108.2],"haL":[-217.8,-76.5],"hipR":[29.3,7.5],"knR":[36.2,163.8],"ftR":[46,283],"hipL":[-28.8,9.5],"knL":[-40,165.5],"ftL":[-51.8,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.2,-146.4],"head":[-4,-177.9],"shR":[55.4,-148.7],"elR":[134.3,-134.4],"haR":[218.6,-122.2],"shL":[-59.8,-140.6],"elL":[-133.4,-108.1],"haL":[-217.7,-76.1],"hipR":[29.3,7.5],"knR":[36.4,163.8],"ftR":[46.3,283],"hipL":[-28.8,9.5],"knL":[-39.9,165.5],"ftL":[-51.5,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.3,-146.4],"head":[-4,-178],"shR":[55.3,-148.8],"elR":[134.1,-134.1],"haR":[218.2,-121.4],"shL":[-59.8,-140.7],"elL":[-133.4,-107.9],"haL":[-217.5,-75.5],"hipR":[29.3,7.5],"knR":[36.5,163.8],"ftR":[46.5,283],"hipL":[-28.8,9.5],"knL":[-39.7,165.6],"ftL":[-51.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.6],"neck":[-1.3,-146.5],"head":[-4.1,-178],"shR":[55.2,-148.8],"elR":[133.9,-133.8],"haR":[217.8,-120.6],"shL":[-59.9,-140.8],"elL":[-133.3,-107.7],"haL":[-217.3,-75],"hipR":[29.3,7.5],"knR":[36.6,163.8],"ftR":[46.6,283],"hipL":[-28.8,9.5],"knL":[-39.5,165.6],"ftL":[-51.1,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.6],"neck":[-1.2,-146.5],"head":[-4.1,-178],"shR":[55.1,-148.8],"elR":[133.7,-133.5],"haR":[217.4,-119.8],"shL":[-59.9,-140.8],"elL":[-133.2,-107.4],"haL":[-217.1,-74.6],"hipR":[29.3,7.5],"knR":[36.6,163.8],"ftR":[46.8,283],"hipL":[-28.8,9.5],"knL":[-39.4,165.6],"ftL":[-50.9,284.2]},{"rootY":-0.1,"hips":[0,0],"chest":[1.2,-86.6],"neck":[-1.1,-146.5],"head":[-4,-178],"shR":[55.2,-148.7],"elR":[133.7,-133.2],"haR":[217.2,-119.3],"shL":[-59.8,-140.7],"elL":[-133.1,-107.2],"haL":[-216.8,-74.3],"hipR":[29.4,7.5],"knR":[37,163.8],"ftR":[47.2,282.9],"hipL":[-28.8,9.5],"knL":[-39.2,165.6],"ftL":[-50.7,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1.3,-86.5],"neck":[-0.9,-146.5],"head":[-3.9,-178],"shR":[55.4,-148.5],"elR":[133.8,-132.9],"haR":[217.1,-118.9],"shL":[-59.6,-140.7],"elL":[-132.9,-107.2],"haL":[-216.6,-74.2],"hipR":[29.4,7.4],"knR":[37.7,163.7],"ftR":[47.8,282.9],"hipL":[-28.7,9.6],"knL":[-39,165.7],"ftL":[-50.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[1.4,-86.5],"neck":[-0.7,-146.4],"head":[-3.6,-178],"shR":[55.6,-148.3],"elR":[134,-132.8],"haR":[217.2,-118.8],"shL":[-59.4,-140.8],"elL":[-132.7,-107.4],"haL":[-216.5,-74.5],"hipR":[29.4,7.4],"knR":[38.3,163.6],"ftR":[48.5,282.8],"hipL":[-28.7,9.6],"knL":[-38.9,165.7],"ftL":[-50,284.5]},{"rootY":-0.2,"hips":[0,0],"chest":[1.4,-86.4],"neck":[-0.5,-146.4],"head":[-3.4,-177.9],"shR":[55.7,-148.3],"elR":[134.1,-132.8],"haR":[217.2,-118.8],"shL":[-59.2,-141],"elL":[-132.7,-107.8],"haL":[-216.5,-75.2],"hipR":[29.4,7.4],"knR":[38.7,163.6],"ftR":[48.9,282.8],"hipL":[-28.8,9.5],"knL":[-38.9,165.7],"ftL":[-49.7,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.5,-86.4],"neck":[-0.3,-146.4],"head":[-3.2,-177.9],"shR":[55.8,-148.5],"elR":[134.2,-133],"haR":[217.2,-119],"shL":[-59.1,-141.2],"elL":[-132.7,-108.3],"haL":[-216.7,-76.1],"hipR":[29.3,7.5],"knR":[39,163.7],"ftR":[49.3,282.9],"hipL":[-28.8,9.5],"knL":[-38.8,165.6],"ftL":[-49.4,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.5,-86.3],"neck":[-0.2,-146.4],"head":[-3,-177.9],"shR":[56,-148.5],"elR":[134.4,-133.1],"haR":[217.5,-119.3],"shL":[-58.9,-141.2],"elL":[-132.7,-108.8],"haL":[-216.9,-77.1],"hipR":[29.3,7.5],"knR":[39.3,163.7],"ftR":[49.9,282.9],"hipL":[-28.8,9.4],"knL":[-38.7,165.6],"ftL":[-48.9,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.6,-86.3],"neck":[0,-146.4],"head":[-2.7,-178],"shR":[56.3,-148.3],"elR":[134.7,-133.1],"haR":[217.9,-119.6],"shL":[-58.7,-141.3],"elL":[-132.7,-109.3],"haL":[-217.1,-78.2],"hipR":[29.3,7.6],"knR":[39.6,163.7],"ftR":[50.4,282.9],"hipL":[-28.8,9.4],"knL":[-38.3,165.6],"ftL":[-48.5,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.7,-86.3],"neck":[0.2,-146.4],"head":[-2.5,-178],"shR":[56.6,-148.2],"elR":[135.1,-133.1],"haR":[218.3,-119.9],"shL":[-58.5,-141.3],"elL":[-132.7,-109.8],"haL":[-217.3,-79.1],"hipR":[29.3,7.6],"knR":[39.8,163.7],"ftR":[50.9,282.9],"hipL":[-28.8,9.4],"knL":[-38,165.6],"ftL":[-48,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.8,-86.3],"neck":[0.3,-146.5],"head":[-2.3,-178.1],"shR":[56.8,-148.1],"elR":[135.4,-133],"haR":[218.7,-120],"shL":[-58.4,-141.3],"elL":[-132.7,-110],"haL":[-217.4,-79.8],"hipR":[29.3,7.6],"knR":[39.9,163.7],"ftR":[51.3,282.8],"hipL":[-28.8,9.4],"knL":[-37.5,165.5],"ftL":[-47.5,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.9,-86.3],"neck":[0.5,-146.6],"head":[-2,-178.2],"shR":[57.1,-148],"elR":[135.7,-132.8],"haR":[219.2,-119.8],"shL":[-58.2,-141.2],"elL":[-132.6,-110.2],"haL":[-217.4,-80.3],"hipR":[29.3,7.7],"knR":[40,163.8],"ftR":[51.8,282.8],"hipL":[-28.8,9.3],"knL":[-37.1,165.5],"ftL":[-47,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2,-86.3],"neck":[0.7,-146.6],"head":[-1.8,-178.2],"shR":[57.4,-147.7],"elR":[136,-132.4],"haR":[219.8,-119.6],"shL":[-58,-141.1],"elL":[-132.5,-110.2],"haL":[-217.4,-80.7],"hipR":[29.3,7.7],"knR":[40.1,163.8],"ftR":[52.2,282.8],"hipL":[-28.8,9.3],"knL":[-36.7,165.5],"ftL":[-46.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.1,-86.3],"neck":[0.8,-146.7],"head":[-1.5,-178.3],"shR":[57.7,-147.4],"elR":[136.4,-132.1],"haR":[220.4,-119.2],"shL":[-57.9,-141],"elL":[-132.4,-110.4],"haL":[-217.5,-81.1],"hipR":[29.3,7.8],"knR":[40.3,163.8],"ftR":[52.7,282.8],"hipL":[-28.8,9.2],"knL":[-36.5,165.4],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.2,-86.3],"neck":[1,-146.7],"head":[-1.3,-178.3],"shR":[57.9,-147.3],"elR":[136.6,-131.8],"haR":[220.7,-118.6],"shL":[-57.7,-141.1],"elL":[-132.4,-110.6],"haL":[-217.4,-81.6],"hipR":[29.2,7.8],"knR":[40.6,163.8],"ftR":[53.1,282.8],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.3],"neck":[1.1,-146.7],"head":[-1,-178.3],"shR":[58.1,-147.3],"elR":[136.8,-131.4],"haR":[221,-118],"shL":[-57.6,-141.2],"elL":[-132.3,-110.8],"haL":[-217.4,-82.1],"hipR":[29.2,7.8],"knR":[40.9,163.8],"ftR":[53.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.2,165.4],"ftL":[-45.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.3,-146.7],"head":[-0.8,-178.3],"shR":[58.3,-147.1],"elR":[137,-131.1],"haR":[221.3,-117.5],"shL":[-57.4,-141.3],"elL":[-132.2,-111.2],"haL":[-217.4,-82.7],"hipR":[29.2,7.9],"knR":[41.1,163.9],"ftR":[53.6,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-45.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.2],"neck":[1.4,-146.6],"head":[-0.6,-178.3],"shR":[58.5,-146.9],"elR":[137.2,-130.7],"haR":[221.6,-117],"shL":[-57.3,-141.3],"elL":[-132.2,-111.4],"haL":[-217.4,-83.3],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.8,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-45,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.2],"neck":[1.5,-146.6],"head":[-0.4,-178.3],"shR":[58.7,-146.7],"elR":[137.4,-130.3],"haR":[221.9,-116.6],"shL":[-57.1,-141.3],"elL":[-132.2,-111.7],"haL":[-217.5,-84],"hipR":[29.2,7.9],"knR":[41.3,163.9],"ftR":[54,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.7,-146.6],"head":[-0.2,-178.3],"shR":[58.9,-146.5],"elR":[137.6,-130],"haR":[222.2,-116.1],"shL":[-57,-141.4],"elL":[-132.1,-112],"haL":[-217.5,-84.5],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54.1,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.8,-146.6],"head":[0,-178.3],"shR":[59.1,-146.3],"elR":[137.8,-129.7],"haR":[222.5,-115.6],"shL":[-56.8,-141.5],"elL":[-132,-112.3],"haL":[-217.5,-84.9],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[2,-146.6],"head":[0.2,-178.3],"shR":[59.3,-146.1],"elR":[138,-129.3],"haR":[222.8,-115.2],"shL":[-56.6,-141.7],"elL":[-131.9,-112.6],"haL":[-217.3,-85.3],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.1],"neck":[2.2,-146.6],"head":[0.4,-178.2],"shR":[59.6,-146],"elR":[138.2,-129],"haR":[223.1,-114.7],"shL":[-56.4,-141.8],"elL":[-131.7,-112.8],"haL":[-217.1,-85.5],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-86.1],"neck":[2.4,-146.5],"head":[0.7,-178.2],"shR":[59.9,-145.8],"elR":[138.5,-128.7],"haR":[223.5,-114.2],"shL":[-56.2,-141.9],"elL":[-131.5,-112.9],"haL":[-216.9,-85.8],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.6,-86.1],"neck":[2.7,-146.5],"head":[1,-178.2],"shR":[60.2,-145.6],"elR":[138.8,-128.4],"haR":[223.8,-113.9],"shL":[-55.9,-141.8],"elL":[-131.2,-112.9],"haL":[-216.7,-86],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.1,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.7,-86],"neck":[2.9,-146.5],"head":[1.2,-178.2],"shR":[60.4,-145.4],"elR":[139,-128],"haR":[224.2,-113.5],"shL":[-55.7,-141.8],"elL":[-131,-112.9],"haL":[-216.5,-86.1],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-44.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.7,-86],"neck":[3,-146.5],"head":[1.4,-178.2],"shR":[60.6,-145.1],"elR":[139.3,-127.7],"haR":[224.5,-113.1],"shL":[-55.6,-141.8],"elL":[-130.9,-112.9],"haL":[-216.4,-86.1],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.9,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-44.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.2,-146.5],"head":[1.6,-178.2],"shR":[60.8,-144.8],"elR":[139.4,-127.3],"haR":[224.8,-112.6],"shL":[-55.5,-141.8],"elL":[-130.8,-113],"haL":[-216.3,-86.2],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.7,282.9],"hipL":[-28.8,9.1],"knL":[-36.1,165.3],"ftL":[-45,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.2,-146.5],"head":[1.8,-178.2],"shR":[60.9,-144.7],"elR":[139.5,-127],"haR":[225,-112.2],"shL":[-55.4,-141.8],"elL":[-130.7,-113],"haL":[-216.2,-86.3],"hipR":[29.2,7.9],"knR":[41.1,163.9],"ftR":[53.6,282.9],"hipL":[-28.8,9.1],"knL":[-36.2,165.3],"ftL":[-45.1,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.3,-146.5],"head":[1.9,-178.2],"shR":[61,-144.5],"elR":[139.6,-126.6],"haR":[225.2,-111.6],"shL":[-55.3,-141.8],"elL":[-130.7,-113.1],"haL":[-216.2,-86.5],"hipR":[29.2,7.9],"knR":[41,163.9],"ftR":[53.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.3,165.3],"ftL":[-45.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.4,-146.4],"head":[2.1,-178.1],"shR":[61.1,-144.2],"elR":[139.7,-126.2],"haR":[225.4,-111.1],"shL":[-55.2,-141.8],"elL":[-130.6,-113.2],"haL":[-216.2,-86.8],"hipR":[29.2,7.9],"knR":[40.9,163.9],"ftR":[53.2,282.9],"hipL":[-28.8,9.1],"knL":[-36.4,165.3],"ftL":[-45.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.5,-146.4],"head":[2.2,-178.1],"shR":[61.3,-143.9],"elR":[139.8,-125.8],"haR":[225.5,-110.5],"shL":[-55.1,-141.8],"elL":[-130.6,-113.3],"haL":[-216.2,-87],"hipR":[29.2,7.9],"knR":[40.9,163.9],"ftR":[53.1,283],"hipL":[-28.8,9.1],"knL":[-36.5,165.3],"ftL":[-45.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.6,-146.4],"head":[2.3,-178.1],"shR":[61.4,-143.7],"elR":[139.9,-125.3],"haR":[225.6,-109.8],"shL":[-55,-141.8],"elL":[-130.5,-113.4],"haL":[-216.2,-87.1],"hipR":[29.2,7.9],"knR":[40.8,163.9],"ftR":[52.9,283],"hipL":[-28.8,9.1],"knL":[-36.6,165.3],"ftL":[-45.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.7,-146.4],"head":[2.5,-178.1],"shR":[61.5,-143.5],"elR":[140,-124.8],"haR":[225.7,-109],"shL":[-54.9,-141.8],"elL":[-130.4,-113.5],"haL":[-216.1,-87.3],"hipR":[29.2,7.9],"knR":[40.7,163.9],"ftR":[52.7,283],"hipL":[-28.8,9.1],"knL":[-36.7,165.3],"ftL":[-45.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3,-85.9],"neck":[3.9,-146.4],"head":[2.7,-178.1],"shR":[61.7,-143.3],"elR":[140.1,-124.4],"haR":[225.8,-108.4],"shL":[-54.8,-141.9],"elL":[-130.3,-113.6],"haL":[-216,-87.4],"hipR":[29.2,7.9],"knR":[40.5,163.9],"ftR":[52.6,283],"hipL":[-28.8,9.1],"knL":[-36.8,165.3],"ftL":[-45.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.1,-85.9],"neck":[4.1,-146.4],"head":[2.9,-178.1],"shR":[61.9,-143.1],"elR":[140.3,-124.1],"haR":[225.9,-107.9],"shL":[-54.6,-142],"elL":[-130.1,-113.7],"haL":[-215.8,-87.6],"hipR":[29.2,7.9],"knR":[40.5,163.9],"ftR":[52.5,283],"hipL":[-28.8,9.1],"knL":[-36.8,165.3],"ftL":[-46,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.1,-85.9],"neck":[4.3,-146.3],"head":[3.2,-178.1],"shR":[62.2,-142.9],"elR":[140.5,-123.9],"haR":[226.1,-107.7],"shL":[-54.3,-142.1],"elL":[-129.9,-113.9],"haL":[-215.6,-87.8],"hipR":[29.2,7.8],"knR":[40.4,163.9],"ftR":[52.5,283],"hipL":[-28.8,9.1],"knL":[-36.9,165.3],"ftL":[-46.1,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.2,-85.9],"neck":[4.6,-146.3],"head":[3.5,-178],"shR":[62.4,-142.6],"elR":[140.8,-123.8],"haR":[226.3,-107.9],"shL":[-54.1,-142.2],"elL":[-129.7,-114.2],"haL":[-215.5,-88.2],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.4,283],"hipL":[-28.8,9.1],"knL":[-36.9,165.3],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.3,-85.9],"neck":[4.8,-146.3],"head":[3.8,-178],"shR":[62.6,-142.3],"elR":[141.1,-123.9],"haR":[226.5,-108.3],"shL":[-53.9,-142.3],"elL":[-129.6,-114.5],"haL":[-215.4,-88.7],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.3,283],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.4,-85.9],"neck":[4.9,-146.3],"head":[4,-178],"shR":[62.8,-142.2],"elR":[141.3,-124],"haR":[226.5,-108.8],"shL":[-53.7,-142.4],"elL":[-129.5,-114.8],"haL":[-215.3,-89.3],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.2,283],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-46.3,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.5,-85.9],"neck":[5,-146.2],"head":[4.2,-177.9],"shR":[62.8,-142.1],"elR":[141.4,-124.2],"haR":[226.5,-109.3],"shL":[-53.6,-142.6],"elL":[-129.5,-115.2],"haL":[-215.3,-89.8],"hipR":[29.2,7.8],"knR":[40.2,163.9],"ftR":[52.1,283],"hipL":[-28.8,9.2],"knL":[-37,165.4],"ftL":[-46.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.5,-85.9],"neck":[4.9,-146.2],"head":[4.2,-177.9],"shR":[62.8,-142],"elR":[141.3,-124.4],"haR":[226.3,-109.8],"shL":[-53.7,-142.8],"elL":[-129.6,-115.5],"haL":[-215.4,-90.2],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[52,283],"hipL":[-28.8,9.2],"knL":[-37,165.4],"ftL":[-46.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.4,-85.9],"neck":[4.8,-146.2],"head":[4.1,-177.9],"shR":[62.6,-142.1],"elR":[141.2,-124.5],"haR":[226,-110.1],"shL":[-53.8,-142.9],"elL":[-129.7,-115.6],"haL":[-215.6,-90.4],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[51.8,283],"hipL":[-28.8,9.2],"knL":[-37.1,165.4],"ftL":[-46.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.3,-85.9],"neck":[4.6,-146.2],"head":[3.9,-177.9],"shR":[62.4,-142.1],"elR":[140.9,-124.5],"haR":[225.5,-110.3],"shL":[-54,-143],"elL":[-129.9,-115.6],"haL":[-215.8,-90.4],"hipR":[29.3,7.8],"knR":[40,163.9],"ftR":[51.6,282.9],"hipL":[-28.8,9.2],"knL":[-37.2,165.4],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.2,-86],"neck":[4.3,-146.2],"head":[3.6,-177.9],"shR":[62.2,-142],"elR":[140.6,-124.4],"haR":[225.1,-110.4],"shL":[-54.3,-142.9],"elL":[-130.1,-115.4],"haL":[-215.9,-89.9],"hipR":[29.3,7.7],"knR":[39.9,163.8],"ftR":[51.4,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-47,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.1,-86],"neck":[4.1,-146.2],"head":[3.4,-177.9],"shR":[62,-141.8],"elR":[140.3,-123.7],"haR":[224.6,-110.6],"shL":[-54.5,-142.7],"elL":[-130.2,-114.8],"haL":[-215.9,-88.9],"hipR":[29.3,7.7],"knR":[39.8,163.8],"ftR":[51.2,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-47.2,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.9,-86],"neck":[4,-146.2],"head":[3.1,-177.9],"shR":[62,-141.6],"elR":[139.9,-121.8],"haR":[223.9,-111.2],"shL":[-54.6,-142.2],"elL":[-130.1,-113.9],"haL":[-215.7,-87.3],"hipR":[29.3,7.7],"knR":[39.7,163.8],"ftR":[51.1,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.5],"ftL":[-47.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.8,-86],"neck":[3.9,-146.2],"head":[2.9,-177.8],"shR":[62,-141.3],"elR":[139,-118.4],"haR":[222.5,-112.1],"shL":[-54.7,-141.5],"elL":[-130,-112.5],"haL":[-215.4,-85.1],"hipR":[29.3,7.7],"knR":[39.6,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-86],"neck":[3.7,-146.2],"head":[2.6,-177.8],"shR":[61.9,-140.9],"elR":[137.7,-114.8],"haR":[220.2,-113.1],"shL":[-54.9,-140.7],"elL":[-129.8,-110.8],"haL":[-214.7,-82.1],"hipR":[29.3,7.7],"knR":[39.5,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-86],"neck":[3.5,-146.1],"head":[2.3,-177.7],"shR":[61.8,-140.4],"elR":[136.8,-112.6],"haR":[217.4,-114.7],"shL":[-55.1,-140.1],"elL":[-129.4,-108.8],"haL":[-213.8,-78.4],"hipR":[29.2,7.7],"knR":[39.5,163.8],"ftR":[51.1,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.3,-146.1],"head":[2,-177.7],"shR":[61.6,-140.2],"elR":[136.4,-112.1],"haR":[214.6,-116.8],"shL":[-55.2,-139.5],"elL":[-128.9,-106.7],"haL":[-212.7,-74.7],"hipR":[29.2,7.7],"knR":[39.5,163.9],"ftR":[51.2,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.3,-146.1],"head":[1.7,-177.6],"shR":[61.5,-140.7],"elR":[136,-112.3],"haR":[211.8,-119.6],"shL":[-55.3,-138.9],"elL":[-128.4,-104.8],"haL":[-211.6,-71.4],"hipR":[29.2,7.8],"knR":[39.7,163.9],"ftR":[51.4,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-47.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.2,-146],"head":[1.4,-177.6],"shR":[61.3,-141.6],"elR":[135.3,-113],"haR":[209.2,-122.5],"shL":[-55.4,-138.3],"elL":[-128,-103.1],"haL":[-210.6,-68.5],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[51.6,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-47,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-85.8],"neck":[2.9,-145.9],"head":[0.8,-177.5],"shR":[60.8,-142.5],"elR":[134.5,-114.3],"haR":[206.8,-124.9],"shL":[-55.7,-137.8],"elL":[-127.8,-101.7],"haL":[-210,-65.9],"hipR":[29.2,7.8],"knR":[40.5,163.8],"ftR":[51.7,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-46.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-85.8],"neck":[2.5,-145.9],"head":[0.1,-177.4],"shR":[60.2,-143.2],"elR":[133.9,-116.2],"haR":[204.8,-126.6],"shL":[-56.2,-137.4],"elL":[-127.8,-100.3],"haL":[-209.5,-63.5],"hipR":[29.2,7.8],"knR":[41,163.8],"ftR":[51.8,282.9],"hipL":[-28.8,9.2],"knL":[-37.4,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-85.7],"neck":[1.9,-145.8],"head":[-0.7,-177.3],"shR":[59.3,-144],"elR":[133.4,-118.6],"haR":[203.1,-127.7],"shL":[-56.8,-136.9],"elL":[-128,-99.1],"haL":[-209.3,-61.4],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-85.7],"neck":[1.3,-145.8],"head":[-1.5,-177.3],"shR":[58.5,-144.7],"elR":[132.7,-120.6],"haR":[201.9,-128.2],"shL":[-57.4,-136.5],"elL":[-128.3,-98.1],"haL":[-209.4,-59.8],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[0.7,-145.8],"head":[-2.3,-177.3],"shR":[57.6,-145.2],"elR":[131.7,-122],"haR":[201,-127.9],"shL":[-58,-136.1],"elL":[-128.8,-97.4],"haL":[-209.8,-58.7],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.7,282.9],"hipL":[-28.8,9.3],"knL":[-37.1,165.6],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[0.1,-145.8],"head":[-3.1,-177.3],"shR":[56.8,-145.5],"elR":[130.6,-123.2],"haR":[200.4,-126.9],"shL":[-58.6,-135.7],"elL":[-129.3,-96.9],"haL":[-210.3,-58.1],"hipR":[29.3,7.6],"knR":[41.2,163.7],"ftR":[51.7,282.8],"hipL":[-28.8,9.3],"knL":[-37,165.6],"ftL":[-46.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[-0.4,-145.8],"head":[-3.8,-177.3],"shR":[56.1,-145.9],"elR":[129.8,-124.5],"haR":[200.2,-125.1],"shL":[-59.1,-135.4],"elL":[-129.8,-96.6],"haL":[-211,-58],"hipR":[29.3,7.6],"knR":[41.2,163.6],"ftR":[51.7,282.8],"hipL":[-28.8,9.4],"knL":[-37,165.6],"ftL":[-46.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[-0.8,-145.8],"head":[-4.3,-177.3],"shR":[55.6,-146.1],"elR":[129.2,-125.6],"haR":[200.3,-123.3],"shL":[-59.4,-135],"elL":[-130.1,-96.6],"haL":[-211.7,-58.2],"hipR":[29.3,7.6],"knR":[41.2,163.7],"ftR":[51.7,282.9],"hipL":[-28.8,9.3],"knL":[-36.9,165.6],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-85.7],"neck":[-0.9,-145.8],"head":[-4.5,-177.4],"shR":[55.3,-146.2],"elR":[128.9,-125.9],"haR":[200.6,-121.9],"shL":[-59.5,-134.8],"elL":[-130.4,-96.7],"haL":[-212.2,-58.8],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-36.8,165.6],"ftL":[-46.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.7,-85.7],"neck":[-0.9,-145.8],"head":[-4.6,-177.4],"shR":[55.2,-145.8],"elR":[129,-125.6],"haR":[201.1,-120.7],"shL":[-59.4,-134.6],"elL":[-130.3,-96.9],"haL":[-212.4,-59.3],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[51.9,282.9],"hipL":[-28.8,9.3],"knL":[-36.8,165.5],"ftL":[-46.5,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.8,-85.6],"neck":[-0.7,-145.9],"head":[-4.4,-177.4],"shR":[55.4,-145.3],"elR":[129.3,-125.2],"haR":[202,-119.4],"shL":[-59.2,-134.5],"elL":[-130,-96.9],"haL":[-212.1,-59.3],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[52.1,282.9],"hipL":[-28.8,9.3],"knL":[-36.6,165.5],"ftL":[-46.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.4,-145.9],"head":[-4.2,-177.4],"shR":[55.6,-144.9],"elR":[129.8,-125.3],"haR":[203.1,-118],"shL":[-58.8,-134.3],"elL":[-129.4,-96.5],"haL":[-211.3,-58.7],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[52.3,282.9],"hipL":[-28.9,9.2],"knL":[-36.5,165.5],"ftL":[-46.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.4,-85.6],"neck":[-0.1,-145.9],"head":[-3.9,-177.5],"shR":[55.8,-144.9],"elR":[130.1,-125.6],"haR":[204.4,-116.6],"shL":[-58.4,-134.1],"elL":[-128.6,-95.9],"haL":[-210.3,-57.5],"hipR":[29.3,7.8],"knR":[41.4,163.8],"ftR":[52.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.4,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.8,-85.6],"neck":[0.1,-146],"head":[-3.8,-177.5],"shR":[55.9,-145],"elR":[130.3,-125.8],"haR":[205.4,-115.6],"shL":[-58.1,-133.7],"elL":[-127.9,-95],"haL":[-209.3,-56.1],"hipR":[29.3,7.8],"knR":[41.3,163.8],"ftR":[52.5,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[4,-85.6],"neck":[0.2,-146],"head":[-3.8,-177.5],"shR":[55.9,-144.7],"elR":[130.5,-125.6],"haR":[206.2,-114.8],"shL":[-57.9,-133.2],"elL":[-127.4,-94.1],"haL":[-208.5,-54.8],"hipR":[29.3,7.8],"knR":[41.1,163.8],"ftR":[52.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[4.1,-85.6],"neck":[0.2,-146],"head":[-3.9,-177.5],"shR":[55.8,-144.3],"elR":[130.6,-125.1],"haR":[206.6,-114.3],"shL":[-57.9,-132.8],"elL":[-127.1,-93.3],"haL":[-207.9,-53.5],"hipR":[29.2,7.8],"knR":[40.9,163.8],"ftR":[52.3,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.3],"ftL":[-46.1,284.4]},{"rootY":0,"hips":[0,0],"chest":[4,-85.6],"neck":[-0.1,-146],"head":[-4.2,-177.6],"shR":[55.6,-143.8],"elR":[130.5,-124.5],"haR":[206.7,-114],"shL":[-58.1,-132.5],"elL":[-126.9,-92.4],"haL":[-207.3,-51.8],"hipR":[29.2,7.8],"knR":[40.7,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.4,165.3],"ftL":[-46.4,284.4]},{"rootY":0,"hips":[0,0],"chest":[3.8,-85.6],"neck":[-0.4,-146.1],"head":[-4.6,-177.6],"shR":[55.4,-143.6],"elR":[130.3,-124.1],"haR":[206.3,-113.7],"shL":[-58.4,-132.2],"elL":[-126.7,-91.3],"haL":[-206.6,-49.8],"hipR":[29.2,7.8],"knR":[40.3,163.7],"ftR":[51.5,282.9],"hipL":[-28.8,9.2],"knL":[-36.6,165.3],"ftL":[-46.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.7,-85.7],"neck":[-0.7,-146.1],"head":[-5,-177.6],"shR":[55.1,-143.6],"elR":[129.8,-123.9],"haR":[205.7,-113.7],"shL":[-58.7,-131.9],"elL":[-126.4,-90.1],"haL":[-205.8,-47.5],"hipR":[29.3,7.8],"knR":[39.9,163.7],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-47.2,284.4]},{"rootY":0,"hips":[0,0],"chest":[3.6,-85.7],"neck":[-1,-146.1],"head":[-5.4,-177.6],"shR":[54.8,-143.3],"elR":[129.5,-123.1],"haR":[204.8,-114.3],"shL":[-58.9,-131.2],"elL":[-126.1,-88.5],"haL":[-205,-44.9],"hipR":[29.3,7.8],"knR":[39.5,163.7],"ftR":[50.7,282.9],"hipL":[-28.8,9.2],"knL":[-37.3,165.3],"ftL":[-47.7,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.4,-85.6],"neck":[-1.2,-146.1],"head":[-5.7,-177.5],"shR":[54.8,-142.1],"elR":[129.4,-120.4],"haR":[202.6,-115],"shL":[-59,-130.2],"elL":[-125.3,-86.2],"haL":[-203.4,-41.2],"hipR":[29.3,7.8],"knR":[39.2,163.7],"ftR":[50.3,282.9],"hipL":[-28.8,9.2],"knL":[-37.6,165.3],"ftL":[-48.1,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.2,-85.6],"neck":[-1.1,-146],"head":[-5.8,-177.5],"shR":[55.1,-139.7],"elR":[129.7,-116],"haR":[198.4,-114.9],"shL":[-58.8,-129],"elL":[-123.5,-82.8],"haL":[-200.4,-35.6],"hipR":[29.3,7.7],"knR":[38.9,163.7],"ftR":[50,282.9],"hipL":[-28.8,9.2],"knL":[-37.8,165.3],"ftL":[-48.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.9,-146],"head":[-5.7,-177.5],"shR":[55.4,-137.2],"elR":[130.1,-111.1],"haR":[191.9,-113.1],"shL":[-58.3,-127.6],"elL":[-120.4,-78.2],"haL":[-195.2,-27.8],"hipR":[29.3,7.7],"knR":[38.6,163.7],"ftR":[49.8,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.2],"ftL":[-48.6,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.7,-146],"head":[-5.4,-177.5],"shR":[55.8,-135.4],"elR":[130.4,-107.1],"haR":[184,-109],"shL":[-57.7,-126],"elL":[-116,-72.6],"haL":[-187.5,-17.8],"hipR":[29.3,7.7],"knR":[38.3,163.7],"ftR":[49.7,282.8],"hipL":[-28.8,9.3],"knL":[-38,165.2],"ftL":[-48.7,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.4,-146],"head":[-5,-177.5],"shR":[56.2,-134.2],"elR":[130.3,-104],"haR":[176.4,-103.7],"shL":[-57.1,-124.8],"elL":[-109.9,-66.3],"haL":[-176,-5.8],"hipR":[29.3,7.7],"knR":[38.2,163.7],"ftR":[49.7,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.2],"ftL":[-48.7,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3,-85.6],"neck":[0.2,-146],"head":[-4.3,-177.5],"shR":[56.6,-133.1],"elR":[129.8,-100.4],"haR":[171,-99.2],"shL":[-56.4,-124.4],"elL":[-102.1,-60.2],"haL":[-160.1,7.1],"hipR":[29.3,7.7],"knR":[38.3,163.7],"ftR":[50,282.8],"hipL":[-28.8,9.3],"knL":[-37.8,165.2],"ftL":[-48.4,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[2.9,-85.6],"neck":[1,-146.1],"head":[-3.3,-177.6],"shR":[57.3,-132.4],"elR":[128.6,-96],"haR":[167.5,-97.2],"shL":[-55.7,-124.7],"elL":[-93.3,-55],"haL":[-141.4,19.1],"hipR":[29.3,7.7],"knR":[38.5,163.7],"ftR":[50.5,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.1],"ftL":[-47.9,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.2,-85.6],"neck":[2.3,-146.1],"head":[-2,-177.6],"shR":[58.4,-132.1],"elR":[126.7,-91],"haR":[164.5,-99.4],"shL":[-54.4,-124.8],"elL":[-84.3,-50.9],"haL":[-122,29.1],"hipR":[29.2,7.8],"knR":[38.7,163.8],"ftR":[51.2,282.8],"hipL":[-28.9,9.2],"knL":[-37.3,165],"ftL":[-47.2,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[4,-85.5],"neck":[4,-146],"head":[-0.1,-177.5],"shR":[59.9,-131.9],"elR":[124.7,-86],"haR":[161.3,-105.7],"shL":[-52.6,-124.4],"elL":[-75,-47.5],"haL":[-102.7,36.9],"hipR":[29.2,7.9],"knR":[38.8,163.9],"ftR":[52.1,282.8],"hipL":[-28.9,9.1],"knL":[-36.9,165],"ftL":[-46.4,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[5,-85.3],"neck":[5.8,-145.8],"head":[1.7,-177.3],"shR":[61.5,-131.8],"elR":[121.9,-81.4],"haR":[157.9,-114.4],"shL":[-50.7,-123.7],"elL":[-65.8,-44.8],"haL":[-84.7,42.4],"hipR":[29.2,8],"knR":[39,163.9],"ftR":[52.9,282.8],"hipL":[-28.9,9],"knL":[-36.4,164.9],"ftL":[-45.7,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[5.9,-85.2],"neck":[7.1,-145.6],"head":[3.1,-177.1],"shR":[62.7,-132.3],"elR":[117.5,-78.6],"haR":[153.4,-124.3],"shL":[-49.3,-123.1],"elL":[-59.1,-43.3],"haL":[-72.2,45.2],"hipR":[29.2,8.1],"knR":[38.9,164],"ftR":[53.3,282.8],"hipL":[-28.9,8.9],"knL":[-36.2,164.8],"ftL":[-45.3,284]},{"rootY":0.1,"hips":[0,0],"chest":[6.4,-85.1],"neck":[7.5,-145.5],"head":[3.6,-177],"shR":[63.1,-133.3],"elR":[112.7,-79.1],"haR":[146.3,-135.2],"shL":[-48.9,-123],"elL":[-57,-43.1],"haL":[-69.5,45.6],"hipR":[29.2,8.1],"knR":[38.6,164],"ftR":[53.1,282.8],"hipL":[-28.9,8.9],"knL":[-36.4,164.8],"ftL":[-45.5,284]},{"rootY":0.1,"hips":[0,0],"chest":[6.5,-85.2],"neck":[7.3,-145.5],"head":[3.6,-177],"shR":[62.7,-134.2],"elR":[112.3,-82.9],"haR":[135.1,-144.9],"shL":[-49,-122.9],"elL":[-59.5,-43.4],"haL":[-75.4,44.7],"hipR":[29.2,8],"knR":[38.3,163.9],"ftR":[52.5,282.7],"hipL":[-28.9,9],"knL":[-36.7,164.8],"ftL":[-46.1,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.4,-85.2],"neck":[6.8,-145.5],"head":[3.7,-177.1],"shR":[62,-135.3],"elR":[118.4,-90.6],"haR":[120.9,-150.3],"shL":[-49.2,-122.3],"elL":[-63.9,-43.6],"haL":[-84.1,43.6],"hipR":[29.2,7.9],"knR":[38,163.9],"ftR":[51.9,282.7],"hipL":[-28.9,9],"knL":[-37.1,164.9],"ftL":[-46.7,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.5,-85.1],"neck":[6.2,-145.4],"head":[3.7,-177.1],"shR":[61.1,-136.5],"elR":[126.5,-103.5],"haR":[107.3,-150.5],"shL":[-49.5,-121.3],"elL":[-68.3,-43.6],"haL":[-91.6,42.6],"hipR":[29.2,7.9],"knR":[37.7,163.9],"ftR":[51.3,282.7],"hipL":[-28.9,9.1],"knL":[-37.3,164.9],"ftL":[-47.2,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.9,-85],"neck":[5.5,-145.4],"head":[3.5,-177.1],"shR":[60,-137.2],"elR":[130.6,-118.2],"haR":[98.2,-149.1],"shL":[-50,-120.5],"elL":[-72.2,-43.8],"haL":[-98,41.6],"hipR":[29.2,7.9],"knR":[37.5,163.8],"ftR":[50.7,282.8],"hipL":[-28.9,9.1],"knL":[-37.6,164.9],"ftL":[-47.8,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.3,-85],"neck":[4.6,-145.4],"head":[2.9,-177.1],"shR":[58.4,-137.6],"elR":[129.1,-125.9],"haR":[92.7,-150.7],"shL":[-50.7,-120],"elL":[-75.5,-44],"haL":[-103.9,40.3],"hipR":[29.2,7.9],"knR":[37.1,163.8],"ftR":[49.9,282.8],"hipL":[-28.9,9.1],"knL":[-38.1,164.9],"ftL":[-48.5,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-85.2],"neck":[3.6,-145.5],"head":[2,-177.3],"shR":[56.7,-138.4],"elR":[123.9,-121.7],"haR":[90,-154.2],"shL":[-51.3,-119.5],"elL":[-77.7,-43.9],"haL":[-108.3,39.2],"hipR":[29.3,7.8],"knR":[36.7,163.8],"ftR":[49,282.8],"hipL":[-28.9,9.2],"knL":[-38.6,165],"ftL":[-49.4,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-85.3],"neck":[2.9,-145.7],"head":[1.1,-177.4],"shR":[55.5,-139.3],"elR":[114.5,-110.8],"haR":[87.1,-157.5],"shL":[-51.9,-119.1],"elL":[-78.4,-43.5],"haL":[-110.2,38.5],"hipR":[29.3,7.7],"knR":[36.3,163.7],"ftR":[48.3,282.8],"hipL":[-28.9,9.2],"knL":[-38.8,165.1],"ftL":[-50,284.2]},{"rootY":0.2,"hips":[0,0],"chest":[6.9,-85.4],"neck":[2.6,-145.7],"head":[0.7,-177.4],"shR":[55,-139.8],"elR":[103.3,-102.2],"haR":[84,-160.5],"shL":[-52.3,-119.2],"elL":[-77.9,-43.2],"haL":[-110,37.8],"hipR":[29.3,7.6],"knR":[36.1,163.6],"ftR":[47.8,282.7],"hipL":[-28.8,9.3],"knL":[-38.8,165.2],"ftL":[-50.5,284.2]},{"rootY":0.3,"hips":[0,0],"chest":[6.9,-85.4],"neck":[2.7,-145.7],"head":[0.8,-177.4],"shR":[54.8,-139.4],"elR":[97.7,-99.6],"haR":[80.2,-159.2],"shL":[-52.6,-119.7],"elL":[-76.8,-43.2],"haL":[-108,37.4],"hipR":[29.3,7.6],"knR":[36,163.6],"ftR":[47.7,282.7],"hipL":[-28.8,9.4],"knL":[-38.7,165.3],"ftL":[-50.7,284.2]},{"rootY":0.3,"hips":[0,0],"chest":[7,-85.4],"neck":[3,-145.6],"head":[1.3,-177.3],"shR":[54.8,-138.9],"elR":[101.1,-102.2],"haR":[75.1,-152.1],"shL":[-52.5,-120.3],"elL":[-75,-43.1],"haL":[-104.2,37.5],"hipR":[29.3,7.6],"knR":[36.1,163.6],"ftR":[48,282.7],"hipL":[-28.8,9.4],"knL":[-38.5,165.3],"ftL":[-50.4,284.2]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-85.3],"neck":[3.4,-145.5],"head":[1.9,-177.2],"shR":[54.9,-138.6],"elR":[108,-108.6],"haR":[71.3,-143.6],"shL":[-52.1,-120.2],"elL":[-72.8,-42.5],"haL":[-99.2,38.5],"hipR":[29.3,7.7],"knR":[36.4,163.7],"ftR":[48.6,282.7],"hipL":[-28.8,9.3],"knL":[-38.3,165.2],"ftL":[-49.8,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-85.2],"neck":[3.6,-145.3],"head":[2.2,-177.1],"shR":[55,-138.4],"elR":[111.7,-114.8],"haR":[68,-136.3],"shL":[-51.7,-119.5],"elL":[-70.5,-41.3],"haL":[-94.1,40],"hipR":[29.3,7.8],"knR":[36.8,163.8],"ftR":[49.1,282.8],"hipL":[-28.9,9.2],"knL":[-38.1,165.2],"ftL":[-49.2,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[7.7,-85.2],"neck":[3.5,-145.3],"head":[2.2,-177],"shR":[54.8,-138.3],"elR":[110.8,-115.2],"haR":[64.9,-131.9],"shL":[-51.6,-119],"elL":[-68.4,-40.4],"haL":[-89.3,41.5],"hipR":[29.3,7.8],"knR":[37.1,163.8],"ftR":[49.6,282.9],"hipL":[-28.9,9.2],"knL":[-38,165.1],"ftL":[-48.8,284.2]},{"rootY":0,"hips":[0,0],"chest":[7.6,-85.2],"neck":[3.5,-145.3],"head":[2,-177],"shR":[54.9,-138.2],"elR":[106.2,-107.5],"haR":[60.3,-132],"shL":[-51.6,-118.8],"elL":[-66.7,-39.9],"haL":[-84.9,42.8],"hipR":[29.3,7.8],"knR":[37.2,163.9],"ftR":[49.8,282.9],"hipL":[-28.9,9.2],"knL":[-38,165.1],"ftL":[-48.6,284.2]},{"rootY":0,"hips":[0,0],"chest":[7.2,-85.4],"neck":[3.5,-145.3],"head":[1.8,-177],"shR":[55.4,-138.2],"elR":[97.6,-96.3],"haR":[55.1,-135.7],"shL":[-51.8,-118.9],"elL":[-65.5,-39.9],"haL":[-81.1,44.1],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50,282.9],"hipL":[-28.9,9.2],"knL":[-37.8,165.1],"ftL":[-48.5,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.8,-85.4],"neck":[3.6,-145.3],"head":[1.8,-177],"shR":[56,-138.5],"elR":[87.1,-88.4],"haR":[50.7,-140.4],"shL":[-51.9,-119.1],"elL":[-65,-40],"haL":[-78.3,45.3],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50.1,282.8],"hipL":[-28.9,9.2],"knL":[-37.7,165.2],"ftL":[-48.4,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.6,-85.4],"neck":[3.8,-145.2],"head":[1.9,-176.9],"shR":[56.5,-138.6],"elR":[80.3,-85.4],"haR":[46.7,-143.4],"shL":[-52,-119.3],"elL":[-65.1,-40.2],"haL":[-76.4,46.4],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50.2,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.2],"ftL":[-48.3,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.6,-85.4],"neck":[3.9,-145.2],"head":[2,-176.9],"shR":[56.7,-138.5],"elR":[81.4,-86.1],"haR":[41.2,-141.7],"shL":[-52.1,-119.6],"elL":[-65.2,-40.5],"haL":[-75.4,47.2],"hipR":[29.2,7.8],"knR":[37.2,163.9],"ftR":[50.5,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.2],"ftL":[-48,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.5,-85.4],"neck":[3.8,-145.3],"head":[2.1,-177],"shR":[56.9,-138.5],"elR":[87.9,-89.7],"haR":[35.8,-136.1],"shL":[-52.1,-119.7],"elL":[-65.3,-40.5],"haL":[-75.3,47.5],"hipR":[29.2,7.8],"knR":[37.4,163.9],"ftR":[50.9,282.8],"hipL":[-28.8,9.2],"knL":[-37.4,165.1],"ftL":[-47.7,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.4,-85.4],"neck":[3.6,-145.3],"head":[2,-177],"shR":[57,-138.9],"elR":[93.9,-95.4],"haR":[31,-129.6],"shL":[-52.2,-119.4],"elL":[-65.6,-40.4],"haL":[-76.1,47.7],"hipR":[29.2,7.9],"knR":[37.6,163.9],"ftR":[51.2,282.8],"hipL":[-28.8,9.1],"knL":[-37.3,165.1],"ftL":[-47.3,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.3,-85.4],"neck":[3.1,-145.3],"head":[1.6,-177],"shR":[56.6,-139.1],"elR":[96.8,-100.4],"haR":[28.4,-124.7],"shL":[-52.6,-119],"elL":[-66.4,-40.1],"haL":[-77.5,47.7],"hipR":[29.2,7.9],"knR":[37.8,163.9],"ftR":[51.4,282.8],"hipL":[-28.9,9.1],"knL":[-37.2,165.1],"ftL":[-47.2,284.2]},{"rootY":0,"hips":[0,0],"chest":[6,-85.4],"neck":[2.3,-145.3],"head":[0.9,-177],"shR":[55.7,-138.8],"elR":[96.8,-101.8],"haR":[28.5,-124.7],"shL":[-53.1,-118.7],"elL":[-67.4,-39.8],"haL":[-79.2,47.7],"hipR":[29.2,7.9],"knR":[37.8,163.9],"ftR":[51.4,282.8],"hipL":[-28.8,9.1],"knL":[-37.1,165.1],"ftL":[-47.2,284.2]},{"rootY":0,"hips":[0,0],"chest":[5.7,-85.5],"neck":[1.5,-145.3],"head":[0.1,-177],"shR":[54.7,-138.4],"elR":[94.7,-99.2],"haR":[29.5,-127.4],"shL":[-53.9,-118.5],"elL":[-68.6,-39.7],"haL":[-80.8,47.4],"hipR":[29.2,7.8],"knR":[37.8,163.9],"ftR":[51.2,282.8],"hipL":[-28.8,9.2],"knL":[-37.2,165.2],"ftL":[-47.3,284.2]},{"rootY":0,"hips":[0,0],"chest":[5.3,-85.5],"neck":[0.8,-145.3],"head":[-0.6,-177],"shR":[53.9,-138.7],"elR":[90.8,-95.2],"haR":[30,-131.3],"shL":[-54.5,-118.4],"elL":[-69.8,-39.6],"haL":[-82.2,47],"hipR":[29.3,7.8],"knR":[37.8,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37.1,165.2],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[5,-85.5],"neck":[0.4,-145.2],"head":[-1.1,-176.9],"shR":[53.5,-139.3],"elR":[86.1,-91.8],"haR":[30.7,-137.2],"shL":[-54.9,-118.3],"elL":[-70.9,-39.6],"haL":[-83.2,46.6],"hipR":[29.3,7.8],"knR":[37.9,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37.1,165.3],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.9,-85.5],"neck":[0.3,-145.2],"head":[-1.3,-176.9],"shR":[53.3,-139.8],"elR":[82.1,-90.1],"haR":[32.8,-143.8],"shL":[-55.1,-118.2],"elL":[-71.9,-39.7],"haL":[-83.7,46.1],"hipR":[29.3,7.7],"knR":[38.1,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37,165.3],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.5],"neck":[0.4,-145.2],"head":[-1.3,-176.8],"shR":[53.4,-140],"elR":[81.5,-90.6],"haR":[34.6,-146.6],"shL":[-55.2,-118.4],"elL":[-72.5,-39.9],"haL":[-83.8,45.7],"hipR":[29.3,7.8],"knR":[38.2,163.9],"ftR":[51.3,282.8],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-47.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.5],"neck":[0.4,-145.1],"head":[-1.2,-176.8],"shR":[53.7,-139.9],"elR":[86,-93.2],"haR":[34.7,-142.9],"shL":[-55.2,-118.5],"elL":[-72.8,-40],"haL":[-83.5,45.4],"hipR":[29.3,7.8],"knR":[38.4,163.9],"ftR":[51.7,282.8],"hipL":[-28.9,9.2],"knL":[-36.7,165.3],"ftL":[-46.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.4],"neck":[0.5,-145.1],"head":[-1,-176.7],"shR":[54,-139.2],"elR":[93.7,-97.4],"haR":[35.8,-135.3],"shL":[-55,-118.3],"elL":[-72.7,-39.8],"haL":[-83,45.3],"hipR":[29.3,7.8],"knR":[38.7,163.9],"ftR":[52.2,282.8],"hipL":[-28.9,9.2],"knL":[-36.5,165.3],"ftL":[-46.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.4],"neck":[0.6,-145],"head":[-0.9,-176.7],"shR":[54.2,-137.6],"elR":[101.2,-101.5],"haR":[37.5,-125.2],"shL":[-54.8,-118],"elL":[-72.4,-39.4],"haL":[-82.3,45.5],"hipR":[29.2,7.9],"knR":[38.9,164],"ftR":[52.7,282.8],"hipL":[-28.9,9.1],"knL":[-36.3,165.3],"ftL":[-45.9,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.3],"neck":[0.5,-145],"head":[-1,-176.7],"shR":[54,-135.5],"elR":[105.9,-103.9],"haR":[38.5,-111.7],"shL":[-54.7,-117.6],"elL":[-72,-38.9],"haL":[-81.6,45.8],"hipR":[29.2,7.9],"knR":[39.1,164],"ftR":[53,282.8],"hipL":[-28.9,9.1],"knL":[-36.1,165.2],"ftL":[-45.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.3],"neck":[0.3,-145],"head":[-1.2,-176.7],"shR":[53.8,-133.6],"elR":[108.2,-102.8],"haR":[40.5,-97.5],"shL":[-54.8,-117.3],"elL":[-71.5,-38.5],"haL":[-80.9,46.2],"hipR":[29.2,7.9],"knR":[39.2,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.6,-85.2],"neck":[0.1,-145],"head":[-1.6,-176.7],"shR":[53.5,-132.3],"elR":[110,-98],"haR":[46.4,-85.3],"shL":[-54.8,-117],"elL":[-71.1,-38.1],"haL":[-80.2,46.5],"hipR":[29.2,7.9],"knR":[39.3,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.5,-85.1],"neck":[0,-145],"head":[-1.9,-176.6],"shR":[53.4,-131],"elR":[110.9,-90.4],"haR":[55.3,-73.6],"shL":[-54.8,-116.6],"elL":[-70.7,-37.6],"haL":[-79.5,47],"hipR":[29.2,7.9],"knR":[39.4,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.3,-85],"neck":[-0.2,-144.9],"head":[-2.4,-176.5],"shR":[53.3,-129.4],"elR":[108.7,-81.3],"haR":[62.6,-57.5],"shL":[-54.8,-116.2],"elL":[-70.4,-37.2],"haL":[-78.9,47.5],"hipR":[29.2,7.9],"knR":[39.5,164],"ftR":[53,282.9],"hipL":[-28.9,9.1],"knL":[-36.1,165.2],"ftL":[-45.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.9],"neck":[-0.3,-144.8],"head":[-2.8,-176.4],"shR":[53,-127.3],"elR":[103.4,-71.8],"haR":[67.4,-35.7],"shL":[-55,-116],"elL":[-70.2,-37],"haL":[-78.4,48],"hipR":[29.2,7.9],"knR":[39.5,164],"ftR":[52.9,282.9],"hipL":[-28.9,9.1],"knL":[-36.2,165.2],"ftL":[-45.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.9],"neck":[-0.4,-144.6],"head":[-3.1,-176.2],"shR":[52.8,-125.2],"elR":[96.8,-62.9],"haR":[72.4,-15.1],"shL":[-55.2,-116.2],"elL":[-70,-37.1],"haL":[-78,48.4],"hipR":[29.2,7.9],"knR":[39.6,164],"ftR":[52.7,282.9],"hipL":[-28.9,9.1],"knL":[-36.4,165.2],"ftL":[-45.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.8],"neck":[-0.3,-144.5],"head":[-3.2,-176.1],"shR":[52.7,-123.6],"elR":[91.1,-56.1],"haR":[79.4,1],"shL":[-55.3,-116.5],"elL":[-69.9,-37.3],"haL":[-77.9,48.5],"hipR":[29.3,7.9],"knR":[39.6,163.9],"ftR":[52.5,282.9],"hipL":[-28.9,9.1],"knL":[-36.5,165.3],"ftL":[-46,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.1,-84.8],"neck":[-0.2,-144.5],"head":[-3.2,-176.1],"shR":[52.9,-122.5],"elR":[87.2,-52],"haR":[87.1,14.5],"shL":[-55.4,-116.7],"elL":[-69.9,-37.6],"haL":[-77.9,48.6],"hipR":[29.3,7.9],"knR":[39.7,163.9],"ftR":[52.3,282.9],"hipL":[-28.9,9.1],"knL":[-36.6,165.3],"ftL":[-46.1,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.1,-84.8],"neck":[0.1,-144.3],"head":[-3,-175.9],"shR":[53.1,-121.9],"elR":[85.1,-49.7],"haR":[93.2,25.7],"shL":[-55.3,-116.8],"elL":[-69.9,-37.8],"haL":[-78.2,48.7],"hipR":[29.3,7.8],"knR":[39.8,163.9],"ftR":[52.1,282.9],"hipL":[-28.9,9.2],"knL":[-36.6,165.3],"ftL":[-46.2,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.7],"neck":[0.4,-144.3],"head":[-2.8,-175.8],"shR":[53.3,-121.6],"elR":[84.3,-48.1],"haR":[97.7,32.8],"shL":[-55.1,-116.9],"elL":[-70,-38],"haL":[-78.8,48.7],"hipR":[29.3,7.8],"knR":[40,163.9],"ftR":[52,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.3,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.3,-84.7],"neck":[0.6,-144.3],"head":[-2.6,-175.9],"shR":[53.6,-121.5],"elR":[84.3,-47.3],"haR":[101.3,36.3],"shL":[-54.8,-116.8],"elL":[-70.1,-38.1],"haL":[-79.5,48.8],"hipR":[29.3,7.8],"knR":[40.3,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.3,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.4,-84.8],"neck":[0.8,-144.4],"head":[-2.4,-176],"shR":[54.1,-121.5],"elR":[84.4,-46.8],"haR":[103.9,38.3],"shL":[-54.5,-116.7],"elL":[-70.1,-38.1],"haL":[-80.4,48.8],"hipR":[29.3,7.8],"knR":[40.5,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.9,165.4],"ftL":[-46.3,284.5]},{"rootY":0,"hips":[0,0],"chest":[4.4,-84.8],"neck":[0.9,-144.5],"head":[-2.2,-176.1],"shR":[54.7,-121.3],"elR":[84.3,-46.3],"haR":[105.2,39.7],"shL":[-54.2,-116.5],"elL":[-70.2,-38],"haL":[-81.2,48.9],"hipR":[29.3,7.8],"knR":[40.6,163.8],"ftR":[51.8,282.9],"hipL":[-28.9,9.2],"knL":[-36.9,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[4.2,-84.9],"neck":[1.1,-144.6],"head":[-2,-176.2],"shR":[55.3,-121],"elR":[84.1,-45.9],"haR":[106.1,40.5],"shL":[-53.9,-116.4],"elL":[-70.2,-38],"haL":[-81.9,48.9],"hipR":[29.2,7.8],"knR":[40.7,163.8],"ftR":[51.8,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[3.9,-85],"neck":[1.3,-144.7],"head":[-1.7,-176.4],"shR":[55.8,-120.8],"elR":[84.1,-45.8],"haR":[106.7,40.8],"shL":[-53.5,-116.4],"elL":[-70.3,-38.1],"haL":[-82.4,48.9],"hipR":[29.3,7.8],"knR":[40.7,163.8],"ftR":[51.7,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[3.5,-85.1],"neck":[1.5,-144.9],"head":[-1.5,-176.6],"shR":[56.2,-120.5],"elR":[83.7,-45.7],"haR":[106.7,41],"shL":[-53.2,-116.4],"elL":[-70.3,-38.2],"haL":[-82.6,48.9],"hipR":[29.3,7.8],"knR":[40.5,163.8],"ftR":[51.6,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[3,-85.2],"neck":[1.5,-145.1],"head":[-1.3,-176.7],"shR":[56.5,-120.4],"elR":[82.7,-45.4],"haR":[105.9,41.3],"shL":[-53,-116.5],"elL":[-70.4,-38.2],"haL":[-82.7,49],"hipR":[29.3,7.8],"knR":[40.2,163.8],"ftR":[51.5,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[2.6,-85.2],"neck":[1.4,-145.1],"head":[-1.4,-176.8],"shR":[56.5,-120.3],"elR":[81.5,-45.1],"haR":[104.7,41.7],"shL":[-53,-116.4],"elL":[-70.6,-38.1],"haL":[-82.6,49],"hipR":[29.3,7.7],"knR":[39.9,163.8],"ftR":[51.3,282.9],"hipL":[-28.9,9.2],"knL":[-37,165.4],"ftL":[-46.9,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[2.2,-85.2],"neck":[1.2,-145.1],"head":[-1.6,-176.8],"shR":[56.4,-120.2],"elR":[80.6,-44.8],"haR":[103.6,42],"shL":[-53,-116.2],"elL":[-70.7,-37.9],"haL":[-82.3,49.1],"hipR":[29.3,7.7],"knR":[39.6,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.2,165.4],"ftL":[-47.2,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.9,-85.2],"neck":[0.9,-145.1],"head":[-1.9,-176.8],"shR":[56.2,-120.1],"elR":[80.1,-44.5],"haR":[102.6,42.3],"shL":[-53.1,-116],"elL":[-70.8,-37.6],"haL":[-81.8,49.1],"hipR":[29.3,7.7],"knR":[39.3,163.8],"ftR":[50.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.4],"ftL":[-47.4,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.5,-85.2],"neck":[0.5,-145.1],"head":[-2.2,-176.8],"shR":[55.9,-119.9],"elR":[79.7,-44.3],"haR":[101.7,42.5],"shL":[-53.2,-115.7],"elL":[-70.9,-37.2],"haL":[-81.2,49],"hipR":[29.3,7.7],"knR":[38.9,163.8],"ftR":[50.6,282.9],"hipL":[-28.8,9.3],"knL":[-37.6,165.3],"ftL":[-47.6,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-85.2],"neck":[0.1,-145.1],"head":[-2.6,-176.8],"shR":[55.5,-119.9],"elR":[79.5,-44.1],"haR":[101.2,42.3],"shL":[-53.4,-115.4],"elL":[-70.8,-36.7],"haL":[-80.4,48.9],"hipR":[29.3,7.7],"knR":[38.4,163.8],"ftR":[50.4,282.9],"hipL":[-28.8,9.3],"knL":[-37.7,165.3],"ftL":[-47.8,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.8,-85.2],"neck":[-0.3,-145.2],"head":[-2.9,-176.9],"shR":[55.2,-120],"elR":[79.3,-44.1],"haR":[101,41.9],"shL":[-53.5,-115],"elL":[-70.7,-36.3],"haL":[-79.4,48.7],"hipR":[29.3,7.7],"knR":[37.9,163.8],"ftR":[50.2,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.3],"ftL":[-48,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.5,-85.2],"neck":[-0.6,-145.2],"head":[-3.3,-176.9],"shR":[54.9,-120],"elR":[79.3,-44.1],"haR":[101.1,41.4],"shL":[-53.6,-114.6],"elL":[-70.4,-35.8],"haL":[-78.4,48.5],"hipR":[29.3,7.7],"knR":[37.6,163.8],"ftR":[50.1,282.8],"hipL":[-28.8,9.3],"knL":[-38,165.3],"ftL":[-48.1,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.3,-85.2],"neck":[-0.9,-145.2],"head":[-3.5,-176.9],"shR":[54.8,-120.1],"elR":[79.5,-44.1],"haR":[101.4,40.8],"shL":[-53.6,-114.3],"elL":[-70.1,-35.4],"haL":[-77.2,48.3],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.1,282.8],"hipL":[-28.8,9.3],"knL":[-38.1,165.3],"ftL":[-48.1,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.2,-85.2],"neck":[-1,-145.2],"head":[-3.5,-176.9],"shR":[54.7,-120.2],"elR":[80,-44.2],"haR":[102,40.1],"shL":[-53.5,-114.2],"elL":[-69.8,-35.2],"haL":[-76.1,48],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.2,282.8],"hipL":[-28.7,9.3],"knL":[-38.1,165.3],"ftL":[-48,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.1,-85.1],"neck":[-1,-145.2],"head":[-3.5,-176.9],"shR":[54.8,-120.2],"elR":[80.6,-44.3],"haR":[102.7,39.3],"shL":[-53.4,-114.1],"elL":[-69.6,-35.1],"haL":[-75.1,47.8],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.4,282.8],"hipL":[-28.7,9.3],"knL":[-38,165.2],"ftL":[-47.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.1,-85],"neck":[-0.8,-145.1],"head":[-3.4,-176.8],"shR":[55,-120.2],"elR":[81.2,-44.4],"haR":[103.3,38.6],"shL":[-53.1,-114],"elL":[-69.3,-35],"haL":[-74.2,47.7],"hipR":[29.2,7.7],"knR":[37.5,163.8],"ftR":[50.7,282.8],"hipL":[-28.7,9.3],"knL":[-37.9,165.2],"ftL":[-47.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.2,-85],"neck":[-0.6,-145.1],"head":[-3.2,-176.8],"shR":[55.2,-120.1],"elR":[81.6,-44.3],"haR":[103.9,38.3],"shL":[-52.9,-114],"elL":[-69.1,-35],"haL":[-73.7,47.7],"hipR":[29.2,7.7],"knR":[37.6,163.9],"ftR":[51,282.8],"hipL":[-28.7,9.2],"knL":[-37.8,165.2],"ftL":[-47.2,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.3,-84.9],"neck":[-0.4,-145.1],"head":[-3,-176.8],"shR":[55.4,-119.9],"elR":[81.7,-44],"haR":[104.4,38.2],"shL":[-52.6,-114],"elL":[-68.9,-35],"haL":[-73.6,47.8],"hipR":[29.2,7.8],"knR":[37.8,163.9],"ftR":[51.3,282.8],"hipL":[-28.7,9.2],"knL":[-37.6,165.1],"ftL":[-46.9,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.4,-84.9],"neck":[-0.2,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.7],"elR":[81.5,-43.6],"haR":[104.5,38.6],"shL":[-52.4,-114],"elL":[-68.8,-35],"haL":[-73.8,48.1],"hipR":[29.2,7.8],"knR":[38.1,163.9],"ftR":[51.5,282.8],"hipL":[-28.7,9.2],"knL":[-37.5,165.1],"ftL":[-46.7,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.9],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.5],"elR":[81,-43.2],"haR":[104.1,39.3],"shL":[-52.3,-114],"elL":[-68.7,-35.1],"haL":[-74.3,48.4],"hipR":[29.2,7.8],"knR":[38.3,163.9],"ftR":[51.7,282.8],"hipL":[-28.7,9.2],"knL":[-37.4,165.1],"ftL":[-46.5,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.3],"elR":[80.3,-42.8],"haR":[103.5,40.2],"shL":[-52.4,-114.1],"elL":[-68.8,-35.1],"haL":[-75,48.8],"hipR":[29.2,7.8],"knR":[38.5,163.9],"ftR":[51.8,282.8],"hipL":[-28.7,9.2],"knL":[-37.3,165.1],"ftL":[-46.3,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.3,-119.1],"elR":[79.7,-42.5],"haR":[102.7,41.1],"shL":[-52.4,-114.1],"elL":[-69,-35.2],"haL":[-75.9,49.1],"hipR":[29.2,7.8],"knR":[38.7,163.9],"ftR":[52,282.8],"hipL":[-28.7,9.2],"knL":[-37.2,165.1],"ftL":[-46.2,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.2,-145],"head":[-2.9,-176.7],"shR":[55.2,-119],"elR":[79.3,-42.2],"haR":[102.1,41.8],"shL":[-52.5,-114.1],"elL":[-69.2,-35.2],"haL":[-76.7,49.5],"hipR":[29.2,7.8],"knR":[39,163.9],"ftR":[52.1,282.8],"hipL":[-28.7,9.2],"knL":[-37.2,165.1],"ftL":[-46.1,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.7],"neck":[-0.2,-144.9],"head":[-2.9,-176.6],"shR":[55.1,-118.9],"elR":[78.9,-42],"haR":[101.6,42.5],"shL":[-52.6,-114.1],"elL":[-69.3,-35.2],"haL":[-77.6,49.9],"hipR":[29.2,7.8],"knR":[39.3,163.9],"ftR":[52.1,282.9],"hipL":[-28.7,9.2],"knL":[-37.1,165.1],"ftL":[-46,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.6],"neck":[-0.2,-144.9],"head":[-2.9,-176.6],"shR":[55.1,-118.8],"elR":[78.4,-41.9],"haR":[101.2,43.1],"shL":[-52.7,-114],"elL":[-69.3,-35.1],"haL":[-78.2,50.2],"hipR":[29.2,7.8],"knR":[39.7,163.9],"ftR":[52.2,282.9],"hipL":[-28.8,9.1],"knL":[-37,165.1],"ftL":[-45.8,284.3]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.6],"neck":[-0.3,-144.8],"head":[-3,-176.5],"shR":[55,-118.9],"elR":[77.7,-41.7],"haR":[101.1,43.5],"shL":[-52.8,-113.9],"elL":[-69.3,-35],"haL":[-78.7,50.5],"hipR":[29.2,7.8],"knR":[40,163.8],"ftR":[52.4,282.9],"hipL":[-28.8,9.2],"knL":[-36.9,165.1],"ftL":[-45.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.5],"neck":[-0.4,-144.8],"head":[-3.2,-176.5],"shR":[54.9,-118.9],"elR":[77.1,-41.7],"haR":[101,43.8],"shL":[-52.9,-113.8],"elL":[-69.3,-34.9],"haL":[-79.1,50.9],"hipR":[29.2,7.8],"knR":[40.2,163.8],"ftR":[52.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.8,165.1],"ftL":[-45.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.5],"neck":[-0.6,-144.8],"head":[-3.3,-176.5],"shR":[54.8,-119],"elR":[76.6,-41.5],"haR":[100.9,44],"shL":[-53,-113.6],"elL":[-69.2,-34.7],"haL":[-79.2,51.3],"hipR":[29.2,7.9],"knR":[40.2,163.9],"ftR":[52.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.8,165.1],"ftL":[-45.4,284.3]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.5],"neck":[-0.7,-144.8],"head":[-3.5,-176.4],"shR":[54.7,-118.9],"elR":[76.1,-41.4],"haR":[100.7,44.3],"shL":[-52.9,-113.4],"elL":[-69,-34.4],"haL":[-79.1,51.7],"hipR":[29.2,7.9],"knR":[40.1,163.9],"ftR":[52.4,283],"hipL":[-28.8,9.1],"knL":[-36.7,165],"ftL":[-45.3,284.3]}]}}; \ No newline at end of file +window.INK_CLIPS={"climb":{"name":"climb","fps":30,"height":520,"groundY":339,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.7,-82.8],"neck":[1.7,-82.8],"head":[2.7,-153.6],"shR":[-61.9,-110.7],"elR":[-167.1,-95.9],"haR":[-236.2,-86.1],"shL":[69.9,-107.1],"elL":[169.9,-93.1],"haL":[239.8,-83.3],"hipR":[-26.5,36.4],"knR":[-23.8,187.1],"ftR":[-21.2,339.3],"hipL":[27.6,36.4],"knL":[25.1,181.5],"ftL":[22.4,333.3]},{"rootY":0.3,"hips":[0,0],"chest":[-6.5,-82.3],"neck":[-6.5,-82.3],"head":[-12.8,-153],"shR":[30.3,-106.6],"elR":[47.6,-1.7],"haR":[42.7,62.8],"shL":[-39.1,-112.2],"elL":[-32.5,-13.4],"haL":[-59.8,51.7],"hipR":[6.5,33.7],"knR":[-14.2,182.8],"ftR":[23.8,324],"hipL":[-27.7,39.3],"knL":[-49,182.4],"ftL":[-12.6,324.4]},{"rootY":0,"hips":[0,0],"chest":[-6.3,-82.4],"neck":[-6.3,-82.4],"head":[-12.1,-153],"shR":[31.3,-106.6],"elR":[48,-1.7],"haR":[42.4,62.3],"shL":[-39.2,-112.3],"elL":[-31.5,-13.5],"haL":[-56.3,52.5],"hipR":[6.7,34.2],"knR":[-13.8,183.3],"ftR":[24.1,324.5],"hipL":[-28,39.1],"knL":[-46.9,182.5],"ftL":[-11.5,324.5]},{"rootY":0.2,"hips":[0,0],"chest":[-6.6,-82.5],"neck":[-6.6,-82.5],"head":[-12.5,-153.2],"shR":[31.4,-106.9],"elR":[47.9,-1.9],"haR":[40.6,61.7],"shL":[-40,-112.1],"elL":[-32.2,-13.2],"haL":[-54.5,53.5],"hipR":[6.3,34.6],"knR":[-15,183.7],"ftR":[23.9,324.4],"hipL":[-28.7,38.5],"knL":[-48.1,182],"ftL":[-13.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-6.3,-82.5],"neck":[-6.3,-82.5],"head":[-12.4,-153.2],"shR":[31.4,-107.8],"elR":[46.8,-2.7],"haR":[39,60.5],"shL":[-39.5,-111.2],"elL":[-31.7,-12.3],"haL":[-52.3,54.8],"hipR":[6.6,34.5],"knR":[-15.1,183.5],"ftR":[23.5,323.7],"hipL":[-28.5,38.7],"knL":[-49.2,182.2],"ftL":[-14,324.6]},{"rootY":0.6,"hips":[0,0],"chest":[-6.1,-82.6],"neck":[-6.1,-82.6],"head":[-12.3,-153.3],"shR":[31.9,-108.4],"elR":[46.8,-3.2],"haR":[37.7,59.9],"shL":[-39.4,-110.6],"elL":[-31.9,-11.7],"haL":[-51.6,55.6],"hipR":[6.2,34.5],"knR":[-14.5,183.7],"ftR":[23.9,323.9],"hipL":[-28.8,38.5],"knL":[-49.1,182],"ftL":[-13.5,324.1]},{"rootY":0.4,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.4,-153.4],"shR":[32.2,-108.8],"elR":[47.1,-3.6],"haR":[36.8,59.3],"shL":[-39.2,-110.3],"elL":[-31.6,-11.3],"haL":[-51.2,56],"hipR":[6,34.9],"knR":[-15.3,184],"ftR":[23.8,324],"hipL":[-29,38.2],"knL":[-47.8,182],"ftL":[-13.3,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-82.6],"neck":[-5.8,-82.6],"head":[-12.6,-153.5],"shR":[31.9,-109.1],"elR":[47.2,-4],"haR":[35.9,58.6],"shL":[-38.8,-109.9],"elL":[-31,-10.9],"haL":[-51.3,56.2],"hipR":[5.9,35.2],"knR":[-15.8,184.2],"ftR":[23.9,323.9],"hipL":[-29.2,38],"knL":[-47.5,181.8],"ftL":[-13.2,324.2]},{"rootY":1.2,"hips":[0,0],"chest":[-6,-82.6],"neck":[-6,-82.6],"head":[-13,-153.5],"shR":[31.7,-109.4],"elR":[47.3,-4.3],"haR":[35.2,58.4],"shL":[-38.8,-109.6],"elL":[-31.4,-10.5],"haL":[-53,56.3],"hipR":[6.4,34.8],"knR":[-16,183.7],"ftR":[23.5,323.2],"hipL":[-28.8,38.5],"knL":[-48.2,182.1],"ftL":[-13.5,324.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.3,-82.6],"neck":[-6.3,-82.6],"head":[-13.9,-153.5],"shR":[31.2,-109.3],"elR":[46.9,-4.3],"haR":[34.6,58.6],"shL":[-39.2,-109.7],"elL":[-31.8,-10.4],"haL":[-54.9,56.1],"hipR":[6.3,34.8],"knR":[-16.3,183.7],"ftR":[22.8,322.9],"hipL":[-28.8,38.4],"knL":[-48.7,182.1],"ftL":[-14.2,324.3]},{"rootY":1.1,"hips":[0,0],"chest":[-6.7,-82.6],"neck":[-6.7,-82.6],"head":[-15.4,-153.4],"shR":[30.1,-109.9],"elR":[45.2,-4.8],"haR":[32.8,58.7],"shL":[-39,-109],"elL":[-31.8,-9.7],"haL":[-56.8,56.2],"hipR":[5.9,35.1],"knR":[-17.1,183.9],"ftR":[22.3,323],"hipL":[-29,38.2],"knL":[-48.4,181.9],"ftL":[-14.8,324.2]},{"rootY":1,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-16.9,-153.2],"shR":[30.2,-109.9],"elR":[44.4,-4.6],"haR":[33.2,59.3],"shL":[-39.4,-109.1],"elL":[-32.4,-9.6],"haL":[-59.1,55.8],"hipR":[6,34.9],"knR":[-16.7,183.8],"ftR":[22.1,323.1],"hipL":[-28.7,38.4],"knL":[-48.9,182],"ftL":[-15.1,323.9]},{"rootY":1.2,"hips":[0,0],"chest":[-6.9,-82.6],"neck":[-6.9,-82.6],"head":[-18.9,-152.9],"shR":[29.9,-110.6],"elR":[43.4,-5.2],"haR":[32.8,59.1],"shL":[-39.4,-108.3],"elL":[-32.7,-8.8],"haL":[-61.4,55.7],"hipR":[5.8,34.8],"knR":[-16.6,183.8],"ftR":[21.7,322.9],"hipL":[-28.5,38.5],"knL":[-49,182],"ftL":[-15.2,323.7]},{"rootY":1.4,"hips":[0,0],"chest":[-7.5,-82.5],"neck":[-7.5,-82.5],"head":[-21.5,-152.4],"shR":[30.1,-110.5],"elR":[43.9,-5.1],"haR":[33.5,59.3],"shL":[-41,-108.4],"elL":[-34.3,-8.8],"haL":[-65.1,54.8],"hipR":[5.2,35.1],"knR":[-17.9,184],"ftR":[21.7,322.8],"hipL":[-28.9,38.1],"knL":[-49.3,181.7],"ftL":[-16,323.6]},{"rootY":1.5,"hips":[0,0],"chest":[-7.8,-82.5],"neck":[-7.8,-82.5],"head":[-23.8,-151.8],"shR":[29.5,-110.9],"elR":[44.1,-5.7],"haR":[33.5,58.7],"shL":[-41.4,-107.9],"elL":[-34.5,-8.3],"haL":[-67.1,54.4],"hipR":[5.5,35.2],"knR":[-17.5,184.2],"ftR":[21.2,322.8],"hipL":[-28.6,38.3],"knL":[-49.5,181.8],"ftL":[-16.4,323.5]},{"rootY":1.7,"hips":[0,0],"chest":[-8.1,-82.5],"neck":[-8.1,-82.5],"head":[-26,-151.3],"shR":[29.6,-111.1],"elR":[45.3,-6],"haR":[34.6,58.3],"shL":[-42.6,-107.6],"elL":[-35,-8.1],"haL":[-68.9,53.8],"hipR":[5.9,34.8],"knR":[-16.8,183.8],"ftR":[20.6,322.6],"hipL":[-28.2,38.7],"knL":[-50.1,182.1],"ftL":[-16.8,323.3]},{"rootY":2.3,"hips":[0,0],"chest":[-8.7,-82.4],"neck":[-8.7,-82.4],"head":[-28.2,-150.8],"shR":[29.1,-111.5],"elR":[45.4,-6.5],"haR":[34.6,57.7],"shL":[-44.4,-107.2],"elL":[-36.2,-7.8],"haL":[-70.9,53.5],"hipR":[6,34.9],"knR":[-17.3,183.7],"ftR":[19.7,322.2],"hipL":[-28.2,38.7],"knL":[-50.7,182],"ftL":[-17.4,322.8]},{"rootY":2.6,"hips":[0,0],"chest":[-9.3,-82.3],"neck":[-9.3,-82.3],"head":[-29.9,-150.3],"shR":[29.3,-111.6],"elR":[46.8,-6.8],"haR":[35.7,57],"shL":[-46.3,-106.9],"elL":[-36.9,-7.8],"haL":[-72.1,53.2],"hipR":[6.7,34.6],"knR":[-16.8,183.5],"ftR":[19,321.9],"hipL":[-28,39],"knL":[-51.5,182.1],"ftL":[-18,322.2]},{"rootY":2.9,"hips":[0,0],"chest":[-9.6,-82.3],"neck":[-9.6,-82.3],"head":[-31.1,-150],"shR":[29.5,-111.7],"elR":[48.1,-7.1],"haR":[37.2,56.4],"shL":[-47.8,-106.7],"elL":[-38.1,-7.8],"haL":[-72.8,53.4],"hipR":[7.6,34.1],"knR":[-15.8,182.9],"ftR":[18.8,321.8],"hipL":[-27.8,39.3],"knL":[-52.7,182.2],"ftL":[-18.5,321.1]},{"rootY":3.1,"hips":[0,0],"chest":[-9.9,-82.2],"neck":[-9.9,-82.2],"head":[-31.9,-149.7],"shR":[29.7,-111.9],"elR":[49.4,-7.5],"haR":[38.6,55.8],"shL":[-49.1,-106.5],"elL":[-39,-7.7],"haL":[-72.9,53.9],"hipR":[8.4,34],"knR":[-14.3,182.9],"ftR":[18.4,321.8],"hipL":[-27.8,39.5],"knL":[-53.5,182.2],"ftL":[-18.6,320]},{"rootY":2.9,"hips":[0,0],"chest":[-10.3,-82.2],"neck":[-10.3,-82.2],"head":[-32.6,-149.5],"shR":[30.7,-111.8],"elR":[50.9,-7.5],"haR":[40.4,55.8],"shL":[-51.2,-106.6],"elL":[-40.9,-7.9],"haL":[-73.3,54.6],"hipR":[9.2,34.1],"knR":[-13.3,183.1],"ftR":[18,321.7],"hipL":[-27.8,39.6],"knL":[-55,182],"ftL":[-19.4,318.6]},{"rootY":3.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.7,-149.4],"shR":[31,-112.1],"elR":[51.6,-7.9],"haR":[42.5,55.3],"shL":[-52.2,-106.1],"elL":[-41.6,-7.7],"haL":[-72.6,55.5],"hipR":[9.7,34],"knR":[-11.4,183.2],"ftR":[18.4,322],"hipL":[-27.9,39.6],"knL":[-58.1,181.3],"ftL":[-20.5,315.9]},{"rootY":2.1,"hips":[0,0],"chest":[-10.4,-82.1],"neck":[-10.4,-82.1],"head":[-32.5,-149.4],"shR":[32.3,-111.4],"elR":[53.6,-7.3],"haR":[45.4,56],"shL":[-53.6,-106.8],"elL":[-42.6,-8.5],"haL":[-71.8,55.6],"hipR":[10.2,33.8],"knR":[-8.5,183.2],"ftR":[18.7,322.9],"hipL":[-27.9,39.6],"knL":[-62,180.2],"ftL":[-22.4,312.2]},{"rootY":2.6,"hips":[0,0],"chest":[-10.6,-82],"neck":[-10.6,-82],"head":[-32.3,-149.4],"shR":[32.3,-111.6],"elR":[53.8,-7.6],"haR":[47.1,55.7],"shL":[-54.5,-106.5],"elL":[-43.5,-8.3],"haL":[-71.2,56.5],"hipR":[11.2,33.6],"knR":[-6.7,183.1],"ftR":[18.8,322.6],"hipL":[-27.6,39.9],"knL":[-66.2,179],"ftL":[-23.6,308.4]},{"rootY":2.5,"hips":[0,0],"chest":[-10.3,-82],"neck":[-10.3,-82],"head":[-31.9,-149.4],"shR":[33.5,-111.1],"elR":[55.4,-7.3],"haR":[50.3,56.4],"shL":[-54.9,-107],"elL":[-43.6,-8.9],"haL":[-69.6,56.7],"hipR":[11.8,33.2],"knR":[-4.2,182.8],"ftR":[19.9,322.7],"hipL":[-27.5,40.1],"knL":[-70,177.5],"ftL":[-24.4,304.7]},{"rootY":2.3,"hips":[0,0],"chest":[-9.8,-82],"neck":[-9.8,-82],"head":[-30.8,-149.5],"shR":[34.6,-110.7],"elR":[56.6,-6.9],"haR":[53,57],"shL":[-55.1,-107.5],"elL":[-43.3,-9.5],"haL":[-68,56.6],"hipR":[12.8,33.1],"knR":[-1.2,182.7],"ftR":[21.7,322.8],"hipL":[-27.4,40.2],"knL":[-72.5,176.2],"ftL":[-25.6,302.3]},{"rootY":1.7,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-29.9,-149.5],"shR":[35.9,-110.3],"elR":[57.7,-6.4],"haR":[56.4,58.2],"shL":[-55.2,-107.9],"elL":[-42.9,-10.2],"haL":[-66.1,56.5],"hipR":[13.3,32.9],"knR":[1.4,182.7],"ftR":[23.4,323],"hipL":[-27.5,40.2],"knL":[-74.7,174.9],"ftL":[-28.5,301.6]},{"rootY":1,"hips":[0,0],"chest":[-9.2,-82],"neck":[-9.2,-82],"head":[-29.2,-149.6],"shR":[36.7,-109.8],"elR":[58,-6],"haR":[58.7,59.2],"shL":[-55.6,-108.3],"elL":[-42.4,-11],"haL":[-64.8,56],"hipR":[13.5,33.6],"knR":[3.7,183.3],"ftR":[26,323.4],"hipL":[-27.9,39.9],"knL":[-76.6,173.4],"ftL":[-33.7,303]},{"rootY":1,"hips":[0,0],"chest":[-9,-81.9],"neck":[-9,-81.9],"head":[-28.3,-149.6],"shR":[37.5,-109.2],"elR":[58,-5.3],"haR":[60.3,60.7],"shL":[-55.7,-108.8],"elL":[-41.6,-11.9],"haL":[-63.1,55.4],"hipR":[13.8,33.8],"knR":[6,183.5],"ftR":[29.2,323.1],"hipL":[-28,39.9],"knL":[-77.9,172.1],"ftL":[-39.9,306.1]},{"rootY":0.9,"hips":[0,0],"chest":[-8.8,-81.9],"neck":[-8.8,-81.9],"head":[-27.2,-149.6],"shR":[38,-108.8],"elR":[57.5,-4.6],"haR":[61.7,61.8],"shL":[-55.8,-109.2],"elL":[-41,-12.6],"haL":[-61.6,54.9],"hipR":[14.4,33.9],"knR":[8.9,183.5],"ftR":[32,323.1],"hipL":[-27.7,40],"knL":[-79.1,170.8],"ftL":[-47.4,309.5]},{"rootY":0.3,"hips":[0,0],"chest":[-8.7,-81.7],"neck":[-8.7,-81.7],"head":[-26.7,-149.5],"shR":[38.9,-107.7],"elR":[57.5,-3.5],"haR":[62.9,63.5],"shL":[-56.2,-110],"elL":[-40.9,-14],"haL":[-60.7,53.8],"hipR":[14.9,33.8],"knR":[12.1,183.1],"ftR":[35.6,322.4],"hipL":[-27.4,40.2],"knL":[-79.8,169.9],"ftL":[-55.6,313.1]},{"rootY":0,"hips":[0,0],"chest":[-8.7,-81.6],"neck":[-8.7,-81.6],"head":[-26,-149.4],"shR":[39,-107],"elR":[56.9,-2.7],"haR":[63.2,64.7],"shL":[-56.2,-110.5],"elL":[-40.8,-14.8],"haL":[-59.9,53.2],"hipR":[15.3,33.8],"knR":[15.7,182.6],"ftR":[39.1,322.2],"hipL":[-27.2,40.4],"knL":[-80.3,168.9],"ftL":[-63.9,316]},{"rootY":-0.6,"hips":[0,0],"chest":[-8.8,-81.4],"neck":[-8.8,-81.4],"head":[-25.6,-149.2],"shR":[39,-106.1],"elR":[56.5,-1.9],"haR":[62.4,65.9],"shL":[-56.4,-111],"elL":[-40.9,-15.7],"haL":[-59.8,52.3],"hipR":[15.9,33.6],"knR":[20,181.7],"ftR":[42.9,322],"hipL":[-26.9,40.6],"knL":[-80.1,168.2],"ftL":[-72.2,318]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.8,-81.3],"neck":[-8.8,-81.3],"head":[-25.1,-149],"shR":[39.3,-105.3],"elR":[56.1,-1.2],"haR":[61.5,66.9],"shL":[-56.8,-111.6],"elL":[-40.9,-16.8],"haL":[-60,51.2],"hipR":[15.9,34],"knR":[24,181],"ftR":[47.1,321.7],"hipL":[-26.9,40.6],"knL":[-79.6,167.3],"ftL":[-79.1,318.7]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-81.1],"neck":[-9.4,-81.1],"head":[-24.9,-148.6],"shR":[39.2,-104.6],"elR":[55.6,-0.6],"haR":[60,67.7],"shL":[-57.9,-112],"elL":[-41.6,-17.6],"haL":[-60.6,50.4],"hipR":[16.3,33.8],"knR":[30.3,178.4],"ftR":[50.9,320.9],"hipL":[-26.6,40.8],"knL":[-79,166.9],"ftL":[-84.9,318.6]},{"rootY":0.8,"hips":[0,0],"chest":[-9.6,-80.9],"neck":[-9.6,-80.9],"head":[-25.1,-148.5],"shR":[39.4,-104.1],"elR":[55,-0.2],"haR":[58.5,68.3],"shL":[-58.6,-112.2],"elL":[-42.3,-18.2],"haL":[-61.5,49.7],"hipR":[17.2,33.5],"knR":[36.3,175.5],"ftR":[55.5,319],"hipL":[-26,41.2],"knL":[-77.5,166.4],"ftL":[-88.6,317.8]},{"rootY":1.6,"hips":[0,0],"chest":[-10.2,-80.8],"neck":[-10.2,-80.8],"head":[-25.7,-148.3],"shR":[39.3,-103.7],"elR":[54.1,0.1],"haR":[56.1,68.6],"shL":[-60,-112.2],"elL":[-43.5,-18.8],"haL":[-63,49.1],"hipR":[18,33.7],"knR":[39,174.6],"ftR":[60.2,317],"hipL":[-26,41.2],"knL":[-75.1,166.5],"ftL":[-89.9,317.3]},{"rootY":2.9,"hips":[0,0],"chest":[-10,-80.7],"neck":[-10,-80.7],"head":[-25.1,-148.1],"shR":[40,-103.7],"elR":[54,-0.1],"haR":[54.8,68.5],"shL":[-60.6,-112],"elL":[-44.2,-19],"haL":[-63.6,48.9],"hipR":[19.2,33.2],"knR":[42.5,173.1],"ftR":[66,314.5],"hipL":[-25,41.8],"knL":[-72.4,167],"ftL":[-87.6,317.6]},{"rootY":3.7,"hips":[0,0],"chest":[-10.4,-80.6],"neck":[-10.4,-80.6],"head":[-24.9,-148.1],"shR":[39.9,-104],"elR":[53.2,-0.6],"haR":[53,67.9],"shL":[-61.8,-111.5],"elL":[-46,-18.5],"haL":[-65.2,49.5],"hipR":[20,33.4],"knR":[45.5,172],"ftR":[71.3,312.1],"hipL":[-24.9,41.9],"knL":[-69.5,167.9],"ftL":[-81.6,318.9]},{"rootY":4.1,"hips":[0,0],"chest":[-11.8,-80.6],"neck":[-11.8,-80.6],"head":[-26.1,-148.2],"shR":[39.2,-104.1],"elR":[52.6,-0.8],"haR":[51.4,67.6],"shL":[-64.1,-111.4],"elL":[-48.8,-18.3],"haL":[-67.7,49.7],"hipR":[20.7,33.5],"knR":[48.4,170.7],"ftR":[76.4,309.2],"hipL":[-25,41.9],"knL":[-67.1,169],"ftL":[-73.9,320.5]},{"rootY":3.8,"hips":[0,0],"chest":[-10.9,-80.5],"neck":[-10.9,-80.5],"head":[-25.4,-148.3],"shR":[40.2,-105.2],"elR":[53.3,-2.2],"haR":[51.8,66.1],"shL":[-63.9,-110.1],"elL":[-49.6,-16.6],"haL":[-67.8,51.6],"hipR":[20.8,34],"knR":[52.1,169.7],"ftR":[83.7,306.8],"hipL":[-25.5,41.6],"knL":[-61.2,170.2],"ftL":[-64.7,322]},{"rootY":2.2,"hips":[0,0],"chest":[-10.9,-80.7],"neck":[-10.9,-80.7],"head":[-25.6,-148.6],"shR":[40.9,-105.6],"elR":[54.6,-2.5],"haR":[52.5,65.6],"shL":[-64.6,-110.1],"elL":[-51.5,-16.1],"haL":[-69.1,52.2],"hipR":[21,34.2],"knR":[55.2,168.6],"ftR":[89.8,304.4],"hipL":[-25.7,41.4],"knL":[-57.4,172.3],"ftL":[-57,324.1]},{"rootY":1.5,"hips":[0,0],"chest":[-11.1,-80.8],"neck":[-11.1,-80.8],"head":[-25.5,-148.8],"shR":[41.3,-106.3],"elR":[54.6,-3.1],"haR":[52.6,64.9],"shL":[-65.5,-109.7],"elL":[-53.8,-15.1],"haL":[-71.2,53.3],"hipR":[20.8,34.4],"knR":[48.1,176.1],"ftR":[94.6,300.2],"hipL":[-26.2,41.1],"knL":[-56.5,173.9],"ftL":[-50.8,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[-11.1,-81],"neck":[-11.1,-81],"head":[-25.2,-149.2],"shR":[42,-107.3],"elR":[55.2,-3.9],"haR":[53.2,63.8],"shL":[-66.2,-109],"elL":[-56.6,-13.7],"haL":[-74.1,54.7],"hipR":[20.1,35.2],"knR":[41.1,181.8],"ftR":[97.5,293.5],"hipL":[-27.4,40.3],"knL":[-53.4,176],"ftL":[-43.6,327.5]},{"rootY":-1.4,"hips":[0,0],"chest":[-11.1,-81.2],"neck":[-11.1,-81.2],"head":[-24.8,-149.6],"shR":[42.9,-107.7],"elR":[55.9,-3.8],"haR":[53.6,63.1],"shL":[-67,-109],"elL":[-59.3,-13.2],"haL":[-77.8,54.9],"hipR":[18.8,35.9],"knR":[33,185.3],"ftR":[97.6,285.7],"hipL":[-28.9,39.2],"knL":[-49,177.7],"ftL":[-35.7,328.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-10.9,-81.3],"neck":[-10.9,-81.3],"head":[-24.6,-149.8],"shR":[44.1,-108.1],"elR":[56.6,-3.7],"haR":[53.9,62.6],"shL":[-67.5,-108.7],"elL":[-62.5,-12.5],"haL":[-82.5,55.2],"hipR":[17.5,36.3],"knR":[23.7,186.9],"ftR":[94.2,278.3],"hipL":[-30.3,38.2],"knL":[-43.7,179],"ftL":[-27.6,329.9]},{"rootY":-2.8,"hips":[0,0],"chest":[-10.3,-81.5],"neck":[-10.3,-81.5],"head":[-23.3,-150.1],"shR":[45.5,-108.3],"elR":[57.6,-3.5],"haR":[54.6,61.7],"shL":[-67.3,-109],"elL":[-64.9,-12],"haL":[-86.5,54.9],"hipR":[16.5,36.7],"knR":[15.8,186.7],"ftR":[90.9,270.3],"hipL":[-31.3,37.4],"knL":[-39.1,179.7],"ftL":[-19.6,330]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.9,-81.6],"neck":[-9.9,-81.6],"head":[-23.2,-150.3],"shR":[46.3,-108.5],"elR":[57.9,-3.5],"haR":[54.6,60.6],"shL":[-67.1,-108.9],"elL":[-67.5,-11.3],"haL":[-91.5,54.4],"hipR":[14.9,37.1],"knR":[4.8,185.3],"ftR":[83.5,267.4],"hipL":[-31.8,36.9],"knL":[-34.3,180.4],"ftL":[-13.1,330.6]},{"rootY":-3.8,"hips":[0,0],"chest":[-9.4,-81.8],"neck":[-9.4,-81.8],"head":[-21.9,-150.6],"shR":[47.2,-108.4],"elR":[58.4,-3.3],"haR":[55.2,59.3],"shL":[-66.4,-109.4],"elL":[-69.2,-11.3],"haL":[-95.5,52.7],"hipR":[13.6,37.2],"knR":[-5.1,182.8],"ftR":[75.4,267.8],"hipL":[-32.8,36.1],"knL":[-29.8,180.3],"ftL":[-6.2,330.1]},{"rootY":-2.8,"hips":[0,0],"chest":[-9.1,-81.9],"neck":[-9.1,-81.9],"head":[-21.4,-150.9],"shR":[47.8,-108.4],"elR":[59.2,-3.1],"haR":[55.7,58.4],"shL":[-65.9,-109.7],"elL":[-71.1,-11.4],"haL":[-99.6,50.5],"hipR":[12.6,37.3],"knR":[-15.2,179.6],"ftR":[65.7,271],"hipL":[-33.1,35.7],"knL":[-27.2,180.2],"ftL":[0.3,329.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-82],"neck":[-9.3,-82],"head":[-21.9,-150.9],"shR":[47.4,-108.3],"elR":[59,-2.9],"haR":[55.4,57.9],"shL":[-65.5,-109.8],"elL":[-72.6,-11.3],"haL":[-102.8,48.2],"hipR":[11.8,37.4],"knR":[-25.1,175.8],"ftR":[54.8,276.8],"hipL":[-33.1,35.7],"knL":[-27.8,180.2],"ftL":[5.8,327.3]},{"rootY":0.8,"hips":[0,0],"chest":[-10.2,-81.9],"neck":[-10.2,-81.9],"head":[-22.6,-151],"shR":[46.3,-108.4],"elR":[58.4,-3.1],"haR":[55,57.4],"shL":[-66.3,-109.5],"elL":[-75.1,-10.9],"haL":[-106.9,45.8],"hipR":[10.2,37.7],"knR":[-34.9,172],"ftR":[40.7,284.6],"hipL":[-33.8,35],"knL":[-27.2,179.6],"ftL":[11.3,325]},{"rootY":1.6,"hips":[0,0],"chest":[-11.1,-81.9],"neck":[-11.1,-81.9],"head":[-23.4,-150.9],"shR":[44.8,-108.4],"elR":[57.5,-3],"haR":[54.8,57.6],"shL":[-66.7,-109.5],"elL":[-77,-11],"haL":[-109.8,43],"hipR":[9.3,38.2],"knR":[-42.5,169],"ftR":[24.1,294.7],"hipL":[-33.6,35],"knL":[-25.6,179.6],"ftL":[16.7,323.5]},{"rootY":3.1,"hips":[0,0],"chest":[-11.6,-81.8],"neck":[-11.6,-81.8],"head":[-24.6,-150.7],"shR":[43.6,-108.2],"elR":[57.6,-3],"haR":[55,57.8],"shL":[-66.5,-109.5],"elL":[-77.4,-10.9],"haL":[-110.9,40.7],"hipR":[9.9,38.6],"knR":[-46.4,166.2],"ftR":[4.7,304.4],"hipL":[-33.1,35.3],"knL":[-23.3,179.9],"ftL":[22.9,321.9]},{"rootY":3.7,"hips":[0,0],"chest":[-12.5,-81.6],"neck":[-12.5,-81.6],"head":[-25.8,-150.5],"shR":[41.9,-108.5],"elR":[56.6,-3.4],"haR":[54.9,58.3],"shL":[-66.9,-108.9],"elL":[-77.8,-10.3],"haL":[-111.9,39.5],"hipR":[8.8,38.8],"knR":[-49.9,165.5],"ftR":[-17.6,312.4],"hipL":[-33.3,34.9],"knL":[-18.2,179.2],"ftL":[28.6,321]},{"rootY":3.2,"hips":[0,0],"chest":[-13.2,-81.5],"neck":[-13.2,-81.5],"head":[-27,-150.2],"shR":[40.2,-108.7],"elR":[56.3,-3.8],"haR":[54.9,58.6],"shL":[-67.1,-108.6],"elL":[-77.4,-10],"haL":[-111.7,38.7],"hipR":[7.9,38.9],"knR":[-50.7,166.5],"ftR":[-40.4,318.1],"hipL":[-33.1,34.9],"knL":[-12.9,178.4],"ftL":[34.4,319.9]},{"rootY":4,"hips":[0,0],"chest":[-13.4,-81.5],"neck":[-13.4,-81.5],"head":[-28.1,-149.9],"shR":[39.2,-108.7],"elR":[56.3,-4.1],"haR":[55.6,59.1],"shL":[-66.7,-108.5],"elL":[-76.2,-9.9],"haL":[-110.5,38.4],"hipR":[7.3,39.3],"knR":[-50.9,167.5],"ftR":[-63.2,319.3],"hipL":[-32.8,34.8],"knL":[-5.7,176.7],"ftL":[40.7,318.5]},{"rootY":5.1,"hips":[0,0],"chest":[-14.1,-81.5],"neck":[-14.1,-81.5],"head":[-30.1,-149.6],"shR":[37.5,-108.4],"elR":[55.3,-4],"haR":[55.4,59.9],"shL":[-66.6,-108.9],"elL":[-75.2,-10.3],"haL":[-109.2,38.4],"hipR":[5.9,38.9],"knR":[-55.6,167.8],"ftR":[-76.8,318.4],"hipL":[-32.7,34.7],"knL":[5.7,172.3],"ftL":[46,316.3]},{"rootY":6.8,"hips":[0,0],"chest":[-13.9,-81.5],"neck":[-13.9,-81.5],"head":[-30.3,-149.5],"shR":[37.2,-107.6],"elR":[56.5,-3.5],"haR":[56.4,61.3],"shL":[-65.5,-109.8],"elL":[-72.5,-11.3],"haL":[-106.2,38.8],"hipR":[5.6,39.1],"knR":[-56.1,168.5],"ftR":[-82.1,318.4],"hipL":[-32.7,34.6],"knL":[8.9,170.7],"ftL":[52.5,313.1]},{"rootY":6.8,"hips":[0,0],"chest":[-12.4,-81.6],"neck":[-12.4,-81.6],"head":[-28.7,-149.6],"shR":[38.4,-107.9],"elR":[57.1,-3.9],"haR":[58.2,61.5],"shL":[-63.5,-109.6],"elL":[-68.7,-11.4],"haL":[-101.7,41.1],"hipR":[6.8,39.5],"knR":[-54.1,169.4],"ftR":[-80.2,319.3],"hipL":[-32.5,34.8],"knL":[12.3,169.2],"ftL":[59.2,309.8]},{"rootY":6.8,"hips":[0,0],"chest":[-11.3,-81.7],"neck":[-11.3,-81.7],"head":[-27.8,-149.6],"shR":[39.5,-106.8],"elR":[57.5,-2.7],"haR":[59.4,63.5],"shL":[-61.7,-111],"elL":[-64.5,-13.1],"haL":[-96.8,42.4],"hipR":[6.4,39.3],"knR":[-54.9,169.7],"ftR":[-76.1,320.2],"hipL":[-32.5,34.8],"knL":[15,167.4],"ftL":[64.7,306.2]},{"rootY":5.8,"hips":[0,0],"chest":[-10.6,-81.8],"neck":[-10.6,-81.8],"head":[-25.6,-149.7],"shR":[40.1,-106.4],"elR":[56.8,-2.2],"haR":[60,64.8],"shL":[-60.3,-111.5],"elL":[-60.1,-13.7],"haL":[-90.5,45.7],"hipR":[6.6,39],"knR":[-54.1,170.7],"ftR":[-70.1,321.4],"hipL":[-32,35.3],"knL":[7.9,171],"ftL":[66.1,303]},{"rootY":4.6,"hips":[0,0],"chest":[-9,-82],"neck":[-9,-82],"head":[-24,-149.7],"shR":[41.1,-105.4],"elR":[57.2,-1.4],"haR":[61,66],"shL":[-56.6,-112.8],"elL":[-53.9,-15],"haL":[-81.4,47.9],"hipR":[6.6,38.2],"knR":[-50.8,172.2],"ftR":[-61.6,322.5],"hipL":[-31.6,35.8],"knL":[-4.7,176],"ftL":[64,297.5]},{"rootY":3,"hips":[0,0],"chest":[-8.7,-82.1],"neck":[-8.7,-82.1],"head":[-25.3,-149.6],"shR":[41.5,-104.8],"elR":[56.7,-0.5],"haR":[60.9,67.3],"shL":[-56.3,-113.7],"elL":[-52,-15.9],"haL":[-76.2,49.7],"hipR":[6.3,37.3],"knR":[-48,174.2],"ftR":[-54.6,323.8],"hipL":[-31.7,36],"knL":[-19.8,179.2],"ftL":[56.6,289.9]},{"rootY":2,"hips":[0,0],"chest":[-8,-82.1],"neck":[-8,-82.1],"head":[-23,-150],"shR":[42.2,-105.7],"elR":[56.2,-1.1],"haR":[60.3,66.9],"shL":[-55.3,-112.8],"elL":[-50.2,-15.1],"haL":[-71.2,52.1],"hipR":[6.6,36.2],"knR":[-43.1,176.1],"ftR":[-47.7,324.9],"hipL":[-31.4,36.5],"knL":[-34.5,181],"ftL":[46.9,282.5]},{"rootY":0.7,"hips":[0,0],"chest":[-7,-82.2],"neck":[-7,-82.2],"head":[-22.2,-150],"shR":[43.4,-104.2],"elR":[56.8,0.6],"haR":[59.7,68.5],"shL":[-53.9,-114.4],"elL":[-48.8,-16.8],"haL":[-67.3,51.4],"hipR":[8.7,35.5],"knR":[-36.1,177.7],"ftR":[-40.8,326],"hipL":[-30.8,37.4],"knL":[-46.7,181.5],"ftL":[36,276.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-82.3],"neck":[-6.4,-82.3],"head":[-21,-150],"shR":[43.3,-107.2],"elR":[55.3,-2.1],"haR":[57,65.5],"shL":[-52.4,-111.4],"elL":[-46.9,-14.3],"haL":[-64.6,54.1],"hipR":[9.2,34.3],"knR":[-31.1,178.8],"ftR":[-34.4,326.4],"hipL":[-30.8,37.6],"knL":[-58.3,180.1],"ftL":[24.3,270.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-7.2,-82.4],"neck":[-7.2,-82.4],"head":[-18.8,-150],"shR":[42.7,-106.6],"elR":[54.1,-1.3],"haR":[54.1,64.8],"shL":[-53,-112.1],"elL":[-46.4,-15.1],"haL":[-63.6,53.4],"hipR":[9.7,34.1],"knR":[-27.6,179.9],"ftR":[-29.2,326.4],"hipL":[-31.3,37.3],"knL":[-68.2,177.4],"ftL":[10.3,267.9]},{"rootY":-2.1,"hips":[0,0],"chest":[-5.7,-82.5],"neck":[-5.7,-82.5],"head":[-19.5,-150],"shR":[44.2,-106.2],"elR":[55.7,-0.9],"haR":[52.2,64.7],"shL":[-51.5,-112.7],"elL":[-43.3,-15.8],"haL":[-60.3,52.6],"hipR":[12,33.6],"knR":[-19.7,180.8],"ftR":[-21.9,327],"hipL":[-31,37.6],"knL":[-73.5,175.1],"ftL":[-1.7,270]},{"rootY":-1.6,"hips":[0,0],"chest":[-5.6,-82.5],"neck":[-5.6,-82.5],"head":[-19.9,-150],"shR":[44.7,-106.5],"elR":[56.2,-1],"haR":[49.8,63],"shL":[-52,-112.5],"elL":[-42,-15.9],"haL":[-59.1,52.5],"hipR":[13.7,32.9],"knR":[-15.3,180.8],"ftR":[-16.1,326.1],"hipL":[-30.5,38],"knL":[-78.3,172.3],"ftL":[-16.7,274.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-5,-82.5],"neck":[-5,-82.5],"head":[-19,-150.1],"shR":[46.3,-106.2],"elR":[58.2,-0.8],"haR":[48.8,61.1],"shL":[-52.6,-112.8],"elL":[-41.3,-16.6],"haL":[-58.6,51.8],"hipR":[15.3,32.9],"knR":[-10.7,181.4],"ftR":[-9.9,325.6],"hipL":[-30.1,38.2],"knL":[-80.3,169.3],"ftL":[-31.4,281.6]},{"rootY":-1.1,"hips":[0,0],"chest":[-4.1,-82.5],"neck":[-4.1,-82.5],"head":[-17.8,-150],"shR":[47.7,-107],"elR":[59.9,-1.5],"haR":[47.9,57.8],"shL":[-52.8,-112],"elL":[-40.9,-16],"haL":[-58.2,52.4],"hipR":[17.3,32.6],"knR":[-5.2,181.5],"ftR":[-3.8,325.1],"hipL":[-29.4,38.7],"knL":[-79.7,166.9],"ftL":[-45.6,290.3]},{"rootY":-0.7,"hips":[0,0],"chest":[-4.2,-82.4],"neck":[-4.2,-82.4],"head":[-18,-149.9],"shR":[48.8,-106.7],"elR":[61.4,-1.2],"haR":[47,55.4],"shL":[-54.2,-112.2],"elL":[-41.9,-16.4],"haL":[-59.7,52],"hipR":[18.1,32.7],"knR":[-1.6,181.9],"ftR":[1.4,324.6],"hipL":[-29.3,38.6],"knL":[-78.1,165.3],"ftL":[-59.4,299.6]},{"rootY":-0.3,"hips":[0,0],"chest":[-3.8,-82.3],"neck":[-3.8,-82.3],"head":[-17.4,-149.7],"shR":[50,-106.4],"elR":[63.3,-1],"haR":[47.2,53.6],"shL":[-54.7,-112.4],"elL":[-42.8,-16.5],"haL":[-60.7,51.8],"hipR":[19.9,32.7],"knR":[3,182.1],"ftR":[6.2,324.3],"hipL":[-28.6,39],"knL":[-74.3,165.1],"ftL":[-70.7,308.2]},{"rootY":0.9,"hips":[0,0],"chest":[-4.4,-82.3],"neck":[-4.4,-82.3],"head":[-16.1,-149.7],"shR":[50,-106.9],"elR":[63.4,-1.5],"haR":[46.4,51.1],"shL":[-56.4,-111.9],"elL":[-45.4,-16.2],"haL":[-63.5,52],"hipR":[20.2,32.9],"knR":[5.3,181.9],"ftR":[10.1,322.9],"hipL":[-28.7,38.9],"knL":[-71.9,165.7],"ftL":[-80.9,314.4]},{"rootY":2.1,"hips":[0,0],"chest":[-4.2,-82.3],"neck":[-4.2,-82.3],"head":[-17.5,-149.5],"shR":[51,-108],"elR":[65.2,-2.7],"haR":[47.7,48.3],"shL":[-57.7,-110.6],"elL":[-47.7,-14.7],"haL":[-65.8,53.4],"hipR":[21.4,32.6],"knR":[10.3,181.2],"ftR":[15.1,321.8],"hipL":[-27.9,39.4],"knL":[-68.6,166.8],"ftL":[-87.1,317.1]},{"rootY":2.8,"hips":[0,0],"chest":[-4.1,-82.3],"neck":[-4.1,-82.3],"head":[-15.7,-149.6],"shR":[52.6,-107.4],"elR":[67.6,-2.3],"haR":[50.6,47.6],"shL":[-59.2,-111.2],"elL":[-50.6,-15.2],"haL":[-68.9,52.6],"hipR":[22.7,33.3],"knR":[14.9,181.6],"ftR":[21.1,321.6],"hipL":[-27.8,39.3],"knL":[-63.9,167.7],"ftL":[-86,317.9]},{"rootY":4.1,"hips":[0,0],"chest":[-4,-82.2],"neck":[-4,-82.2],"head":[-16.6,-149.1],"shR":[53.3,-108.8],"elR":[68.8,-3.7],"haR":[53.3,45.6],"shL":[-60.6,-109.6],"elL":[-53.5,-13.5],"haL":[-72.5,54.1],"hipR":[23.7,33.1],"knR":[18.4,180.6],"ftR":[26.1,319.8],"hipL":[-27.1,39.7],"knL":[-61.2,167.8],"ftL":[-81.1,318.3]},{"rootY":5,"hips":[0,0],"chest":[-4.5,-82.1],"neck":[-4.5,-82.1],"head":[-16.8,-149.5],"shR":[54.4,-108.4],"elR":[70.9,-3.4],"haR":[57.3,46.1],"shL":[-63.3,-110.1],"elL":[-57.5,-13.6],"haL":[-77.2,53.5],"hipR":[24.1,33.1],"knR":[21.3,179.7],"ftR":[31.2,317.1],"hipL":[-27.3,39.3],"knL":[-57.1,168.6],"ftL":[-71.1,319.8]},{"rootY":4.7,"hips":[0,0],"chest":[-4.7,-82.3],"neck":[-4.7,-82.3],"head":[-16.7,-149.4],"shR":[54.2,-108.4],"elR":[70.9,-3.5],"haR":[60.9,47.1],"shL":[-63.3,-110.4],"elL":[-59,-13.6],"haL":[-79.6,52.9],"hipR":[25.4,32.8],"knR":[23.5,179.1],"ftR":[36.1,313.9],"hipL":[-26.5,39.6],"knL":[-49.1,170.2],"ftL":[-61.3,321.3]},{"rootY":4,"hips":[0,0],"chest":[-5.6,-82.2],"neck":[-5.6,-82.2],"head":[-17.4,-149.1],"shR":[53.8,-109.7],"elR":[70.8,-5],"haR":[64.6,46.9],"shL":[-65.2,-108.4],"elL":[-62.5,-11.5],"haL":[-84.3,54.4],"hipR":[25.8,33.4],"knR":[21.7,181.5],"ftR":[39.3,309.4],"hipL":[-26.7,39.2],"knL":[-44.4,171.5],"ftL":[-55.3,322.2]},{"rootY":2.6,"hips":[0,0],"chest":[-7.7,-82.1],"neck":[-7.7,-82.1],"head":[-19.7,-148.7],"shR":[52,-109.7],"elR":[68.8,-5.1],"haR":[66.2,48],"shL":[-68.6,-108.5],"elL":[-67.5,-11.2],"haL":[-89.5,53.9],"hipR":[25.1,34.2],"knR":[16.3,184.1],"ftR":[37.4,301.5],"hipL":[-27.6,38.7],"knL":[-46,172.7],"ftL":[-53.4,323.4]},{"rootY":1.7,"hips":[0,0],"chest":[-7.6,-82],"neck":[-7.6,-82],"head":[-19.9,-148.5],"shR":[52.4,-110.9],"elR":[69.7,-6.4],"haR":[70,47.9],"shL":[-70.1,-107],"elL":[-71,-9.2],"haL":[-93.9,55.4],"hipR":[25.6,34.5],"knR":[14.7,184.7],"ftR":[34.4,290.5],"hipL":[-27.6,38.1],"knL":[-43.5,174.7],"ftL":[-48.7,325.3]},{"rootY":-0.6,"hips":[0,0],"chest":[-6.3,-82],"neck":[-6.3,-82],"head":[-19.1,-149.2],"shR":[54.2,-109.5],"elR":[72,-5],"haR":[74.8,50],"shL":[-69.3,-108.7],"elL":[-73.2,-10.5],"haL":[-96,53.4],"hipR":[24.6,35.5],"knR":[15,184.5],"ftR":[33.2,277.7],"hipL":[-29,36.4],"knL":[-40.2,176.7],"ftL":[-42.8,327.1]},{"rootY":-2.1,"hips":[0,0],"chest":[-8,-81.9],"neck":[-8,-81.9],"head":[-19.1,-148.5],"shR":[53.5,-112.5],"elR":[71.7,-8.3],"haR":[76.9,46.6],"shL":[-73.7,-104.8],"elL":[-81,-7],"haL":[-103.8,56.4],"hipR":[24.5,35.5],"knR":[13.6,181.3],"ftR":[28.1,264.9],"hipL":[-29.1,36.3],"knL":[-39.2,178.1],"ftL":[-41.4,328.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-9,-82.2],"neck":[-9,-82.2],"head":[-18.1,-147.9],"shR":[53.2,-113.3],"elR":[71.9,-9.3],"haR":[79.4,44.8],"shL":[-76.4,-104.5],"elL":[-85.8,-5.7],"haL":[-109.3,57.5],"hipR":[23.6,36.3],"knR":[16.6,178.9],"ftR":[26.2,254.2],"hipL":[-30.3,34.6],"knL":[-36.6,178.3],"ftL":[-37.1,328.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-9.9,-82.1],"neck":[-9.9,-82.1],"head":[-18,-147.3],"shR":[52.8,-112.8],"elR":[72.2,-9],"haR":[83.6,43.6],"shL":[-77.5,-104.8],"elL":[-90.3,-6.3],"haL":[-113.3,56.6],"hipR":[24.4,35.7],"knR":[16.2,173.9],"ftR":[22.3,246],"hipL":[-29.5,35.1],"knL":[-35.9,179.6],"ftL":[-37.1,330.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-10,-81.8],"neck":[-10,-81.8],"head":[-17.4,-148.7],"shR":[52.6,-112.2],"elR":[73.1,-8.6],"haR":[88.2,42.4],"shL":[-77.8,-105.4],"elL":[-92.1,-6.7],"haL":[-115.8,54.8],"hipR":[23.9,35.5],"knR":[15.2,169.5],"ftR":[18.5,242.3],"hipL":[-29.9,35.1],"knL":[-36.4,179.9],"ftL":[-37.6,330.3]},{"rootY":-4.4,"hips":[0,0],"chest":[-10.2,-81.8],"neck":[-10.2,-81.8],"head":[-17.4,-148.6],"shR":[53.1,-111.3],"elR":[75,-8.1],"haR":[94.3,40.5],"shL":[-77.8,-106],"elL":[-94.6,-8],"haL":[-117,53.5],"hipR":[23.6,36],"knR":[16.1,164.5],"ftR":[18.8,244.8],"hipL":[-30.2,34.6],"knL":[-35.2,179.6],"ftL":[-35,329.8]},{"rootY":-3.7,"hips":[0,0],"chest":[-10,-81.6],"neck":[-10,-81.6],"head":[-16.7,-148.6],"shR":[53.4,-111],"elR":[76.8,-8.3],"haR":[100.7,37.5],"shL":[-77.9,-106.1],"elL":[-97,-7.4],"haL":[-118.4,55.1],"hipR":[24.6,36],"knR":[16.6,159.3],"ftR":[18.2,250.3],"hipL":[-29.5,34.6],"knL":[-33.3,179.6],"ftL":[-31.9,328.7]},{"rootY":-3.4,"hips":[0,0],"chest":[-10.7,-81.4],"neck":[-10.7,-81.4],"head":[-16.5,-148.5],"shR":[52.9,-110.5],"elR":[78.1,-8.2],"haR":[106.7,34.4],"shL":[-78.6,-106.4],"elL":[-98.2,-8.5],"haL":[-119.7,47.7],"hipR":[24.2,36],"knR":[14.9,156.1],"ftR":[15.2,260.2],"hipL":[-29.6,35.4],"knL":[-34.9,180.4],"ftL":[-32,328.6]},{"rootY":-2.2,"hips":[0,0],"chest":[-11.1,-81.4],"neck":[-11.1,-81.4],"head":[-15.6,-148],"shR":[52.5,-110.3],"elR":[79.8,-8.6],"haR":[113.2,30.5],"shL":[-79.2,-106.3],"elL":[-99.8,-8.5],"haL":[-120.5,49.1],"hipR":[22.4,37.2],"knR":[16.1,154.9],"ftR":[12.8,272.1],"hipL":[-31.4,33.4],"knL":[-33.8,178.5],"ftL":[-28.7,325.9]},{"rootY":-1.7,"hips":[0,0],"chest":[-10.4,-81.4],"neck":[-10.4,-81.4],"head":[-14.4,-148.2],"shR":[53.3,-110.2],"elR":[82.7,-9.4],"haR":[120.8,26.1],"shL":[-78.5,-106.6],"elL":[-99.5,-8.9],"haL":[-119.9,48.7],"hipR":[23.5,37.5],"knR":[17.3,153.9],"ftR":[7,283.8],"hipL":[-30.4,34.2],"knL":[-32.1,179.3],"ftL":[-26.4,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.1,-81.1],"neck":[-10.1,-81.1],"head":[-13.7,-147.2],"shR":[53.7,-109.6],"elR":[86.1,-9.8],"haR":[128.6,22.1],"shL":[-78,-106.8],"elL":[-100,-9.3],"haL":[-118.7,47],"hipR":[23.4,38.1],"knR":[17.3,155.2],"ftR":[-2.4,294.1],"hipL":[-30.6,34.6],"knL":[-32.7,179.6],"ftL":[-25.4,324.3]},{"rootY":0.9,"hips":[0,0],"chest":[-8.9,-81.3],"neck":[-8.9,-81.3],"head":[-10.8,-147.8],"shR":[55,-109.4],"elR":[90.7,-10.8],"haR":[137.6,17.5],"shL":[-76.8,-107.3],"elL":[-99.6,-10.2],"haL":[-116.9,46.3],"hipR":[23.4,38.2],"knR":[18.3,159.5],"ftR":[-12.4,302.7],"hipL":[-30.6,34.2],"knL":[-31.1,179],"ftL":[-23,322.9]},{"rootY":1.4,"hips":[0,0],"chest":[-7.4,-81.4],"neck":[-7.4,-81.4],"head":[-7.2,-147.8],"shR":[57,-108.6],"elR":[96.4,-11.6],"haR":[147.4,13.3],"shL":[-74.8,-108.4],"elL":[-96.6,-11.7],"haL":[-113.4,41],"hipR":[21.6,39.5],"knR":[18.9,165.2],"ftR":[-19.9,310.5],"hipL":[-32.1,32.7],"knL":[-29.5,177.1],"ftL":[-20,320.3]},{"rootY":1.4,"hips":[0,0],"chest":[-6.4,-81.1],"neck":[-6.4,-81.1],"head":[-5.1,-147.4],"shR":[58.3,-107],"elR":[101.9,-11.9],"haR":[156.5,10.1],"shL":[-73.3,-109.4],"elL":[-97.9,-12.6],"haL":[-112.1,45],"hipR":[22.1,39.6],"knR":[17.1,168.8],"ftR":[-28.7,313.7],"hipL":[-31.6,33.3],"knL":[-30,177.5],"ftL":[-20.3,319.4]},{"rootY":3.2,"hips":[0,0],"chest":[-3.5,-81.1],"neck":[-3.5,-81.1],"head":[-0.1,-148],"shR":[61.6,-105.6],"elR":[109.8,-13],"haR":[166.4,7.1],"shL":[-69.7,-110.9],"elL":[-94.2,-15.2],"haL":[-109.2,38.8],"hipR":[21.7,40.4],"knR":[20.3,171.6],"ftR":[-30.3,315],"hipL":[-31.7,32.3],"knL":[-28.2,176.1],"ftL":[-19.2,315.6]},{"rootY":5.7,"hips":[0,0],"chest":[-0.4,-81.2],"neck":[-0.4,-81.2],"head":[3.8,-148.1],"shR":[64.9,-105.4],"elR":[116.5,-14.7],"haR":[175.2,3.9],"shL":[-66.2,-111.5],"elL":[-92,-16.7],"haL":[-108.4,36.9],"hipR":[23,40.1],"knR":[19.4,172.9],"ftR":[-32.3,315.5],"hipL":[-30.2,32.9],"knL":[-29.2,177.3],"ftL":[-20.9,311.4]},{"rootY":3.7,"hips":[0,0],"chest":[3.2,-80.6],"neck":[3.2,-80.6],"head":[10,-147.3],"shR":[68.7,-103.2],"elR":[124.7,-15],"haR":[184.7,3.3],"shL":[-61.3,-112.4],"elL":[-87.7,-17.7],"haL":[-104.8,37.7],"hipR":[25.8,39.2],"knR":[21.1,173.3],"ftR":[-29.7,315.8],"hipL":[-27.1,34.8],"knL":[-30,179.7],"ftL":[-24.8,309.5]},{"rootY":2.1,"hips":[0,0],"chest":[4.4,-80.6],"neck":[4.4,-80.6],"head":[14.6,-146.3],"shR":[69.8,-101.8],"elR":[128.4,-15.1],"haR":[189.3,3.2],"shL":[-58.6,-113.7],"elL":[-85.4,-20],"haL":[-102.3,38.9],"hipR":[27.3,38.6],"knR":[21.3,175.2],"ftR":[-29.5,317.9],"hipL":[-25,35.6],"knL":[-33.4,180.4],"ftL":[-33.6,302.7]},{"rootY":0.6,"hips":[0,0],"chest":[6.6,-80.3],"neck":[6.6,-80.3],"head":[19.2,-146],"shR":[71.4,-100.8],"elR":[133.1,-15.9],"haR":[194.7,3.4],"shL":[-55.4,-114.1],"elL":[-84.1,-20],"haL":[-99.3,43.3],"hipR":[28.3,38],"knR":[22.4,177.1],"ftR":[-29.3,319.5],"hipL":[-23.8,36.1],"knL":[-35.6,179.2],"ftL":[-44.9,294.9]},{"rootY":0.9,"hips":[0,0],"chest":[8.4,-80.1],"neck":[8.4,-80.1],"head":[22.9,-144.8],"shR":[72.8,-100.1],"elR":[137.3,-16.9],"haR":[198.9,3.9],"shL":[-52.4,-114.3],"elL":[-81.8,-21.4],"haL":[-95.1,43.5],"hipR":[29.1,37.8],"knR":[24.7,177.6],"ftR":[-28.5,319.3],"hipL":[-21.6,35.9],"knL":[-31.4,176.1],"ftL":[-52.9,285.4]},{"rootY":1.1,"hips":[0,0],"chest":[10.4,-79.1],"neck":[10.4,-79.1],"head":[29.7,-141.8],"shR":[74,-97.5],"elR":[140.5,-15.2],"haR":[202,8.2],"shL":[-48.6,-115],"elL":[-80.6,-23.1],"haL":[-94.2,41.6],"hipR":[29.8,37.6],"knR":[25,177.9],"ftR":[-27.8,320],"hipL":[-19.2,36.4],"knL":[-26.2,172.4],"ftL":[-59,274.2]},{"rootY":-1.5,"hips":[0,0],"chest":[14.5,-78.6],"neck":[14.5,-78.6],"head":[40.5,-140.9],"shR":[77.8,-97],"elR":[145.5,-15.2],"haR":[207,11.1],"shL":[-43.5,-114.4],"elL":[-78.4,-22.6],"haL":[-90.8,42.6],"hipR":[31.2,36.6],"knR":[25.1,178.9],"ftR":[-26,322.1],"hipL":[-15.9,37.8],"knL":[-15,168.1],"ftL":[-62.8,260.9]},{"rootY":-3.6,"hips":[0,0],"chest":[18.4,-78.1],"neck":[18.4,-78.1],"head":[45.2,-139.4],"shR":[80.4,-95.9],"elR":[149.2,-14.9],"haR":[209.9,15.1],"shL":[-37.7,-114.4],"elL":[-74.6,-24.3],"haL":[-84.8,40.8],"hipR":[31.5,36.2],"knR":[24.2,180.3],"ftR":[-23.9,324.7],"hipL":[-12.5,38],"knL":[-0.8,164.2],"ftL":[-62.3,248.2]},{"rootY":-9.7,"hips":[0,0],"chest":[19.9,-77.6],"neck":[19.9,-77.6],"head":[46.2,-139.2],"shR":[80,-93.5],"elR":[148.3,-12.2],"haR":[207.9,21],"shL":[-32.4,-115.6],"elL":[-72.9,-27.2],"haL":[-79,37.6],"hipR":[29.7,37.3],"knR":[20.9,183.1],"ftR":[-23,328.8],"hipL":[-11.8,37.8],"knL":[17.9,151.4],"ftL":[-64.2,236]},{"rootY":-7,"hips":[0,0],"chest":[24.8,-76.5],"neck":[24.8,-76.5],"head":[50.8,-138.7],"shR":[83.7,-92.1],"elR":[150.6,-9.9],"haR":[210.6,23.1],"shL":[-24.4,-114.3],"elL":[-68.5,-27.3],"haL":[-70.8,36.6],"hipR":[30.3,36.2],"knR":[24.3,182.1],"ftR":[-19.3,327.9],"hipL":[-8.2,38.7],"knL":[32.2,145.4],"ftL":[-51.7,228.8]},{"rootY":-9.9,"hips":[0,0],"chest":[27.4,-75.4],"neck":[27.4,-75.4],"head":[56.8,-136.3],"shR":[83.9,-90],"elR":[149.3,-6.3],"haR":[209.3,25.5],"shL":[-17,-113.7],"elL":[-65,-27.3],"haL":[-62.5,37],"hipR":[29.6,36],"knR":[23.6,182.5],"ftR":[-16.7,329.2],"hipL":[-5.8,38.8],"knL":[53.7,133.5],"ftL":[-40.4,222.9]},{"rootY":-9.6,"hips":[0,0],"chest":[30.4,-74.3],"neck":[30.4,-74.3],"head":[60.6,-135.2],"shR":[85.4,-89.5],"elR":[151.3,-6.2],"haR":[210.8,26.1],"shL":[-11.7,-111.7],"elL":[-62.3,-26.1],"haL":[-53.8,36.1],"hipR":[27.7,37],"knR":[26.1,183.5],"ftR":[-14.2,330.3],"hipL":[-4.3,38],"knL":[70.7,122.2],"ftL":[-23.1,219.2]},{"rootY":-12.4,"hips":[0,0],"chest":[33.8,-72.9],"neck":[33.8,-72.9],"head":[66,-133.2],"shR":[84.5,-86.5],"elR":[151.3,-3.9],"haR":[210.4,28.3],"shL":[-2.6,-111.7],"elL":[-54.8,-25.9],"haL":[-37.4,34.9],"hipR":[27.9,35.7],"knR":[16.9,183.8],"ftR":[-12,332.7],"hipL":[-1.7,39.2],"knL":[89.3,110.2],"ftL":[-5.7,217.4]},{"rootY":-12.1,"hips":[0,0],"chest":[36.1,-72.2],"neck":[36.1,-72.2],"head":[70.2,-132.7],"shR":[83.3,-85.9],"elR":[150.2,-3.5],"haR":[209.5,28.8],"shL":[4.6,-110.5],"elL":[-47.3,-23.9],"haL":[-22.4,35.1],"hipR":[26.1,36],"knR":[17.4,184.6],"ftR":[-9.6,333.9],"hipL":[-0.2,39.3],"knL":[103.2,102.5],"ftL":[15.5,218.7]},{"rootY":-11.3,"hips":[0,0],"chest":[38.3,-71.9],"neck":[38.3,-71.9],"head":[73.6,-132],"shR":[83.4,-83.7],"elR":[149.5,-0.9],"haR":[209.1,31.2],"shL":[10,-111.8],"elL":[-37.5,-22.9],"haL":[-4.2,32.4],"hipR":[26.4,33.5],"knR":[12.8,182.3],"ftR":[-7.4,332.3],"hipL":[3.9,40.8],"knL":[115.2,95],"ftL":[36.2,219.8]},{"rootY":-12.2,"hips":[0,0],"chest":[39.6,-71.4],"neck":[39.6,-71.4],"head":[74.8,-132.2],"shR":[81,-84.3],"elR":[146.1,-0.9],"haR":[206.3,30.6],"shL":[14.9,-110.2],"elL":[-26.7,-19.9],"haL":[16.9,30.3],"hipR":[24,34.6],"knR":[8.3,183.6],"ftR":[-7.6,334.1],"hipL":[3.7,40.8],"knL":[122.3,91.9],"ftL":[51.9,223.7]},{"rootY":-11.6,"hips":[0,0],"chest":[40.7,-71.2],"neck":[40.7,-71.2],"head":[75.9,-132.3],"shR":[81.2,-83.1],"elR":[145.8,0.8],"haR":[206,31.6],"shL":[17.6,-110.8],"elL":[-10.6,-16.6],"haL":[41.4,25.3],"hipR":[23.8,33.8],"knR":[17.1,183.2],"ftR":[-8,332.9],"hipL":[4.6,41.4],"knL":[127.4,91.2],"ftL":[64.5,227.9]},{"rootY":-12.2,"hips":[0,0],"chest":[40.7,-70.8],"neck":[40.7,-70.8],"head":[76.8,-131.8],"shR":[78.9,-81.8],"elR":[143,2.6],"haR":[203.6,32.7],"shL":[20,-111.2],"elL":[5.6,-15.9],"haL":[65,17.6],"hipR":[22.9,37.7],"knR":[28.7,186.7],"ftR":[-8.8,334.2],"hipL":[3.6,37.2],"knL":[128.2,92.9],"ftL":[72.5,233.1]},{"rootY":-12.8,"hips":[0,0],"chest":[41.3,-70.3],"neck":[41.3,-70.3],"head":[76.5,-132.1],"shR":[76.6,-79.6],"elR":[140,5.4],"haR":[200.9,35],"shL":[23.1,-112.4],"elL":[23.2,-17.3],"haL":[88.5,6.8],"hipR":[22.8,38.5],"knR":[31.6,187.5],"ftR":[-9.6,334.1],"hipL":[3.6,35.8],"knL":[129,95.6],"ftL":[77,237.6]},{"rootY":-12.3,"hips":[0,0],"chest":[41.6,-70.8],"neck":[41.6,-70.8],"head":[76.8,-132.7],"shR":[77.8,-86.2],"elR":[139.5,-0.1],"haR":[200.5,29.5],"shL":[22.4,-107],"elL":[37.2,-14.7],"haL":[106.2,-0.8],"hipR":[21.9,38],"knR":[29.8,187.5],"ftR":[-11.2,334.1],"hipL":[5.8,36.4],"knL":[130.6,100.9],"ftL":[74.2,241]},{"rootY":-11.3,"hips":[0,0],"chest":[42.4,-70.2],"neck":[42.4,-70.2],"head":[75.7,-133.2],"shR":[71.9,-83.4],"elR":[131.7,4.3],"haR":[193.3,32.3],"shL":[30.4,-108.5],"elL":[58.7,-20.7],"haL":[129,-14.4],"hipR":[21.1,35.7],"knR":[23.9,185.7],"ftR":[-13.7,333.1],"hipL":[7.7,39.2],"knL":[132.9,103.3],"ftL":[69.9,240.4]},{"rootY":-11.4,"hips":[0,0],"chest":[43.2,-69.9],"neck":[43.2,-69.9],"head":[77.1,-132.7],"shR":[71.2,-82.8],"elR":[127.1,7.6],"haR":[189.3,34.4],"shL":[32.9,-108.5],"elL":[75.7,-25.5],"haL":[146,-26],"hipR":[19.7,33],"knR":[14.6,183.2],"ftR":[-16.3,332.2],"hipL":[8.5,42],"knL":[134.6,104.5],"ftL":[66.1,239.1]},{"rootY":-10.5,"hips":[0,0],"chest":[44.3,-69.3],"neck":[44.3,-69.3],"head":[78.1,-132.1],"shR":[70.6,-86],"elR":[124.4,5.7],"haR":[186.8,31.5],"shL":[36,-103.9],"elL":[90.9,-27.6],"haL":[160.3,-30.9],"hipR":[18.5,34.1],"knR":[18.1,184.3],"ftR":[-19.8,331.8],"hipL":[7.7,41.7],"knL":[133.4,106.1],"ftL":[64.1,239.8]},{"rootY":-11.8,"hips":[0,0],"chest":[45.9,-68.4],"neck":[45.9,-68.4],"head":[79,-131.5],"shR":[71.3,-85.3],"elR":[119.9,9.1],"haR":[182.9,34.1],"shL":[38.4,-102.8],"elL":[104.1,-33.8],"haL":[173.1,-38.1],"hipR":[17.5,35.1],"knR":[10.7,185.4],"ftR":[-22.2,334],"hipL":[7.6,41.2],"knL":[133.4,106.6],"ftL":[61.5,238.7]},{"rootY":-13,"hips":[0,0],"chest":[46.6,-67.8],"neck":[46.6,-67.8],"head":[79.9,-130.7],"shR":[70.1,-86],"elR":[114.4,10.4],"haR":[177.4,35.1],"shL":[41.8,-100.7],"elL":[114.6,-38.2],"haL":[183.3,-41.3],"hipR":[17.2,33.6],"knR":[-3.8,182.8],"ftR":[-25,333.5],"hipL":[7.3,42.5],"knL":[133,106.2],"ftL":[61,237.9]},{"rootY":-17.9,"hips":[0,0],"chest":[47.8,-66.8],"neck":[47.8,-66.8],"head":[80.7,-129.9],"shR":[70.3,-83.8],"elR":[109.7,14.6],"haR":[172.7,40.2],"shL":[44.5,-100.6],"elL":[123.2,-43.7],"haL":[192.2,-43.5],"hipR":[16,36.4],"knR":[-5.3,185.6],"ftR":[-26.9,336.2],"hipL":[6.7,40.6],"knL":[129.3,112],"ftL":[55.8,242.2]},{"rootY":-22.1,"hips":[0,0],"chest":[49.7,-65.7],"neck":[49.7,-65.7],"head":[82.4,-128.9],"shR":[72.8,-83.6],"elR":[106.6,16.7],"haR":[168.9,44.2],"shL":[45.9,-98.5],"elL":[128.4,-45.4],"haL":[197.9,-41.4],"hipR":[14.6,35.1],"knR":[-6.9,184.2],"ftR":[-28.6,334.9],"hipL":[6.1,42.3],"knL":[125.8,119.5],"ftL":[49,248.3]},{"rootY":-25.5,"hips":[0,0],"chest":[51.2,-64.3],"neck":[51.2,-64.3],"head":[83.2,-127.7],"shR":[71.9,-84.2],"elR":[101.6,17.1],"haR":[162.8,47.4],"shL":[50.6,-94.7],"elL":[135.3,-42.9],"haL":[205,-35.2],"hipR":[13.1,35.4],"knR":[-5.1,185],"ftR":[-23.5,336.1],"hipL":[6.7,42.2],"knL":[122.5,126.2],"ftL":[43.5,253.8]},{"rootY":-29.5,"hips":[0,0],"chest":[52.7,-63.4],"neck":[52.7,-63.4],"head":[84.9,-126.6],"shR":[74.1,-81.8],"elR":[99.8,20.3],"haR":[159.6,53.2],"shL":[52.6,-95.1],"elL":[137,-43],"haL":[206.2,-30.9],"hipR":[11.4,31.6],"knR":[-5.6,181.3],"ftR":[-22.7,332.6],"hipL":[4.9,45.2],"knL":[118.6,132.5],"ftL":[38.7,259.6]},{"rootY":-39.2,"hips":[0,0],"chest":[54.2,-62.1],"neck":[54.2,-62.1],"head":[86.4,-125.1],"shR":[75.2,-81],"elR":[96.8,21.9],"haR":[155.3,57.2],"shL":[55.2,-93],"elL":[137.9,-38.4],"haL":[206.5,-22.9],"hipR":[9.8,33.9],"knR":[13.9,184.5],"ftR":[-25.9,331.3],"hipL":[4.2,44.2],"knL":[111.8,140.3],"ftL":[33.5,268.9]},{"rootY":-47.7,"hips":[0,0],"chest":[56,-60.2],"neck":[56,-60.2],"head":[87.9,-123.1],"shR":[76.4,-78.9],"elR":[95.7,24.4],"haR":[153.2,61.9],"shL":[59,-90.5],"elL":[137.6,-31.7],"haL":[205.6,-15.9],"hipR":[9,36.6],"knR":[33.9,185.2],"ftR":[-28.3,323.9],"hipL":[5.7,42.2],"knL":[105.5,147.1],"ftL":[30.3,277.6]},{"rootY":-56.4,"hips":[0,0],"chest":[58.7,-57.7],"neck":[58.7,-57.7],"head":[90.6,-120.5],"shR":[81.3,-74.7],"elR":[97.8,28.9],"haR":[153.9,68.5],"shL":[61.2,-88.9],"elL":[134.1,-24.9],"haL":[201.5,-9.3],"hipR":[11.5,36.7],"knR":[49,182.6],"ftR":[-29,313.1],"hipL":[6.5,41.5],"knL":[98.8,153.3],"ftL":[28.1,286.3]},{"rootY":-64.7,"hips":[0,0],"chest":[59.2,-56.9],"neck":[59.2,-56.9],"head":[91.9,-119.1],"shR":[80.9,-73],"elR":[95.8,30.8],"haR":[150.4,72.8],"shL":[64.2,-88.2],"elL":[132.6,-18.7],"haL":[199.6,-2.6],"hipR":[9.5,37.3],"knR":[66.3,176.8],"ftR":[-23.6,299.6],"hipL":[5.6,41.5],"knL":[91.4,158.5],"ftL":[26.8,294.6]},{"rootY":-72.9,"hips":[0,0],"chest":[58.8,-56.7],"neck":[58.8,-56.7],"head":[92.6,-118],"shR":[78.2,-65.8],"elR":[92.2,37.8],"haR":[145.3,81.7],"shL":[69.1,-92.9],"elL":[134.4,-19.6],"haL":[200.7,-1.9],"hipR":[9.6,37.3],"knR":[81.7,169.6],"ftR":[-20.6,282.3],"hipL":[5,41.6],"knL":[83,163.9],"ftL":[24.9,302.9]},{"rootY":-80.1,"hips":[0,0],"chest":[59.4,-55.1],"neck":[59.4,-55.1],"head":[94.2,-115.6],"shR":[76.6,-60.9],"elR":[89.7,42.3],"haR":[141.6,87.6],"shL":[73.1,-93.4],"elL":[136,-16.7],"haL":[202.2,2.7],"hipR":[8.4,37.2],"knR":[97.4,158.7],"ftR":[-12,264.5],"hipL":[5.9,41.7],"knL":[76.5,168.5],"ftL":[23.8,309.8]},{"rootY":-85.7,"hips":[0,0],"chest":[59.2,-55.3],"neck":[59.2,-55.3],"head":[94.6,-115.3],"shR":[77.8,-59.2],"elR":[90.3,44.1],"haR":[141.1,90.8],"shL":[72.3,-94.9],"elL":[132.7,-16.9],"haL":[198,4.3],"hipR":[7.3,37.5],"knR":[110.6,147],"ftR":[-4,247.1],"hipL":[4.6,41.9],"knL":[68.7,172],"ftL":[22.4,315.3]},{"rootY":-91.3,"hips":[0,0],"chest":[59,-55.1],"neck":[59,-55.1],"head":[94.5,-115.1],"shR":[76.8,-59],"elR":[89.7,44.4],"haR":[139.3,92.5],"shL":[73.3,-94.3],"elL":[131.4,-14.8],"haL":[195.7,8.3],"hipR":[6.6,38],"knR":[121.8,135],"ftR":[3.5,230.8],"hipL":[4.5,41.5],"knL":[61.4,174.9],"ftL":[19.6,320]},{"rootY":-96.9,"hips":[0,0],"chest":[59.5,-54.4],"neck":[59.5,-54.4],"head":[95.6,-114.1],"shR":[77.5,-56],"elR":[89.5,47],"haR":[138.7,95.3],"shL":[73.4,-95.8],"elL":[129.8,-14.7],"haL":[193.5,10.1],"hipR":[7.4,37],"knR":[130.9,123.3],"ftR":[13.2,219.8],"hipL":[5,42.2],"knL":[54.2,178.6],"ftL":[17.5,325.3]},{"rootY":-99.1,"hips":[0,0],"chest":[59,-54.7],"neck":[59,-54.7],"head":[95.3,-114.4],"shR":[76.3,-56.2],"elR":[86.4,46.2],"haR":[135.8,93.9],"shL":[73.9,-96],"elL":[129.3,-13.6],"haL":[192.7,12.7],"hipR":[5.8,38.3],"knR":[138.5,109.5],"ftR":[25.2,210.9],"hipL":[4.4,41.3],"knL":[49.2,179.2],"ftL":[16.8,326.7]},{"rootY":-102.9,"hips":[0,0],"chest":[59.3,-54.5],"neck":[59.3,-54.5],"head":[96.1,-113.6],"shR":[76.2,-56.3],"elR":[84.7,45.8],"haR":[135,91.8],"shL":[74.9,-95.2],"elL":[128.8,-11.7],"haL":[191.4,15.9],"hipR":[6.3,37.2],"knR":[143,100.6],"ftR":[35.6,208.2],"hipL":[4.4,42.2],"knL":[44.3,181.5],"ftL":[14.7,329.8]},{"rootY":-103.7,"hips":[0,0],"chest":[58.2,-55.8],"neck":[58.2,-55.8],"head":[94.5,-115.5],"shR":[77.4,-58.2],"elR":[82.5,41.8],"haR":[133.9,84.6],"shL":[71.7,-96.1],"elL":[124.1,-11.6],"haL":[186.4,16.3],"hipR":[6,38.8],"knR":[146.2,93.9],"ftR":[46.2,208.3],"hipL":[3.5,40.9],"knL":[40.4,181],"ftL":[12.2,329.5]},{"rootY":-108.2,"hips":[0,0],"chest":[59.8,-54.5],"neck":[59.8,-54.5],"head":[96.6,-113.9],"shR":[75.4,-58.7],"elR":[81.1,39.9],"haR":[135.1,77],"shL":[76.8,-92.9],"elL":[126.8,-7.2],"haL":[188.3,21.1],"hipR":[8.3,35],"knR":[146.9,94.2],"ftR":[54.7,215],"hipL":[5.2,43.5],"knL":[37.4,184.8],"ftL":[9.8,333.6]},{"rootY":-108.9,"hips":[0,0],"chest":[59.1,-55.4],"neck":[59.1,-55.4],"head":[96.5,-114.4],"shR":[75.3,-62.6],"elR":[80.7,33.3],"haR":[136.6,62.2],"shL":[75.7,-90.9],"elL":[124.3,-4.2],"haL":[185.9,24.2],"hipR":[8.3,35.3],"knR":[146.8,94.6],"ftR":[62.1,220.7],"hipL":[4.9,43.3],"knL":[35.2,185.1],"ftL":[7,333.8]},{"rootY":-107.4,"hips":[0,0],"chest":[57.6,-56.8],"neck":[57.6,-56.8],"head":[95.7,-115.2],"shR":[72.9,-65.7],"elR":[84.4,30.9],"haR":[143.1,49.5],"shL":[74.9,-90.9],"elL":[121.8,-3.2],"haL":[183.6,25],"hipR":[8.2,36.7],"knR":[146.5,96.5],"ftR":[65.9,225.2],"hipL":[4.5,42.4],"knL":[36,183.9],"ftL":[5.1,331.8]},{"rootY":-105.4,"hips":[0,0],"chest":[56.7,-57.6],"neck":[56.7,-57.6],"head":[95.4,-115.8],"shR":[73.6,-67.5],"elR":[91.2,27.3],"haR":[150.3,35.7],"shL":[71.9,-91.3],"elL":[116.8,-2.8],"haL":[178.1,25.3],"hipR":[6.7,38.5],"knR":[145,98.3],"ftR":[67.6,229],"hipL":[5.2,40.9],"knL":[37.4,182.3],"ftL":[2.8,329.4]},{"rootY":-104.8,"hips":[0,0],"chest":[56.2,-58.5],"neck":[56.2,-58.5],"head":[95.4,-116],"shR":[74.3,-69.9],"elR":[97.4,19.1],"haR":[155.1,19.7],"shL":[69.9,-91.1],"elL":[113.1,-2],"haL":[174.1,26.2],"hipR":[6.8,38.3],"knR":[142.6,103.2],"ftR":[63.9,233.2],"hipL":[4.9,41.1],"knL":[38.4,182.2],"ftL":[0.7,328.5]},{"rootY":-105,"hips":[0,0],"chest":[56.3,-58.8],"neck":[56.3,-58.8],"head":[95.4,-116.5],"shR":[75.4,-72.3],"elR":[124.4,11.7],"haR":[181.6,3.8],"shL":[68.9,-89.5],"elL":[109.7,0.4],"haL":[170.6,28.2],"hipR":[7.6,38.6],"knR":[140.5,109.1],"ftR":[58.4,237],"hipL":[5.6,40.6],"knL":[38.1,181.9],"ftL":[-3,327.3]},{"rootY":-105.5,"hips":[0,0],"chest":[56,-59.4],"neck":[56,-59.4],"head":[95.9,-116.2],"shR":[74.6,-75.4],"elR":[147.9,-2.5],"haR":[203.3,-24.2],"shL":[69.1,-87.5],"elL":[108,3.5],"haL":[169.1,31.6],"hipR":[7.1,38.6],"knR":[138.5,111.9],"ftR":[54.5,238.5],"hipL":[4.7,40.8],"knL":[36.9,182.2],"ftL":[-5.7,327.3]},{"rootY":-106.5,"hips":[0,0],"chest":[56,-59.5],"neck":[56,-59.5],"head":[95.5,-116.6],"shR":[76.1,-77.4],"elR":[160,-14.1],"haR":[214.4,-47.8],"shL":[67.7,-85.6],"elL":[104.2,6.2],"haL":[165.3,34.3],"hipR":[6.3,38.7],"knR":[136.4,113.7],"ftR":[51.1,239.7],"hipL":[4.3,40.9],"knL":[33.7,182.9],"ftL":[-8.5,328.3]},{"rootY":-108.1,"hips":[0,0],"chest":[56.4,-58.9],"neck":[56.4,-58.9],"head":[96.2,-115.5],"shR":[70.4,-77.2],"elR":[158,-19.5],"haR":[217.4,-51.5],"shL":[74.5,-84.6],"elL":[106.5,9],"haL":[167.2,38],"hipR":[6.1,38.7],"knR":[134.1,117.1],"ftR":[47.4,242],"hipL":[4.5,40.9],"knL":[28.4,184],"ftL":[-11.1,330]},{"rootY":-112.9,"hips":[0,0],"chest":[57.6,-57.9],"neck":[57.6,-57.9],"head":[97.7,-113.8],"shR":[72.5,-78.1],"elR":[158.9,-19.8],"haR":[218,-48.1],"shL":[75.1,-81.4],"elL":[103.2,12.9],"haL":[163.2,43.1],"hipR":[5.9,38.5],"knR":[130,122.6],"ftR":[42.7,247.2],"hipL":[4.3,41.1],"knL":[23.2,184.8],"ftL":[-15.5,331.3]},{"rootY":-118.9,"hips":[0,0],"chest":[58.7,-56.8],"neck":[58.7,-56.8],"head":[99,-112.1],"shR":[73.6,-78.9],"elR":[134.5,-3.5],"haR":[198.2,-18.8],"shL":[76.3,-78.2],"elL":[100.1,17.4],"haL":[159.4,49.3],"hipR":[5.4,38.2],"knR":[124.8,128.6],"ftR":[38.3,253.7],"hipL":[2.7,41.6],"knL":[18.5,185.9],"ftL":[-15.2,333.8]},{"rootY":-125.1,"hips":[0,0],"chest":[60.1,-55.5],"neck":[60.1,-55.5],"head":[100,-111],"shR":[79.5,-79.1],"elR":[140.2,-1.2],"haR":[204,-17.2],"shL":[73,-75.2],"elL":[93.5,20.5],"haL":[151.7,54.5],"hipR":[4.4,38.7],"knR":[118.1,136],"ftR":[33.4,262.5],"hipL":[1.5,41.4],"knL":[17,185.6],"ftL":[-12.9,334.5]},{"rootY":-132,"hips":[0,0],"chest":[61.5,-53.7],"neck":[61.5,-53.7],"head":[100.4,-110],"shR":[84.3,-77.5],"elR":[139.7,3.5],"haR":[203.4,-11],"shL":[70.4,-73.4],"elL":[88.1,22.7],"haL":[144.6,59.3],"hipR":[4.1,37.7],"knR":[109.9,142.6],"ftR":[25.9,269.5],"hipL":[0.3,42.3],"knL":[19.7,186.1],"ftL":[-12.7,334.4]},{"rootY":-137.9,"hips":[0,0],"chest":[63.6,-50.9],"neck":[63.6,-50.9],"head":[102.5,-106.6],"shR":[80.5,-75.3],"elR":[132.5,7.7],"haR":[196.1,-4.3],"shL":[77.9,-70.7],"elL":[92.2,25.7],"haL":[147,64.6],"hipR":[4.7,37.6],"knR":[105,147.9],"ftR":[26.1,277.9],"hipL":[0.4,42.4],"knL":[28.3,184.4],"ftL":[-14.1,330.2]},{"rootY":-146.7,"hips":[0,0],"chest":[65.3,-48.6],"neck":[65.3,-48.6],"head":[104.4,-103.7],"shR":[76.7,-73.8],"elR":[123.1,11.7],"haR":[186.7,1.2],"shL":[85.4,-67.6],"elL":[96.8,29.8],"haL":[150.5,70.7],"hipR":[6.1,37.2],"knR":[98.7,154.3],"ftR":[23.5,286.5],"hipL":[0.9,42.6],"knL":[39.2,182.1],"ftL":[-20,321.9]},{"rootY":-152.8,"hips":[0,0],"chest":[65.6,-47.7],"neck":[65.6,-47.7],"head":[104.4,-103],"shR":[76,-73.2],"elR":[120.1,15.7],"haR":[184.6,6],"shL":[87.9,-65.6],"elL":[98,32.3],"haL":[150.7,75],"hipR":[5.5,37.6],"knR":[93.8,158],"ftR":[23.5,292.7],"hipL":[0.1,42.4],"knL":[53.3,176.3],"ftL":[-22.2,307.8]},{"rootY":-159.8,"hips":[0,0],"chest":[66.8,-46.4],"neck":[66.8,-46.4],"head":[105.7,-101.6],"shR":[79,-72.8],"elR":[119.3,18.9],"haR":[184.2,10.4],"shL":[88.2,-62.7],"elL":[97,35.4],"haL":[149.3,78.8],"hipR":[7.2,37],"knR":[88.7,162.3],"ftR":[22.6,299],"hipL":[0.4,42.7],"knL":[68.2,168.7],"ftL":[-22.3,289.8]},{"rootY":-165.7,"hips":[0,0],"chest":[68.3,-44.4],"neck":[68.3,-44.4],"head":[107.7,-98.5],"shR":[85.4,-69.7],"elR":[122.5,24],"haR":[187.6,16.9],"shL":[85.6,-60.9],"elL":[93.7,35.8],"haL":[145.5,78.9],"hipR":[8.8,36.2],"knR":[82.9,166],"ftR":[22.7,305.1],"hipL":[2.3,43],"knL":[83.5,158.3],"ftL":[-17.3,269.4]},{"rootY":-171.2,"hips":[0,0],"chest":[68.7,-43.8],"neck":[68.7,-43.8],"head":[108,-98.4],"shR":[88.3,-69.3],"elR":[123.2,25.6],"haR":[188.3,19],"shL":[84.3,-59.1],"elL":[91.3,37.2],"haL":[143.7,79.2],"hipR":[8.2,36.9],"knR":[77.7,169.4],"ftR":[22.5,310.6],"hipL":[2,42.5],"knL":[97.5,145.8],"ftL":[-11,249]},{"rootY":-175.8,"hips":[0,0],"chest":[69.7,-42.5],"neck":[69.7,-42.5],"head":[108.8,-96.7],"shR":[94,-65.4],"elR":[125.5,30.3],"haR":[190.2,24.5],"shL":[82.2,-58.8],"elL":[87.4,36.6],"haL":[141.6,74.6],"hipR":[9.9,36],"knR":[72.6,171.7],"ftR":[21.6,314.2],"hipL":[2.7,43],"knL":[108.5,132.1],"ftL":[-2.8,231.7]},{"rootY":-180.8,"hips":[0,0],"chest":[70.6,-40.8],"neck":[70.6,-40.8],"head":[110.6,-93.9],"shR":[94.3,-62.2],"elR":[123,33.9],"haR":[187.4,28],"shL":[86,-56.5],"elL":[87.8,37.7],"haL":[143.6,69.2],"hipR":[11.7,35.7],"knR":[67.5,174.6],"ftR":[19.4,318.3],"hipL":[4.7,42.7],"knL":[116.4,119.7],"ftL":[8.4,219.9]},{"rootY":-182.4,"hips":[0,0],"chest":[70.7,-40.2],"neck":[70.7,-40.2],"head":[111.3,-92.3],"shR":[95.4,-59.5],"elR":[121.5,37.4],"haR":[185.6,30.7],"shL":[87.2,-55.7],"elL":[88.8,38.6],"haL":[147.7,60.7],"hipR":[11.3,35.9],"knR":[63.5,176],"ftR":[18.5,320.8],"hipL":[4.8,42.5],"knL":[125.1,107.1],"ftL":[19.6,211.5]},{"rootY":-184.7,"hips":[0,0],"chest":[71,-39.4],"neck":[71,-39.4],"head":[113,-89.4],"shR":[97.3,-57.1],"elR":[120.9,40.7],"haR":[184.9,32.7],"shL":[87.6,-54.4],"elL":[91,38.5],"haL":[150.8,52.1],"hipR":[12.3,35.5],"knR":[59.2,177.6],"ftR":[16.5,322.9],"hipL":[5.2,42.6],"knL":[129.6,97.1],"ftL":[32,208.8]},{"rootY":-185.7,"hips":[0,0],"chest":[71.5,-38.2],"neck":[71.5,-38.2],"head":[115,-87.4],"shR":[99.2,-54.5],"elR":[119.4,44.2],"haR":[183.3,35.3],"shL":[87.8,-52.9],"elL":[94.8,40.2],"haL":[157.1,45.8],"hipR":[12.6,35.4],"knR":[56.9,178.4],"ftR":[14.5,323.8],"hipL":[5.9,42.5],"knL":[133.5,91.9],"ftL":[45.1,211.3]},{"rootY":-187,"hips":[0,0],"chest":[71.9,-36.9],"neck":[71.9,-36.9],"head":[117.4,-83.8],"shR":[98.5,-52.4],"elR":[115.7,46.8],"haR":[179.3,37.1],"shL":[90.7,-50.9],"elL":[101.6,40.7],"haL":[164.1,43.2],"hipR":[12.7,35.5],"knR":[55,179.2],"ftR":[11.8,324.4],"hipL":[6.3,42.3],"knL":[135.3,89.9],"ftL":[56.4,216]},{"rootY":-187.5,"hips":[0,0],"chest":[71.7,-37.2],"neck":[71.7,-37.2],"head":[119.1,-82.1],"shR":[101.3,-50],"elR":[115.2,49.2],"haR":[178.6,39.9],"shL":[88.1,-52.7],"elL":[102.8,38.4],"haL":[166,38.9],"hipR":[12.4,35.6],"knR":[51.4,180.1],"ftR":[8.1,325.2],"hipL":[5.3,42.5],"knL":[134.9,90.2],"ftL":[63.6,221.5]},{"rootY":-188.6,"hips":[0,0],"chest":[71.9,-36.5],"neck":[71.9,-36.5],"head":[120.6,-79.1],"shR":[100.7,-49.3],"elR":[110.9,49.8],"haR":[174.1,40.7],"shL":[89.9,-50.6],"elL":[107.7,39.1],"haL":[170.7,38.1],"hipR":[13,35.4],"knR":[48.6,180.9],"ftR":[3.8,325.6],"hipL":[5.6,42.4],"knL":[134.5,94.2],"ftL":[66.1,227.3]},{"rootY":-188.8,"hips":[0,0],"chest":[72.1,-36.1],"neck":[72.1,-36.1],"head":[122,-77.6],"shR":[100.8,-48.1],"elR":[107.3,50.6],"haR":[170.1,42.1],"shL":[91.1,-49.5],"elL":[109.4,39.4],"haL":[171.8,37.8],"hipR":[13.2,35.1],"knR":[46.6,181.2],"ftR":[-1.6,325],"hipL":[4.9,42.8],"knL":[132.5,100.1],"ftL":[62.1,232.2]},{"rootY":-188.5,"hips":[0,0],"chest":[71.7,-36.4],"neck":[71.7,-36.4],"head":[122.7,-75.3],"shR":[97.5,-46.6],"elR":[100.9,51.8],"haR":[163.7,43.4],"shL":[94.4,-50.5],"elL":[110.6,38],"haL":[171.9,36.7],"hipR":[11,36.2],"knR":[44,182.4],"ftR":[-5,325.7],"hipL":[3.4,42.6],"knL":[129.4,104.7],"ftL":[56.1,235.3]},{"rootY":-191.2,"hips":[0,0],"chest":[72.1,-35.7],"neck":[72.1,-35.7],"head":[124,-73.1],"shR":[101,-45.9],"elR":[99.5,51.7],"haR":[162,44.9],"shL":[91.6,-49.4],"elL":[104.2,39],"haL":[164.8,37.2],"hipR":[10.3,36.1],"knR":[39.7,183.1],"ftR":[-11.4,325.7],"hipL":[2.8,42.8],"knL":[126.7,109.6],"ftL":[48.9,237.9]},{"rootY":-189.6,"hips":[0,0],"chest":[72.5,-35.3],"neck":[72.5,-35.3],"head":[125.8,-71],"shR":[103.3,-45.6],"elR":[94.6,50.4],"haR":[157.2,45.1],"shL":[90.4,-48.2],"elL":[98.1,40.3],"haL":[158.2,37.8],"hipR":[9.1,37.2],"knR":[36.4,184.8],"ftR":[-16.3,326.4],"hipL":[1.2,42.3],"knL":[124.2,112.7],"ftL":[42.6,237.9]},{"rootY":-194.4,"hips":[0,0],"chest":[73.3,-33.6],"neck":[73.3,-33.6],"head":[127.6,-67.2],"shR":[103.4,-43.6],"elR":[87,50.5],"haR":[149.8,47.5],"shL":[92.1,-46.3],"elL":[93.2,42.3],"haL":[152,39.7],"hipR":[8.2,37.1],"knR":[29.7,185.8],"ftR":[-23.1,328],"hipL":[0.9,42.5],"knL":[120.6,119],"ftL":[35.3,242]},{"rootY":-197.7,"hips":[0,0],"chest":[74.4,-31.7],"neck":[74.4,-31.7],"head":[130,-63.6],"shR":[106.1,-42.3],"elR":[80,50.1],"haR":[143.2,50.3],"shL":[91.3,-43.9],"elL":[85.2,46],"haL":[144.2,41.9],"hipR":[8.7,37],"knR":[21.9,186.8],"ftR":[-30.3,329.2],"hipL":[0.1,42.6],"knL":[115.7,126],"ftL":[26.5,246.4]},{"rootY":-203.6,"hips":[0,0],"chest":[75.1,-30.1],"neck":[75.1,-30.1],"head":[131.7,-60.2],"shR":[106.3,-42.1],"elR":[71.1,47.5],"haR":[134.3,52],"shL":[92.4,-41.1],"elL":[77.7,50.7],"haL":[137.9,46.9],"hipR":[6.9,37.5],"knR":[13.3,187.7],"ftR":[-36.1,331.2],"hipL":[-1.2,42.4],"knL":[109.3,132.7],"ftL":[17.6,251.8]},{"rootY":-208.2,"hips":[0,0],"chest":[76.3,-27.7],"neck":[76.3,-27.7],"head":[133.4,-56.6],"shR":[107.8,-39.9],"elR":[64.2,45.6],"haR":[126.8,55.8],"shL":[93.1,-38.7],"elL":[69.9,51.5],"haL":[129.3,50.1],"hipR":[5.8,38.1],"knR":[3.6,188.5],"ftR":[-42.7,333.3],"hipL":[-1.9,42.1],"knL":[101,142],"ftL":[7,258.7]},{"rootY":-213.5,"hips":[0,0],"chest":[76.9,-26.4],"neck":[76.9,-26.4],"head":[134.7,-54.2],"shR":[108.4,-39.5],"elR":[57.1,41.3],"haR":[119,56.9],"shL":[93.1,-37.6],"elL":[61.5,51.2],"haL":[121.3,52.8],"hipR":[4,38.2],"knR":[-5.3,188.4],"ftR":[-49.1,334.1],"hipL":[-3.7,42],"knL":[93.9,147.2],"ftL":[-2.5,262.7]},{"rootY":-216.9,"hips":[0,0],"chest":[76.5,-27.7],"neck":[76.5,-27.7],"head":[134.5,-55.2],"shR":[108,-41.6],"elR":[49.9,34.1],"haR":[110.5,55.6],"shL":[92.7,-38.2],"elL":[53.1,47.9],"haL":[112.5,53.9],"hipR":[-0.5,38.2],"knR":[-6.1,188.7],"ftR":[-54,333.2],"hipL":[-7.6,41.6],"knL":[85.8,151],"ftL":[-10.6,266.4]},{"rootY":-220.6,"hips":[0,0],"chest":[77.8,-24.8],"neck":[77.8,-24.8],"head":[135.8,-52.1],"shR":[108.4,-39],"elR":[44.5,32.9],"haR":[103.6,59.4],"shL":[94.6,-36],"elL":[47.3,46.1],"haL":[105.4,58.9],"hipR":[1.9,37.7],"knR":[-17.3,187.2],"ftR":[-62.2,332.6],"hipL":[-5.5,42.3],"knL":[80.2,158],"ftL":[-19.7,270.3]},{"rootY":-224.2,"hips":[0,0],"chest":[77.6,-25.1],"neck":[77.6,-25.1],"head":[136.1,-52.7],"shR":[106,-40.9],"elR":[38.7,24.7],"haR":[94.6,55.6],"shL":[96.4,-35.3],"elL":[42.2,42.8],"haL":[98.2,62.7],"hipR":[0.8,37.9],"knR":[-13.7,187.9],"ftR":[-71.5,328.7],"hipL":[-5.8,42.1],"knL":[72.4,163.4],"ftL":[-31.1,273.4]},{"rootY":-227.7,"hips":[0,0],"chest":[77.7,-25.3],"neck":[77.7,-25.3],"head":[136.4,-53.1],"shR":[105.8,-41.9],"elR":[35.7,18.7],"haR":[88.8,52.8],"shL":[96.4,-35.3],"elL":[37.8,39.4],"haL":[91.7,64.6],"hipR":[-0.1,37.6],"knR":[-9.2,188.1],"ftR":[-79.9,322.8],"hipL":[-6.1,42.2],"knL":[67,166.9],"ftL":[-34.5,278]},{"rootY":-231.1,"hips":[0,0],"chest":[77.7,-25.5],"neck":[77.7,-25.5],"head":[136.1,-53.8],"shR":[102.7,-42.7],"elR":[30.9,14],"haR":[81.3,50.7],"shL":[99.7,-35],"elL":[36.9,37.4],"haL":[88.5,67.5],"hipR":[-0.9,37.4],"knR":[-6.4,188],"ftR":[-88.3,316.3],"hipL":[-6.5,42.3],"knL":[61,170.3],"ftL":[-40.4,281.5]}]},"dance_glide":{"name":"dance_glide","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":-0.1,"hips":[0,0],"chest":[4.4,-86.4],"neck":[4.4,-86.4],"head":[3.1,-155.3],"shR":[-59.4,-99.3],"elR":[-69.9,2.2],"haR":[-69.5,53.5],"shL":[68.8,-95.4],"elL":[111.7,5.8],"haL":[102.4,55.2],"hipR":[-27.5,39.2],"knR":[-15.5,174.5],"ftR":[81.2,275],"hipL":[28.7,39.5],"knL":[-11.5,165.3],"ftL":[-21.6,316.3]},{"rootY":-0.4,"hips":[0,0],"chest":[3.9,-86.3],"neck":[3.9,-86.3],"head":[2.2,-155.4],"shR":[-59.9,-99.4],"elR":[-71.5,1.1],"haR":[-69.6,52.3],"shL":[68.2,-95.1],"elL":[112.7,5.6],"haL":[102.3,54.8],"hipR":[-27.4,39],"knR":[-15.2,174.3],"ftR":[81.9,275.3],"hipL":[28.4,39.7],"knL":[-12.1,165.6],"ftL":[-21.5,316.7]},{"rootY":-0.8,"hips":[0,0],"chest":[3.6,-86.3],"neck":[3.6,-86.3],"head":[1.7,-155.5],"shR":[-60,-99.3],"elR":[-73.4,0],"haR":[-69.9,51],"shL":[67.6,-95],"elL":[114.3,5],"haL":[102.1,53.9],"hipR":[-27.1,38.7],"knR":[-15,174],"ftR":[82.8,275.7],"hipL":[28.1,40],"knL":[-12.6,165.8],"ftL":[-21.4,316.9]},{"rootY":-1.1,"hips":[0,0],"chest":[3.4,-86.2],"neck":[3.4,-86.2],"head":[1.1,-155.4],"shR":[-60.1,-99.5],"elR":[-75.6,-1.4],"haR":[-70.2,49.4],"shL":[67.1,-94.5],"elL":[116.7,4.4],"haL":[102.5,52.8],"hipR":[-26.7,38.7],"knR":[-14.7,174],"ftR":[83.5,276.1],"hipL":[27.7,40],"knL":[-13.9,165.8],"ftL":[-21.1,317.2]},{"rootY":-1.3,"hips":[0,0],"chest":[3.3,-86.1],"neck":[3.3,-86.1],"head":[1,-155.4],"shR":[-60,-99.6],"elR":[-77.3,-2.4],"haR":[-70.6,48.1],"shL":[66.6,-94.1],"elL":[119,3.6],"haL":[102.7,51.4],"hipR":[-26.6,38.4],"knR":[-13.5,173.6],"ftR":[84.8,275.7],"hipL":[27.4,40.2],"knL":[-14.7,166],"ftL":[-20.7,317.4]},{"rootY":-1.6,"hips":[0,0],"chest":[3.5,-86],"neck":[3.5,-86],"head":[1.3,-155.4],"shR":[-59.5,-99.8],"elR":[-78.1,-3.2],"haR":[-70.4,47.1],"shL":[66.5,-93.5],"elL":[120.9,3.4],"haL":[102.8,50.5],"hipR":[-26,38.3],"knR":[-12.8,173.4],"ftR":[86.1,276.3],"hipL":[27.1,40.3],"knL":[-16,166.1],"ftL":[-19.8,317.7]},{"rootY":-1.5,"hips":[0,0],"chest":[3.7,-85.8],"neck":[3.7,-85.8],"head":[1.7,-155.2],"shR":[-59.2,-100],"elR":[-79.1,-4],"haR":[-70.9,46.3],"shL":[66.6,-92.9],"elL":[122.9,3],"haL":[103.7,49.7],"hipR":[-25.8,38.1],"knR":[-11.1,173.1],"ftR":[87.5,275.9],"hipL":[26.8,40.5],"knL":[-15.3,166.5],"ftL":[-19.2,317.8]},{"rootY":-1.6,"hips":[0,0],"chest":[4.1,-85.7],"neck":[4.1,-85.7],"head":[2.2,-155.2],"shR":[-58.5,-100.5],"elR":[-78.4,-4.4],"haR":[-70.8,46],"shL":[66.9,-92.2],"elL":[124.3,3.1],"haL":[104.5,49.5],"hipR":[-25.9,37.9],"knR":[-8.9,172.6],"ftR":[88.7,275.6],"hipL":[26.6,40.7],"knL":[-15.3,166.9],"ftL":[-18.1,317.9]},{"rootY":-1.8,"hips":[0,0],"chest":[4.9,-85.5],"neck":[4.9,-85.5],"head":[3,-154.9],"shR":[-57.7,-100.3],"elR":[-76.6,-4],"haR":[-70.4,46.6],"shL":[67.8,-92.1],"elL":[124.9,3.3],"haL":[105,49.6],"hipR":[-25.8,37.8],"knR":[-6.9,172.1],"ftR":[88.6,275.2],"hipL":[26.8,40.8],"knL":[-15.2,167.1],"ftL":[-16.9,318]},{"rootY":-1.7,"hips":[0,0],"chest":[6.2,-85.4],"neck":[6.2,-85.4],"head":[4,-154.6],"shR":[-56.6,-100.5],"elR":[-73.9,-3.4],"haR":[-69.8,47.6],"shL":[69.4,-91.7],"elL":[125.2,4.3],"haL":[105.8,50.7],"hipR":[-26.2,37.7],"knR":[-4.4,171.4],"ftR":[86.9,274.5],"hipL":[26.6,40.9],"knL":[-14.4,167.6],"ftL":[-15.8,318.3]},{"rootY":-1.8,"hips":[0,0],"chest":[6.8,-85.4],"neck":[6.8,-85.4],"head":[4.4,-154.7],"shR":[-56.2,-100.7],"elR":[-70.7,-2.6],"haR":[-69.7,48.6],"shL":[70.6,-91.6],"elL":[123.3,5.7],"haL":[105.5,52.3],"hipR":[-27.2,37.1],"knR":[-3.9,170],"ftR":[82,274.1],"hipL":[26.6,41.4],"knL":[-15.4,168],"ftL":[-14.9,318.5]},{"rootY":-1.8,"hips":[0,0],"chest":[7.6,-85.4],"neck":[7.6,-85.4],"head":[4.8,-154.6],"shR":[-55.8,-100.6],"elR":[-67.3,-0.8],"haR":[-69.4,50.4],"shL":[72,-91.9],"elL":[119.9,7.3],"haL":[105,54.4],"hipR":[-27.8,37],"knR":[-4.5,169.1],"ftR":[74.5,273.7],"hipL":[26.8,41.5],"knL":[-15.3,168.2],"ftL":[-14.2,318.5]},{"rootY":-2.2,"hips":[0,0],"chest":[7.9,-85.6],"neck":[7.9,-85.6],"head":[4.6,-154.7],"shR":[-55.9,-100.4],"elR":[-63.9,1.6],"haR":[-70,52.4],"shL":[73.1,-92.6],"elL":[113.7,9.1],"haL":[103.8,56.9],"hipR":[-29.2,36.4],"knR":[-7.7,168],"ftR":[63.4,271.8],"hipL":[26.6,42],"knL":[-15.8,168.9],"ftL":[-13.8,319]},{"rootY":-3.6,"hips":[0,0],"chest":[8.4,-85.6],"neck":[8.4,-85.6],"head":[4.2,-154.7],"shR":[-56,-100],"elR":[-61.7,4.8],"haR":[-71,54.6],"shL":[74.3,-93.2],"elL":[105.9,11],"haL":[102.9,59.4],"hipR":[-30,35.9],"knR":[-14.1,167.5],"ftR":[48.5,269.6],"hipL":[26.2,42.5],"knL":[-14.6,170.1],"ftL":[-13.8,320.1]},{"rootY":-4.3,"hips":[0,0],"chest":[8.4,-85.8],"neck":[8.4,-85.8],"head":[3.3,-154.7],"shR":[-56.6,-99.4],"elR":[-62.5,8.1],"haR":[-74,56.5],"shL":[75.2,-94.4],"elL":[97,11.9],"haL":[101.8,60.7],"hipR":[-31.3,34.9],"knR":[-22.8,165.9],"ftR":[31.9,266.6],"hipL":[25.6,43.3],"knL":[-16.4,170.9],"ftL":[-14.5,320.9]},{"rootY":-4.9,"hips":[0,0],"chest":[8.2,-86],"neck":[8.2,-86],"head":[2.1,-154.8],"shR":[-57.4,-98.9],"elR":[-66.6,10.1],"haR":[-78.6,57.5],"shL":[75.9,-95.3],"elL":[91.4,12.2],"haL":[101.1,61],"hipR":[-32.2,34.6],"knR":[-31.1,165],"ftR":[12.1,264.7],"hipL":[25.5,43.5],"knL":[-15.8,171.6],"ftL":[-15.7,321.5]},{"rootY":-5.3,"hips":[0,0],"chest":[7.8,-86.1],"neck":[7.8,-86.1],"head":[0.8,-154.8],"shR":[-58.5,-97.9],"elR":[-73.1,11.5],"haR":[-86.2,57.8],"shL":[76.1,-96.8],"elL":[88.9,10.7],"haL":[101.2,59.5],"hipR":[-33.3,34.2],"knR":[-40.1,164],"ftR":[-11.2,263.4],"hipL":[25.4,43.8],"knL":[-14.9,172.3],"ftL":[-17.5,321.8]},{"rootY":-5.4,"hips":[0,0],"chest":[7.2,-86.2],"neck":[7.2,-86.2],"head":[-0.7,-154.9],"shR":[-59.5,-97.1],"elR":[-81.1,11.3],"haR":[-95.7,56],"shL":[76.3,-97.9],"elL":[90.3,8.6],"haL":[105.5,56.7],"hipR":[-34.4,34],"knR":[-48.7,162.9],"ftR":[-36.3,262.3],"hipL":[25.5,44],"knL":[-15.9,172.3],"ftL":[-19.3,321.7]},{"rootY":-5.2,"hips":[0,0],"chest":[6.2,-86.3],"neck":[6.2,-86.3],"head":[-2.5,-154.9],"shR":[-61,-96.1],"elR":[-92.1,10.1],"haR":[-108.8,52.6],"shL":[75.9,-99.2],"elL":[95.5,5.3],"haL":[114.2,51.6],"hipR":[-35.3,33.6],"knR":[-57.5,162],"ftR":[-62,261.9],"hipL":[25.7,44.2],"knL":[-15.1,172.6],"ftL":[-21.8,321.4]},{"rootY":-4.7,"hips":[0,0],"chest":[4.9,-86.4],"neck":[4.9,-86.4],"head":[-4.7,-154.7],"shR":[-62.5,-94.8],"elR":[-105.5,7.7],"haR":[-126.4,47.2],"shL":[74.8,-100.7],"elL":[103.6,-0.1],"haL":[126.5,43.1],"hipR":[-35.8,33.7],"knR":[-67.3,161.1],"ftR":[-87.4,261.5],"hipL":[26,44.2],"knL":[-15.4,172.4],"ftL":[-24.8,320.8]},{"rootY":-3.9,"hips":[0,0],"chest":[3.6,-86.5],"neck":[3.6,-86.5],"head":[-6.9,-154.7],"shR":[-64,-93.4],"elR":[-120.6,2.8],"haR":[-146.7,38.5],"shL":[73.5,-102.3],"elL":[113.8,-8.4],"haL":[141.8,29.7],"hipR":[-36,34.2],"knR":[-74.4,161.3],"ftR":[-111.1,262.2],"hipL":[26.8,43.8],"knL":[-15.5,171.8],"ftL":[-27.5,320]},{"rootY":-2.8,"hips":[0,0],"chest":[2.6,-86.5],"neck":[2.6,-86.5],"head":[-8.5,-154.7],"shR":[-65,-91.7],"elR":[-134.3,-3.7],"haR":[-167.6,27.3],"shL":[72.4,-104.1],"elL":[125.7,-20.5],"haL":[159.2,11.2],"hipR":[-36.1,34.8],"knR":[-78.4,162.2],"ftR":[-132.5,264],"hipL":[27.7,43.4],"knL":[-14.1,171.5],"ftL":[-30.5,319]},{"rootY":-1.8,"hips":[0,0],"chest":[1.7,-86.5],"neck":[1.7,-86.5],"head":[-10.3,-154.7],"shR":[-65.9,-90.1],"elR":[-147.8,-12.3],"haR":[-188.4,12.9],"shL":[71.1,-105.8],"elL":[137.9,-35.7],"haL":[176.7,-11.9],"hipR":[-36.2,35.5],"knR":[-78.8,164],"ftR":[-149.9,267.4],"hipL":[28.7,42.9],"knL":[-12.1,171.2],"ftL":[-33,318.3]},{"rootY":-1,"hips":[0,0],"chest":[0.9,-86.4],"neck":[0.9,-86.4],"head":[-12.2,-154.6],"shR":[-66.4,-88.1],"elR":[-160.6,-23.7],"haR":[-207.1,-4.7],"shL":[69.9,-107.7],"elL":[149.1,-54.9],"haL":[192.2,-40.3],"hipR":[-36.4,35.7],"knR":[-77.4,165.2],"ftR":[-162.1,272.7],"hipL":[29.2,42.7],"knL":[-11.1,171],"ftL":[-35.9,317.5]},{"rootY":-0.4,"hips":[0,0],"chest":[0.4,-86.4],"neck":[0.4,-86.4],"head":[-13.5,-154.4],"shR":[-66.6,-86],"elR":[-171.2,-37.9],"haR":[-220.9,-25.2],"shL":[68.7,-109.6],"elL":[158,-77],"haL":[204.3,-72.2],"hipR":[-36.2,36.1],"knR":[-73.7,165.7],"ftR":[-166.8,279.4],"hipL":[30,42.4],"knL":[-9.7,170.5],"ftL":[-38.9,316.9]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-86.3],"neck":[-0.4,-86.3],"head":[-15,-154.3],"shR":[-66.9,-84],"elR":[-178.1,-53.6],"haR":[-228.1,-47.5],"shL":[67.1,-111.4],"elL":[164.1,-100.3],"haL":[211.4,-105.9],"hipR":[-35.8,36.6],"knR":[-65.8,165.3],"ftR":[-162.5,286.3],"hipL":[30.8,41.9],"knL":[-7.9,170.1],"ftL":[-41.7,316.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-86.1],"neck":[-1.1,-86.1],"head":[-16.3,-154.3],"shR":[-66.9,-82.6],"elR":[-180.3,-71.1],"haR":[-227.8,-70.7],"shL":[65.5,-112.7],"elL":[165.5,-124.1],"haL":[212.2,-139.6],"hipR":[-35.2,36.7],"knR":[-55.3,162.7],"ftR":[-150.4,292.2],"hipL":[31.1,41.7],"knL":[-6.6,170],"ftL":[-44.9,316.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-1.5,-86],"neck":[-1.5,-86],"head":[-17.2,-154.1],"shR":[-66.4,-80.9],"elR":[-177.2,-88.5],"haR":[-219.6,-92.8],"shL":[64.2,-113.9],"elL":[163,-147],"haL":[206.9,-171.4],"hipR":[-34.1,36.9],"knR":[-39.1,159.8],"ftR":[-130.4,296.2],"hipL":[31.3,41.4],"knL":[-3.5,170.1],"ftL":[-47.5,316]},{"rootY":-0.3,"hips":[0,0],"chest":[-1.3,-86],"neck":[-1.3,-86],"head":[-17.1,-154.1],"shR":[-65,-79.8],"elR":[-168.7,-100.1],"haR":[-204.7,-111.3],"shL":[63.3,-114.9],"elL":[157.6,-167.3],"haL":[196.3,-199.6],"hipR":[-32.4,37.3],"knR":[-24.9,153.2],"ftR":[-104.7,297.2],"hipL":[31.6,41],"knL":[-1.4,169.9],"ftL":[-50.1,315.6]},{"rootY":-0.2,"hips":[0,0],"chest":[-0.3,-86],"neck":[-0.3,-86],"head":[-16.4,-154.1],"shR":[-62.9,-79.1],"elR":[-156.3,-110.4],"haR":[-184.8,-128.2],"shL":[63.4,-115.7],"elL":[150.5,-183.8],"haL":[182.2,-222.2],"hipR":[-30.1,38],"knR":[-10.3,145.2],"ftR":[-75.2,295.3],"hipL":[32.1,40.2],"knL":[0.3,169.6],"ftL":[-52.1,315.2]},{"rootY":0.2,"hips":[0,0],"chest":[0.7,-86],"neck":[0.7,-86],"head":[-15.9,-153.9],"shR":[-60.4,-78.6],"elR":[-141.7,-118.5],"haR":[-161.6,-142.5],"shL":[63.4,-116.3],"elL":[141.5,-196.3],"haL":[165.3,-239],"hipR":[-27.7,38.6],"knR":[5.3,135.8],"ftR":[-41.5,290.4],"hipL":[32.4,39.4],"knL":[1.6,169],"ftL":[-55.8,314.1]},{"rootY":1,"hips":[0,0],"chest":[1.5,-86.1],"neck":[1.5,-86.1],"head":[-15,-154],"shR":[-58.1,-78.5],"elR":[-124.7,-125.7],"haR":[-135.8,-155.2],"shL":[63,-116.5],"elL":[131.4,-204.3],"haL":[146.8,-249.7],"hipR":[-25.1,38.9],"knR":[20.3,126.9],"ftR":[-7.5,284.2],"hipL":[32.6,38.8],"knL":[1.6,168.6],"ftL":[-61.3,312.4]},{"rootY":2.3,"hips":[0,0],"chest":[1.3,-86.2],"neck":[1.3,-86.2],"head":[-14.8,-154.1],"shR":[-56.6,-78.4],"elR":[-106.1,-131.1],"haR":[-109.9,-165.9],"shL":[61.4,-117],"elL":[118.5,-208.7],"haL":[126.3,-255.2],"hipR":[-23.1,39],"knR":[32.9,119.7],"ftR":[23,278.4],"hipL":[32.2,38.5],"knL":[0.9,168.4],"ftL":[-68.3,310.7]},{"rootY":3.3,"hips":[0,0],"chest":[1,-86.3],"neck":[1,-86.3],"head":[-14.9,-154.3],"shR":[-55.1,-78.1],"elR":[-90,-137.1],"haR":[-86.2,-174.9],"shL":[59.5,-117.6],"elL":[104.5,-211.1],"haL":[106,-257.2],"hipR":[-21,39.2],"knR":[43.7,115],"ftR":[49.8,274.3],"hipL":[31.5,38.3],"knL":[0.3,168.2],"ftL":[-74.9,308.4]},{"rootY":5.2,"hips":[0,0],"chest":[1,-86.4],"neck":[1,-86.4],"head":[-14.3,-154.4],"shR":[-53.2,-77.7],"elR":[-75,-142.2],"haR":[-65,-182.1],"shL":[57.7,-118.2],"elL":[93.5,-212.1],"haL":[88.4,-256.3],"hipR":[-18.3,39.4],"knR":[51.1,112.2],"ftR":[72.9,272.4],"hipL":[30.5,37.9],"knL":[1.4,168.1],"ftL":[-80.1,304.7]},{"rootY":6.8,"hips":[0,0],"chest":[0.9,-86.5],"neck":[0.9,-86.5],"head":[-14,-154.6],"shR":[-50.8,-76.6],"elR":[-61.9,-145.3],"haR":[-46.4,-186.9],"shL":[55.2,-119.5],"elL":[84.2,-213.1],"haL":[72.5,-254.3],"hipR":[-14.7,40.2],"knR":[59.1,112.9],"ftR":[89.9,273.8],"hipL":[29.6,36.8],"knL":[4.7,167.6],"ftL":[-84.2,299.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.5],"neck":[-0.4,-86.5],"head":[-15.6,-154.5],"shR":[-48.9,-75.6],"elR":[-50.6,-147.9],"haR":[-31.1,-190.8],"shL":[50.8,-120.6],"elL":[75.4,-214.3],"haL":[59.2,-252.2],"hipR":[-10.8,40.2],"knR":[66.7,115.4],"ftR":[99,276.9],"hipL":[28,36.4],"knL":[7.4,167.6],"ftL":[-89.5,293.4]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-18.5,-154.2],"shR":[-47.4,-74.9],"elR":[-42.4,-150.9],"haR":[-19.6,-194.6],"shL":[44.9,-121.3],"elL":[67.2,-215.7],"haL":[48.1,-250.6],"hipR":[-7.3,40.4],"knR":[73.3,120.9],"ftR":[100.7,281.9],"hipL":[26.7,35.8],"knL":[10.5,167.9],"ftL":[-95.3,288.1]},{"rootY":10.5,"hips":[0,0],"chest":[-6.1,-86.2],"neck":[-6.1,-86.2],"head":[-23.1,-153.5],"shR":[-46.9,-74.6],"elR":[-36.1,-154],"haR":[-12,-198.5],"shL":[37,-121.4],"elL":[57.7,-217.2],"haL":[36.3,-249],"hipR":[-4.3,40.2],"knR":[80.1,127.7],"ftR":[95.9,288.7],"hipL":[24.7,35.8],"knL":[11.5,168.7],"ftL":[-102.2,282.9]},{"rootY":11.1,"hips":[0,0],"chest":[-10,-85.7],"neck":[-10,-85.7],"head":[-28.3,-152.7],"shR":[-47.3,-74.3],"elR":[-32.3,-156.8],"haR":[-8.1,-201.9],"shL":[29.2,-121],"elL":[49.2,-218.9],"haL":[26.9,-247.2],"hipR":[-1.6,40.5],"knR":[83.9,134.2],"ftR":[86.9,295.7],"hipL":[22.6,35.4],"knL":[15.6,169.2],"ftL":[-107,276.1]},{"rootY":11.9,"hips":[0,0],"chest":[-13.6,-85.1],"neck":[-13.6,-85.1],"head":[-32.7,-151.8],"shR":[-47.3,-73.7],"elR":[-29.6,-159.3],"haR":[-6.6,-204.9],"shL":[21.8,-120.5],"elL":[40.5,-220.3],"haL":[18.9,-246.6],"hipR":[1.3,40],"knR":[85.9,138.2],"ftR":[76.7,299.1],"hipL":[20.7,35.6],"knL":[23.8,170.1],"ftL":[-106.7,269.4]},{"rootY":13,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35.6,-151.3],"shR":[-44.5,-74.4],"elR":[-26.1,-163.7],"haR":[-3.9,-209.1],"shL":[15.2,-119.6],"elL":[32.9,-220.9],"haL":[13.6,-247.5],"hipR":[3.9,39.5],"knR":[87.2,139.8],"ftR":[71.3,299.2],"hipL":[19.4,35.7],"knL":[34.8,169.8],"ftL":[-98.5,264.3]},{"rootY":13.6,"hips":[0,0],"chest":[-16.3,-84.7],"neck":[-16.3,-84.7],"head":[-37.4,-150.8],"shR":[-42,-75.3],"elR":[-23,-167],"haR":[-1.8,-212.3],"shL":[10.8,-118.4],"elL":[28.8,-221.1],"haL":[10.9,-248.5],"hipR":[5.5,37.3],"knR":[86.7,140.7],"ftR":[68.1,298.7],"hipL":[18.2,37.7],"knL":[46.7,170.2],"ftL":[-84.6,262.4]},{"rootY":15.1,"hips":[0,0],"chest":[-16.5,-84.6],"neck":[-16.5,-84.6],"head":[-37.6,-150.8],"shR":[-39,-75.9],"elR":[-18.2,-168.8],"haR":[-0.1,-215.3],"shL":[7.6,-117.8],"elL":[26.7,-222.2],"haL":[9.6,-250.3],"hipR":[6,36.6],"knR":[87,141.2],"ftR":[65.4,297.8],"hipL":[18.4,38.1],"knL":[57.1,168.2],"ftL":[-70.9,259.6]},{"rootY":17.3,"hips":[0,0],"chest":[-16.8,-84.5],"neck":[-16.8,-84.5],"head":[-38.2,-150.6],"shR":[-37.7,-76.7],"elR":[-14.6,-169.2],"haR":[2.1,-215.9],"shL":[5.9,-116.9],"elL":[26.9,-222.6],"haL":[10.7,-251.4],"hipR":[5.9,36.5],"knR":[88.3,140.7],"ftR":[62.7,296.1],"hipL":[18.3,38.2],"knL":[66,165.4],"ftL":[-59.8,257.6]},{"rootY":19.1,"hips":[0,0],"chest":[-17,-84.5],"neck":[-17,-84.5],"head":[-38.3,-150.7],"shR":[-37.3,-78.2],"elR":[-12.5,-169.6],"haR":[5,-215.8],"shL":[5.2,-115.5],"elL":[29,-221.5],"haL":[14.2,-251.2],"hipR":[5.8,36.3],"knR":[89.5,140],"ftR":[60.7,294.5],"hipL":[18.2,38.5],"knL":[73.3,162.4],"ftL":[-51.3,257.8]},{"rootY":18.6,"hips":[0,0],"chest":[-16.7,-84.6],"neck":[-16.7,-84.6],"head":[-36.9,-151.2],"shR":[-36.9,-78.5],"elR":[-11.2,-167.7],"haR":[9.3,-212.4],"shL":[5.8,-115.3],"elL":[32.7,-221.1],"haL":[18.4,-251.5],"hipR":[6.2,36],"knR":[89.9,140.2],"ftR":[59.6,294.4],"hipL":[18.2,38.6],"knL":[77.8,160],"ftL":[-44.5,262.7]},{"rootY":16.3,"hips":[0,0],"chest":[-16.1,-84.7],"neck":[-16.1,-84.7],"head":[-35,-151.7],"shR":[-38.1,-78.3],"elR":[-11.4,-164.3],"haR":[13,-206.6],"shL":[8.4,-115.6],"elL":[39.3,-219.7],"haL":[25.2,-248.8],"hipR":[5.9,35.7],"knR":[89,140.8],"ftR":[58,295.4],"hipL":[18.7,38.7],"knL":[78.6,159],"ftL":[-38.2,271.8]},{"rootY":14.2,"hips":[0,0],"chest":[-15.4,-84.8],"neck":[-15.4,-84.8],"head":[-35,-151.5],"shR":[-39.5,-79.6],"elR":[-9,-161.2],"haR":[18.6,-201.2],"shL":[11.4,-114.5],"elL":[46.5,-216.4],"haL":[31.9,-242.8],"hipR":[4.5,35.9],"knR":[87.6,140.9],"ftR":[57.8,295.9],"hipL":[19.6,38.7],"knL":[75.4,159],"ftL":[-33.1,282]},{"rootY":11.3,"hips":[0,0],"chest":[-13.9,-85],"neck":[-13.9,-85],"head":[-31.9,-152.2],"shR":[-42.4,-78.2],"elR":[-7.8,-152.1],"haR":[22.8,-189.4],"shL":[17.7,-116],"elL":[57.6,-214.6],"haL":[41.1,-238.6],"hipR":[1.9,36.2],"knR":[85.8,140.3],"ftR":[57.3,296.4],"hipL":[21.1,38.6],"knL":[68,160.3],"ftL":[-29.2,291.5]},{"rootY":8.7,"hips":[0,0],"chest":[-11.6,-85.3],"neck":[-11.6,-85.3],"head":[-26.8,-153.3],"shR":[-43.8,-80.5],"elR":[-3,-146.4],"haR":[29.4,-182.3],"shL":[24.2,-114.3],"elL":[69.1,-207.4],"haL":[49.5,-230.5],"hipR":[-1.5,36.8],"knR":[84,138],"ftR":[58.2,295.2],"hipL":[23.9,38.1],"knL":[57.9,161.5],"ftL":[-27.3,298.1]},{"rootY":8.7,"hips":[0,0],"chest":[-9.1,-85.6],"neck":[-9.1,-85.6],"head":[-22.7,-154],"shR":[-47,-80.4],"elR":[0.6,-133.8],"haR":[32.5,-169.3],"shL":[32.9,-114.9],"elL":[82.7,-200.1],"haL":[60.3,-224.1],"hipR":[-6,37],"knR":[76.3,135.3],"ftR":[58.2,292.9],"hipL":[26.4,38.2],"knL":[47.1,162.3],"ftL":[-27.2,303.1]},{"rootY":6.9,"hips":[0,0],"chest":[-6.1,-86.1],"neck":[-6.1,-86.1],"head":[-18.4,-154.7],"shR":[-48.6,-83.5],"elR":[7.7,-122.8],"haR":[39.3,-161.6],"shL":[41,-112.5],"elL":[95.6,-186.6],"haL":[72.4,-215],"hipR":[-11.1,36.3],"knR":[68.5,134.3],"ftR":[55.3,296],"hipL":[28.8,38.9],"knL":[39.8,164.1],"ftL":[-27.4,307.3]},{"rootY":6.6,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-15.2,-155.3],"shR":[-52.3,-83.4],"elR":[10.8,-108.9],"haR":[40.6,-150.3],"shL":[50.6,-112.8],"elL":[107,-172.1],"haL":[86.4,-206.3],"hipR":[-14.6,36.1],"knR":[58.9,134.3],"ftR":[51.5,298.2],"hipL":[30.2,39.2],"knL":[34.4,164.2],"ftL":[-28.8,309.4]},{"rootY":6.6,"hips":[0,0],"chest":[-0.8,-86.7],"neck":[-0.8,-86.7],"head":[-10.6,-156],"shR":[-52.3,-84.9],"elR":[18,-97.3],"haR":[46,-139.8],"shL":[56.1,-111.6],"elL":[111.2,-154.5],"haL":[96.2,-193.5],"hipR":[-17.6,36],"knR":[49.3,132.6],"ftR":[43.1,297.1],"hipL":[30.9,39.5],"knL":[35.3,163.1],"ftL":[-24.9,309.1]},{"rootY":6.2,"hips":[0,0],"chest":[0.9,-86.8],"neck":[0.9,-86.8],"head":[-6.8,-156.3],"shR":[-54.7,-84.6],"elR":[20.8,-87],"haR":[47.1,-127.1],"shL":[61.4,-111.8],"elL":[111.3,-138.7],"haL":[104.3,-180.7],"hipR":[-19.8,36.7],"knR":[38.7,131.6],"ftR":[26.3,295.3],"hipL":[31.5,39.3],"knL":[36.6,162.2],"ftL":[-21.5,308.9]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-86.8],"neck":[1.4,-86.8],"head":[-4.9,-156.6],"shR":[-54.9,-85.7],"elR":[21.3,-82.2],"haR":[46,-116.3],"shL":[63.2,-110.4],"elL":[106.8,-123.6],"haL":[110.1,-165.7],"hipR":[-22.2,37.2],"knR":[32.2,136.9],"ftR":[-2.9,293.9],"hipL":[31.9,39.3],"knL":[36.4,161.9],"ftL":[-20.3,309.4]},{"rootY":6.2,"hips":[0,0],"chest":[2,-86.8],"neck":[2,-86.8],"head":[-4.7,-156.6],"shR":[-55.1,-87.5],"elR":[16.6,-81.8],"haR":[38.5,-108.3],"shL":[64.8,-108.5],"elL":[105.9,-109.5],"haL":[116.5,-148.1],"hipR":[-24.3,37.5],"knR":[18.1,143.3],"ftR":[-38.9,291.5],"hipL":[32.4,39.4],"knL":[35.4,160.9],"ftL":[-19.9,308.1]},{"rootY":6.8,"hips":[0,0],"chest":[1.6,-86.8],"neck":[1.6,-86.8],"head":[-4.5,-156.6],"shR":[-55.2,-89.1],"elR":[7.3,-83.7],"haR":[24.2,-100.8],"shL":[64.6,-106.9],"elL":[108,-98.4],"haL":[124.5,-131.3],"hipR":[-26,37.9],"knR":[6.7,149.5],"ftR":[-65.7,289.5],"hipL":[32.9,39.3],"knL":[34.5,160.2],"ftL":[-19.7,307.5]},{"rootY":7.2,"hips":[0,0],"chest":[1.3,-86.8],"neck":[1.3,-86.8],"head":[-4,-156.7],"shR":[-56.5,-89.7],"elR":[-9.2,-88.4],"haR":[1.7,-93.4],"shL":[65.4,-106.3],"elL":[112.9,-91.5],"haL":[134.9,-117.3],"hipR":[-26.5,38.9],"knR":[-8.4,156.7],"ftR":[-97.1,288.5],"hipL":[34.3,38.4],"knL":[34.7,159.6],"ftL":[-19.4,306.9]},{"rootY":8.3,"hips":[0,0],"chest":[0.6,-86.7],"neck":[0.6,-86.7],"head":[-4.8,-156.6],"shR":[-58.4,-89.6],"elR":[-33.7,-90.3],"haR":[-28.5,-86],"shL":[65.5,-106.3],"elL":[120,-87],"haL":[146.6,-105.3],"hipR":[-26.8,39.7],"knR":[-23.8,164.6],"ftR":[-128.5,286.3],"hipL":[34.8,37.9],"knL":[34.1,158.7],"ftL":[-20.1,305.7]},{"rootY":9,"hips":[0,0],"chest":[-0.4,-86.7],"neck":[-0.4,-86.7],"head":[-5.6,-156.6],"shR":[-60,-89.3],"elR":[-58.4,-87.9],"haR":[-60,-78],"shL":[65.1,-106.4],"elL":[127.7,-83.5],"haL":[157.7,-96.5],"hipR":[-27.6,39.4],"knR":[-129.3,128.2],"ftR":[-154.9,283.2],"hipL":[34.2,38.4],"knL":[33.6,158.4],"ftL":[-20.8,304.8]},{"rootY":9.7,"hips":[0,0],"chest":[-0.2,-86.5],"neck":[-0.2,-86.5],"head":[-5.8,-156.3],"shR":[-60.9,-89.7],"elR":[-81.7,-85],"haR":[-92.5,-73.5],"shL":[66.1,-105.6],"elL":[138.2,-78.9],"haL":[170.4,-87.6],"hipR":[-28.7,39.4],"knR":[-134.6,124.5],"ftR":[-173.1,280.6],"hipL":[33.8,38.8],"knL":[32.8,158.1],"ftL":[-21.1,304.1]},{"rootY":10.3,"hips":[0,0],"chest":[0.6,-86.3],"neck":[0.6,-86.3],"head":[-5.5,-156.1],"shR":[-60.6,-89.7],"elR":[-102.3,-82.4],"haR":[-122.9,-70.3],"shL":[67.4,-105.2],"elL":[147.7,-76],"haL":[183.4,-80.5],"hipR":[-30,39.6],"knR":[-58.5,170.8],"ftR":[-180.6,280],"hipL":[33.5,38.9],"knL":[31.9,157.6],"ftL":[-21,303.3]},{"rootY":10.8,"hips":[0,0],"chest":[1.7,-86.1],"neck":[1.7,-86.1],"head":[-4.6,-155.7],"shR":[-60.4,-89.5],"elR":[-121.3,-81.6],"haR":[-150.8,-69],"shL":[69.2,-104.7],"elL":[157.9,-72.1],"haL":[195.9,-73.8],"hipR":[-31.3,39.4],"knR":[-63.5,170.9],"ftR":[-179.2,280.2],"hipL":[33.2,39.3],"knL":[31.6,157.4],"ftL":[-20.6,302.5]},{"rootY":11,"hips":[0,0],"chest":[3,-85.6],"neck":[3,-85.6],"head":[-3.3,-155.2],"shR":[-59.9,-89.8],"elR":[-136.9,-82.8],"haR":[-173.6,-70.7],"shL":[71.3,-103.4],"elL":[166.5,-69.5],"haL":[207.3,-68.9],"hipR":[-32.2,39.3],"knR":[-63.1,171.5],"ftR":[-172,279.5],"hipL":[33,39.4],"knL":[31.6,157.6],"ftL":[-19.8,302.2]},{"rootY":11.3,"hips":[0,0],"chest":[4.2,-85],"neck":[4.2,-85],"head":[-1.8,-154.5],"shR":[-59.6,-90.7],"elR":[-148.9,-85.1],"haR":[-191.4,-74.8],"shL":[73.5,-101.2],"elL":[173.8,-67.7],"haL":[217.4,-66.2],"hipR":[-32.3,39.6],"knR":[-60.3,171.1],"ftR":[-158.4,277.5],"hipL":[33.5,39],"knL":[31.1,157.3],"ftL":[-18.7,301.7]},{"rootY":11.9,"hips":[0,0],"chest":[5.3,-84.3],"neck":[5.3,-84.3],"head":[0.3,-153.7],"shR":[-59.2,-91.4],"elR":[-158.2,-89.3],"haR":[-204.8,-81.2],"shL":[75.4,-98.6],"elL":[180,-66.9],"haL":[225.6,-65.3],"hipR":[-32.3,39.8],"knR":[-56.4,170],"ftR":[-139.1,274.2],"hipL":[34.1,38.6],"knL":[29.8,156.6],"ftL":[-17.7,301.1]},{"rootY":12.3,"hips":[0,0],"chest":[6.9,-83.2],"neck":[6.9,-83.2],"head":[2.9,-152.6],"shR":[-58.3,-91.9],"elR":[-163.9,-95.3],"haR":[-213,-89.6],"shL":[77.7,-95.7],"elL":[184.6,-66.5],"haL":[231.6,-65.5],"hipR":[-31.9,39.9],"knR":[-49.3,168.5],"ftR":[-114.7,270.1],"hipL":[34.8,38.1],"knL":[28.6,156.2],"ftL":[-15.7,300.9]},{"rootY":12.6,"hips":[0,0],"chest":[7.6,-82.1],"neck":[7.6,-82.1],"head":[4.5,-151.6],"shR":[-57.9,-92.9],"elR":[-167.3,-102.3],"haR":[-217.8,-99.3],"shL":[79,-92.3],"elL":[187.6,-66],"haL":[235.4,-65.6],"hipR":[-32,39.2],"knR":[-42.2,166.1],"ftR":[-86.9,264.9],"hipL":[34.7,38.4],"knL":[26.4,156.3],"ftL":[-13.3,301]},{"rootY":13,"hips":[0,0],"chest":[8.7,-80.9],"neck":[8.7,-80.9],"head":[7,-150.4],"shR":[-57.1,-93.4],"elR":[-168.3,-109.8],"haR":[-219.3,-109.5],"shL":[80.4,-89],"elL":[189.7,-65.2],"haL":[238.1,-65.6],"hipR":[-31.4,38.8],"knR":[-35.1,164.4],"ftR":[-55.8,258.8],"hipL":[34.8,38.5],"knL":[23.9,156.4],"ftL":[-10.2,301.4]},{"rootY":13.4,"hips":[0,0],"chest":[9.6,-79.7],"neck":[9.6,-79.7],"head":[9.1,-149.2],"shR":[-56.4,-93.8],"elR":[-167.6,-117.2],"haR":[-218.8,-120],"shL":[81.3,-85.8],"elL":[191.1,-64.6],"haL":[239.8,-66],"hipR":[-30.1,38.7],"knR":[-26.3,163],"ftR":[-25.4,253.4],"hipL":[35.1,38.4],"knL":[20.7,155.7],"ftL":[-8.1,300.3]},{"rootY":15,"hips":[0,0],"chest":[9.1,-79],"neck":[9.1,-79],"head":[9.5,-148.6],"shR":[-56.7,-95.4],"elR":[-167.1,-125.8],"haR":[-217.9,-131.7],"shL":[80.6,-82.5],"elL":[190.9,-63.9],"haL":[239.3,-66],"hipR":[-30.5,37.6],"knR":[-17.8,159.6],"ftR":[2.3,247.1],"hipL":[34,39.3],"knL":[16.5,155.1],"ftL":[-7.2,299.4]},{"rootY":15.9,"hips":[0,0],"chest":[8.8,-78.4],"neck":[8.8,-78.4],"head":[10.2,-148.1],"shR":[-56.6,-96.7],"elR":[-165.6,-132.9],"haR":[-215.9,-141.8],"shL":[79.9,-79.9],"elL":[190.5,-63.1],"haL":[238.6,-65.8],"hipR":[-29.6,37.2],"knR":[-8.5,157.2],"ftR":[27.5,242.3],"hipL":[33.7,39.6],"knL":[13.6,154.8],"ftL":[-6,298.8]},{"rootY":16.5,"hips":[0,0],"chest":[8.6,-77.9],"neck":[8.6,-77.9],"head":[10.8,-147.6],"shR":[-56.3,-98],"elR":[-163.8,-139.1],"haR":[-213.3,-151],"shL":[79,-77.5],"elL":[189.7,-61.8],"haL":[237.3,-64.9],"hipR":[-28.6,37.2],"knR":[-1.1,156.7],"ftR":[49.3,240.6],"hipL":[33.5,39.6],"knL":[12.1,154.8],"ftL":[-4.6,298.1]},{"rootY":16.8,"hips":[0,0],"chest":[8.7,-77.5],"neck":[8.7,-77.5],"head":[11.5,-147.3],"shR":[-55.7,-98.9],"elR":[-161.6,-143.8],"haR":[-210.3,-158.4],"shL":[78.2,-75.5],"elL":[188.7,-59.8],"haL":[235.6,-63],"hipR":[-26.8,37.6],"knR":[6.2,157.5],"ftR":[67.7,240.9],"hipL":[33.7,39.1],"knL":[11.6,154.8],"ftL":[-3.6,297.9]},{"rootY":17.3,"hips":[0,0],"chest":[6.5,-78.2],"neck":[6.5,-78.2],"head":[10.1,-147.9],"shR":[-57.4,-100.7],"elR":[-162.3,-148.4],"haR":[-210.2,-164.9],"shL":[75.1,-74.5],"elL":[184.9,-58.3],"haL":[231,-61.4],"hipR":[-26.8,36.9],"knR":[8.5,156.9],"ftR":[79.9,242.8],"hipL":[33.1,39.7],"knL":[8.7,155.3],"ftL":[-4.3,297.3]},{"rootY":18.1,"hips":[0,0],"chest":[4.8,-78.4],"neck":[4.8,-78.4],"head":[9.5,-148.2],"shR":[-58.1,-102.2],"elR":[-162.4,-151.2],"haR":[-209.7,-169.3],"shL":[72.2,-73.5],"elL":[181.2,-56.5],"haL":[226.3,-58.9],"hipR":[-26.2,37.2],"knR":[11.9,158.8],"ftR":[89.1,247.4],"hipL":[33,39.5],"knL":[6.4,154.7],"ftL":[-4.2,296.3]},{"rootY":18.6,"hips":[0,0],"chest":[4.7,-77.6],"neck":[4.7,-77.6],"head":[9.2,-147.3],"shR":[-57.9,-102.4],"elR":[-162.1,-151.9],"haR":[-208.8,-170.7],"shL":[71.9,-71.2],"elL":[179.5,-52.4],"haL":[223.3,-54.1],"hipR":[-25.1,38],"knR":[15.4,161.7],"ftR":[95.5,252.6],"hipL":[33.3,38.9],"knL":[5.9,154.5],"ftL":[-4.1,296.2]},{"rootY":19.2,"hips":[0,0],"chest":[4.1,-76.8],"neck":[4.1,-76.8],"head":[8.9,-146.6],"shR":[-58,-101.8],"elR":[-162.6,-150.4],"haR":[-208.8,-169.8],"shL":[70.3,-70.5],"elL":[175.7,-49.3],"haL":[218.4,-50.2],"hipR":[-24.9,38.1],"knR":[15.2,163.8],"ftR":[98.7,257.5],"hipL":[32.8,39.1],"knL":[5.5,154.6],"ftL":[-4.9,295.7]},{"rootY":19.6,"hips":[0,0],"chest":[3.7,-76.4],"neck":[3.7,-76.4],"head":[8.5,-146.3],"shR":[-57.8,-102.2],"elR":[-163.5,-148.6],"haR":[-209.4,-168.5],"shL":[69.3,-69.5],"elL":[171.9,-45.5],"haL":[213.2,-45],"hipR":[-24.3,38.6],"knR":[15.9,165.1],"ftR":[101.4,259.5],"hipL":[32.8,38.8],"knL":[6.6,154.8],"ftL":[-5.3,295]},{"rootY":20.3,"hips":[0,0],"chest":[2.5,-76.7],"neck":[2.5,-76.7],"head":[7.4,-146.5],"shR":[-58.5,-103],"elR":[-165.1,-147.3],"haR":[-210.8,-167.4],"shL":[67.5,-69],"elL":[166.6,-41.9],"haL":[205.4,-40.3],"hipR":[-25,38.6],"knR":[14.9,164.9],"ftR":[101.1,259],"hipL":[32.4,39],"knL":[7,155],"ftL":[-6.4,294.3]},{"rootY":21.6,"hips":[0,0],"chest":[1.9,-76.7],"neck":[1.9,-76.7],"head":[6.8,-146.5],"shR":[-59.1,-102.7],"elR":[-166.2,-145.5],"haR":[-211.8,-165.9],"shL":[66.6,-69.1],"elL":[161.9,-39.4],"haL":[198.1,-36.5],"hipR":[-25.1,38.8],"knR":[15.6,164.5],"ftR":[99.8,258.1],"hipL":[32.7,38.8],"knL":[6.7,154.2],"ftL":[-7.6,292.7]},{"rootY":22,"hips":[0,0],"chest":[1.2,-76],"neck":[1.2,-76],"head":[5.9,-145.8],"shR":[-59.8,-101.5],"elR":[-167,-144.2],"haR":[-212,-165.5],"shL":[65.5,-69.1],"elL":[157.9,-38.8],"haL":[192,-35.7],"hipR":[-26,38.1],"knR":[15.9,162.2],"ftR":[98.5,255.5],"hipL":[32.5,39.4],"knL":[4,153.1],"ftL":[-9.8,291.1]},{"rootY":22.6,"hips":[0,0],"chest":[0.4,-75.1],"neck":[0.4,-75.1],"head":[4.6,-144.9],"shR":[-60.5,-100],"elR":[-167.1,-143.9],"haR":[-211.6,-166.5],"shL":[64,-68.8],"elL":[155.2,-40.6],"haL":[187.5,-38.4],"hipR":[-26.5,37],"knR":[15.8,159.4],"ftR":[98.2,249.5],"hipL":[32,40.1],"knL":[0.2,152.6],"ftL":[-12.1,290.4]},{"rootY":19.7,"hips":[0,0],"chest":[-0.4,-73.9],"neck":[-0.4,-73.9],"head":[4.2,-143.6],"shR":[-61,-98.9],"elR":[-166.8,-144.7],"haR":[-210.7,-168.8],"shL":[62.3,-67.3],"elL":[153.8,-43.3],"haL":[186.3,-42.3],"hipR":[-25.7,35.7],"knR":[17.7,154.8],"ftR":[101.7,237.7],"hipL":[31.3,40.7],"knL":[-2.8,154.1],"ftL":[-12.8,292.7]},{"rootY":15.2,"hips":[0,0],"chest":[-1.7,-73.3],"neck":[-1.7,-73.3],"head":[3.3,-142.8],"shR":[-62.2,-98.2],"elR":[-166.8,-146.9],"haR":[-209.6,-173],"shL":[60.7,-66.6],"elL":[154.2,-47],"haL":[186.7,-47.9],"hipR":[-25.2,33.5],"knR":[20.9,145.1],"ftR":[108.8,216.1],"hipL":[30,41.9],"knL":[-5.9,156.7],"ftL":[-13.5,296.5]},{"rootY":8.7,"hips":[0,0],"chest":[-2.6,-72.8],"neck":[-2.6,-72.8],"head":[2.6,-142.1],"shR":[-62.6,-98.1],"elR":[-165.4,-150.3],"haR":[-207.1,-178.3],"shL":[59,-65.3],"elL":[155.6,-50],"haL":[189.2,-52.2],"hipR":[-23.7,31.8],"knR":[24.4,133.8],"ftR":[118.7,186.4],"hipL":[29,42.6],"knL":[-8.1,160.5],"ftL":[-13,302.1]},{"rootY":1.9,"hips":[0,0],"chest":[-3.5,-72.9],"neck":[-3.5,-72.9],"head":[1.9,-142.1],"shR":[-63.1,-98.5],"elR":[-163.8,-154.6],"haR":[-204,-184.7],"shL":[57.4,-65],"elL":[156.6,-53],"haL":[191.8,-56.2],"hipR":[-23.2,29],"knR":[27.1,119.1],"ftR":[128.8,148.7],"hipL":[27.4,43.8],"knL":[-11,164.3],"ftL":[-10.9,307.8]},{"rootY":-6.7,"hips":[0,0],"chest":[-4.2,-72.8],"neck":[-4.2,-72.8],"head":[1.6,-141.9],"shR":[-62.9,-99.4],"elR":[-161.7,-158.8],"haR":[-200.3,-190.8],"shL":[55.7,-63.9],"elL":[157.5,-54.3],"haL":[194.3,-58],"hipR":[-23.5,25.2],"knR":[29,102.2],"ftR":[137.4,109],"hipL":[25.1,45.4],"knL":[-14.1,167.9],"ftL":[-7.4,314]},{"rootY":-17.3,"hips":[0,0],"chest":[-4,-71.8],"neck":[-4,-71.8],"head":[2.3,-140.8],"shR":[-61.7,-99.2],"elR":[-158.5,-161.6],"haR":[-195.6,-195.1],"shL":[54.9,-62.2],"elL":[159.2,-52.6],"haL":[198.3,-56.3],"hipR":[-22.2,23],"knR":[30.1,88.7],"ftR":[144.8,70.4],"hipL":[23.3,46.4],"knL":[-15.2,171.3],"ftL":[-5.7,319.9]},{"rootY":-27.4,"hips":[0,0],"chest":[-3.9,-71.2],"neck":[-3.9,-71.2],"head":[2.8,-140.2],"shR":[-60.8,-99.8],"elR":[-155.9,-164.3],"haR":[-191.8,-199],"shL":[54.4,-60.6],"elL":[160.5,-49.4],"haL":[201,-52.3],"hipR":[-22.1,19.2],"knR":[29.7,72.7],"ftR":[150.1,32.4],"hipL":[21.2,47.5],"knL":[-18.7,173.3],"ftL":[-4.1,324.5]},{"rootY":-37.7,"hips":[0,0],"chest":[-3.8,-70.5],"neck":[-3.8,-70.5],"head":[3.5,-139.4],"shR":[-60,-99.9],"elR":[-153.5,-165.9],"haR":[-188.3,-201.8],"shL":[54.1,-59.1],"elL":[161.3,-44.8],"haL":[203.2,-46.3],"hipR":[-22.4,15.3],"knR":[26.8,56.5],"ftR":[153.3,-0.8],"hipL":[18.6,48.5],"knL":[-22.7,174.7],"ftL":[-2.4,328.3]},{"rootY":-46.8,"hips":[0,0],"chest":[-4.2,-69.9],"neck":[-4.2,-69.9],"head":[3.7,-138.8],"shR":[-59,-100.8],"elR":[-151.3,-167.8],"haR":[-184.9,-204.8],"shL":[52.5,-57.1],"elL":[160.4,-38],"haL":[203.7,-37.4],"hipR":[-23.5,10.7],"knR":[24.2,38.5],"ftR":[154.7,-31.7],"hipL":[16,49.1],"knL":[-25.3,175.6],"ftL":[-0.8,331.9]},{"rootY":-54,"hips":[0,0],"chest":[-4.2,-69.5],"neck":[-4.2,-69.5],"head":[4.7,-138.3],"shR":[-57.5,-101.8],"elR":[-148.7,-169.8],"haR":[-181.6,-207.6],"shL":[51.2,-55.3],"elL":[158.7,-30.6],"haL":[203,-27.8],"hipR":[-23.7,8],"knR":[20.4,21.3],"ftR":[154.8,-57.4],"hipL":[13.9,49.4],"knL":[-25,177.2],"ftL":[3.1,335.2]},{"rootY":-59.1,"hips":[0,0],"chest":[-4,-69.5],"neck":[-4,-69.5],"head":[5.9,-138.2],"shR":[-56.5,-102.6],"elR":[-146.7,-171.1],"haR":[-178.9,-209.9],"shL":[50.7,-54.8],"elL":[157.4,-24.8],"haL":[202.2,-19.3],"hipR":[-23.7,4.3],"knR":[17.4,5.3],"ftR":[153.5,-79.3],"hipL":[12.5,49.2],"knL":[-19.9,179],"ftL":[7.9,338.3]},{"rootY":-60.4,"hips":[0,0],"chest":[-4.5,-70.6],"neck":[-4.5,-70.6],"head":[6.2,-139.2],"shR":[-55.6,-104.4],"elR":[-144.9,-173.8],"haR":[-176.5,-213.5],"shL":[49,-55.4],"elL":[154.7,-20.6],"haL":[199.6,-12.6],"hipR":[-26,-1.4],"knR":[14.7,-9.1],"ftR":[150.8,-97.7],"hipL":[9.9,48.1],"knL":[-16.1,179.4],"ftL":[10.8,339.9]},{"rootY":-60.7,"hips":[0,0],"chest":[-3.5,-71.1],"neck":[-3.5,-71.1],"head":[8,-139.5],"shR":[-53.8,-105.7],"elR":[-142,-176.4],"haR":[-172.8,-217],"shL":[49.4,-55.1],"elL":[153.4,-15.2],"haL":[198.5,-5.8],"hipR":[-24.8,-2.1],"knR":[14.5,-16.6],"ftR":[148.3,-110.5],"hipL":[10,48],"knL":[-11.8,180.8],"ftL":[12.1,342.1]},{"rootY":-59.5,"hips":[0,0],"chest":[-2.8,-71.4],"neck":[-2.8,-71.4],"head":[9.5,-139.6],"shR":[-52.8,-106.9],"elR":[-139.9,-178.7],"haR":[-169.8,-220],"shL":[50.1,-54.3],"elL":[153,-11.4],"haL":[198.1,-0.7],"hipR":[-24.3,-2.8],"knR":[16.1,-19.7],"ftR":[145.8,-119.5],"hipL":[10,47.8],"knL":[-9.4,181.4],"ftL":[11,343.3]},{"rootY":-57.6,"hips":[0,0],"chest":[-2,-71.2],"neck":[-2,-71.2],"head":[11.1,-139.1],"shR":[-52.1,-107.5],"elR":[-138.6,-180],"haR":[-167.8,-222],"shL":[51.1,-52.8],"elL":[153.4,-8.4],"haL":[198.2,3.1],"hipR":[-24.6,-3.3],"knR":[17.8,-17.9],"ftR":[144.4,-121.4],"hipL":[9.6,47.6],"knL":[-11,181.1],"ftL":[9.2,343]},{"rootY":-56.1,"hips":[0,0],"chest":[-1.1,-70.3],"neck":[-1.1,-70.3],"head":[12.5,-138],"shR":[-51.3,-107.6],"elR":[-137.3,-180],"haR":[-166.2,-222.3],"shL":[52.2,-50.3],"elL":[153.8,-4.7],"haL":[198.7,7.4],"hipR":[-23.9,-2.1],"knR":[19.8,-13.6],"ftR":[146.2,-116.4],"hipL":[10.4,47.9],"knL":[-13.8,180.7],"ftL":[8.5,342]},{"rootY":-54.7,"hips":[0,0],"chest":[-0.8,-69.8],"neck":[-0.8,-69.8],"head":[13.6,-137.1],"shR":[-51.6,-107.5],"elR":[-137.8,-179.6],"haR":[-166.9,-221.7],"shL":[52.8,-48.8],"elL":[154.4,-2.9],"haL":[199,9.7],"hipR":[-23.9,-0.7],"knR":[20,-7.6],"ftR":[149.6,-104],"hipL":[10.8,48.2],"knL":[-17,180],"ftL":[8,340.6]},{"rootY":-53.3,"hips":[0,0],"chest":[-1.3,-69.3],"neck":[-1.3,-69.3],"head":[12.9,-136.7],"shR":[-52.5,-107.2],"elR":[-139.6,-178.3],"haR":[-169.2,-220],"shL":[52.6,-47.5],"elL":[154.2,-1.7],"haL":[198.7,11.4],"hipR":[-25.4,-0.9],"knR":[19.3,-1.2],"ftR":[153.6,-86.7],"hipL":[9.9,48.3],"knL":[-20.6,179.2],"ftL":[7.2,339.2]},{"rootY":-53.3,"hips":[0,0],"chest":[-0.5,-68.8],"neck":[-0.5,-68.8],"head":[13,-136.3],"shR":[-52.4,-106.2],"elR":[-141,-175.9],"haR":[-171.6,-217],"shL":[53.9,-47.1],"elL":[155.5,-1.2],"haL":[199.4,12.3],"hipR":[-22.4,3.6],"knR":[19.7,8],"ftR":[158,-65],"hipL":[11.3,49.5],"knL":[-21.9,180],"ftL":[7.3,339.1]},{"rootY":-52.1,"hips":[0,0],"chest":[-0.3,-69.3],"neck":[-0.3,-69.3],"head":[12.2,-137.1],"shR":[-52.6,-106.5],"elR":[-143.5,-174.3],"haR":[-175.2,-214.4],"shL":[54.1,-47.5],"elL":[155.9,-2.1],"haL":[199.3,11.4],"hipR":[-22.6,3.9],"knR":[19.4,16.2],"ftR":[159.9,-44.4],"hipL":[11,49.7],"knL":[-24.4,179.4],"ftL":[6.4,338]},{"rootY":-52.3,"hips":[0,0],"chest":[0,-69.3],"neck":[0,-69.3],"head":[11.2,-137.7],"shR":[-52.8,-105.8],"elR":[-146.1,-171.3],"haR":[-179.2,-210.3],"shL":[55,-48.3],"elL":[156.6,-3],"haL":[199.7,10.4],"hipR":[-22.7,4.4],"knR":[19.4,25.6],"ftR":[160.6,-23.5],"hipL":[10.7,49.9],"knL":[-25.7,179.4],"ftL":[5.9,337.7]},{"rootY":-51,"hips":[0,0],"chest":[0,-69.7],"neck":[0,-69.7],"head":[9.7,-138.5],"shR":[-53.5,-105],"elR":[-148.9,-168],"haR":[-183.4,-205.9],"shL":[55.4,-50.1],"elL":[156.7,-4.4],"haL":[199.4,9.3],"hipR":[-23,5.3],"knR":[18.6,34.4],"ftR":[158.8,-5.2],"hipL":[10.4,50.1],"knL":[-28.2,178.7],"ftL":[3.5,337.1]},{"rootY":-50.4,"hips":[0,0],"chest":[-0.9,-70],"neck":[-0.9,-70],"head":[7.8,-139.2],"shR":[-55.1,-103.9],"elR":[-153.1,-163.7],"haR":[-189.2,-200],"shL":[55,-52.2],"elL":[154.9,-4.3],"haL":[197.2,10.2],"hipR":[-23.4,6.6],"knR":[17.8,43.5],"ftR":[155.7,13.5],"hipL":[10.2,50.4],"knL":[-32.1,177.6],"ftL":[0.6,335.4]},{"rootY":-47.9,"hips":[0,0],"chest":[-2.7,-71],"neck":[-2.7,-71],"head":[4.4,-140.4],"shR":[-58,-102.9],"elR":[-158.9,-158.5],"haR":[-196.7,-193.1],"shL":[53.6,-55.5],"elL":[151.3,-4.3],"haL":[192.9,11.8],"hipR":[-24.6,6.9],"knR":[14.9,51.7],"ftR":[149.4,31.1],"hipL":[10.2,50.4],"knL":[-36.2,175.9],"ftL":[-6.2,334.2]},{"rootY":-42.9,"hips":[0,0],"chest":[-5.1,-72.1],"neck":[-5.1,-72.1],"head":[0.3,-141.5],"shR":[-61.3,-102.1],"elR":[-164.6,-153.5],"haR":[-204.2,-186],"shL":[51.6,-58.7],"elL":[146.9,-3.3],"haL":[187.1,14.6],"hipR":[-24.9,9.7],"knR":[11.8,62],"ftR":[141.2,49.1],"hipL":[10.9,50.6],"knL":[-31,174.7],"ftL":[-18.8,332.4]},{"rootY":-34.4,"hips":[0,0],"chest":[-8.1,-73.4],"neck":[-8.1,-73.4],"head":[-4.2,-142.3],"shR":[-65.4,-101.2],"elR":[-170.9,-147.7],"haR":[-211.8,-178.2],"shL":[49.1,-62],"elL":[140.8,-1.8],"haL":[180,17.9],"hipR":[-25.7,11.6],"knR":[9,72.3],"ftR":[131.1,67.5],"hipL":[11.3,50.6],"knL":[-28.6,173.5],"ftL":[-31,329.4]},{"rootY":-24.3,"hips":[0,0],"chest":[-11,-74.3],"neck":[-11,-74.3],"head":[-9.1,-143.2],"shR":[-69.4,-99.7],"elR":[-176.7,-140.7],"haR":[-218.4,-169.4],"shL":[46.5,-65.3],"elL":[134,0.5],"haL":[172,22.2],"hipR":[-26.8,13.5],"knR":[8.3,82.4],"ftR":[119.2,88.7],"hipL":[11.2,50.8],"knL":[-31,172.6],"ftL":[-36.1,326.8]},{"rootY":-12.3,"hips":[0,0],"chest":[-12.3,-74.9],"neck":[-12.3,-74.9],"head":[-11.7,-143.7],"shR":[-71.4,-98.3],"elR":[-179.6,-133.7],"haR":[-221.7,-160.6],"shL":[45.2,-67.5],"elL":[128.1,3.6],"haL":[164.5,27.9],"hipR":[-26.8,15.3],"knR":[8.8,93],"ftR":[107.6,112.9],"hipL":[11.8,50.6],"knL":[-31,171],"ftL":[-36.5,323.2]},{"rootY":-3.5,"hips":[0,0],"chest":[-12.3,-74],"neck":[-12.3,-74],"head":[-12.6,-142.8],"shR":[-71.9,-96.3],"elR":[-180.5,-125.7],"haR":[-222.6,-150.5],"shL":[45.1,-67.3],"elL":[122.6,10.2],"haL":[157.5,37.6],"hipR":[-24.9,19.7],"knR":[6.9,110.7],"ftR":[97.5,144.4],"hipL":[15.2,49.5],"knL":[-23.6,165],"ftL":[-38.9,313.6]},{"rootY":4.2,"hips":[0,0],"chest":[-11.2,-74],"neck":[-11.2,-74],"head":[-11.6,-142.7],"shR":[-71.4,-95.8],"elR":[-179.1,-121.1],"haR":[-220.6,-144.1],"shL":[46.8,-67.5],"elL":[118.9,16],"haL":[151.9,46.9],"hipR":[-23.2,23.7],"knR":[4,127.1],"ftR":[89.2,177.4],"hipL":[19.2,47.9],"knL":[-16.2,160.9],"ftL":[-39.1,307.2]},{"rootY":6.3,"hips":[0,0],"chest":[-11.4,-74],"neck":[-11.4,-74],"head":[-11.8,-142.6],"shR":[-71.6,-95.7],"elR":[-176.6,-119.4],"haR":[-217.3,-141.7],"shL":[46.4,-67.6],"elL":[113.2,21.2],"haL":[144.3,55.6],"hipR":[-22.9,26.6],"knR":[2.3,139],"ftR":[81.2,211.5],"hipL":[20.9,46.8],"knL":[-10.6,159.6],"ftL":[-40.1,304.8]},{"rootY":9.4,"hips":[0,0],"chest":[-12.1,-75],"neck":[-12.1,-75],"head":[-12.7,-143.3],"shR":[-71.7,-97.5],"elR":[-174.1,-122.5],"haR":[-212.5,-145.6],"shL":[45.3,-67.8],"elL":[105.5,26.1],"haL":[135.1,63.7],"hipR":[-24.9,26.4],"knR":[-1.7,146.7],"ftR":[76,236.4],"hipL":[19.7,47.3],"knL":[-13.5,156.9],"ftL":[-41.4,302.1]},{"rootY":11.3,"hips":[0,0],"chest":[-11.5,-76.1],"neck":[-11.5,-76.1],"head":[-12.8,-144.2],"shR":[-70.9,-99.1],"elR":[-168.9,-128.6],"haR":[-205,-153.4],"shL":[45.8,-68.7],"elL":[99.9,29.2],"haL":[127.5,69.5],"hipR":[-25.1,27.8],"knR":[-6.3,155.3],"ftR":[73.5,256],"hipL":[19.2,47],"knL":[-16.8,154.8],"ftL":[-42.3,300.2]},{"rootY":10.4,"hips":[0,0],"chest":[-9.6,-77.3],"neck":[-9.6,-77.3],"head":[-11.7,-145.3],"shR":[-67.8,-101.3],"elR":[-162.4,-136.1],"haR":[-194.2,-163.6],"shL":[46.6,-69.2],"elL":[94.8,31.6],"haL":[120.4,74.1],"hipR":[-25.6,28.9],"knR":[-10,160.8],"ftR":[72.1,272.1],"hipL":[18.8,46.7],"knL":[-20.7,153.6],"ftL":[-42.8,300.6]},{"rootY":9.7,"hips":[0,0],"chest":[-7.5,-79.1],"neck":[-7.5,-79.1],"head":[-10.5,-147.1],"shR":[-64.8,-104.3],"elR":[-156.6,-145.9],"haR":[-183.2,-176.6],"shL":[47.8,-70.2],"elL":[90.3,32.7],"haL":[113.8,77],"hipR":[-26.1,30.3],"knR":[-11.8,164.4],"ftR":[70.9,282.7],"hipL":[18.8,46.2],"knL":[-24.8,152.9],"ftL":[-43.1,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-5.3,-80.4],"neck":[-5.3,-80.4],"head":[-8.6,-148.3],"shR":[-61.9,-106],"elR":[-150.1,-156.2],"haR":[-171.1,-190],"shL":[49.7,-71.6],"elL":[86,32.9],"haL":[107.5,78.5],"hipR":[-26.1,32.5],"knR":[-12.5,167.5],"ftR":[70.5,289.6],"hipL":[19.3,45],"knL":[-26.9,152.1],"ftL":[-43.2,301.9]},{"rootY":9.5,"hips":[0,0],"chest":[-3.1,-81.9],"neck":[-3.1,-81.9],"head":[-6.6,-149.9],"shR":[-58.9,-107.8],"elR":[-142.8,-166.7],"haR":[-158.2,-202.7],"shL":[51.2,-73.3],"elL":[82.8,32],"haL":[102.1,78.6],"hipR":[-26.2,33.7],"knR":[-14.9,169],"ftR":[68.7,293.9],"hipL":[19.1,44.2],"knL":[-27.3,151.7],"ftL":[-43.2,301.8]},{"rootY":9.5,"hips":[0,0],"chest":[-3,-82.3],"neck":[-3,-82.3],"head":[-6.2,-150.4],"shR":[-57.4,-108.5],"elR":[-136.6,-176.5],"haR":[-146.5,-214.3],"shL":[49.9,-74.3],"elL":[78.5,30.9],"haL":[94.5,78.6],"hipR":[-27.2,34.4],"knR":[-16.6,169.5],"ftR":[68.6,296.4],"hipL":[19.3,43.7],"knL":[-28.1,150],"ftL":[-44.7,301.4]},{"rootY":9.1,"hips":[0,0],"chest":[-2.2,-83.7],"neck":[-2.2,-83.7],"head":[-5.2,-151.9],"shR":[-56,-109.7],"elR":[-131.5,-185.4],"haR":[-135.4,-224.6],"shL":[50.2,-76.2],"elL":[77.2,28.4],"haL":[90.2,76.8],"hipR":[-27,34.9],"knR":[-16.4,170],"ftR":[69.5,297.8],"hipL":[18.7,43.3],"knL":[-28.7,149.7],"ftL":[-45.3,301.3]},{"rootY":10.8,"hips":[0,0],"chest":[-1.8,-84.3],"neck":[-1.8,-84.3],"head":[-4.4,-152.5],"shR":[-54.7,-110.3],"elR":[-128.4,-194],"haR":[-125.3,-233.5],"shL":[49.6,-77.1],"elL":[75.9,26.6],"haL":[86.5,75.3],"hipR":[-27,35.3],"knR":[-16.3,170.1],"ftR":[69.3,298.6],"hipL":[18.5,43],"knL":[-29.3,147.8],"ftL":[-46.9,300]},{"rootY":11.7,"hips":[0,0],"chest":[-1.6,-84.4],"neck":[-1.6,-84.4],"head":[-4,-152.8],"shR":[-53.4,-109.5],"elR":[-124.3,-198.7],"haR":[-115.6,-237.7],"shL":[48.5,-78.9],"elL":[76.3,23.7],"haL":[85.3,72.5],"hipR":[-27.1,35.2],"knR":[-15.1,170],"ftR":[68.8,300.7],"hipL":[19,43],"knL":[-28.4,146.6],"ftL":[-48.9,299.5]},{"rootY":12.4,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-4.6,-153.1],"shR":[-53.6,-109.2],"elR":[-122.8,-201.4],"haR":[-109.5,-239.1],"shL":[47.3,-79.4],"elL":[84.5,19.8],"haL":[87.6,69.4],"hipR":[-26.4,35.7],"knR":[-14.7,170.4],"ftR":[67.6,303.2],"hipL":[19.1,42.6],"knL":[-28.9,144.8],"ftL":[-51.6,298.6]},{"rootY":12.8,"hips":[0,0],"chest":[-3.6,-84.4],"neck":[-3.6,-84.4],"head":[-6.8,-153.1],"shR":[-54.6,-107.9],"elR":[-123.7,-199.8],"haR":[-107.4,-235.7],"shL":[45,-81],"elL":[90.3,15.9],"haL":[87.1,65],"hipR":[-26.9,35.4],"knR":[-17.6,170.1],"ftR":[64.4,303.9],"hipL":[18.3,42.8],"knL":[-30.3,142.8],"ftL":[-54,297.6]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-84.4],"neck":[-4.4,-84.4],"head":[-8.2,-153.1],"shR":[-53.7,-107],"elR":[-123.7,-195.1],"haR":[-106.3,-229.6],"shL":[41.7,-81.9],"elL":[93,13.9],"haL":[85.9,62.3],"hipR":[-27.8,34.3],"knR":[-19.7,169.1],"ftR":[61.4,304.9],"hipL":[17.2,43.6],"knL":[-31.2,140.8],"ftL":[-55.7,296]},{"rootY":12.7,"hips":[0,0],"chest":[-4.2,-84.6],"neck":[-4.2,-84.6],"head":[-8.5,-153.3],"shR":[-52.2,-106],"elR":[-122.7,-187.6],"haR":[-106.8,-222.4],"shL":[39.8,-83.4],"elL":[96.8,11.3],"haL":[86.7,58.9],"hipR":[-27.8,34],"knR":[-21.3,168.7],"ftR":[59.6,305.4],"hipL":[17.2,43.9],"knL":[-29.6,137.2],"ftL":[-56.3,292.3]},{"rootY":12,"hips":[0,0],"chest":[-4.1,-84.8],"neck":[-4.1,-84.8],"head":[-9.3,-153.6],"shR":[-52.1,-104.7],"elR":[-121.9,-176.4],"haR":[-109.6,-212.5],"shL":[39.7,-85.4],"elL":[101.6,7.6],"haL":[86.3,53],"hipR":[-27.9,34.5],"knR":[-22.1,168.9],"ftR":[58.5,305.9],"hipL":[17.9,43.6],"knL":[-27.9,133.9],"ftL":[-56.5,289.8]},{"rootY":11,"hips":[0,0],"chest":[-4.4,-84.6],"neck":[-4.4,-84.6],"head":[-9.7,-153.4],"shR":[-51.8,-103.5],"elR":[-119.5,-162.1],"haR":[-112.3,-200.5],"shL":[38.6,-86.5],"elL":[103.7,4.3],"haL":[85.4,48.3],"hipR":[-27.9,35.3],"knR":[-20.7,169.1],"ftR":[58,306.7],"hipL":[18.7,42.9],"knL":[-26.5,130.3],"ftL":[-57.7,287.4]},{"rootY":9.9,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-9.9,-153.4],"shR":[-51.9,-102.7],"elR":[-115.9,-144.6],"haR":[-115.1,-185.7],"shL":[37.5,-87.6],"elL":[104,-0.7],"haL":[82.5,42.3],"hipR":[-28.4,35.4],"knR":[-19.5,168.9],"ftR":[57.9,307.4],"hipL":[18.7,42.7],"knL":[-25.6,126.6],"ftL":[-61.3,283.7]},{"rootY":8.4,"hips":[0,0],"chest":[-4.6,-84.9],"neck":[-4.6,-84.9],"head":[-9.5,-153.8],"shR":[-51.5,-101.3],"elR":[-110.1,-124.6],"haR":[-117.8,-168],"shL":[37.8,-89.9],"elL":[104.4,-8.9],"haL":[79.4,32.9],"hipR":[-28,36.2],"knR":[-17.8,169.7],"ftR":[58.2,308.7],"hipL":[19.7,42.1],"knL":[-22.7,123.6],"ftL":[-63.4,279.9]},{"rootY":8,"hips":[0,0],"chest":[-3.6,-85.3],"neck":[-3.6,-85.3],"head":[-8.7,-154.2],"shR":[-50.6,-100.4],"elR":[-102.4,-105.1],"haR":[-119.6,-149.1],"shL":[38.7,-91.9],"elL":[103.2,-19.6],"haL":[74.7,21.1],"hipR":[-28.5,35.5],"knR":[-16.1,168.8],"ftR":[58.7,308.9],"hipL":[18.9,42.6],"knL":[-22.1,120.9],"ftL":[-62.9,277.5]},{"rootY":6.4,"hips":[0,0],"chest":[-2.6,-85.5],"neck":[-2.6,-85.5],"head":[-6.7,-154.5],"shR":[-48.7,-99],"elR":[-93.7,-86],"haR":[-119.8,-128.7],"shL":[38.9,-94.2],"elL":[98.8,-33.3],"haL":[67,5.9],"hipR":[-28.3,36.1],"knR":[-14.8,169.5],"ftR":[59.5,309.9],"hipL":[19.1,42.1],"knL":[-20.7,119.5],"ftL":[-60.7,276.6]},{"rootY":6,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-5,-154.4],"shR":[-48.3,-98.2],"elR":[-87,-69.5],"haR":[-119.7,-108.8],"shL":[40.3,-95.2],"elL":[93.2,-50.2],"haL":[58.4,-13.9],"hipR":[-28,37],"knR":[-13.7,170.2],"ftR":[60.5,310.2],"hipL":[20.3,41.3],"knL":[-17.9,117.2],"ftL":[-58.3,274.5]},{"rootY":6.1,"hips":[0,0],"chest":[-0.9,-85.4],"neck":[-0.9,-85.4],"head":[-2.9,-154.3],"shR":[-48.4,-97.9],"elR":[-81.5,-57.6],"haR":[-119.2,-90.8],"shL":[43.2,-95.7],"elL":[88.7,-69],"haL":[51.4,-37.6],"hipR":[-28,37.1],"knR":[-12.3,169.9],"ftR":[61.8,310],"hipL":[20.3,41.2],"knL":[-16.8,114.7],"ftL":[-55.9,272.7]},{"rootY":5.6,"hips":[0,0],"chest":[0.2,-85.4],"neck":[0.2,-85.4],"head":[-1.1,-154],"shR":[-46.7,-97],"elR":[-76.6,-48.8],"haR":[-116.3,-74.8],"shL":[44,-97],"elL":[81.8,-90.4],"haL":[42.7,-65.6],"hipR":[-27.9,37.3],"knR":[-12.1,170.2],"ftR":[62.6,309.9],"hipL":[20.9,41.1],"knL":[-14.5,113.3],"ftL":[-53.8,271.5]},{"rootY":5.3,"hips":[0,0],"chest":[1.3,-85.4],"neck":[1.3,-85.4],"head":[0.7,-153.5],"shR":[-47,-98],"elR":[-74.2,-43.7],"haR":[-113.8,-62.7],"shL":[47,-96.1],"elL":[76.8,-108.6],"haL":[36.8,-92.1],"hipR":[-27.3,37.6],"knR":[-10.7,170.4],"ftR":[63.4,310.5],"hipL":[21.4,40.9],"knL":[-12.2,111.9],"ftL":[-52,270.2]},{"rootY":5,"hips":[0,0],"chest":[1.6,-85.2],"neck":[1.6,-85.2],"head":[2.4,-152.1],"shR":[-47.8,-98.7],"elR":[-74.3,-40.3],"haR":[-112.6,-51.8],"shL":[49.2,-95.1],"elL":[71.4,-123.1],"haL":[31.3,-116.8],"hipR":[-27.3,37.4],"knR":[-9.9,170.2],"ftR":[63.8,310.6],"hipL":[21.3,41.1],"knL":[-10.5,111],"ftL":[-50.6,269.4]},{"rootY":4.8,"hips":[0,0],"chest":[1.7,-84.9],"neck":[1.7,-84.9],"head":[4.3,-150.2],"shR":[-47.4,-98.5],"elR":[-74.4,-36.7],"haR":[-108.9,-41.2],"shL":[49.3,-94.9],"elL":[66.4,-135.5],"haL":[27.4,-141.3],"hipR":[-27.1,37.3],"knR":[-9.9,170.1],"ftR":[64,310.5],"hipL":[21.1,41.2],"knL":[-9.4,110.5],"ftL":[-49.2,269.1]},{"rootY":5.1,"hips":[0,0],"chest":[1.4,-84.6],"neck":[1.4,-84.6],"head":[6.2,-148.1],"shR":[-47.2,-98],"elR":[-75.2,-34.8],"haR":[-106.1,-32.3],"shL":[48.8,-94.8],"elL":[60.3,-144.8],"haL":[23.5,-161.8],"hipR":[-27.1,37.1],"knR":[-9.6,169.7],"ftR":[64.2,310.3],"hipL":[20.8,41.4],"knL":[-8.8,109.5],"ftL":[-48.1,268.4]},{"rootY":5.5,"hips":[0,0],"chest":[1.5,-84.3],"neck":[1.5,-84.3],"head":[8.4,-145.9],"shR":[-46.4,-97.8],"elR":[-75.7,-32.6],"haR":[-102.7,-24.7],"shL":[48.6,-94.6],"elL":[53.4,-152.3],"haL":[19.9,-179.4],"hipR":[-26.5,37.2],"knR":[-9.9,169.8],"ftR":[64.3,310.3],"hipL":[20.8,41.3],"knL":[-8,109.1],"ftL":[-47.1,268]},{"rootY":5.4,"hips":[0,0],"chest":[1.5,-84.2],"neck":[1.5,-84.2],"head":[10.2,-144.3],"shR":[-45.6,-97.6],"elR":[-76.1,-30.6],"haR":[-99.8,-18.1],"shL":[48.2,-94.7],"elL":[46.3,-158.1],"haL":[16.8,-192.9],"hipR":[-26.1,37.1],"knR":[-10.7,170.1],"ftR":[64.3,310.3],"hipL":[20.8,41.4],"knL":[-6.9,109.2],"ftL":[-46.6,268]},{"rootY":5.8,"hips":[0,0],"chest":[1.3,-83.9],"neck":[1.3,-83.9],"head":[11.1,-143],"shR":[-45.6,-97.3],"elR":[-77.7,-28.1],"haR":[-98.8,-12.2],"shL":[47.9,-94.6],"elL":[39.2,-162.9],"haL":[14.1,-203.1],"hipR":[-26.3,36.8],"knR":[-10.4,169.7],"ftR":[64,310.4],"hipL":[20.8,41.8],"knL":[-6.2,109],"ftL":[-46.8,267.5]},{"rootY":6,"hips":[0,0],"chest":[1.2,-83.8],"neck":[1.2,-83.8],"head":[12.2,-141.8],"shR":[-45.1,-96.9],"elR":[-78,-25.6],"haR":[-97.6,-7.4],"shL":[47.3,-94.7],"elL":[32.9,-167.9],"haL":[11.4,-211.5],"hipR":[-26.2,36.5],"knR":[-11.4,169.6],"ftR":[63.7,310.2],"hipL":[20.9,42],"knL":[-6.1,108.9],"ftL":[-47.1,267.3]},{"rootY":6.4,"hips":[0,0],"chest":[1.2,-83.6],"neck":[1.2,-83.6],"head":[12.7,-141.1],"shR":[-44.5,-97],"elR":[-77.3,-24.1],"haR":[-96.2,-4.2],"shL":[47,-94.2],"elL":[28.5,-172.3],"haL":[9.5,-217.9],"hipR":[-26,36.3],"knR":[-12.6,169.5],"ftR":[63.2,310.1],"hipL":[20.8,42.2],"knL":[-6.3,108.6],"ftL":[-47.2,267]},{"rootY":6.1,"hips":[0,0],"chest":[1,-83],"neck":[1,-83],"head":[13.3,-140],"shR":[-44.7,-96.4],"elR":[-78.1,-22],"haR":[-96.1,-0.9],"shL":[46.8,-93.8],"elL":[25.4,-176.1],"haL":[7.9,-222.6],"hipR":[-24.9,37.1],"knR":[-12,170.1],"ftR":[63.3,310.6],"hipL":[21.2,41.6],"knL":[-5.9,109],"ftL":[-47.3,267.4]},{"rootY":6.3,"hips":[0,0],"chest":[0.6,-82.8],"neck":[0.6,-82.8],"head":[13.4,-139.8],"shR":[-44.7,-96.3],"elR":[-78.1,-21.5],"haR":[-95.7,0.6],"shL":[46.1,-93.5],"elL":[24,-179.1],"haL":[6.7,-225.9],"hipR":[-25.1,36.8],"knR":[-12.8,169.8],"ftR":[62.9,310.5],"hipL":[20.9,41.8],"knL":[-6,108.9],"ftL":[-47.2,267.4]},{"rootY":6.2,"hips":[0,0],"chest":[0.5,-82.8],"neck":[0.5,-82.8],"head":[13.4,-139.9],"shR":[-45,-96.4],"elR":[-78.6,-21],"haR":[-95.7,1.6],"shL":[46.4,-93.3],"elL":[23.4,-180.8],"haL":[5.9,-227.6],"hipR":[-24.9,36.8],"knR":[-12.4,169.8],"ftR":[63,310.5],"hipL":[20.9,41.8],"knL":[-6,109.1],"ftL":[-47.1,267.6]},{"rootY":6.4,"hips":[0,0],"chest":[0.1,-82.8],"neck":[0.1,-82.8],"head":[12.8,-140.5],"shR":[-45.3,-96.6],"elR":[-79.4,-21.5],"haR":[-96.2,1.3],"shL":[46.2,-93.1],"elL":[22.5,-181.8],"haL":[4.7,-228.6],"hipR":[-25.4,36.3],"knR":[-13.3,169.5],"ftR":[62.5,310.4],"hipL":[20.8,42.2],"knL":[-6,109.1],"ftL":[-47.2,267.5]},{"rootY":6.5,"hips":[0,0],"chest":[-0.1,-82.5],"neck":[-0.1,-82.5],"head":[11.9,-140.6],"shR":[-45.9,-96.3],"elR":[-80.5,-22.5],"haR":[-97.5,-0.3],"shL":[46.3,-92.8],"elL":[22.2,-181.4],"haL":[4,-228],"hipR":[-25.3,36.4],"knR":[-12.9,169.4],"ftR":[62.3,310.8],"hipL":[20.9,42.1],"knL":[-6.9,109],"ftL":[-47.3,267.7]},{"rootY":6.8,"hips":[0,0],"chest":[-0.5,-82.5],"neck":[-0.5,-82.5],"head":[10.9,-141.2],"shR":[-46.3,-95.6],"elR":[-82.4,-23.8],"haR":[-99.8,-2.7],"shL":[45.8,-93.7],"elL":[22.5,-182.4],"haL":[3.4,-228.7],"hipR":[-25.5,36],"knR":[-13.6,169],"ftR":[62,310.2],"hipL":[20.8,42.4],"knL":[-7.5,109.1],"ftL":[-47.5,267.9]},{"rootY":7,"hips":[0,0],"chest":[-1.1,-82.4],"neck":[-1.1,-82.4],"head":[9.6,-141.6],"shR":[-47.4,-95.5],"elR":[-84.9,-26.4],"haR":[-102.7,-6.7],"shL":[45.7,-93.5],"elL":[22.9,-182.5],"haL":[3.9,-228.8],"hipR":[-25.5,35.9],"knR":[-13.9,168.8],"ftR":[61.8,309.9],"hipL":[20.9,42.5],"knL":[-7.5,109.2],"ftL":[-48.1,267.9]},{"rootY":6.9,"hips":[0,0],"chest":[-1.7,-82.4],"neck":[-1.7,-82.4],"head":[8.6,-141.7],"shR":[-48.8,-96.2],"elR":[-88.2,-29.8],"haR":[-106.3,-11.5],"shL":[46.1,-92.7],"elL":[24.3,-181.3],"haL":[5.7,-227.8],"hipR":[-25.2,36.1],"knR":[-14.1,169],"ftR":[61.2,310.4],"hipL":[20.6,42.4],"knL":[-7.6,109.3],"ftL":[-48.4,268]},{"rootY":7.2,"hips":[0,0],"chest":[-2.5,-82.5],"neck":[-2.5,-82.5],"head":[7.4,-142.4],"shR":[-49.9,-96.8],"elR":[-90.9,-33.5],"haR":[-109.6,-16.8],"shL":[45.7,-92.3],"elL":[26.1,-181.1],"haL":[7.9,-227.8],"hipR":[-26.3,35.3],"knR":[-15.2,168.5],"ftR":[60.7,309.9],"hipL":[20.2,43],"knL":[-6.9,108.7],"ftL":[-48,267.3]},{"rootY":7,"hips":[0,0],"chest":[-3.1,-82.5],"neck":[-3.1,-82.5],"head":[6.9,-143],"shR":[-50.1,-96.7],"elR":[-92.3,-35.5],"haR":[-112.6,-20.4],"shL":[44.5,-92.4],"elL":[28.2,-180.1],"haL":[10.6,-227],"hipR":[-26.2,35.6],"knR":[-16,168.9],"ftR":[60.4,310.1],"hipL":[21,42.8],"knL":[-5,109],"ftL":[-47.5,267.3]},{"rootY":7.4,"hips":[0,0],"chest":[-4,-82.6],"neck":[-4,-82.6],"head":[6,-144],"shR":[-51.1,-97.3],"elR":[-94.7,-36.9],"haR":[-116.3,-23.1],"shL":[43.8,-92],"elL":[31.9,-176.5],"haL":[14.8,-223.7],"hipR":[-26.9,35.2],"knR":[-15.9,168.3],"ftR":[60.4,309.4],"hipL":[21,43.1],"knL":[-4.7,108.6],"ftL":[-46.7,267]},{"rootY":7.1,"hips":[0,0],"chest":[-4.4,-82.5],"neck":[-4.4,-82.5],"head":[6.2,-144.7],"shR":[-51.6,-96.7],"elR":[-94.7,-34.7],"haR":[-118.9,-22.2],"shL":[43,-92.4],"elL":[37.6,-171.6],"haL":[19.5,-218.6],"hipR":[-26.2,36],"knR":[-14.3,168.6],"ftR":[61.1,309.6],"hipL":[21.4,42.5],"knL":[-3.8,108.8],"ftL":[-46,267.2]},{"rootY":6.7,"hips":[0,0],"chest":[-5,-82.4],"neck":[-5,-82.4],"head":[6.3,-145.3],"shR":[-50.9,-96.5],"elR":[-92.2,-30.2],"haR":[-119.4,-18.4],"shL":[40.6,-92.2],"elL":[43,-162.6],"haL":[23.5,-209.1],"hipR":[-25.4,36.9],"knR":[-13,169.1],"ftR":[61.5,310.1],"hipL":[22.1,41.7],"knL":[-3.1,109.3],"ftL":[-45.5,267.7]},{"rootY":6.7,"hips":[0,0],"chest":[-6.2,-82.5],"neck":[-6.2,-82.5],"head":[5.8,-146],"shR":[-52.3,-95.6],"elR":[-90.6,-23.8],"haR":[-120,-11.9],"shL":[39.3,-93.4],"elL":[49.5,-150.7],"haL":[28.5,-196.5],"hipR":[-25.6,36.7],"knR":[-12.6,168.8],"ftR":[61.5,310.1],"hipL":[21.9,41.9],"knL":[-3.2,109.4],"ftL":[-45.5,267.9]},{"rootY":6.7,"hips":[0,0],"chest":[-6.8,-82.9],"neck":[-6.8,-82.9],"head":[6.5,-147.7],"shR":[-52.8,-95.1],"elR":[-88.5,-17],"haR":[-119.1,-3.3],"shL":[37.9,-94.6],"elL":[54.6,-134.9],"haL":[33.1,-180.2],"hipR":[-25.4,36.8],"knR":[-12.7,169],"ftR":[61.8,310.1],"hipL":[22.2,41.8],"knL":[-2.6,109.6],"ftL":[-45.7,267.8]},{"rootY":6.4,"hips":[0,0],"chest":[-7.8,-83.1],"neck":[-7.8,-83.1],"head":[5.9,-148.8],"shR":[-53.7,-94.3],"elR":[-85.5,-10.3],"haR":[-116.9,6.4],"shL":[36.3,-95.8],"elL":[58.3,-116.6],"haL":[37.2,-161.3],"hipR":[-25.2,37],"knR":[-12.6,169.3],"ftR":[62.2,310],"hipL":[22.4,41.7],"knL":[-2.5,110.2],"ftL":[-46.6,268.1]},{"rootY":6.6,"hips":[0,0],"chest":[-8.5,-83.2],"neck":[-8.5,-83.2],"head":[5.1,-149.3],"shR":[-55.6,-95],"elR":[-82.6,-5.1],"haR":[-114.4,15.3],"shL":[36.6,-95.1],"elL":[64.1,-93.8],"haL":[43.6,-136.8],"hipR":[-25,37.1],"knR":[-12.6,169.4],"ftR":[62.6,309.8],"hipL":[22.4,41.5],"knL":[-3,111],"ftL":[-48.3,268.4]},{"rootY":7,"hips":[0,0],"chest":[-9.2,-83.3],"neck":[-9.2,-83.3],"head":[3.8,-150.1],"shR":[-56.3,-94.6],"elR":[-78.9,0.2],"haR":[-109.8,24.8],"shL":[35.4,-95.7],"elL":[68.7,-70.7],"haL":[48.8,-110],"hipR":[-24.7,37.4],"knR":[-13.5,170],"ftR":[62.4,310.1],"hipL":[22.6,41.2],"knL":[-3.5,111.8],"ftL":[-50.8,268.5]},{"rootY":7.2,"hips":[0,0],"chest":[-10.2,-83.3],"neck":[-10.2,-83.3],"head":[2.3,-150.3],"shR":[-57.1,-94.5],"elR":[-75.5,4.8],"haR":[-104.4,33.9],"shL":[33.7,-95.5],"elL":[70.1,-48],"haL":[51.7,-81],"hipR":[-24.8,37.3],"knR":[-12.4,169.7],"ftR":[63.2,309.3],"hipL":[22.3,41.3],"knL":[-5.3,112.6],"ftL":[-54.2,268.6]},{"rootY":7.9,"hips":[0,0],"chest":[-10.8,-83.3],"neck":[-10.8,-83.3],"head":[1.2,-150.7],"shR":[-58.4,-94.4],"elR":[-73.1,8.3],"haR":[-99.1,42.3],"shL":[33.4,-95.5],"elL":[70.5,-29.2],"haL":[54.6,-53],"hipR":[-24.8,37.1],"knR":[-12.9,169.7],"ftR":[63.7,308.8],"hipL":[21.9,41.5],"knL":[-6.9,114.1],"ftL":[-57.3,269.2]},{"rootY":8.7,"hips":[0,0],"chest":[-11.3,-83.6],"neck":[-11.3,-83.6],"head":[0.2,-151.1],"shR":[-59.6,-94.4],"elR":[-71.4,11.5],"haR":[-93.5,49.4],"shL":[33.2,-95.7],"elL":[70.2,-13.8],"haL":[57.1,-26.5],"hipR":[-24.8,36.9],"knR":[-12.7,169.6],"ftR":[64.3,308.3],"hipL":[21.6,41.7],"knL":[-8.8,115.6],"ftL":[-60.2,269.9]},{"rootY":9.7,"hips":[0,0],"chest":[-11.5,-83.8],"neck":[-11.5,-83.8],"head":[-0.5,-151.5],"shR":[-60.3,-94.7],"elR":[-68.5,13.7],"haR":[-87.2,54.8],"shL":[33.2,-95.5],"elL":[69.4,-2.8],"haL":[58.5,-3.2],"hipR":[-24.9,36.6],"knR":[-12,169.3],"ftR":[65.3,307.4],"hipL":[21.3,42],"knL":[-11.7,118],"ftL":[-62.7,271.8]},{"rootY":10.5,"hips":[0,0],"chest":[-11,-84.4],"neck":[-11,-84.4],"head":[-0.6,-152.2],"shR":[-60.3,-95.3],"elR":[-64.9,15.1],"haR":[-81.2,58.5],"shL":[33.6,-95.8],"elL":[67.7,4.7],"haL":[59.8,16.5],"hipR":[-25.1,36.1],"knR":[-10.7,169.1],"ftR":[67.2,306.1],"hipL":[20.5,42.4],"knL":[-14.4,121.6],"ftL":[-64.6,274.7]},{"rootY":11.4,"hips":[0,0],"chest":[-10.4,-84.9],"neck":[-10.4,-84.9],"head":[0.1,-152.8],"shR":[-60.7,-96.3],"elR":[-64,16.1],"haR":[-76.8,61.2],"shL":[35,-95.4],"elL":[66.3,9.6],"haL":[61.9,33.4],"hipR":[-24.4,36.1],"knR":[-9.5,169.3],"ftR":[69.1,305.4],"hipL":[20.4,42.4],"knL":[-17.6,126.1],"ftL":[-65.2,279.1]},{"rootY":12.6,"hips":[0,0],"chest":[-9.1,-85.4],"neck":[-9.1,-85.4],"head":[1.3,-153.4],"shR":[-59.3,-97.4],"elR":[-57.7,16],"haR":[-70,62.3],"shL":[36,-95.1],"elL":[64.1,12.7],"haL":[64.6,46.6],"hipR":[-24,35.8],"knR":[-9.4,169.3],"ftR":[71.9,303.3],"hipL":[20.3,42.7],"knL":[-20.4,130.3],"ftL":[-64,283.1]},{"rootY":14.9,"hips":[0,0],"chest":[-8.1,-85.6],"neck":[-8.1,-85.6],"head":[2.1,-153.5],"shR":[-57.4,-96.9],"elR":[-53.3,17],"haR":[-64.6,64.4],"shL":[35.8,-96],"elL":[61,13],"haL":[66.3,54.7],"hipR":[-23.7,35.7],"knR":[-8.3,169.4],"ftR":[74.7,301.4],"hipL":[20.1,42.7],"knL":[-24.7,133.3],"ftL":[-61.6,286.5]},{"rootY":17.1,"hips":[0,0],"chest":[-6.1,-85.8],"neck":[-6.1,-85.8],"head":[4.2,-153.6],"shR":[-54.8,-97.3],"elR":[-47.8,16.9],"haR":[-58.7,64.9],"shL":[37.2,-96.2],"elL":[58.7,13.2],"haL":[68.7,59.5],"hipR":[-23.3,35.4],"knR":[-7.3,169.4],"ftR":[78.5,299.2],"hipL":[19.7,42.9],"knL":[-27.6,135.6],"ftL":[-57.7,288.8]},{"rootY":19.4,"hips":[0,0],"chest":[-4.2,-85.9],"neck":[-4.2,-85.9],"head":[6.6,-153.5],"shR":[-52.2,-97.1],"elR":[-44.2,17.2],"haR":[-54.4,65.5],"shL":[38.5,-96.8],"elL":[57.6,12.1],"haL":[70.4,60.2],"hipR":[-22.4,35.4],"knR":[-6.1,169.7],"ftR":[81.7,297.3],"hipL":[19.4,42.9],"knL":[-30.3,136.7],"ftL":[-54.8,289.3]},{"rootY":21.7,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.6,-153.5],"shR":[-50.7,-98],"elR":[-41.6,16.3],"haR":[-51.8,64.7],"shL":[40.2,-96.4],"elL":[58.5,11.6],"haL":[72.9,59.9],"hipR":[-23.1,35.5],"knR":[-3.1,169.6],"ftR":[85.8,294.9],"hipL":[18.9,42.9],"knL":[-32.1,137.3],"ftL":[-52.1,288.9]},{"rootY":23.6,"hips":[0,0],"chest":[-0.6,-86.2],"neck":[-0.6,-86.2],"head":[11.8,-153.4],"shR":[-48.2,-98],"elR":[-40,16.3],"haR":[-50.3,64.7],"shL":[42.4,-96.8],"elL":[61.3,9.2],"haL":[75.8,57.4],"hipR":[-22.6,35.2],"knR":[0.2,169],"ftR":[90.8,292.6],"hipL":[18,43.1],"knL":[-33.7,137.4],"ftL":[-48.3,287.3]},{"rootY":25.8,"hips":[0,0],"chest":[0.8,-86.2],"neck":[0.8,-86.2],"head":[14.1,-153.1],"shR":[-47.1,-98.8],"elR":[-40.4,15.6],"haR":[-51.3,63.8],"shL":[44.4,-95.9],"elL":[64.2,8.1],"haL":[78.2,56.5],"hipR":[-22.2,35.6],"knR":[2.6,169.1],"ftR":[94.7,290.3],"hipL":[17.5,42.8],"knL":[-35.1,136.8],"ftL":[-45.1,284.8]}]},"dance_spin":{"name":"dance_spin","fps":30,"height":520,"groundY":336,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.3,-87],"neck":[0.3,-87],"head":[-1.4,-154.3],"shR":[-66.4,-98.5],"elR":[-180.7,-82.5],"haR":[-231.4,-75.3],"shL":[71.5,-97.4],"elL":[182.3,-81.8],"haL":[232.2,-74.8],"hipR":[-32.8,35.3],"knR":[-30.4,171.1],"ftR":[-27.5,335.7],"hipL":[34,35.3],"knL":[31.6,171.1],"ftL":[28.7,335.1]},{"rootY":0.3,"hips":[0,0],"chest":[-0.4,-86.4],"neck":[-0.4,-86.4],"head":[-4.7,-154.9],"shR":[-68.2,-91.5],"elR":[-84.1,15.3],"haR":[-93.3,65.6],"shL":[69.1,-103.8],"elL":[88.1,-3.6],"haL":[95.4,45.8],"hipR":[-34.9,37.4],"knR":[-6.5,167],"ftR":[19.1,322.5],"hipL":[30.9,41.1],"knL":[20.1,174.6],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-5.8,-154.4],"shR":[-68.2,-91.6],"elR":[-83.8,15.4],"haR":[-92.7,65.7],"shL":[69,-103.9],"elL":[87.8,-3.5],"haL":[95.2,45.9],"hipR":[-35.1,37.3],"knR":[-6.8,167],"ftR":[19.1,322.4],"hipL":[30.8,41.2],"knL":[19.9,174.7],"ftL":[-39.5,279.9]},{"rootY":0.6,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-7.1,-154.5],"shR":[-68.2,-91.5],"elR":[-83.1,16.2],"haR":[-92,66.5],"shL":[69,-104.1],"elL":[87.2,-3.4],"haL":[94.9,46],"hipR":[-35.1,37.2],"knR":[-7.2,167.1],"ftR":[18.9,322.3],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-39.7,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.6,-86.4],"neck":[-0.6,-86.4],"head":[-8.3,-154.2],"shR":[-68.3,-91.4],"elR":[-82.6,16.5],"haR":[-91.2,66.8],"shL":[69,-104.3],"elL":[86.7,-3.5],"haL":[94.4,45.9],"hipR":[-35.2,37.1],"knR":[-7.6,166.9],"ftR":[18.8,322.2],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-39.9,279.5]},{"rootY":0.5,"hips":[0,0],"chest":[-0.5,-86.4],"neck":[-0.5,-86.4],"head":[-9.4,-153.8],"shR":[-68.1,-91.4],"elR":[-81.5,16.7],"haR":[-90.1,67.1],"shL":[69.2,-104.4],"elL":[86.5,-3.5],"haL":[94.1,45.9],"hipR":[-35.1,37.2],"knR":[-7.3,166.8],"ftR":[18.7,322],"hipL":[30.9,41.3],"knL":[19,174.3],"ftL":[-39.6,279.7]},{"rootY":0.7,"hips":[0,0],"chest":[-0.7,-86.4],"neck":[-0.7,-86.4],"head":[-10.7,-153.6],"shR":[-68.3,-91.5],"elR":[-80.7,16.7],"haR":[-89,67.1],"shL":[69,-104.3],"elL":[86,-3.4],"haL":[93.4,46],"hipR":[-35.2,37.2],"knR":[-7.7,167],"ftR":[18.7,322],"hipL":[30.8,41.3],"knL":[19,174.4],"ftL":[-39.5,279.8]},{"rootY":0.4,"hips":[0,0],"chest":[-0.9,-86.4],"neck":[-0.9,-86.4],"head":[-11.6,-153.3],"shR":[-68.5,-91.6],"elR":[-79.6,17.1],"haR":[-87.8,67.5],"shL":[68.8,-104.3],"elL":[85.1,-3.4],"haL":[92.4,46.1],"hipR":[-35.2,37.1],"knR":[-7.8,166.8],"ftR":[18.4,321.9],"hipL":[30.7,41.4],"knL":[18.7,174.4],"ftL":[-39.7,279.9]},{"rootY":0.4,"hips":[0,0],"chest":[-1.1,-86.4],"neck":[-1.1,-86.4],"head":[-12.2,-153.4],"shR":[-68.6,-91.7],"elR":[-78.6,17],"haR":[-86.4,67.5],"shL":[68.7,-104.1],"elL":[84.4,-3.3],"haL":[91.5,46.2],"hipR":[-35.3,37.1],"knR":[-7.8,166.9],"ftR":[18.4,321.9],"hipL":[30.6,41.4],"knL":[18.7,174.4],"ftL":[-39.9,279.6]},{"rootY":0.5,"hips":[0,0],"chest":[-1.3,-86.4],"neck":[-1.3,-86.4],"head":[-13.1,-153.1],"shR":[-68.8,-91.7],"elR":[-77.6,17],"haR":[-85.1,67.6],"shL":[68.6,-104],"elL":[83.4,-3.6],"haL":[90,46.1],"hipR":[-35.3,37],"knR":[-7.9,167],"ftR":[18.4,322],"hipL":[30.6,41.4],"knL":[18.5,174.5],"ftL":[-40.2,279.3]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.8,-152.9],"shR":[-69,-91.9],"elR":[-77,16.7],"haR":[-84,67.4],"shL":[68.3,-103.9],"elL":[82.9,-3.9],"haL":[89,45.9],"hipR":[-35.5,36.9],"knR":[-8.2,166.8],"ftR":[18.2,321.8],"hipL":[30.4,41.6],"knL":[18.2,174.6],"ftL":[-40.6,279.4]},{"rootY":0.4,"hips":[0,0],"chest":[-1.6,-86.4],"neck":[-1.6,-86.4],"head":[-13.6,-153.1],"shR":[-69.1,-91.9],"elR":[-76.4,16.7],"haR":[-83.2,67.4],"shL":[68.3,-103.8],"elL":[82.5,-4.1],"haL":[88.1,45.8],"hipR":[-35.5,36.8],"knR":[-8.4,166.9],"ftR":[18.1,321.9],"hipL":[30.3,41.6],"knL":[18.5,174.8],"ftL":[-40.9,279.2]},{"rootY":0.4,"hips":[0,0],"chest":[-1.5,-86.4],"neck":[-1.5,-86.4],"head":[-13.4,-153.1],"shR":[-69,-91.5],"elR":[-76,17.1],"haR":[-82.9,67.8],"shL":[68.4,-103.9],"elL":[82,-4.7],"haL":[87.4,45.3],"hipR":[-35.5,36.8],"knR":[-8.2,166.9],"ftR":[18.3,321.8],"hipL":[30.3,41.6],"knL":[18.8,174.9],"ftL":[-41.1,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-13.5,-153.1],"shR":[-69.2,-91.4],"elR":[-76.9,16.7],"haR":[-83.9,67.4],"shL":[68,-104],"elL":[81.3,-5.4],"haL":[86.4,44.8],"hipR":[-35.6,36.8],"knR":[-9,166.9],"ftR":[17.9,321.6],"hipL":[30.3,41.7],"knL":[18.2,174.8],"ftL":[-41.9,278.5]},{"rootY":0.8,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-12.4,-153.4],"shR":[-68.6,-91.7],"elR":[-76.9,16],"haR":[-84,66.7],"shL":[68.7,-103.7],"elL":[81.6,-5.9],"haL":[86.6,44.3],"hipR":[-35.3,37.1],"knR":[-7.2,167],"ftR":[18.9,321.8],"hipL":[30.6,41.4],"knL":[19.4,174.7],"ftL":[-41.5,278.8]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-86.5],"neck":[-1.5,-86.5],"head":[-12.4,-153.5],"shR":[-68.8,-91.7],"elR":[-77.9,15.8],"haR":[-85.3,66.4],"shL":[68.5,-103.7],"elL":[81.3,-6.4],"haL":[86.2,43.8],"hipR":[-35.3,37],"knR":[-7.5,167.1],"ftR":[18.5,321.8],"hipL":[30.6,41.5],"knL":[19.4,174.7],"ftL":[-41.6,278.4]},{"rootY":0.8,"hips":[0,0],"chest":[-1.4,-86.4],"neck":[-1.4,-86.4],"head":[-11.8,-153.6],"shR":[-68.7,-91.7],"elR":[-78.7,15],"haR":[-85.8,65.7],"shL":[68.6,-103.6],"elL":[81.4,-6.5],"haL":[86.3,43.7],"hipR":[-35.2,37.1],"knR":[-7.1,167.1],"ftR":[18.6,321.9],"hipL":[30.7,41.4],"knL":[19.5,174.5],"ftL":[-41,278.7]},{"rootY":0.6,"hips":[0,0],"chest":[-1.2,-86.4],"neck":[-1.2,-86.4],"head":[-11.1,-153.7],"shR":[-68.4,-91.7],"elR":[-79.1,14.8],"haR":[-86.1,65.5],"shL":[68.8,-103.4],"elL":[81.3,-6.9],"haL":[86.3,43.3],"hipR":[-35.1,37.2],"knR":[-6.1,166.9],"ftR":[18.9,322],"hipL":[30.7,41.2],"knL":[20,174.6],"ftL":[-40.8,279.2]},{"rootY":0.7,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.5,-153.9],"shR":[-68.3,-91.7],"elR":[-79.8,14.5],"haR":[-86.5,65.2],"shL":[69,-103.4],"elL":[81.3,-7.1],"haL":[86.4,43.1],"hipR":[-35,37.4],"knR":[-5.3,166.8],"ftR":[19.2,321.9],"hipL":[30.9,41],"knL":[19.8,174.4],"ftL":[-40.8,279.1]},{"rootY":0.6,"hips":[0,0],"chest":[-1,-86.4],"neck":[-1,-86.4],"head":[-10.1,-154.1],"shR":[-68.1,-91.8],"elR":[-80.5,14],"haR":[-87.2,64.8],"shL":[69.1,-103.2],"elL":[81.2,-6.9],"haL":[86.5,43.3],"hipR":[-34.9,37.4],"knR":[-4.7,166.5],"ftR":[18.8,321.8],"hipL":[31,41],"knL":[19.4,174.3],"ftL":[-41.3,279]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-10.6,-154.1],"shR":[-68.8,-91.8],"elR":[-82.3,13.7],"haR":[-88.6,64.5],"shL":[68.4,-103.1],"elL":[80.3,-7],"haL":[85.7,43.2],"hipR":[-35.2,37.2],"knR":[-6.7,166.9],"ftR":[18.3,321.9],"hipL":[30.6,41.2],"knL":[19.1,174.5],"ftL":[-42.3,278.6]},{"rootY":0.5,"hips":[0,0],"chest":[-2.1,-86.4],"neck":[-2.1,-86.4],"head":[-10.5,-154.2],"shR":[-69.2,-91.6],"elR":[-83.6,14],"haR":[-89.9,64.8],"shL":[68,-103.2],"elL":[80,-6.9],"haL":[85.4,43.2],"hipR":[-35.4,36.9],"knR":[-7.7,166.7],"ftR":[17.6,321.8],"hipL":[30.4,41.5],"knL":[18.5,174.7],"ftL":[-43,278.7]},{"rootY":0.4,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-9.8,-154.4],"shR":[-68.9,-91.4],"elR":[-84.2,14],"haR":[-90.4,64.9],"shL":[68.3,-103.3],"elL":[80.3,-7],"haL":[85.8,43.1],"hipR":[-35.2,37.2],"knR":[-7,166.8],"ftR":[17.8,321.9],"hipL":[30.7,41.2],"knL":[18.9,174.4],"ftL":[-42.9,278.8]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.4],"neck":[-2.2,-86.4],"head":[-10.1,-154.4],"shR":[-69.4,-91.2],"elR":[-86.2,13.9],"haR":[-92,64.8],"shL":[67.8,-103.5],"elL":[80.1,-7.3],"haL":[85.4,42.8],"hipR":[-35.5,36.9],"knR":[-8.4,166.9],"ftR":[17.5,321.8],"hipL":[30.3,41.5],"knL":[18.6,174.8],"ftL":[-43.3,278.6]},{"rootY":0.6,"hips":[0,0],"chest":[-2.4,-86.4],"neck":[-2.4,-86.4],"head":[-9.8,-154.7],"shR":[-69.5,-91.3],"elR":[-87.6,13.6],"haR":[-93.1,64.5],"shL":[67.7,-103.3],"elL":[80,-7.3],"haL":[85.4,42.9],"hipR":[-35.4,36.9],"knR":[-8.5,166.7],"ftR":[17.1,321.6],"hipL":[30.3,41.5],"knL":[18.5,174.8],"ftL":[-43.6,278.6]},{"rootY":0.7,"hips":[0,0],"chest":[-2.2,-86.3],"neck":[-2.2,-86.3],"head":[-9.3,-154.8],"shR":[-69.3,-91.4],"elR":[-88.9,13],"haR":[-94,63.9],"shL":[67.9,-103.2],"elL":[80.2,-7.3],"haL":[85.6,42.9],"hipR":[-35.4,37],"knR":[-8.2,166.7],"ftR":[17.4,321.6],"hipL":[30.4,41.4],"knL":[19,174.8],"ftL":[-43.5,278.5]},{"rootY":0.6,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.1,-154.8],"shR":[-69.2,-91.3],"elR":[-90.1,13],"haR":[-95.2,64],"shL":[68,-103.3],"elL":[80.7,-7.4],"haL":[86,42.7],"hipR":[-35.3,37],"knR":[-7.9,166.7],"ftR":[17.3,321.7],"hipL":[30.5,41.4],"knL":[19.4,174.8],"ftL":[-43.2,278.6]},{"rootY":0.9,"hips":[0,0],"chest":[-1.9,-86.3],"neck":[-1.9,-86.3],"head":[-8.7,-154.9],"shR":[-69,-91.3],"elR":[-91.6,12.8],"haR":[-96.5,63.8],"shL":[68.2,-103.4],"elL":[81.1,-7.4],"haL":[86.5,42.8],"hipR":[-35.2,37.1],"knR":[-7.5,166.9],"ftR":[17.9,322],"hipL":[30.6,41.3],"knL":[19.8,174.8],"ftL":[-42.7,278.6]},{"rootY":0.8,"hips":[0,0],"chest":[-1.7,-86.3],"neck":[-1.7,-86.3],"head":[-8.8,-154.9],"shR":[-68.8,-91.3],"elR":[-92.9,12.6],"haR":[-97.8,63.5],"shL":[68.3,-103.4],"elL":[81.6,-7.2],"haL":[87.1,43],"hipR":[-35.2,37.1],"knR":[-7.1,166.9],"ftR":[18,322],"hipL":[30.7,41.3],"knL":[19.7,174.7],"ftL":[-41.9,278.9]},{"rootY":0.8,"hips":[0,0],"chest":[-1.6,-86.3],"neck":[-1.6,-86.3],"head":[-8.6,-154.9],"shR":[-68.8,-91.1],"elR":[-94.3,12.6],"haR":[-99.1,63.5],"shL":[68.4,-103.5],"elL":[81.9,-7],"haL":[87.4,43.1],"hipR":[-35.2,37.2],"knR":[-7.3,166.9],"ftR":[17.9,322],"hipL":[30.8,41.3],"knL":[19.5,174.6],"ftL":[-41.5,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-1.8,-86.4],"neck":[-1.8,-86.4],"head":[-8.8,-155],"shR":[-69,-91.1],"elR":[-95.9,12.7],"haR":[-100.6,63.5],"shL":[68.2,-103.7],"elL":[81.8,-7],"haL":[87.5,43.1],"hipR":[-35.3,37.1],"knR":[-7.6,166.9],"ftR":[17.7,322.1],"hipL":[30.7,41.4],"knL":[19.2,174.6],"ftL":[-41.6,279.4]},{"rootY":1.1,"hips":[0,0],"chest":[-2.1,-86.3],"neck":[-2.1,-86.3],"head":[-9.5,-154.8],"shR":[-69.3,-91],"elR":[-97.1,12.8],"haR":[-101.8,63.6],"shL":[67.8,-103.9],"elL":[81.6,-6.7],"haL":[87.5,43.4],"hipR":[-35.4,37],"knR":[-7.8,166.8],"ftR":[17.4,321.9],"hipL":[30.6,41.5],"knL":[18.9,174.7],"ftL":[-42.1,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.3],"neck":[-2.4,-86.3],"head":[-9.7,-154.8],"shR":[-69.6,-90.9],"elR":[-98.2,12.7],"haR":[-102.8,63.4],"shL":[67.5,-104],"elL":[81.6,-6.6],"haL":[87.4,43.5],"hipR":[-35.5,36.9],"knR":[-7.9,166.7],"ftR":[17.1,321.8],"hipL":[30.5,41.6],"knL":[18.6,174.8],"ftL":[-42.7,278.9]},{"rootY":1.2,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-10.2,-154.9],"shR":[-69.9,-91.1],"elR":[-98.9,12.8],"haR":[-103.4,63.5],"shL":[67.2,-104],"elL":[81.6,-6.5],"haL":[87.6,43.5],"hipR":[-35.5,36.8],"knR":[-8.5,166.8],"ftR":[16.7,321.8],"hipL":[30.4,41.6],"knL":[18.5,174.7],"ftL":[-43.3,278.8]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.9,-154.7],"shR":[-70.4,-90.9],"elR":[-99.6,13.3],"haR":[-104,63.9],"shL":[66.6,-104.3],"elL":[81.3,-6.3],"haL":[87.3,43.7],"hipR":[-35.7,36.6],"knR":[-9.5,166.8],"ftR":[16.2,321.8],"hipL":[30.2,41.8],"knL":[18.2,174.9],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-10.7,-154.9],"shR":[-70.4,-90.6],"elR":[-99.4,13.9],"haR":[-103.7,64.5],"shL":[66.5,-104.7],"elL":[81.3,-6.4],"haL":[87.4,43.6],"hipR":[-35.5,36.9],"knR":[-9.4,167],"ftR":[16,321.9],"hipL":[30.5,41.6],"knL":[18.1,174.6],"ftL":[-43.9,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3,-86.4],"neck":[-3,-86.4],"head":[-11,-154.8],"shR":[-70.3,-90.4],"elR":[-98.2,14.5],"haR":[-102.7,65.1],"shL":[66.6,-104.9],"elL":[81.8,-6.5],"haL":[87.9,43.6],"hipR":[-35.4,36.9],"knR":[-9.1,166.9],"ftR":[15.9,321.8],"hipL":[30.5,41.6],"knL":[17.9,174.6],"ftL":[-43.9,278.7]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.6,-154.6],"shR":[-70.4,-90.2],"elR":[-96.9,15.3],"haR":[-101.7,65.9],"shL":[66.4,-105.2],"elL":[81.8,-6.5],"haL":[88,43.5],"hipR":[-35.5,36.9],"knR":[-9,166.6],"ftR":[15.5,321.7],"hipL":[30.5,41.6],"knL":[17.6,174.6],"ftL":[-44,279.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.4],"neck":[-3.1,-86.4],"head":[-11.9,-154.6],"shR":[-70.4,-89.9],"elR":[-94.8,16],"haR":[-99.7,66.5],"shL":[66.4,-105.4],"elL":[81.8,-6.5],"haL":[88.1,43.5],"hipR":[-35.4,36.9],"knR":[-8.7,166.6],"ftR":[15.6,321.7],"hipL":[30.5,41.6],"knL":[17.5,174.6],"ftL":[-44,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-11.7,-154.7],"shR":[-70.5,-89.8],"elR":[-92,17.2],"haR":[-97.1,67.7],"shL":[66.3,-105.6],"elL":[81.8,-6.4],"haL":[88.1,43.6],"hipR":[-35.3,37],"knR":[-8.6,166.9],"ftR":[15.7,322],"hipL":[30.6,41.5],"knL":[17.8,174.6],"ftL":[-43.8,278.8]},{"rootY":1,"hips":[0,0],"chest":[-3.2,-86.4],"neck":[-3.2,-86.4],"head":[-12.1,-154.6],"shR":[-70.5,-89.7],"elR":[-89,17.9],"haR":[-94.4,68.4],"shL":[66.3,-105.7],"elL":[81.7,-6.2],"haL":[88.1,43.7],"hipR":[-35.3,37],"knR":[-8.6,167],"ftR":[15.7,322.1],"hipL":[30.7,41.5],"knL":[17.8,174.6],"ftL":[-43.6,278.9]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-12.6,-154.5],"shR":[-70.7,-89.8],"elR":[-86,18.6],"haR":[-91.9,69.2],"shL":[66.1,-105.7],"elL":[81.5,-5.8],"haL":[87.9,44.1],"hipR":[-35.4,37],"knR":[-9.3,167.1],"ftR":[15.7,322],"hipL":[30.7,41.6],"knL":[17.7,174.6],"ftL":[-43.8,278.5]},{"rootY":1.1,"hips":[0,0],"chest":[-3.6,-86.4],"neck":[-3.6,-86.4],"head":[-13,-154.5],"shR":[-71,-89.7],"elR":[-83.6,19],"haR":[-89.4,69.6],"shL":[65.8,-105.9],"elL":[81.1,-5.9],"haL":[87.3,44.1],"hipR":[-35.4,36.9],"knR":[-10.2,167.2],"ftR":[15.3,322],"hipL":[30.6,41.7],"knL":[17.3,174.5],"ftL":[-44.3,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.5,-86.4],"neck":[-3.5,-86.4],"head":[-13.1,-154.4],"shR":[-70.9,-89.5],"elR":[-81.1,19.6],"haR":[-87.1,70.3],"shL":[65.9,-106.2],"elL":[80.9,-6.2],"haL":[86.9,43.7],"hipR":[-35.3,37],"knR":[-9.3,167.2],"ftR":[15.5,321.9],"hipL":[30.7,41.6],"knL":[17.5,174.5],"ftL":[-44.2,278.2]},{"rootY":1.1,"hips":[0,0],"chest":[-3.4,-86.4],"neck":[-3.4,-86.4],"head":[-13,-154.5],"shR":[-70.8,-89.5],"elR":[-78.6,20.2],"haR":[-84.8,70.9],"shL":[65.9,-106.2],"elL":[80.7,-6.1],"haL":[86.6,43.8],"hipR":[-35.3,37],"knR":[-9.4,167.1],"ftR":[15.6,321.9],"hipL":[30.7,41.6],"knL":[17.6,174.6],"ftL":[-44.2,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.5],"neck":[-3.7,-86.5],"head":[-13.3,-154.5],"shR":[-71.1,-89.6],"elR":[-76.8,20.4],"haR":[-83,71.2],"shL":[65.7,-106.1],"elL":[80.2,-5.7],"haL":[86.2,44.2],"hipR":[-35.5,36.8],"knR":[-9.9,167.1],"ftR":[15.5,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44.3,278.2]},{"rootY":1.2,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-13.4,-154.5],"shR":[-71.3,-89.5],"elR":[-75.2,20.6],"haR":[-81.2,71.5],"shL":[65.5,-106.1],"elL":[80,-5.6],"haL":[85.8,44.3],"hipR":[-35.5,36.8],"knR":[-10.1,167.1],"ftR":[15.7,321.9],"hipL":[30.5,41.7],"knL":[17.4,174.7],"ftL":[-44,278.7]},{"rootY":1.1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.7],"elR":[-73.4,20.8],"haR":[-79.3,71.6],"shL":[65.5,-105.9],"elL":[79.9,-5.3],"haL":[85.5,44.6],"hipR":[-35.6,36.7],"knR":[-9.9,167],"ftR":[15.8,321.9],"hipL":[30.4,41.8],"knL":[17.5,174.9],"ftL":[-43.8,279.1]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13.4,-154.6],"shR":[-71.4,-89.8],"elR":[-71.9,20.7],"haR":[-77.5,71.6],"shL":[65.5,-105.9],"elL":[79.7,-5.1],"haL":[85.2,44.9],"hipR":[-35.7,36.6],"knR":[-9.9,166.9],"ftR":[15.9,321.8],"hipL":[30.2,41.9],"knL":[17.9,175.1],"ftL":[-43.5,279.3]},{"rootY":1.1,"hips":[0,0],"chest":[-4.1,-86.5],"neck":[-4.1,-86.5],"head":[-13.6,-154.6],"shR":[-71.6,-89.8],"elR":[-70.8,21],"haR":[-76.2,71.9],"shL":[65.3,-105.9],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.8,166.9],"ftR":[15.4,321.8],"hipL":[30,42.1],"knL":[17.6,175.2],"ftL":[-43.6,279.2]},{"rootY":1.3,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.6],"shR":[-71.5,-89.6],"elR":[-69.9,21.3],"haR":[-75,72.2],"shL":[65.4,-106],"elL":[79.4,-5.2],"haL":[84.8,44.8],"hipR":[-36,36.4],"knR":[-11.7,166.9],"ftR":[15.6,321.9],"hipL":[30.1,42.1],"knL":[17.4,175.1],"ftL":[-43.1,279.1]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-13.3,-154.7],"shR":[-71.5,-90],"elR":[-69,21.1],"haR":[-74,71.9],"shL":[65.5,-105.7],"elL":[79.6,-5.1],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.4,166.7],"ftR":[15.5,321.8],"hipL":[30.2,42],"knL":[17.4,175],"ftL":[-42.4,279.5]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-13,-154.7],"shR":[-71.4,-89.8],"elR":[-68.5,21.4],"haR":[-73.4,72.3],"shL":[65.5,-105.8],"elL":[79.7,-5.2],"haL":[84.9,44.9],"hipR":[-35.9,36.5],"knR":[-11.1,166.7],"ftR":[15.6,321.9],"hipL":[30.3,42],"knL":[17.5,175],"ftL":[-42,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.9,-154.8],"shR":[-71.6,-89.9],"elR":[-68.6,21.4],"haR":[-73.6,72.2],"shL":[65.4,-105.7],"elL":[79.8,-5.2],"haL":[85,44.8],"hipR":[-36.1,36.3],"knR":[-11.6,166.6],"ftR":[15.5,321.9],"hipL":[30,42.2],"knL":[17.4,175.2],"ftL":[-42.1,279.8]},{"rootY":0.7,"hips":[0,0],"chest":[-4,-86.5],"neck":[-4,-86.5],"head":[-12.8,-154.9],"shR":[-71.6,-90.1],"elR":[-68.8,21.2],"haR":[-73.9,72],"shL":[65.4,-105.6],"elL":[79.9,-5.1],"haL":[85.1,44.9],"hipR":[-36.1,36.3],"knR":[-11.9,166.5],"ftR":[15.4,321.8],"hipL":[30,42.2],"knL":[17.3,175.2],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.9,-86.5],"neck":[-3.9,-86.5],"head":[-12.7,-154.9],"shR":[-71.5,-90.2],"elR":[-69.2,21],"haR":[-74.6,71.8],"shL":[65.6,-105.4],"elL":[80,-5],"haL":[85.4,45.1],"hipR":[-36.2,36.2],"knR":[-12.1,166.5],"ftR":[15.5,321.8],"hipL":[30,42.2],"knL":[17.4,175.4],"ftL":[-42.1,280]},{"rootY":1,"hips":[0,0],"chest":[-3.8,-86.5],"neck":[-3.8,-86.5],"head":[-12.4,-154.9],"shR":[-71.4,-90.3],"elR":[-69.8,20.8],"haR":[-75.5,71.6],"shL":[65.7,-105.3],"elL":[80.2,-4.9],"haL":[85.6,45.1],"hipR":[-36.1,36.3],"knR":[-11.7,166.4],"ftR":[15.7,321.8],"hipL":[30.1,42.2],"knL":[17.5,175.4],"ftL":[-42,280]},{"rootY":0.8,"hips":[0,0],"chest":[-3.6,-86.6],"neck":[-3.6,-86.6],"head":[-12.1,-155],"shR":[-71.2,-90.3],"elR":[-70.6,20.7],"haR":[-76.2,71.5],"shL":[65.8,-105.4],"elL":[80.3,-5.1],"haL":[85.7,45],"hipR":[-35.8,36.6],"knR":[-10.7,166.5],"ftR":[15.7,321.8],"hipL":[30.4,42],"knL":[17.7,175],"ftL":[-41.9,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.4,-86.5],"neck":[-3.4,-86.5],"head":[-11.9,-154.9],"shR":[-71,-90.2],"elR":[-71.7,20.4],"haR":[-77.3,71.2],"shL":[66.1,-105.4],"elL":[80.7,-5.1],"haL":[86,44.9],"hipR":[-35.7,36.7],"knR":[-10.2,166.7],"ftR":[16.2,321.9],"hipL":[30.4,41.9],"knL":[18,175.1],"ftL":[-41.7,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.5],"neck":[-3.1,-86.5],"head":[-11.8,-154.9],"shR":[-70.8,-90.2],"elR":[-73.3,20.1],"haR":[-78.8,70.9],"shL":[66.3,-105.4],"elL":[81,-5.1],"haL":[86.1,45],"hipR":[-35.7,36.6],"knR":[-10.3,166.7],"ftR":[16.3,321.9],"hipL":[30.4,41.9],"knL":[17.9,175.1],"ftL":[-41.8,279.8]},{"rootY":1.2,"hips":[0,0],"chest":[-3.1,-86.6],"neck":[-3.1,-86.6],"head":[-11.9,-154.9],"shR":[-70.7,-90.3],"elR":[-75.3,19.7],"haR":[-81,70.6],"shL":[66.4,-105.3],"elL":[81,-5.1],"haL":[86,45],"hipR":[-35.7,36.6],"knR":[-10.6,166.7],"ftR":[15.9,322],"hipL":[30.4,41.9],"knL":[17.8,175.2],"ftL":[-42,279.6]},{"rootY":1.3,"hips":[0,0],"chest":[-3,-86.5],"neck":[-3,-86.5],"head":[-11.9,-154.9],"shR":[-70.6,-90.3],"elR":[-77.6,19.3],"haR":[-83.4,70.2],"shL":[66.5,-105.2],"elL":[81.1,-4.9],"haL":[86,45.2],"hipR":[-35.7,36.6],"knR":[-11.2,166.7],"ftR":[15.7,321.9],"hipL":[30.4,41.9],"knL":[17.6,175.2],"ftL":[-42.4,279.4]},{"rootY":1.4,"hips":[0,0],"chest":[-3.3,-86.5],"neck":[-3.3,-86.5],"head":[-12.2,-154.8],"shR":[-70.9,-90.4],"elR":[-80.9,18.6],"haR":[-86.8,69.5],"shL":[66.2,-105.1],"elL":[80.7,-4.9],"haL":[85.6,45.2],"hipR":[-35.9,36.4],"knR":[-12,166.7],"ftR":[15.1,321.9],"hipL":[30.1,42.1],"knL":[17.1,175.3],"ftL":[-43.1,279.1]},{"rootY":1.3,"hips":[0,0],"chest":[-3.2,-86.6],"neck":[-3.2,-86.6],"head":[-12.1,-154.9],"shR":[-70.8,-90.6],"elR":[-83.6,17.8],"haR":[-89.6,68.7],"shL":[66.4,-104.9],"elL":[80.7,-4.7],"haL":[85.7,45.4],"hipR":[-35.9,36.4],"knR":[-11.9,166.7],"ftR":[15.2,321.9],"hipL":[30.2,42.1],"knL":[17.2,175.3],"ftL":[-43.3,279.2]},{"rootY":1.2,"hips":[0,0],"chest":[-2.8,-86.5],"neck":[-2.8,-86.5],"head":[-11.6,-154.9],"shR":[-70.3,-90.9],"elR":[-85.9,17.2],"haR":[-92.5,68],"shL":[66.9,-104.5],"elL":[81.2,-4.5],"haL":[86.2,45.6],"hipR":[-35.8,36.6],"knR":[-11,166.6],"ftR":[15.8,321.9],"hipL":[30.3,41.9],"knL":[17.9,175.4],"ftL":[-43,279.3]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-88.4,16.6],"haR":[-95.7,67.3],"shL":[67.2,-104.3],"elL":[81.8,-4.3],"haL":[86.7,45.8],"hipR":[-35.6,36.8],"knR":[-10.2,166.6],"ftR":[16,322.1],"hipL":[30.4,41.7],"knL":[18.2,175.3],"ftL":[-42.9,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.7,-86.5],"neck":[-2.7,-86.5],"head":[-11.3,-154.9],"shR":[-70.2,-91.1],"elR":[-91.6,15.8],"haR":[-99.3,66.4],"shL":[67.1,-104.1],"elL":[81.9,-4.2],"haL":[86.9,45.9],"hipR":[-35.7,36.6],"knR":[-10.6,166.5],"ftR":[15.8,322.1],"hipL":[30.3,41.9],"knL":[18.1,175.5],"ftL":[-43.1,279.7]},{"rootY":1,"hips":[0,0],"chest":[-2.5,-86.5],"neck":[-2.5,-86.5],"head":[-11,-154.9],"shR":[-70.1,-91],"elR":[-94.3,15.1],"haR":[-102.8,65.6],"shL":[67.2,-104.2],"elL":[82.1,-4.1],"haL":[87.3,46],"hipR":[-35.7,36.7],"knR":[-10.5,166.6],"ftR":[15.9,322.2],"hipL":[30.3,41.8],"knL":[18.1,175.4],"ftL":[-43,279.8]},{"rootY":1,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.1,-154.8],"shR":[-70.1,-91.3],"elR":[-96.9,14],"haR":[-106.2,64.3],"shL":[67.2,-103.8],"elL":[82.6,-4],"haL":[87.7,46.1],"hipR":[-35.7,36.7],"knR":[-10.3,166.4],"ftR":[16.1,322.1],"hipL":[30.3,41.8],"knL":[18,175.5],"ftL":[-42.8,280]},{"rootY":0.7,"hips":[0,0],"chest":[-2.5,-86.4],"neck":[-2.5,-86.4],"head":[-11,-154.9],"shR":[-70,-91.2],"elR":[-99.4,13.3],"haR":[-109.5,63.5],"shL":[67.3,-103.9],"elL":[82.6,-4.4],"haL":[87.9,45.7],"hipR":[-35.6,36.7],"knR":[-9.9,166.2],"ftR":[15.6,321.9],"hipL":[30.4,41.8],"knL":[18.1,175.4],"ftL":[-42.5,279.9]},{"rootY":0.7,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-154.9],"shR":[-69.8,-91],"elR":[-101.7,12.6],"haR":[-112.6,62.7],"shL":[67.4,-104.1],"elL":[82.8,-4.6],"haL":[88.1,45.4],"hipR":[-35.6,36.8],"knR":[-9.8,166.3],"ftR":[16,321.9],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.9,280.2]},{"rootY":0.6,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-11.2,-154.9],"shR":[-70.1,-90.9],"elR":[-103.5,12.1],"haR":[-115.2,62],"shL":[67.2,-104],"elL":[82.7,-4.8],"haL":[88,45.3],"hipR":[-35.6,36.8],"knR":[-10,166.3],"ftR":[15.8,322],"hipL":[30.5,41.7],"knL":[18.6,175.4],"ftL":[-41.6,280.3]},{"rootY":0.4,"hips":[0,0],"chest":[-2.8,-86.3],"neck":[-2.8,-86.3],"head":[-11.5,-154.9],"shR":[-70.3,-90.6],"elR":[-104,12.3],"haR":[-116.8,61.9],"shL":[66.9,-104.2],"elL":[82.2,-4.8],"haL":[87.8,45.3],"hipR":[-35.7,36.7],"knR":[-10.7,166],"ftR":[15.4,321.9],"hipL":[30.4,41.8],"knL":[18.6,175.5],"ftL":[-41.7,280.6]},{"rootY":0.6,"hips":[0,0],"chest":[-3,-86.3],"neck":[-3,-86.3],"head":[-11.9,-154.8],"shR":[-70.5,-90.5],"elR":[-103.3,12.9],"haR":[-116.9,62.2],"shL":[66.7,-104.2],"elL":[82.1,-5.1],"haL":[87.5,45],"hipR":[-35.7,36.7],"knR":[-10.6,166.2],"ftR":[15.4,322],"hipL":[30.4,41.7],"knL":[18.8,175.5],"ftL":[-42,280.4]},{"rootY":0.8,"hips":[0,0],"chest":[-3.1,-86.3],"neck":[-3.1,-86.3],"head":[-12.1,-154.8],"shR":[-70.5,-90.3],"elR":[-101.1,13.8],"haR":[-114.8,63],"shL":[66.6,-104.2],"elL":[81.9,-5.5],"haL":[87.2,44.7],"hipR":[-35.7,36.7],"knR":[-10.5,166.2],"ftR":[15.6,322.1],"hipL":[30.5,41.7],"knL":[19.3,175.7],"ftL":[-42.1,280.1]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.2],"neck":[-3.3,-86.2],"head":[-12.3,-154.8],"shR":[-70.7,-90.3],"elR":[-97.7,14.9],"haR":[-111,64],"shL":[66.5,-104.2],"elL":[81.5,-5.3],"haL":[86.9,44.8],"hipR":[-35.6,36.8],"knR":[-10,166.1],"ftR":[15.7,322.1],"hipL":[30.5,41.7],"knL":[19.6,175.7],"ftL":[-42.1,280.1]},{"rootY":1.2,"hips":[0,0],"chest":[-3.7,-86.3],"neck":[-3.7,-86.3],"head":[-12.9,-154.9],"shR":[-71,-90.2],"elR":[-92.7,16.8],"haR":[-105.8,65.7],"shL":[66,-104.4],"elL":[80.9,-5.5],"haL":[86,44.6],"hipR":[-35.6,36.7],"knR":[-10.7,166.3],"ftR":[15.3,322],"hipL":[30.7,41.8],"knL":[19.1,175.5],"ftL":[-42.7,278.9]},{"rootY":0.9,"hips":[0,0],"chest":[-3.7,-86.2],"neck":[-3.7,-86.2],"head":[-12.8,-154.8],"shR":[-70.9,-90.4],"elR":[-86.6,18.1],"haR":[-96.5,67.6],"shL":[66.1,-104.1],"elL":[80.3,-5],"haL":[85.4,45.1],"hipR":[-35.5,36.9],"knR":[-9.7,166.2],"ftR":[15.8,322.1],"hipL":[30.7,41.7],"knL":[19.7,175.7],"ftL":[-42.5,279.6]},{"rootY":0.8,"hips":[0,0],"chest":[-4.2,-86.2],"neck":[-4.2,-86.2],"head":[-13.3,-154.8],"shR":[-71.4,-90.6],"elR":[-81.4,19.5],"haR":[-88,69.4],"shL":[65.7,-104],"elL":[79.6,-4.8],"haL":[84.4,45.4],"hipR":[-35.6,36.7],"knR":[-11,166.1],"ftR":[15.2,321.9],"hipL":[30.6,41.9],"knL":[19.2,175.7],"ftL":[-43,279.2]},{"rootY":0.6,"hips":[0,0],"chest":[-3.3,-86.1],"neck":[-3.3,-86.1],"head":[-12.5,-154.7],"shR":[-70.5,-90.5],"elR":[-75.7,20.6],"haR":[-80,70.8],"shL":[66.5,-103.9],"elL":[80.1,-4.4],"haL":[84.6,45.7],"hipR":[-35.2,37.1],"knR":[-8.6,165.9],"ftR":[16.2,322.1],"hipL":[31,41.5],"knL":[20.2,175.6],"ftL":[-42.3,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.2,-86.3],"neck":[-3.2,-86.3],"head":[-12.7,-154.8],"shR":[-70.3,-90.2],"elR":[-72,21.8],"haR":[-74.2,72.2],"shL":[66.6,-104.3],"elL":[79.8,-4.7],"haL":[84,45.5],"hipR":[-35.4,37],"knR":[-9.5,166],"ftR":[16.2,322],"hipL":[30.8,41.6],"knL":[20.2,175.9],"ftL":[-42.6,279.9]},{"rootY":0.5,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-12.8,-154.8],"shR":[-70.5,-90.1],"elR":[-70.8,21.7],"haR":[-73.5,72.4],"shL":[66.5,-104.4],"elL":[80.3,-4.6],"haL":[83.9,45.7],"hipR":[-35.4,36.9],"knR":[-9.6,165.9],"ftR":[15.9,322],"hipL":[30.7,41.7],"knL":[20.1,175.9],"ftL":[-43,279.9]},{"rootY":0.8,"hips":[0,0],"chest":[-3.3,-86.3],"neck":[-3.3,-86.3],"head":[-13.1,-154.8],"shR":[-70.6,-89.9],"elR":[-73.2,21.4],"haR":[-77,72.3],"shL":[66.4,-104.7],"elL":[80.8,-4.8],"haL":[83.8,45.4],"hipR":[-35.7,36.6],"knR":[-11,165.8],"ftR":[15.5,321.8],"hipL":[30.4,42],"knL":[19.4,176.1],"ftL":[-43.9,279.2]},{"rootY":0.8,"hips":[0,0],"chest":[-2.6,-86.3],"neck":[-2.6,-86.3],"head":[-13,-154.8],"shR":[-69.9,-90.2],"elR":[-79.9,19.8],"haR":[-82.6,71],"shL":[67.1,-104.6],"elL":[82.9,-4.6],"haL":[85.3,45.7],"hipR":[-35.4,36.9],"knR":[-9.7,165.8],"ftR":[16.1,322],"hipL":[30.7,41.7],"knL":[19.9,176.1],"ftL":[-44,279.8]},{"rootY":0.6,"hips":[0,0],"chest":[-2.7,-86.4],"neck":[-2.7,-86.4],"head":[-13.5,-154.8],"shR":[-70.1,-90],"elR":[-94.4,17],"haR":[-94,67.7],"shL":[66.9,-104.9],"elL":[84.4,-5.2],"haL":[86.2,45.1],"hipR":[-35.6,36.7],"knR":[-10.8,165.6],"ftR":[15.3,321.9],"hipL":[30.5,41.9],"knL":[19.7,176.4],"ftL":[-45,279.4]},{"rootY":0.9,"hips":[0,0],"chest":[-2.6,-86.4],"neck":[-2.6,-86.4],"head":[-14.2,-154.7],"shR":[-70.2,-89.8],"elR":[-111.7,11.8],"haR":[-107.5,61.1],"shL":[66.9,-105.3],"elL":[86.6,-6.4],"haL":[87.7,43.9],"hipR":[-35.7,36.6],"knR":[-11.6,165.7],"ftR":[14.9,322],"hipL":[30.4,42],"knL":[19.5,176.5],"ftL":[-46.3,278.7]},{"rootY":1.2,"hips":[0,0],"chest":[-2.4,-86.5],"neck":[-2.4,-86.5],"head":[-14.7,-154.6],"shR":[-70.2,-89.3],"elR":[-129.7,3.6],"haR":[-121.5,51.2],"shL":[66.7,-106],"elL":[89.9,-7.8],"haL":[89.8,42.5],"hipR":[-35.8,36.5],"knR":[-11.6,165.6],"ftR":[14.7,322],"hipL":[30.3,42.1],"knL":[19.3,176.6],"ftL":[-47.4,278.4]},{"rootY":1.2,"hips":[0,0],"chest":[-2.3,-86.6],"neck":[-2.3,-86.6],"head":[-15.3,-154.4],"shR":[-70.2,-88.7],"elR":[-144.9,-6.2],"haR":[-131.9,38.3],"shL":[66.4,-106.8],"elL":[93.5,-9.7],"haL":[92.3,40.6],"hipR":[-36,36.2],"knR":[-11.8,165],"ftR":[14.1,321.6],"hipL":[30.1,42.3],"knL":[18.8,176.7],"ftL":[-48.1,278.4]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-15.9,-154.2],"shR":[-70.1,-87.8],"elR":[-155.4,-14.3],"haR":[-137.5,25],"shL":[66.1,-107.9],"elL":[97.1,-11.5],"haL":[95.3,38.7],"hipR":[-36.4,36],"knR":[-12.6,164.8],"ftR":[14.2,321.3],"hipL":[29.8,42.5],"knL":[18.4,177],"ftL":[-48,278.3]},{"rootY":1.8,"hips":[0,0],"chest":[-2.1,-86.6],"neck":[-2.1,-86.6],"head":[-16.7,-153.9],"shR":[-70.1,-87.7],"elR":[-159.9,-18.8],"haR":[-139.6,11.3],"shL":[65.9,-108.2],"elL":[99.5,-11.7],"haL":[97.6,38.5],"hipR":[-36.5,35.9],"knR":[-13.4,164.8],"ftR":[14.6,321.3],"hipL":[29.7,42.6],"knL":[17.9,177],"ftL":[-47,278.5]},{"rootY":1.7,"hips":[0,0],"chest":[-1.9,-86.6],"neck":[-1.9,-86.6],"head":[-17.1,-153.7],"shR":[-69.8,-87.7],"elR":[-159.1,-17],"haR":[-138.2,-1.3],"shL":[66.1,-108.3],"elL":[101.1,-10.9],"haL":[99.4,39.2],"hipR":[-36.5,35.9],"knR":[-13.7,164.7],"ftR":[15,321.1],"hipL":[29.8,42.6],"knL":[17.2,176.8],"ftL":[-45.1,278.9]},{"rootY":1.9,"hips":[0,0],"chest":[-1.3,-86.5],"neck":[-1.3,-86.5],"head":[-17,-153.5],"shR":[-69.3,-87.9],"elR":[-152.5,-9.3],"haR":[-131.7,-10.8],"shL":[66.7,-108.4],"elL":[101.5,-10.2],"haL":[100,39.7],"hipR":[-36.6,35.7],"knR":[-14.8,164.9],"ftR":[15.8,321.1],"hipL":[29.6,42.7],"knL":[17,177],"ftL":[-43.3,279.3]},{"rootY":1.5,"hips":[0,0],"chest":[-1,-86.5],"neck":[-1,-86.5],"head":[-16.9,-153.6],"shR":[-69,-88],"elR":[-139.9,2.9],"haR":[-121.3,-15.5],"shL":[67.2,-108.4],"elL":[101.5,-9.5],"haL":[99.8,40.2],"hipR":[-36.7,35.6],"knR":[-15,164.8],"ftR":[16.4,321],"hipL":[29.6,42.8],"knL":[16.9,177.1],"ftL":[-41.6,280.1]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.4],"neck":[-0.8,-86.4],"head":[-16.2,-154.1],"shR":[-68.8,-87.5],"elR":[-123.4,14],"haR":[-108.5,-17.6],"shL":[67.2,-109],"elL":[100.6,-9.4],"haL":[98.9,40.1],"hipR":[-36.7,35.6],"knR":[-16,164.9],"ftR":[17.3,320.8],"hipL":[29.5,42.8],"knL":[17.6,177.2],"ftL":[-40.5,280.1]},{"rootY":1.9,"hips":[0,0],"chest":[-0.2,-86.3],"neck":[-0.2,-86.3],"head":[-15.5,-154.2],"shR":[-68.2,-86.8],"elR":[-108.1,19.6],"haR":[-96.7,-20.4],"shL":[67.7,-109.7],"elL":[100.3,-9.3],"haL":[99.2,40.2],"hipR":[-36.4,36],"knR":[-14.7,164.8],"ftR":[18.9,320.8],"hipL":[29.9,42.5],"knL":[18.8,177.2],"ftL":[-39.3,280.1]},{"rootY":2.2,"hips":[0,0],"chest":[-0.6,-86.3],"neck":[-0.6,-86.3],"head":[-16,-153.9],"shR":[-68.5,-85.8],"elR":[-96.1,19],"haR":[-87.9,-27.4],"shL":[67,-110.7],"elL":[99.1,-9.7],"haL":[98.8,39.9],"hipR":[-36.5,35.9],"knR":[-15.3,165.1],"ftR":[19.4,320.8],"hipL":[29.9,42.5],"knL":[19.2,177.2],"ftL":[-38.8,280]},{"rootY":1.8,"hips":[0,0],"chest":[-0.6,-86.1],"neck":[-0.6,-86.1],"head":[-15.8,-153.3],"shR":[-68.5,-84.2],"elR":[-87.8,13.3],"haR":[-82.2,-36.3],"shL":[66.4,-112.3],"elL":[98.7,-11.2],"haL":[98.8,38.4],"hipR":[-36.3,36.1],"knR":[-14.6,165.1],"ftR":[20,320.9],"hipL":[30.1,42.4],"knL":[19.8,177],"ftL":[-37.9,280.6]},{"rootY":1.7,"hips":[0,0],"chest":[-0.8,-86.1],"neck":[-0.8,-86.1],"head":[-16.1,-152],"shR":[-68.7,-82.5],"elR":[-82.9,2.5],"haR":[-78.5,-48.4],"shL":[65.6,-113.8],"elL":[99.1,-12.9],"haL":[98.7,36.6],"hipR":[-36.2,36.2],"knR":[-12.7,164.9],"ftR":[20.4,320.9],"hipL":[30.2,42.3],"knL":[20.4,177],"ftL":[-37.3,280.9]},{"rootY":1.4,"hips":[0,0],"chest":[-2.1,-86],"neck":[-2.1,-86],"head":[-17.4,-151],"shR":[-69.8,-81.8],"elR":[-80.4,-14.2],"haR":[-76.6,-65.1],"shL":[64.1,-114.5],"elL":[98.6,-13.9],"haL":[98.1,35.5],"hipR":[-35.9,36.5],"knR":[-11.6,165.2],"ftR":[20,321.4],"hipL":[30.6,42],"knL":[20.8,176.6],"ftL":[-37.6,281]},{"rootY":1,"hips":[0,0],"chest":[-3.4,-86],"neck":[-3.4,-86],"head":[-18.6,-149.4],"shR":[-71,-81.3],"elR":[-79.9,-33.7],"haR":[-76.1,-83.5],"shL":[62.6,-115],"elL":[98.1,-14.9],"haL":[97.7,34.5],"hipR":[-35.8,36.6],"knR":[-11.1,165.4],"ftR":[19.8,321.7],"hipL":[30.6,42],"knL":[21.2,176.5],"ftL":[-37.9,281.3]},{"rootY":0.7,"hips":[0,0],"chest":[-4.3,-85.9],"neck":[-4.3,-85.9],"head":[-19.3,-147.9],"shR":[-71.7,-80.2],"elR":[-79.6,-54.1],"haR":[-75.1,-102.7],"shL":[61.3,-115.9],"elL":[97.6,-16.4],"haL":[97.6,33.1],"hipR":[-35,37.3],"knR":[-8.7,165.8],"ftR":[20,322.2],"hipL":[31.3,41.4],"knL":[21.7,175.9],"ftL":[-37.7,281.5]},{"rootY":0.4,"hips":[0,0],"chest":[-5.4,-85.8],"neck":[-5.4,-85.8],"head":[-20.4,-146.7],"shR":[-72.6,-79.8],"elR":[-78.8,-74.5],"haR":[-73.7,-121.9],"shL":[59.9,-116.1],"elL":[96.5,-17.2],"haL":[97.2,32.2],"hipR":[-34.9,37.3],"knR":[-8.1,165.9],"ftR":[20.2,322.6],"hipL":[31.4,41.3],"knL":[21.8,175.9],"ftL":[-38.1,282]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.5,-85.6],"neck":[-6.5,-85.6],"head":[-21.7,-144.8],"shR":[-73.5,-79.6],"elR":[-77.5,-93],"haR":[-72,-139.1],"shL":[58.6,-116],"elL":[95.8,-18.1],"haL":[97.3,31.3],"hipR":[-34.7,37.5],"knR":[-7.4,166],"ftR":[20,322.8],"hipL":[31.5,41.2],"knL":[21.6,175.8],"ftL":[-38.9,282.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-8,-85.4],"neck":[-8,-85.4],"head":[-22.7,-143.5],"shR":[-74.7,-78.6],"elR":[-76.1,-108.1],"haR":[-70,-153.8],"shL":[56.6,-116.6],"elL":[94.1,-19.5],"haL":[96.5,30],"hipR":[-34.7,37.4],"knR":[-8.9,166.3],"ftR":[19.2,322.9],"hipL":[31.4,41.3],"knL":[20.8,175.6],"ftL":[-40.1,281.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-9,-85.2],"neck":[-9,-85.2],"head":[-23.7,-142.3],"shR":[-75.3,-77.8],"elR":[-73.5,-120.5],"haR":[-67.4,-166.1],"shL":[55.1,-117],"elL":[93.2,-20.7],"haL":[96.4,28.8],"hipR":[-34.9,37.3],"knR":[-9.1,166.4],"ftR":[19.4,323.1],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-40.6,282.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.2,-85],"neck":[-9.2,-85],"head":[-24.1,-141.3],"shR":[-75.2,-77.1],"elR":[-69.6,-129.5],"haR":[-63.8,-175.6],"shL":[54.6,-117.4],"elL":[93.4,-22],"haL":[97.4,27.5],"hipR":[-34.1,38],"knR":[-6.3,166.5],"ftR":[20.1,323.4],"hipL":[31.8,40.7],"knL":[21.9,175.3],"ftL":[-40.1,282.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.9,-84.8],"neck":[-9.9,-84.8],"head":[-24.7,-140.6],"shR":[-75.8,-76.7],"elR":[-65.3,-136.2],"haR":[-60.1,-183.3],"shL":[53.6,-117.3],"elL":[93.5,-23.4],"haL":[97.8,26.1],"hipR":[-33.9,38.1],"knR":[-5.2,166.5],"ftR":[20.5,323.4],"hipL":[32,40.6],"knL":[22.6,175.2],"ftL":[-39.5,282.6]},{"rootY":-0.4,"hips":[0,0],"chest":[-10.6,-84.6],"neck":[-10.6,-84.6],"head":[-25.6,-139.9],"shR":[-76.2,-76.6],"elR":[-60.5,-140.5],"haR":[-56,-188.9],"shL":[52.7,-117.1],"elL":[94.2,-24.7],"haL":[98.5,24.7],"hipR":[-34,38.1],"knR":[-5.2,166.5],"ftR":[21,323.3],"hipL":[31.8,40.6],"knL":[23.2,175.3],"ftL":[-39.4,282.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-11.5,-84.5],"neck":[-11.5,-84.5],"head":[-26,-140.1],"shR":[-77,-76.7],"elR":[-55.2,-140.9],"haR":[-51.5,-190.5],"shL":[51.7,-116.8],"elL":[95.9,-26.3],"haL":[99.2,23.1],"hipR":[-33.9,38.2],"knR":[-4.9,166.3],"ftR":[20.7,322.9],"hipL":[32.1,40.5],"knL":[23.3,175.1],"ftL":[-39.8,281.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-12.4,-84.4],"neck":[-12.4,-84.4],"head":[-26.3,-141.5],"shR":[-78,-77.3],"elR":[-50.3,-137.7],"haR":[-46.2,-188.2],"shL":[51.2,-116.1],"elL":[98.6,-28.4],"haL":[99.7,20.6],"hipR":[-34,38.1],"knR":[-4.3,166],"ftR":[21.1,322.6],"hipL":[31.9,40.6],"knL":[23.9,175.3],"ftL":[-39.8,281.7]},{"rootY":0,"hips":[0,0],"chest":[-12.8,-84.4],"neck":[-12.8,-84.4],"head":[-25.9,-142],"shR":[-78.9,-77.5],"elR":[-47.3,-126.8],"haR":[-41.3,-177.3],"shL":[51.3,-115.8],"elL":[101.4,-31.1],"haL":[100.5,17],"hipR":[-33.9,38.2],"knR":[-4.5,166.2],"ftR":[21.6,322.6],"hipL":[32,40.5],"knL":[24.6,175.2],"ftL":[-39.4,281.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.9,-84.6],"neck":[-12.9,-84.6],"head":[-25,-145.3],"shR":[-79.4,-79.4],"elR":[-46.2,-108.4],"haR":[-37,-158.7],"shL":[52.1,-114.4],"elL":[103.7,-31.3],"haL":[101.4,15.2],"hipR":[-34,38.1],"knR":[-3.7,165.8],"ftR":[21.8,322.3],"hipL":[32,40.6],"knL":[25,175.3],"ftL":[-38.8,281.4]},{"rootY":-0.2,"hips":[0,0],"chest":[-12,-84.9],"neck":[-12,-84.9],"head":[-24.6,-146],"shR":[-79,-81.8],"elR":[-47.5,-83.3],"haR":[-33.6,-132.5],"shL":[54.2,-112.6],"elL":[104.8,-30.1],"haL":[102.6,13.6],"hipR":[-34.4,37.8],"knR":[-2.6,165.3],"ftR":[22.7,321.8],"hipL":[31.6,40.9],"knL":[25.3,175.7],"ftL":[-37.6,282]},{"rootY":0,"hips":[0,0],"chest":[-10.2,-85.3],"neck":[-10.2,-85.3],"head":[-22.7,-147.8],"shR":[-77.4,-85.5],"elR":[-50.7,-54.6],"haR":[-31.3,-101.8],"shL":[57.3,-109.7],"elL":[103.7,-25.3],"haL":[103.7,14.9],"hipR":[-33.8,38.4],"knR":[-1.7,165.6],"ftR":[23.4,322],"hipL":[32.4,40.3],"knL":[25.1,175],"ftL":[-36.6,281.6]},{"rootY":0.1,"hips":[0,0],"chest":[-8.2,-85.6],"neck":[-8.2,-85.6],"head":[-20.5,-148.1],"shR":[-75.6,-86.8],"elR":[-56.6,-22.7],"haR":[-32.8,-65.8],"shL":[59.9,-108.9],"elL":[99.6,-20.3],"haL":[103.3,16.7],"hipR":[-33.7,38.4],"knR":[-2.1,165.7],"ftR":[24,322],"hipL":[32.5,40.3],"knL":[25,175],"ftL":[-35.9,281.6]},{"rootY":0.3,"hips":[0,0],"chest":[-6.2,-85.8],"neck":[-6.2,-85.8],"head":[-18.7,-148.5],"shR":[-73.4,-88.5],"elR":[-63.5,4.4],"haR":[-38.1,-32],"shL":[62.3,-107.6],"elL":[94.3,-15.3],"haL":[103,20.1],"hipR":[-34.2,38],"knR":[-4.4,165.8],"ftR":[24.1,321.8],"hipL":[32.1,40.7],"knL":[25.1,175.4],"ftL":[-35.5,281.8]},{"rootY":0.7,"hips":[0,0],"chest":[-3.7,-85.9],"neck":[-3.7,-85.9],"head":[-16.9,-148.5],"shR":[-70.6,-88.5],"elR":[-71.1,22.4],"haR":[-47.8,-1],"shL":[64.6,-107.7],"elL":[89.1,-14.4],"haL":[103.3,22],"hipR":[-34.4,37.9],"knR":[-6.3,165.9],"ftR":[24.3,321.7],"hipL":[31.9,40.8],"knL":[25.1,175.6],"ftL":[-34.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-2.5,-85.5],"neck":[-2.5,-85.5],"head":[-17.1,-147.2],"shR":[-69.2,-87.7],"elR":[-77.5,27.3],"haR":[-60.6,22.3],"shL":[65.5,-107.8],"elL":[84.5,-16],"haL":[104,23.5],"hipR":[-34.8,37.5],"knR":[-8.9,166],"ftR":[23.9,321.9],"hipL":[31.4,41.1],"knL":[25.1,176.1],"ftL":[-34.8,281.2]},{"rootY":1.1,"hips":[0,0],"chest":[-2,-85.4],"neck":[-2,-85.4],"head":[-18.6,-146.9],"shR":[-68.8,-86.6],"elR":[-79.3,22.9],"haR":[-74.3,36.9],"shL":[65.9,-108.4],"elL":[82.9,-21.4],"haL":[104.8,21.8],"hipR":[-35.4,37],"knR":[-11,165.4],"ftR":[23.2,321.3],"hipL":[30.9,41.5],"knL":[24.7,176.5],"ftL":[-35.8,281.7]},{"rootY":1.1,"hips":[0,0],"chest":[-1.8,-85.2],"neck":[-1.8,-85.2],"head":[-20,-146.1],"shR":[-69,-84.8],"elR":[-81.3,15.1],"haR":[-87.8,44.5],"shL":[66,-109.7],"elL":[84.1,-28.5],"haL":[107.3,16.3],"hipR":[-35.4,37],"knR":[-10.3,165.2],"ftR":[22.9,321.3],"hipL":[30.9,41.4],"knL":[24.4,176.5],"ftL":[-38.2,281.3]},{"rootY":0.9,"hips":[0,0],"chest":[-1.7,-84.7],"neck":[-1.7,-84.7],"head":[-20.5,-144.5],"shR":[-69.3,-83.1],"elR":[-85.6,5.7],"haR":[-100.8,44.4],"shL":[65.8,-110.1],"elL":[88.6,-36.3],"haL":[113.8,6.6],"hipR":[-34.5,37.8],"knR":[-7.5,165.8],"ftR":[23.2,322.1],"hipL":[31.7,40.8],"knL":[24.3,175.7],"ftL":[-40.2,280.2]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-83.7],"neck":[-2.1,-83.7],"head":[-21.6,-143.4],"shR":[-69.9,-80.5],"elR":[-91.8,-2.2],"haR":[-113.8,40.7],"shL":[64.7,-110.5],"elL":[95.4,-45.8],"haL":[123.4,-8],"hipR":[-34.6,37.8],"knR":[-7.9,165.3],"ftR":[21.9,322.3],"hipL":[31.8,40.7],"knL":[23.5,175.7],"ftL":[-42.3,281.4]},{"rootY":-0.4,"hips":[0,0],"chest":[-2.8,-82.6],"neck":[-2.8,-82.6],"head":[-22.9,-141.9],"shR":[-70.6,-77.6],"elR":[-99.9,-8.7],"haR":[-127.4,34.4],"shL":[63.1,-111],"elL":[104.3,-56.3],"haL":[135.6,-25.8],"hipR":[-34.5,37.9],"knR":[-8,165.1],"ftR":[21.1,322.5],"hipL":[31.9,40.6],"knL":[23.2,175.6],"ftL":[-44.3,281.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-3.2,-81.7],"neck":[-3.2,-81.7],"head":[-23.7,-140.7],"shR":[-70.8,-74.7],"elR":[-108.3,-14.1],"haR":[-140.1,25.1],"shL":[61.7,-111.7],"elL":[115,-69.2],"haL":[150.3,-47.1],"hipR":[-33.6,38.6],"knR":[-5.2,165.3],"ftR":[20.8,323],"hipL":[32.7,40],"knL":[23.6,175.1],"ftL":[-45.3,281]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.7,-79.9],"neck":[-4.7,-79.9],"head":[-25.4,-138.5],"shR":[-72,-70.5],"elR":[-118.4,-16.8],"haR":[-153.6,16],"shL":[58.9,-111.9],"elL":[124.4,-83.6],"haL":[163.9,-69.6],"hipR":[-33.9,38.4],"knR":[-7.1,164.8],"ftR":[19.4,322.7],"hipL":[32.3,40.2],"knL":[23.6,175.5],"ftL":[-47,281.1]},{"rootY":0,"hips":[0,0],"chest":[-5.3,-78.5],"neck":[-5.3,-78.5],"head":[-26.5,-137.2],"shR":[-72.2,-66.8],"elR":[-128.6,-18.5],"haR":[-166.6,7.5],"shL":[57,-112.2],"elL":[134.4,-98.6],"haL":[178,-92.1],"hipR":[-34,38.3],"knR":[-7.7,164.3],"ftR":[18.5,322.6],"hipL":[32.2,40.3],"knL":[24,175.8],"ftL":[-48.7,280.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-6.7,-76.9],"neck":[-6.7,-76.9],"head":[-28.3,-135.4],"shR":[-73.2,-63.5],"elR":[-139,-20.7],"haR":[-179.6,-0.2],"shL":[54.5,-111.8],"elL":[142.4,-112.7],"haL":[189.1,-112.7],"hipR":[-34.1,38.1],"knR":[-8.1,163.7],"ftR":[16.6,322.5],"hipL":[32,40.5],"knL":[23.4,176],"ftL":[-51.1,280.4]},{"rootY":0.2,"hips":[0,0],"chest":[-7.9,-75.4],"neck":[-7.9,-75.4],"head":[-30.1,-134],"shR":[-74.1,-60.6],"elR":[-149.4,-22.9],"haR":[-192.8,-6],"shL":[52.3,-111.2],"elL":[148.7,-124.8],"haL":[197.4,-130.6],"hipR":[-34.4,37.9],"knR":[-9.2,163],"ftR":[15.2,322.2],"hipL":[31.7,40.6],"knL":[22.9,176.1],"ftL":[-53.9,279.6]},{"rootY":0.9,"hips":[0,0],"chest":[-8.5,-74],"neck":[-8.5,-74],"head":[-31.3,-132.9],"shR":[-74.3,-58.1],"elR":[-158.6,-24.5],"haR":[-204.5,-10.1],"shL":[50.9,-110.5],"elL":[153,-134.8],"haL":[202.3,-144.8],"hipR":[-34.1,38.2],"knR":[-9.5,162.7],"ftR":[14.6,322.2],"hipL":[32.1,40.3],"knL":[22.5,175.8],"ftL":[-56.3,278.5]},{"rootY":0.9,"hips":[0,0],"chest":[-9.8,-72.7],"neck":[-9.8,-72.7],"head":[-33,-131.8],"shR":[-75.3,-56.1],"elR":[-168,-24.7],"haR":[-216,-12.1],"shL":[49,-109.5],"elL":[154.1,-141.7],"haL":[202.7,-154.2],"hipR":[-34.5,37.9],"knR":[-11.4,162.1],"ftR":[12.5,321.8],"hipL":[31.7,40.7],"knL":[21.6,176],"ftL":[-58.8,278.4]},{"rootY":1.3,"hips":[0,0],"chest":[-10.5,-71],"neck":[-10.5,-71],"head":[-33.7,-130.5],"shR":[-75.8,-53.5],"elR":[-175.6,-23.3],"haR":[-225.1,-11.8],"shL":[47.5,-108.3],"elL":[153,-145.6],"haL":[199.6,-158.7],"hipR":[-34.6,37.8],"knR":[-12.6,161.3],"ftR":[11.4,321.4],"hipL":[31.6,40.7],"knL":[21.2,176],"ftL":[-60.8,277.7]},{"rootY":1.5,"hips":[0,0],"chest":[-11.4,-69.8],"neck":[-11.4,-69.8],"head":[-34.7,-129.5],"shR":[-76.5,-51.8],"elR":[-181.8,-20.4],"haR":[-231.9,-9.8],"shL":[46.4,-107.1],"elL":[149.5,-146.3],"haL":[192.5,-158.6],"hipR":[-34.8,37.6],"knR":[-13.9,160.7],"ftR":[9.9,321.1],"hipL":[31.4,40.9],"knL":[20.9,176.2],"ftL":[-62.2,277.3]},{"rootY":1.9,"hips":[0,0],"chest":[-11.8,-68.9],"neck":[-11.8,-68.9],"head":[-35.1,-129.1],"shR":[-76.8,-50.7],"elR":[-185.3,-16.2],"haR":[-235.1,-6],"shL":[45.8,-106.1],"elL":[143.9,-143.9],"haL":[181.9,-153.9],"hipR":[-34.7,37.7],"knR":[-14.1,160.2],"ftR":[9.5,320.8],"hipL":[31.5,40.9],"knL":[21.5,176],"ftL":[-62.5,276.8]},{"rootY":2.2,"hips":[0,0],"chest":[-12.4,-68.2],"neck":[-12.4,-68.2],"head":[-36,-128.8],"shR":[-77.4,-50],"elR":[-185.5,-9.6],"haR":[-234.8,0.1],"shL":[45.2,-105.1],"elL":[136,-137.9],"haL":[167.6,-144.6],"hipR":[-34.7,37.7],"knR":[-15.6,159.7],"ftR":[8.3,320.4],"hipL":[31.6,40.8],"knL":[21.7,175.9],"ftL":[-63.2,276.1]},{"rootY":2.6,"hips":[0,0],"chest":[-12.5,-67.6],"neck":[-12.5,-67.6],"head":[-36.3,-128.4],"shR":[-77.4,-49.2],"elR":[-180.6,-2.9],"haR":[-228.5,8],"shL":[44.9,-104.2],"elL":[125.9,-128.7],"haL":[150.1,-131.5],"hipR":[-34.8,37.6],"knR":[-16.4,159],"ftR":[7.7,320],"hipL":[31.6,40.9],"knL":[21.8,175.8],"ftL":[-63.3,276]},{"rootY":3.4,"hips":[0,0],"chest":[-12.4,-67.6],"neck":[-12.4,-67.6],"head":[-36.3,-128.8],"shR":[-77.4,-49.9],"elR":[-171.1,1.9],"haR":[-216.8,15.3],"shL":[45.4,-103.2],"elL":[114.6,-113.8],"haL":[130.2,-113.5],"hipR":[-35.3,37],"knR":[-21,157.8],"ftR":[6.3,319],"hipL":[31.2,41.2],"knL":[21.1,175.8],"ftL":[-63.5,276.1]},{"rootY":3.7,"hips":[0,0],"chest":[-11.9,-67.7],"neck":[-11.9,-67.7],"head":[-35.9,-129.3],"shR":[-77.3,-51],"elR":[-158.2,5.6],"haR":[-200,23.5],"shL":[46.4,-102.1],"elL":[99.1,-94],"haL":[106.6,-91.5],"hipR":[-35.6,36.7],"knR":[-22.5,157.3],"ftR":[6.1,318.5],"hipL":[31,41.4],"knL":[20.8,175.9],"ftL":[-62.9,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10.9,-68],"neck":[-10.9,-68],"head":[-34.5,-130.4],"shR":[-76.3,-51.7],"elR":[-141,9.1],"haR":[-177.2,32.4],"shL":[47.7,-102.2],"elL":[76.4,-73],"haL":[78.8,-68.5],"hipR":[-35.4,36.9],"knR":[-22.7,157.6],"ftR":[6.9,318.5],"hipL":[31.2,41.4],"knL":[20.9,175.8],"ftL":[-61.5,275.7]},{"rootY":4,"hips":[0,0],"chest":[-10,-68.5],"neck":[-10,-68.5],"head":[-33.6,-131.2],"shR":[-75.7,-53.2],"elR":[-122.4,10.7],"haR":[-150.5,39.7],"shL":[49.4,-101.7],"elL":[54.3,-58.2],"haL":[50.6,-48.9],"hipR":[-35.7,36.6],"knR":[-24.9,157.2],"ftR":[6.7,317.9],"hipL":[30.9,41.7],"knL":[20.3,176],"ftL":[-60.8,275.9]},{"rootY":3.9,"hips":[0,0],"chest":[-9.3,-69.5],"neck":[-9.3,-69.5],"head":[-32.8,-132.6],"shR":[-75.3,-55.2],"elR":[-103.8,12.2],"haR":[-120.9,46.2],"shL":[50.7,-101.7],"elL":[33.4,-44.9],"haL":[23.5,-30.4],"hipR":[-36,36.3],"knR":[-27.2,157.5],"ftR":[6.3,317.7],"hipL":[30.5,42],"knL":[18.8,176.3],"ftL":[-60.8,275.5]},{"rootY":4.2,"hips":[0,0],"chest":[-8.1,-70.8],"neck":[-8.1,-70.8],"head":[-31,-134.6],"shR":[-74.3,-57.3],"elR":[-83.1,12.4],"haR":[-88,49.4],"shL":[52.1,-102.6],"elL":[18.6,-36],"haL":[1,-17],"hipR":[-35.9,36.4],"knR":[-28.2,157.5],"ftR":[6.6,317.1],"hipL":[30.6,42],"knL":[17.8,176.2],"ftL":[-60.9,274.3]},{"rootY":5.9,"hips":[0,0],"chest":[-6.1,-71.6],"neck":[-6.1,-71.6],"head":[-28.7,-135.9],"shR":[-72.5,-59.6],"elR":[-59.7,11.4],"haR":[-55.4,48.4],"shL":[54.8,-101.9],"elL":[11.8,-28.3],"haL":[-15.1,-6.9],"hipR":[-35.7,36.5],"knR":[-25.6,156.4],"ftR":[9.1,315.7],"hipL":[30.8,41.9],"knL":[17.6,175.5],"ftL":[-60.8,271.5]},{"rootY":8.3,"hips":[0,0],"chest":[-3.8,-72.8],"neck":[-3.8,-72.8],"head":[-26.3,-137.5],"shR":[-70.5,-62],"elR":[-36.2,8.4],"haR":[-25.3,42.6],"shL":[57.6,-102],"elL":[5.1,-23.9],"haL":[-27.5,-1.2],"hipR":[-35.8,36.5],"knR":[-24.5,155.1],"ftR":[11.9,313.5],"hipL":[30.7,42],"knL":[17.8,174.8],"ftL":[-62.9,265.8]},{"rootY":10.6,"hips":[0,0],"chest":[-2.9,-74.7],"neck":[-2.9,-74.7],"head":[-24.4,-140.2],"shR":[-69.8,-65.2],"elR":[-15.4,3.6],"haR":[0.7,34.9],"shL":[59.4,-102.7],"elL":[-1.2,-23.2],"haL":[-36.5,0.2],"hipR":[-35.8,36.6],"knR":[-26.1,153.9],"ftR":[13.2,310.4],"hipL":[30.7,42],"knL":[18,174.2],"ftL":[-67.1,259.2]},{"rootY":14.2,"hips":[0,0],"chest":[-2.2,-76.8],"neck":[-2.2,-76.8],"head":[-23.5,-142.7],"shR":[-69.5,-69.3],"elR":[0.5,1.1],"haR":[20.3,26.6],"shL":[61.3,-102.8],"elL":[0.2,-22.1],"haL":[-39.8,-1.5],"hipR":[-36.1,36.4],"knR":[-26.3,151.9],"ftR":[15.4,306.7],"hipL":[30.4,42.1],"knL":[18.3,173.2],"ftL":[-70.2,254.4]},{"rootY":18.5,"hips":[0,0],"chest":[-1.3,-78.1],"neck":[-1.3,-78.1],"head":[-21.8,-144.2],"shR":[-68.8,-70.6],"elR":[5.8,0.4],"haR":[31.5,18.6],"shL":[63,-104.2],"elL":[6.9,-22.3],"haL":[-37.7,-7.2],"hipR":[-36.2,36.1],"knR":[-25.3,149.6],"ftR":[17.4,302],"hipL":[30.2,42.2],"knL":[19.4,172.1],"ftL":[-73.7,251.3]},{"rootY":23.2,"hips":[0,0],"chest":[-1.1,-79.2],"neck":[-1.1,-79.2],"head":[-20.3,-145.6],"shR":[-68.8,-72.4],"elR":[-0.1,7.2],"haR":[34.4,13.9],"shL":[64.4,-105.1],"elL":[20.3,-26],"haL":[-28.6,-18],"hipR":[-36.3,35.7],"knR":[-23.1,147],"ftR":[19.9,297],"hipL":[30.2,42.2],"knL":[21.6,171],"ftL":[-76.5,250.8]},{"rootY":26.4,"hips":[0,0],"chest":[-1.8,-80.2],"neck":[-1.8,-80.2],"head":[-19.5,-146.8],"shR":[-69.2,-73.7],"elR":[-12.7,13.4],"haR":[29.5,10],"shL":[64.8,-106],"elL":[38.8,-32.6],"haL":[-11.6,-30.5],"hipR":[-35.9,35.2],"knR":[-20.3,145.7],"ftR":[22.4,293.6],"hipL":[30.2,42.1],"knL":[25,170.2],"ftL":[-79,252.9]},{"rootY":28.6,"hips":[0,0],"chest":[-1.7,-80.9],"neck":[-1.7,-80.9],"head":[-18,-147.7],"shR":[-68.4,-73.4],"elR":[-26.4,17.8],"haR":[20.9,8.7],"shL":[65,-107.8],"elL":[69.8,-43.4],"haL":[19.8,-41.7],"hipR":[-35.2,35.3],"knR":[-16.4,144.4],"ftR":[25.4,290.9],"hipL":[30.7,41.9],"knL":[28.4,169.6],"ftL":[-79.8,256.8]},{"rootY":27.7,"hips":[0,0],"chest":[-1.3,-80.8],"neck":[-1.3,-80.8],"head":[-16,-147.9],"shR":[-66,-73.2],"elR":[-38.9,20],"haR":[10.7,8.7],"shL":[65.1,-108.6],"elL":[109.8,-57.4],"haL":[59.9,-49.7],"hipR":[-33.6,35.8],"knR":[-10.9,146],"ftR":[29.8,291.9],"hipL":[31.2,41.6],"knL":[32.1,169.9],"ftL":[-80.3,260.2]},{"rootY":22.7,"hips":[0,0],"chest":[0.2,-81],"neck":[0.2,-81],"head":[-14.3,-148],"shR":[-61.5,-71.1],"elR":[-51.3,24.2],"haR":[-1.1,14.6],"shL":[64.8,-110.9],"elL":[145.1,-78.8],"haL":[99.2,-60.9],"hipR":[-32.5,36],"knR":[-4.7,149.3],"ftR":[32.9,296.5],"hipL":[31,41.6],"knL":[32.7,171],"ftL":[-78.8,268.1]},{"rootY":14.5,"hips":[0,0],"chest":[2.7,-81],"neck":[2.7,-81],"head":[-12.5,-147.7],"shR":[-55,-69.5],"elR":[-63.4,27.4],"haR":[-12.4,24.6],"shL":[64.2,-112.8],"elL":[168.1,-98.7],"haL":[131.5,-74.4],"hipR":[-30,37.2],"knR":[3.4,155],"ftR":[35.6,304.8],"hipL":[31.2,40.8],"knL":[31.3,171.9],"ftL":[-76.6,277]},{"rootY":5.8,"hips":[0,0],"chest":[5.5,-80.4],"neck":[5.5,-80.4],"head":[-11.1,-146.8],"shR":[-47.9,-67.2],"elR":[-74.5,29.1],"haR":[-23.7,35.8],"shL":[63.6,-113.8],"elL":[175.5,-115.3],"haL":[153.5,-88.5],"hipR":[-28.4,37.9],"knR":[11.6,159],"ftR":[34.7,312.3],"hipL":[29.9,40.5],"knL":[28.2,172.8],"ftL":[-72.9,287.4]},{"rootY":-3.5,"hips":[0,0],"chest":[8,-80.1],"neck":[8,-80.1],"head":[-10.1,-146.7],"shR":[-40,-66.3],"elR":[-83.7,26.9],"haR":[-35.2,43],"shL":[61.4,-114.7],"elL":[165.6,-129.7],"haL":[162.6,-101.6],"hipR":[-24.8,39.8],"knR":[18.5,163.9],"ftR":[23.9,319.5],"hipL":[29,38.8],"knL":[23.3,172.7],"ftL":[-70.1,297]},{"rootY":-13.1,"hips":[0,0],"chest":[10.7,-79.7],"neck":[10.7,-79.7],"head":[-9,-145.8],"shR":[-31.9,-63.3],"elR":[-86.4,25],"haR":[-41.9,49.1],"shL":[59,-117.1],"elL":[144.3,-139.6],"haL":[159.8,-115.4],"hipR":[-21.8,41.1],"knR":[22,167.9],"ftR":[10.7,325.6],"hipL":[26.9,37.4],"knL":[18.6,172.2],"ftL":[-66.1,305.9]},{"rootY":-21.2,"hips":[0,0],"chest":[13.1,-78.7],"neck":[13.1,-78.7],"head":[-9.2,-143.9],"shR":[-24.8,-59.8],"elR":[-85.6,24.7],"haR":[-46.4,54.1],"shL":[56.5,-118.7],"elL":[112.3,-145.7],"haL":[144.2,-125.4],"hipR":[-20.4,41.2],"knR":[20.6,169.9],"ftR":[-0.1,328.9],"hipL":[22.6,37.3],"knL":[14.6,172.2],"ftL":[-63.9,311.9]},{"rootY":-27.3,"hips":[0,0],"chest":[14.9,-77.8],"neck":[14.9,-77.8],"head":[-9.6,-142.1],"shR":[-17.5,-56.4],"elR":[-82.3,23.5],"haR":[-48.2,56.5],"shL":[53.2,-120.2],"elL":[75.6,-148.3],"haL":[118.9,-135],"hipR":[-18.5,40.9],"knR":[19.2,171.2],"ftR":[-9.2,330.8],"hipL":[17.9,37.5],"knL":[13.1,172.4],"ftL":[-62.4,315.9]},{"rootY":-31.2,"hips":[0,0],"chest":[17,-77.9],"neck":[17,-77.9],"head":[-9,-141.2],"shR":[-9.7,-53.9],"elR":[-75.9,21.9],"haR":[-46.9,57.5],"shL":[50.1,-122.7],"elL":[43.7,-149.3],"haL":[93.3,-143.3],"hipR":[-15.4,41.4],"knR":[19.6,172.6],"ftR":[-16.5,332],"hipL":[14,36.9],"knL":[13.5,172],"ftL":[-58.8,318.7]},{"rootY":-33.5,"hips":[0,0],"chest":[19.4,-77.9],"neck":[19.4,-77.9],"head":[-7.8,-139.9],"shR":[1.9,-53.7],"elR":[-62.6,20.4],"haR":[-38.3,56.6],"shL":[43.9,-123.4],"elL":[10.6,-147.7],"haL":[60.5,-149.9],"hipR":[-11.2,42.2],"knR":[22.6,173.8],"ftR":[-18.5,332.7],"hipL":[10.4,35.9],"knL":[15.1,170.8],"ftL":[-52.4,320.4]},{"rootY":-34.5,"hips":[0,0],"chest":[21.6,-78.1],"neck":[21.6,-78.1],"head":[-6.6,-138.7],"shR":[10.9,-52.5],"elR":[-47.9,21.5],"haR":[-27.8,58],"shL":[39.5,-125.1],"elL":[-16,-145],"haL":[29.5,-154.9],"hipR":[-6.2,41.7],"knR":[24.9,173.8],"ftR":[-19.2,332.2],"hipL":[5.3,36.7],"knL":[17.7,171.3],"ftL":[-45.6,322.4]},{"rootY":-34.9,"hips":[0,0],"chest":[22.4,-78.4],"neck":[22.4,-78.4],"head":[-7.1,-136.7],"shR":[20.1,-51.6],"elR":[-29.7,25.8],"haR":[-13.2,60.6],"shL":[32.7,-126.6],"elL":[-39.7,-142.4],"haL":[-2.5,-159.2],"hipR":[-0.5,41.2],"knR":[25,174.4],"ftR":[-21.6,332.3],"hipL":[0.5,37.4],"knL":[18.8,171.6],"ftL":[-42,323.2]},{"rootY":-34.9,"hips":[0,0],"chest":[24.5,-78.8],"neck":[24.5,-78.8],"head":[-5.4,-135],"shR":[33,-52],"elR":[-5.8,26.2],"haR":[9.4,59.8],"shL":[24.5,-127.5],"elL":[-60.4,-138.6],"haL":[-33.6,-161.1],"hipR":[5,40.4],"knR":[26.2,174.1],"ftR":[-22.6,331.4],"hipL":[-5.5,38.2],"knL":[18,171.9],"ftL":[-36,325.6]},{"rootY":-34.9,"hips":[0,0],"chest":[26.4,-78.9],"neck":[26.4,-78.9],"head":[-3.6,-132.3],"shR":[45.9,-53],"elR":[19.5,25.2],"haR":[34.3,57.2],"shL":[15.6,-127],"elL":[-79,-133],"haL":[-64.2,-159.6],"hipR":[10.5,40.4],"knR":[26.8,174.7],"ftR":[-22.9,331],"hipL":[-11.3,38.2],"knL":[15.7,171.3],"ftL":[-30.3,326.4]},{"rootY":-36.2,"hips":[0,0],"chest":[27.3,-79.3],"neck":[27.3,-79.3],"head":[0.1,-131.3],"shR":[55.5,-52.5],"elR":[42.6,27.6],"haR":[58.6,58.8],"shL":[8.5,-128.3],"elL":[-94.1,-128.9],"haL":[-92.1,-157.4],"hipR":[15.8,40.1],"knR":[26.2,175],"ftR":[-22.1,330.5],"hipL":[-15.7,38.5],"knL":[13.9,170.8],"ftL":[-24.6,327.3]},{"rootY":-35.4,"hips":[0,0],"chest":[28.2,-79.8],"neck":[28.2,-79.8],"head":[4.9,-130.3],"shR":[66.8,-54],"elR":[68.3,27.3],"haR":[87,58],"shL":[-0.9,-128.1],"elL":[-108.6,-123.6],"haL":[-118.7,-153.2],"hipR":[20.4,40.2],"knR":[28.8,175],"ftR":[-16.4,330.7],"hipL":[-20.7,38.5],"knL":[10.2,169.4],"ftL":[-16.5,327.4]},{"rootY":-35.2,"hips":[0,0],"chest":[27.9,-80.4],"neck":[27.9,-80.4],"head":[10.2,-129.9],"shR":[75,-54.5],"elR":[96.7,32.7],"haR":[115.3,61.5],"shL":[-9.4,-128.9],"elL":[-120.7,-119.3],"haL":[-141,-147.2],"hipR":[25,39.1],"knR":[29.6,174.1],"ftR":[-12.5,329.5],"hipL":[-23.5,39.5],"knL":[8.1,169.4],"ftL":[-9.9,328.2]},{"rootY":-34,"hips":[0,0],"chest":[27.9,-80.6],"neck":[27.9,-80.6],"head":[17.3,-128.4],"shR":[83.3,-57.2],"elR":[112.9,28.4],"haR":[139.6,59],"shL":[-18.1,-127.1],"elL":[-128.2,-112],"haL":[-157.9,-139.5],"hipR":[30.2,37.9],"knR":[29.6,173],"ftR":[-6.4,328.5],"hipL":[-25.7,40.7],"knL":[5.1,168.8],"ftL":[-2.8,327.9]},{"rootY":-32.7,"hips":[0,0],"chest":[26,-81.5],"neck":[26,-81.5],"head":[24.3,-128.6],"shR":[87.7,-60.5],"elR":[130.9,27.8],"haR":[162.1,58.5],"shL":[-26.9,-126],"elL":[-132.7,-105.6],"haL":[-170.6,-132],"hipR":[33.1,37.7],"knR":[27.8,172.6],"ftR":[0.6,327.5],"hipL":[-28.4,40.7],"knL":[-1.6,167.5],"ftL":[3.3,327.3]},{"rootY":-31.5,"hips":[0,0],"chest":[24.1,-81.8],"neck":[24.1,-81.8],"head":[32.6,-127.8],"shR":[89.1,-62.9],"elR":[143.2,27.6],"haR":[178,58.6],"shL":[-33.4,-124.4],"elL":[-129.8,-97.2],"haL":[-173,-121.6],"hipR":[35.4,36.9],"knR":[26.1,171.6],"ftR":[10.7,326.2],"hipL":[-29.8,41.4],"knL":[-8.3,166],"ftL":[7.4,326.1]},{"rootY":-30.3,"hips":[0,0],"chest":[23.3,-82],"neck":[23.3,-82],"head":[43.5,-127.2],"shR":[88.6,-65.2],"elR":[149.6,26.2],"haR":[187.8,57.5],"shL":[-36.2,-122.5],"elL":[-119.7,-88.4],"haL":[-165.4,-109.4],"hipR":[36.9,35.2],"knR":[25,170],"ftR":[20.9,324.6],"hipL":[-29.4,42.7],"knL":[-17,165.2],"ftL":[7.7,325.3]},{"rootY":-28.3,"hips":[0,0],"chest":[17.6,-82.8],"neck":[17.6,-82.8],"head":[49.8,-128.7],"shR":[80.5,-68.7],"elR":[146.9,23.2],"haR":[187,54.7],"shL":[-41.3,-121.1],"elL":[-107.3,-81.3],"haL":[-152.1,-98.5],"hipR":[34.6,35.5],"knR":[16,169.5],"ftR":[22.7,323.6],"hipL":[-30.1,42.4],"knL":[-30.4,164.1],"ftL":[-0.5,324.8]},{"rootY":-25.3,"hips":[0,0],"chest":[11.9,-83.7],"neck":[11.9,-83.7],"head":[53,-129.6],"shR":[68.2,-72.1],"elR":[138.3,19.4],"haR":[179,50.1],"shL":[-43,-119.4],"elL":[-90.1,-75.6],"haL":[-131.2,-89.5],"hipR":[30.8,35.7],"knR":[7.4,168.9],"ftR":[24.3,321.5],"hipL":[-29.4,42.1],"knL":[-42.1,164.6],"ftL":[-8.1,325.1]},{"rootY":-21.8,"hips":[0,0],"chest":[6.3,-84.3],"neck":[6.3,-84.3],"head":[53.3,-132.1],"shR":[54,-75.1],"elR":[125.9,14.8],"haR":[165.9,44.3],"shL":[-42.1,-117.7],"elL":[-69.5,-70.2],"haL":[-104.1,-81.3],"hipR":[26.4,35.1],"knR":[-1.2,167.7],"ftR":[26.3,319],"hipL":[-26.4,42.6],"knL":[-50.3,165.6],"ftL":[-13.1,325.4]},{"rootY":-18.6,"hips":[0,0],"chest":[0.6,-84.7],"neck":[0.6,-84.7],"head":[46.7,-136.5],"shR":[38.2,-78.3],"elR":[109.7,9.3],"haR":[147.3,37.2],"shL":[-39.7,-115.5],"elL":[-47.7,-65.2],"haL":[-74.1,-73.5],"hipR":[21,34.8],"knR":[-11.6,166.5],"ftR":[27.4,316.5],"hipL":[-23.3,42.8],"knL":[-58.4,165.9],"ftL":[-18.1,324.8]},{"rootY":-16.8,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[39.6,-139.2],"shR":[23.1,-76.6],"elR":[91.3,8.5],"haR":[125,34.6],"shL":[-33.4,-117.9],"elL":[-22.6,-64.4],"haL":[-40,-70.3],"hipR":[14.2,35.2],"knR":[-20,166.7],"ftR":[31.1,315.2],"hipL":[-19.4,42.5],"knL":[-63.5,166.2],"ftL":[-18.5,323.1]},{"rootY":-13.7,"hips":[0,0],"chest":[-7.7,-85.4],"neck":[-7.7,-85.4],"head":[28.1,-142.4],"shR":[6.5,-82.3],"elR":[70,0.9],"haR":[98.4,25.5],"shL":[-27.4,-112.6],"elL":[0.7,-57.3],"haL":[-7.5,-61.1],"hipR":[8.2,31],"knR":[-26,162.1],"ftR":[32.6,310.5],"hipL":[-14.4,45.2],"knL":[-72.5,166.6],"ftL":[-25.2,322.5]},{"rootY":-14.1,"hips":[0,0],"chest":[-9.4,-85.4],"neck":[-9.4,-85.4],"head":[19.4,-144.9],"shR":[-10.2,-85.6],"elR":[45.9,-4.3],"haR":[69.3,19.3],"shL":[-15,-109.2],"elL":[29.7,-52],"haL":[30.2,-53.1],"hipR":[-0.2,33.8],"knR":[-30.1,165.9],"ftR":[38.8,312.1],"hipL":[-9.3,43.5],"knL":[-68.9,165.4],"ftL":[-25.7,320.6]},{"rootY":-13.8,"hips":[0,0],"chest":[-11.5,-85.5],"neck":[-11.5,-85.5],"head":[9.5,-147.1],"shR":[-24.3,-87.5],"elR":[23.6,-7.7],"haR":[40.9,15],"shL":[-5.7,-107.4],"elL":[52.6,-49.3],"haL":[61.7,-47.5],"hipR":[-7.8,34],"knR":[-34,166.5],"ftR":[40.9,311.4],"hipL":[-4.7,43.2],"knL":[-65,164.7],"ftL":[-32,321.7]},{"rootY":-14.3,"hips":[0,0],"chest":[-13,-85.4],"neck":[-13,-85.4],"head":[2.6,-148.6],"shR":[-36.8,-87.7],"elR":[0.7,-10.1],"haR":[11.7,11.9],"shL":[3.7,-106.8],"elL":[70,-45.8],"haL":[89.2,-42],"hipR":[-13.5,34],"knR":[-34.1,167.3],"ftR":[43.2,312.2],"hipL":[0.8,43.3],"knL":[-57.9,164.5],"ftL":[-38.2,323.7]},{"rootY":-14.6,"hips":[0,0],"chest":[-13.6,-85.5],"neck":[-13.6,-85.5],"head":[-3.2,-149.9],"shR":[-46.9,-88.7],"elR":[-21.5,-11.1],"haR":[-16.7,10.9],"shL":[13,-105.7],"elL":[88.2,-42.1],"haL":[115,-34.9],"hipR":[-20,33.3],"knR":[-33.5,167.4],"ftR":[46.5,311.4],"hipL":[5.2,43.8],"knL":[-51.2,164.4],"ftL":[-42,324.8]}]},"jump":{"name":"jump","fps":30,"height":520,"groundY":343,"frameCount":104,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.2],"elR":[-68.8,9.9],"haR":[-82.2,74.4],"shL":[70,-99.6],"elL":[68.4,5.1],"haL":[77.1,73.3],"hipR":[-31.9,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.6,185.6],"ftL":[40.8,338.2]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.8,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.2,74.3],"shL":[70.1,-99.5],"elL":[68.4,5.2],"haL":[77.2,73.3],"hipR":[-32,38.4],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.3],"elR":[-68.8,9.8],"haR":[-82.1,74.4],"shL":[70.1,-99.5],"elL":[68.5,5.2],"haL":[77.3,73.3],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.9,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.3],"shL":[70.1,-99.4],"elL":[68.4,5.3],"haL":[77.3,73.4],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-39,336.6],"hipL":[29.4,38],"knL":[30.5,185.6],"ftL":[40.8,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11,-145.8],"shR":[-54.5,-107.4],"elR":[-68.8,9.8],"haR":[-82,74.2],"shL":[70.1,-99.4],"elL":[68.3,5.3],"haL":[77.1,73.5],"hipR":[-32,38.3],"knR":[-30.3,182.2],"ftR":[-39,336.5],"hipL":[29.3,38],"knL":[30.5,185.6],"ftL":[40.7,338.1]},{"rootY":0.1,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[11.1,-145.8],"shR":[-54.4,-107.5],"elR":[-68.6,9.7],"haR":[-81.8,74],"shL":[70.2,-99.3],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.9,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.7],"haR":[-81.7,74],"shL":[70.3,-99.2],"elL":[68.4,5.4],"haL":[77.2,73.6],"hipR":[-32.1,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.5,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.6],"ftL":[40.9,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11.1,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77.1,73.6],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.5],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[11,-145.8],"shR":[-54.3,-107.5],"elR":[-68.6,9.6],"haR":[-81.7,73.9],"shL":[70.3,-99.2],"elL":[68.4,5.5],"haL":[77,73.6],"hipR":[-32.1,38.2],"knR":[-30.2,182.1],"ftR":[-38.7,336.4],"hipL":[29.2,38.2],"knL":[30.5,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.9,-145.8],"shR":[-54.2,-107.6],"elR":[-68.5,9.6],"haR":[-81.6,73.9],"shL":[70.4,-99.1],"elL":[68.3,5.6],"haL":[76.9,73.8],"hipR":[-32.1,38.2],"knR":[-30.1,182.1],"ftR":[-38.7,336.4],"hipL":[29.3,38.1],"knL":[30.6,185.7],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.8,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.8,73.8],"hipR":[-32,38.3],"knR":[-30.2,182.2],"ftR":[-38.8,336.4],"hipL":[29.4,38.1],"knL":[30.6,185.6],"ftL":[41,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.6,-145.9],"shR":[-54.3,-107.6],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-32,38.3],"knR":[-30.1,182.2],"ftR":[-38.8,336.4],"hipL":[29.3,38.1],"knL":[30.7,185.6],"ftL":[41,338]},{"rootY":0.2,"hips":[0,0],"chest":[1,-77.9],"neck":[1,-77.9],"head":[10.5,-145.8],"shR":[-54.3,-107.7],"elR":[-68.5,9.5],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.8],"hipR":[-31.9,38.4],"knR":[-30.1,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-77.9],"neck":[1.1,-77.9],"head":[10.4,-145.9],"shR":[-54.3,-107.7],"elR":[-68.5,9.4],"haR":[-81.6,73.9],"shL":[70.3,-99.1],"elL":[68.2,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.4],"hipL":[29.5,38],"knL":[30.9,185.5],"ftL":[40.9,337.9]},{"rootY":0.2,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[10.1,-145.9],"shR":[-54.5,-107.7],"elR":[-68.5,9.3],"haR":[-81.9,73.7],"shL":[70.2,-99],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.9,38.4],"knR":[-30,182.3],"ftR":[-38.9,336.3],"hipL":[29.5,38],"knL":[30.8,185.5],"ftL":[40.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.9,-145.9],"shR":[-54.6,-107.8],"elR":[-68.7,9.3],"haR":[-81.9,73.8],"shL":[70.1,-99.1],"elL":[68.1,5.6],"haL":[76.7,73.9],"hipR":[-31.8,38.4],"knR":[-30.1,182.3],"ftR":[-39,336.3],"hipL":[29.6,37.9],"knL":[30.8,185.5],"ftL":[40.8,337.9]},{"rootY":0.4,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.8,-145.9],"shR":[-54.7,-107.6],"elR":[-68.8,9.4],"haR":[-82,74.1],"shL":[70,-99.3],"elL":[68.1,5.3],"haL":[76.8,73.7],"hipR":[-31.8,38.4],"knR":[-30.2,182.3],"ftR":[-39.1,336.3],"hipL":[29.5,38],"knL":[30.7,185.5],"ftL":[40.8,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[0.9,-77.9],"neck":[0.9,-77.9],"head":[9.7,-145.9],"shR":[-54.7,-107.5],"elR":[-68.8,9.4],"haR":[-81.8,74.3],"shL":[70,-99.3],"elL":[68.3,5.3],"haL":[77,73.7],"hipR":[-31.7,38.6],"knR":[-30,182.5],"ftR":[-39.3,336.4],"hipL":[29.7,37.9],"knL":[30.7,185.4],"ftL":[40.6,337.7]},{"rootY":0.3,"hips":[0,0],"chest":[0.8,-77.9],"neck":[0.8,-77.9],"head":[9.4,-145.9],"shR":[-54.8,-107.5],"elR":[-68.9,9.4],"haR":[-82,74.3],"shL":[69.9,-99.4],"elL":[68.3,5.2],"haL":[77.1,73.6],"hipR":[-31.6,38.6],"knR":[-29.9,182.5],"ftR":[-39.4,336.5],"hipL":[29.8,37.9],"knL":[30.7,185.5],"ftL":[40.5,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-77.8],"neck":[0.6,-77.8],"head":[9.2,-145.9],"shR":[-55,-107.5],"elR":[-69.1,9.2],"haR":[-82.1,74.2],"shL":[69.7,-99.4],"elL":[68.3,5.1],"haL":[77.1,73.6],"hipR":[-31.8,38.5],"knR":[-30,182.4],"ftR":[-39.6,336.6],"hipL":[29.6,38.2],"knL":[30.4,185.9],"ftL":[40.4,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[0.4,-77.8],"neck":[0.4,-77.8],"head":[8.9,-145.8],"shR":[-55.3,-107.4],"elR":[-69.3,9.2],"haR":[-82.2,74.5],"shL":[69.5,-99.5],"elL":[68.4,5],"haL":[77.4,73.7],"hipR":[-31.8,38.5],"knR":[-29.7,182.4],"ftR":[-39.6,336.6],"hipL":[29.7,38.5],"knL":[30.4,186.1],"ftL":[40.4,337.9]},{"rootY":0,"hips":[0,0],"chest":[0.1,-77.6],"neck":[0.1,-77.6],"head":[8.4,-145.7],"shR":[-55.7,-107.3],"elR":[-69.7,9],"haR":[-82.6,74.5],"shL":[69.1,-99.4],"elL":[68.3,4.9],"haL":[77.4,73.8],"hipR":[-31.8,38.6],"knR":[-30,182.4],"ftR":[-40.2,336.7],"hipL":[29.7,38.6],"knL":[30,186.2],"ftL":[39.9,337.9]},{"rootY":0.3,"hips":[0,0],"chest":[-0.3,-77.4],"neck":[-0.3,-77.4],"head":[7.9,-145.6],"shR":[-56.1,-107.2],"elR":[-70.3,8.7],"haR":[-83,74.3],"shL":[68.7,-99.3],"elL":[68.3,4.9],"haL":[77.7,73.7],"hipR":[-31.8,38.7],"knR":[-30.4,182.4],"ftR":[-41.2,336.8],"hipL":[29.6,38.6],"knL":[29.4,186.2],"ftL":[39.2,337.6]},{"rootY":0.5,"hips":[0,0],"chest":[-0.9,-77.1],"neck":[-0.9,-77.1],"head":[7.3,-145.2],"shR":[-56.8,-106.9],"elR":[-71.1,8.6],"haR":[-83.8,74.4],"shL":[68,-99.1],"elL":[68.3,4.8],"haL":[77.7,73.6],"hipR":[-32,38.5],"knR":[-30.9,182.2],"ftR":[-42.2,336.6],"hipL":[29.4,38.8],"knL":[28.4,186.3],"ftL":[38.6,337.2]},{"rootY":0.9,"hips":[0,0],"chest":[-1.5,-76.6],"neck":[-1.5,-76.6],"head":[6.4,-144.7],"shR":[-57.7,-106.2],"elR":[-72.2,8.7],"haR":[-84.8,74.7],"shL":[67.3,-99],"elL":[68.2,4.4],"haL":[78,73.2],"hipR":[-32.2,38.4],"knR":[-30.9,181.9],"ftR":[-43.2,336.2],"hipL":[29.1,39.1],"knL":[27.4,186.4],"ftL":[37.8,336.8]},{"rootY":1.6,"hips":[0,0],"chest":[-1.8,-75.8],"neck":[-1.8,-75.8],"head":[5.8,-143.8],"shR":[-58.1,-105.1],"elR":[-73,8.9],"haR":[-85.5,75.2],"shL":[66.8,-98.4],"elL":[68.6,4.3],"haL":[78.5,73.2],"hipR":[-31.7,38.8],"knR":[-29.6,181.8],"ftR":[-43.7,335.5],"hipL":[29.6,38.9],"knL":[27.4,185.8],"ftL":[37.3,336.2]},{"rootY":2.4,"hips":[0,0],"chest":[-2.3,-74.7],"neck":[-2.3,-74.7],"head":[4.8,-142.5],"shR":[-58.8,-103.9],"elR":[-74.4,9],"haR":[-86.7,75.4],"shL":[66.2,-97.5],"elL":[69.2,4.4],"haL":[79.1,73.4],"hipR":[-31.2,39.2],"knR":[-28.4,181.4],"ftR":[-44.4,334.3],"hipL":[30.1,38.7],"knL":[26.8,185.1],"ftL":[36.5,335.3]},{"rootY":3.7,"hips":[0,0],"chest":[-2.5,-73.5],"neck":[-2.5,-73.5],"head":[4.3,-141],"shR":[-59.1,-102.4],"elR":[-75.4,9.4],"haR":[-87.6,76.3],"shL":[65.8,-96.2],"elL":[70.3,4.5],"haL":[80.2,73.7],"hipR":[-30.6,39.6],"knR":[-27,180.9],"ftR":[-44.7,333],"hipL":[30.6,38.4],"knL":[26.8,184.2],"ftL":[36.1,334.1]},{"rootY":5,"hips":[0,0],"chest":[-2.8,-72.1],"neck":[-2.8,-72.1],"head":[3.4,-139.2],"shR":[-59.6,-100.6],"elR":[-76.5,10],"haR":[-88.7,77.2],"shL":[65.3,-94.9],"elL":[71.5,4.7],"haL":[81.3,74.3],"hipR":[-30.1,40],"knR":[-26.1,180.2],"ftR":[-45.6,331.6],"hipL":[31.1,38.2],"knL":[26.8,183.2],"ftL":[35.5,332.9]},{"rootY":6.3,"hips":[0,0],"chest":[-3.3,-70.6],"neck":[-3.3,-70.6],"head":[2.5,-137.2],"shR":[-60.2,-98.9],"elR":[-77.3,10.5],"haR":[-89.7,78],"shL":[64.7,-93.2],"elL":[72.7,5.2],"haL":[82.7,75.2],"hipR":[-29.8,40.2],"knR":[-25.3,179.5],"ftR":[-46.5,330.3],"hipL":[31.5,38],"knL":[27.2,182.1],"ftL":[34.7,331.6]},{"rootY":7.7,"hips":[0,0],"chest":[-3.5,-69.1],"neck":[-3.5,-69.1],"head":[1.9,-135.2],"shR":[-60.6,-97],"elR":[-77.8,11.1],"haR":[-90.5,79],"shL":[64.4,-91.9],"elL":[73.9,5.6],"haL":[84.5,75.8],"hipR":[-29.7,40.2],"knR":[-24.6,178.7],"ftR":[-47,328.9],"hipL":[31.7,37.9],"knL":[27.6,181.2],"ftL":[34.3,330.4]},{"rootY":9,"hips":[0,0],"chest":[-3.6,-67.8],"neck":[-3.6,-67.8],"head":[1.5,-133.3],"shR":[-61,-95.1],"elR":[-78.2,11.6],"haR":[-91,79.8],"shL":[64.1,-90.8],"elL":[75,5.4],"haL":[86.4,75.7],"hipR":[-29.3,40.5],"knR":[-23.7,178.2],"ftR":[-47.5,327.6],"hipL":[32.1,37.7],"knL":[28.2,180.2],"ftL":[33.9,329.2]},{"rootY":10,"hips":[0,0],"chest":[-3.9,-66.6],"neck":[-3.9,-66.6],"head":[0.9,-131.6],"shR":[-61.4,-93.5],"elR":[-78.2,11.5],"haR":[-91.4,80.1],"shL":[63.7,-89.7],"elL":[76.1,4.9],"haL":[88.4,75.3],"hipR":[-29.1,40.6],"knR":[-23.3,177.7],"ftR":[-47.9,326.6],"hipL":[32.3,37.5],"knL":[28.1,179.5],"ftL":[33.5,328.2]},{"rootY":10.8,"hips":[0,0],"chest":[-4,-65.5],"neck":[-4,-65.5],"head":[0.7,-130],"shR":[-61.6,-92],"elR":[-78.3,10.7],"haR":[-91.6,79.6],"shL":[63.6,-88.7],"elL":[77.2,3.8],"haL":[90.8,74],"hipR":[-28.6,41],"knR":[-22.9,177.5],"ftR":[-47.9,325.7],"hipL":[32.8,37.1],"knL":[28.3,178.8],"ftL":[33.2,327.4]},{"rootY":11.1,"hips":[0,0],"chest":[-4.1,-64.5],"neck":[-4.1,-64.5],"head":[0.3,-128.8],"shR":[-61.8,-90.5],"elR":[-78.3,9.5],"haR":[-91.6,78.7],"shL":[63.4,-87.9],"elL":[78.2,1.8],"haL":[93.2,71.5],"hipR":[-28.5,41],"knR":[-23.2,177.3],"ftR":[-48.2,325.3],"hipL":[33,37],"knL":[28.2,178.7],"ftL":[32.9,327.1]},{"rootY":11.2,"hips":[0,0],"chest":[-4.2,-63.4],"neck":[-4.2,-63.4],"head":[0,-127.5],"shR":[-62,-89.1],"elR":[-78.6,7.2],"haR":[-91.8,76.4],"shL":[63.2,-86.9],"elL":[79.1,-0.8],"haL":[95.9,67.6],"hipR":[-28.3,41],"knR":[-23.5,177.3],"ftR":[-48.4,325.1],"hipL":[33.1,36.9],"knL":[28.5,178.7],"ftL":[32.8,326.9]},{"rootY":11.6,"hips":[0,0],"chest":[-4.3,-62.4],"neck":[-4.3,-62.4],"head":[-0.3,-126.3],"shR":[-62.1,-87.9],"elR":[-79,4.5],"haR":[-92.2,73.2],"shL":[63.2,-85.7],"elL":[80.4,-4.2],"haL":[98.9,62.1],"hipR":[-28.4,40.9],"knR":[-23.5,177.2],"ftR":[-48.5,324.6],"hipL":[33.1,37],"knL":[29.2,178.5],"ftL":[32.9,326.4]},{"rootY":12,"hips":[0,0],"chest":[-4.4,-61.3],"neck":[-4.4,-61.3],"head":[-0.5,-125],"shR":[-62.3,-86.5],"elR":[-79.3,1.4],"haR":[-92.9,68.9],"shL":[63,-84.4],"elL":[81.3,-8.1],"haL":[101.6,55.1],"hipR":[-28.4,40.8],"knR":[-23.6,177.1],"ftR":[-48.6,324.1],"hipL":[33.1,37],"knL":[29.3,178.4],"ftL":[32.8,325.9]},{"rootY":12.8,"hips":[0,0],"chest":[-4.4,-60.1],"neck":[-4.4,-60.1],"head":[-0.5,-123.5],"shR":[-62.3,-85.1],"elR":[-79.3,-2.2],"haR":[-93.6,63.5],"shL":[63,-83.1],"elL":[82.1,-12.3],"haL":[103.8,47],"hipR":[-28.4,40.8],"knR":[-23.2,176.9],"ftR":[-48.6,323.1],"hipL":[33.1,36.9],"knL":[29.6,178.1],"ftL":[32.9,324.8]},{"rootY":14.7,"hips":[0,0],"chest":[-4.3,-58.9],"neck":[-4.3,-58.9],"head":[-0.3,-121.9],"shR":[-62.3,-83.3],"elR":[-79,-5.5],"haR":[-94,57.8],"shL":[63.1,-81.9],"elL":[82.7,-16.6],"haL":[105.6,38.7],"hipR":[-28.2,40.8],"knR":[-22.8,176.3],"ftR":[-48.6,321.4],"hipL":[33.3,36.8],"knL":[29.8,177.2],"ftL":[33.2,322.9]},{"rootY":17.6,"hips":[0,0],"chest":[-4,-57.4],"neck":[-4,-57.4],"head":[0,-120.1],"shR":[-62,-81.2],"elR":[-78.9,-8],"haR":[-94.2,52.8],"shL":[63.4,-80.3],"elL":[83.2,-19.5],"haL":[107,32.1],"hipR":[-27.9,41],"knR":[-21.9,175.3],"ftR":[-48.1,318.7],"hipL":[33.6,36.4],"knL":[30.9,175.7],"ftL":[33.7,320.3]},{"rootY":21,"hips":[0,0],"chest":[-3.7,-56],"neck":[-3.7,-56],"head":[0.4,-118.3],"shR":[-61.7,-79.3],"elR":[-78.7,-10],"haR":[-94.4,48.4],"shL":[63.7,-79.1],"elL":[83.2,-22.5],"haL":[107.4,26.5],"hipR":[-27.5,41.3],"knR":[-21.2,174],"ftR":[-47.4,315.5],"hipL":[34.1,35.8],"knL":[32,173.9],"ftL":[34.4,317]},{"rootY":25.3,"hips":[0,0],"chest":[-3.6,-54.7],"neck":[-3.6,-54.7],"head":[0.6,-116.7],"shR":[-61.6,-77.3],"elR":[-78.4,-10.2],"haR":[-94.3,46],"shL":[63.8,-78.1],"elL":[82.2,-23.7],"haL":[106.7,23.6],"hipR":[-27.2,41.5],"knR":[-20.8,172.1],"ftR":[-46.5,311.3],"hipL":[34.3,35.5],"knL":[32.8,172.1],"ftL":[34.9,313.1]},{"rootY":29.7,"hips":[0,0],"chest":[-3.3,-53.6],"neck":[-3.3,-53.6],"head":[0.9,-115.2],"shR":[-61.3,-75.6],"elR":[-77.8,-8.7],"haR":[-93.3,45.9],"shL":[64,-77.3],"elL":[81.7,-23.1],"haL":[105.7,23.9],"hipR":[-26.7,41.8],"knR":[-20,170.3],"ftR":[-45.4,306.6],"hipL":[34.7,35.1],"knL":[33.9,170.2],"ftL":[35.7,309]},{"rootY":33.9,"hips":[0,0],"chest":[-3.6,-53.6],"neck":[-3.6,-53.6],"head":[0.2,-115.1],"shR":[-61.7,-74.9],"elR":[-78,-5.7],"haR":[-93.5,48.1],"shL":[63.6,-77.8],"elL":[80.4,-21.5],"haL":[103.6,26.7],"hipR":[-25.9,42.4],"knR":[-19.9,169.9],"ftR":[-45.3,302.5],"hipL":[35.4,34.4],"knL":[34.8,168.7],"ftL":[35.4,304.8]},{"rootY":38.7,"hips":[0,0],"chest":[-3.5,-53.6],"neck":[-3.5,-53.6],"head":[0,-115.5],"shR":[-61.7,-74.5],"elR":[-77.6,-1.3],"haR":[-92.6,52.7],"shL":[63.6,-78.4],"elL":[79.4,-18.1],"haL":[101.5,32.5],"hipR":[-26.2,42.3],"knR":[-19.3,168.3],"ftR":[-44.5,297],"hipL":[35.2,34.6],"knL":[35.6,167.5],"ftL":[35.8,300.5]},{"rootY":43.9,"hips":[0,0],"chest":[-4.2,-53.4],"neck":[-4.2,-53.4],"head":[-1.1,-115.7],"shR":[-62.5,-73.8],"elR":[-78,4.3],"haR":[-92.4,60.2],"shL":[62.7,-78.9],"elL":[77.3,-14],"haL":[98.1,40.8],"hipR":[-25.6,42.8],"knR":[-19.5,166.9],"ftR":[-44.1,291.2],"hipL":[35.7,34.1],"knL":[35.5,165.4],"ftL":[35.3,294.3]},{"rootY":49.8,"hips":[0,0],"chest":[-4.2,-53.7],"neck":[-4.2,-53.7],"head":[-1.3,-116.6],"shR":[-62.6,-73.7],"elR":[-77.4,10.2],"haR":[-90.9,69.5],"shL":[62.5,-79.9],"elL":[76.1,-9.3],"haL":[95.1,50.3],"hipR":[-25.7,42.8],"knR":[-19.6,164.8],"ftR":[-43.5,283.5],"hipL":[35.6,34.2],"knL":[35.5,163.5],"ftL":[36,287.6]},{"rootY":55.7,"hips":[0,0],"chest":[-4.3,-54],"neck":[-4.3,-54],"head":[-1.8,-117.6],"shR":[-62.9,-73.9],"elR":[-76.8,16.4],"haR":[-88.9,80.3],"shL":[62.3,-80.8],"elL":[74.8,-3.5],"haL":[91.7,60.9],"hipR":[-25.5,43],"knR":[-20.5,161.9],"ftR":[-43.7,274.5],"hipL":[35.7,34.1],"knL":[34.9,161],"ftL":[36.9,279.3]},{"rootY":61.2,"hips":[0,0],"chest":[-4.6,-55],"neck":[-4.6,-55],"head":[-2.3,-119.2],"shR":[-63.2,-75],"elR":[-75.9,22.8],"haR":[-86.3,90.9],"shL":[61.9,-82.1],"elL":[74.1,3],"haL":[87.9,71.4],"hipR":[-25.1,43.3],"knR":[-22.3,159.3],"ftR":[-44.3,265.1],"hipL":[36,33.9],"knL":[34.4,158.8],"ftL":[36.7,270.8]},{"rootY":66.4,"hips":[0,0],"chest":[-4.7,-57],"neck":[-4.7,-57],"head":[-2.6,-122.2],"shR":[-63.3,-77.3],"elR":[-74.5,28.1],"haR":[-81.9,98.1],"shL":[61.7,-84.6],"elL":[73.6,8.3],"haL":[83.7,79.1],"hipR":[-24.3,43.8],"knR":[-24.5,157.6],"ftR":[-44.5,256.3],"hipL":[36.7,33.3],"knL":[34.2,158],"ftL":[36.8,264.3]},{"rootY":70.5,"hips":[0,0],"chest":[-4.7,-59.7],"neck":[-4.7,-59.7],"head":[-3,-126.1],"shR":[-63.4,-80.4],"elR":[-72.6,31.8],"haR":[-78,99.6],"shL":[61.6,-88],"elL":[73.1,11.2],"haL":[79.4,78.6],"hipR":[-25.2,43.3],"knR":[-25,157.4],"ftR":[-44.3,249.6],"hipL":[35.9,34.1],"knL":[34.1,159.6],"ftL":[37.5,259.8]},{"rootY":71,"hips":[0,0],"chest":[-4.5,-62.8],"neck":[-4.5,-62.8],"head":[-3,-130.4],"shR":[-63.2,-83.8],"elR":[-73.5,32.8],"haR":[-76.2,91.3],"shL":[61.7,-91.9],"elL":[77.2,11.2],"haL":[77.9,63.6],"hipR":[-25.8,42.9],"knR":[-24.3,161],"ftR":[-45.8,247.2],"hipL":[35.5,34.7],"knL":[33.1,163.5],"ftL":[37.5,257.4]},{"rootY":68.3,"hips":[0,0],"chest":[-3.3,-65.2],"neck":[-3.3,-65.2],"head":[-1.7,-133.5],"shR":[-62.1,-87.1],"elR":[-77.4,30.1],"haR":[-77.8,70.4],"shL":[62.9,-94.4],"elL":[86.9,6.5],"haL":[82,33.9],"hipR":[-26.4,42.5],"knR":[-21.8,165.4],"ftR":[-45.4,249.3],"hipL":[35,35.2],"knL":[35.1,167.4],"ftL":[37.9,259.8]},{"rootY":60,"hips":[0,0],"chest":[-2.7,-68],"neck":[-2.7,-68],"head":[-1,-136.5],"shR":[-61.5,-91.2],"elR":[-84.2,19.7],"haR":[-82.2,35],"shL":[63.8,-96.5],"elL":[98.9,-6.3],"haL":[88.8,-7.4],"hipR":[-27.2,41.9],"knR":[-22.1,172.3],"ftR":[-45.1,256.7],"hipL":[34.3,35.7],"knL":[38.2,174.4],"ftL":[37.5,266.8]},{"rootY":46.6,"hips":[0,0],"chest":[-2.8,-71.3],"neck":[-2.8,-71.3],"head":[-0.8,-139.7],"shR":[-61.5,-95.5],"elR":[-93.8,2.7],"haR":[-89,-5.9],"shL":[63.9,-99.5],"elL":[108.5,-25],"haL":[96.2,-48.8],"hipR":[-27.6,41.6],"knR":[-25.5,179.3],"ftR":[-45.8,267.9],"hipL":[33.9,35.8],"knL":[40.8,180.3],"ftL":[38.1,276.2]},{"rootY":27.3,"hips":[0,0],"chest":[-3.3,-74.6],"neck":[-3.3,-74.6],"head":[-1.2,-142.4],"shR":[-62.1,-98.9],"elR":[-104.3,-16.6],"haR":[-96.9,-40.3],"shL":[63.2,-103.1],"elL":[115.2,-43.3],"haL":[102.9,-80.8],"hipR":[-27.7,41.5],"knR":[-28.2,184.4],"ftR":[-48.3,280.8],"hipL":[33.8,35.6],"knL":[41.3,183],"ftL":[41.1,286]},{"rootY":2.7,"hips":[0,0],"chest":[-4.3,-77.3],"neck":[-4.3,-77.3],"head":[-2.7,-144.3],"shR":[-63.1,-100.8],"elR":[-113.3,-31.6],"haR":[-105.5,-62.2],"shL":[62.2,-105.8],"elL":[117,-54.7],"haL":[107,-98.7],"hipR":[-28.8,40.7],"knR":[-28.5,184.4],"ftR":[-53.6,294],"hipL":[32.9,36.5],"knL":[39.9,183],"ftL":[46.2,297.1]},{"rootY":-21.4,"hips":[0,0],"chest":[-5.5,-77.7],"neck":[-5.5,-77.7],"head":[-4.3,-144.1],"shR":[-64,-101.6],"elR":[-119,-38.8],"haR":[-113.4,-71.8],"shL":[61.3,-104.4],"elL":[115.9,-54.5],"haL":[110.2,-101],"hipR":[-30,39.8],"knR":[-29.3,182.1],"ftR":[-59,302.7],"hipL":[31.8,37.6],"knL":[38.2,182.3],"ftL":[52,305.8]},{"rootY":-40.6,"hips":[0,0],"chest":[-5.9,-77.5],"neck":[-5.9,-77.5],"head":[-4.8,-143.5],"shR":[-64.4,-101.3],"elR":[-121.8,-38.1],"haR":[-120.4,-69],"shL":[61,-103.6],"elL":[114.4,-47.3],"haL":[114.7,-92.3],"hipR":[-30.2,39.6],"knR":[-26.9,182.5],"ftR":[-57.5,302.2],"hipL":[31.6,37.7],"knL":[37.8,183.4],"ftL":[51.1,306.1]},{"rootY":-56.4,"hips":[0,0],"chest":[-5,-77.7],"neck":[-5,-77.7],"head":[-3.9,-143.7],"shR":[-63.5,-101.7],"elR":[-121.6,-32.5],"haR":[-125.1,-57.6],"shL":[61.9,-103.7],"elL":[112,-37.2],"haL":[120.5,-76.3],"hipR":[-29.4,39.8],"knR":[-23.9,183.6],"ftR":[-51.3,299.2],"hipL":[32.4,36.5],"knL":[38.7,183.5],"ftL":[48.4,305.4]},{"rootY":-69.3,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4,-144.2],"shR":[-63.2,-102.1],"elR":[-120.9,-26],"haR":[-129.8,-42.3],"shL":[62.2,-104],"elL":[108.2,-27.4],"haL":[124.9,-55.2],"hipR":[-29,39.5],"knR":[-24,183.2],"ftR":[-47.8,301.2],"hipL":[32.7,35.6],"knL":[40,183],"ftL":[47.3,308.9]},{"rootY":-78.8,"hips":[0,0],"chest":[-4.7,-77.8],"neck":[-4.7,-77.8],"head":[-3.9,-144.7],"shR":[-63.1,-102.3],"elR":[-119.7,-19.3],"haR":[-133.2,-24.7],"shL":[62.2,-104.2],"elL":[103.5,-20.2],"haL":[127.2,-33.1],"hipR":[-28.4,39.6],"knR":[-24.4,182.8],"ftR":[-46.1,309],"hipL":[33.2,34.8],"knL":[41.1,182.1],"ftL":[47.2,315.3]},{"rootY":-84.2,"hips":[0,0],"chest":[-4.8,-77.8],"neck":[-4.8,-77.8],"head":[-4.1,-145.1],"shR":[-63.2,-102.3],"elR":[-117.9,-13],"haR":[-135.1,-6.7],"shL":[62.2,-104.5],"elL":[99.7,-14.7],"haL":[126.8,-10.6],"hipR":[-29.3,39.2],"knR":[-24.7,181.2],"ftR":[-43.8,318],"hipL":[32.4,35.6],"knL":[40.7,182.2],"ftL":[47.6,323.4]},{"rootY":-85.7,"hips":[0,0],"chest":[-4.8,-77.7],"neck":[-4.8,-77.7],"head":[-4.3,-145.4],"shR":[-63.3,-102.2],"elR":[-116.2,-7.1],"haR":[-135.6,10.8],"shL":[62,-104.8],"elL":[97.1,-10.9],"haL":[124.4,10],"hipR":[-29.4,39.1],"knR":[-24.7,180.1],"ftR":[-42,325.8],"hipL":[32.4,35.7],"knL":[39.8,181],"ftL":[48.3,328.8]},{"rootY":-83.7,"hips":[0,0],"chest":[-4.9,-77.6],"neck":[-4.9,-77.6],"head":[-4.5,-145.6],"shR":[-63.4,-102.2],"elR":[-114.3,-2],"haR":[-134.8,26.9],"shL":[62,-104.9],"elL":[94.9,-8],"haL":[120.5,28.4],"hipR":[-29.6,38.8],"knR":[-25.3,179],"ftR":[-41.5,331.5],"hipL":[32.2,35.8],"knL":[39.1,179.5],"ftL":[50.1,332.4]},{"rootY":-77.8,"hips":[0,0],"chest":[-4.6,-77.5],"neck":[-4.6,-77.5],"head":[-4.2,-145.7],"shR":[-63.1,-102.2],"elR":[-111.7,2],"haR":[-132.9,40.8],"shL":[62.3,-104.9],"elL":[92.6,-5.7],"haL":[116.8,42.9],"hipR":[-29.8,38.5],"knR":[-26.2,177.8],"ftR":[-41,334.5],"hipL":[32,36],"knL":[38.8,177.7],"ftL":[52.5,333.6]},{"rootY":-67.9,"hips":[0,0],"chest":[-4.2,-77.4],"neck":[-4.2,-77.4],"head":[-3.9,-145.8],"shR":[-62.6,-102.4],"elR":[-108.7,5],"haR":[-129.8,51.9],"shL":[62.8,-104.6],"elL":[89.9,-3.6],"haL":[111.9,53.8],"hipR":[-29.5,38.6],"knR":[-27.1,176.8],"ftR":[-40.5,335.3],"hipL":[32.2,35.7],"knL":[39,175.3],"ftL":[53.8,332.2]},{"rootY":-53.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-3.3,-145.9],"shR":[-62.2,-102.7],"elR":[-105.4,7.1],"haR":[-125.9,60.5],"shL":[63.2,-104.3],"elL":[87.3,-2.3],"haL":[106.9,60.7],"hipR":[-29,39],"knR":[-28,175.6],"ftR":[-41.1,334.1],"hipL":[32.7,35],"knL":[39.9,173],"ftL":[55.1,329.3]},{"rootY":-35,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-3.8,-146.1],"shR":[-62.5,-102.9],"elR":[-102.1,8.7],"haR":[-121.5,66.8],"shL":[62.9,-104.2],"elL":[83.7,-2.1],"haL":[101.4,64],"hipR":[-28.9,39],"knR":[-29,173.6],"ftR":[-42.8,331.5],"hipL":[32.8,34.5],"knL":[40.6,170.8],"ftL":[55.4,326.5]},{"rootY":-11.7,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.7,-146.3],"shR":[-63.2,-102.9],"elR":[-99.1,10],"haR":[-117.3,71.3],"shL":[62.2,-104.3],"elL":[79.7,-2.8],"haL":[96.3,64.9],"hipR":[-29.6,38.2],"knR":[-29.3,169.3],"ftR":[-43.6,327.6],"hipL":[32.1,34.2],"knL":[39.8,167.6],"ftL":[53.8,324.2]},{"rootY":17.4,"hips":[0,0],"chest":[-5,-77.6],"neck":[-5,-77.6],"head":[-3.5,-146.3],"shR":[-63.1,-102.9],"elR":[-94.9,11.1],"haR":[-112.4,74.2],"shL":[62.3,-104.1],"elL":[76.6,-3.4],"haL":[92.3,65.2],"hipR":[-29.7,37.5],"knR":[-27.8,159.9],"ftR":[-40.4,317.2],"hipL":[31.9,33.1],"knL":[40.3,159.5],"ftL":[49.4,315.4]},{"rootY":42.4,"hips":[0,0],"chest":[-3.7,-77.6],"neck":[-3.7,-77.6],"head":[-1.6,-146.3],"shR":[-61.6,-103.1],"elR":[-87.3,12.3],"haR":[-103.8,77.1],"shL":[63.8,-103.9],"elL":[74.2,-3.6],"haL":[88.9,65.7],"hipR":[-27.1,37.6],"knR":[-23.8,144.3],"ftR":[-37.1,294],"hipL":[34.1,28.9],"knL":[41.2,143.7],"ftL":[48,293.3]},{"rootY":59.8,"hips":[0,0],"chest":[-3.3,-77.4],"neck":[-3.3,-77.4],"head":[-0.5,-146.2],"shR":[-61.5,-102.7],"elR":[-80.1,14.1],"haR":[-95.7,80.8],"shL":[63.9,-104.3],"elL":[71.9,-2.1],"haL":[85.8,68.1],"hipR":[-26.3,36.6],"knR":[-24.3,133.2],"ftR":[-32.6,275],"hipL":[34.6,26.3],"knL":[43.3,132.1],"ftL":[48.6,274.1]},{"rootY":69.8,"hips":[0,0],"chest":[-3.9,-77.3],"neck":[-3.9,-77.3],"head":[-1.2,-146.1],"shR":[-62,-102.8],"elR":[-73.5,15],"haR":[-87.6,83.2],"shL":[63.4,-103.9],"elL":[68.6,-0.6],"haL":[82.6,69.5],"hipR":[-27.6,36.2],"knR":[-27.3,131.8],"ftR":[-30.8,268.3],"hipL":[33.6,27.4],"knL":[46.3,132.2],"ftL":[46.6,269.6]},{"rootY":77.4,"hips":[0,0],"chest":[-4.3,-77.4],"neck":[-4.3,-77.4],"head":[-1.1,-146.1],"shR":[-62.2,-103.1],"elR":[-69.2,15.1],"haR":[-80,84],"shL":[63.2,-103.6],"elL":[67.8,-0.3],"haL":[81.3,69.8],"hipR":[-27.8,36.4],"knR":[-29.1,128.9],"ftR":[-30.5,260.8],"hipL":[33.3,27.9],"knL":[47.6,129.6],"ftL":[47.4,262.3]},{"rootY":80.1,"hips":[0,0],"chest":[-3.4,-77.4],"neck":[-3.4,-77.4],"head":[0,-146.2],"shR":[-61.3,-103.2],"elR":[-66.1,14.7],"haR":[-74.1,83.6],"shL":[64,-103.7],"elL":[68.9,-0.5],"haL":[82.4,69.4],"hipR":[-27.7,36.3],"knR":[-29.3,129],"ftR":[-28.5,257.7],"hipL":[33.4,27.7],"knL":[47,129.4],"ftL":[48.4,259.4]},{"rootY":79.4,"hips":[0,0],"chest":[-3,-77.4],"neck":[-3,-77.4],"head":[1.1,-146.1],"shR":[-60.7,-103.7],"elR":[-64.5,14.1],"haR":[-70.5,83.1],"shL":[64.6,-103.4],"elL":[70.7,-0.1],"haL":[84,69.3],"hipR":[-28.1,36.4],"knR":[-29,131],"ftR":[-27.2,258.4],"hipL":[33.1,28.3],"knL":[45.1,131.7],"ftL":[49.1,260]},{"rootY":76.9,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2,-146.1],"shR":[-60.1,-104],"elR":[-62.8,13.7],"haR":[-68.2,82.9],"shL":[65.2,-103.1],"elL":[72.1,0.5],"haL":[85.8,69.5],"hipR":[-28.2,36.7],"knR":[-28.2,133.4],"ftR":[-26.1,261.1],"hipL":[33,28.6],"knL":[42.3,134.5],"ftL":[49.6,262.3]},{"rootY":72.4,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[2.2,-146.2],"shR":[-59.8,-104.2],"elR":[-62.2,13.6],"haR":[-68.1,83],"shL":[65.5,-102.9],"elL":[73.5,0.9],"haL":[87.5,69.5],"hipR":[-28.6,37],"knR":[-27.8,136.9],"ftR":[-25.3,265.5],"hipL":[32.5,29.4],"knL":[39.6,138.7],"ftL":[50.3,266.6]},{"rootY":66.8,"hips":[0,0],"chest":[-2.5,-77.5],"neck":[-2.5,-77.5],"head":[2.4,-146.2],"shR":[-59.8,-104.4],"elR":[-63.6,13.5],"haR":[-69.8,82.8],"shL":[65.4,-102.7],"elL":[74.7,1.3],"haL":[88.8,69.5],"hipR":[-29,37.4],"knR":[-27.8,141.3],"ftR":[-24.8,271.3],"hipL":[32.1,30.2],"knL":[37.3,143.4],"ftL":[50.8,272]},{"rootY":60.4,"hips":[0,0],"chest":[-2.8,-77.5],"neck":[-2.8,-77.5],"head":[2.3,-146.2],"shR":[-59.9,-104.7],"elR":[-65.2,13.3],"haR":[-72,82.4],"shL":[65.1,-102.5],"elL":[75.7,1.5],"haL":[90,69.5],"hipR":[-29.1,37.7],"knR":[-28.1,146],"ftR":[-24.6,277.7],"hipL":[31.9,30.6],"knL":[35.7,148.3],"ftL":[51.4,278.2]},{"rootY":53.8,"hips":[0,0],"chest":[-3,-77.5],"neck":[-3,-77.5],"head":[2.3,-146.2],"shR":[-60,-104.7],"elR":[-66.8,13.3],"haR":[-74.5,82],"shL":[64.9,-102.5],"elL":[75.9,1.5],"haL":[90.1,69.2],"hipR":[-29.5,37.8],"knR":[-28.4,150.6],"ftR":[-24.7,284.4],"hipL":[31.5,31.2],"knL":[34.4,153.2],"ftL":[51.8,284.7]},{"rootY":47.3,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.2,13.3],"haR":[-76.9,81.5],"shL":[64.7,-102.5],"elL":[76,1.5],"haL":[89.9,69.1],"hipR":[-29.5,38.1],"knR":[-28.4,155],"ftR":[-24.5,290.8],"hipL":[31.5,31.6],"knL":[33.6,157.6],"ftL":[52,290.9]},{"rootY":40.7,"hips":[0,0],"chest":[-3.3,-77.6],"neck":[-3.3,-77.6],"head":[2.7,-146.2],"shR":[-59.9,-104.7],"elR":[-68.9,13.3],"haR":[-79.3,80.9],"shL":[64.5,-102.5],"elL":[75.4,1.6],"haL":[88.9,69.1],"hipR":[-29.8,38.2],"knR":[-27.8,159.4],"ftR":[-24.5,297.2],"hipL":[31.1,32.2],"knL":[32.5,162],"ftL":[52.1,297.2]},{"rootY":34.8,"hips":[0,0],"chest":[-3.4,-77.6],"neck":[-3.4,-77.6],"head":[2.7,-146.2],"shR":[-59.8,-104.6],"elR":[-70.1,13.3],"haR":[-81.8,80.3],"shL":[64.3,-102.6],"elL":[74.5,1.6],"haL":[87.4,69.1],"hipR":[-30.2,38.3],"knR":[-26.7,163.1],"ftR":[-24.5,303.1],"hipL":[30.7,32.8],"knL":[31.8,166],"ftL":[52.4,302.9]},{"rootY":29.4,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[2.7,-146.2],"shR":[-59.7,-104.5],"elR":[-71,13.4],"haR":[-84,79.9],"shL":[64.1,-102.8],"elL":[73.5,1.5],"haL":[85.6,69.2],"hipR":[-30.3,38.5],"knR":[-25.8,166.5],"ftR":[-24.6,308.2],"hipL":[30.6,33.4],"knL":[31.3,169.5],"ftL":[52.4,308.1]},{"rootY":24.5,"hips":[0,0],"chest":[-3.5,-77.7],"neck":[-3.5,-77.7],"head":[2.9,-146.2],"shR":[-59.6,-104.4],"elR":[-72,13.4],"haR":[-85.9,79.5],"shL":[64,-102.9],"elL":[72.6,1.4],"haL":[83.9,69.3],"hipR":[-30.4,38.7],"knR":[-25.2,169.6],"ftR":[-24.7,312.8],"hipL":[30.4,33.7],"knL":[31.5,172.6],"ftL":[52.8,312.9]},{"rootY":20,"hips":[0,0],"chest":[-3.4,-77.7],"neck":[-3.4,-77.7],"head":[3.1,-146.3],"shR":[-59.4,-104.3],"elR":[-72.8,13.4],"haR":[-87.7,79.1],"shL":[63.9,-103],"elL":[71.7,1.4],"haL":[82.3,69.5],"hipR":[-30.4,38.8],"knR":[-24.9,172.4],"ftR":[-24.9,317.2],"hipL":[30.3,34],"knL":[32.1,175.2],"ftL":[53.1,317.1]},{"rootY":16.2,"hips":[0,0],"chest":[-3.6,-77.7],"neck":[-3.6,-77.7],"head":[3.2,-146.2],"shR":[-59.3,-104.3],"elR":[-73.6,13.3],"haR":[-89.2,78.7],"shL":[63.8,-102.9],"elL":[70.7,1.6],"haL":[80.8,69.9],"hipR":[-30.5,38.9],"knR":[-24.9,174.6],"ftR":[-24.9,320.9],"hipL":[30.1,34.4],"knL":[32.9,177.4],"ftL":[53.1,320.8]},{"rootY":13.1,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.5,-146.2],"shR":[-59.3,-104.2],"elR":[-74,13.3],"haR":[-90.2,78.6],"shL":[63.7,-103],"elL":[70,1.5],"haL":[79.7,69.8],"hipR":[-30.3,39.2],"knR":[-24.9,176.6],"ftR":[-25.2,323.8],"hipL":[30.3,34.5],"knL":[33.7,179],"ftL":[53.1,324.1]},{"rootY":10.5,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.6,-146.2],"shR":[-59.2,-104.2],"elR":[-74.5,13.3],"haR":[-91.2,78.4],"shL":[63.6,-103],"elL":[69.5,1.6],"haL":[78.9,70],"hipR":[-30.2,39.4],"knR":[-24.6,178.2],"ftR":[-25.5,326.2],"hipL":[30.4,34.7],"knL":[34.1,180.2],"ftL":[53,326.5]},{"rootY":8.6,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[3.7,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-91.7,78.4],"shL":[63.6,-103],"elL":[69.2,1.5],"haL":[78.3,70],"hipR":[-30.4,39.3],"knR":[-24.2,179.2],"ftR":[-25.6,328],"hipL":[30.3,35.1],"knL":[34.1,181.3],"ftL":[52.8,328.3]},{"rootY":7,"hips":[0,0],"chest":[-3.6,-77.8],"neck":[-3.6,-77.8],"head":[3.9,-146.2],"shR":[-59.2,-104.1],"elR":[-74.6,13.3],"haR":[-92.1,78.5],"shL":[63.7,-103.1],"elL":[69.1,1.5],"haL":[78,70],"hipR":[-30.6,39.2],"knR":[-23.8,179.9],"ftR":[-25.5,329.2],"hipL":[30.1,35.5],"knL":[34.2,182.2],"ftL":[52.6,330]},{"rootY":5.7,"hips":[0,0],"chest":[-3.3,-77.8],"neck":[-3.3,-77.8],"head":[4.2,-146.2],"shR":[-58.9,-104.2],"elR":[-74.2,13.3],"haR":[-91.7,78.6],"shL":[64,-103],"elL":[69.2,1.5],"haL":[78.1,70.1],"hipR":[-30.7,39.2],"knR":[-23.3,180.5],"ftR":[-25.3,330.3],"hipL":[30.2,35.7],"knL":[34.3,182.8],"ftL":[52.5,331.2]},{"rootY":4.9,"hips":[0,0],"chest":[-3.1,-77.8],"neck":[-3.1,-77.8],"head":[4.5,-146.2],"shR":[-58.7,-104.3],"elR":[-73.8,13.2],"haR":[-91.2,78.7],"shL":[64.3,-102.9],"elL":[69.6,1.7],"haL":[78.7,70.3],"hipR":[-30.6,39.3],"knR":[-23,181],"ftR":[-25.1,331],"hipL":[30.3,35.7],"knL":[34.5,183],"ftL":[52.3,332]},{"rootY":4.2,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[4.9,-146.2],"shR":[-58.6,-104.3],"elR":[-73.5,13.2],"haR":[-90.6,79.1],"shL":[64.5,-102.9],"elL":[69.8,1.6],"haL":[79.1,70.1],"hipR":[-30.5,39.3],"knR":[-23,181.4],"ftR":[-25.1,331.4],"hipL":[30.4,35.8],"knL":[34.7,183.3],"ftL":[52.1,332.6]},{"rootY":3.9,"hips":[0,0],"chest":[-2.9,-77.8],"neck":[-2.9,-77.8],"head":[5,-146.2],"shR":[-58.5,-104.5],"elR":[-72.9,13],"haR":[-89.7,79.1],"shL":[64.6,-102.7],"elL":[70.4,1.8],"haL":[79.9,70.3],"hipR":[-30.7,39.2],"knR":[-23.2,181.5],"ftR":[-25.4,331.6],"hipL":[30.2,36],"knL":[34.6,183.6],"ftL":[52,333]},{"rootY":3.8,"hips":[0,0],"chest":[-2.8,-77.8],"neck":[-2.8,-77.8],"head":[5.4,-146.2],"shR":[-58.3,-104.7],"elR":[-72.4,12.8],"haR":[-88.6,79.1],"shL":[64.9,-102.5],"elL":[70.9,2],"haL":[80.8,70.5],"hipR":[-30.8,39.1],"knR":[-23.1,181.6],"ftR":[-25.4,331.6],"hipL":[30.2,36.2],"knL":[34.7,183.7],"ftL":[52.2,333.4]},{"rootY":3.8,"hips":[0,0],"chest":[-2.5,-77.9],"neck":[-2.5,-77.9],"head":[5.9,-146.1],"shR":[-58,-104.7],"elR":[-71.6,12.8],"haR":[-87.7,79.1],"shL":[65.2,-102.4],"elL":[71.3,2],"haL":[81.6,70.5],"hipR":[-30.6,39.2],"knR":[-22.8,181.8],"ftR":[-25.4,331.6],"hipL":[30.4,36.1],"knL":[35,183.6],"ftL":[52.4,333.4]},{"rootY":3.7,"hips":[0,0],"chest":[-2.3,-77.9],"neck":[-2.3,-77.9],"head":[6.3,-146.1],"shR":[-57.7,-104.9],"elR":[-70.7,12.6],"haR":[-86.1,79.3],"shL":[65.5,-102.2],"elL":[71.9,2.1],"haL":[82.4,70.8],"hipR":[-30.6,39.2],"knR":[-22.6,181.9],"ftR":[-25.4,331.7],"hipL":[30.4,36],"knL":[35.3,183.6],"ftL":[52.3,333.5]},{"rootY":3.4,"hips":[0,0],"chest":[-2.2,-77.9],"neck":[-2.2,-77.9],"head":[6.5,-146.1],"shR":[-57.6,-105],"elR":[-70.2,12.5],"haR":[-85.6,79.2],"shL":[65.5,-102.1],"elL":[72,2.2],"haL":[82.8,70.9],"hipR":[-30.8,39.1],"knR":[-22.8,181.9],"ftR":[-25.7,331.9],"hipL":[30.3,36.2],"knL":[35,183.8],"ftL":[51.9,333.6]}]},"kick":{"name":"kick","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-87.6],"neck":[0.6,-87.6],"head":[0.4,-152.5],"shR":[-58.7,-112.6],"elR":[-171.2,-96.8],"haR":[-238.3,-87.4],"shL":[65.5,-107.1],"elL":[168.9,-92.6],"haL":[234.9,-83.3],"hipR":[-23.1,36.4],"knR":[-20.5,186.4],"ftR":[-17.8,340.7],"hipL":[27.2,36.4],"knL":[24.7,179.8],"ftL":[21.8,343.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.3,-152.4],"shR":[-32.2,-108.8],"elR":[-33.7,4.3],"haR":[-63.2,64.9],"shL":[62.6,-110.4],"elL":[70.1,-6.5],"haL":[57,52.4],"hipR":[-31,34.6],"knR":[-64.3,179.9],"ftR":[-51.8,320.6],"hipL":[8.7,38.3],"knL":[-5,180.7],"ftL":[38.3,325.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[13.5,-152.4],"shR":[-32.3,-108.7],"elR":[-34.3,4.5],"haR":[-64.3,64.9],"shL":[62.7,-110.4],"elL":[70,-6.6],"haL":[56.9,52.5],"hipR":[-30.9,34.6],"knR":[-64.5,180],"ftR":[-52.1,320.6],"hipL":[8.7,38.3],"knL":[-5.2,180.6],"ftL":[38,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14,-152.3],"shR":[-32.2,-108.8],"elR":[-34.8,4.4],"haR":[-65,64.8],"shL":[62.9,-110.4],"elL":[69.8,-6.5],"haL":[56.9,52.7],"hipR":[-30.9,34.7],"knR":[-64.5,180],"ftR":[-52.2,320.5],"hipL":[8.9,38.2],"knL":[-5,180.6],"ftL":[37.9,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[14.2,-152.3],"shR":[-32.6,-108.6],"elR":[-35.2,4.6],"haR":[-65.6,64.7],"shL":[63.1,-110.5],"elL":[69.8,-6.6],"haL":[57,52.7],"hipR":[-30.8,34.8],"knR":[-64.6,180],"ftR":[-52.4,320.5],"hipL":[9,38.2],"knL":[-5,180.5],"ftL":[37.8,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.7,-108.6],"elR":[-35.2,4.5],"haR":[-65.6,64.6],"shL":[63.3,-110.5],"elL":[69.9,-6.5],"haL":[57.3,53],"hipR":[-30.7,34.8],"knR":[-64.4,180.1],"ftR":[-52.4,320.4],"hipL":[9.3,38.1],"knL":[-4.8,180.5],"ftL":[37.7,325]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.5,-152.3],"shR":[-32.8,-108.7],"elR":[-35.1,4.5],"haR":[-65.5,64.4],"shL":[63.5,-110.4],"elL":[69.6,-6.4],"haL":[57.3,53.2],"hipR":[-30.8,34.8],"knR":[-64.1,180.2],"ftR":[-52.4,320.5],"hipL":[9.5,38.2],"knL":[-4.5,180.5],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[14.9,-152.2],"shR":[-33.6,-109.3],"elR":[-35.7,3.8],"haR":[-65.9,63.8],"shL":[64.3,-109.9],"elL":[70.1,-5.9],"haL":[58,53.8],"hipR":[-30.7,34.9],"knR":[-63.9,180.3],"ftR":[-52.4,320.4],"hipL":[9.7,38.1],"knL":[-4.3,180.4],"ftL":[37.6,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[15.1,-152.2],"shR":[-34.1,-109.7],"elR":[-36.1,3.5],"haR":[-65.9,63.6],"shL":[64.5,-109.5],"elL":[70.1,-5.5],"haL":[58.5,54.3],"hipR":[-30.9,34.7],"knR":[-63.8,180.2],"ftR":[-52.5,320.3],"hipL":[9.7,38.1],"knL":[-4.2,180.4],"ftL":[37.3,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.4,-152.2],"shR":[-34.3,-109.6],"elR":[-35.9,3.7],"haR":[-65.3,63.8],"shL":[64.9,-109.6],"elL":[70.6,-5.6],"haL":[59.1,54.4],"hipR":[-31,34.7],"knR":[-63.8,180.2],"ftR":[-52.4,320.4],"hipL":[9.7,38.2],"knL":[-4.2,180.4],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[15.8,-152.1],"shR":[-34.6,-109.6],"elR":[-35.9,3.7],"haR":[-65,64],"shL":[65.2,-109.6],"elL":[70.8,-5.5],"haL":[59.4,54.5],"hipR":[-31.1,34.5],"knR":[-63.9,180.1],"ftR":[-52.4,320.3],"hipL":[9.6,38.2],"knL":[-4.3,180.5],"ftL":[37.4,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16,-152.1],"shR":[-34.6,-109.5],"elR":[-35.5,3.8],"haR":[-64.3,64.1],"shL":[65.4,-109.6],"elL":[71.1,-5.5],"haL":[60.4,55.2],"hipR":[-31.2,34.4],"knR":[-63.8,180.1],"ftR":[-52.3,320.3],"hipL":[9.5,38.3],"knL":[-4.3,180.6],"ftL":[37.3,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[16.1,-152.1],"shR":[-35.1,-109.3],"elR":[-35.7,4.1],"haR":[-64.1,64.5],"shL":[65.8,-109.7],"elL":[71.4,-5.6],"haL":[60.6,54.8],"hipR":[-31.3,34.4],"knR":[-63.7,180],"ftR":[-52.3,320.3],"hipL":[9.6,38.4],"knL":[-4.3,180.6],"ftL":[37.4,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[16.3,-152.1],"shR":[-34.8,-109.6],"elR":[-35.3,3.8],"haR":[-63.5,64.2],"shL":[65.8,-109.5],"elL":[71.4,-5.3],"haL":[60.8,55.2],"hipR":[-31.3,34.4],"knR":[-63.6,180.1],"ftR":[-52.2,320.2],"hipL":[9.7,38.3],"knL":[-4,180.6],"ftL":[37.4,325]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.4],"neck":[7.8,-87.4],"head":[17,-152],"shR":[-34.8,-109.7],"elR":[-35.1,3.8],"haR":[-63.2,64],"shL":[66.2,-109.4],"elL":[71.7,-5.2],"haL":[61.1,55.3],"hipR":[-31.1,34.6],"knR":[-63.5,180.2],"ftR":[-52.1,320.3],"hipL":[10,38.2],"knL":[-3.7,180.5],"ftL":[37.5,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.2,-152],"shR":[-34.9,-109.6],"elR":[-35,3.9],"haR":[-62.9,64],"shL":[66.4,-109.4],"elL":[71.7,-5.2],"haL":[61.3,55.5],"hipR":[-31,34.7],"knR":[-63.3,180.3],"ftR":[-51.9,320.3],"hipL":[10.3,38.1],"knL":[-3.2,180.3],"ftL":[37.7,325]},{"rootY":0.4,"hips":[0,0],"chest":[8,-87.4],"neck":[8,-87.4],"head":[17.4,-152],"shR":[-35,-109.7],"elR":[-35.2,3.8],"haR":[-63,63.9],"shL":[66.6,-109.2],"elL":[71.5,-5],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.4,180.3],"ftR":[-51.9,320.2],"hipL":[10.4,38],"knL":[-2.9,180.3],"ftL":[37.8,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.9,-87.4],"neck":[7.9,-87.4],"head":[17.4,-152],"shR":[-35.2,-109.9],"elR":[-35.5,3.6],"haR":[-63.3,63.7],"shL":[66.8,-109.1],"elL":[71.6,-4.8],"haL":[61.4,55.7],"hipR":[-31,34.6],"knR":[-63.3,180.3],"ftR":[-51.8,320.2],"hipL":[10.4,38.1],"knL":[-2.9,180.4],"ftL":[37.9,325]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.3,-152],"shR":[-35.8,-109.4],"elR":[-36.3,4.1],"haR":[-64,64.2],"shL":[67,-109.2],"elL":[71.6,-5],"haL":[62.7,56.6],"hipR":[-30.9,34.7],"knR":[-63.1,180.4],"ftR":[-51.8,320.3],"hipL":[10.8,38.1],"knL":[-2.6,180.4],"ftL":[38,325.1]},{"rootY":0.5,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.5,-151.9],"shR":[-36.3,-110.1],"elR":[-37,3.4],"haR":[-64.7,63.4],"shL":[67.3,-108.9],"elL":[71.6,-4.6],"haL":[62.7,57],"hipR":[-31,34.6],"knR":[-62.9,180.4],"ftR":[-51.7,320.1],"hipL":[11,38.1],"knL":[-1.9,180.4],"ftL":[38.1,325.1]},{"rootY":0.4,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.6,-151.9],"shR":[-36.4,-110.1],"elR":[-37.6,3.4],"haR":[-65.2,63.6],"shL":[67.4,-108.8],"elL":[71.4,-4.6],"haL":[62.4,56.7],"hipR":[-30.9,34.7],"knR":[-62.5,180.6],"ftR":[-51.5,320.1],"hipL":[11.5,38.1],"knL":[-1.4,180.3],"ftL":[38.2,325.2]},{"rootY":0.3,"hips":[0,0],"chest":[7.8,-87.5],"neck":[7.8,-87.5],"head":[17.8,-151.9],"shR":[-36.7,-110],"elR":[-38,3.4],"haR":[-65.6,63.6],"shL":[67.6,-108.9],"elL":[71.6,-4.6],"haL":[62.5,56.4],"hipR":[-30.8,34.8],"knR":[-62,180.8],"ftR":[-51.3,320.2],"hipL":[12,38.1],"knL":[-0.4,180.3],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-37.4,-110.2],"elR":[-39,3.2],"haR":[-66.4,63.6],"shL":[67.9,-108.7],"elL":[72,-4.4],"haL":[62.9,56.4],"hipR":[-30.9,34.7],"knR":[-61.8,180.8],"ftR":[-51.1,320],"hipL":[12.1,38.1],"knL":[0,180.4],"ftL":[38.4,325.4]},{"rootY":0.3,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[17.4,-151.9],"shR":[-38,-110.3],"elR":[-39.8,3.1],"haR":[-66.8,63.6],"shL":[68.2,-108.7],"elL":[72.5,-4.4],"haL":[63.2,56.2],"hipR":[-31,34.5],"knR":[-61.2,180.7],"ftR":[-50.8,320.1],"hipL":[12.1,38.3],"knL":[0.3,180.5],"ftL":[38.6,325.6]},{"rootY":0.2,"hips":[0,0],"chest":[7.7,-87.5],"neck":[7.7,-87.5],"head":[17.8,-151.9],"shR":[-39,-110.8],"elR":[-41,2.6],"haR":[-67.9,63.3],"shL":[69,-108.4],"elL":[73.4,-4.1],"haL":[64,56.2],"hipR":[-30.9,34.7],"knR":[-60.7,180.9],"ftR":[-50.5,320.2],"hipL":[12.5,38.3],"knL":[0.7,180.5],"ftL":[38.8,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-87.5],"neck":[7.5,-87.5],"head":[17.7,-152],"shR":[-39.6,-110.7],"elR":[-41.6,2.6],"haR":[-68.3,63.4],"shL":[69.1,-108.4],"elL":[74,-4.2],"haL":[64.6,55.9],"hipR":[-30.9,34.6],"knR":[-60.1,181],"ftR":[-50.1,320.2],"hipL":[12.8,38.4],"knL":[1.4,180.5],"ftL":[39.2,325.7]},{"rootY":0,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[17.6,-152],"shR":[-40.5,-110.7],"elR":[-42.7,2.7],"haR":[-69.2,63.5],"shL":[69.3,-108.5],"elL":[74.7,-4.3],"haL":[65.4,55.6],"hipR":[-31,34.6],"knR":[-59.5,181.1],"ftR":[-49.7,320.2],"hipL":[13,38.5],"knL":[1.9,180.6],"ftL":[39.4,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[7.3,-87.5],"neck":[7.3,-87.5],"head":[17.4,-152.1],"shR":[-41.3,-110.7],"elR":[-43.8,2.5],"haR":[-70.4,63.4],"shL":[69.5,-108.5],"elL":[75.4,-4.3],"haL":[66.7,55.3],"hipR":[-30.8,34.7],"knR":[-59.1,181.3],"ftR":[-49.3,320.3],"hipL":[13.5,38.3],"knL":[2.4,180.4],"ftL":[39.8,325.8]},{"rootY":0,"hips":[0,0],"chest":[7.1,-87.5],"neck":[7.1,-87.5],"head":[17.1,-152.2],"shR":[-42,-110.6],"elR":[-44.3,2.6],"haR":[-71.3,63.2],"shL":[69.5,-108.7],"elL":[76.5,-4.6],"haL":[68.5,54.8],"hipR":[-30.5,34.9],"knR":[-58.7,181.5],"ftR":[-49,320.4],"hipL":[14,38.2],"knL":[3.3,180.3],"ftL":[40,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[16.8,-152.2],"shR":[-42.9,-110.4],"elR":[-45.2,2.7],"haR":[-73,62.9],"shL":[69.5,-108.9],"elL":[78.2,-4.9],"haL":[71,54.1],"hipR":[-30.5,34.9],"knR":[-58.2,181.6],"ftR":[-48.5,320.3],"hipL":[14.2,38.2],"knL":[3.8,180.3],"ftL":[40.3,325.8]},{"rootY":0,"hips":[0,0],"chest":[6.5,-87.6],"neck":[6.5,-87.6],"head":[16.3,-152.3],"shR":[-43.7,-110.1],"elR":[-46.2,2.8],"haR":[-74.9,62.4],"shL":[69.3,-109.2],"elL":[79.9,-5.5],"haL":[74.1,53.2],"hipR":[-30.7,34.7],"knR":[-58.1,181.5],"ftR":[-48.2,320.2],"hipL":[14,38.3],"knL":[4,180.4],"ftL":[40.5,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[6.1,-87.6],"neck":[6.1,-87.6],"head":[15.6,-152.3],"shR":[-44.7,-110.3],"elR":[-47.3,2.5],"haR":[-77.2,61.5],"shL":[69.2,-109.2],"elL":[81.7,-5.7],"haL":[77.4,52.3],"hipR":[-30.7,34.7],"knR":[-57.8,181.5],"ftR":[-47.9,320.1],"hipL":[14.1,38.3],"knL":[4.1,180.4],"ftL":[40.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[15.2,-152.3],"shR":[-45.2,-110.4],"elR":[-48.8,2.4],"haR":[-79.7,60.9],"shL":[69.1,-109.2],"elL":[83.3,-6.1],"haL":[81.2,51.6],"hipR":[-30.7,34.7],"knR":[-57.3,181.5],"ftR":[-47.4,320.2],"hipL":[14.1,38.5],"knL":[4.3,180.4],"ftL":[41.1,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.8,-152.3],"shR":[-45.5,-110],"elR":[-50.4,2.7],"haR":[-82.1,60.8],"shL":[68.8,-109.6],"elL":[84.5,-6.8],"haL":[84.7,50.4],"hipR":[-30.6,34.8],"knR":[-57.3,181.6],"ftR":[-47.2,320.3],"hipL":[14.3,38.4],"knL":[4.7,180.4],"ftL":[41.1,325.8]},{"rootY":0,"hips":[0,0],"chest":[5.6,-87.6],"neck":[5.6,-87.6],"head":[14.3,-152.3],"shR":[-45.9,-109.9],"elR":[-52.1,2.7],"haR":[-84.3,60.7],"shL":[68.7,-109.8],"elL":[85.7,-7.4],"haL":[88.1,49.3],"hipR":[-30.6,34.7],"knR":[-57,181.6],"ftR":[-46.8,320.3],"hipL":[14.3,38.4],"knL":[4.9,180.3],"ftL":[41.2,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14,-152.3],"shR":[-46,-109.5],"elR":[-53.9,3.1],"haR":[-86.5,60.9],"shL":[68.3,-110.2],"elL":[85.8,-8.1],"haL":[90.4,48.3],"hipR":[-30.5,34.9],"knR":[-57.8,181.5],"ftR":[-47.1,320.3],"hipL":[14.2,38.3],"knL":[4.2,180.3],"ftL":[41,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[5.3,-87.6],"neck":[5.3,-87.6],"head":[13.5,-152.3],"shR":[-46.1,-109.3],"elR":[-54.7,3.3],"haR":[-87.7,61],"shL":[68.1,-110.4],"elL":[86.5,-8.5],"haL":[92.6,47.7],"hipR":[-30.5,34.9],"knR":[-58,181.5],"ftR":[-47,320.4],"hipL":[14,38.2],"knL":[3.6,180.2],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.9,-87.7],"neck":[4.9,-87.7],"head":[12.8,-152.4],"shR":[-46.3,-109.1],"elR":[-55.4,3.6],"haR":[-88.7,61.1],"shL":[67.6,-110.5],"elL":[86.3,-9],"haL":[93.7,47.1],"hipR":[-30.6,34.8],"knR":[-58.3,181.4],"ftR":[-47,320.5],"hipL":[13.7,38.3],"knL":[3.2,180.3],"ftL":[41.1,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[4.6,-87.7],"neck":[4.6,-87.7],"head":[12.2,-152.4],"shR":[-46.5,-108.7],"elR":[-55.2,4],"haR":[-89.2,61.2],"shL":[67.2,-110.8],"elL":[85.7,-9.5],"haL":[93.9,46.7],"hipR":[-30.5,34.9],"knR":[-59,181.4],"ftR":[-47.3,320.6],"hipL":[13.6,38.2],"knL":[2.8,180.3],"ftL":[40.8,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.5,-87.7],"neck":[4.5,-87.7],"head":[11.7,-152.4],"shR":[-46.1,-108.2],"elR":[-54.3,4.6],"haR":[-88.7,61.2],"shL":[66.6,-111.4],"elL":[85,-10.1],"haL":[93.4,46],"hipR":[-30.6,34.9],"knR":[-59.6,181.2],"ftR":[-47.8,320.7],"hipL":[13,38.3],"knL":[1.7,180.4],"ftL":[40.5,325.7]},{"rootY":-0.3,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[11.1,-152.5],"shR":[-45.7,-107.7],"elR":[-53.4,5.1],"haR":[-88.5,61.3],"shL":[66,-111.6],"elL":[84.4,-10.5],"haL":[92.3,45.7],"hipR":[-30.7,34.8],"knR":[-59.8,181.1],"ftR":[-47.8,320.8],"hipL":[12.7,38.4],"knL":[1.4,180.5],"ftL":[40.6,325.8]},{"rootY":-0.3,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.8,-152.6],"shR":[-45,-107.7],"elR":[-51.8,5.2],"haR":[-87.8,60.8],"shL":[65.3,-111.7],"elL":[83.4,-10.6],"haL":[90.4,45.6],"hipR":[-30.3,35.2],"knR":[-60.6,181.2],"ftR":[-48.4,321],"hipL":[12.8,38.2],"knL":[1.1,180.3],"ftL":[40.2,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.6,-152.6],"shR":[-44.1,-107.5],"elR":[-49.6,5.6],"haR":[-86.3,60.7],"shL":[64.7,-111.9],"elL":[82,-10.8],"haL":[87.9,45.2],"hipR":[-30.3,35.3],"knR":[-61.2,181.1],"ftR":[-48.9,321.3],"hipL":[12.5,38.3],"knL":[0.4,180.3],"ftL":[39.9,325.8]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.8],"neck":[3.9,-87.8],"head":[10.5,-152.7],"shR":[-42.9,-107.3],"elR":[-47.5,5.8],"haR":[-84.9,60.6],"shL":[63.9,-112],"elL":[80.4,-11],"haL":[84.8,44.7],"hipR":[-30.3,35.3],"knR":[-62.2,180.8],"ftR":[-49.5,321.4],"hipL":[11.7,38.4],"knL":[-1.1,180.5],"ftL":[39.8,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.4,-152.8],"shR":[-41.3,-107.3],"elR":[-45.1,5.9],"haR":[-83.1,60.5],"shL":[63.2,-112.1],"elL":[79.1,-11.2],"haL":[81.6,44.2],"hipR":[-30.1,35.4],"knR":[-63.2,180.7],"ftR":[-50.1,321.6],"hipL":[11.2,38.4],"knL":[-2.2,180.5],"ftL":[39.6,325.8]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.8],"shR":[-39.4,-107.7],"elR":[-42.5,5.5],"haR":[-80.9,60.1],"shL":[62.3,-111.8],"elL":[77,-11],"haL":[77.4,44],"hipR":[-29.9,35.5],"knR":[-64.3,180.5],"ftR":[-51,321.9],"hipL":[10.6,38.3],"knL":[-3.2,180.4],"ftL":[39.4,325.6]},{"rootY":-0.6,"hips":[0,0],"chest":[4.2,-87.7],"neck":[4.2,-87.7],"head":[10.4,-152.9],"shR":[-37.3,-107.4],"elR":[-40,5.8],"haR":[-78.6,60.6],"shL":[60.9,-112],"elL":[74.1,-11.2],"haL":[72.2,43.3],"hipR":[-29.8,35.6],"knR":[-65.4,180.2],"ftR":[-51.6,322],"hipL":[9.8,38.4],"knL":[-4.5,180.5],"ftL":[39.4,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.1,-152.9],"shR":[-34.9,-107],"elR":[-37.3,6.3],"haR":[-75.9,61.3],"shL":[59.2,-112.3],"elL":[70.5,-11.5],"haL":[66.3,42.5],"hipR":[-29.7,35.6],"knR":[-66.6,179.9],"ftR":[-52.5,321.9],"hipL":[8.9,38.4],"knL":[-5.9,180.5],"ftL":[39.2,325.7]},{"rootY":-0.5,"hips":[0,0],"chest":[3.9,-87.7],"neck":[3.9,-87.7],"head":[9.9,-152.9],"shR":[-32.4,-106.6],"elR":[-34.5,6.7],"haR":[-73,62.2],"shL":[57.2,-112.6],"elL":[67.3,-11.6],"haL":[60.3,42.1],"hipR":[-29.4,35.7],"knR":[-67.7,179.7],"ftR":[-53.2,322],"hipL":[8.4,38.3],"knL":[-6.7,180.5],"ftL":[39.1,325.7]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-31,-107.2],"elR":[-32.8,6],"haR":[-70.8,62],"shL":[55.9,-112.2],"elL":[64.2,-11.2],"haL":[54.3,41.7],"hipR":[-29.2,35.8],"knR":[-68.6,179.4],"ftR":[-53.7,322],"hipL":[7.9,38.3],"knL":[-7.6,180.5],"ftL":[39,325.6]},{"rootY":-0.4,"hips":[0,0],"chest":[3.8,-87.7],"neck":[3.8,-87.7],"head":[10,-152.9],"shR":[-28.5,-107.2],"elR":[-29.8,6.1],"haR":[-67.1,62.7],"shL":[54.2,-112.2],"elL":[61,-11.2],"haL":[48,41.3],"hipR":[-29.2,35.8],"knR":[-68.4,179.4],"ftR":[-53.9,322],"hipL":[7.4,38.3],"knL":[-8.3,180.5],"ftL":[39.1,325.6]},{"rootY":-0.2,"hips":[0,0],"chest":[4.1,-87.7],"neck":[4.1,-87.7],"head":[10.4,-152.8],"shR":[-26.1,-107],"elR":[-26.5,6.2],"haR":[-63,63.2],"shL":[52.8,-112.2],"elL":[58.3,-11.2],"haL":[42.3,40.8],"hipR":[-29.1,35.8],"knR":[-68.4,179.4],"ftR":[-53.8,322],"hipL":[7,38.2],"knL":[-8.5,180.5],"ftL":[39.1,325.3]},{"rootY":0,"hips":[0,0],"chest":[4,-87.7],"neck":[4,-87.7],"head":[10.2,-152.9],"shR":[-24.2,-106.8],"elR":[-23.3,6.3],"haR":[-58.8,63.8],"shL":[51.3,-112.4],"elL":[55.2,-11.4],"haL":[36.3,39.5],"hipR":[-29.1,35.8],"knR":[-68.8,179.2],"ftR":[-54.1,321.7],"hipL":[6.7,38],"knL":[-9,180.3],"ftL":[39,325.1]},{"rootY":0.2,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[10.3,-152.8],"shR":[-22.3,-106.6],"elR":[-19.6,6.3],"haR":[-54.2,64.2],"shL":[49.8,-112.7],"elL":[52.2,-11.6],"haL":[30.6,38.4],"hipR":[-29.2,35.7],"knR":[-68.9,179.1],"ftR":[-54.2,321.5],"hipL":[6.3,38],"knL":[-9.5,180.3],"ftL":[38.9,324.9]},{"rootY":0.3,"hips":[0,0],"chest":[4,-87.6],"neck":[4,-87.6],"head":[9.8,-152.9],"shR":[-21.4,-106.5],"elR":[-17.3,6.2],"haR":[-51.3,64.2],"shL":[48.5,-112.9],"elL":[49.7,-11.8],"haL":[25.7,37.3],"hipR":[-29.9,35],"knR":[-68.9,178.6],"ftR":[-54.3,321],"hipL":[5.4,38.4],"knL":[-10.5,180.7],"ftL":[38.8,324.9]},{"rootY":0.5,"hips":[0,0],"chest":[4.8,-87.6],"neck":[4.8,-87.6],"head":[10,-152.8],"shR":[-19.1,-106.2],"elR":[-14.5,6.5],"haR":[-47.2,64.7],"shL":[48.2,-113],"elL":[48.6,-11.6],"haL":[22.9,36.9],"hipR":[-29.2,35.7],"knR":[-69.2,179],"ftR":[-54.2,321],"hipL":[6.1,37.7],"knL":[-9.3,180.1],"ftL":[38.9,324.6]},{"rootY":0.7,"hips":[0,0],"chest":[5,-87.6],"neck":[5,-87.6],"head":[10,-152.9],"shR":[-18.4,-106.5],"elR":[-13.7,6],"haR":[-45.5,64.4],"shL":[48.1,-112.7],"elL":[48,-12.2],"haL":[20.3,35.2],"hipR":[-29.3,35.6],"knR":[-69.1,179],"ftR":[-54.1,320.9],"hipL":[5.8,37.8],"knL":[-9.5,180.2],"ftL":[38.9,324.5]},{"rootY":0.6,"hips":[0,0],"chest":[5.3,-87.5],"neck":[5.3,-87.5],"head":[9.5,-152.9],"shR":[-17.9,-106.8],"elR":[-13.3,5.6],"haR":[-44.8,63.9],"shL":[48.2,-112.4],"elL":[47.6,-11.3],"haL":[19.5,35.8],"hipR":[-29.3,35.6],"knR":[-68.9,179],"ftR":[-53.9,320.9],"hipL":[5.7,37.8],"knL":[-9.5,180.3],"ftL":[39,324.5]},{"rootY":0.7,"hips":[0,0],"chest":[5.7,-87.5],"neck":[5.7,-87.5],"head":[9.7,-152.8],"shR":[-17.3,-106.9],"elR":[-13.4,5.5],"haR":[-44.9,63.5],"shL":[48.4,-112.3],"elL":[47.4,-11.6],"haL":[18.8,35],"hipR":[-29,35.9],"knR":[-69.2,179.2],"ftR":[-53.8,320.8],"hipL":[6.1,37.4],"knL":[-8.9,179.9],"ftL":[39,324.4]},{"rootY":0.7,"hips":[0,0],"chest":[6,-87.5],"neck":[6,-87.5],"head":[9.6,-152.8],"shR":[-17.1,-106.9],"elR":[-14.3,5.4],"haR":[-46.4,63],"shL":[48.9,-112.2],"elL":[48.4,-11.2],"haL":[20,35.4],"hipR":[-28.9,36],"knR":[-69.3,179.3],"ftR":[-53.7,320.7],"hipL":[6.4,37.3],"knL":[-8.3,179.8],"ftL":[39.2,324.3]},{"rootY":0.7,"hips":[0,0],"chest":[6.2,-87.5],"neck":[6.2,-87.5],"head":[9.7,-152.7],"shR":[-17.5,-107.1],"elR":[-15.9,5.1],"haR":[-49.2,62.1],"shL":[49.4,-112.1],"elL":[49.8,-10.8],"haL":[22.3,35.9],"hipR":[-29.2,35.8],"knR":[-68.9,179.2],"ftR":[-53.2,320.6],"hipL":[6.1,37.5],"knL":[-8.4,180],"ftL":[39.6,324.3]},{"rootY":0.6,"hips":[0,0],"chest":[6.3,-87.5],"neck":[6.3,-87.5],"head":[10,-152.7],"shR":[-18.6,-107.3],"elR":[-18.3,4.8],"haR":[-53.1,61],"shL":[50.6,-111.8],"elL":[51.2,-10.8],"haL":[25.2,36.4],"hipR":[-29.6,35.5],"knR":[-68.3,179.2],"ftR":[-52.9,320.8],"hipL":[6.1,37.8],"knL":[-8.6,180.3],"ftL":[39.7,324.4]},{"rootY":0.5,"hips":[0,0],"chest":[6.3,-87.4],"neck":[6.3,-87.4],"head":[9.9,-152.7],"shR":[-20,-107.5],"elR":[-20.9,4.3],"haR":[-57.7,59.7],"shL":[51.8,-111.5],"elL":[53.4,-10.5],"haL":[29.1,37.2],"hipR":[-30,35.1],"knR":[-67.2,179.1],"ftR":[-52.4,320.7],"hipL":[6.2,38.3],"knL":[-8.6,180.7],"ftL":[39.8,324.7]},{"rootY":0.5,"hips":[0,0],"chest":[6.7,-87.4],"neck":[6.7,-87.4],"head":[10.4,-152.7],"shR":[-20.9,-107.8],"elR":[-24.8,4.2],"haR":[-62.9,58.8],"shL":[53.4,-111.2],"elL":[55.9,-10.1],"haL":[33.8,38.2],"hipR":[-30.2,35],"knR":[-67,179.2],"ftR":[-51.9,320.7],"hipL":[6.4,38.2],"knL":[-8,180.6],"ftL":[40.3,324.5]},{"rootY":0.4,"hips":[0,0],"chest":[7.2,-87.4],"neck":[7.2,-87.4],"head":[11.3,-152.6],"shR":[-22.8,-108.4],"elR":[-28.2,3.5],"haR":[-68.3,57.2],"shL":[55.9,-110.6],"elL":[59.3,-9.3],"haL":[39.8,39.6],"hipR":[-30,35.4],"knR":[-65.8,179.7],"ftR":[-51,320.7],"hipL":[7.9,38],"knL":[-5.5,180.4],"ftL":[40.5,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.4,-87.4],"neck":[7.4,-87.4],"head":[11.6,-152.6],"shR":[-24.8,-108.7],"elR":[-32.4,3.1],"haR":[-74,56],"shL":[58,-110.2],"elL":[62.2,-8.5],"haL":[45.7,40.7],"hipR":[-30,35.4],"knR":[-65.1,180],"ftR":[-50.6,320.7],"hipL":[8.8,37.9],"knL":[-4.6,180.3],"ftL":[40.7,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[7.7,-87.4],"neck":[7.7,-87.4],"head":[12.2,-152.5],"shR":[-26.7,-108.7],"elR":[-36.5,3],"haR":[-79.5,55.1],"shL":[60,-110.1],"elL":[65,-8.3],"haL":[51.6,41.8],"hipR":[-29.9,35.5],"knR":[-64.1,180.4],"ftR":[-50,320.7],"hipL":[9.7,37.9],"knL":[-3.4,180.3],"ftL":[41,324.9]},{"rootY":0.2,"hips":[0,0],"chest":[8.2,-87.3],"neck":[8.2,-87.3],"head":[12.8,-152.5],"shR":[-27.9,-108.2],"elR":[-39.9,3.5],"haR":[-84.1,54.8],"shL":[62,-110.4],"elL":[67.7,-8.6],"haL":[57.4,42.1],"hipR":[-30.1,35.4],"knR":[-63,180.6],"ftR":[-49.3,320.6],"hipL":[10.3,38],"knL":[-2.3,180.4],"ftL":[41.3,325.1]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.6,-152.4],"shR":[-31.1,-109.3],"elR":[-45.4,2.3],"haR":[-90.3,53.1],"shL":[64.3,-109.6],"elL":[70.7,-7.5],"haL":[63.5,44],"hipR":[-30.1,35.4],"knR":[-62,180.8],"ftR":[-48.9,320.6],"hipL":[11.3,38.1],"knL":[-1.1,180.3],"ftL":[41.4,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.2,-87.4],"neck":[8.2,-87.4],"head":[13.4,-152.5],"shR":[-33.2,-109],"elR":[-49.9,2.4],"haR":[-95.3,52.6],"shL":[65.6,-109.8],"elL":[73.3,-7.2],"haL":[69.2,45],"hipR":[-30.2,35.4],"knR":[-61.1,181],"ftR":[-48.5,320.5],"hipL":[12,38.1],"knL":[-0.2,180.3],"ftL":[41.3,325.3]},{"rootY":0.1,"hips":[0,0],"chest":[8.3,-87.4],"neck":[8.3,-87.4],"head":[13.7,-152.4],"shR":[-35.4,-109.8],"elR":[-54,1.5],"haR":[-99.6,51.1],"shL":[67.4,-109.2],"elL":[76,-6.4],"haL":[74.9,46.4],"hipR":[-29.8,35.6],"knR":[-60.2,181.4],"ftR":[-48.1,320.6],"hipL":[13.2,37.9],"knL":[1.6,180],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.6,-87.5],"neck":[7.6,-87.5],"head":[13.5,-152.4],"shR":[-38.2,-111.2],"elR":[-58.4,0.2],"haR":[-103.9,49.3],"shL":[68.3,-108.1],"elL":[78.4,-5.3],"haL":[80.3,47.8],"hipR":[-30.1,35.3],"knR":[-59.3,181.4],"ftR":[-47.7,320.5],"hipL":[13.6,38.1],"knL":[2.4,180.1],"ftL":[41.4,325.4]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-87.5],"neck":[7.4,-87.5],"head":[13.9,-152.5],"shR":[-40.7,-110.3],"elR":[-62.2,0.9],"haR":[-107.4,49.2],"shL":[69.3,-108.8],"elL":[80.6,-5.8],"haL":[85.1,47.4],"hipR":[-29.9,35.4],"knR":[-58.2,181.7],"ftR":[-47.3,320.4],"hipL":[14.7,38.1],"knL":[4.1,180],"ftL":[41.4,325.7]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-87.5],"neck":[7.2,-87.5],"head":[14.2,-152.5],"shR":[-43.3,-109.8],"elR":[-66.1,1.3],"haR":[-110.6,49.2],"shL":[70.1,-109.2],"elL":[82.2,-6.1],"haL":[89.5,47.4],"hipR":[-29.2,35.8],"knR":[-57.5,182.2],"ftR":[-47.3,320.6],"hipL":[16.4,37.7],"knL":[5.8,179.4],"ftL":[41.1,325.6]},{"rootY":0.1,"hips":[0,0],"chest":[7,-87.5],"neck":[7,-87.5],"head":[14.4,-152.5],"shR":[-45.3,-110.5],"elR":[-69.1,0.5],"haR":[-112.7,47.8],"shL":[70.8,-108.9],"elL":[83.6,-5.7],"haL":[93.7,48],"hipR":[-29.7,35.4],"knR":[-55.9,182.1],"ftR":[-46.4,320.3],"hipL":[16.4,38.1],"knL":[6.8,179.7],"ftL":[41.7,325.9]},{"rootY":0,"hips":[0,0],"chest":[6.8,-87.5],"neck":[6.8,-87.5],"head":[14.5,-152.5],"shR":[-47.2,-110.4],"elR":[-71.9,0.4],"haR":[-114.3,47.3],"shL":[71.2,-108.9],"elL":[84.6,-5.8],"haL":[97.4,48.1],"hipR":[-29.7,35.1],"knR":[-54.7,182.1],"ftR":[-46,320.4],"hipL":[17,38.3],"knL":[8,179.7],"ftL":[42.2,326.3]},{"rootY":-0.2,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.5],"shR":[-48.6,-110.6],"elR":[-74,0.1],"haR":[-115.3,46.7],"shL":[71.6,-108.9],"elL":[85.5,-5.7],"haL":[100.6,48.3],"hipR":[-29.6,35.1],"knR":[-53.1,182.4],"ftR":[-45.2,320.4],"hipL":[17.9,38.5],"knL":[9.9,179.7],"ftL":[42.5,326.5]},{"rootY":-0.4,"hips":[0,0],"chest":[6.7,-87.6],"neck":[6.7,-87.6],"head":[14.2,-152.6],"shR":[-50,-110.9],"elR":[-75.9,-0.3],"haR":[-115.5,45.9],"shL":[71.8,-108.7],"elL":[86.4,-5.6],"haL":[104,48.7],"hipR":[-29.1,35.2],"knR":[-51.7,182.7],"ftR":[-44.6,320.6],"hipL":[19,38.5],"knL":[11.7,179.6],"ftL":[42.8,326.8]},{"rootY":-0.7,"hips":[0,0],"chest":[6.9,-87.5],"neck":[6.9,-87.5],"head":[14.5,-152.5],"shR":[-51,-110.4],"elR":[-77.3,0.1],"haR":[-115.6,46.1],"shL":[72,-109],"elL":[87,-5.9],"haL":[106.6,47.7],"hipR":[-28.7,35.3],"knR":[-50.2,183],"ftR":[-44,320.7],"hipL":[19.8,38.6],"knL":[13.1,179.4],"ftL":[43.1,327.2]},{"rootY":-0.8,"hips":[0,0],"chest":[6.3,-87.6],"neck":[6.3,-87.6],"head":[14.7,-152.4],"shR":[-52.2,-111.3],"elR":[-78.6,-0.8],"haR":[-115.2,45.1],"shL":[71.5,-108.3],"elL":[87.3,-5.3],"haL":[108.5,48],"hipR":[-28.2,35.4],"knR":[-48.9,183.2],"ftR":[-43.6,320.8],"hipL":[20.9,38.6],"knL":[14.9,179.1],"ftL":[43.2,327.4]},{"rootY":-0.9,"hips":[0,0],"chest":[5.9,-87.6],"neck":[5.9,-87.6],"head":[14.6,-152.4],"shR":[-53.2,-111.7],"elR":[-79.8,-1.3],"haR":[-114.6,44.5],"shL":[70.9,-108.2],"elL":[87.2,-5.2],"haL":[110.1,48.4],"hipR":[-27.8,35.4],"knR":[-48.1,183.3],"ftR":[-43.3,320.8],"hipL":[21.5,38.6],"knL":[16,178.9],"ftL":[43,327.5]},{"rootY":-1,"hips":[0,0],"chest":[5.7,-87.6],"neck":[5.7,-87.6],"head":[14.7,-152.4],"shR":[-54,-111.5],"elR":[-80.7,-1.2],"haR":[-113.8,44.6],"shL":[70.3,-108.5],"elL":[86.7,-5.5],"haL":[111.1,47.8],"hipR":[-27.5,35.5],"knR":[-47.5,183.4],"ftR":[-43.3,320.8],"hipL":[22.1,38.6],"knL":[17.1,178.7],"ftL":[42.7,327.5]},{"rootY":-1.1,"hips":[0,0],"chest":[5.5,-87.6],"neck":[5.5,-87.6],"head":[14.3,-152.5],"shR":[-54.5,-111.7],"elR":[-80.9,-1.4],"haR":[-112.4,44.4],"shL":[69.8,-108.5],"elL":[86,-5.4],"haL":[111.6,47.5],"hipR":[-27.5,35.4],"knR":[-46.7,183.4],"ftR":[-42.9,320.8],"hipL":[22.2,38.8],"knL":[17.7,178.6],"ftL":[43,327.8]},{"rootY":-1.3,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[14.1,-152.4],"shR":[-55.2,-111.7],"elR":[-81.1,-1.4],"haR":[-111,44.4],"shL":[69.1,-108.7],"elL":[85.2,-5.6],"haL":[111.4,47.6],"hipR":[-27.3,35.4],"knR":[-46.2,183.5],"ftR":[-42.9,321],"hipL":[22.5,38.8],"knL":[18.2,178.5],"ftL":[42.9,327.9]},{"rootY":-1.5,"hips":[0,0],"chest":[5.1,-87.6],"neck":[5.1,-87.6],"head":[13.8,-152.5],"shR":[-55.4,-111.6],"elR":[-80.2,-1.2],"haR":[-108.9,44.5],"shL":[68.7,-108.8],"elL":[84.4,-5.6],"haL":[110.9,47.8],"hipR":[-27.4,35.3],"knR":[-45.4,183.4],"ftR":[-42.6,321.1],"hipL":[22.4,39],"knL":[19,178.5],"ftL":[43.1,328]},{"rootY":-1.6,"hips":[0,0],"chest":[4.7,-87.6],"neck":[4.7,-87.6],"head":[13.5,-152.4],"shR":[-55.8,-111.3],"elR":[-79.6,-0.6],"haR":[-106.9,44.8],"shL":[68.2,-109.1],"elL":[83.1,-5.8],"haL":[109.8,48],"hipR":[-27.2,35.4],"knR":[-45.8,183.5],"ftR":[-43.1,321.3],"hipL":[22.6,39],"knL":[18.7,178.4],"ftL":[42.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[4.5,-87.6],"neck":[4.5,-87.6],"head":[13,-152.5],"shR":[-56.2,-111.1],"elR":[-78.3,-0.1],"haR":[-104.4,45.2],"shL":[67.8,-109.2],"elL":[82,-5.8],"haL":[108.3,48.6],"hipR":[-27.2,35.4],"knR":[-45.9,183.5],"ftR":[-43.4,321.4],"hipL":[22.6,39],"knL":[18.4,178.4],"ftL":[42.3,328.2]},{"rootY":-1.8,"hips":[0,0],"chest":[4.6,-87.6],"neck":[4.6,-87.6],"head":[12.6,-152.5],"shR":[-56.1,-111],"elR":[-76.6,0.4],"haR":[-101.5,45.8],"shL":[67.9,-109.5],"elL":[81.2,-6],"haL":[106.8,49.3],"hipR":[-27.5,35.3],"knR":[-45.9,183.4],"ftR":[-43.4,321.5],"hipL":[22.3,39.2],"knL":[18.1,178.5],"ftL":[42.4,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.3,-87.6],"neck":[4.3,-87.6],"head":[11.7,-152.6],"shR":[-56.3,-110.9],"elR":[-75.1,0.8],"haR":[-99.1,46.7],"shL":[67.8,-109.8],"elL":[80.2,-6.2],"haL":[105,50],"hipR":[-27.5,35.5],"knR":[-46.7,183.4],"ftR":[-44,321.6],"hipL":[22.2,39.1],"knL":[17.3,178.5],"ftL":[41.8,328.3]},{"rootY":-1.8,"hips":[0,0],"chest":[4.2,-87.6],"neck":[4.2,-87.6],"head":[11.1,-152.6],"shR":[-56.4,-110.8],"elR":[-73.3,1.3],"haR":[-96.6,47.7],"shL":[67.9,-109.8],"elL":[79.5,-6.2],"haL":[103.1,50.8],"hipR":[-27.6,35.6],"knR":[-47.3,183.3],"ftR":[-44.4,321.7],"hipL":[22.1,39.1],"knL":[16.6,178.5],"ftL":[41.4,328.3]},{"rootY":-1.7,"hips":[0,0],"chest":[3.8,-87.6],"neck":[3.8,-87.6],"head":[10.1,-152.6],"shR":[-56.6,-110.6],"elR":[-71.8,1.8],"haR":[-94.8,49.1],"shL":[67.7,-110.1],"elL":[78.5,-6.3],"haL":[100.5,51.7],"hipR":[-27.8,35.5],"knR":[-48.6,183.1],"ftR":[-45.3,321.6],"hipL":[21.6,39],"knL":[15.3,178.5],"ftL":[40.5,328.1]},{"rootY":-1.7,"hips":[0,0],"chest":[3.5,-87.5],"neck":[3.5,-87.5],"head":[9.7,-152.6],"shR":[-56.7,-110.3],"elR":[-70,2.4],"haR":[-93.2,50.8],"shL":[67.6,-110.4],"elL":[77.8,-6.6],"haL":[98.2,52.3],"hipR":[-28,35.6],"knR":[-49.8,182.9],"ftR":[-46.3,321.5],"hipL":[21.2,38.9],"knL":[13.8,178.5],"ftL":[39.6,328]},{"rootY":-1.7,"hips":[0,0],"chest":[3.1,-87.5],"neck":[3.1,-87.5],"head":[8.2,-152.6],"shR":[-56.8,-110.2],"elR":[-68.3,2.8],"haR":[-91.9,52.5],"shL":[67.4,-110.6],"elL":[76.9,-6.7],"haL":[95.5,52.7],"hipR":[-28,35.8],"knR":[-51.3,182.8],"ftR":[-47.7,321.5],"hipL":[20.9,38.8],"knL":[11.9,178.4],"ftL":[38.3,327.8]},{"rootY":-1.7,"hips":[0,0],"chest":[2.8,-87.5],"neck":[2.8,-87.5],"head":[7,-152.5],"shR":[-56.5,-109.9],"elR":[-66.6,3.2],"haR":[-90.8,54.2],"shL":[67.2,-111],"elL":[76.2,-7.1],"haL":[92.7,53],"hipR":[-28.3,35.8],"knR":[-52.8,182.5],"ftR":[-49.1,321.5],"hipL":[20.1,38.8],"knL":[10.2,178.4],"ftL":[37,327.8]},{"rootY":-1.8,"hips":[0,0],"chest":[2.5,-87.4],"neck":[2.5,-87.4],"head":[5.4,-152.5],"shR":[-56.2,-109.8],"elR":[-64.7,3.5],"haR":[-89.9,56],"shL":[66.7,-111.3],"elL":[75.2,-7.3],"haL":[89.7,53],"hipR":[-28.4,36],"knR":[-54.9,182.2],"ftR":[-51.1,321.7],"hipL":[19.7,38.6],"knL":[8.2,178.3],"ftL":[35.4,327.7]},{"rootY":-1.7,"hips":[0,0],"chest":[2.2,-87.4],"neck":[2.2,-87.4],"head":[4.1,-152.3],"shR":[-55.6,-109.6],"elR":[-62.6,3.7],"haR":[-88.9,57.6],"shL":[66.1,-111.5],"elL":[74.4,-7.5],"haL":[86.6,53],"hipR":[-28.6,36.1],"knR":[-57.2,181.8],"ftR":[-53.6,322],"hipL":[18.8,38.6],"knL":[5.8,178.3],"ftL":[33.8,327.8]},{"rootY":-1.5,"hips":[0,0],"chest":[1.7,-87.3],"neck":[1.7,-87.3],"head":[2.8,-152],"shR":[-54.8,-109.5],"elR":[-60.5,3.9],"haR":[-88.2,58.9],"shL":[65.1,-111.6],"elL":[73.4,-7.6],"haL":[83.5,52.9],"hipR":[-28.6,36.3],"knR":[-60.1,181.2],"ftR":[-56.3,322.1],"hipL":[18.1,38.5],"knL":[3.2,178.1],"ftL":[32,327.5]},{"rootY":-1,"hips":[0,0],"chest":[1.2,-87.2],"neck":[1.2,-87.2],"head":[1.1,-151.8],"shR":[-53.7,-109.5],"elR":[-58.2,3.9],"haR":[-87.2,59.6],"shL":[63.9,-111.6],"elL":[72.4,-7.7],"haL":[80.4,52.8],"hipR":[-28.6,36.5],"knR":[-62.9,180.6],"ftR":[-58.7,321.8],"hipL":[17.2,38.4],"knL":[0.5,178],"ftL":[30.5,327.2]},{"rootY":-0.5,"hips":[0,0],"chest":[0.9,-87.1],"neck":[0.9,-87.1],"head":[-0.1,-151.6],"shR":[-52.3,-109.4],"elR":[-55.4,3.8],"haR":[-85.7,60.3],"shL":[62.5,-111.7],"elL":[72,-7.8],"haL":[77.9,52.5],"hipR":[-28.4,36.7],"knR":[-65.6,179.9],"ftR":[-60.9,321.5],"hipL":[16.5,38.1],"knL":[-2.2,177.6],"ftL":[29,326.8]},{"rootY":-0.1,"hips":[0,0],"chest":[0.6,-87],"neck":[0.6,-87],"head":[-1.8,-151.1],"shR":[-50.8,-109.6],"elR":[-52.4,3.5],"haR":[-84,60.6],"shL":[61,-111.5],"elL":[71,-7.6],"haL":[75,52.6],"hipR":[-28.3,36.8],"knR":[-67.9,179.2],"ftR":[-62.8,321.1],"hipL":[15.7,38],"knL":[-4.1,177.5],"ftL":[27.5,326.5]},{"rootY":0.1,"hips":[0,0],"chest":[0.3,-86.9],"neck":[0.3,-86.9],"head":[-3.2,-150.8],"shR":[-48.9,-109.7],"elR":[-48.9,3.2],"haR":[-81.3,60.6],"shL":[59.2,-111.3],"elL":[69.5,-7.4],"haL":[72,52.8],"hipR":[-28.3,36.9],"knR":[-69.9,178.5],"ftR":[-64.7,320.8],"hipL":[14.6,37.8],"knL":[-6.3,177.3],"ftL":[25.8,326.3]},{"rootY":0.2,"hips":[0,0],"chest":[0,-86.8],"neck":[0,-86.8],"head":[-4.8,-150.4],"shR":[-47,-109.9],"elR":[-44.9,2.7],"haR":[-77.9,60.6],"shL":[57.3,-111],"elL":[68,-7.2],"haL":[69.1,52.9],"hipR":[-28.3,36.9],"knR":[-70.9,178.2],"ftR":[-65.7,320.7],"hipL":[13.8,37.7],"knL":[-8,177.2],"ftL":[24.5,326.2]},{"rootY":0.1,"hips":[0,0],"chest":[-0.4,-86.8],"neck":[-0.4,-86.8],"head":[-6.1,-150.2],"shR":[-45.6,-110],"elR":[-41.4,2.2],"haR":[-74.6,60.6],"shL":[55.5,-110.9],"elL":[66,-7.1],"haL":[66,52.7],"hipR":[-28.2,36.9],"knR":[-72,178],"ftR":[-67,320.9],"hipL":[12.9,37.7],"knL":[-10,177.3],"ftL":[23.3,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-0.6,-86.7],"neck":[-0.6,-86.7],"head":[-6.8,-149.9],"shR":[-43.8,-110.4],"elR":[-37.7,1.4],"haR":[-70.6,60.3],"shL":[53.5,-110.6],"elL":[63.5,-6.8],"haL":[62.3,52.7],"hipR":[-28.1,37],"knR":[-72.9,177.7],"ftR":[-68.4,320.9],"hipL":[12.1,37.7],"knL":[-11.6,177.3],"ftL":[22,326.1]},{"rootY":0.2,"hips":[0,0],"chest":[-1.3,-86.6],"neck":[-1.3,-86.6],"head":[-8.5,-149.7],"shR":[-42.4,-110.1],"elR":[-34.1,1],"haR":[-66.3,60.6],"shL":[51.1,-110.6],"elL":[60.9,-6.8],"haL":[58.3,52.5],"hipR":[-27.9,37.1],"knR":[-74,177.5],"ftR":[-69.8,321.1],"hipL":[11.5,37.6],"knL":[-13.2,177.3],"ftL":[20.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-1.8,-86.5],"neck":[-1.8,-86.5],"head":[-9.7,-149.6],"shR":[-41.3,-110.4],"elR":[-30.8,0.1],"haR":[-62.1,60.2],"shL":[49,-110.1],"elL":[57.7,-6.4],"haL":[53.8,52.5],"hipR":[-27.8,37.1],"knR":[-74.8,177.3],"ftR":[-70.8,321.2],"hipL":[10.7,37.8],"knL":[-14.7,177.4],"ftL":[19.9,325.9]},{"rootY":0.1,"hips":[0,0],"chest":[-2.3,-86.4],"neck":[-2.3,-86.4],"head":[-10.9,-149.4],"shR":[-39.6,-110.7],"elR":[-27,-0.8],"haR":[-56.9,59.9],"shL":[46.7,-109.7],"elL":[54.2,-6],"haL":[48.7,52.6],"hipR":[-27.6,37.2],"knR":[-75.7,177],"ftR":[-71.8,321.3],"hipL":[10,37.8],"knL":[-16.2,177.5],"ftL":[19.1,326]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-86.2],"neck":[-3.2,-86.2],"head":[-12.1,-149.1],"shR":[-39.1,-111.4],"elR":[-24.2,-2.2],"haR":[-52.5,59.1],"shL":[44.8,-108.8],"elL":[51.3,-5.2],"haL":[44.9,53.9],"hipR":[-27.6,37],"knR":[-76.2,176.7],"ftR":[-72.3,321.4],"hipL":[9.3,38.2],"knL":[-17.3,177.8],"ftL":[18.6,326.2]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-86.2],"neck":[-3.4,-86.2],"head":[-12.9,-149.1],"shR":[-37.4,-110.8],"elR":[-20.8,-2],"haR":[-47.4,59.6],"shL":[42.5,-109.3],"elL":[47.8,-5.6],"haL":[38.9,52.1],"hipR":[-27.5,37],"knR":[-77.5,176.4],"ftR":[-73.4,321.3],"hipL":[8.3,38.2],"knL":[-19.1,178],"ftL":[17.9,325.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-3.8,-86],"neck":[-3.8,-86],"head":[-14.2,-148.7],"shR":[-36.4,-110.9],"elR":[-18.1,-2.5],"haR":[-42.8,59.6],"shL":[40.6,-109],"elL":[44.5,-5.4],"haL":[33.9,51.9],"hipR":[-27.2,37],"knR":[-78.3,176.1],"ftR":[-73.9,321.1],"hipL":[7.8,38.3],"knL":[-20.2,178.1],"ftL":[17.6,325.9]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.6,-85.9],"neck":[-4.6,-85.9],"head":[-15.4,-148.4],"shR":[-37.2,-111.5],"elR":[-17,-3.7],"haR":[-40.1,58.5],"shL":[39.6,-108.2],"elL":[42.1,-4.6],"haL":[29.6,52.4],"hipR":[-27.2,36.9],"knR":[-79.2,175.7],"ftR":[-74.2,320.8],"hipL":[7.4,38.6],"knL":[-20.5,178.5],"ftL":[17.2,326.2]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-85.7],"neck":[-5,-85.7],"head":[-16,-148.3],"shR":[-36.7,-111.9],"elR":[-14.6,-4.4],"haR":[-36.3,58],"shL":[38.2,-107.5],"elL":[39.6,-4.1],"haL":[25.2,52.9],"hipR":[-26.7,37.2],"knR":[-80,175.5],"ftR":[-74.7,320.6],"hipL":[7.5,38.5],"knL":[-20.7,178.5],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.5,-85.5],"neck":[-5.5,-85.5],"head":[-17.2,-147.9],"shR":[-36.8,-111.8],"elR":[-13.1,-4.7],"haR":[-33.7,57.9],"shL":[37,-107.3],"elL":[37.2,-3.8],"haL":[20.9,52.7],"hipR":[-26.6,37.2],"knR":[-80.6,175.3],"ftR":[-75,320.2],"hipL":[7.2,38.8],"knL":[-21.2,178.7],"ftL":[17.1,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-5.8,-85.3],"neck":[-5.8,-85.3],"head":[-18.2,-147.4],"shR":[-36.1,-111.9],"elR":[-10.6,-5.1],"haR":[-30.9,57.7],"shL":[35.5,-106.9],"elL":[34.2,-3.3],"haL":[16.3,53],"hipR":[-26.4,37.2],"knR":[-81,175],"ftR":[-74.8,319.8],"hipL":[7.2,38.9],"knL":[-20.8,179],"ftL":[17.2,326.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-6.4,-85.1],"neck":[-6.4,-85.1],"head":[-19.1,-147.1],"shR":[-36.3,-112.3],"elR":[-9.5,-5.8],"haR":[-29.2,57.1],"shL":[34.4,-106.2],"elL":[31.6,-2.7],"haL":[12.3,53.2],"hipR":[-26.5,37],"knR":[-81.4,174.6],"ftR":[-73.6,319.5],"hipL":[6.7,39.2],"knL":[-21.2,179.3],"ftL":[17.6,326]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.9],"neck":[-7,-84.9],"head":[-20,-146.8],"shR":[-36.3,-112.3],"elR":[-8.8,-5.7],"haR":[-28,57.1],"shL":[33,-105.8],"elL":[28.5,-2.3],"haL":[8.3,53.4],"hipR":[-26.4,36.9],"knR":[-81.9,174.2],"ftR":[-72.4,318.9],"hipL":[6.7,39.5],"knL":[-21.3,179.7],"ftL":[18,326.2]},{"rootY":-0.5,"hips":[0,0],"chest":[-7,-84.6],"neck":[-7,-84.6],"head":[-20.6,-146.3],"shR":[-36.4,-112.4],"elR":[-7.7,-6.4],"haR":[-27.2,56.4],"shL":[32.8,-105.2],"elL":[27.1,-1.7],"haL":[5.7,53.7],"hipR":[-26,37.2],"knR":[-82.4,174.1],"ftR":[-70.6,318.3],"hipL":[7.2,39.5],"knL":[-20.2,179.8],"ftL":[19.1,326.1]},{"rootY":-0.3,"hips":[0,0],"chest":[-7.2,-84.7],"neck":[-7.2,-84.7],"head":[-21,-146.3],"shR":[-36.4,-112.8],"elR":[-7.3,-7],"haR":[-27,55.9],"shL":[32.5,-104.9],"elL":[25.8,-1.4],"haL":[3.4,53.6],"hipR":[-25.8,37.2],"knR":[-83.5,173.6],"ftR":[-69,317.1],"hipL":[6.6,39.4],"knL":[-20.5,180],"ftL":[20.5,325.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-22.1,-145.4],"shR":[-36.8,-112.2],"elR":[-7.6,-6.3],"haR":[-27.5,56.5],"shL":[31.2,-104.2],"elL":[23.4,-0.8],"haL":[0.3,54],"hipR":[-25.7,37.3],"knR":[-83.2,173.4],"ftR":[-67.1,316.5],"hipL":[8.1,39.9],"knL":[-18.1,180.5],"ftL":[21.6,326.1]},{"rootY":-0.2,"hips":[0,0],"chest":[-8.1,-83.8],"neck":[-8.1,-83.8],"head":[-22.7,-145.1],"shR":[-36.9,-112.4],"elR":[-7.8,-6.7],"haR":[-28.4,56],"shL":[30.8,-103.6],"elL":[22.1,-0.2],"haL":[-1.6,54.4],"hipR":[-25.5,37.4],"knR":[-83.8,173.1],"ftR":[-65.4,315.3],"hipL":[8.4,39.9],"knL":[-17.1,180.7],"ftL":[23.1,325.7]},{"rootY":0.2,"hips":[0,0],"chest":[-8.3,-83.6],"neck":[-8.3,-83.6],"head":[-23.2,-144.7],"shR":[-37.5,-112.4],"elR":[-8.2,-6.9],"haR":[-30,55.6],"shL":[30.6,-103.3],"elL":[21.1,0],"haL":[-2.7,54.6],"hipR":[-25.2,37.6],"knR":[-84.6,172.9],"ftR":[-63.5,313.9],"hipL":[8.9,39.9],"knL":[-15.3,181],"ftL":[24.9,325.2]},{"rootY":0.4,"hips":[0,0],"chest":[-8.8,-83.3],"neck":[-8.8,-83.3],"head":[-24,-144.3],"shR":[-38.5,-112.2],"elR":[-9.2,-6.8],"haR":[-32,55.5],"shL":[30.6,-102.7],"elL":[20.5,0.6],"haL":[-3.2,54.9],"hipR":[-25.4,37.5],"knR":[-84.5,172.7],"ftR":[-61.4,312.5],"hipL":[9.1,40.2],"knL":[-14.4,181.5],"ftL":[27,325.2]},{"rootY":0.6,"hips":[0,0],"chest":[-8.8,-83.2],"neck":[-8.8,-83.2],"head":[-24.1,-144.1],"shR":[-39.2,-112.5],"elR":[-10.6,-7.2],"haR":[-34.1,54.7],"shL":[31,-102.4],"elL":[20.7,0.9],"haL":[-2.7,55.4],"hipR":[-25.2,37.5],"knR":[-84.8,172.6],"ftR":[-58.8,311],"hipL":[9.3,40.3],"knL":[-12.9,181.9],"ftL":[29.9,324.6]},{"rootY":1.3,"hips":[0,0],"chest":[-8.9,-82.9],"neck":[-8.9,-82.9],"head":[-24.6,-143.7],"shR":[-39.3,-112.2],"elR":[-11.5,-7.2],"haR":[-36.1,54.2],"shL":[30.9,-102.1],"elL":[20.8,1.1],"haL":[-2.2,55.6],"hipR":[-25.1,37.6],"knR":[-84.4,172.9],"ftR":[-55.6,309.5],"hipL":[10,40.4],"knL":[-10.6,182.3],"ftL":[32.8,324]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-83.1],"neck":[-8.9,-83.1],"head":[-24.6,-143.7],"shR":[-40.3,-112.6],"elR":[-12.7,-8],"haR":[-38.6,53],"shL":[31.8,-102],"elL":[21.6,1.2],"haL":[-0.2,55.6],"hipR":[-25.1,37.5],"knR":[-84.3,173],"ftR":[-51.8,307.6],"hipL":[9.6,40.5],"knL":[-9.4,182.7],"ftL":[36.3,322.8]},{"rootY":3,"hips":[0,0],"chest":[-9.1,-82.5],"neck":[-9.1,-82.5],"head":[-24.9,-143.1],"shR":[-42.7,-112.6],"elR":[-15,-8.4],"haR":[-42.1,52.1],"shL":[33.8,-100.9],"elL":[24,2],"haL":[3.6,56.4],"hipR":[-24.9,37.8],"knR":[-82.9,173.6],"ftR":[-46.7,305.9],"hipL":[10.9,40.6],"knL":[-6,183],"ftL":[40.3,322.1]},{"rootY":4,"hips":[0,0],"chest":[-8.9,-82.3],"neck":[-8.9,-82.3],"head":[-24.8,-142.9],"shR":[-43,-112.6],"elR":[-16,-8.8],"haR":[-44.6,51.2],"shL":[34.5,-100.5],"elL":[25.9,2.3],"haL":[7.2,56.5],"hipR":[-24.9,37.7],"knR":[-81.6,174.3],"ftR":[-41.7,304],"hipL":[11.4,40.8],"knL":[-3.2,183.5],"ftL":[44.8,321]},{"rootY":5.2,"hips":[0,0],"chest":[-8.9,-82],"neck":[-8.9,-82],"head":[-24.7,-142.5],"shR":[-43.2,-112.4],"elR":[-16.5,-9.4],"haR":[-46.8,50],"shL":[34.7,-100.2],"elL":[28.2,2.4],"haL":[11.2,56.3],"hipR":[-24.9,37.7],"knR":[-79.8,175],"ftR":[-37,302.1],"hipL":[11.8,41.1],"knL":[-0.7,183.9],"ftL":[49.5,319.6]},{"rootY":6.8,"hips":[0,0],"chest":[-8.5,-81.8],"neck":[-8.5,-81.8],"head":[-24.2,-142.1],"shR":[-43.1,-112.2],"elR":[-17.3,-9.4],"haR":[-49.5,49.3],"shL":[35.3,-99.8],"elL":[31.9,2.3],"haL":[17.2,55.7],"hipR":[-25.4,37.4],"knR":[-77.4,175.8],"ftR":[-31.2,299.7],"hipL":[11.8,41.4],"knL":[2.5,184.5],"ftL":[55,317.6]},{"rootY":8.6,"hips":[0,0],"chest":[-7.7,-81.3],"neck":[-7.7,-81.3],"head":[-23.2,-141.6],"shR":[-42.1,-111.6],"elR":[-18.2,-8.9],"haR":[-52.2,48.9],"shL":[36,-99.6],"elL":[37,2.2],"haL":[25.1,54.5],"hipR":[-25.7,37],"knR":[-73.9,176.7],"ftR":[-24.7,297.3],"hipL":[11.8,42],"knL":[4.9,185.2],"ftL":[60.8,315.1]},{"rootY":10.9,"hips":[0,0],"chest":[-8,-81.5],"neck":[-8,-81.5],"head":[-23.2,-141.7],"shR":[-43.3,-111.9],"elR":[-22.1,-9],"haR":[-58.3,47.8],"shL":[36.5,-99.5],"elL":[42.3,1.4],"haL":[34.2,52.3],"hipR":[-26.5,36.5],"knR":[-71.6,177.5],"ftR":[-19.2,293.9],"hipL":[11.2,42.2],"knL":[4.8,185.4],"ftL":[65.9,309.7]},{"rootY":12.9,"hips":[0,0],"chest":[-8.2,-81.1],"neck":[-8.2,-81.1],"head":[-23,-141.2],"shR":[-44.1,-111.8],"elR":[-27.4,-8.1],"haR":[-65.9,47.4],"shL":[37.1,-98.9],"elL":[48.6,0.4],"haL":[45,49.7],"hipR":[-27.2,36.1],"knR":[-68.7,178.2],"ftR":[-14.2,289.9],"hipL":[11.2,42.6],"knL":[4.5,185.7],"ftL":[71.1,300.8]},{"rootY":15,"hips":[0,0],"chest":[-8.9,-80.7],"neck":[-8.9,-80.7],"head":[-23.3,-140.6],"shR":[-45.6,-111.3],"elR":[-34.2,-7.3],"haR":[-75.5,46.4],"shL":[36.7,-98.7],"elL":[55.5,-1.9],"haL":[57.2,45.1],"hipR":[-28,35.7],"knR":[-66.6,178.8],"ftR":[-10.4,285.5],"hipL":[12,42.9],"knL":[1.9,184.4],"ftL":[72,287.3]},{"rootY":17.9,"hips":[0,0],"chest":[-9.4,-80.4],"neck":[-9.4,-80.4],"head":[-23.3,-140.3],"shR":[-48.6,-110.5],"elR":[-44.6,-6],"haR":[-89.2,44.9],"shL":[38.1,-99],"elL":[64.9,-6.3],"haL":[73.1,37.7],"hipR":[-28.6,35.4],"knR":[-65.3,179.2],"ftR":[-6.8,280.9],"hipL":[12.2,43.2],"knL":[-1.8,180.2],"ftL":[66.7,272.3]},{"rootY":20.8,"hips":[0,0],"chest":[-10.2,-80.2],"neck":[-10.2,-80.2],"head":[-23,-140.2],"shR":[-52.3,-109.6],"elR":[-58.9,-5.2],"haR":[-107.6,41],"shL":[39.5,-99.7],"elL":[74.5,-12.2],"haL":[90,27.9],"hipR":[-29.7,34.5],"knR":[-63.4,179.6],"ftR":[-2.5,277.3],"hipL":[11.3,43.7],"knL":[-5,172.7],"ftL":[56,260.3]},{"rootY":22.6,"hips":[0,0],"chest":[-10.7,-79.8],"neck":[-10.7,-79.8],"head":[-22.5,-140.1],"shR":[-54.6,-108.8],"elR":[-74,-4.9],"haR":[-126.6,33.7],"shL":[40.7,-99.6],"elL":[86.9,-18.9],"haL":[109,14.6],"hipR":[-29.8,34.4],"knR":[-58.7,181.1],"ftR":[2.9,275.6],"hipL":[11.5,43.9],"knL":[-6.9,161.3],"ftL":[41.4,256]},{"rootY":20.9,"hips":[0,0],"chest":[-10.4,-79.9],"neck":[-10.4,-79.9],"head":[-21.4,-140.4],"shR":[-56.4,-108.8],"elR":[-88.5,-6.2],"haR":[-143.2,21.3],"shL":[43.1,-99.9],"elL":[100.3,-28.3],"haL":[129.8,-1.4],"hipR":[-30.1,34],"knR":[-50.7,182.6],"ftR":[9.6,277.2],"hipL":[11.2,44.2],"knL":[-10.2,149.4],"ftL":[26.5,260.6]},{"rootY":16.3,"hips":[0,0],"chest":[-9.3,-80.5],"neck":[-9.3,-80.5],"head":[-20.1,-141],"shR":[-56.8,-108.7],"elR":[-100.1,-8],"haR":[-153.8,6.5],"shL":[45.8,-101.1],"elL":[113.6,-37.6],"haL":[149.5,-18.3],"hipR":[-30.8,33.4],"knR":[-40.7,182.2],"ftR":[15.3,280],"hipL":[10.6,44.6],"knL":[-15.2,141.4],"ftL":[12.1,272.7]},{"rootY":9.6,"hips":[0,0],"chest":[-7.7,-80.9],"neck":[-7.7,-80.9],"head":[-18.4,-141.7],"shR":[-56,-107.7],"elR":[-108.5,-9.8],"haR":[-158.1,-6.9],"shL":[48,-103],"elL":[123.3,-46.5],"haL":[166.5,-34.1],"hipR":[-31.9,32.2],"knR":[-33.9,178.4],"ftR":[16.7,281.5],"hipL":[9.3,45.3],"knL":[-20.9,139.2],"ftL":[-1.5,287.7]},{"rootY":1.2,"hips":[0,0],"chest":[-5.7,-82],"neck":[-5.7,-82],"head":[-17,-143],"shR":[-54.4,-106.5],"elR":[-115.1,-11.8],"haR":[-159.8,-17.8],"shL":[50.4,-106.1],"elL":[133.3,-54.9],"haL":[181.6,-48.7],"hipR":[-32.9,31.2],"knR":[-30.8,172.2],"ftR":[9.3,283.3],"hipL":[8,45.6],"knL":[-25.4,143.1],"ftL":[-14.3,302.7]},{"rootY":-5.2,"hips":[0,0],"chest":[-2.8,-83.3],"neck":[-2.8,-83.3],"head":[-14.3,-144.8],"shR":[-51.7,-105.4],"elR":[-118.9,-14.1],"haR":[-159.5,-26.7],"shL":[53.2,-109.6],"elL":[142.1,-64.3],"haL":[194.7,-63.6],"hipR":[-33.6,30.6],"knR":[-29.7,164.2],"ftR":[2.6,276.6],"hipL":[7.2,45.5],"knL":[-27.4,149.3],"ftL":[-25.3,312.7]},{"rootY":-6.7,"hips":[0,0],"chest":[0,-84.7],"neck":[0,-84.7],"head":[-11.6,-146.7],"shR":[-50.4,-105.6],"elR":[-120.6,-16.4],"haR":[-159.8,-33.6],"shL":[57.5,-111.7],"elL":[151.2,-73.2],"haL":[206.4,-77.3],"hipR":[-35.2,29.2],"knR":[-33.6,157.1],"ftR":[0.8,255.8],"hipL":[5.2,45.4],"knL":[-30.3,153.3],"ftL":[-34.1,315.6]},{"rootY":-2.9,"hips":[0,0],"chest":[2.6,-86],"neck":[2.6,-86],"head":[-8.6,-148.5],"shR":[-48.3,-105.3],"elR":[-119.4,-16.7],"haR":[-159.3,-36],"shL":[60.8,-113.9],"elL":[158.2,-82.6],"haL":[214.5,-90.8],"hipR":[-36.8,27.7],"knR":[-43.1,151.2],"ftR":[-2.8,226.7],"hipL":[3.5,44.9],"knL":[-32.4,153.5],"ftL":[-41.2,315.2]},{"rootY":5.7,"hips":[0,0],"chest":[5.5,-86.6],"neck":[5.5,-86.6],"head":[-5,-149.5],"shR":[-46.1,-104.3],"elR":[-116.1,-14.9],"haR":[-158.4,-33.9],"shL":[64.8,-115],"elL":[164.6,-89.2],"haL":[221.1,-101.6],"hipR":[-37.8,26.9],"knR":[-54.8,147.1],"ftR":[-9.9,194.8],"hipL":[3.6,44.1],"knL":[-29.1,151],"ftL":[-46.4,313.1]},{"rootY":18.4,"hips":[0,0],"chest":[8,-86.9],"neck":[8,-86.9],"head":[-1.5,-150.3],"shR":[-44.2,-103.4],"elR":[-110.7,-11.3],"haR":[-156.9,-28.3],"shL":[68.1,-115.4],"elL":[168.7,-91.8],"haL":[224.3,-108.4],"hipR":[-38.6,25.8],"knR":[-69.4,144.1],"ftR":[-21.8,164.3],"hipL":[3.4,43.3],"knL":[-23.8,148.1],"ftL":[-52.5,308]},{"rootY":29,"hips":[0,0],"chest":[9.4,-87],"neck":[9.4,-87],"head":[-0.1,-150.4],"shR":[-43.5,-103],"elR":[-101,-5],"haR":[-153.2,-17.3],"shL":[70.4,-115],"elL":[169.5,-87.8],"haL":[223.8,-107.4],"hipR":[-38.6,25.6],"knR":[-86,145.3],"ftR":[-39.7,146.2],"hipL":[4.3,41.7],"knL":[-21,142.8],"ftL":[-50.4,298.1]},{"rootY":37.7,"hips":[0,0],"chest":[9.3,-87.1],"neck":[9.3,-87.1],"head":[-1.5,-150.3],"shR":[-43.5,-102.9],"elR":[-87.7,1.7],"haR":[-145.4,0.3],"shL":[70.4,-115.1],"elL":[164.9,-77],"haL":[217.4,-97],"hipR":[-37.5,26.6],"knR":[-104.4,149.1],"ftR":[-63.3,145.1],"hipL":[6.3,39.4],"knL":[-19.2,139.5],"ftL":[-46.1,289]},{"rootY":42.8,"hips":[0,0],"chest":[7.3,-87.3],"neck":[7.3,-87.3],"head":[-4.7,-150],"shR":[-45.1,-102.5],"elR":[-74.4,7],"haR":[-133.7,20.7],"shL":[67.9,-115.9],"elL":[154.3,-63.5],"haL":[205.1,-80],"hipR":[-36.1,28],"knR":[-122.2,148.8],"ftR":[-90.5,165.4],"hipL":[8.1,36.8],"knL":[-19.8,140.2],"ftL":[-46.3,284]},{"rootY":46,"hips":[0,0],"chest":[3.8,-87.4],"neck":[3.8,-87.4],"head":[-9.2,-149.8],"shR":[-47.5,-101.4],"elR":[-60.9,10.8],"haR":[-118.2,38.5],"shL":[63.3,-117.3],"elL":[139.6,-52.7],"haL":[187.5,-61.3],"hipR":[-35,28.7],"knR":[-134.1,140.4],"ftR":[-119.6,204],"hipL":[9.6,34.7],"knL":[-22.1,141.3],"ftL":[-47.1,280.7]},{"rootY":48.2,"hips":[0,0],"chest":[1.2,-87.4],"neck":[1.2,-87.4],"head":[-12.8,-149.5],"shR":[-49,-100.7],"elR":[-46.7,11.4],"haR":[-98.4,51.6],"shL":[59.1,-118.6],"elL":[123.8,-43.8],"haL":[166.6,-41.7],"hipR":[-33.2,29.6],"knR":[-133.3,130.9],"ftR":[-148.3,248.9],"hipL":[12.2,31.7],"knL":[-22.5,142.1],"ftL":[-46.1,277.7]},{"rootY":47.4,"hips":[0,0],"chest":[-0.6,-87.3],"neck":[-0.6,-87.3],"head":[-15.8,-149.2],"shR":[-49,-99.3],"elR":[-33,10.8],"haR":[-76.6,61.6],"shL":[55,-120.3],"elL":[106.6,-36],"haL":[139.6,-22.9],"hipR":[-31.7,30.7],"knR":[-123.4,124.8],"ftR":[-169.4,270.8],"hipL":[13.6,29.6],"knL":[-22.6,144.9],"ftL":[-44.9,278.5]},{"rootY":41.8,"hips":[0,0],"chest":[-1.3,-87.2],"neck":[-1.3,-87.2],"head":[-17,-149],"shR":[-47.4,-98.7],"elR":[-18.7,8.2],"haR":[-53.6,66.1],"shL":[52.1,-121],"elL":[89.2,-29.4],"haL":[110.3,-6.1],"hipR":[-31,31.5],"knR":[-114.7,117.7],"ftR":[-158.6,259],"hipL":[14,28.9],"knL":[-21.9,149.8],"ftL":[-43.7,283.7]},{"rootY":39.1,"hips":[0,0],"chest":[-2.6,-87.2],"neck":[-2.6,-87.2],"head":[-18.5,-149.1],"shR":[-45.9,-98],"elR":[-7.3,5.6],"haR":[-33,68.3],"shL":[48.3,-122.1],"elL":[69,-25.2],"haL":[77.3,5.9],"hipR":[-30.7,32.1],"knR":[-105,107.4],"ftR":[-142,233.5],"hipL":[14.3,29.6],"knL":[-22.3,152.6],"ftL":[-42.6,287.3]},{"rootY":36.8,"hips":[0,0],"chest":[-2.6,-87.3],"neck":[-2.6,-87.3],"head":[-18.2,-149.5],"shR":[-42.7,-97.5],"elR":[3.9,2.8],"haR":[-13.4,67.7],"shL":[45.3,-122.9],"elL":[50.7,-23.2],"haL":[44.3,13.2],"hipR":[-28.2,33.2],"knR":[-90,97.1],"ftR":[-111.8,216.9],"hipL":[16.9,26.2],"knL":[-23,152.2],"ftL":[-39.4,287.1]},{"rootY":36.7,"hips":[0,0],"chest":[-3.8,-87.3],"neck":[-3.8,-87.3],"head":[-19.1,-149.9],"shR":[-40.6,-97.8],"elR":[12.1,-0.6],"haR":[1.5,64.9],"shL":[41.7,-122.8],"elL":[35.5,-22.1],"haL":[12.5,16.8],"hipR":[-27.5,33],"knR":[-72.9,83.9],"ftR":[-70.2,203],"hipL":[18.5,25.8],"knL":[-21.6,153.8],"ftL":[-38.6,287.3]},{"rootY":34.5,"hips":[0,0],"chest":[-2.2,-87.4],"neck":[-2.2,-87.4],"head":[-17.6,-150.2],"shR":[-35.9,-98.2],"elR":[19.8,-2.5],"haR":[15.1,62.6],"shL":[40.7,-122.8],"elL":[25.3,-22.3],"haL":[-13.1,16.2],"hipR":[-27,32.6],"knR":[-53.1,72.2],"ftR":[-30.6,193.9],"hipL":[20,26],"knL":[-17.1,156.3],"ftL":[-35.5,289.6]},{"rootY":31.3,"hips":[0,0],"chest":[-0.8,-87.4],"neck":[-0.8,-87.4],"head":[-16,-150.3],"shR":[-31.4,-98.1],"elR":[24.6,-2.3],"haR":[24.8,61.9],"shL":[39.8,-122.8],"elL":[17,-23.6],"haL":[-33.5,12.1],"hipR":[-27.4,32.2],"knR":[-33.2,66.2],"ftR":[3.4,188.9],"hipL":[20.3,27.8],"knL":[-14.4,159.7],"ftL":[-32.4,292]},{"rootY":29.3,"hips":[0,0],"chest":[0.2,-87.5],"neck":[0.2,-87.5],"head":[-14.3,-150.7],"shR":[-28.8,-98.3],"elR":[27,-2.3],"haR":[30.3,60.9],"shL":[39.8,-122.8],"elL":[8.9,-25.7],"haL":[-48.9,5.8],"hipR":[-25.6,33],"knR":[-15.9,63.5],"ftR":[31.6,187.2],"hipL":[22.5,27.1],"knL":[-10.2,161],"ftL":[-32,293.5]},{"rootY":25.9,"hips":[0,0],"chest":[0.3,-87.5],"neck":[0.3,-87.5],"head":[-13.2,-151],"shR":[-29.2,-98.8],"elR":[27.4,-3.3],"haR":[31.5,59.2],"shL":[40.7,-122.2],"elL":[0.7,-28.2],"haL":[-60.5,-1.7],"hipR":[-24.6,33],"knR":[-1.6,66.3],"ftR":[56.2,191.8],"hipL":[24.2,27.7],"knL":[-4.8,164],"ftL":[-31.9,297.3]},{"rootY":23.7,"hips":[0,0],"chest":[0.8,-87.6],"neck":[0.8,-87.6],"head":[-11.8,-151.4],"shR":[-30.5,-97.6],"elR":[26.7,-2.7],"haR":[30.9,59.5],"shL":[42.6,-123.4],"elL":[-7.2,-33.4],"haL":[-69.4,-11.2],"hipR":[-22.3,34],"knR":[11.5,74.6],"ftR":[75.8,201.6],"hipL":[27.3,28.4],"knL":[1.5,165.8],"ftL":[-31.2,298.4]},{"rootY":20.5,"hips":[0,0],"chest":[1.4,-87.6],"neck":[1.4,-87.6],"head":[-10.8,-151.7],"shR":[-33.8,-97.5],"elR":[23.1,-3],"haR":[26.5,59.5],"shL":[45.7,-123.6],"elL":[-12.2,-37.9],"haL":[-74.6,-19.8],"hipR":[-20.8,34.5],"knR":[23.3,85.9],"ftR":[88.9,216.7],"hipL":[29.2,29.7],"knL":[7.3,168.2],"ftL":[-30.3,300.9]},{"rootY":18.4,"hips":[0,0],"chest":[1.6,-87.6],"neck":[1.6,-87.6],"head":[-10.1,-151.9],"shR":[-36.3,-96.5],"elR":[18.3,-1.5],"haR":[20.8,61.3],"shL":[47.3,-124.5],"elL":[-15.9,-41.9],"haL":[-78.9,-27.9],"hipR":[-18.8,35.4],"knR":[32.5,97.3],"ftR":[93.3,234.3],"hipL":[31.2,30.4],"knL":[11.3,169.9],"ftL":[-31,302.9]},{"rootY":17,"hips":[0,0],"chest":[1.7,-87.5],"neck":[1.7,-87.5],"head":[-9.5,-151.9],"shR":[-41.8,-97.1],"elR":[8.7,-1.1],"haR":[9.7,62.4],"shL":[51.6,-123.7],"elL":[-14.2,-43.3],"haL":[-77.2,-32.8],"hipR":[-14.9,36.3],"knR":[41,108.6],"ftR":[90.9,253],"hipL":[34.4,28.9],"knL":[13.7,169.4],"ftL":[-33.5,303.2]},{"rootY":15.9,"hips":[0,0],"chest":[2.2,-87.3],"neck":[2.2,-87.3],"head":[-8.7,-151.8],"shR":[-45.8,-97.8],"elR":[-3.2,1.1],"haR":[-4.5,65],"shL":[55.3,-122.5],"elL":[-11.4,-43.3],"haL":[-74.7,-35.4],"hipR":[-16.5,35.6],"knR":[47.8,120.2],"ftR":[85.2,269.7],"hipL":[32.9,31.7],"knL":[15.2,172.9],"ftL":[-33.4,305.7]},{"rootY":16.5,"hips":[0,0],"chest":[0,-87.4],"neck":[0,-87.4],"head":[-10.6,-152],"shR":[-51.7,-97.5],"elR":[-18.3,3.9],"haR":[-24.2,68.4],"shL":[55.7,-122.5],"elL":[-9.1,-43.6],"haL":[-72.3,-36.5],"hipR":[-13,36.5],"knR":[49.6,133.7],"ftR":[72.5,286.3],"hipL":[35.2,31.1],"knL":[16.4,172.2],"ftL":[-37.7,302.4]},{"rootY":17.9,"hips":[0,0],"chest":[-1.4,-87.3],"neck":[-1.4,-87.3],"head":[-11.2,-152.1],"shR":[-56,-98.1],"elR":[-32.9,5.8],"haR":[-45.3,70.4],"shL":[56.4,-121.5],"elL":[-3.6,-42.8],"haL":[-67.7,-35.3],"hipR":[-12.3,36.6],"knR":[48.5,145.7],"ftR":[59.8,299],"hipL":[35.2,32],"knL":[17.2,173.2],"ftL":[-41.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[-1.8,-87.2],"neck":[-1.8,-87.2],"head":[-11.3,-152],"shR":[-59.5,-98.8],"elR":[-48,7.4],"haR":[-67.5,71.2],"shL":[57.6,-120.4],"elL":[4.9,-41.5],"haL":[-60.3,-31.4],"hipR":[-11.6,35.9],"knR":[50.5,151.2],"ftR":[61.4,304.6],"hipL":[34.7,33.1],"knL":[19,174.6],"ftL":[-43.3,299.4]},{"rootY":19.3,"hips":[0,0],"chest":[-1.3,-87.6],"neck":[-1.3,-87.6],"head":[-10.4,-152.4],"shR":[-60.8,-98],"elR":[-60.7,10.4],"haR":[-88,71.9],"shL":[58.7,-120.7],"elL":[15.7,-41.7],"haL":[-49.2,-26.7],"hipR":[-13,35.4],"knR":[48.1,152.6],"ftR":[64.4,305.2],"hipL":[33.7,34],"knL":[18.2,175.3],"ftL":[-44.9,297.5]},{"rootY":21.4,"hips":[0,0],"chest":[0.5,-87.7],"neck":[0.5,-87.7],"head":[-8.4,-152.5],"shR":[-60.8,-97.4],"elR":[-70.6,12],"haR":[-105.7,70],"shL":[60.1,-121.4],"elL":[29.1,-41.4],"haL":[-33.1,-21.5],"hipR":[-12.5,35.6],"knR":[47.6,153.1],"ftR":[65,305.4],"hipL":[34.1,33.6],"knL":[17.4,174.7],"ftL":[-44.7,295.5]},{"rootY":22.5,"hips":[0,0],"chest":[0,-87.6],"neck":[0,-87.6],"head":[-7.6,-152.6],"shR":[-62.3,-99.4],"elR":[-79.9,10.8],"haR":[-121.2,63.7],"shL":[60.1,-119.9],"elL":[42,-38.6],"haL":[-13,-14],"hipR":[-11.7,35.4],"knR":[49.7,151.8],"ftR":[65.1,304],"hipL":[34.6,33.2],"knL":[17.8,174.4],"ftL":[-44.1,294.9]},{"rootY":22.8,"hips":[0,0],"chest":[-0.3,-87.5],"neck":[-0.3,-87.5],"head":[-6.3,-152.6],"shR":[-63.1,-100.5],"elR":[-88.3,9.4],"haR":[-133.2,56.4],"shL":[59.9,-119],"elL":[52.6,-35.4],"haL":[11.5,-6.6],"hipR":[-11.4,34.7],"knR":[51.7,151],"ftR":[65.9,303.1],"hipL":[34.3,33.6],"knL":[19.6,175],"ftL":[-42.7,294.9]},{"rootY":22.9,"hips":[0,0],"chest":[-0.4,-87.6],"neck":[-0.4,-87.6],"head":[-4.6,-152.8],"shR":[-63.3,-101.8],"elR":[-95.3,7],"haR":[-141.3,46.8],"shL":[60,-117.7],"elL":[61.1,-32.5],"haL":[40.8,-0.3],"hipR":[-10.3,34.7],"knR":[54.5,150.7],"ftR":[67.9,303],"hipL":[34.7,33.4],"knL":[22.3,175],"ftL":[-39.9,294.9]},{"rootY":21.9,"hips":[0,0],"chest":[-0.7,-87.6],"neck":[-0.7,-87.6],"head":[-3.3,-152.9],"shR":[-63.7,-103.4],"elR":[-101.9,3.6],"haR":[-147.1,35.8],"shL":[59.8,-116.3],"elL":[69.5,-30.5],"haL":[71.1,1.9],"hipR":[-9.3,34.8],"knR":[56.4,151.5],"ftR":[69.9,304.1],"hipL":[35,33.3],"knL":[24.4,175],"ftL":[-37.4,296]},{"rootY":20.5,"hips":[0,0],"chest":[-0.6,-87.6],"neck":[-0.6,-87.6],"head":[-1.6,-152.9],"shR":[-63.6,-104.2],"elR":[-108.1,0.3],"haR":[-150.2,25],"shL":[59.4,-115.3],"elL":[80.6,-29.8],"haL":[101.2,1.3],"hipR":[-9,34.9],"knR":[57,152.8],"ftR":[72.8,305.5],"hipL":[34.9,33.5],"knL":[25.9,175.5],"ftL":[-34.5,298.4]},{"rootY":19.3,"hips":[0,0],"chest":[-0.2,-87.7],"neck":[-0.2,-87.7],"head":[0.1,-152.9],"shR":[-62.9,-105.6],"elR":[-113.1,-3.7],"haR":[-150.2,14.5],"shL":[59.3,-114.3],"elL":[93.5,-30.6],"haL":[130.6,-2.3],"hipR":[-8.7,35.4],"knR":[56.8,154],"ftR":[75.5,306.5],"hipL":[35,33.5],"knL":[26.2,175.7],"ftL":[-31.4,300.6]},{"rootY":17.9,"hips":[0,0],"chest":[0.4,-87.7],"neck":[0.4,-87.7],"head":[2,-152.9],"shR":[-62,-106.6],"elR":[-116.6,-7.1],"haR":[-149.3,5.6],"shL":[59.3,-113.5],"elL":[107.1,-31],"haL":[155,-6.9],"hipR":[-8.6,36],"knR":[55.3,155],"ftR":[77.2,307.3],"hipL":[35.1,33.5],"knL":[25.8,175.7],"ftL":[-28.5,303.3]},{"rootY":16.8,"hips":[0,0],"chest":[1.6,-87.7],"neck":[1.6,-87.7],"head":[4.3,-152.8],"shR":[-60.4,-107.6],"elR":[-118.4,-10.2],"haR":[-147,-1.6],"shL":[60,-112.8],"elL":[120.1,-32.5],"haL":[175.9,-11],"hipR":[-9.4,36.5],"knR":[53.3,155.3],"ftR":[77.9,307.4],"hipL":[34.8,33.7],"knL":[25.5,176.2],"ftL":[-25.1,306.4]},{"rootY":16.1,"hips":[0,0],"chest":[3,-87.7],"neck":[3,-87.7],"head":[6.9,-152.6],"shR":[-58.4,-108.6],"elR":[-118.6,-13],"haR":[-143.5,-6.9],"shL":[61.3,-111.9],"elL":[129.8,-34.1],"haL":[190.2,-14.6],"hipR":[-10.2,36.8],"knR":[50.2,155.7],"ftR":[75.6,307.8],"hipL":[34.6,33.9],"knL":[25.5,176.6],"ftL":[-21.9,308.9]},{"rootY":15.9,"hips":[0,0],"chest":[4.4,-87.6],"neck":[4.4,-87.6],"head":[9.3,-152.4],"shR":[-56.4,-109.5],"elR":[-117.7,-15],"haR":[-139.8,-10],"shL":[62.7,-111.4],"elL":[135,-36.4],"haL":[198.3,-18.2],"hipR":[-11,37.2],"knR":[46.6,155.7],"ftR":[70.5,308],"hipL":[34.4,34.2],"knL":[25,176.9],"ftL":[-19,311]},{"rootY":15.1,"hips":[0,0],"chest":[5.6,-87.5],"neck":[5.6,-87.5],"head":[11.7,-151.9],"shR":[-54.8,-109.9],"elR":[-116.2,-16.1],"haR":[-135.9,-10.5],"shL":[63.5,-111.1],"elL":[134.7,-38.4],"haL":[199.1,-21.3],"hipR":[-11.6,37.4],"knR":[42.7,155.5],"ftR":[60.9,308.5],"hipL":[34.1,34.4],"knL":[24.1,177.2],"ftL":[-16.7,312.7]}]},"march":{"name":"march","fps":30,"height":520,"groundY":342,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[1.1,-86.1],"neck":[1.1,-86.1],"head":[2,-151.3],"shR":[-51.8,-120.1],"elR":[-155.8,-105.5],"haR":[-222.9,-96.1],"shL":[58.6,-114],"elL":[159.3,-99.8],"haL":[225.6,-90.5],"hipR":[-21.8,38.1],"knR":[-19.3,184.4],"ftR":[-16.5,341.7],"hipL":[25.5,38.1],"knL":[22.9,183.4],"ftL":[20.2,338.8]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.4],"neck":[-6.3,-84.4],"head":[-27.5,-144.7],"shR":[46.2,-120.7],"elR":[65.5,-17.5],"haR":[73.1,36.4],"shL":[-63.6,-112.6],"elL":[-58.1,-16.3],"haL":[-67.7,49],"hipR":[27.5,34.4],"knR":[17.9,175.6],"ftR":[12.4,313.9],"hipL":[-19.2,41.9],"knL":[-28.3,162.4],"ftL":[-38.2,316.8]},{"rootY":2.8,"hips":[0,0],"chest":[-6.7,-84.2],"neck":[-6.7,-84.2],"head":[-28.7,-144.1],"shR":[45.2,-121.3],"elR":[65.2,-18.2],"haR":[73,34.5],"shL":[-64.1,-111.7],"elL":[-56.9,-15.8],"haL":[-66.6,50.2],"hipR":[27.6,34.3],"knR":[18.6,175],"ftR":[14.5,308.9],"hipL":[-19.1,42],"knL":[-27.4,163.1],"ftL":[-36.6,318.2]},{"rootY":1.7,"hips":[0,0],"chest":[-7.8,-84],"neck":[-7.8,-84],"head":[-30.3,-143.6],"shR":[43.6,-121.7],"elR":[64,-18.7],"haR":[72.1,33.8],"shL":[-65.3,-110.9],"elL":[-56.4,-15.3],"haL":[-65.8,51],"hipR":[26.6,35],"knR":[18,175.5],"ftR":[16.2,304.2],"hipL":[-20.2,41.6],"knL":[-27.8,163],"ftL":[-35.3,318.3]},{"rootY":0.4,"hips":[0,0],"chest":[-8.7,-83.9],"neck":[-8.7,-83.9],"head":[-31.7,-143.4],"shR":[42.2,-122.3],"elR":[62.6,-19.4],"haR":[70.8,33.8],"shL":[-66.1,-110],"elL":[-55.8,-14.7],"haL":[-64.8,51.6],"hipR":[25.5,35.5],"knR":[16.9,177],"ftR":[17.8,297.6],"hipL":[-21.4,41.3],"knL":[-28.8,164.2],"ftL":[-34,319.5]},{"rootY":-0.2,"hips":[0,0],"chest":[-9,-84],"neck":[-9,-84],"head":[-32.6,-143.1],"shR":[41.7,-122.4],"elR":[62.3,-19.7],"haR":[70.2,34.5],"shL":[-66.2,-110],"elL":[-54.8,-15.3],"haL":[-63.4,50.8],"hipR":[25,35.5],"knR":[16.7,178.9],"ftR":[18.5,289.7],"hipL":[-21.8,41.1],"knL":[-30.1,165.8],"ftL":[-32.3,320.5]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.4,-84],"neck":[-9.4,-84],"head":[-33,-143.4],"shR":[41.2,-122.6],"elR":[62.1,-20],"haR":[69.5,35.2],"shL":[-66.5,-109.9],"elL":[-54.4,-15.7],"haL":[-62.7,50.4],"hipR":[23.8,35.8],"knR":[16.9,181.1],"ftR":[18.3,280.7],"hipL":[-23,40.5],"knL":[-32.1,166.9],"ftL":[-30.4,320.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.3,-84.2],"neck":[-9.3,-84.2],"head":[-33,-143.5],"shR":[41.4,-122.6],"elR":[62,-20.1],"haR":[68.8,35.9],"shL":[-66.3,-110],"elL":[-54.1,-16.5],"haL":[-62.4,49.8],"hipR":[22.1,36.4],"knR":[18.4,182.6],"ftR":[19,272],"hipL":[-24.8,39.4],"knL":[-32.7,168],"ftL":[-26.9,319.9]},{"rootY":0.8,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-32.4,-143.8],"shR":[41.9,-122.3],"elR":[61.4,-19.8],"haR":[67.9,37.4],"shL":[-66.1,-110.7],"elL":[-54.5,-16.9],"haL":[-62.6,49.5],"hipR":[20.2,36.9],"knR":[20.9,182.7],"ftR":[19.5,265],"hipL":[-26.7,37.9],"knL":[-31.7,168.8],"ftL":[-23.1,318.6]},{"rootY":1.9,"hips":[0,0],"chest":[-9.2,-84.3],"neck":[-9.2,-84.3],"head":[-31.8,-144],"shR":[42.4,-121.6],"elR":[60,-18.9],"haR":[66.5,39.5],"shL":[-66,-111.4],"elL":[-55.6,-17.1],"haL":[-64.1,49.3],"hipR":[19.9,36.8],"knR":[23,180.6],"ftR":[17.8,259.3],"hipL":[-27.1,37.4],"knL":[-29.8,169.9],"ftL":[-21.1,317.6]},{"rootY":2.2,"hips":[0,0],"chest":[-8.9,-84.4],"neck":[-8.9,-84.4],"head":[-30.7,-144.4],"shR":[43.1,-121.2],"elR":[57.9,-18.3],"haR":[64.6,41.6],"shL":[-65.7,-112],"elL":[-56.7,-16.3],"haL":[-65.9,50],"hipR":[19.5,37],"knR":[25.1,177.3],"ftR":[17.7,258.8],"hipL":[-27.6,36.6],"knL":[-28.3,171.5],"ftL":[-19.3,317.2]},{"rootY":2.3,"hips":[0,0],"chest":[-8.3,-84.5],"neck":[-8.3,-84.5],"head":[-29,-144.5],"shR":[44,-121],"elR":[55.5,-17.7],"haR":[62.4,43.5],"shL":[-65.1,-112.4],"elL":[-57.7,-15.4],"haL":[-67.7,50.7],"hipR":[19.3,37.3],"knR":[26.4,173.3],"ftR":[18.6,263.7],"hipL":[-27.9,36],"knL":[-26.3,173.5],"ftL":[-17.5,317.1]},{"rootY":1.1,"hips":[0,0],"chest":[-7.5,-84.6],"neck":[-7.5,-84.6],"head":[-27,-145.2],"shR":[45.2,-120.6],"elR":[53.4,-17],"haR":[60.4,45.3],"shL":[-64.5,-112.9],"elL":[-59,-15],"haL":[-69.6,50.7],"hipR":[19,37.4],"knR":[26.7,169.2],"ftR":[18.6,273.6],"hipL":[-28.1,35.7],"knL":[-24.4,174.6],"ftL":[-15.6,317.2]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-84.7],"neck":[-6.9,-84.7],"head":[-25.1,-145.7],"shR":[46.3,-120],"elR":[51.8,-16.4],"haR":[58.2,47.2],"shL":[-63.9,-113.7],"elL":[-60.5,-15.1],"haL":[-71.5,50],"hipR":[18.8,37.6],"knR":[26.6,165.2],"ftR":[18.9,286.1],"hipL":[-28.4,35.4],"knL":[-22.9,176.3],"ftL":[-14,317.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-6.4,-84.7],"neck":[-6.4,-84.7],"head":[-23.4,-146.4],"shR":[47,-119.3],"elR":[50.5,-15.8],"haR":[56.5,48.7],"shL":[-63.4,-114.2],"elL":[-62.9,-15.1],"haL":[-74,49.1],"hipR":[18.6,37.9],"knR":[26.6,162.3],"ftR":[20.3,298.7],"hipL":[-28.6,35],"knL":[-21.3,177.8],"ftL":[-12.4,318.3]},{"rootY":-3.2,"hips":[0,0],"chest":[-5.8,-84.7],"neck":[-5.8,-84.7],"head":[-21,-146.8],"shR":[47.7,-118.8],"elR":[49.2,-15.6],"haR":[54.6,49.3],"shL":[-62.8,-114.8],"elL":[-65.8,-15.3],"haL":[-76.4,47.7],"hipR":[18.8,38.2],"knR":[25.8,161],"ftR":[22.3,310],"hipL":[-28.4,35.2],"knL":[-20.5,179.2],"ftL":[-12,319.7]},{"rootY":-4.9,"hips":[0,0],"chest":[-5.7,-84.6],"neck":[-5.7,-84.6],"head":[-18.8,-147.4],"shR":[48,-118.2],"elR":[48,-15.3],"haR":[52.7,50.1],"shL":[-62.6,-115.4],"elL":[-69.7,-15.9],"haL":[-79.4,45.3],"hipR":[18.4,38.6],"knR":[24.3,161.7],"ftR":[25.3,317.7],"hipL":[-28.8,35.1],"knL":[-20.8,179.9],"ftL":[-12,320.6]},{"rootY":-4.1,"hips":[0,0],"chest":[-5.4,-84.7],"neck":[-5.4,-84.7],"head":[-18.2,-146.9],"shR":[48.2,-117.7],"elR":[46.4,-15.1],"haR":[51,50.7],"shL":[-62.2,-116],"elL":[-73.6,-16.3],"haL":[-82.7,43],"hipR":[18.1,38.9],"knR":[22.6,162.9],"ftR":[28.3,319.9],"hipL":[-29,35],"knL":[-21.3,180],"ftL":[-12.5,319.8]},{"rootY":-3.4,"hips":[0,0],"chest":[-4.9,-84.7],"neck":[-4.9,-84.7],"head":[-16.7,-147.1],"shR":[48.7,-117.6],"elR":[45.2,-15.2],"haR":[49.7,50.7],"shL":[-61.5,-116.3],"elL":[-76.8,-16.7],"haL":[-85.1,40.7],"hipR":[17.3,39.2],"knR":[21.8,164.1],"ftR":[30.4,318.6],"hipL":[-29.7,34.6],"knL":[-22,179],"ftL":[-13.2,319.1]},{"rootY":-2,"hips":[0,0],"chest":[-4.5,-84.7],"neck":[-4.5,-84.7],"head":[-15.4,-147.5],"shR":[49.1,-117.1],"elR":[44,-15],"haR":[48.5,51.1],"shL":[-60.8,-116.8],"elL":[-79.6,-17.4],"haL":[-87.3,38.4],"hipR":[17.3,39.4],"knR":[21.9,164.4],"ftR":[30.6,317.3],"hipL":[-29.7,34.7],"knL":[-22.6,178.6],"ftL":[-13.8,317.5]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.1,-84.6],"neck":[-4.1,-84.6],"head":[-14.1,-147.4],"shR":[49.6,-116.5],"elR":[43.1,-14.5],"haR":[48,52],"shL":[-60,-117.3],"elL":[-81.2,-18.1],"haL":[-88.7,35.8],"hipR":[17.4,39.7],"knR":[22.7,163.1],"ftR":[29.8,317],"hipL":[-29.6,34.6],"knL":[-22.8,177.7],"ftL":[-15.3,314.3]},{"rootY":1.5,"hips":[0,0],"chest":[-3.5,-84.5],"neck":[-3.5,-84.5],"head":[-12.8,-147.5],"shR":[50.1,-116.1],"elR":[42.1,-14.2],"haR":[47.1,52.5],"shL":[-59.2,-117.7],"elL":[-81.6,-18.6],"haL":[-89.5,33.8],"hipR":[17.4,39.8],"knR":[22.6,162.4],"ftR":[28.5,318],"hipL":[-29.6,34.5],"knL":[-23,176.4],"ftL":[-16.6,310.7]},{"rootY":1,"hips":[0,0],"chest":[-3,-84.5],"neck":[-3,-84.5],"head":[-11.3,-147.6],"shR":[50.6,-115.5],"elR":[41.7,-13.5],"haR":[46.9,53.5],"shL":[-58.3,-118.3],"elL":[-80.9,-19.2],"haL":[-89.5,32.3],"hipR":[17.5,39.8],"knR":[22,162.5],"ftR":[27.4,319.1],"hipL":[-29.5,34.7],"knL":[-23.3,175.1],"ftL":[-17.9,306.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-2.2,-84.5],"neck":[-2.2,-84.5],"head":[-9.6,-147.8],"shR":[51.5,-114.8],"elR":[41.6,-12.7],"haR":[47.1,54.5],"shL":[-57,-118.9],"elL":[-79.1,-19.8],"haL":[-88.3,31.6],"hipR":[18.7,39.5],"knR":[22.8,163.5],"ftR":[27.6,320.5],"hipL":[-28.4,35.5],"knL":[-22.9,175.5],"ftL":[-19.7,302.6]},{"rootY":-2.6,"hips":[0,0],"chest":[-1.8,-84.5],"neck":[-1.8,-84.5],"head":[-8.4,-148],"shR":[51.9,-114.3],"elR":[41.5,-12.4],"haR":[47.2,54.9],"shL":[-56.2,-119.4],"elL":[-78.2,-20.5],"haL":[-87.3,31.4],"hipR":[19.8,39.2],"knR":[23.3,165],"ftR":[25.3,322.2],"hipL":[-27.3,36.2],"knL":[-23.1,176.5],"ftL":[-22.8,297.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-1.7,-84.6],"neck":[-1.7,-84.6],"head":[-8,-148.4],"shR":[51.9,-114.2],"elR":[41.2,-12.2],"haR":[47.1,55.1],"shL":[-55.9,-119.7],"elL":[-78.1,-20.9],"haL":[-86.4,31.7],"hipR":[20.3,39],"knR":[23.2,167.1],"ftR":[23.6,324],"hipL":[-26.8,36.3],"knL":[-23.6,178.1],"ftL":[-25,291.7]},{"rootY":-5.3,"hips":[0,0],"chest":[-1.5,-84.7],"neck":[-1.5,-84.7],"head":[-7.4,-148.8],"shR":[52,-113.9],"elR":[41.6,-12],"haR":[47.7,55.1],"shL":[-55.6,-120],"elL":[-77.9,-21.5],"haL":[-85.1,32.2],"hipR":[21.2,38.6],"knR":[23,168.6],"ftR":[21.1,324.8],"hipL":[-26,36.7],"knL":[-24.4,180.3],"ftL":[-26,286.1]},{"rootY":-5.4,"hips":[0,0],"chest":[-1.5,-84.8],"neck":[-1.5,-84.8],"head":[-7.1,-149.1],"shR":[52.1,-113.7],"elR":[42.4,-11.9],"haR":[48.9,55.1],"shL":[-55.6,-120.2],"elL":[-78.2,-22.1],"haL":[-83.8,32.2],"hipR":[22.1,38],"knR":[21.7,169.7],"ftR":[18.4,324.5],"hipL":[-25.1,36.9],"knL":[-26.1,181.9],"ftL":[-27.6,278.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-1.9,-84.8],"neck":[-1.9,-84.8],"head":[-7.6,-149.2],"shR":[51.8,-114],"elR":[43.5,-11.8],"haR":[50.3,54.9],"shL":[-56.1,-119.9],"elL":[-78.5,-22.1],"haL":[-82.7,32.7],"hipR":[22.9,37.2],"knR":[19.6,170.6],"ftR":[15.2,323.5],"hipL":[-24.3,37],"knL":[-28.3,182.2],"ftL":[-28.9,271.1]},{"rootY":-3.5,"hips":[0,0],"chest":[-2.2,-84.8],"neck":[-2.2,-84.8],"head":[-8.8,-149.8],"shR":[51.7,-114.5],"elR":[45.3,-11.8],"haR":[52.5,54.6],"shL":[-56.8,-119.6],"elL":[-77.6,-21.7],"haL":[-81.3,33.8],"hipR":[23.6,36.4],"knR":[17.3,171.7],"ftR":[12.7,322.4],"hipL":[-23.6,37],"knL":[-30.6,181.2],"ftL":[-29.2,264.6]},{"rootY":-3.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-9.4,-149.9],"shR":[51.6,-114.7],"elR":[47.2,-11.3],"haR":[55.1,54.7],"shL":[-57.4,-119.6],"elL":[-74.8,-21.3],"haL":[-78.5,35.2],"hipR":[24.6,35.4],"knR":[16.1,172.9],"ftR":[11.1,321.9],"hipL":[-22.5,37.6],"knL":[-32.5,179.5],"ftL":[-29.7,263.1]},{"rootY":-3.4,"hips":[0,0],"chest":[-3.1,-85.1],"neck":[-3.1,-85.1],"head":[-10,-150.3],"shR":[51.5,-114.9],"elR":[49.2,-10.9],"haR":[57.7,54.8],"shL":[-58,-119.5],"elL":[-71.5,-20.8],"haL":[-75.9,36.9],"hipR":[25,34.9],"knR":[15.6,174.6],"ftR":[10.1,322],"hipL":[-22.2,37.9],"knL":[-33.3,176.9],"ftL":[-30,266.1]},{"rootY":-4.2,"hips":[0,0],"chest":[-3.4,-85.2],"neck":[-3.4,-85.2],"head":[-10.6,-150.5],"shR":[51.5,-115.2],"elR":[51.2,-10.8],"haR":[60.4,54.4],"shL":[-58.5,-119.3],"elL":[-68.2,-20.3],"haL":[-73.1,38.7],"hipR":[25.5,34.5],"knR":[15.4,176.3],"ftR":[9.6,322.2],"hipL":[-21.6,38.3],"knL":[-33.3,173.9],"ftL":[-30,273.5]},{"rootY":-4.4,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-11.4,-150.6],"shR":[51.5,-115.7],"elR":[53.3,-11.1],"haR":[62.9,53.3],"shL":[-58.9,-118.8],"elL":[-65.3,-19.8],"haL":[-70.6,40.5],"hipR":[26.4,33.8],"knR":[15.6,177.4],"ftR":[9.2,322.4],"hipL":[-20.6,38.8],"knL":[-32.5,170.9],"ftL":[-29.1,282.8]},{"rootY":-5.5,"hips":[0,0],"chest":[-3.6,-85.2],"neck":[-3.6,-85.2],"head":[-12.5,-150.5],"shR":[51.5,-116.1],"elR":[55.6,-11.5],"haR":[65.3,52],"shL":[-59.1,-118.1],"elL":[-63.3,-19.5],"haL":[-68.7,41.8],"hipR":[26.7,33.8],"knR":[15.4,178.5],"ftR":[9.2,322.7],"hipL":[-20.3,39.2],"knL":[-31.1,168],"ftL":[-28,293.8]},{"rootY":-7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-12.8,-150.6],"shR":[52.1,-116.8],"elR":[58.8,-12.3],"haR":[68.1,49.8],"shL":[-58.5,-117.7],"elL":[-61.1,-19.5],"haL":[-66.2,43.1],"hipR":[26.7,33.8],"knR":[16.7,179.5],"ftR":[10.1,323.2],"hipL":[-20.2,39.5],"knL":[-28.8,166.7],"ftL":[-26.2,304.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-3,-85.3],"neck":[-3,-85.3],"head":[-14.2,-150.4],"shR":[51.9,-117.3],"elR":[61.4,-13],"haR":[70.3,48.8],"shL":[-58.5,-117.2],"elL":[-59.7,-19.4],"haL":[-64.8,44.1],"hipR":[27,33.8],"knR":[17.1,179.7],"ftR":[10.1,323.6],"hipL":[-19.9,40],"knL":[-27.1,165.7],"ftL":[-25.8,313.5]},{"rootY":-7,"hips":[0,0],"chest":[-3.2,-85.1],"neck":[-3.2,-85.1],"head":[-15.5,-150.1],"shR":[51.6,-117.7],"elR":[63.9,-13.6],"haR":[72,46.3],"shL":[-58.7,-116.4],"elL":[-58.3,-19.1],"haL":[-63.8,45.2],"hipR":[28.1,33.4],"knR":[17.4,178.9],"ftR":[9.7,322.9],"hipL":[-18.6,40.9],"knL":[-24.8,165.4],"ftL":[-26.7,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-3.6,-85],"neck":[-3.6,-85],"head":[-16.6,-149.9],"shR":[50.9,-118.1],"elR":[66,-14.3],"haR":[73.2,44.3],"shL":[-59.1,-116],"elL":[-57.1,-19.2],"haL":[-63.1,45.8],"hipR":[28.1,33.7],"knR":[17.9,178.3],"ftR":[10,322.4],"hipL":[-18.6,41.3],"knL":[-22.8,165.9],"ftL":[-27.7,321.3]},{"rootY":-5.2,"hips":[0,0],"chest":[-3.9,-84.9],"neck":[-3.9,-84.9],"head":[-17.5,-149.7],"shR":[50.3,-118.6],"elR":[67.3,-15.1],"haR":[74.1,42],"shL":[-59.5,-115.3],"elL":[-55.3,-18.6],"haL":[-62.2,47.1],"hipR":[28.6,33.6],"knR":[19.1,176.7],"ftR":[10.8,320.9],"hipL":[-18,41.7],"knL":[-21.1,165.5],"ftL":[-27.5,319.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-4.2,-84.8],"neck":[-4.2,-84.8],"head":[-18.3,-149.4],"shR":[49.8,-118.8],"elR":[68.4,-15.5],"haR":[75.1,40.3],"shL":[-59.7,-114.9],"elL":[-53.9,-18.2],"haL":[-61.5,47.9],"hipR":[28.7,33.6],"knR":[20,175.2],"ftR":[12.5,317.9],"hipL":[-17.8,41.9],"knL":[-21,164.9],"ftL":[-27.1,319]},{"rootY":-1.3,"hips":[0,0],"chest":[-4.9,-84.6],"neck":[-4.9,-84.6],"head":[-19.4,-149.1],"shR":[48.9,-119],"elR":[68.2,-15.8],"haR":[75,38.9],"shL":[-60.4,-114.4],"elL":[-53.1,-18],"haL":[-61.1,48.3],"hipR":[28.3,33.8],"knR":[20.2,174.5],"ftR":[14.4,313.9],"hipL":[-18.2,42],"knL":[-21.9,164.1],"ftL":[-25.9,319.1]},{"rootY":-1.8,"hips":[0,0],"chest":[-5.8,-84.3],"neck":[-5.8,-84.3],"head":[-20.6,-148.9],"shR":[47.4,-119.4],"elR":[66.9,-16.3],"haR":[74.1,38],"shL":[-61.3,-113.7],"elL":[-53.3,-17],"haL":[-61.3,49.5],"hipR":[27.5,34.2],"knR":[19.7,174.1],"ftR":[16,309.5],"hipL":[-19.2,41.8],"knL":[-22.4,162.9],"ftL":[-24.4,318.3]},{"rootY":-3,"hips":[0,0],"chest":[-7,-84.2],"neck":[-7,-84.2],"head":[-22.1,-148.7],"shR":[45.8,-119.8],"elR":[64.8,-16.7],"haR":[72.4,37.8],"shL":[-62.4,-113.1],"elL":[-53.8,-16],"haL":[-62.1,50.5],"hipR":[26.2,34.9],"knR":[18.5,175.7],"ftR":[17.4,303.4],"hipL":[-20.6,41.4],"knL":[-23.4,164.2],"ftL":[-22.8,319.7]},{"rootY":-4.8,"hips":[0,0],"chest":[-7.3,-84.4],"neck":[-7.3,-84.4],"head":[-22.6,-148.8],"shR":[45.2,-120.2],"elR":[63.5,-17.1],"haR":[71.3,38.2],"shL":[-62.6,-112.9],"elL":[-53.7,-15.9],"haL":[-62.3,50.5],"hipR":[25.7,35],"knR":[18.9,177.5],"ftR":[19.6,296],"hipL":[-21.1,41.1],"knL":[-23.4,166.7],"ftL":[-20.2,321.8]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.5,-84.4],"neck":[-7.5,-84.4],"head":[-22.6,-148.9],"shR":[45.1,-120.3],"elR":[62.9,-17.3],"haR":[70.4,39],"shL":[-62.6,-112.7],"elL":[-53.6,-15.8],"haL":[-62.6,50.5],"hipR":[25.3,35.1],"knR":[20.6,180],"ftR":[20.9,289],"hipL":[-21.6,40.9],"knL":[-23.8,169],"ftL":[-17.9,323.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-23,-149],"shR":[44.6,-120.3],"elR":[62.1,-17.3],"haR":[69.1,39.9],"shL":[-63.2,-112.8],"elL":[-54.5,-16.2],"haL":[-63.8,50],"hipR":[24.1,35.6],"knR":[23,181.9],"ftR":[22,280.5],"hipL":[-22.9,40.2],"knL":[-24.6,170.8],"ftL":[-15.6,324.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-8.5,-84.5],"neck":[-8.5,-84.5],"head":[-23,-149.1],"shR":[44.3,-120.1],"elR":[61.1,-17.2],"haR":[67.6,40.8],"shL":[-63.7,-112.9],"elL":[-56.5,-16.3],"haL":[-65.8,49.7],"hipR":[22.4,36.3],"knR":[25.1,182.1],"ftR":[23.6,272.8],"hipL":[-24.6,39.1],"knL":[-25.7,171.9],"ftL":[-13,323.8]},{"rootY":-6.8,"hips":[0,0],"chest":[-8.3,-84.6],"neck":[-8.3,-84.6],"head":[-22.3,-149.3],"shR":[44.8,-119.8],"elR":[60.4,-16.8],"haR":[66.5,42],"shL":[-63.5,-113.6],"elL":[-58,-16.2],"haL":[-67.6,49.3],"hipR":[21.1,36.5],"knR":[27.8,180.5],"ftR":[25.1,266.5],"hipL":[-25.9,38],"knL":[-25.1,172.9],"ftL":[-9.8,323]},{"rootY":-6.2,"hips":[0,0],"chest":[-8.4,-84.7],"neck":[-8.4,-84.7],"head":[-21.8,-149.5],"shR":[45.1,-119.5],"elR":[58.5,-16.4],"haR":[64.5,42.9],"shL":[-63.5,-114.1],"elL":[-60,-15.8],"haL":[-70.2,49.3],"hipR":[20.5,36.4],"knR":[29.2,177.3],"ftR":[25.3,263],"hipL":[-26.5,37.4],"knL":[-24.1,174.3],"ftL":[-7.8,322.4]},{"rootY":-5.7,"hips":[0,0],"chest":[-8.2,-84.9],"neck":[-8.2,-84.9],"head":[-21.1,-149.8],"shR":[45.6,-119.2],"elR":[56.7,-15.9],"haR":[62.6,44.2],"shL":[-63.2,-114.5],"elL":[-62,-15.1],"haL":[-72.9,49.3],"hipR":[19.4,36.8],"knR":[29.2,173.4],"ftR":[26.1,263.9],"hipL":[-27.7,36.4],"knL":[-23.1,175.3],"ftL":[-5.5,321.8]},{"rootY":-6.2,"hips":[0,0],"chest":[-7.8,-85],"neck":[-7.8,-85],"head":[-20.2,-150],"shR":[46.3,-119],"elR":[54.8,-15.3],"haR":[60.5,46.2],"shL":[-62.8,-115],"elL":[-64,-14.6],"haL":[-75.6,49.1],"hipR":[18.6,37.1],"knR":[27,169.7],"ftR":[26.7,270.5],"hipL":[-28.4,36],"knL":[-22.8,176.1],"ftL":[-4,321.3]},{"rootY":-5.6,"hips":[0,0],"chest":[-7.4,-85.2],"neck":[-7.4,-85.2],"head":[-19,-150.2],"shR":[47,-118.6],"elR":[53,-14.8],"haR":[58.7,47.7],"shL":[-62.3,-115.3],"elL":[-65.4,-14.3],"haL":[-77.9,48.4],"hipR":[17.8,37.2],"knR":[24,165.7],"ftR":[26.6,279.9],"hipL":[-29.1,35.5],"knL":[-22.3,177.1],"ftL":[-2.4,320.5]},{"rootY":-5.3,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[-18.1,-150.4],"shR":[47.3,-118.2],"elR":[51.3,-14.3],"haR":[56.8,49.2],"shL":[-62.2,-115.8],"elL":[-67.3,-14.6],"haL":[-80.4,47],"hipR":[17.2,37.3],"knR":[20.1,162.3],"ftR":[24.5,291.2],"hipL":[-29.6,35.2],"knL":[-21.6,178.1],"ftL":[-0.5,320.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-7.2,-85.3],"neck":[-7.2,-85.3],"head":[-17.5,-150.4],"shR":[47.7,-117.7],"elR":[50.4,-13.9],"haR":[55.5,50.3],"shL":[-62.1,-116.3],"elL":[-69.1,-15],"haL":[-82.4,45.1],"hipR":[16.2,37.8],"knR":[16.8,160.8],"ftR":[21.8,303.1],"hipL":[-30.4,34.9],"knL":[-21.2,178.8],"ftL":[1.1,320]},{"rootY":-6.4,"hips":[0,0],"chest":[-7.1,-85.3],"neck":[-7.1,-85.3],"head":[-16.7,-150.5],"shR":[48.1,-117.2],"elR":[49.9,-13.5],"haR":[54.5,51.3],"shL":[-61.7,-117],"elL":[-70.7,-15.7],"haL":[-83.7,42.6],"hipR":[15.5,38],"knR":[13.5,161.1],"ftR":[18.3,313.4],"hipL":[-30.9,34.8],"knL":[-20.5,179.4],"ftL":[2.9,320.2]},{"rootY":-7,"hips":[0,0],"chest":[-7,-85.3],"neck":[-7,-85.3],"head":[-15.7,-150.6],"shR":[48.5,-116.8],"elR":[49.7,-13.2],"haR":[53.6,52.1],"shL":[-61.4,-117.4],"elL":[-72.9,-16.4],"haL":[-84.8,39.7],"hipR":[15,38.4],"knR":[10.8,162.6],"ftR":[14.1,319.5],"hipL":[-31.3,34.9],"knL":[-19.4,179.6],"ftL":[4.7,320.1]},{"rootY":-6.6,"hips":[0,0],"chest":[-6.7,-85.4],"neck":[-6.7,-85.4],"head":[-14.7,-150.7],"shR":[48.9,-116.6],"elR":[49.4,-13.3],"haR":[52.9,52.3],"shL":[-61,-117.9],"elL":[-74.3,-17.1],"haL":[-85.6,36.8],"hipR":[14,38.7],"knR":[7.8,164.7],"ftR":[10.8,321.1],"hipL":[-32,34.6],"knL":[-18.4,178.8],"ftL":[6.2,319.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-6.9,-85.4],"neck":[-6.9,-85.4],"head":[-14.3,-150.7],"shR":[49,-116.1],"elR":[48.7,-13.2],"haR":[51.9,52.7],"shL":[-60.9,-118.4],"elL":[-75.9,-17.8],"haL":[-86.4,33.7],"hipR":[13.8,39],"knR":[4.5,165.1],"ftR":[7,319.4],"hipL":[-32.1,34.7],"knL":[-18,178.1],"ftL":[6,318.2]},{"rootY":-3,"hips":[0,0],"chest":[-6.7,-85.3],"neck":[-6.7,-85.3],"head":[-13.5,-150.7],"shR":[49.3,-115.8],"elR":[48.6,-13],"haR":[51.6,53.1],"shL":[-60.6,-118.7],"elL":[-76.9,-18.3],"haL":[-86.8,31.3],"hipR":[13.5,39.2],"knR":[3.7,164.3],"ftR":[4.3,319],"hipL":[-32.3,34.7],"knL":[-17.8,177.3],"ftL":[6.6,315]},{"rootY":-1.4,"hips":[0,0],"chest":[-6.4,-85.2],"neck":[-6.4,-85.2],"head":[-12.7,-150.7],"shR":[49.7,-115.5],"elR":[48.2,-13.1],"haR":[51.4,53.3],"shL":[-60.2,-118.9],"elL":[-77.3,-18.7],"haL":[-86.6,29.5],"hipR":[13.3,39.2],"knR":[2,163],"ftR":[3.5,319],"hipL":[-32.5,34.5],"knL":[-17,175.8],"ftL":[7.1,311.7]},{"rootY":-1.4,"hips":[0,0],"chest":[-6,-85.2],"neck":[-6,-85.2],"head":[-11,-150.7],"shR":[50.7,-114.6],"elR":[48.1,-12],"haR":[51.7,54.6],"shL":[-59.2,-120.1],"elL":[-75.9,-19.8],"haL":[-85.3,28.5],"hipR":[13.4,39.2],"knR":[0.8,162.6],"ftR":[4.1,319.3],"hipL":[-32.4,34.7],"knL":[-15.9,174.9],"ftL":[7.9,307.9]},{"rootY":-2.2,"hips":[0,0],"chest":[-5.4,-85.2],"neck":[-5.4,-85.2],"head":[-9.4,-150.6],"shR":[51.4,-114.1],"elR":[48,-11.6],"haR":[52.1,55.3],"shL":[-58.6,-120.2],"elL":[-74,-19.8],"haL":[-83.8,29.3],"hipR":[14.8,38.9],"knR":[1,163.3],"ftR":[4.9,320.5],"hipL":[-31.2,35.7],"knL":[-15.3,175.8],"ftL":[7.9,303.4]},{"rootY":-4,"hips":[0,0],"chest":[-5.1,-85.1],"neck":[-5.1,-85.1],"head":[-8.8,-150.6],"shR":[52.2,-113.3],"elR":[48.2,-10.9],"haR":[52.6,55.9],"shL":[-57.7,-121.1],"elL":[-71.9,-20.7],"haL":[-81.8,30.2],"hipR":[15,39],"knR":[1.7,165.4],"ftR":[6.1,322.5],"hipL":[-31,35.9],"knL":[-15.9,176.3],"ftL":[6.8,298.6]},{"rootY":-6.1,"hips":[0,0],"chest":[-4.5,-85.1],"neck":[-4.5,-85.1],"head":[-7.7,-150.6],"shR":[53.1,-112.7],"elR":[49,-10.4],"haR":[53.5,56.4],"shL":[-56.7,-121.8],"elL":[-69.8,-21.6],"haL":[-79.5,31.2],"hipR":[15.4,38.7],"knR":[2.6,167.7],"ftR":[7,324.3],"hipL":[-30.6,36.2],"knL":[-17.8,177.9],"ftL":[6.1,293.1]},{"rootY":-8.5,"hips":[0,0],"chest":[-4,-85.1],"neck":[-4,-85.1],"head":[-6.9,-150.6],"shR":[53.6,-112.5],"elR":[49.9,-10.3],"haR":[54.3,56.4],"shL":[-56.2,-121.6],"elL":[-68.9,-22],"haL":[-78,33.3],"hipR":[16.4,38.3],"knR":[3.1,170.1],"ftR":[7,326],"hipL":[-29.8,36.9],"knL":[-21.6,180.7],"ftL":[4,288.3]},{"rootY":-9.4,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.8,-150.6],"shR":[53.7,-112.5],"elR":[50.9,-10.4],"haR":[55,56.1],"shL":[-56,-121.6],"elL":[-67.9,-22.3],"haL":[-76.4,34.7],"hipR":[17.4,37.7],"knR":[3.5,171.7],"ftR":[7.1,326.6],"hipL":[-28.8,37.4],"knL":[-26.3,182.4],"ftL":[2.6,281.7]},{"rootY":-9.9,"hips":[0,0],"chest":[-3.9,-85],"neck":[-3.9,-85],"head":[-6.9,-150.6],"shR":[53.6,-112.7],"elR":[52.4,-10.5],"haR":[56.2,55.7],"shL":[-55.8,-121.5],"elL":[-66.8,-22.7],"haL":[-74.9,35.7],"hipR":[18.3,37],"knR":[3,173],"ftR":[7.1,326.7],"hipL":[-27.9,37.9],"knL":[-31.9,183],"ftL":[0.7,275.5]},{"rootY":-10,"hips":[0,0],"chest":[-4.4,-84.9],"neck":[-4.4,-84.9],"head":[-7.6,-150.5],"shR":[52.8,-113],"elR":[53.3,-10.5],"haR":[56.9,55.3],"shL":[-56.4,-120.9],"elL":[-65.9,-22.7],"haL":[-73.9,36.8],"hipR":[19,36.2],"knR":[1.8,173.9],"ftR":[6.7,326.1],"hipL":[-27.2,38.2],"knL":[-37.9,182.2],"ftL":[-1.4,269.7]},{"rootY":-9.2,"hips":[0,0],"chest":[-4.8,-84.8],"neck":[-4.8,-84.8],"head":[-8.3,-150.4],"shR":[52.2,-113.4],"elR":[54.4,-10.5],"haR":[58,54.8],"shL":[-56.6,-120.6],"elL":[-63.8,-22.8],"haL":[-72.2,37.9],"hipR":[19.2,35.7],"knR":[1.5,174.9],"ftR":[7.1,325.4],"hipL":[-26.9,38.4],"knL":[-43.9,179.9],"ftL":[-4,267]},{"rootY":-9.3,"hips":[0,0],"chest":[-5.3,-84.8],"neck":[-5.3,-84.8],"head":[-9.4,-150.4],"shR":[51.5,-113.7],"elR":[55.2,-10.4],"haR":[59.1,54.4],"shL":[-56.7,-120.3],"elL":[-60.9,-22.6],"haL":[-70.3,39.2],"hipR":[19.2,35.5],"knR":[1.5,176.1],"ftR":[8,325],"hipL":[-26.7,38.6],"knL":[-48.5,177.1],"ftL":[-7.5,269.3]},{"rootY":-9.2,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[-10.6,-150.4],"shR":[50.6,-113.8],"elR":[55.9,-10.2],"haR":[60.1,53.9],"shL":[-56.3,-120.4],"elL":[-57.1,-22.8],"haL":[-67.7,39.8],"hipR":[19.6,35.1],"knR":[1.7,177.2],"ftR":[9.4,324.4],"hipL":[-26.1,39.1],"knL":[-51.8,174.2],"ftL":[-12.1,275.2]},{"rootY":-9.2,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-11.8,-150.4],"shR":[49.7,-114.1],"elR":[57,-10.5],"haR":[61.3,52.9],"shL":[-56.1,-120],"elL":[-53.6,-22],"haL":[-65.2,41.5],"hipR":[20.3,34.5],"knR":[2.5,177.7],"ftR":[11,323.7],"hipL":[-25.2,39.7],"knL":[-54,171.4],"ftL":[-17.1,284.3]},{"rootY":-9.9,"hips":[0,0],"chest":[-6,-84.7],"neck":[-6,-84.7],"head":[-12.6,-150.4],"shR":[48.9,-114.5],"elR":[58.6,-10.7],"haR":[62.5,51.9],"shL":[-55.5,-119.7],"elL":[-50.4,-21.6],"haL":[-62.8,42.5],"hipR":[20.4,34.3],"knR":[4.2,178.6],"ftR":[13.4,323.3],"hipL":[-24.9,40],"knL":[-54.6,169.1],"ftL":[-21.9,295.3]},{"rootY":-11.1,"hips":[0,0],"chest":[-6.2,-84.7],"neck":[-6.2,-84.7],"head":[-13.9,-150.2],"shR":[48,-115],"elR":[60,-11.3],"haR":[63.5,50.4],"shL":[-55.1,-119],"elL":[-48.3,-21.2],"haL":[-60.6,43.5],"hipR":[20.8,34],"knR":[6.5,179.2],"ftR":[15.7,323.3],"hipL":[-24.2,40.6],"knL":[-54.6,167.8],"ftL":[-28,306.7]},{"rootY":-11.6,"hips":[0,0],"chest":[-7.8,-84.4],"neck":[-7.8,-84.4],"head":[-16.3,-149.9],"shR":[45.6,-115.2],"elR":[60.1,-11.5],"haR":[62.6,49.3],"shL":[-56.2,-118.4],"elL":[-47.8,-21],"haL":[-60.2,43.9],"hipR":[21.2,33.8],"knR":[7,179.4],"ftR":[16.7,323.5],"hipL":[-23.6,41],"knL":[-54.5,167.1],"ftL":[-37.3,316.2]},{"rootY":-12.4,"hips":[0,0],"chest":[-8.1,-84.5],"neck":[-8.1,-84.5],"head":[-16.9,-149.9],"shR":[44.5,-115.8],"elR":[61.3,-12.4],"haR":[62.7,47.6],"shL":[-55.5,-117.8],"elL":[-45.9,-20.7],"haL":[-58.2,44.4],"hipR":[20.1,34.6],"knR":[9.9,180.5],"ftR":[20.7,324.1],"hipL":[-24.5,40.8],"knL":[-52.9,168.1],"ftL":[-44.8,322.6]},{"rootY":-11.8,"hips":[0,0],"chest":[-7.8,-84.7],"neck":[-7.8,-84.7],"head":[-17.1,-150.1],"shR":[44.1,-116.5],"elR":[63.3,-13.3],"haR":[63.6,45.9],"shL":[-55,-117.6],"elL":[-44.2,-20.9],"haL":[-56.6,44.3],"hipR":[20,34.6],"knR":[14.4,179.9],"ftR":[25,323.9],"hipL":[-24.4,41.1],"knL":[-51,168.6],"ftL":[-52.1,324.1]},{"rootY":-10.4,"hips":[0,0],"chest":[-7.4,-84.9],"neck":[-7.4,-84.9],"head":[-17,-150.2],"shR":[43.9,-117.1],"elR":[64.2,-14.1],"haR":[63.8,43.7],"shL":[-54.2,-117.4],"elL":[-42.2,-20.7],"haL":[-54.5,44.6],"hipR":[19.5,34.9],"knR":[19.3,178.9],"ftR":[30.1,323],"hipL":[-24.7,41.1],"knL":[-50.8,167.4],"ftL":[-56.3,322]},{"rootY":-7.5,"hips":[0,0],"chest":[-8.7,-84.5],"neck":[-8.7,-84.5],"head":[-18.5,-149.8],"shR":[42,-117.1],"elR":[63.1,-14.3],"haR":[61.9,42.2],"shL":[-55.3,-116.7],"elL":[-41.9,-20.1],"haL":[-54.6,45.2],"hipR":[21.4,33.8],"knR":[20,177.1],"ftR":[31.5,319.9],"hipL":[-22.3,42.4],"knL":[-51.3,166.5],"ftL":[-59.5,320.7]},{"rootY":-5,"hips":[0,0],"chest":[-10.2,-84.4],"neck":[-10.2,-84.4],"head":[-19.8,-149.7],"shR":[40,-117.2],"elR":[61.3,-14.4],"haR":[59.9,41.2],"shL":[-56.6,-116.5],"elL":[-41.8,-19.7],"haL":[-54.4,45.7],"hipR":[20.6,34.2],"knR":[20.3,177],"ftR":[35.1,316.4],"hipL":[-23,42.1],"knL":[-51.9,166],"ftL":[-57.1,320.9]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-84.3],"neck":[-10.4,-84.3],"head":[-19.6,-149.7],"shR":[38.9,-117.7],"elR":[60.1,-15],"haR":[58.6,40.2],"shL":[-55.7,-115.6],"elL":[-39.8,-18.4],"haL":[-52,47.3],"hipR":[21.4,33.8],"knR":[22.6,175.5],"ftR":[39.3,312.4],"hipL":[-22.5,42.3],"knL":[-51.1,166.1],"ftL":[-52.9,321.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-11.3,-84.3],"neck":[-11.3,-84.3],"head":[-20.5,-149.6],"shR":[37.4,-118.6],"elR":[57.4,-15.6],"haR":[56,39.8],"shL":[-56.3,-114.5],"elL":[-39.3,-17.1],"haL":[-51.3,48.7],"hipR":[19.9,35.1],"knR":[21.7,176.7],"ftR":[43.3,308.5],"hipL":[-24.1,41.5],"knL":[-50.6,166.7],"ftL":[-48.3,322.2]},{"rootY":-7.4,"hips":[0,0],"chest":[-11.2,-84.5],"neck":[-11.2,-84.5],"head":[-20.8,-149.6],"shR":[37.2,-119],"elR":[55.6,-15.7],"haR":[54.2,40],"shL":[-56.3,-114.4],"elL":[-38.8,-16.4],"haL":[-50.3,49.5],"hipR":[18.7,35.5],"knR":[20.1,178.3],"ftR":[47.2,302.2],"hipL":[-25.1,41.1],"knL":[-50.2,168.7],"ftL":[-42.6,323.9]},{"rootY":-8.9,"hips":[0,0],"chest":[-11,-84.7],"neck":[-11,-84.7],"head":[-20.1,-149.8],"shR":[37.6,-119.1],"elR":[55.4,-15.6],"haR":[53.3,40.9],"shL":[-55.9,-114.6],"elL":[-37.8,-16.8],"haL":[-48.8,49.1],"hipR":[18.5,35.2],"knR":[19.1,179.6],"ftR":[49.6,294.8],"hipL":[-25.2,40.9],"knL":[-49.8,170.9],"ftL":[-38,325.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-10.7,-84.8],"neck":[-10.7,-84.8],"head":[-19.3,-150],"shR":[38.2,-119.2],"elR":[55.5,-15.7],"haR":[52.8,41.2],"shL":[-55.6,-114.5],"elL":[-38,-16.4],"haL":[-48.3,49.7],"hipR":[17.6,35.3],"knR":[18,181.2],"ftR":[50.8,287.5],"hipL":[-26,40.4],"knL":[-49.5,172.3],"ftL":[-32.7,326]},{"rootY":-9.2,"hips":[0,0],"chest":[-10.9,-84.9],"neck":[-10.9,-84.9],"head":[-18.8,-150.1],"shR":[38.3,-119.2],"elR":[55.1,-15.7],"haR":[51.6,41.2],"shL":[-55.7,-114.6],"elL":[-38.5,-16.8],"haL":[-49.2,48.9],"hipR":[15.3,36.4],"knR":[16.2,182.7],"ftR":[51.5,280.1],"hipL":[-28.1,39.2],"knL":[-48.7,172.9],"ftL":[-26.4,325.3]},{"rootY":-7.9,"hips":[0,0],"chest":[-10.5,-85],"neck":[-10.5,-85],"head":[-17.7,-150.3],"shR":[39.1,-119],"elR":[54.9,-15.5],"haR":[50.3,41.6],"shL":[-55.4,-114.8],"elL":[-40.1,-16.8],"haL":[-51.1,48.5],"hipR":[13.6,36.6],"knR":[14.7,181.8],"ftR":[51.6,272.6],"hipL":[-29.5,38.1],"knL":[-47.5,173.2],"ftL":[-20.1,323.9]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.9,-150.3],"shR":[39.8,-118.3],"elR":[54.1,-14.6],"haR":[49.2,43.1],"shL":[-55,-115.7],"elL":[-42.6,-16.7],"haL":[-54.9,48.1],"hipR":[13.7,36],"knR":[12.3,178.9],"ftR":[49.1,266.5],"hipL":[-29.4,38.1],"knL":[-46.2,174],"ftL":[-15.6,322.6]},{"rootY":-4.9,"hips":[0,0],"chest":[-10.3,-85],"neck":[-10.3,-85],"head":[-16.2,-150.3],"shR":[40,-117.8],"elR":[52.7,-14.1],"haR":[47.4,44.5],"shL":[-54.8,-116.3],"elL":[-44.8,-16.6],"haL":[-59.1,47.4],"hipR":[13.1,35.8],"knR":[8.7,175.4],"ftR":[45.5,263.8],"hipL":[-30,37.6],"knL":[-45.4,174.4],"ftL":[-11.5,320.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-10.4,-85],"neck":[-10.4,-85],"head":[-15.3,-150.6],"shR":[40.3,-117.2],"elR":[50.6,-13.3],"haR":[46.1,46.5],"shL":[-54.8,-117],"elL":[-47,-16.9],"haL":[-63.7,45.8],"hipR":[11.1,36.7],"knR":[4,171.9],"ftR":[42.5,266.6],"hipL":[-31.6,36.4],"knL":[-44.2,174.5],"ftL":[-7.4,319.3]},{"rootY":-2.7,"hips":[0,0],"chest":[-9.5,-85.2],"neck":[-9.5,-85.2],"head":[-13.8,-150.8],"shR":[41.5,-117],"elR":[49.7,-12.8],"haR":[45.9,48.2],"shL":[-53.8,-117.5],"elL":[-48.3,-17],"haL":[-67.6,44],"hipR":[9.8,37],"knR":[-0.7,168.6],"ftR":[39.1,273.2],"hipL":[-32.6,35.6],"knL":[-42.2,175.2],"ftL":[-2.4,318.1]},{"rootY":-2.4,"hips":[0,0],"chest":[-9.4,-85.2],"neck":[-9.4,-85.2],"head":[-13.4,-150.7],"shR":[41.9,-116.6],"elR":[48.1,-12.3],"haR":[45.2,49.8],"shL":[-53.3,-117.7],"elL":[-50.2,-17.1],"haL":[-72,41.9],"hipR":[9.1,36.9],"knR":[-7.2,165.1],"ftR":[32.5,283],"hipL":[-33,35.3],"knL":[-40.3,176.3],"ftL":[0.9,317.9]},{"rootY":-3.2,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-12.3,-150.9],"shR":[42.4,-116.4],"elR":[47.6,-12.1],"haR":[45.4,51],"shL":[-52.5,-117.8],"elL":[-51.8,-17.2],"haL":[-76.1,39.6],"hipR":[7.6,37.4],"knR":[-12.6,163],"ftR":[25.1,294.6],"hipL":[-33.9,34.6],"knL":[-37.4,176.9],"ftL":[5.3,317.7]},{"rootY":-4.5,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-11.7,-150.9],"shR":[42.4,-115.7],"elR":[47.3,-11.6],"haR":[45.2,52.1],"shL":[-52.5,-118.5],"elL":[-54.4,-18],"haL":[-80.5,36.9],"hipR":[7.7,37.6],"knR":[-17.3,162.2],"ftR":[15.5,306],"hipL":[-33.6,35],"knL":[-34.7,178.4],"ftL":[7.9,319.2]},{"rootY":-6.6,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-10.5,-151],"shR":[43.3,-115.3],"elR":[48.5,-11.4],"haR":[46.5,52.8],"shL":[-51.3,-119],"elL":[-55.6,-18.7],"haL":[-83.8,34.2],"hipR":[5.1,38],"knR":[-19.8,163.5],"ftR":[7.6,316],"hipL":[-34.8,33.9],"knL":[-31.3,178.3],"ftL":[12.6,319.2]},{"rootY":-8.3,"hips":[0,0],"chest":[-8.7,-85.4],"neck":[-8.7,-85.4],"head":[-9.8,-151.1],"shR":[43.3,-115],"elR":[49.7,-11.4],"haR":[47.1,53.4],"shL":[-50.8,-119.1],"elL":[-57.3,-19],"haL":[-86.7,32.2],"hipR":[6.6,37.8],"knR":[-22,164.7],"ftR":[-2.5,320.7],"hipL":[-33.4,35.3],"knL":[-28.5,180.2],"ftL":[13.9,320.9]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.9,-85.4],"neck":[-8.9,-85.4],"head":[-9.2,-151.1],"shR":[42.8,-114.8],"elR":[49.9,-11.5],"haR":[47.1,53.5],"shL":[-49.8,-119.4],"elL":[-58.2,-19.7],"haL":[-89.2,29.7],"hipR":[4.3,38.4],"knR":[-19.7,169.6],"ftR":[-4.4,324.8],"hipL":[-34.3,34.5],"knL":[-28.3,179.5],"ftL":[16,318.1]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.4,-85.3],"neck":[-9.4,-85.3],"head":[-9,-151.1],"shR":[41.9,-114.3],"elR":[49.9,-11.4],"haR":[46.9,53.9],"shL":[-49.5,-119.9],"elL":[-59.3,-20.4],"haL":[-91.7,27.9],"hipR":[3.3,38.6],"knR":[-18.9,171.4],"ftR":[-14.7,324.6],"hipL":[-34.3,34.5],"knL":[-28.5,179.6],"ftL":[17.5,316.4]},{"rootY":-2.5,"hips":[0,0],"chest":[-9.2,-85.3],"neck":[-9.2,-85.3],"head":[-8.7,-150.8],"shR":[41.1,-114.3],"elR":[50.2,-11.8],"haR":[47,53.9],"shL":[-47.8,-119.7],"elL":[-58.5,-20.4],"haL":[-92.3,26.8],"hipR":[3,38.5],"knR":[-20.7,170.6],"ftR":[-17.3,323.8],"hipL":[-33.9,34.8],"knL":[-27.5,179.9],"ftL":[20.6,314.7]},{"rootY":0.8,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[-9.2,-151],"shR":[39.3,-114.3],"elR":[48.9,-12.3],"haR":[45.9,53.5],"shL":[-47.6,-119.4],"elL":[-57.6,-20.2],"haL":[-93.6,26.4],"hipR":[1,38.9],"knR":[-25.5,170.1],"ftR":[-16.3,324.3],"hipL":[-34.7,33.8],"knL":[-28.4,178.9],"ftL":[22.9,310.3]},{"rootY":3.3,"hips":[0,0],"chest":[-11,-85.1],"neck":[-11,-85.1],"head":[-9.4,-150.8],"shR":[37.5,-114.1],"elR":[47.3,-11.7],"haR":[44.6,54.8],"shL":[-47.6,-120],"elL":[-56.2,-20.7],"haL":[-92.9,25.9],"hipR":[-0.4,38.8],"knR":[-29.5,170.7],"ftR":[-14.6,325.6],"hipL":[-34.7,33.6],"knL":[-29.5,178.7],"ftL":[24.9,306.2]},{"rootY":2.7,"hips":[0,0],"chest":[-11.3,-85.1],"neck":[-11.3,-85.1],"head":[-9.1,-150.8],"shR":[36.1,-113.9],"elR":[45.7,-11.5],"haR":[43.6,55.4],"shL":[-46.9,-120.4],"elL":[-53.4,-20.4],"haL":[-91.9,27.8],"hipR":[-1.4,38.8],"knR":[-34.6,170.2],"ftR":[-18.9,325.4],"hipL":[-34.3,33.7],"knL":[-29.4,178.6],"ftL":[27.2,303.9]},{"rootY":-2.7,"hips":[0,0],"chest":[-11.7,-85],"neck":[-11.7,-85],"head":[-9.1,-150.7],"shR":[34,-113.8],"elR":[44.2,-11.4],"haR":[42.7,55.7],"shL":[-44.5,-120],"elL":[-47.7,-20],"haL":[-86.4,29.8],"hipR":[-1.5,38.3],"knR":[-43.8,166.3],"ftR":[-26.4,321.8],"hipL":[-33.5,34.4],"knL":[-24.7,178.4],"ftL":[28.8,305.4]},{"rootY":-4,"hips":[0,0],"chest":[-11.9,-85],"neck":[-11.9,-85],"head":[-9.1,-150.8],"shR":[32,-114.2],"elR":[43.1,-11.7],"haR":[41.7,55.5],"shL":[-42.7,-119.6],"elL":[-39.9,-21.9],"haL":[-77.2,28.3],"hipR":[-1.5,38.2],"knR":[-45.6,166.8],"ftR":[-24.2,322.4],"hipL":[-32.8,35],"knL":[-25.4,178.7],"ftL":[28.8,302.6]},{"rootY":-5.5,"hips":[0,0],"chest":[-12.2,-85],"neck":[-12.2,-85],"head":[-9.3,-150.7],"shR":[29.8,-114],"elR":[42,-11.3],"haR":[39.7,55.8],"shL":[-41.1,-119.9],"elL":[-37,-20.3],"haL":[-72.8,34.5],"hipR":[-2.2,37.8],"knR":[-47.3,168.3],"ftR":[-21.9,323.5],"hipL":[-32,35.5],"knL":[-26.1,179],"ftL":[29.2,300.1]},{"rootY":-6.7,"hips":[0,0],"chest":[-12.4,-84.9],"neck":[-12.4,-84.9],"head":[-9.4,-150.7],"shR":[26.9,-114.4],"elR":[40.3,-11.6],"haR":[36.7,55.3],"shL":[-38.3,-119.4],"elL":[-31.4,-20],"haL":[-64.2,37.7],"hipR":[-2.8,37.6],"knR":[-48,170],"ftR":[-19.3,324.5],"hipL":[-31.1,36],"knL":[-26.6,179.3],"ftL":[31.3,297.7]},{"rootY":-7.7,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[-10.5,-150.7],"shR":[24.4,-113.6],"elR":[39.2,-10.6],"haR":[33.9,55.9],"shL":[-37.8,-120.2],"elL":[-29.1,-21],"haL":[-58.3,39],"hipR":[-3.4,37.2],"knR":[-48.3,171.3],"ftR":[-17.1,325.2],"hipL":[-29.4,37.1],"knL":[-28.3,180.5],"ftL":[34,295.5]},{"rootY":-8.2,"hips":[0,0],"chest":[-14.4,-84.6],"neck":[-14.4,-84.6],"head":[-11.2,-150.5],"shR":[20.4,-112.8],"elR":[38.3,-9.8],"haR":[30,56.1],"shL":[-36,-120.8],"elL":[-24.1,-22.1],"haL":[-49.9,39.7],"hipR":[-4.8,37.3],"knR":[-49.6,172.4],"ftR":[-15.5,325.5],"hipL":[-28.1,37.4],"knL":[-29.6,181],"ftL":[39,292]},{"rootY":-8.9,"hips":[0,0],"chest":[-15.6,-84.4],"neck":[-15.6,-84.4],"head":[-13.1,-150.3],"shR":[16,-112.5],"elR":[35.3,-9.5],"haR":[24.8,55.6],"shL":[-34.4,-120.7],"elL":[-20.7,-21.9],"haL":[-42.7,41.2],"hipR":[-6.4,37.3],"knR":[-50.2,173.6],"ftR":[-13.8,325.9],"hipL":[-26.6,37.8],"knL":[-30.4,181.6],"ftL":[46.1,288.4]},{"rootY":-9.2,"hips":[0,0],"chest":[-17.5,-84],"neck":[-17.5,-84],"head":[-15.2,-149.9],"shR":[11.1,-111.4],"elR":[31.8,-8.5],"haR":[18.8,55.6],"shL":[-34.2,-121.4],"elL":[-16.8,-23.2],"haL":[-37.1,40.3],"hipR":[-7.8,37.6],"knR":[-51.5,174.8],"ftR":[-12.6,326.2],"hipL":[-25.4,37.9],"knL":[-32,181.6],"ftL":[54,284.5]},{"rootY":-10.1,"hips":[0,0],"chest":[-18.9,-83.8],"neck":[-18.9,-83.8],"head":[-16.4,-149.6],"shR":[4.9,-111.1],"elR":[27.1,-8.6],"haR":[11.9,54.6],"shL":[-31.7,-121.3],"elL":[-11.7,-23.6],"haL":[-30.7,40.2],"hipR":[-9,37.7],"knR":[-52.4,175.8],"ftR":[-12,326.7],"hipL":[-23.7,38.2],"knL":[-34.5,181.8],"ftL":[60.6,283.4]},{"rootY":-10.8,"hips":[0,0],"chest":[-19.6,-83.6],"neck":[-19.6,-83.6],"head":[-18.2,-149.4],"shR":[-0.8,-110.6],"elR":[22.5,-8.6],"haR":[5.1,53.6],"shL":[-28.6,-121.6],"elL":[-5.2,-24.9],"haL":[-24.1,38.8],"hipR":[-10.6,38.1],"knR":[-53.5,176.8],"ftR":[-11.1,327.1],"hipL":[-21.7,38.3],"knL":[-35.7,181.8],"ftL":[66.1,284.2]},{"rootY":-11.1,"hips":[0,0],"chest":[-20.5,-83.4],"neck":[-20.5,-83.4],"head":[-19.2,-149.2],"shR":[-6.9,-110.6],"elR":[17.9,-9.6],"haR":[-1.8,51.9],"shL":[-25.1,-121.2],"elL":[1.4,-25.1],"haL":[-18.2,38.2],"hipR":[-12.2,38.3],"knR":[-54.7,177.7],"ftR":[-10.1,327.4],"hipL":[-19.8,38.2],"knL":[-36,181.7],"ftL":[70.5,286.5]},{"rootY":-11.4,"hips":[0,0],"chest":[-20.8,-83.4],"neck":[-20.8,-83.4],"head":[-19.8,-149.1],"shR":[-12.1,-110.4],"elR":[12.3,-10],"haR":[-8.9,50.8],"shL":[-20.9,-121.4],"elL":[7.9,-25.6],"haL":[-13,37.1],"hipR":[-14.1,38.2],"knR":[-55.5,178.4],"ftR":[-8.5,327.4],"hipL":[-18.1,38.3],"knL":[-35,181.5],"ftL":[73.6,290]},{"rootY":-11.7,"hips":[0,0],"chest":[-20.6,-83.4],"neck":[-20.6,-83.4],"head":[-20.4,-149.4],"shR":[-16.8,-109.8],"elR":[7.4,-10.1],"haR":[-15.8,50.2],"shL":[-16.1,-122.1],"elL":[14.6,-26.5],"haL":[-7.5,35.5],"hipR":[-15.6,38.6],"knR":[-56.5,179],"ftR":[-7,327.4],"hipL":[-15.4,38.3],"knL":[-31.9,181.8],"ftL":[75.9,293.6]},{"rootY":-11.2,"hips":[0,0],"chest":[-20.7,-83.4],"neck":[-20.7,-83.4],"head":[-20.4,-149.3],"shR":[-20.9,-109.4],"elR":[2.6,-10.5],"haR":[-22.5,49.4],"shL":[-12.1,-122.3],"elL":[19.8,-26.7],"haL":[-3.3,34.6],"hipR":[-17.6,38.4],"knR":[-57.1,179.3],"ftR":[-5.6,327.2],"hipL":[-13.2,38.3],"knL":[-28.3,181.8],"ftL":[75.3,296.9]},{"rootY":-11,"hips":[0,0],"chest":[-19.9,-83.6],"neck":[-19.9,-83.6],"head":[-19.4,-149.5],"shR":[-24.7,-109.6],"elR":[-2.1,-11.3],"haR":[-28.8,48.3],"shL":[-7.8,-122.5],"elL":[24.5,-26.6],"haL":[0.7,34],"hipR":[-19.3,38.4],"knR":[-57.6,179.5],"ftR":[-4.3,326.9],"hipL":[-10.6,38.4],"knL":[-23.7,182.3],"ftL":[72.8,300.7]},{"rootY":-10.4,"hips":[0,0],"chest":[-19.7,-83.6],"neck":[-19.7,-83.6],"head":[-18.5,-149.5],"shR":[-28.7,-109.8],"elR":[-7.5,-11.3],"haR":[-35.4,48.1],"shL":[-3.3,-122.3],"elL":[28.6,-26.1],"haL":[4.6,33.9],"hipR":[-21.2,38.1],"knR":[-59,179.1],"ftR":[-3.8,326],"hipL":[-7.9,38.8],"knL":[-18.6,183.1],"ftL":[67.6,304.4]},{"rootY":-10.2,"hips":[0,0],"chest":[-19.2,-83.6],"neck":[-19.2,-83.6],"head":[-18.8,-149.6],"shR":[-32.1,-109],"elR":[-12.2,-10.6],"haR":[-41.5,48.8],"shL":[0.7,-122.9],"elL":[32,-26.2],"haL":[7.9,33.2],"hipR":[-22.7,38.1],"knR":[-60.3,178.7],"ftR":[-3,325],"hipL":[-5.1,39],"knL":[-13.4,183.5],"ftL":[59.7,307.7]},{"rootY":-1.9,"hips":[0,0],"chest":[-18,-83.8],"neck":[-18,-83.8],"head":[-16.7,-149.7],"shR":[-35.5,-109.3],"elR":[-18,-10.2],"haR":[-47.4,49.4],"shL":[6.2,-122.8],"elL":[36.4,-25.8],"haL":[13.3,33.5],"hipR":[-23.7,38.4],"knR":[-52.9,180.5],"ftR":[4.3,324.3],"hipL":[-2.5,38.6],"knL":[-14.2,182.6],"ftL":[50.3,302.8]},{"rootY":-1.2,"hips":[0,0],"chest":[-17.1,-83.8],"neck":[-17.1,-83.8],"head":[-15.2,-149.6],"shR":[-38.7,-109.4],"elR":[-22.5,-9.8],"haR":[-52.8,49.9],"shL":[10.8,-122.8],"elL":[40.2,-25.5],"haL":[17.2,33.4],"hipR":[-24.8,38.4],"knR":[-52.9,180.3],"ftR":[5.2,324.1],"hipL":[0.7,38.7],"knL":[-10.8,183],"ftL":[44.2,304.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-14.1,-149.5],"shR":[-42,-109.3],"elR":[-27.4,-9],"haR":[-58.2,50.8],"shL":[15.7,-122.7],"elL":[44.1,-25.1],"haL":[21.8,33.6],"hipR":[-25.4,38.7],"knR":[-53.3,180.1],"ftR":[6.6,324.2],"hipL":[4.1,38.4],"knL":[-8.8,182.8],"ftL":[40.1,308.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-14.5,-83.9],"neck":[-14.5,-83.9],"head":[-12.5,-149.7],"shR":[-44.9,-109.7],"elR":[-31.4,-9.2],"haR":[-62.4,50.9],"shL":[20.8,-122.7],"elL":[48.9,-25.1],"haL":[26.1,33.4],"hipR":[-25.9,38.7],"knR":[-55.1,179.5],"ftR":[6.7,323.2],"hipL":[6,38.2],"knL":[-7.5,182.6],"ftL":[38.8,311]},{"rootY":0,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-11.2,-149.7],"shR":[-47.2,-110],"elR":[-34.4,-9.2],"haR":[-65.3,51],"shL":[26.3,-122.4],"elL":[53.2,-24.6],"haL":[33,33.5],"hipR":[-26.2,38.7],"knR":[-56.3,178.8],"ftR":[8.7,321.5],"hipL":[8.1,38.1],"knL":[-4,182.6],"ftL":[39.4,313.4]},{"rootY":1.1,"hips":[0,0],"chest":[-11.3,-84.2],"neck":[-11.3,-84.2],"head":[-9.4,-149.9],"shR":[-49.9,-111.1],"elR":[-38.6,-10.1],"haR":[-68.8,50.3],"shL":[30.8,-121.9],"elL":[56.8,-23.9],"haL":[38,33.9],"hipR":[-26.2,38.8],"knR":[-57.7,178.4],"ftR":[9.2,320.6],"hipL":[9.9,37.9],"knL":[-2.2,182.3],"ftL":[39.3,314.2]},{"rootY":1.8,"hips":[0,0],"chest":[-9.9,-83.8],"neck":[-9.9,-83.8],"head":[-7.5,-149.5],"shR":[-51.4,-109.6],"elR":[-41.9,-8.4],"haR":[-71,52],"shL":[34.3,-122.4],"elL":[59.3,-24.3],"haL":[42.5,33.3],"hipR":[-26.1,38.9],"knR":[-57.2,178.4],"ftR":[9.4,320.8],"hipL":[12.1,37.7],"knL":[0.2,181.7],"ftL":[37.1,314.3]},{"rootY":1.8,"hips":[0,0],"chest":[-9.3,-83.8],"neck":[-9.3,-83.8],"head":[-6.1,-149.5],"shR":[-53.4,-110.3],"elR":[-45.7,-8.9],"haR":[-73.3,51.4],"shL":[37.1,-121.8],"elL":[60.6,-23.5],"haL":[47.1,34],"hipR":[-25.8,39],"knR":[-59.2,177.6],"ftR":[7.2,320],"hipL":[14.1,37.4],"knL":[1.4,181],"ftL":[34.5,314.4]},{"rootY":2.2,"hips":[0,0],"chest":[-8.8,-83.7],"neck":[-8.8,-83.7],"head":[-4.8,-149.4],"shR":[-55.6,-110.9],"elR":[-49.5,-9.3],"haR":[-75.6,50.7],"shL":[40.1,-121],"elL":[61.8,-22.4],"haL":[52.3,35.3],"hipR":[-25.5,39.1],"knR":[-61.3,176.4],"ftR":[5.3,318.7],"hipL":[15.7,37.1],"knL":[2.3,180.1],"ftL":[32.3,314.3]},{"rootY":2.5,"hips":[0,0],"chest":[-7.8,-83.6],"neck":[-7.8,-83.6],"head":[-3.1,-149.2],"shR":[-56.8,-111.2],"elR":[-52.7,-9.7],"haR":[-76.8,49.8],"shL":[42.7,-120.5],"elL":[62.6,-21.7],"haL":[57.5,35.4],"hipR":[-25.2,39.1],"knR":[-63.3,174.9],"ftR":[3.8,316.6],"hipL":[16.9,36.8],"knL":[3.4,179.4],"ftL":[30.3,314.4]},{"rootY":2.7,"hips":[0,0],"chest":[-6.5,-83.5],"neck":[-6.5,-83.5],"head":[-0.8,-149.1],"shR":[-57.4,-111.2],"elR":[-55.7,-9.7],"haR":[-77.9,49.3],"shL":[45.2,-120.2],"elL":[63.7,-21.5],"haL":[63.2,36.6],"hipR":[-24.9,39],"knR":[-63.7,173.9],"ftR":[3.5,314.6],"hipL":[18.2,36.6],"knL":[4.8,179],"ftL":[29,314.9]},{"rootY":-6.3,"hips":[0,0],"chest":[-5.8,-83.7],"neck":[-5.8,-83.7],"head":[0.7,-149.3],"shR":[-58.6,-114],"elR":[-58.5,-12.1],"haR":[-78.8,46.4],"shL":[47.9,-118.6],"elL":[65,-19.5],"haL":[69.6,39.2],"hipR":[-24.8,38.9],"knR":[-66.7,172.1],"ftR":[-17.7,314],"hipL":[19.1,36.6],"knL":[9.1,180.4],"ftL":[28.7,320.5]},{"rootY":-6.3,"hips":[0,0],"chest":[-4.1,-84],"neck":[-4.1,-84],"head":[3.2,-149.4],"shR":[-57,-113.2],"elR":[-58.5,-11],"haR":[-77.4,47.1],"shL":[49.9,-119.1],"elL":[66,-20.2],"haL":[74.7,39.4],"hipR":[-24.3,38.9],"knR":[-62.1,173.3],"ftR":[-21.6,314.2],"hipL":[20.3,36.4],"knL":[12.6,180.8],"ftL":[28.2,324.1]},{"rootY":-6.9,"hips":[0,0],"chest":[-2.5,-84.1],"neck":[-2.5,-84.1],"head":[5.5,-149.6],"shR":[-55.9,-113.6],"elR":[-58.3,-11],"haR":[-75.7,47.1],"shL":[52.1,-118.9],"elL":[67.6,-20],"haL":[80.4,40.6],"hipR":[-24.2,38.6],"knR":[-55.4,175.2],"ftR":[-26.7,316.3],"hipL":[21,36.5],"knL":[14.1,180.9],"ftL":[28.3,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[-1.2,-84.2],"neck":[-1.2,-84.2],"head":[7.7,-149.5],"shR":[-55.1,-114.3],"elR":[-57.8,-11.5],"haR":[-73.8,46.5],"shL":[54,-118.3],"elL":[69.6,-19.6],"haL":[85.5,41.7],"hipR":[-23.8,38.4],"knR":[-46.9,177.4],"ftR":[-29.7,319.1],"hipL":[22.4,36.6],"knL":[16.3,180.9],"ftL":[29.5,324.5]},{"rootY":-6.6,"hips":[0,0],"chest":[0.6,-84.5],"neck":[0.6,-84.5],"head":[10.6,-149.6],"shR":[-53.6,-115.2],"elR":[-56.8,-12.3],"haR":[-71.1,45.8],"shL":[56.3,-117.8],"elL":[72.3,-19.3],"haL":[90.4,42.4],"hipR":[-23,38.2],"knR":[-37.3,179.6],"ftR":[-30.3,321.5],"hipL":[23.8,36.8],"knL":[19.8,181],"ftL":[31.3,324.7]},{"rootY":-6.3,"hips":[0,0],"chest":[1.9,-84.5],"neck":[1.9,-84.5],"head":[12.9,-149.5],"shR":[-52.4,-115.9],"elR":[-56,-13],"haR":[-68.9,45.4],"shL":[58,-116.9],"elL":[74.4,-18.8],"haL":[94.4,43.3],"hipR":[-22.2,38.4],"knR":[-31.2,181.2],"ftR":[-30.6,323.2],"hipL":[24.7,36.6],"knL":[21.6,180.8],"ftL":[32.1,324.4]},{"rootY":-6.5,"hips":[0,0],"chest":[2.9,-84.4],"neck":[2.9,-84.4],"head":[14.5,-149.3],"shR":[-51.6,-116.2],"elR":[-55.8,-13.3],"haR":[-66.6,45.8],"shL":[58.9,-116.4],"elL":[75.1,-18.3],"haL":[96.5,44.1],"hipR":[-22.3,38.1],"knR":[-28,181.4],"ftR":[-28.1,323.7],"hipL":[24.8,36.9],"knL":[22.8,181.1],"ftL":[33.2,324.8]},{"rootY":-6.9,"hips":[0,0],"chest":[3.1,-84.7],"neck":[3.1,-84.7],"head":[15.2,-149.4],"shR":[-51.5,-116.9],"elR":[-56.1,-14],"haR":[-65.4,45.6],"shL":[59.1,-116.3],"elL":[74.3,-18],"haL":[96.5,44.7],"hipR":[-22.2,37.7],"knR":[-26.1,181.4],"ftR":[-26,323.4],"hipL":[25.1,37.1],"knL":[23.9,181.4],"ftL":[33.8,324.9]},{"rootY":-7.2,"hips":[0,0],"chest":[3.7,-84.6],"neck":[3.7,-84.6],"head":[16,-149.3],"shR":[-50.9,-117.2],"elR":[-56.3,-14.4],"haR":[-64.2,45.8],"shL":[59.6,-115.8],"elL":[73,-17.6],"haL":[95.4,45.2],"hipR":[-21.9,37.6],"knR":[-25.1,181.4],"ftR":[-24.2,323.1],"hipL":[25.4,37.4],"knL":[25.6,181.6],"ftL":[35.2,325.3]},{"rootY":-7.1,"hips":[0,0],"chest":[4.3,-84.6],"neck":[4.3,-84.6],"head":[16.8,-149.3],"shR":[-50.4,-117.1],"elR":[-56.3,-14.5],"haR":[-63,46.3],"shL":[60,-115.9],"elL":[71.2,-17.7],"haL":[93.1,45.3],"hipR":[-22,37.7],"knR":[-26.5,181.6],"ftR":[-24.3,323.5],"hipL":[25.3,37.3],"knL":[25.7,181.6],"ftL":[35.8,325]},{"rootY":-7,"hips":[0,0],"chest":[5.3,-84.6],"neck":[5.3,-84.6],"head":[17.6,-149.2],"shR":[-49.5,-117.1],"elR":[-55.6,-14.6],"haR":[-61.4,46.6],"shL":[60.8,-115.5],"elL":[69.5,-17.9],"haL":[90.6,45.4],"hipR":[-21.2,37.8],"knR":[-25.7,182],"ftR":[-22.9,323.5],"hipL":[26.1,37.3],"knL":[28.5,181.7],"ftL":[38,325.1]},{"rootY":-6.9,"hips":[0,0],"chest":[5.4,-84.6],"neck":[5.4,-84.6],"head":[18,-149.2],"shR":[-49.3,-117.4],"elR":[-55.1,-14.7],"haR":[-60.5,46.8],"shL":[60.8,-115.8],"elL":[67.4,-18.4],"haL":[87.3,45.3],"hipR":[-21.5,37.8],"knR":[-26.6,182.1],"ftR":[-22.4,323.6],"hipL":[25.8,37.3],"knL":[28.2,181.8],"ftL":[38.9,324.9]},{"rootY":-6.6,"hips":[0,0],"chest":[5.5,-84.4],"neck":[5.5,-84.4],"head":[18,-148.9],"shR":[-49,-117.6],"elR":[-54.1,-15],"haR":[-58.8,46.8],"shL":[61.1,-115.1],"elL":[65.4,-18],"haL":[84,46.1],"hipR":[-21.6,37.6],"knR":[-25.2,182.3],"ftR":[-19.8,323.6],"hipL":[25.7,37.7],"knL":[29.2,182.1],"ftL":[40.6,324.8]},{"rootY":-6.5,"hips":[0,0],"chest":[6,-84.7],"neck":[6,-84.7],"head":[18.4,-149.4],"shR":[-48.6,-117.7],"elR":[-53.3,-15.2],"haR":[-57.9,46.8],"shL":[61.4,-115.5],"elL":[63.3,-18.7],"haL":[80.5,45.7],"hipR":[-21.9,37.3],"knR":[-22.6,182.3],"ftR":[-16.9,323.3],"hipL":[25.4,38.1],"knL":[30.4,182.5],"ftL":[42.9,324.6]},{"rootY":-6.4,"hips":[0,0],"chest":[6.9,-84.8],"neck":[6.9,-84.8],"head":[19.4,-149.4],"shR":[-47.6,-117.9],"elR":[-52.1,-15.2],"haR":[-56,47.4],"shL":[62.4,-115.8],"elL":[62.1,-19],"haL":[77.9,45.7],"hipR":[-21.1,37.2],"knR":[-18.1,182.6],"ftR":[-13.1,322.7],"hipL":[26,38.5],"knL":[33,182.6],"ftL":[46.4,324]},{"rootY":-5.9,"hips":[0,0],"chest":[6.3,-84.5],"neck":[6.3,-84.5],"head":[18.4,-149.3],"shR":[-48.2,-117.6],"elR":[-52.3,-15.1],"haR":[-56.1,47.4],"shL":[61.8,-115.3],"elL":[59.4,-18.8],"haL":[73.6,46.1],"hipR":[-23.2,36.8],"knR":[-20.5,182],"ftR":[-13.3,323.1],"hipL":[24,38.7],"knL":[29.3,182.9],"ftL":[45.6,322.6]},{"rootY":-5.5,"hips":[0,0],"chest":[6.5,-84.4],"neck":[6.5,-84.4],"head":[18.6,-149.2],"shR":[-48,-117.5],"elR":[-52.1,-15.1],"haR":[-55.7,47.6],"shL":[62.1,-115.6],"elL":[58.4,-19.1],"haL":[71,45.9],"hipR":[-23.8,36.4],"knR":[-19.5,181.7],"ftR":[-11.4,322.9],"hipL":[23.4,39.2],"knL":[29,182.9],"ftL":[47.1,320.5]},{"rootY":-5,"hips":[0,0],"chest":[7.9,-84.3],"neck":[7.9,-84.3],"head":[19.9,-149.1],"shR":[-46.7,-117.3],"elR":[-50.9,-14.9],"haR":[-54.5,48.3],"shL":[63.5,-115.5],"elL":[58.9,-19.3],"haL":[69.9,45.6],"hipR":[-23.2,35.8],"knR":[-14.8,181.4],"ftR":[-6.4,322],"hipL":[23.7,39.7],"knL":[32,182.4],"ftL":[50.9,317]},{"rootY":-4.5,"hips":[0,0],"chest":[8.4,-84],"neck":[8.4,-84],"head":[20.5,-149],"shR":[-46,-117.3],"elR":[-50.4,-15],"haR":[-54,48.5],"shL":[64.2,-115],"elL":[59.4,-18.8],"haL":[69,46],"hipR":[-23.7,35.3],"knR":[-13.1,180.9],"ftR":[-3.5,321.8],"hipL":[23.1,40.2],"knL":[32.6,180.9],"ftL":[54.1,311.8]},{"rootY":-4.1,"hips":[0,0],"chest":[8.4,-84.1],"neck":[8.4,-84.1],"head":[20.6,-149.1],"shR":[-45.9,-117.7],"elR":[-50.5,-15.3],"haR":[-54.4,48.5],"shL":[64.2,-115.2],"elL":[59.6,-18.9],"haL":[68.3,45.5],"hipR":[-24.6,34.7],"knR":[-12.5,180.3],"ftR":[-1,321.3],"hipL":[22.2,40.5],"knL":[32.6,178.3],"ftL":[57.2,304.5]},{"rootY":-3.4,"hips":[0,0],"chest":[7.2,-83.6],"neck":[7.2,-83.6],"head":[19.4,-148.6],"shR":[-46.9,-117.5],"elR":[-51.8,-15.4],"haR":[-55.9,48.3],"shL":[63.2,-114.5],"elL":[59,-18.2],"haL":[66.7,45.3],"hipR":[-26.7,34.2],"knR":[-15.7,179.7],"ftR":[-0.6,321.2],"hipL":[20.2,40.7],"knL":[29.5,174.1],"ftL":[57.5,297]},{"rootY":-2.5,"hips":[0,0],"chest":[7,-83.6],"neck":[7,-83.6],"head":[19.2,-148.6],"shR":[-47.1,-117.6],"elR":[-52.5,-15.5],"haR":[-56.8,48.2],"shL":[63,-114.5],"elL":[59.2,-18.5],"haL":[66.5,44],"hipR":[-27.3,33.4],"knR":[-14.4,178.8],"ftR":[2.4,319.7],"hipL":[19.4,40.9],"knL":[29.7,170.1],"ftL":[58.7,290.6]},{"rootY":-1.1,"hips":[0,0],"chest":[6.6,-83.5],"neck":[6.6,-83.5],"head":[19.2,-148.5],"shR":[-47.3,-117.6],"elR":[-52.9,-15.8],"haR":[-57.2,47.9],"shL":[62.8,-114.4],"elL":[59,-18.7],"haL":[66.5,42.7],"hipR":[-27.5,33.3],"knR":[-14,178.7],"ftR":[4.4,318.8],"hipL":[19.2,40.7],"knL":[29,166.3],"ftL":[57.3,287.6]},{"rootY":-1.2,"hips":[0,0],"chest":[6.6,-83.4],"neck":[6.6,-83.4],"head":[19.3,-148.3],"shR":[-47.4,-117.3],"elR":[-53,-15.6],"haR":[-57.4,47.9],"shL":[62.7,-114.3],"elL":[58.9,-18.8],"haL":[67,41.6],"hipR":[-27.5,33.4],"knR":[-13.4,178.9],"ftR":[6.1,318.5],"hipL":[19.3,40.5],"knL":[29.1,163.4],"ftL":[54.4,288.4]},{"rootY":-1.3,"hips":[0,0],"chest":[6.2,-83.1],"neck":[6.2,-83.1],"head":[19.3,-148],"shR":[-47.7,-117.3],"elR":[-53,-15.6],"haR":[-57.5,47.9],"shL":[62.3,-113.9],"elL":[58.2,-18.5],"haL":[67.2,41.4],"hipR":[-27.6,33.5],"knR":[-13,179],"ftR":[7.3,318.6],"hipL":[19.2,40.6],"knL":[29,160.6],"ftL":[50.4,292.4]},{"rootY":-2.6,"hips":[0,0],"chest":[5.6,-83.1],"neck":[5.6,-83.1],"head":[18.9,-148],"shR":[-48.3,-117.4],"elR":[-53.6,-15.9],"haR":[-58,47.8],"shL":[61.7,-113.6],"elL":[57.2,-18.6],"haL":[67,41.4],"hipR":[-27.4,34],"knR":[-12.9,179.6],"ftR":[7.8,319.7],"hipL":[19.4,40.7],"knL":[28.3,159.6],"ftL":[45.5,298.9]},{"rootY":-3.7,"hips":[0,0],"chest":[5.7,-83.5],"neck":[5.7,-83.5],"head":[19.4,-148.2],"shR":[-48.4,-117.5],"elR":[-54,-16.2],"haR":[-58.2,47.7],"shL":[61.5,-114.2],"elL":[56.6,-19.3],"haL":[67,41],"hipR":[-27.1,34.2],"knR":[-11.5,179.5],"ftR":[9.2,320],"hipL":[19.8,40.9],"knL":[28.5,159.8],"ftL":[41.7,306.2]},{"rootY":-5.9,"hips":[0,0],"chest":[5.1,-83.3],"neck":[5.1,-83.3],"head":[18.7,-148.1],"shR":[-48.9,-117.4],"elR":[-54.9,-16.3],"haR":[-58.7,47.9],"shL":[60.6,-114],"elL":[55.3,-19.5],"haL":[66.2,41.1],"hipR":[-27.3,34.7],"knR":[-12.1,179.9],"ftR":[9.1,321.2],"hipL":[19.5,41.1],"knL":[26.3,161],"ftL":[36.8,312.8]},{"rootY":-7.5,"hips":[0,0],"chest":[4.5,-83.2],"neck":[4.5,-83.2],"head":[18.4,-147.9],"shR":[-49.5,-117.3],"elR":[-56.2,-16.4],"haR":[-59.2,47.9],"shL":[60,-113.8],"elL":[54.2,-19.9],"haL":[66.1,41.4],"hipR":[-27.4,35.1],"knR":[-12.4,180],"ftR":[8.9,322],"hipL":[19.4,41.2],"knL":[24.1,163.1],"ftL":[32.6,317.7]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.3],"neck":[3.9,-83.3],"head":[18.2,-147.8],"shR":[-50.1,-117.2],"elR":[-57.3,-16.4],"haR":[-59.6,48],"shL":[59.3,-114.1],"elL":[53,-20.7],"haL":[65.3,41.2],"hipR":[-28,35.2],"knR":[-12.6,179.5],"ftR":[8.5,321.7],"hipL":[18.8,41.7],"knL":[21.6,164.8],"ftL":[29,320.2]},{"rootY":-8.7,"hips":[0,0],"chest":[3.9,-83.1],"neck":[3.9,-83.1],"head":[18.3,-147.6],"shR":[-50.3,-116.7],"elR":[-58,-15.7],"haR":[-60.6,48.5],"shL":[59.1,-114.4],"elL":[52.2,-21.7],"haL":[64.4,41],"hipR":[-27.9,35.4],"knR":[-12,178.6],"ftR":[9.1,321.5],"hipL":[18.9,41.8],"knL":[20.2,165.7],"ftL":[26.3,320.6]},{"rootY":-7.3,"hips":[0,0],"chest":[3.5,-82.5],"neck":[3.5,-82.5],"head":[18,-146.9],"shR":[-50.5,-116.4],"elR":[-58.7,-15.2],"haR":[-61.2,48.6],"shL":[58.8,-113.3],"elL":[51.6,-21.7],"haL":[63.8,41.8],"hipR":[-28.3,35.2],"knR":[-11.8,177.4],"ftR":[8.7,320.1],"hipL":[18.4,42.1],"knL":[18.3,165.8],"ftL":[23.3,320.2]},{"rootY":-5.4,"hips":[0,0],"chest":[3.4,-82.7],"neck":[3.4,-82.7],"head":[17.9,-147.1],"shR":[-50.6,-116.5],"elR":[-58.9,-15.1],"haR":[-61.4,48.2],"shL":[58.7,-114.1],"elL":[51.3,-23.1],"haL":[63.5,41.2],"hipR":[-28.2,35.3],"knR":[-12,176.9],"ftR":[8.7,318.5],"hipL":[18.4,42.2],"knL":[16.8,165.9],"ftL":[20.8,320.4]},{"rootY":-3.2,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18.1,-146.8],"shR":[-50.9,-116],"elR":[-59.3,-14.4],"haR":[-61.5,48.1],"shL":[58.6,-113.9],"elL":[51.1,-23.4],"haL":[63.2,41.6],"hipR":[-28.6,35.1],"knR":[-12.2,175.9],"ftR":[8.1,316.1],"hipL":[18,42.5],"knL":[15.5,166.2],"ftL":[18.9,321.4]},{"rootY":-3.1,"hips":[0,0],"chest":[3.3,-82.5],"neck":[3.3,-82.5],"head":[18,-146.9],"shR":[-50.9,-116.1],"elR":[-58.7,-14.2],"haR":[-61.5,47.8],"shL":[58.5,-114],"elL":[51,-23.2],"haL":[62.7,42.4],"hipR":[-28,35.5],"knR":[-11.8,174.6],"ftR":[7.5,314.3],"hipL":[18.7,42.4],"knL":[14.3,164.6],"ftL":[17.5,320]},{"rootY":-3,"hips":[0,0],"chest":[3.1,-82.1],"neck":[3.1,-82.1],"head":[17.9,-146.4],"shR":[-50.8,-115.9],"elR":[-58.1,-13.9],"haR":[-61.4,47.6],"shL":[58.6,-113.3],"elL":[51.1,-22],"haL":[62.7,44],"hipR":[-27.7,35.8],"knR":[-12.1,173.8],"ftR":[6,311.6],"hipL":[19.1,42.3],"knL":[13.2,164.4],"ftL":[16.2,319.8]},{"rootY":-3.9,"hips":[0,0],"chest":[2.7,-81.8],"neck":[2.7,-81.8],"head":[17.6,-146.1],"shR":[-51.2,-115.9],"elR":[-58.4,-13.9],"haR":[-61.9,47.4],"shL":[58.4,-113],"elL":[51,-21.2],"haL":[62.4,44.7],"hipR":[-27.8,35.8],"knR":[-13.7,174.1],"ftR":[3,307.5],"hipL":[19,42.4],"knL":[12.3,165.8],"ftL":[14.8,321]},{"rootY":-5.7,"hips":[0,0],"chest":[2.8,-82.2],"neck":[2.8,-82.2],"head":[17.3,-146.6],"shR":[-51.2,-116.2],"elR":[-58.8,-14.2],"haR":[-62.3,47.1],"shL":[58.6,-113.4],"elL":[51.7,-21.1],"haL":[62.5,44.6],"hipR":[-27.7,36],"knR":[-15.8,175.2],"ftR":[0.2,302.9],"hipL":[19.1,42.1],"knL":[11.9,168],"ftL":[13.3,322.8]},{"rootY":-7.3,"hips":[0,0],"chest":[2.9,-83.1],"neck":[2.9,-83.1],"head":[16.9,-147.6],"shR":[-51.3,-116.9],"elR":[-59.2,-15.1],"haR":[-63,46],"shL":[58.8,-114],"elL":[52.7,-21.3],"haL":[63.1,44.2],"hipR":[-27.2,36.3],"knR":[-18.5,177.6],"ftR":[-3,297.2],"hipL":[19.6,41.6],"knL":[12.1,170.1],"ftL":[11.7,324.2]},{"rootY":-8.6,"hips":[0,0],"chest":[2.7,-83.2],"neck":[2.7,-83.2],"head":[16.1,-147.9],"shR":[-51.3,-117.2],"elR":[-58.9,-15.2],"haR":[-63.3,45.7],"shL":[59,-114.1],"elL":[54.1,-21.2],"haL":[64.2,44.4],"hipR":[-26.5,36.6],"knR":[-22.1,180.4],"ftR":[-6.8,291.6],"hipL":[20.4,40.9],"knL":[12.8,171.8],"ftL":[10.2,324.7]},{"rootY":-7.6,"hips":[0,0],"chest":[3.1,-83.7],"neck":[3.1,-83.7],"head":[15.9,-148.5],"shR":[-51,-117.1],"elR":[-58.4,-15.2],"haR":[-63.4,45.5],"shL":[59.5,-114.5],"elL":[56,-21.4],"haL":[66.3,44.3],"hipR":[-25.7,36.8],"knR":[-25.5,182.5],"ftR":[-9.6,285.2],"hipL":[21.3,40.1],"knL":[13.4,172.5],"ftL":[8.7,323.9]},{"rootY":-7.1,"hips":[0,0],"chest":[3,-83.7],"neck":[3,-83.7],"head":[15.6,-148.6],"shR":[-51.1,-117.1],"elR":[-57.5,-14.8],"haR":[-63.4,45.6],"shL":[59.5,-115],"elL":[58.4,-20.9],"haL":[68.6,45],"hipR":[-24.6,37.2],"knR":[-29.2,183.4],"ftR":[-13.9,277.4],"hipL":[22.5,39],"knL":[13.4,173.5],"ftL":[7.7,323.3]},{"rootY":-5.2,"hips":[0,0],"chest":[3,-84],"neck":[3,-84],"head":[15.2,-148.9],"shR":[-51,-117.1],"elR":[-56.1,-14.6],"haR":[-63.4,45.8],"shL":[59.6,-115.4],"elL":[61.4,-20],"haL":[71.7,46.1],"hipR":[-23.7,37.4],"knR":[-32.7,182.7],"ftR":[-18,268],"hipL":[23.4,37.8],"knL":[13.1,173.9],"ftL":[6.3,321.6]},{"rootY":-4.2,"hips":[0,0],"chest":[3.2,-84.3],"neck":[3.2,-84.3],"head":[14.9,-149.4],"shR":[-50.8,-116.7],"elR":[-54.1,-14.1],"haR":[-62.9,46.3],"shL":[59.6,-116],"elL":[64.1,-19.1],"haL":[74.9,46.9],"hipR":[-22.5,37.7],"knR":[-35.6,180.2],"ftR":[-19.2,263.9],"hipL":[24.7,36.6],"knL":[13.4,174.4],"ftL":[5.5,320.4]},{"rootY":-3.4,"hips":[0,0],"chest":[2.4,-84.3],"neck":[2.4,-84.3],"head":[13.9,-149.4],"shR":[-51.4,-116.7],"elR":[-52.6,-13.9],"haR":[-62.5,47.1],"shL":[58.8,-116.2],"elL":[65.7,-17.8],"haL":[77,48],"hipR":[-21.7,38],"knR":[-38.9,176.3],"ftR":[-21.9,263.5],"hipL":[25.3,35.6],"knL":[13,175.1],"ftL":[4.2,319.5]},{"rootY":-3.2,"hips":[0,0],"chest":[2.4,-84.5],"neck":[2.4,-84.5],"head":[13.5,-149.7],"shR":[-51.3,-116.6],"elR":[-50.5,-14],"haR":[-61.1,47.7],"shL":[58.7,-116.7],"elL":[67.8,-17.3],"haL":[79.1,47.7],"hipR":[-20.7,38.1],"knR":[-38.5,172],"ftR":[-23,267.6],"hipL":[26.4,35.1],"knL":[14.2,175.8],"ftL":[4.4,319]},{"rootY":-3.1,"hips":[0,0],"chest":[1.9,-84.6],"neck":[1.9,-84.6],"head":[12.7,-149.9],"shR":[-51.8,-116.5],"elR":[-49.4,-13.9],"haR":[-60,48.9],"shL":[58.1,-117.1],"elL":[69.2,-16.9],"haL":[80.6,47.1],"hipR":[-20.2,38.2],"knR":[-37.9,167.8],"ftR":[-25.3,276.3],"hipL":[26.9,34.7],"knL":[14.4,176.9],"ftL":[3.9,318.8]},{"rootY":-3.3,"hips":[0,0],"chest":[1.8,-84.7],"neck":[1.8,-84.7],"head":[12.1,-150],"shR":[-51.8,-115.8],"elR":[-48.2,-13.5],"haR":[-58.6,50.3],"shL":[57.6,-117.8],"elL":[70.6,-17.3],"haL":[81.3,44.8],"hipR":[-20,38.4],"knR":[-36.7,163.2],"ftR":[-27.1,287.3],"hipL":[27,34.5],"knL":[13.5,177.6],"ftL":[3,318.4]},{"rootY":-4.2,"hips":[0,0],"chest":[1.6,-84.6],"neck":[1.6,-84.6],"head":[11.2,-150],"shR":[-52,-115.2],"elR":[-47.2,-13.4],"haR":[-57.2,51.1],"shL":[57.2,-118],"elL":[72.2,-17.5],"haL":[81.3,42],"hipR":[-20,38.7],"knR":[-34.8,160.1],"ftR":[-28.6,298.9],"hipL":[27,34.6],"knL":[13.2,178.5],"ftL":[2.5,318.9]}]},"run":{"name":"run","fps":30,"height":520,"groundY":345,"frameCount":38,"frames":[{"rootY":0,"hips":[0,0],"chest":[-0.1,-78.3],"neck":[-0.1,-78.3],"head":[0.8,-147.2],"shR":[-62.2,-107.2],"elR":[-178.8,-90.8],"haR":[-251.1,-80.6],"shL":[63.5,-104.3],"elL":[173.6,-88.9],"haL":[245.1,-78.8],"hipR":[-31.4,37.4],"knR":[-28.8,187],"ftR":[-26.1,343.4],"hipL":[31.7,37.4],"knL":[29,189.2],"ftL":[26.3,344.6]},{"rootY":4.5,"hips":[0,0],"chest":[4.7,-75.6],"neck":[4.7,-75.6],"head":[11.9,-144.3],"shR":[-55.1,-110.3],"elR":[-84.8,-7.9],"haR":[-79.1,42.7],"shL":[70.1,-99.4],"elL":[75.5,4.8],"haL":[60.3,6.5],"hipR":[-32.9,36.1],"knR":[-38.4,185.5],"ftR":[-30.1,178.3],"hipL":[30.1,39.3],"knL":[15.4,179.1],"ftL":[3.3,323.8]},{"rootY":8.2,"hips":[0,0],"chest":[5.5,-75],"neck":[5.5,-75],"head":[12.5,-143.5],"shR":[-54.1,-110.2],"elR":[-77.4,-10.3],"haR":[-81,45.7],"shL":[71.2,-98.8],"elL":[77.8,10.7],"haL":[57.2,-1],"hipR":[-31.1,37.9],"knR":[-45.3,180.7],"ftR":[-31.1,181.7],"hipL":[31.9,38],"knL":[15.3,183.5],"ftL":[2.9,319.7]},{"rootY":5.6,"hips":[0,0],"chest":[4.7,-75],"neck":[4.7,-75],"head":[10.8,-143.6],"shR":[-54.7,-110.1],"elR":[-72.4,-13.6],"haR":[-82,45.1],"shL":[70.5,-98.8],"elL":[78.7,11.9],"haL":[53.7,-8.5],"hipR":[-30.5,38.5],"knR":[-45,170],"ftR":[-32.4,200],"hipL":[32.6,37.7],"knL":[16,187.9],"ftL":[1.5,316]},{"rootY":-0.4,"hips":[0,0],"chest":[4.7,-74.9],"neck":[4.7,-74.9],"head":[9.5,-143.7],"shR":[-54.6,-109],"elR":[-67.8,-17],"haR":[-80.3,42.8],"shL":[70.2,-99.6],"elL":[81.9,11],"haL":[52.1,-14.9],"hipR":[-29,39.5],"knR":[-39.4,160.3],"ftR":[-31.8,228.3],"hipL":[33.8,36.9],"knL":[19.4,187.5],"ftL":[3.9,310]},{"rootY":-8,"hips":[0,0],"chest":[4,-75.3],"neck":[4,-75.3],"head":[7.2,-144.3],"shR":[-55.1,-108.4],"elR":[-63.1,-21],"haR":[-77.7,39.7],"shL":[69,-101],"elL":[85.9,8.9],"haL":[50.9,-20.4],"hipR":[-29.2,39.6],"knR":[-31.9,154.5],"ftR":[-30.4,260.8],"hipL":[33.7,37.2],"knL":[22.4,183.6],"ftL":[9.2,305.1]},{"rootY":-14.3,"hips":[0,0],"chest":[2.9,-75.7],"neck":[2.9,-75.7],"head":[4.8,-145.1],"shR":[-56.1,-107.2],"elR":[-58.7,-24.2],"haR":[-75.7,37.5],"shL":[67,-103],"elL":[89.9,5.8],"haL":[50.1,-23.5],"hipR":[-29.6,39.7],"knR":[-28,153.7],"ftR":[-29.4,290.2],"hipL":[33.4,37.3],"knL":[23.8,173.6],"ftL":[14.6,298.4]},{"rootY":-20.1,"hips":[0,0],"chest":[1.3,-76],"neck":[1.3,-76],"head":[1.5,-145.5],"shR":[-57.7,-106.8],"elR":[-55.5,-27.1],"haR":[-74.3,34.7],"shL":[65.2,-103.8],"elL":[93.4,3.7],"haL":[50.1,-23],"hipR":[-28.9,40.4],"knR":[-25.4,159.4],"ftR":[-28.5,312.6],"hipL":[34,36.7],"knL":[26.8,158.9],"ftL":[19.3,284]},{"rootY":-21.4,"hips":[0,0],"chest":[0.1,-76.1],"neck":[0.1,-76.1],"head":[-0.6,-145.6],"shR":[-59.2,-106.5],"elR":[-53.9,-26.8],"haR":[-73.7,34.1],"shL":[63.6,-104.4],"elL":[95.4,2],"haL":[50.7,-19.7],"hipR":[-27.2,41.6],"knR":[-21.1,167.2],"ftR":[-24.9,323.5],"hipL":[35.5,35.2],"knL":[24.7,163.6],"ftL":[20.8,261.4]},{"rootY":-18.9,"hips":[0,0],"chest":[-1,-76.2],"neck":[-1,-76.2],"head":[-2.1,-145.6],"shR":[-60.9,-105.5],"elR":[-55.8,-22.2],"haR":[-75.3,37.2],"shL":[61.8,-106],"elL":[94.5,-0.8],"haL":[50.4,-13.6],"hipR":[-27.5,41.5],"knR":[-19.1,172.8],"ftR":[-18.1,328.1],"hipL":[35.2,35.2],"knL":[22,171.8],"ftL":[24,235.3]},{"rootY":-13,"hips":[0,0],"chest":[-2.6,-76.2],"neck":[-2.6,-76.2],"head":[-3.8,-145.6],"shR":[-62.9,-104.3],"elR":[-61.3,-16.1],"haR":[-78.9,39.8],"shL":[59.6,-107.1],"elL":[92.2,-3.9],"haL":[51,-4.8],"hipR":[-29.4,40.1],"knR":[-19,176.7],"ftR":[-9.5,332.5],"hipL":[33.5,36.4],"knL":[21.9,180.5],"ftL":[24.9,205.6]},{"rootY":-4.6,"hips":[0,0],"chest":[-3.1,-76.1],"neck":[-3.1,-76.1],"head":[-5.2,-145.3],"shR":[-64,-104.6],"elR":[-67.1,-8.8],"haR":[-81.5,38.6],"shL":[59.8,-106.4],"elL":[91.3,-6],"haL":[55.5,6.3],"hipR":[-31.8,38.2],"knR":[-16.4,175.9],"ftR":[-0.9,329.9],"hipL":[31.1,37.8],"knL":[32.3,188],"ftL":[25.7,178.4]},{"rootY":4.3,"hips":[0,0],"chest":[-3.7,-75.5],"neck":[-3.7,-75.5],"head":[-6.4,-144.6],"shR":[-65,-104.2],"elR":[-73.5,-0.1],"haR":[-82.5,35.3],"shL":[59.1,-106],"elL":[87.7,-10.1],"haL":[59.5,14.3],"hipR":[-34,36.3],"knR":[-13.5,174.6],"ftR":[2.2,320.5],"hipL":[28.7,39.2],"knL":[46.6,189.7],"ftL":[27.3,163.4]},{"rootY":7.7,"hips":[0,0],"chest":[-4.1,-75.2],"neck":[-4.1,-75.2],"head":[-6.9,-143.9],"shR":[-65.6,-104],"elR":[-79,6.9],"haR":[-81.6,29.5],"shL":[58.8,-105.7],"elL":[83.6,-15.6],"haL":[62.2,18.5],"hipR":[-34.9,35.5],"knR":[-13.7,179.3],"ftR":[2.2,316.2],"hipL":[27.8,40.3],"knL":[55.1,183.3],"ftL":[29.4,165.8]},{"rootY":6.4,"hips":[0,0],"chest":[-3.8,-75.2],"neck":[-3.8,-75.2],"head":[-6.5,-144.1],"shR":[-66.3,-103.5],"elR":[-83.1,10.2],"haR":[-78.6,20.5],"shL":[59,-106.1],"elL":[80.6,-20.2],"haL":[63.1,17.9],"hipR":[-34.9,35.3],"knR":[-13.4,183],"ftR":[2,311.1],"hipL":[27.9,40.5],"knL":[52.4,171.1],"ftL":[30.2,183.3]},{"rootY":0.7,"hips":[0,0],"chest":[-3.4,-75.6],"neck":[-3.4,-75.6],"head":[-4.9,-144.8],"shR":[-66.2,-104.3],"elR":[-85.6,10.2],"haR":[-73.8,10.4],"shL":[59.6,-105.7],"elL":[77.7,-23],"haL":[63.7,16],"hipR":[-36.1,34.7],"knR":[-16.6,182.2],"ftR":[-0.9,304.8],"hipL":[26.3,41.2],"knL":[44,162.3],"ftL":[29.8,211.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-4.1,-76.1],"neck":[-4.1,-76.1],"head":[-3.8,-145.7],"shR":[-66.8,-105.4],"elR":[-89.3,9.1],"haR":[-70.7,3.8],"shL":[58.9,-105.6],"elL":[71.6,-25.8],"haL":[62.6,13.6],"hipR":[-35.5,35.1],"knR":[-20.1,177.4],"ftR":[-7.9,297.6],"hipL":[27.2,41],"knL":[33.4,156.1],"ftL":[29.4,245.2]},{"rootY":-12.2,"hips":[0,0],"chest":[-3.7,-76.8],"neck":[-3.7,-76.8],"head":[-1.7,-146.5],"shR":[-66.1,-106.9],"elR":[-92.8,6.7],"haR":[-68.3,0.5],"shL":[59.3,-105.2],"elL":[65.9,-28],"haL":[61.7,11.5],"hipR":[-35,35.2],"knR":[-25.2,162.6],"ftR":[-16.5,289.6],"hipL":[27.8,40.7],"knL":[27.3,154.8],"ftL":[29.7,279.6]},{"rootY":-17.1,"hips":[0,0],"chest":[-3.1,-77.1],"neck":[-3.1,-77.1],"head":[-0.1,-146.9],"shR":[-64.9,-108.4],"elR":[-95.1,4.1],"haR":[-65.6,-0.8],"shL":[60,-104],"elL":[62.1,-27.8],"haL":[61,10.1],"hipR":[-34.9,35.3],"knR":[-28.6,154.4],"ftR":[-23.1,276],"hipL":[27.9,41],"knL":[23.9,158.9],"ftL":[29.9,306.7]},{"rootY":-17.4,"hips":[0,0],"chest":[-1.6,-76.9],"neck":[-1.6,-76.9],"head":[2.4,-146.8],"shR":[-63.1,-109],"elR":[-95.1,2.4],"haR":[-63.4,2.4],"shL":[61.7,-103.1],"elL":[60.8,-24.6],"haL":[60.9,9.9],"hipR":[-36.3,34.2],"knR":[-23.5,162.9],"ftR":[-27.5,254.8],"hipL":[26.3,41.8],"knL":[21.6,166.9],"ftL":[28.5,322]},{"rootY":-13.9,"hips":[0,0],"chest":[-0.5,-77.1],"neck":[-0.5,-77.1],"head":[4.3,-146.7],"shR":[-61.5,-109.8],"elR":[-94.3,0.1],"haR":[-63.8,8.7],"shL":[63.3,-102.8],"elL":[61.3,-19.1],"haL":[60.9,11.1],"hipR":[-35.2,34.5],"knR":[-19,168.4],"ftR":[-29.3,229.3],"hipL":[27.4,41.5],"knL":[24,172.5],"ftL":[25.5,327.3]},{"rootY":-7.6,"hips":[0,0],"chest":[1,-77],"neck":[1,-77],"head":[6.2,-146.6],"shR":[-59.5,-110.6],"elR":[-92.4,-2.2],"haR":[-66.7,17.4],"shL":[65.3,-101.6],"elL":[65.1,-11],"haL":[61.9,12],"hipR":[-34.1,35.4],"knR":[-19.4,177.4],"ftR":[-29.4,206.2],"hipL":[28.7,40.3],"knL":[24.2,176.4],"ftL":[18.9,331.5]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-77],"neck":[2.3,-77],"head":[7.9,-146.5],"shR":[-58,-111.1],"elR":[-89.1,-4],"haR":[-70.4,26.1],"shL":[67,-101.1],"elL":[70.1,-2.4],"haL":[61.5,8.9],"hipR":[-33,35.8],"knR":[-26,183.5],"ftR":[-27.5,186.2],"hipL":[29.9,39.5],"knL":[23.5,176.9],"ftL":[12.6,329.8]},{"rootY":4.6,"hips":[0,0],"chest":[4.5,-76.3],"neck":[4.5,-76.3],"head":[10.9,-145.6],"shR":[-55.5,-111],"elR":[-81.6,-6.6],"haR":[-72.3,32.6],"shL":[69.6,-100.2],"elL":[76.1,6.1],"haL":[61.6,3.1],"hipR":[-29.9,38.6],"knR":[-33.9,187.8],"ftR":[-26.9,180.9],"hipL":[33.2,36.5],"knL":[22,177.9],"ftL":[11.1,323.6]},{"rootY":5.1,"hips":[0,0],"chest":[3.6,-76.1],"neck":[3.6,-76.1],"head":[10.1,-145.2],"shR":[-56.2,-110.9],"elR":[-77.5,-10.7],"haR":[-75.6,35.1],"shL":[69,-99.9],"elL":[78,10.2],"haL":[57.6,-5.1],"hipR":[-30.8,38.2],"knR":[-37.5,181.4],"ftR":[-27,188.6],"hipL":[32.2,37.4],"knL":[19.5,184.5],"ftL":[10.7,322.1]},{"rootY":0.8,"hips":[0,0],"chest":[3.1,-76],"neck":[3.1,-76],"head":[9.3,-145.2],"shR":[-56.3,-111],"elR":[-74,-14.5],"haR":[-75.8,33.6],"shL":[68.9,-99.6],"elL":[77.8,11.3],"haL":[54.6,-14.4],"hipR":[-30,39.1],"knR":[-37,171.7],"ftR":[-27.2,209],"hipL":[33,36.8],"knL":[18.7,187.6],"ftL":[10.8,318.1]},{"rootY":-7.4,"hips":[0,0],"chest":[3.2,-76.1],"neck":[3.2,-76.1],"head":[8.2,-145.5],"shR":[-56,-110.1],"elR":[-70.6,-17.4],"haR":[-75.6,32.4],"shL":[68.8,-100.5],"elL":[77.5,10.2],"haL":[50.9,-23.4],"hipR":[-29.3,39.5],"knR":[-33.7,163.5],"ftR":[-26.8,238.3],"hipL":[33.7,36.6],"knL":[20.7,187],"ftL":[13,313.5]},{"rootY":-15.9,"hips":[0,0],"chest":[3.4,-76.3],"neck":[3.4,-76.3],"head":[7.5,-145.9],"shR":[-55.6,-109.3],"elR":[-66.5,-20.9],"haR":[-74.4,30.5],"shL":[68.6,-101.5],"elL":[78,8.7],"haL":[48.2,-30.3],"hipR":[-29.8,39.3],"knR":[-29.2,158.1],"ftR":[-25.2,269.7],"hipL":[33.3,37.1],"knL":[22.9,183.6],"ftL":[17.4,308.7]},{"rootY":-22.4,"hips":[0,0],"chest":[2.6,-76.6],"neck":[2.6,-76.6],"head":[5.8,-146.3],"shR":[-56.3,-108.5],"elR":[-62.3,-24.4],"haR":[-72.9,28.4],"shL":[67.5,-102.7],"elL":[78.8,7.1],"haL":[45,-35.3],"hipR":[-30.5,39.2],"knR":[-27.5,156.3],"ftR":[-25.6,296.6],"hipL":[32.5,37.6],"knL":[24.7,175.5],"ftL":[20.4,301.7]},{"rootY":-27.4,"hips":[0,0],"chest":[0.9,-76.7],"neck":[0.9,-76.7],"head":[3.8,-146.5],"shR":[-57.6,-108],"elR":[-58.9,-27.5],"haR":[-71.6,26.5],"shL":[65.8,-102.7],"elL":[80.1,6.8],"haL":[42.8,-36.2],"hipR":[-30.4,39.6],"knR":[-26.7,160.4],"ftR":[-27.6,314.9],"hipL":[32.6,37.3],"knL":[28,161.5],"ftL":[23.3,288.7]},{"rootY":-27.9,"hips":[0,0],"chest":[0,-76.9],"neck":[0,-76.9],"head":[3,-146.8],"shR":[-58.6,-108.2],"elR":[-57.2,-28.8],"haR":[-70.3,24.7],"shL":[64.7,-103.3],"elL":[81.6,6.2],"haL":[42,-33.7],"hipR":[-29,40.6],"knR":[-24.2,166.3],"ftR":[-28,322.2],"hipL":[33.8,36],"knL":[24.8,162.1],"ftL":[23.1,267.9]},{"rootY":-25.2,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[1.7,-147.1],"shR":[-60.5,-108.1],"elR":[-59,-26.7],"haR":[-71.3,24.6],"shL":[62.9,-104.4],"elL":[82.3,5.1],"haL":[41.7,-27.9],"hipR":[-29.2,40.5],"knR":[-25.7,170.6],"ftR":[-24.4,324.8],"hipL":[33.5,35.8],"knL":[18.6,169.8],"ftL":[23.5,242.7]},{"rootY":-18.4,"hips":[0,0],"chest":[-2.4,-77.5],"neck":[-2.4,-77.5],"head":[0.5,-147.2],"shR":[-61.6,-108],"elR":[-63.9,-21.6],"haR":[-74,25.4],"shL":[61.9,-105.1],"elL":[83.1,3.4],"haL":[44,-19.2],"hipR":[-30.9,39.2],"knR":[-25.1,175.3],"ftR":[-17.3,329.8],"hipL":[31.6,36.7],"knL":[15.1,178.7],"ftL":[22.4,212.9]},{"rootY":-8.2,"hips":[0,0],"chest":[-2.6,-77.6],"neck":[-2.6,-77.6],"head":[-0.1,-147.4],"shR":[-62.1,-107.9],"elR":[-69.8,-14.5],"haR":[-76.8,24.8],"shL":[61.7,-105.1],"elL":[83.6,1.4],"haL":[48.4,-8.7],"hipR":[-31.8,38.2],"knR":[-24.5,177],"ftR":[-10.6,332.8],"hipL":[30.8,36.8],"knL":[20.7,185.6],"ftL":[21,183.2]},{"rootY":1.3,"hips":[0,0],"chest":[-2.3,-77.5],"neck":[-2.3,-77.5],"head":[-0.5,-147.3],"shR":[-62.2,-107.6],"elR":[-74.8,-6.2],"haR":[-77.9,22],"shL":[62,-105.1],"elL":[83.3,-1.3],"haL":[54.3,2.3],"hipR":[-33.1,36.7],"knR":[-20.6,177.1],"ftR":[-3.4,328.1],"hipL":[29.6,37.3],"knL":[33.3,189.1],"ftL":[21.2,163.9]},{"rootY":7.2,"hips":[0,0],"chest":[-3.2,-77.1],"neck":[-3.2,-77.1],"head":[-1.9,-146.8],"shR":[-63.8,-106.7],"elR":[-80.7,2],"haR":[-79.1,16.9],"shL":[60.8,-105.5],"elL":[79.7,-5.1],"haL":[58.5,12],"hipR":[-36.7,33.3],"knR":[-21.7,176.9],"ftR":[-3.3,320.3],"hipL":[25.5,40.7],"knL":[45.1,187.5],"ftL":[22.3,162.5]},{"rootY":8.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-0.7,-146.6],"shR":[-63.7,-106.1],"elR":[-82.9,6.8],"haR":[-76.6,7.9],"shL":[61.7,-106.3],"elL":[76.8,-9.8],"haL":[62.2,16.1],"hipR":[-36,34],"knR":[-20.2,180.9],"ftR":[-5,315.3],"hipL":[26.5,40.4],"knL":[43.6,176.2],"ftL":[23.3,175.7]},{"rootY":3.6,"hips":[0,0],"chest":[-1.9,-77],"neck":[-1.9,-77],"head":[-0.8,-146.7],"shR":[-64.1,-106.4],"elR":[-83.7,8.6],"haR":[-73.1,-3.4],"shL":[61.7,-105.8],"elL":[73.9,-12.2],"haL":[63.1,17.1],"hipR":[-37.2,32.9],"knR":[-20.9,181.7],"ftR":[-7.5,309.1],"hipL":[25.1,41.2],"knL":[36.2,164.2],"ftL":[23.4,201.2]}]},"shuffle":{"name":"shuffle","fps":30,"height":520,"groundY":326,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.8,-86.1],"neck":[-1.8,-86.1],"head":[-2.4,-158.8],"shR":[-80.8,-96.8],"elR":[-184.3,-82.3],"haR":[-254.1,-72.5],"shL":[77,-103.3],"elL":[180.6,-88.7],"haL":[250.6,-78.9],"hipR":[-28.7,33.1],"knR":[-26.2,174.4],"ftR":[-23.6,322.6],"hipL":[28.7,33.1],"knL":[26.1,179.9],"ftL":[23.6,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.5,-85.6],"neck":[-9.5,-85.6],"head":[0.8,-156.9],"shR":[16.2,-96.3],"elR":[13,8.1],"haR":[36.8,73.9],"shL":[-42,-103.2],"elL":[-30.7,0.8],"haL":[-8.9,67.6],"hipR":[26.9,36.6],"knR":[34.7,177.5],"ftR":[-21,313.3],"hipL":[12.7,32.6],"knL":[23.9,178.9],"ftL":[-28.3,315.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.7,-157],"shR":[16,-96.4],"elR":[12.8,8],"haR":[36.6,73.8],"shL":[-41.9,-103.1],"elL":[-38.3,1.4],"haL":[-13.9,67.5],"hipR":[27,36.4],"knR":[34.3,177.4],"ftR":[-21.2,313.3],"hipL":[12.7,32.7],"knL":[24,179],"ftL":[-28.5,315]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.6,-157],"shR":[15.6,-96.6],"elR":[12.7,7.8],"haR":[36.5,73.6],"shL":[-41.6,-102.9],"elL":[-38.9,1.6],"haL":[-14.3,67.8],"hipR":[26.9,36.3],"knR":[34,177.3],"ftR":[-21.3,313.3],"hipL":[12.9,32.8],"knL":[24.2,179.1],"ftL":[-28.6,315]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.6,-157],"shR":[15.5,-96.7],"elR":[12.7,7.7],"haR":[36.6,73.5],"shL":[-41.5,-102.8],"elL":[-38.5,1.7],"haL":[-13.8,67.8],"hipR":[26.9,36.2],"knR":[33.8,177.2],"ftR":[-21.2,313.4],"hipL":[13,32.9],"knL":[24.6,179.1],"ftL":[-28.6,315]},{"rootY":-0.2,"hips":[0,0],"chest":[-9.4,-85.6],"neck":[-9.4,-85.6],"head":[0.8,-157.1],"shR":[15.5,-96.8],"elR":[12.6,7.6],"haR":[37.3,73.1],"shL":[-41.2,-102.8],"elL":[-38.4,1.8],"haL":[-13.7,67.8],"hipR":[27,36.1],"knR":[33.8,177.1],"ftR":[-21.2,313.3],"hipL":[13.2,32.9],"knL":[24.7,179.1],"ftL":[-28.5,314.9]},{"rootY":-0.2,"hips":[0,0],"chest":[-9.5,-85.6],"neck":[-9.5,-85.6],"head":[0.7,-157],"shR":[15.4,-96.9],"elR":[12.4,7.6],"haR":[37.1,73],"shL":[-41.2,-102.7],"elL":[-38.1,1.8],"haL":[-13.5,67.9],"hipR":[26.9,36],"knR":[33.4,177.1],"ftR":[-21.2,313.4],"hipL":[13.2,33.1],"knL":[25,179.3],"ftL":[-28.6,314.9]},{"rootY":-0.4,"hips":[0,0],"chest":[-9.4,-85.7],"neck":[-9.4,-85.7],"head":[0.8,-157],"shR":[15.3,-96.9],"elR":[12.4,7.6],"haR":[37.2,73],"shL":[-40.9,-102.7],"elL":[-37.6,1.8],"haL":[-13.1,68],"hipR":[26.9,36],"knR":[33.2,177],"ftR":[-21.2,313.5],"hipL":[13.2,33.2],"knL":[25.1,179.4],"ftL":[-28.6,315.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-9.3,-85.7],"neck":[-9.3,-85.7],"head":[0.9,-157.1],"shR":[15.1,-96.8],"elR":[12.2,7.6],"haR":[37,73.1],"shL":[-40.6,-102.8],"elL":[-37.6,1.7],"haL":[-13.1,67.8],"hipR":[26.8,36],"knR":[33.1,177],"ftR":[-21.1,313.6],"hipL":[13.3,33.2],"knL":[25.2,179.4],"ftL":[-28.5,315]},{"rootY":-0.6,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1,-157.1],"shR":[15.3,-96.8],"elR":[12.5,7.6],"haR":[37.2,73.1],"shL":[-40.6,-102.9],"elL":[-37.3,1.7],"haL":[-12.8,67.8],"hipR":[26.6,36],"knR":[32.9,177.1],"ftR":[-21,313.8],"hipL":[13.3,33.3],"knL":[25.4,179.5],"ftL":[-28.5,315.1]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.1,-157.1],"shR":[15.2,-96.8],"elR":[12.5,7.7],"haR":[37.3,73.2],"shL":[-40.3,-103],"elL":[-36.9,1.6],"haL":[-12.5,67.8],"hipR":[26.5,36],"knR":[32.7,177],"ftR":[-20.9,313.9],"hipL":[13.3,33.5],"knL":[25.5,179.7],"ftL":[-28.5,315.2]},{"rootY":-0.9,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.3,-157.1],"shR":[15.3,-96.8],"elR":[12.8,7.7],"haR":[37.6,73.1],"shL":[-40.2,-102.9],"elL":[-37,1.6],"haL":[-12.7,67.8],"hipR":[26.4,36.1],"knR":[32.5,177.1],"ftR":[-20.9,314.1],"hipL":[13.3,33.6],"knL":[25.7,179.7],"ftL":[-28.4,315.2]},{"rootY":-1,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.3,-157],"shR":[15.2,-96.7],"elR":[12.6,7.7],"haR":[37.5,73.2],"shL":[-40.2,-103],"elL":[-36.8,1.5],"haL":[-12.6,67.7],"hipR":[26.3,36.1],"knR":[32.2,177.1],"ftR":[-20.9,314.2],"hipL":[13.3,33.7],"knL":[25.9,179.8],"ftL":[-28.4,315.2]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157],"shR":[14.8,-96.6],"elR":[12.3,7.9],"haR":[37.1,73.4],"shL":[-40,-103.1],"elL":[-36.9,1.4],"haL":[-12.5,67.6],"hipR":[26.3,36],"knR":[31.9,177],"ftR":[-21.1,314.2],"hipL":[13.3,33.7],"knL":[26,179.8],"ftL":[-28.6,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157],"shR":[14.9,-96.7],"elR":[12.2,7.8],"haR":[36.9,73.3],"shL":[-40,-103],"elL":[-37.3,1.5],"haL":[-12.8,67.7],"hipR":[26.3,35.9],"knR":[31.4,177],"ftR":[-21.4,314.2],"hipL":[13.3,33.8],"knL":[26.1,179.9],"ftL":[-28.8,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-85.7],"neck":[-9.3,-85.7],"head":[1.1,-157],"shR":[14.8,-96.7],"elR":[12,7.8],"haR":[36.1,73.5],"shL":[-40.2,-103],"elL":[-37.5,1.5],"haL":[-12.7,67.6],"hipR":[26.3,35.8],"knR":[31,176.9],"ftR":[-21.8,314.2],"hipL":[13.3,34],"knL":[26,180.1],"ftL":[-29.2,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157.1],"shR":[14.9,-96.7],"elR":[12.1,7.8],"haR":[36.3,73.5],"shL":[-40,-103.1],"elL":[-37.2,1.5],"haL":[-12.7,67.7],"hipR":[26.4,35.8],"knR":[30.9,176.9],"ftR":[-21.8,314.2],"hipL":[13.4,33.9],"knL":[26.3,180],"ftL":[-29.2,314.9]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.2,-157.1],"shR":[14.8,-96.8],"elR":[12,7.6],"haR":[36.1,73.4],"shL":[-40,-102.9],"elL":[-37.3,1.6],"haL":[-12.7,67.8],"hipR":[26.4,35.8],"knR":[30.6,176.9],"ftR":[-21.9,314.3],"hipL":[13.3,34],"knL":[26.3,180.1],"ftL":[-29.3,314.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.6,-157.1],"shR":[15.1,-96.9],"elR":[12.3,7.6],"haR":[36.5,73.3],"shL":[-39.7,-102.9],"elL":[-37.1,1.7],"haL":[-12.6,67.8],"hipR":[26.3,35.8],"knR":[30.4,176.9],"ftR":[-21.9,314.3],"hipL":[13.3,34],"knL":[26.6,180.1],"ftL":[-29.1,315]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.5,-157.1],"shR":[15.1,-96.8],"elR":[12.3,7.6],"haR":[36.6,73.3],"shL":[-39.7,-103],"elL":[-37.2,1.6],"haL":[-12.9,67.8],"hipR":[26.3,35.7],"knR":[30.1,176.8],"ftR":[-22.1,314.3],"hipL":[13.4,34.1],"knL":[26.6,180.2],"ftL":[-29.4,314.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.6,-157],"shR":[15,-96.8],"elR":[12.1,7.6],"haR":[36.4,73.4],"shL":[-39.5,-103],"elL":[-37.3,1.6],"haL":[-12.9,67.8],"hipR":[26.3,35.7],"knR":[29.8,176.8],"ftR":[-22.4,314.3],"hipL":[13.5,34.1],"knL":[26.7,180.2],"ftL":[-29.5,314.8]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.8,-157.1],"shR":[14.9,-96.8],"elR":[11.9,7.6],"haR":[36.2,73.3],"shL":[-39.1,-103],"elL":[-36.8,1.6],"haL":[-12.3,67.7],"hipR":[26.2,35.7],"knR":[29.6,176.9],"ftR":[-22.2,314.5],"hipL":[13.5,34.1],"knL":[26.9,180.2],"ftL":[-29.4,314.8]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.8,-157.1],"shR":[14.5,-96.6],"elR":[11.3,7.8],"haR":[35.4,73.6],"shL":[-38.7,-103.2],"elL":[-36.4,1.3],"haL":[-12.2,67.6],"hipR":[26.2,35.7],"knR":[29.4,176.8],"ftR":[-22.3,314.5],"hipL":[13.6,34.1],"knL":[27.1,180.2],"ftL":[-29.5,314.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.9,-157.1],"shR":[14.4,-96.5],"elR":[11.1,7.9],"haR":[35.1,73.7],"shL":[-38.6,-103.3],"elL":[-36.5,1.2],"haL":[-12.2,67.5],"hipR":[26.3,35.6],"knR":[29,176.8],"ftR":[-22.6,314.5],"hipL":[13.6,34.1],"knL":[27.3,180.1],"ftL":[-29.5,314.6]},{"rootY":-1.4,"hips":[0,0],"chest":[-8.7,-85.7],"neck":[-8.7,-85.7],"head":[2,-157.1],"shR":[14.6,-96.7],"elR":[11.3,7.7],"haR":[35.3,73.5],"shL":[-38.5,-103.2],"elL":[-36.4,1.4],"haL":[-11.9,67.6],"hipR":[26.2,35.6],"knR":[28.8,176.8],"ftR":[-22.5,314.7],"hipL":[13.6,34.2],"knL":[27.4,180.2],"ftL":[-29.6,314.6]},{"rootY":-1.5,"hips":[0,0],"chest":[-8.5,-85.8],"neck":[-8.5,-85.8],"head":[2.2,-157.1],"shR":[14.8,-96.8],"elR":[11.4,7.7],"haR":[35.5,73.4],"shL":[-38.4,-103.1],"elL":[-36.2,1.4],"haL":[-11.8,67.7],"hipR":[26.1,35.6],"knR":[28.5,176.7],"ftR":[-22.4,314.8],"hipL":[13.6,34.4],"knL":[27.6,180.4],"ftL":[-29.6,314.6]},{"rootY":-1.6,"hips":[0,0],"chest":[-8.6,-85.7],"neck":[-8.6,-85.7],"head":[2.3,-157],"shR":[14.6,-96.5],"elR":[11.2,7.9],"haR":[35.5,73.7],"shL":[-38.3,-103.5],"elL":[-36.2,1.1],"haL":[-11.8,67.3],"hipR":[26,35.5],"knR":[28.1,176.7],"ftR":[-22.5,314.9],"hipL":[13.6,34.5],"knL":[27.7,180.5],"ftL":[-29.7,314.6]},{"rootY":-1.7,"hips":[0,0],"chest":[-8.5,-85.8],"neck":[-8.5,-85.8],"head":[2.4,-157.1],"shR":[14.6,-96.5],"elR":[10.9,7.9],"haR":[35.2,73.6],"shL":[-38.1,-103.4],"elL":[-36.2,1.1],"haL":[-11.8,67.4],"hipR":[26,35.6],"knR":[27.8,176.7],"ftR":[-22.8,314.9],"hipL":[13.5,34.5],"knL":[27.6,180.5],"ftL":[-29.8,314.6]},{"rootY":-1.7,"hips":[0,0],"chest":[-8.7,-85.7],"neck":[-8.7,-85.7],"head":[1.4,-157.3],"shR":[14.1,-96.4],"elR":[10.5,8],"haR":[34.7,73.8],"shL":[-37.9,-103.5],"elL":[-36.1,1],"haL":[-11.9,67.3],"hipR":[25.7,35.6],"knR":[27.7,176.7],"ftR":[-22.4,315.2],"hipL":[13.8,34.6],"knL":[27.7,180.6],"ftL":[-30.2,314.5]},{"rootY":-1.6,"hips":[0,0],"chest":[-8.3,-85.8],"neck":[-8.3,-85.8],"head":[0.4,-157.8],"shR":[13.5,-96.1],"elR":[10.2,8.3],"haR":[34.6,74],"shL":[-36.4,-103.9],"elL":[-34.9,0.7],"haL":[-11,67.1],"hipR":[25.6,35.5],"knR":[27.9,176.6],"ftR":[-21.7,315.3],"hipL":[14.4,34.5],"knL":[28.4,180.5],"ftL":[-29.8,314.3]},{"rootY":-1.8,"hips":[0,0],"chest":[-7.3,-85.9],"neck":[-7.3,-85.9],"head":[0.9,-158.2],"shR":[12.6,-95.7],"elR":[9.4,8.8],"haR":[34.4,74.2],"shL":[-33.2,-104.6],"elL":[-31.8,-0.1],"haL":[-8.8,66.7],"hipR":[25.1,35.5],"knR":[28.2,176.5],"ftR":[-20.5,315.5],"hipL":[15.2,34.5],"knL":[29.3,180.5],"ftL":[-29,314.2]},{"rootY":-1.9,"hips":[0,0],"chest":[-5.2,-86],"neck":[-5.2,-86],"head":[3.9,-158.3],"shR":[11.7,-96],"elR":[8.3,8.5],"haR":[34.1,73.7],"shL":[-27.9,-104.7],"elL":[-30.6,-0.2],"haL":[-8.7,66.9],"hipR":[24.6,35.3],"knR":[28.4,176.3],"ftR":[-19.7,315.5],"hipL":[15.9,34.6],"knL":[30.3,180.6],"ftL":[-28.1,314.3]},{"rootY":-1.9,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.5,-158],"shR":[11.4,-96.5],"elR":[6.6,7.9],"haR":[32.9,73],"shL":[-22.1,-104.6],"elL":[-29.1,-0.3],"haL":[-7,66.8],"hipR":[23.9,35.2],"knR":[29.2,176.1],"ftR":[-17.9,315.7],"hipL":[16.7,34.7],"knL":[31.7,180.7],"ftL":[-26.7,314.4]},{"rootY":-1.9,"hips":[0,0],"chest":[0.5,-86.1],"neck":[0.5,-86.1],"head":[13.6,-157.7],"shR":[12.4,-97.1],"elR":[4.8,7.1],"haR":[31.3,72.2],"shL":[-15.7,-104.1],"elL":[-26.6,-0.2],"haL":[-4.9,67],"hipR":[23.2,34.9],"knR":[29.5,175.7],"ftR":[-16.2,315.8],"hipL":[17.9,34.9],"knL":[33.5,180.8],"ftL":[-25.2,314.3]},{"rootY":-2,"hips":[0,0],"chest":[4.2,-86],"neck":[4.2,-86],"head":[18.5,-157.4],"shR":[14.1,-97.5],"elR":[2.5,6.2],"haR":[28.2,71.7],"shL":[-8.8,-103.5],"elL":[-22.6,0.1],"haL":[-3.4,68.1],"hipR":[22.5,34.7],"knR":[30,175.3],"ftR":[-14.3,315.9],"hipL":[18.6,35.2],"knL":[35.9,180.9],"ftL":[-23.2,314.3]},{"rootY":-2.1,"hips":[0,0],"chest":[7.6,-85.7],"neck":[7.6,-85.7],"head":[22.8,-156.9],"shR":[15.6,-97.7],"elR":[0.9,5.6],"haR":[24,72.2],"shL":[-2.5,-102.8],"elL":[-19.4,0.4],"haL":[-1.4,68.6],"hipR":[21.1,34.6],"knR":[30.2,175],"ftR":[-12.2,316.2],"hipL":[19.6,35.5],"knL":[38.2,181.1],"ftL":[-21.7,314.1]},{"rootY":-1.7,"hips":[0,0],"chest":[10.7,-85.3],"neck":[10.7,-85.3],"head":[26.7,-156.3],"shR":[16.9,-97.9],"elR":[-0.8,4.8],"haR":[20,72.2],"shL":[3.3,-101.8],"elL":[-16.1,0.9],"haL":[0.3,69.5],"hipR":[20.5,34.1],"knR":[30.1,174.3],"ftR":[-11.1,315.9],"hipL":[20.3,35.9],"knL":[40.7,181.2],"ftL":[-20.2,313.8]},{"rootY":-1.7,"hips":[0,0],"chest":[12.7,-84.9],"neck":[12.7,-84.9],"head":[29.6,-155.7],"shR":[17.1,-98.6],"elR":[-2.6,3.7],"haR":[16,71.7],"shL":[7.9,-100.4],"elL":[-14.2,1.8],"haL":[1.5,70.5],"hipR":[19.4,34.7],"knR":[30.8,174.5],"ftR":[-10.6,315.9],"hipL":[20.3,36],"knL":[41.4,181.2],"ftL":[-19.4,313.6]},{"rootY":-1.1,"hips":[0,0],"chest":[14.4,-84.5],"neck":[14.4,-84.5],"head":[31.7,-155.2],"shR":[17,-99.6],"elR":[-4.5,2.2],"haR":[13.4,70.3],"shL":[11.8,-98.6],"elL":[-11.7,3.3],"haL":[3.5,72],"hipR":[18.7,34.3],"knR":[30.8,173.9],"ftR":[-10.2,315.5],"hipL":[20.9,36.3],"knL":[43,181.4],"ftL":[-19.2,313.2]},{"rootY":-0.9,"hips":[0,0],"chest":[15.5,-84.2],"neck":[15.5,-84.2],"head":[32.9,-154.7],"shR":[16.8,-100.4],"elR":[-6.1,0.9],"haR":[11.7,69],"shL":[14.7,-97.1],"elL":[-8.4,4.8],"haL":[6.1,73.6],"hipR":[18.1,34],"knR":[30.4,173.3],"ftR":[-10.1,314.9],"hipL":[21.7,36.4],"knL":[43.8,181.5],"ftL":[-19.3,312.8]},{"rootY":-0.2,"hips":[0,0],"chest":[15.9,-84],"neck":[15.9,-84],"head":[33.1,-154.5],"shR":[16.2,-101.2],"elR":[-8.1,-0.3],"haR":[10.5,67.5],"shL":[16.2,-95.9],"elL":[-6.7,6],"haL":[7.9,74.7],"hipR":[18.6,34.1],"knR":[32.4,172.9],"ftR":[-10.4,313.8],"hipL":[22,36],"knL":[43,181.2],"ftL":[-20.1,312.4]},{"rootY":-0.1,"hips":[0,0],"chest":[16.9,-83.7],"neck":[16.9,-83.7],"head":[34,-154.3],"shR":[16.3,-101.6],"elR":[-8.9,-1.1],"haR":[11.1,66.3],"shL":[18.4,-95],"elL":[-4.3,7],"haL":[11.3,75.3],"hipR":[18.4,34],"knR":[38.4,171.3],"ftR":[-7.9,311.2],"hipL":[22.6,35.7],"knL":[42.4,181],"ftL":[-20.1,312.5]},{"rootY":0.1,"hips":[0,0],"chest":[18.5,-83.3],"neck":[18.5,-83.3],"head":[35.8,-153.9],"shR":[17,-101.4],"elR":[-8.8,-1.2],"haR":[13.4,65.4],"shL":[21.1,-94.3],"elL":[-3,7.4],"haL":[14.8,74.7],"hipR":[18.6,34.4],"knR":[50.2,168.4],"ftR":[-2.7,306.2],"hipL":[23.3,34.9],"knL":[41.9,180.2],"ftL":[-19.6,312]},{"rootY":0.9,"hips":[0,0],"chest":[20.6,-82.8],"neck":[20.6,-82.8],"head":[38.6,-153.3],"shR":[18.9,-100.6],"elR":[-6.9,-0.5],"haR":[18,65.1],"shL":[23.8,-94.1],"elL":[-1.4,7.4],"haL":[18.6,73.7],"hipR":[18.5,34.5],"knR":[62.2,163.8],"ftR":[8.4,301.4],"hipL":[24,34.4],"knL":[43,179.7],"ftL":[-18,311.6]},{"rootY":0.9,"hips":[0,0],"chest":[21.8,-82.5],"neck":[21.8,-82.5],"head":[40.4,-152.9],"shR":[21.1,-99.8],"elR":[-6.1,0],"haR":[21.2,64.5],"shL":[24.2,-94.3],"elL":[-0.4,7.4],"haL":[20.9,72.8],"hipR":[19.3,34.3],"knR":[68.9,160.9],"ftR":[25.8,301.9],"hipL":[23.7,34.3],"knL":[42.3,179.7],"ftL":[-18.4,311.4]},{"rootY":1.1,"hips":[0,0],"chest":[22.6,-82.2],"neck":[22.6,-82.2],"head":[41.9,-152.6],"shR":[22.8,-98.9],"elR":[-4.8,0.8],"haR":[24.4,64.4],"shL":[24.6,-94.7],"elL":[-1,6.8],"haL":[21.5,71.8],"hipR":[19.5,34.1],"knR":[71.6,159.6],"ftR":[45.5,303.7],"hipL":[23.6,34.5],"knL":[41.4,179.9],"ftL":[-20,311.3]},{"rootY":1.3,"hips":[0,0],"chest":[23.1,-82.1],"neck":[23.1,-82.1],"head":[43.7,-152.1],"shR":[24.5,-98.4],"elR":[-2.3,1.5],"haR":[28.3,64.5],"shL":[24.3,-94.8],"elL":[-2.2,6.4],"haL":[20.5,71.5],"hipR":[20.1,34.1],"knR":[73.1,159.3],"ftR":[62.3,304],"hipL":[23.3,34.4],"knL":[40.2,180],"ftL":[-21.9,311]},{"rootY":2,"hips":[0,0],"chest":[23.4,-82],"neck":[23.4,-82],"head":[44.8,-151.8],"shR":[26.2,-97.9],"elR":[-0.5,2],"haR":[32.3,64],"shL":[23.3,-95.1],"elL":[-4,5.9],"haL":[18.3,71.4],"hipR":[20.9,34.2],"knR":[74.3,159.6],"ftR":[72.2,303.6],"hipL":[22.7,34.1],"knL":[38.2,179.9],"ftL":[-24.9,310.4]},{"rootY":2.5,"hips":[0,0],"chest":[24.1,-81.9],"neck":[24.1,-81.9],"head":[45.9,-151.5],"shR":[27.7,-96.9],"elR":[1,3],"haR":[36.4,63.6],"shL":[23.2,-95.8],"elL":[-5.2,4.9],"haL":[16.8,71],"hipR":[21,34.4],"knR":[74.5,160.2],"ftR":[75.3,303.8],"hipL":[22.7,33.9],"knL":[37.1,179.9],"ftL":[-27.6,309.7]},{"rootY":3.3,"hips":[0,0],"chest":[24.7,-81.8],"neck":[24.7,-81.8],"head":[47.4,-151.1],"shR":[29.2,-95.8],"elR":[2.5,4.3],"haR":[40.1,63.7],"shL":[23.4,-96.7],"elL":[-5.7,3.8],"haL":[15.8,70.7],"hipR":[21.2,35.1],"knR":[75,161.2],"ftR":[72.1,305.5],"hipL":[21.9,33.6],"knL":[34.6,179.8],"ftL":[-31.5,308.9]},{"rootY":3.4,"hips":[0,0],"chest":[25.9,-81.5],"neck":[25.9,-81.5],"head":[49.5,-150.7],"shR":[31.1,-94.2],"elR":[3.5,5.8],"haR":[42.6,64.3],"shL":[24.3,-97.7],"elL":[-5.9,2.4],"haL":[15.3,69.8],"hipR":[21.7,35.6],"knR":[76.4,162],"ftR":[69.1,306.8],"hipL":[21.1,33.2],"knL":[31.5,179.6],"ftL":[-35.7,308.4]},{"rootY":3.9,"hips":[0,0],"chest":[27.4,-81.1],"neck":[27.4,-81.1],"head":[52,-150],"shR":[34,-92.4],"elR":[6.1,7.6],"haR":[45.9,65.7],"shL":[24.8,-98.8],"elL":[-6.1,1.2],"haL":[14.9,68.7],"hipR":[21.8,36.2],"knR":[78.8,162],"ftR":[65.7,307.3],"hipL":[20.3,33],"knL":[28.4,179.4],"ftL":[-40.1,307.8]},{"rootY":4.9,"hips":[0,0],"chest":[28.9,-80.7],"neck":[28.9,-80.7],"head":[54.1,-149.3],"shR":[36,-90.6],"elR":[8.2,9.6],"haR":[48.3,67.5],"shL":[26.2,-99.6],"elL":[-4.6,0.4],"haL":[16.1,67.8],"hipR":[21.7,36.7],"knR":[81.7,161.5],"ftR":[62.2,306.7],"hipL":[19.8,32.7],"knL":[25.5,179.2],"ftL":[-44.6,306.8]},{"rootY":5.9,"hips":[0,0],"chest":[29.8,-80.4],"neck":[29.8,-80.4],"head":[55.7,-148.8],"shR":[36.9,-88.9],"elR":[8.9,11.3],"haR":[49,69.3],"shL":[27.4,-100.6],"elL":[-3.8,-0.8],"haL":[17.5,66.4],"hipR":[22.1,37.4],"knR":[85.3,161],"ftR":[58,305.6],"hipL":[19,31.9],"knL":[21.2,178.4],"ftL":[-49.7,305.8]},{"rootY":7.6,"hips":[0,0],"chest":[30.6,-80.1],"neck":[30.6,-80.1],"head":[56.9,-148.4],"shR":[38.9,-87.4],"elR":[10.6,12.9],"haR":[50.5,71],"shL":[27.3,-101.6],"elL":[-2.7,-1.4],"haL":[19.5,65.2],"hipR":[22.4,37.9],"knR":[88.4,160.3],"ftR":[53.7,303.8],"hipL":[18.5,31.3],"knL":[17.8,177.6],"ftL":[-54.6,304.2]},{"rootY":9.6,"hips":[0,0],"chest":[31.6,-79.7],"neck":[31.6,-79.7],"head":[58,-148],"shR":[39.9,-85.6],"elR":[11,14.5],"haR":[50.3,73],"shL":[28.6,-102.5],"elL":[-0.9,-2.4],"haL":[22.9,63.6],"hipR":[22.6,38.3],"knR":[90.8,160],"ftR":[49.4,302.1],"hipL":[17.6,31],"knL":[14.8,176.8],"ftL":[-59.7,302.2]},{"rootY":11.7,"hips":[0,0],"chest":[32.8,-79.2],"neck":[32.8,-79.2],"head":[59.5,-147.3],"shR":[41.8,-83.9],"elR":[12.5,16.2],"haR":[50.9,75.2],"shL":[29.3,-103.2],"elL":[-1.5,-3.6],"haL":[24.3,61.6],"hipR":[22.6,38.8],"knR":[92.9,159.6],"ftR":[45.2,300],"hipL":[17.1,30.4],"knL":[11.6,175.6],"ftL":[-64.5,300.1]},{"rootY":13.6,"hips":[0,0],"chest":[34.1,-78.7],"neck":[34.1,-78.7],"head":[61.1,-146.6],"shR":[43.2,-82.2],"elR":[13,17.6],"haR":[50.4,77.3],"shL":[31,-103.6],"elL":[-2.6,-5.2],"haL":[24.5,59.7],"hipR":[22.1,39.4],"knR":[93.4,160],"ftR":[41.2,298.8],"hipL":[16.6,30.1],"knL":[9.1,174.9],"ftL":[-68.9,298.1]},{"rootY":14.8,"hips":[0,0],"chest":[35.6,-78],"neck":[35.6,-78],"head":[62.8,-145.7],"shR":[44.8,-80.8],"elR":[13.2,18.7],"haR":[49.3,79.3],"shL":[32.8,-103.6],"elL":[-4.6,-6.9],"haL":[22.7,58],"hipR":[21.9,39.7],"knR":[92.7,160.9],"ftR":[36,297.9],"hipL":[16.3,30.1],"knL":[7.5,174.1],"ftL":[-73.8,295.1]},{"rootY":15.1,"hips":[0,0],"chest":[37.2,-77.2],"neck":[37.2,-77.2],"head":[65.3,-144.5],"shR":[46.3,-79.1],"elR":[14,20.1],"haR":[48.4,81.7],"shL":[34.8,-103.6],"elL":[-6,-8.5],"haL":[19.1,57.2],"hipR":[22.2,39.5],"knR":[91.1,162.3],"ftR":[31.6,298],"hipL":[16,30.2],"knL":[11.5,173.5],"ftL":[-76.2,289.8]},{"rootY":14.1,"hips":[0,0],"chest":[38.4,-76.5],"neck":[38.4,-76.5],"head":[67.7,-143.2],"shR":[47.5,-77.4],"elR":[14.9,21.8],"haR":[47.2,84.4],"shL":[36.4,-103.8],"elL":[-7,-9.9],"haL":[14.9,56.8],"hipR":[22.5,39.3],"knR":[88.3,164.1],"ftR":[27.1,298.9],"hipL":[15.9,30.4],"knL":[21.4,172.3],"ftL":[-74,282.6]},{"rootY":13.2,"hips":[0,0],"chest":[39.1,-75.9],"neck":[39.1,-75.9],"head":[69,-142.4],"shR":[49.1,-76.2],"elR":[16.5,22.9],"haR":[47.2,86.3],"shL":[36.5,-103.8],"elL":[-9.5,-11.3],"haL":[7.2,56.7],"hipR":[22.7,39.2],"knR":[85.2,165.8],"ftR":[22.8,300],"hipL":[16.1,30.3],"knL":[34.8,169.6],"ftL":[-66.3,274.8]},{"rootY":12.4,"hips":[0,0],"chest":[39,-75.9],"neck":[39,-75.9],"head":[68.9,-142.1],"shR":[48.8,-75.1],"elR":[16,24],"haR":[45.7,87.9],"shL":[36.4,-104.8],"elL":[-12.9,-14.2],"haL":[-1,54.5],"hipR":[22.9,38.9],"knR":[82.2,167.1],"ftR":[18.3,300.5],"hipL":[16.4,30.4],"knL":[48.9,166.2],"ftL":[-52.1,271.3]},{"rootY":11.5,"hips":[0,0],"chest":[39,-75.7],"neck":[39,-75.7],"head":[68.9,-141.9],"shR":[49.7,-73.7],"elR":[17.2,25.4],"haR":[46.1,89.6],"shL":[35.6,-105.8],"elL":[-15,-15.9],"haL":[-7.7,53.4],"hipR":[23.1,38.6],"knR":[78.9,168.4],"ftR":[14,301.3],"hipL":[16.8,30.4],"knL":[62.7,162.3],"ftL":[-29.6,275]},{"rootY":10.7,"hips":[0,0],"chest":[38.7,-75.8],"neck":[38.7,-75.8],"head":[68.3,-141.8],"shR":[49.5,-72.8],"elR":[18,26.7],"haR":[46.3,91.3],"shL":[35.1,-106.7],"elL":[-17.1,-17.8],"haL":[-13,51.9],"hipR":[23.1,38.4],"knR":[75.2,169.7],"ftR":[9.8,302.2],"hipL":[17.4,30.6],"knL":[74.1,159.1],"ftL":[-2.1,283.5]},{"rootY":9.5,"hips":[0,0],"chest":[37.9,-76.1],"neck":[37.9,-76.1],"head":[67.5,-141.9],"shR":[48.3,-72.9],"elR":[17.6,26.9],"haR":[45.6,91.6],"shL":[34.6,-107.3],"elL":[-18.7,-18.8],"haL":[-16.1,50.9],"hipR":[22.9,38.1],"knR":[70.8,171],"ftR":[5,303.3],"hipL":[18.2,30.6],"knL":[82.1,157],"ftL":[27.6,292.2]},{"rootY":8.9,"hips":[0,0],"chest":[36.9,-76.4],"neck":[36.9,-76.4],"head":[66.2,-142.3],"shR":[47.3,-73.7],"elR":[17.3,26.4],"haR":[45.3,91],"shL":[33.4,-107.3],"elL":[-19.8,-18.6],"haL":[-17.2,51.1],"hipR":[22.7,37.6],"knR":[66.4,171.9],"ftR":[0.3,304],"hipL":[19.3,31],"knL":[88.2,155.8],"ftL":[57.8,297.5]},{"rootY":8.1,"hips":[0,0],"chest":[35.3,-77.2],"neck":[35.3,-77.2],"head":[64,-143.2],"shR":[44.1,-75],"elR":[14.4,25.1],"haR":[42.5,89.8],"shL":[32.8,-107.5],"elL":[-19.3,-18.1],"haL":[-15.7,51.6],"hipR":[22.4,37.3],"knR":[61.7,173],"ftR":[-5.3,304.6],"hipL":[20.4,31],"knL":[91,155.6],"ftL":[81.5,299.3]},{"rootY":8.3,"hips":[0,0],"chest":[33.8,-77.8],"neck":[33.8,-77.8],"head":[61.7,-144.4],"shR":[41.2,-76.5],"elR":[11.5,23.7],"haR":[39.7,88.3],"shL":[32.5,-107.5],"elL":[-17.5,-16.8],"haL":[-11.6,52.8],"hipR":[21.7,36.8],"knR":[57.2,173.6],"ftR":[-11.2,304.6],"hipL":[21.5,31.4],"knL":[93.4,155.8],"ftL":[97.8,298.8]},{"rootY":8.1,"hips":[0,0],"chest":[33.3,-78.1],"neck":[33.3,-78.1],"head":[59.9,-145.6],"shR":[38.9,-77.9],"elR":[8.7,22.1],"haR":[36.6,86.9],"shL":[33.4,-106.8],"elL":[-14.1,-14.8],"haL":[-5.3,54.6],"hipR":[21.2,36.8],"knR":[51.9,174.7],"ftR":[-17.7,305.2],"hipL":[22.3,31.4],"knL":[94.9,155.9],"ftL":[103.6,298.5]},{"rootY":8.6,"hips":[0,0],"chest":[33.8,-78],"neck":[33.8,-78],"head":[60.4,-146.1],"shR":[37,-79.3],"elR":[5.6,20.4],"haR":[32.3,85.6],"shL":[36.4,-105.2],"elL":[-9.5,-12.4],"haL":[1.4,56.9],"hipR":[20,36.1],"knR":[46.5,174.8],"ftR":[-24.1,304.8],"hipL":[23.4,32.4],"knL":[97.1,156.6],"ftL":[99.4,299.7]},{"rootY":8.6,"hips":[0,0],"chest":[34.4,-77.8],"neck":[34.4,-77.8],"head":[62.2,-145.7],"shR":[34.2,-80.9],"elR":[1.8,18.4],"haR":[26.9,84.2],"shL":[41.1,-103.1],"elL":[-5.6,-10.7],"haL":[5.3,58.9],"hipR":[18,36],"knR":[40.9,175.3],"ftR":[-31.4,304.5],"hipL":[24.5,33],"knL":[98.3,157.6],"ftL":[93.1,301]},{"rootY":9,"hips":[0,0],"chest":[36.6,-76.8],"neck":[36.6,-76.8],"head":[65.9,-144.1],"shR":[32.1,-81.2],"elR":[-2,17.5],"haR":[22,83.5],"shL":[48.1,-100.7],"elL":[0.3,-9],"haL":[9.2,61],"hipR":[15.8,36.3],"knR":[35.1,175.8],"ftR":[-38.7,304.3],"hipL":[25.1,33.7],"knL":[100.4,158],"ftL":[87.1,301.7]},{"rootY":9,"hips":[0,0],"chest":[38,-76],"neck":[38,-76],"head":[69.5,-142.2],"shR":[29.1,-81.6],"elR":[-4.9,17.1],"haR":[17.8,83.3],"shL":[54.5,-98.4],"elL":[5.2,-7.8],"haL":[12.1,62.5],"hipR":[14.2,36.2],"knR":[28.6,175.8],"ftR":[-45.8,304],"hipL":[25.8,34.1],"knL":[102.8,158],"ftL":[80.7,301.1]},{"rootY":9.2,"hips":[0,0],"chest":[39.5,-75],"neck":[39.5,-75],"head":[72.2,-140.7],"shR":[26.8,-81.5],"elR":[-8.8,16.7],"haR":[13.4,82.8],"shL":[60.4,-96.4],"elL":[10.6,-6.6],"haL":[15.3,63.9],"hipR":[11.7,36.1],"knR":[22,175.5],"ftR":[-52.3,303.8],"hipL":[26.7,34.8],"knL":[104.7,158.4],"ftL":[74.8,300.4]},{"rootY":10.4,"hips":[0,0],"chest":[40.8,-74.2],"neck":[40.8,-74.2],"head":[74.4,-139.4],"shR":[24,-81.3],"elR":[-12.3,16.6],"haR":[9.6,82.7],"shL":[66.1,-94.9],"elL":[16.3,-5.7],"haL":[20.6,64.8],"hipR":[10,35.9],"knR":[16.7,174.9],"ftR":[-58.6,302.6],"hipL":[27,35.4],"knL":[106.6,158.3],"ftL":[69.8,298.9]},{"rootY":11.4,"hips":[0,0],"chest":[41.5,-73.7],"neck":[41.5,-73.7],"head":[75.1,-138.9],"shR":[22.7,-81.7],"elR":[-14.1,16],"haR":[7.1,82.2],"shL":[68.9,-93.4],"elL":[19.8,-4.2],"haL":[24.6,66.3],"hipR":[8.5,35.5],"knR":[11.1,174.2],"ftR":[-64.8,301.5],"hipL":[27.4,36],"knL":[107.6,158.7],"ftL":[64,297.5]},{"rootY":12.5,"hips":[0,0],"chest":[41.6,-73.7],"neck":[41.6,-73.7],"head":[76,-138.4],"shR":[19.9,-82.8],"elR":[-17.3,14.8],"haR":[3.8,81],"shL":[71.9,-92.3],"elL":[24.1,-2.6],"haL":[29.5,67.9],"hipR":[7.1,35.2],"knR":[6.2,173.4],"ftR":[-69.7,300.6],"hipL":[27.6,36.5],"knL":[107.9,159.3],"ftL":[59.7,296.7]},{"rootY":13.1,"hips":[0,0],"chest":[42.2,-73.4],"neck":[42.2,-73.4],"head":[75.3,-138.8],"shR":[17.5,-85.4],"elR":[-19.8,12.2],"haR":[1.1,78.5],"shL":[75.9,-89.1],"elL":[29.1,0.9],"haL":[35.2,71.3],"hipR":[6,34.9],"knR":[0.8,172.6],"ftR":[-74.9,299.9],"hipL":[27.6,37],"knL":[107.5,160.1],"ftL":[54.7,295.8]},{"rootY":13.6,"hips":[0,0],"chest":[42.1,-73.3],"neck":[42.1,-73.3],"head":[73.8,-139.4],"shR":[20.1,-84.1],"elR":[-17.1,13.5],"haR":[3.3,80],"shL":[73.4,-90],"elL":[27.6,0.5],"haL":[33.9,70.9],"hipR":[5.3,34.7],"knR":[-3.9,172],"ftR":[-78.7,299.7],"hipL":[27.4,37.5],"knL":[107,160.8],"ftL":[51.2,295.4]},{"rootY":13.7,"hips":[0,0],"chest":[43,-72.9],"neck":[43,-72.9],"head":[70.8,-140.3],"shR":[20.3,-84.1],"elR":[-17.3,13.4],"haR":[3.4,79.8],"shL":[74.7,-89.4],"elL":[28.8,1.2],"haL":[34.9,71.6],"hipR":[4.4,34.4],"knR":[-8.3,171.5],"ftR":[-81.5,299.8],"hipL":[27.2,37.9],"knL":[106.3,161.5],"ftL":[48.6,295.3]},{"rootY":13.4,"hips":[0,0],"chest":[42.9,-72.9],"neck":[42.9,-72.9],"head":[69.8,-139.1],"shR":[21.5,-84.7],"elR":[-17,12.4],"haR":[4.6,78.7],"shL":[73.8,-88.7],"elL":[28.1,2.2],"haL":[33.7,72.7],"hipR":[4,34.5],"knR":[-12.7,171.2],"ftR":[-84.6,300.1],"hipL":[27,38.1],"knL":[105.1,162.3],"ftL":[45.8,295.5]},{"rootY":13.5,"hips":[0,0],"chest":[43.7,-72.7],"neck":[43.7,-72.7],"head":[71.9,-136.9],"shR":[24.7,-84.2],"elR":[-16,12.1],"haR":[5.6,78.5],"shL":[71.9,-88.8],"elL":[25.3,2.1],"haL":[31,72.5],"hipR":[4.1,34.2],"knR":[-16.3,170.7],"ftR":[-86.8,300.1],"hipL":[26.4,38.6],"knL":[104,163],"ftL":[44,295.8]},{"rootY":13.9,"hips":[0,0],"chest":[43,-73.2],"neck":[43,-73.2],"head":[72.8,-136.2],"shR":[28.2,-85.6],"elR":[-13.8,10],"haR":[6.8,77],"shL":[67.5,-88.3],"elL":[20.5,2.9],"haL":[26.1,73.4],"hipR":[4.9,34.4],"knR":[-19.7,170.3],"ftR":[-89.9,299.9],"hipL":[25.3,38.8],"knL":[102.8,163.4],"ftL":[41.7,295.8]},{"rootY":14.5,"hips":[0,0],"chest":[43.2,-73.3],"neck":[43.2,-73.3],"head":[73.9,-136],"shR":[32.4,-86],"elR":[-10.8,9.1],"haR":[9.3,76.3],"shL":[63.7,-88.2],"elL":[16.3,3.6],"haL":[22.3,74],"hipR":[5.9,34.1],"knR":[-22.2,169.6],"ftR":[-92.3,299.1],"hipL":[24.6,39],"knL":[102.3,163.5],"ftL":[39.6,295.3]},{"rootY":15.1,"hips":[0,0],"chest":[43.2,-73.5],"neck":[43.2,-73.5],"head":[74.3,-136.4],"shR":[36.8,-86.4],"elR":[-7.5,8],"haR":[12.1,75.4],"shL":[59.2,-88.3],"elL":[11.1,3.7],"haL":[17.2,74.1],"hipR":[7,33.8],"knR":[-25.4,168.7],"ftR":[-95.1,298.3],"hipL":[23.8,39.3],"knL":[101.8,163.6],"ftL":[37.2,294.4]},{"rootY":15.7,"hips":[0,0],"chest":[43.6,-73.5],"neck":[43.6,-73.5],"head":[75.3,-136.5],"shR":[41.3,-86.3],"elR":[-1.6,8.5],"haR":[17.5,76.1],"shL":[55.5,-88.4],"elL":[6.4,3.5],"haL":[12.3,73.9],"hipR":[8.2,33.7],"knR":[-29.6,167.5],"ftR":[-98.2,297.7],"hipL":[22.7,39.5],"knL":[101,163.6],"ftL":[35.2,293.9]},{"rootY":15.9,"hips":[0,0],"chest":[43,-74],"neck":[43,-74],"head":[75,-137.2],"shR":[44.2,-86.9],"elR":[3,8.5],"haR":[22.9,75.8],"shL":[51.5,-88.7],"elL":[2,3.2],"haL":[6.6,73.7],"hipR":[9.1,33.7],"knR":[-35.8,165.6],"ftR":[-101.7,297.1],"hipL":[22,39.7],"knL":[99.6,164.2],"ftL":[32.2,293.6]},{"rootY":16.3,"hips":[0,0],"chest":[43.3,-73.9],"neck":[43.3,-73.9],"head":[73.4,-138.8],"shR":[46.8,-87.1],"elR":[7.8,8.9],"haR":[29.1,75.8],"shL":[49.3,-88.4],"elL":[-0.6,3.3],"haL":[3.1,73.9],"hipR":[9.6,34],"knR":[-45.1,162.5],"ftR":[-105.1,296.4],"hipL":[21,39.8],"knL":[98,164.6],"ftL":[29.2,293.3]},{"rootY":16.7,"hips":[0,0],"chest":[43.2,-74],"neck":[43.2,-74],"head":[69.6,-141.8],"shR":[48,-87.6],"elR":[12.6,9.5],"haR":[35.7,75.9],"shL":[47.8,-88.2],"elL":[-2,3.7],"haL":[0.9,74.4],"hipR":[10,34],"knR":[-47.8,161.3],"ftR":[-108.4,294.8],"hipL":[20.2,40.1],"knL":[97.1,165],"ftL":[26.3,292.6]},{"rootY":17.1,"hips":[0,0],"chest":[43.2,-74],"neck":[43.2,-74],"head":[68,-142.5],"shR":[48.3,-88],"elR":[16.3,10],"haR":[41.5,75.7],"shL":[47.4,-87.7],"elL":[-2.8,4],"haL":[-0.3,74.7],"hipR":[10.2,33.9],"knR":[-49.1,160.5],"ftR":[-111.4,293.4],"hipL":[19.8,40.2],"knL":[96.2,165.4],"ftL":[23.8,292.1]},{"rootY":17.4,"hips":[0,0],"chest":[43.5,-73.8],"neck":[43.5,-73.8],"head":[69.2,-141.3],"shR":[47.7,-88.2],"elR":[18.9,10.7],"haR":[47.3,75.2],"shL":[48.8,-87.1],"elL":[-2.6,4],"haL":[-0.2,74.7],"hipR":[9.7,33.9],"knR":[-50.5,160.1],"ftR":[-113.7,292.6],"hipL":[19.4,40.5],"knL":[95.7,165.8],"ftL":[22,291.8]},{"rootY":17.7,"hips":[0,0],"chest":[44.3,-73.4],"neck":[44.3,-73.4],"head":[71,-140.2],"shR":[45.8,-87.9],"elR":[19.2,11.9],"haR":[50.9,74.9],"shL":[52.2,-86.7],"elL":[-0.2,3.9],"haL":[1,74.6],"hipR":[8.9,33.9],"knR":[-51.8,159.8],"ftR":[-115.6,292],"hipL":[19.7,40.6],"knL":[95.2,166.4],"ftL":[20.4,291.7]},{"rootY":17.5,"hips":[0,0],"chest":[44.7,-73.2],"neck":[44.7,-73.2],"head":[72.1,-139.7],"shR":[43.9,-87.2],"elR":[19.6,13.5],"haR":[53.9,75.1],"shL":[55.1,-86.9],"elL":[2.5,3.5],"haL":[3,74.1],"hipR":[8,34],"knR":[-53.1,159.8],"ftR":[-117.2,291.8],"hipL":[19.8,40.7],"knL":[94.3,167.1],"ftL":[18.5,291.9]},{"rootY":17.2,"hips":[0,0],"chest":[44.9,-73],"neck":[44.9,-73],"head":[72.7,-139.7],"shR":[43,-86.4],"elR":[19.5,14.7],"haR":[54.8,75.7],"shL":[56.7,-87.2],"elL":[4.8,3.4],"haL":[5.5,74.1],"hipR":[7.4,34.1],"knR":[-53.9,159.7],"ftR":[-118.3,291.5],"hipL":[19.8,40.8],"knL":[93.5,167.7],"ftL":[17.4,292.1]},{"rootY":17.1,"hips":[0,0],"chest":[44.4,-73.4],"neck":[44.4,-73.4],"head":[72.3,-140.4],"shR":[41.6,-86.3],"elR":[18.3,15],"haR":[53.4,76.1],"shL":[57.1,-88],"elL":[5.7,2.8],"haL":[7.5,73.5],"hipR":[6.9,34.1],"knR":[-54.9,159.3],"ftR":[-119.8,290.8],"hipL":[19.9,40.9],"knL":[92.5,168.4],"ftL":[15.7,292.5]},{"rootY":17.3,"hips":[0,0],"chest":[43.8,-73.8],"neck":[43.8,-73.8],"head":[70.7,-141.7],"shR":[40.3,-86.3],"elR":[15.8,14.7],"haR":[49.6,76.6],"shL":[56.6,-88.9],"elL":[6,2.3],"haL":[9.3,72.9],"hipR":[7.2,34.1],"knR":[-55.9,158.4],"ftR":[-122.1,288.9],"hipL":[20.1,40.7],"knL":[90.8,169.2],"ftL":[12,292.1]},{"rootY":17.1,"hips":[0,0],"chest":[42.9,-74.3],"neck":[42.9,-74.3],"head":[69,-142.5],"shR":[39.8,-87],"elR":[12.7,13.2],"haR":[44,76.4],"shL":[55.1,-89.3],"elL":[5.9,2.8],"haL":[10.2,73.3],"hipR":[7.9,33.8],"knR":[-50.4,159.7],"ftR":[-124,286.3],"hipL":[20.6,40.5],"knL":[88.3,170.6],"ftL":[8.1,292.5]},{"rootY":15.6,"hips":[0,0],"chest":[42.9,-74.3],"neck":[42.9,-74.3],"head":[69.3,-142.2],"shR":[40.3,-87.7],"elR":[9.8,11.5],"haR":[36.8,76.4],"shL":[54.4,-88.7],"elL":[6.2,4],"haL":[11.6,74.4],"hipR":[8.7,33.9],"knR":[-26.6,165.9],"ftR":[-120.6,279.4],"hipL":[21.7,39.8],"knL":[84.4,172.2],"ftL":[4.6,294.3]},{"rootY":13.3,"hips":[0,0],"chest":[43.3,-74],"neck":[43.3,-74],"head":[70.3,-141.7],"shR":[41.2,-88.2],"elR":[8.2,10.2],"haR":[31.1,76.2],"shL":[54.3,-87.6],"elL":[6.8,5.5],"haL":[14,75.7],"hipR":[9.9,34.2],"knR":[-0.2,168],"ftR":[-108.3,269.2],"hipL":[22.7,38.8],"knL":[79.6,173.6],"ftL":[1.7,297]},{"rootY":11.8,"hips":[0,0],"chest":[42.7,-74.2],"neck":[42.7,-74.2],"head":[70.2,-141.7],"shR":[40.3,-89],"elR":[5.5,8.6],"haR":[25.1,75.3],"shL":[53.9,-87.3],"elL":[7.7,6.4],"haL":[17.5,76.2],"hipR":[11.5,34.5],"knR":[26.2,165.8],"ftR":[-87.2,261.3],"hipL":[23.5,37.7],"knL":[75.7,174.2],"ftL":[-1.2,298.3]},{"rootY":11.6,"hips":[0,0],"chest":[42.4,-74.3],"neck":[42.4,-74.3],"head":[69.9,-141.8],"shR":[40,-89.3],"elR":[4.1,7.9],"haR":[21.8,74.7],"shL":[53.2,-87.3],"elL":[8.6,7.2],"haL":[20.6,76.7],"hipR":[12.9,34.7],"knR":[49.8,160.9],"ftR":[-56.1,264.3],"hipL":[23.6,37.1],"knL":[72.9,174.7],"ftL":[-3.9,298.8]},{"rootY":11.5,"hips":[0,0],"chest":[41.4,-74.8],"neck":[41.4,-74.8],"head":[68.6,-142.5],"shR":[39.8,-89.8],"elR":[3.3,7.2],"haR":[19.9,74.1],"shL":[51.4,-87.8],"elL":[7.3,7],"haL":[20.7,76.2],"hipR":[13.9,34.6],"knR":[67.8,155.3],"ftR":[-19,275.4],"hipL":[24.1,36.4],"knL":[69.8,175.3],"ftL":[-7.9,298.8]},{"rootY":11.4,"hips":[0,0],"chest":[40.7,-75.2],"neck":[40.7,-75.2],"head":[66.9,-143.3],"shR":[38.8,-89.8],"elR":[3,7.6],"haR":[18.9,74.5],"shL":[50.4,-88.8],"elL":[6.9,6.2],"haL":[20,75.5],"hipR":[15,34.9],"knR":[80.4,151.8],"ftR":[19.9,287.1],"hipL":[24,35.8],"knL":[65.5,176],"ftL":[-12.8,299.1]},{"rootY":10.1,"hips":[0,0],"chest":[39,-76.1],"neck":[39,-76.1],"head":[64.6,-144.4],"shR":[36.9,-89.8],"elR":[0.9,7.5],"haR":[18.3,74.2],"shL":[48.3,-90.7],"elL":[5.1,4.5],"haL":[17.4,74],"hipR":[16.5,34.9],"knR":[87.1,151],"ftR":[55.3,294.9],"hipL":[23.6,35.4],"knL":[59.4,177.3],"ftL":[-18.6,300.6]},{"rootY":8.8,"hips":[0,0],"chest":[37.8,-76.7],"neck":[37.8,-76.7],"head":[62.1,-145.6],"shR":[37.4,-89.6],"elR":[2.1,8],"haR":[20,74.8],"shL":[44.9,-92.3],"elL":[1.7,2.9],"haL":[13.3,72.5],"hipR":[16.8,35.2],"knR":[89.2,151.5],"ftR":[83.5,297.6],"hipL":[23.3,35.1],"knL":[52.8,178.6],"ftL":[-25.2,301.9]},{"rootY":7.4,"hips":[0,0],"chest":[36.5,-77.3],"neck":[36.5,-77.3],"head":[59.6,-146.7],"shR":[38.5,-89.1],"elR":[4.5,9.1],"haR":[23.6,75.8],"shL":[41,-94],"elL":[-2.1,1.2],"haL":[9.4,70.9],"hipR":[18.4,35.5],"knR":[90.7,153.1],"ftR":[96.7,298.7],"hipL":[22,34.8],"knL":[44.2,179.7],"ftL":[-33.4,303.2]},{"rootY":7.4,"hips":[0,0],"chest":[35.5,-77.9],"neck":[35.5,-77.9],"head":[57.6,-147.4],"shR":[40,-88.4],"elR":[6.2,10],"haR":[25.9,76.9],"shL":[37.2,-95.9],"elL":[-6,-0.7],"haL":[5,69.1],"hipR":[19.4,35.8],"knR":[91.2,154.4],"ftR":[92,300.7],"hipL":[21.4,34.3],"knL":[36.2,180.2],"ftL":[-42.8,302.9]},{"rootY":7.3,"hips":[0,0],"chest":[35.6,-77.8],"neck":[35.6,-77.8],"head":[57.5,-147.5],"shR":[42.4,-87.2],"elR":[8.9,11.4],"haR":[29.2,78.4],"shL":[35.3,-97.1],"elL":[-8.7,-2.2],"haL":[0.8,67.8],"hipR":[20.2,36.3],"knR":[92.3,155.6],"ftR":[84.2,302.2],"hipL":[20.1,34],"knL":[28.6,180.5],"ftL":[-51.2,302.7]},{"rootY":7.5,"hips":[0,0],"chest":[36.4,-77.5],"neck":[36.4,-77.5],"head":[58.6,-147],"shR":[44.8,-85.6],"elR":[11.5,13],"haR":[32.5,80],"shL":[34.6,-98],"elL":[-10.6,-3.7],"haL":[-3.3,66.5],"hipR":[21.2,36.7],"knR":[93.7,156.5],"ftR":[76.5,302.7],"hipL":[18.6,33.7],"knL":[20.4,180.4],"ftL":[-60.6,301.7]},{"rootY":7.5,"hips":[0,0],"chest":[37.4,-77.1],"neck":[37.4,-77.1],"head":[60.2,-146.4],"shR":[47.5,-83.6],"elR":[14.5,15],"haR":[36.2,81.9],"shL":[34.3,-98.9],"elL":[-10.9,-4.6],"haL":[-6,65.7],"hipR":[21.8,37.4],"knR":[94.8,157.5],"ftR":[69.3,302.7],"hipL":[17,33.3],"knL":[13.1,179.8],"ftL":[-68.4,300.8]},{"rootY":7.9,"hips":[0,0],"chest":[38.6,-76.5],"neck":[38.6,-76.5],"head":[61.9,-145.5],"shR":[50.3,-81.6],"elR":[17.1,16.9],"haR":[38.8,83.9],"shL":[34.1,-99.8],"elL":[-13.1,-6.4],"haL":[-8.9,64],"hipR":[21.9,38.1],"knR":[94.9,158.5],"ftR":[62.2,302.6],"hipL":[15.6,33.1],"knL":[6.6,179.2],"ftL":[-75.8,299.4]},{"rootY":8.7,"hips":[0,0],"chest":[39.5,-76.1],"neck":[39.5,-76.1],"head":[63.7,-144.7],"shR":[52.7,-79.6],"elR":[19.2,18.9],"haR":[40.4,86.1],"shL":[33.8,-100.9],"elL":[-15.2,-8.5],"haL":[-11.5,61.9],"hipR":[22,38.6],"knR":[94.9,159.4],"ftR":[55.6,302],"hipL":[14.7,32.6],"knL":[0.9,178.1],"ftL":[-82.4,297.5]},{"rootY":9.5,"hips":[0,0],"chest":[40.5,-75.6],"neck":[40.5,-75.6],"head":[65.1,-144],"shR":[54.4,-77.5],"elR":[20,20.7],"haR":[40.9,88],"shL":[34.3,-101.9],"elL":[-16.2,-10.3],"haL":[-13.1,60.1],"hipR":[21.8,39.3],"knR":[94.6,160.3],"ftR":[49.7,301.3],"hipL":[13.8,32.1],"knL":[-4.7,176.8],"ftL":[-88.5,295.6]},{"rootY":10.7,"hips":[0,0],"chest":[41.3,-75.2],"neck":[41.3,-75.2],"head":[66.6,-143.2],"shR":[56.1,-75.8],"elR":[20.6,22.1],"haR":[38.9,90.2],"shL":[34.3,-102.7],"elL":[-17.4,-11.9],"haL":[-14.7,58.5],"hipR":[21.8,39.8],"knR":[94.5,160.9],"ftR":[43.8,300],"hipL":[12.9,31.8],"knL":[-9.4,175.5],"ftL":[-94.2,293.5]},{"rootY":13.2,"hips":[0,0],"chest":[41.5,-75],"neck":[41.5,-75],"head":[67.4,-142.8],"shR":[56.6,-74.6],"elR":[20.7,23.3],"haR":[40,91.1],"shL":[34.5,-103.5],"elL":[-18,-13.2],"haL":[-15.9,57.1],"hipR":[21.9,40.1],"knR":[94.1,161.5],"ftR":[37.9,298.6],"hipL":[12.3,31.5],"knL":[-11.5,174.5],"ftL":[-99.9,289.6]},{"rootY":13.2,"hips":[0,0],"chest":[41.8,-74.8],"neck":[41.8,-74.8],"head":[67.8,-142.5],"shR":[56.8,-73.3],"elR":[20.1,24.4],"haR":[38.5,92.4],"shL":[35.2,-104.2],"elL":[-17.7,-14.3],"haL":[-16.6,56],"hipR":[21.9,40.1],"knR":[91.6,162.9],"ftR":[32.6,298.9],"hipL":[12.2,31.6],"knL":[-8.3,174.5],"ftL":[-102.2,285.1]},{"rootY":11.4,"hips":[0,0],"chest":[42.5,-74.3],"neck":[42.5,-74.3],"head":[68.4,-142.3],"shR":[57,-71.9],"elR":[20.1,25.7],"haR":[38.1,93.8],"shL":[36.5,-104.5],"elL":[-17,-15],"haL":[-16.4,55.1],"hipR":[22,40],"knR":[87.6,164.9],"ftR":[27.7,300.6],"hipL":[12.2,31.6],"knL":[2,174.7],"ftL":[-99.9,278.5]},{"rootY":9.6,"hips":[0,0],"chest":[43.4,-73.7],"neck":[43.4,-73.7],"head":[69.4,-141.8],"shR":[57.6,-70.4],"elR":[20.2,27.1],"haR":[39.1,94.9],"shL":[37.7,-104.7],"elL":[-16.3,-15.7],"haL":[-15.9,54.4],"hipR":[22.4,39.5],"knR":[83.4,166.7],"ftR":[23.5,302.4],"hipL":[12.7,31.8],"knL":[19.5,173.8],"ftL":[-90.6,269.6]},{"rootY":8.6,"hips":[0,0],"chest":[43.9,-73.2],"neck":[43.9,-73.2],"head":[70,-141.2],"shR":[57,-69.1],"elR":[19.7,28.5],"haR":[38.1,96.4],"shL":[39.5,-105],"elL":[-15.2,-16.5],"haL":[-14.7,53.5],"hipR":[22.6,39.2],"knR":[80.3,167.9],"ftR":[20.1,303.4],"hipL":[13.3,31.8],"knL":[38,170.4],"ftL":[-74.9,262.3]},{"rootY":8,"hips":[0,0],"chest":[44.3,-72.8],"neck":[44.3,-72.8],"head":[70.7,-140.6],"shR":[56.4,-67.7],"elR":[19.4,30],"haR":[40,97.3],"shL":[40.9,-105.4],"elL":[-14.2,-17.4],"haL":[-13.2,52.5],"hipR":[22.7,39],"knR":[78.3,168.7],"ftR":[16.9,303.5],"hipL":[14.2,31.7],"knL":[55.5,164.9],"ftL":[-51.8,261.9]},{"rootY":8.2,"hips":[0,0],"chest":[44.6,-72.4],"neck":[44.6,-72.4],"head":[71.4,-139.8],"shR":[56.5,-66.4],"elR":[20.2,31.6],"haR":[41.2,98.8],"shL":[41.5,-105.8],"elL":[-13.9,-18.3],"haL":[-11.8,51.5],"hipR":[22.8,38.7],"knR":[77.1,169],"ftR":[14.3,303.1],"hipL":[15,31.7],"knL":[71.5,158.3],"ftL":[-22.6,268]},{"rootY":8.6,"hips":[0,0],"chest":[44.7,-72.1],"neck":[44.7,-72.1],"head":[72.4,-139.1],"shR":[56,-65.3],"elR":[19.9,32.7],"haR":[41.3,99.7],"shL":[42.3,-106.2],"elL":[-13.5,-19.2],"haL":[-9.7,50.2],"hipR":[22.8,38.6],"knR":[75.9,169.4],"ftR":[11.2,302.4],"hipL":[15.9,31.3],"knL":[83.7,152.7],"ftL":[9.2,277.5]},{"rootY":9.5,"hips":[0,0],"chest":[44.6,-71.9],"neck":[44.6,-71.9],"head":[73.5,-138.2],"shR":[55.2,-64.4],"elR":[19.5,33.8],"haR":[41.9,100.5],"shL":[43,-106.6],"elL":[-12.9,-20.1],"haL":[-6.3,48.9],"hipR":[22.6,38.4],"knR":[74.7,169.7],"ftR":[7.8,301.5],"hipL":[17,31.3],"knL":[92.3,149.1],"ftL":[40.8,285.6]},{"rootY":10.2,"hips":[0,0],"chest":[43.6,-72.2],"neck":[43.6,-72.2],"head":[73.1,-138.1],"shR":[52.8,-64.6],"elR":[17.3,33.7],"haR":[40,100.3],"shL":[43.6,-106.9],"elL":[-12.2,-20.8],"haL":[-2.3,47.7],"hipR":[22,38.3],"knR":[73.3,169.9],"ftR":[4.8,300.8],"hipL":[18.1,31.3],"knL":[97.3,147.8],"ftL":[69.6,290.6]},{"rootY":10.6,"hips":[0,0],"chest":[42.9,-72.3],"neck":[42.9,-72.3],"head":[73,-137.7],"shR":[50.6,-64.8],"elR":[15.5,33.6],"haR":[38.5,100.2],"shL":[44.1,-107],"elL":[-10.7,-20.7],"haL":[1.5,47.4],"hipR":[21.6,38],"knR":[71.7,170],"ftR":[1.7,299.7],"hipL":[19.1,31.5],"knL":[98.7,148.4],"ftL":[89.4,292.5]},{"rootY":10.5,"hips":[0,0],"chest":[42,-72.8],"neck":[42,-72.8],"head":[72.5,-137.5],"shR":[47.1,-65.7],"elR":[12.7,33],"haR":[35.7,99.6],"shL":[45.4,-107.2],"elL":[-7.6,-20.1],"haL":[5.5,47.9],"hipR":[20.6,37.8],"knR":[68.8,170.4],"ftR":[-1.2,299.9],"hipL":[20.5,31.7],"knL":[98.2,150],"ftL":[100,292.7]},{"rootY":10.1,"hips":[0,0],"chest":[40.8,-73.3],"neck":[40.8,-73.3],"head":[71.7,-137.6],"shR":[43.8,-67.6],"elR":[9.8,31.2],"haR":[32.6,97.9],"shL":[46.3,-106.4],"elL":[-4.8,-18.6],"haL":[8.5,49.5],"hipR":[19.9,37.7],"knR":[64.7,171.5],"ftR":[-6.4,300.7],"hipL":[21.7,31.7],"knL":[97.4,151.1],"ftL":[102.4,292.5]},{"rootY":9.9,"hips":[0,0],"chest":[40.7,-73.5],"neck":[40.7,-73.5],"head":[71.7,-137.8],"shR":[43.8,-69.2],"elR":[8,29],"haR":[30.2,95.9],"shL":[46.1,-105.3],"elL":[-3.4,-16.5],"haL":[10.4,51.6],"hipR":[20.5,37.6],"knR":[61.3,172.6],"ftR":[-12.3,300.8],"hipL":[21.5,31.4],"knL":[95.4,151.3],"ftL":[98.4,292.9]},{"rootY":10.1,"hips":[0,0],"chest":[41.3,-73.5],"neck":[41.3,-73.5],"head":[72.6,-137.7],"shR":[45.2,-70.4],"elR":[7.6,27.1],"haR":[28.2,94.4],"shL":[46.1,-104.1],"elL":[-3.4,-14.7],"haL":[11.3,53.3],"hipR":[20.3,37.4],"knR":[57.8,173.3],"ftR":[-17.3,300.8],"hipL":[20.8,32.3],"knL":[94.9,151.4],"ftL":[93,293.3]},{"rootY":10.5,"hips":[0,0],"chest":[42.5,-73.3],"neck":[42.5,-73.3],"head":[74,-137.7],"shR":[48,-71.6],"elR":[8.5,25],"haR":[26.8,92.9],"shL":[45.9,-102.5],"elL":[-4.2,-12.8],"haL":[10.3,55.4],"hipR":[20.7,37],"knR":[53.5,174.1],"ftR":[-24.1,300.4],"hipL":[20.1,32.8],"knL":[94.3,151.6],"ftL":[86.3,294.2]},{"rootY":11.3,"hips":[0,0],"chest":[44.1,-72.7],"neck":[44.1,-72.7],"head":[76.6,-136.8],"shR":[52.6,-72.2],"elR":[11.1,23.3],"haR":[27.5,91.5],"shL":[45.1,-100.6],"elL":[-6.7,-11.3],"haL":[6.5,57.3],"hipR":[20.8,36.8],"knR":[49,174.7],"ftR":[-30.7,299.7],"hipL":[19.1,33.6],"knL":[94.2,151.9],"ftL":[80.3,295.4]},{"rootY":12.4,"hips":[0,0],"chest":[45.3,-72.3],"neck":[45.3,-72.3],"head":[78.8,-136.1],"shR":[56.6,-73.2],"elR":[14.4,21.5],"haR":[29,90],"shL":[43.8,-98.7],"elL":[-9.6,-9.9],"haL":[1.5,59.3],"hipR":[22.1,36.4],"knR":[43.4,175.3],"ftR":[-39,298.3],"hipL":[17.8,33.9],"knL":[93.7,151.7],"ftL":[73.1,295.5]},{"rootY":13.8,"hips":[0,0],"chest":[46.1,-72],"neck":[46.1,-72],"head":[80.4,-135.6],"shR":[60.7,-74.6],"elR":[18.4,19.6],"haR":[32.8,88.1],"shL":[41.9,-96.7],"elL":[-13.9,-8.7],"haL":[-4.3,60.9],"hipR":[21.8,36.3],"knR":[37.4,175.5],"ftR":[-46.7,296.8],"hipL":[17.3,34.6],"knL":[96.1,151.2],"ftL":[68.1,294.3]},{"rootY":15.4,"hips":[0,0],"chest":[46.1,-72],"neck":[46.1,-72],"head":[80.7,-135.5],"shR":[63.7,-76.2],"elR":[23.4,18.5],"haR":[38.3,87],"shL":[38.9,-95.1],"elL":[-17.8,-7.4],"haL":[-10.2,62.5],"hipR":[21.7,35.8],"knR":[30.3,175.1],"ftR":[-55.5,294.5],"hipL":[17.2,35.2],"knL":[97.6,152.2],"ftL":[60.8,293.5]},{"rootY":16.4,"hips":[0,0],"chest":[45.3,-72.4],"neck":[45.3,-72.4],"head":[79.3,-136.4],"shR":[65.7,-78.1],"elR":[26.6,16.7],"haR":[43.6,84.9],"shL":[35.4,-93.9],"elL":[-20.9,-5.8],"haL":[-15,64.5],"hipR":[21.9,35.4],"knR":[23.5,174.4],"ftR":[-63.9,291.6],"hipL":[16.7,35.8],"knL":[96.8,154.3],"ftL":[52.2,293.1]},{"rootY":15.4,"hips":[0,0],"chest":[45,-72.3],"neck":[45,-72.3],"head":[77,-137.4],"shR":[67.2,-80.6],"elR":[29.7,14.6],"haR":[49.4,82.2],"shL":[33,-91.4],"elL":[-23.2,-3.1],"haL":[-18.3,67.3],"hipR":[21.9,35.2],"knR":[19.5,173.7],"ftR":[-70.8,287.5],"hipL":[16.4,36.2],"knL":[93.4,157.6],"ftL":[43.5,294.4]},{"rootY":13.5,"hips":[0,0],"chest":[44.6,-72.3],"neck":[44.6,-72.3],"head":[74.7,-138],"shR":[68.1,-82.9],"elR":[29.4,11.6],"haR":[52.3,78.3],"shL":[31,-89],"elL":[-24.2,-0.2],"haL":[-20.2,70.3],"hipR":[21.9,35.2],"knR":[24.3,173.2],"ftR":[-73,281],"hipL":[15.7,36.6],"knL":[88.9,161.1],"ftL":[35.8,296.4]},{"rootY":10.4,"hips":[0,0],"chest":[44,-72.3],"neck":[44,-72.3],"head":[72.3,-138.5],"shR":[67.8,-84.9],"elR":[28.3,9],"haR":[54.3,74.5],"shL":[29.8,-87],"elL":[-24.5,2.3],"haL":[-20.4,72.8],"hipR":[22,35],"knR":[33.9,172.3],"ftR":[-69.5,275.2],"hipL":[16,36.6],"knL":[83.8,165],"ftL":[28.9,299.3]},{"rootY":8.7,"hips":[0,0],"chest":[43.6,-72.3],"neck":[43.6,-72.3],"head":[70.3,-138.9],"shR":[66.7,-86.1],"elR":[27,7.7],"haR":[55.6,72.1],"shL":[29.8,-86],"elL":[-23.4,4],"haL":[-17.7,74.5],"hipR":[22.2,35.1],"knR":[44.7,170.7],"ftR":[-61,272.5],"hipL":[16,36.4],"knL":[79.6,167.7],"ftL":[23.6,301.4]},{"rootY":7.8,"hips":[0,0],"chest":[43.6,-72.2],"neck":[43.6,-72.2],"head":[68.6,-139.3],"shR":[64.9,-87.1],"elR":[24.9,6.5],"haR":[54.5,70.4],"shL":[31.6,-84.7],"elL":[-20.3,6],"haL":[-11.9,76.2],"hipR":[21.9,34.9],"knR":[56.1,168.3],"ftR":[-43.9,276.2],"hipL":[16.4,36.6],"knL":[76.9,169.9],"ftL":[18.4,302.5]},{"rootY":7.3,"hips":[0,0],"chest":[43.4,-72.4],"neck":[43.4,-72.4],"head":[66.9,-140.2],"shR":[61.9,-88.6],"elR":[21.6,5.1],"haR":[50.2,69.5],"shL":[33.8,-83.8],"elL":[-16.6,7.8],"haL":[-4.2,77.4],"hipR":[21.3,34.7],"knR":[66.5,164.8],"ftR":[-20.1,284],"hipL":[17.5,36.5],"knL":[74.4,171.6],"ftL":[12.9,302.8]},{"rootY":7.5,"hips":[0,0],"chest":[43.2,-72.7],"neck":[43.2,-72.7],"head":[65.4,-141.2],"shR":[58,-89.8],"elR":[15.6,3.3],"haR":[42.1,68.4],"shL":[37,-83.4],"elL":[-12.3,8.9],"haL":[7,76.9],"hipR":[20.7,35],"knR":[76,160.8],"ftR":[9.4,292],"hipL":[18.4,36.1],"knL":[71.4,172.9],"ftL":[6.9,302.6]},{"rootY":7.1,"hips":[0,0],"chest":[41.7,-73.8],"neck":[41.7,-73.8],"head":[62.3,-143],"shR":[53.1,-90.9],"elR":[8.3,0.9],"haR":[32.9,66.4],"shL":[38.2,-84.6],"elL":[-9.4,8.6],"haL":[20.2,72.7],"hipR":[20.4,34.6],"knR":[82.5,157.2],"ftR":[40.1,297.6],"hipL":[19.6,36],"knL":[68.2,174.4],"ftL":[0.2,302.3]},{"rootY":7.1,"hips":[0,0],"chest":[39.9,-74.9],"neck":[39.9,-74.9],"head":[57.8,-145],"shR":[48.2,-92.3],"elR":[-0.4,-2.2],"haR":[24,63.2],"shL":[38.8,-85.7],"elL":[-4.9,9.2],"haL":[34.5,67.4],"hipR":[20.5,34.4],"knR":[87.1,154.8],"ftR":[68.4,299.5],"hipL":[20.3,35.6],"knL":[63.9,175.8],"ftL":[-7,302.1]},{"rootY":6.9,"hips":[0,0],"chest":[37.7,-76.2],"neck":[37.7,-76.2],"head":[52.7,-147.2],"shR":[43.4,-93.4],"elR":[-6.2,-3.4],"haR":[17.4,62.2],"shL":[38,-87.6],"elL":[0.5,9.8],"haL":[46.2,62.8],"hipR":[20.5,34.2],"knR":[89.1,153.5],"ftR":[91.1,298.8],"hipL":[21.3,35.3],"knL":[58.7,177.1],"ftL":[-15.2,301.9]},{"rootY":6.6,"hips":[0,0],"chest":[35.3,-77.5],"neck":[35.3,-77.5],"head":[47.7,-149.1],"shR":[39.3,-94.1],"elR":[-9.6,-3.3],"haR":[13.1,62.6],"shL":[36.3,-89.7],"elL":[4.5,9.6],"haL":[53.1,59.5],"hipR":[21.1,34.4],"knR":[91.2,153.2],"ftR":[105.2,297.3],"hipL":[21.1,34.8],"knL":[53.1,178],"ftL":[-22.8,301.7]},{"rootY":7.9,"hips":[0,0],"chest":[34.7,-78.1],"neck":[34.7,-78.1],"head":[44.8,-150.1],"shR":[36.8,-94],"elR":[-10.5,-1.8],"haR":[12,64.2],"shL":[36.7,-91],"elL":[8.5,9.3],"haL":[57.6,58.4],"hipR":[21.4,34.8],"knR":[93.8,152.4],"ftR":[108.4,296.6],"hipL":[21.1,34.3],"knL":[48,178.5],"ftL":[-30.6,300.5]},{"rootY":9.3,"hips":[0,0],"chest":[36.2,-77.6],"neck":[36.2,-77.6],"head":[44.5,-150.1],"shR":[36.8,-92.7],"elR":[-11.8,-0.8],"haR":[13.2,64.5],"shL":[39.6,-91.5],"elL":[10.7,8.2],"haL":[59.4,57.6],"hipR":[21.6,35.2],"knR":[96.7,151.4],"ftR":[103.8,297.1],"hipL":[21.1,33.7],"knL":[44,178.6],"ftL":[-37.4,298.9]},{"rootY":11.6,"hips":[0,0],"chest":[39.1,-76.5],"neck":[39.1,-76.5],"head":[47.2,-149],"shR":[39,-89.8],"elR":[-11.8,1.1],"haR":[16.4,65.3],"shL":[43.4,-92],"elL":[9.2,5.4],"haL":[56.5,55.5],"hipR":[21.5,35.9],"knR":[100.4,149.5],"ftR":[98,296.2],"hipL":[20.5,33.4],"knL":[40.6,178.7],"ftL":[-44.7,296.4]},{"rootY":13.5,"hips":[0,0],"chest":[41.6,-75.2],"neck":[41.6,-75.2],"head":[51,-147.7],"shR":[40.8,-86.6],"elR":[-12.6,2.8],"haR":[19.4,65.4],"shL":[47.3,-92.7],"elL":[7.5,1.7],"haL":[51.5,53.7],"hipR":[21.1,36.9],"knR":[103.3,148.2],"ftR":[91.4,295.1],"hipL":[19.7,33],"knL":[36.9,178.4],"ftL":[-51.4,294]},{"rootY":14.8,"hips":[0,0],"chest":[43.9,-73.9],"neck":[43.9,-73.9],"head":[54.8,-146.2],"shR":[43.3,-83.1],"elR":[-12.3,4.9],"haR":[23.8,65.5],"shL":[50.4,-93.3],"elL":[6,-2.1],"haL":[45.6,52.1],"hipR":[21,37.6],"knR":[105.7,147.6],"ftR":[85,293.9],"hipL":[18.6,32.7],"knL":[32.9,178.1],"ftL":[-58.4,291.6]},{"rootY":15.8,"hips":[0,0],"chest":[45.1,-73.1],"neck":[45.1,-73.1],"head":[57.9,-145.1],"shR":[44.2,-80.2],"elR":[-13.6,6.4],"haR":[28.7,62.7],"shL":[52.4,-94.5],"elL":[2.7,-7],"haL":[38.7,48.6],"hipR":[20.8,38.5],"knR":[106.9,147.9],"ftR":[77.6,293],"hipL":[17.3,32.3],"knL":[28,177.5],"ftL":[-66,288.8]},{"rootY":16.6,"hips":[0,0],"chest":[46.3,-72.3],"neck":[46.3,-72.3],"head":[60,-144.1],"shR":[46.2,-77.4],"elR":[-13.9,7.9],"haR":[36.2,57.3],"shL":[53.3,-95.4],"elL":[-1.3,-11.1],"haL":[32.2,45.6],"hipR":[20,39.3],"knR":[106.8,148.4],"ftR":[70,292.1],"hipL":[16.8,32],"knL":[22.5,177.1],"ftL":[-73.6,286.8]},{"rootY":17.1,"hips":[0,0],"chest":[46.8,-71.9],"neck":[46.8,-71.9],"head":[61.7,-143.3],"shR":[46.1,-75.6],"elR":[-13.3,10.4],"haR":[43.6,51.4],"shL":[54.6,-96.3],"elL":[-4.4,-14.5],"haL":[27.3,43.4],"hipR":[19.7,39.9],"knR":[106.1,149.8],"ftR":[62.2,291.5],"hipL":[16.1,31.7],"knL":[16.2,176.5],"ftL":[-81.6,284.8]},{"rootY":17.4,"hips":[0,0],"chest":[46.4,-71.9],"neck":[46.4,-71.9],"head":[62.2,-143.1],"shR":[45.2,-74.2],"elR":[-11.8,13.4],"haR":[49.2,48.1],"shL":[54.9,-97.7],"elL":[-5.3,-16.2],"haL":[24,43.3],"hipR":[19.4,40.3],"knR":[104.4,151.8],"ftR":[54.6,291.5],"hipL":[16,31.5],"knL":[10.3,175.6],"ftL":[-89.2,282.4]},{"rootY":17.1,"hips":[0,0],"chest":[45.4,-72.2],"neck":[45.4,-72.2],"head":[61.1,-143.3],"shR":[43.9,-73],"elR":[-8.8,17],"haR":[53.7,48.7],"shL":[53.7,-99.6],"elL":[-6.4,-18.1],"haL":[21.4,42.4],"hipR":[19.1,40.6],"knR":[101.5,154.4],"ftR":[47.2,292.3],"hipL":[16.2,31.1],"knL":[6,174.6],"ftL":[-96.2,278.6]},{"rootY":15.2,"hips":[0,0],"chest":[43.8,-72.8],"neck":[43.8,-72.8],"head":[58.8,-143.9],"shR":[42,-72],"elR":[-7.3,19.8],"haR":[54.6,52.3],"shL":[51.9,-101.8],"elL":[-6.7,-19.7],"haL":[21.6,41],"hipR":[19.2,40.5],"knR":[96.5,158.2],"ftR":[38.4,294.5],"hipL":[16.9,30.8],"knL":[8.1,173.8],"ftL":[-98.7,273]},{"rootY":12.2,"hips":[0,0],"chest":[42.5,-73.2],"neck":[42.5,-73.2],"head":[57.2,-144.1],"shR":[40.4,-70.4],"elR":[-6.8,22.4],"haR":[53.5,57.4],"shL":[50.4,-104.2],"elL":[-6.5,-21.5],"haL":[25.3,38.3],"hipR":[19.3,40.1],"knR":[90.7,161.8],"ftR":[31.4,297.5],"hipL":[17.6,31],"knL":[18.1,173.5],"ftL":[-94.5,266.2]},{"rootY":9.2,"hips":[0,0],"chest":[41.1,-73.5],"neck":[41.1,-73.5],"head":[55.9,-144.1],"shR":[39,-69],"elR":[-6,24.9],"haR":[52.2,63.2],"shL":[48.3,-106.3],"elL":[-5.4,-22.1],"haL":[31.8,35.5],"hipR":[19.9,39.5],"knR":[84.7,164.9],"ftR":[25.1,300.4],"hipL":[18.6,31],"knL":[33,172.3],"ftL":[-83.4,260.3]},{"rootY":6.5,"hips":[0,0],"chest":[39.5,-74],"neck":[39.5,-74],"head":[54.3,-144.3],"shR":[36.9,-68.3],"elR":[-5.6,26.7],"haR":[49.8,69],"shL":[47.1,-107.9],"elL":[-2.7,-22.3],"haL":[39.2,32.8],"hipR":[20.4,39],"knR":[79,167.4],"ftR":[20.2,303.1],"hipL":[19.4,30.9],"knL":[50,169.4],"ftL":[-64.2,259.8]},{"rootY":5,"hips":[0,0],"chest":[38.7,-74.2],"neck":[38.7,-74.2],"head":[54.2,-144.2],"shR":[36,-67.9],"elR":[-5.7,27.5],"haR":[46.7,73.8],"shL":[46,-108.7],"elL":[0.5,-21.8],"haL":[45.8,31.2],"hipR":[20.8,38.4],"knR":[74.4,169.1],"ftR":[15.7,304.9],"hipL":[20.1,30.9],"knL":[67.8,164.8],"ftL":[-36.7,265.9]},{"rootY":4,"hips":[0,0],"chest":[37.8,-74.6],"neck":[37.8,-74.6],"head":[53.6,-144.4],"shR":[35.3,-68.4],"elR":[-5.9,27.2],"haR":[42.8,77.7],"shL":[44.7,-108.9],"elL":[2.9,-20.9],"haL":[50.5,30.6],"hipR":[20.8,38],"knR":[69.9,170.4],"ftR":[10.9,305.9],"hipL":[21.2,30.9],"knL":[83.1,159.6],"ftL":[-2.9,277.1]},{"rootY":3.4,"hips":[0,0],"chest":[36.7,-75.1],"neck":[36.7,-75.1],"head":[53.2,-144.7],"shR":[33.7,-69.4],"elR":[-7,26.3],"haR":[37.1,81],"shL":[44.1,-109],"elL":[4.2,-20.1],"haL":[52.4,31.2],"hipR":[21,37.4],"knR":[65.5,171.5],"ftR":[5.5,306.4],"hipL":[22,31],"knL":[93.8,155.4],"ftL":[33.2,288.1]},{"rootY":2.5,"hips":[0,0],"chest":[35.7,-75.6],"neck":[35.7,-75.6],"head":[52.3,-145],"shR":[31.3,-70.8],"elR":[-9.1,25],"haR":[30.4,83.3],"shL":[44.3,-108.7],"elL":[4.7,-19.4],"haL":[52,33],"hipR":[20.4,37],"knR":[60.4,172.5],"ftR":[-0.2,307.1],"hipL":[23.2,31.2],"knL":[100.3,153.3],"ftL":[68.4,295.5]},{"rootY":2.1,"hips":[0,0],"chest":[34.3,-76.3],"neck":[34.3,-76.3],"head":[51.4,-145.5],"shR":[28.1,-72.5],"elR":[-12.6,23.2],"haR":[23.1,84],"shL":[44.6,-108.3],"elL":[5.1,-18.3],"haL":[49.3,36.9],"hipR":[19.4,36.6],"knR":[55.1,173.3],"ftR":[-6.4,307.3],"hipL":[24.4,31.5],"knL":[103.3,153.3],"ftL":[96.7,298]},{"rootY":2.7,"hips":[0,0],"chest":[33.2,-76.7],"neck":[33.2,-76.7],"head":[50.8,-145.9],"shR":[24.9,-74.5],"elR":[-15.4,21.4],"haR":[16.3,84.4],"shL":[45.7,-107.3],"elL":[4.3,-17.3],"haL":[43.8,41.3],"hipR":[18.2,36.3],"knR":[50.6,173.8],"ftR":[-12.7,306.8],"hipL":[25.7,31.9],"knL":[104.4,154.3],"ftL":[114.5,297.8]},{"rootY":3.8,"hips":[0,0],"chest":[33.2,-76.7],"neck":[33.2,-76.7],"head":[51.2,-146.1],"shR":[23.7,-76.2],"elR":[-16.3,19.8],"haR":[12.1,84.3],"shL":[47.4,-105.6],"elL":[4.1,-15.7],"haL":[38.1,46.3],"hipR":[16.8,36],"knR":[46.4,174],"ftR":[-19.8,305.7],"hipL":[26.9,32.2],"knL":[105.7,154.9],"ftL":[121.7,297.4]},{"rootY":4.7,"hips":[0,0],"chest":[34.8,-76],"neck":[34.8,-76],"head":[55.2,-145.6],"shR":[20.8,-77.2],"elR":[-22.4,17.5],"haR":[3.5,82.9],"shL":[54,-103.2],"elL":[6.5,-15],"haL":[35.3,49.5],"hipR":[14.6,35.9],"knR":[42.1,174.2],"ftR":[-27,304.3],"hipL":[28,32.8],"knL":[106.6,155.8],"ftL":[119,298.4]},{"rootY":5.8,"hips":[0,0],"chest":[37.7,-74.5],"neck":[37.7,-74.5],"head":[61.4,-143.5],"shR":[21.1,-77.9],"elR":[-24.4,15.7],"haR":[-1.1,81.9],"shL":[60.8,-99.1],"elL":[9.2,-13.2],"haL":[33,53.3],"hipR":[12,36.1],"knR":[37,174.6],"ftR":[-34.6,303.4],"hipL":[28.7,33.4],"knL":[107.1,156.8],"ftL":[111.3,300.2]},{"rootY":6.3,"hips":[0,0],"chest":[41.7,-72],"neck":[41.7,-72],"head":[69,-140],"shR":[22.3,-77],"elR":[-27.8,14.3],"haR":[-6.8,81],"shL":[69.3,-94.7],"elL":[14.8,-11.5],"haL":[32.2,56.9],"hipR":[9.5,36.3],"knR":[31.1,175],"ftR":[-42.7,302.8],"hipL":[28.5,34.4],"knL":[108,157.5],"ftL":[103.9,301.4]},{"rootY":6.3,"hips":[0,0],"chest":[45.3,-69.6],"neck":[45.3,-69.6],"head":[76,-136.1],"shR":[22.6,-76.1],"elR":[-31,13.3],"haR":[-12.9,80.5],"shL":[77.4,-90.4],"elL":[23.2,-8.5],"haL":[35.1,61.1],"hipR":[6.9,36.3],"knR":[24,175.1],"ftR":[-50.6,302.7],"hipL":[28.4,35.5],"knL":[109.4,157.8],"ftL":[96.8,301.7]},{"rootY":6.6,"hips":[0,0],"chest":[48.3,-67.4],"neck":[48.3,-67.4],"head":[82.7,-131.8],"shR":[23.6,-75.6],"elR":[-32.9,11.9],"haR":[-16.8,79.5],"shL":[83.5,-86.1],"elL":[29.9,-5.3],"haL":[39.5,64.7],"hipR":[4.6,36.4],"knR":[16.5,175.2],"ftR":[-59.2,302.5],"hipL":[27.6,36.6],"knL":[110.2,157.9],"ftL":[89.3,301.3]},{"rootY":6.1,"hips":[0,0],"chest":[49.6,-66.2],"neck":[49.6,-66.2],"head":[85.7,-129.3],"shR":[23.7,-75.4],"elR":[-34.3,11],"haR":[-19.6,78.8],"shL":[86.9,-83.4],"elL":[34.8,-3.1],"haL":[44.1,67],"hipR":[3.4,37.1],"knR":[7.3,175.8],"ftR":[-69.4,302.6],"hipL":[28.3,36.2],"knL":[108.8,158.9],"ftL":[79,300.9]},{"rootY":7.4,"hips":[0,0],"chest":[51.2,-64.8],"neck":[51.2,-64.8],"head":[87.9,-127.6],"shR":[22.2,-74.7],"elR":[-36.9,10.9],"haR":[-22.7,78.7],"shL":[91.7,-81.3],"elL":[41.4,-0.7],"haL":[51.2,69.3],"hipR":[1.2,35.9],"knR":[-0.2,174.6],"ftR":[-76.8,301.6],"hipL":[27,38.1],"knL":[109.3,159.4],"ftL":[73.2,300]},{"rootY":8.1,"hips":[0,0],"chest":[51.9,-64.1],"neck":[51.9,-64.1],"head":[89.2,-126.3],"shR":[21.9,-74],"elR":[-36.6,11.6],"haR":[-23.2,79.7],"shL":[93.5,-80.3],"elL":[45.3,1.1],"haL":[56.3,70.9],"hipR":[0.2,35.7],"knR":[-7.2,174],"ftR":[-84.1,300.8],"hipL":[26.5,38.7],"knL":[108.3,160.1],"ftL":[66.1,299.1]},{"rootY":9.2,"hips":[0,0],"chest":[52.4,-63.4],"neck":[52.4,-63.4],"head":[88.9,-126.4],"shR":[21.9,-73.6],"elR":[-36.2,12.1],"haR":[-22.7,80.5],"shL":[94.8,-79.2],"elL":[47.6,2.4],"haL":[60.9,71.6],"hipR":[-0.7,35.5],"knR":[-13.3,173.2],"ftR":[-90.7,299.6],"hipL":[26.3,39.1],"knL":[107.9,160.3],"ftL":[60.4,297.7]},{"rootY":10.9,"hips":[0,0],"chest":[53.5,-62.4],"neck":[53.5,-62.4],"head":[89.6,-125.7],"shR":[23.4,-72.9],"elR":[-35.5,12.1],"haR":[-21,80.6],"shL":[95.9,-77.8],"elL":[48.1,3.3],"haL":[63.3,71.8],"hipR":[-1.9,35.4],"knR":[-16.2,172.5],"ftR":[-95.1,297.9],"hipL":[26,39.5],"knL":[107.9,160.2],"ftL":[55.8,296]},{"rootY":12.6,"hips":[0,0],"chest":[54.5,-61.2],"neck":[54.5,-61.2],"head":[89.3,-125],"shR":[25.9,-71.8],"elR":[-33.5,12.9],"haR":[-17.8,81.2],"shL":[96.2,-76.1],"elL":[47.6,4.4],"haL":[62.9,72.5],"hipR":[-2.5,34.9],"knR":[-18.4,171.5],"ftR":[-98.4,296.2],"hipL":[25.4,40.1],"knL":[108.4,159.9],"ftL":[52.5,294.3]},{"rootY":14,"hips":[0,0],"chest":[56.1,-59.5],"neck":[56.1,-59.5],"head":[90.5,-122.7],"shR":[29.7,-69.9],"elR":[-31.3,13.6],"haR":[-14.4,81.7],"shL":[96.4,-74.2],"elL":[46.7,5.9],"haL":[60.7,74.1],"hipR":[-3.2,34.9],"knR":[-19.2,170.9],"ftR":[-101,294.4],"hipL":[24.8,40.5],"knL":[108.5,159.5],"ftL":[50.2,292.9]}]},"sit":{"name":"sit","fps":30,"height":520,"groundY":343,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.2,-77.7],"neck":[-1.2,-77.7],"head":[-0.5,-145.7],"shR":[-58.5,-104.8],"elR":[-175.8,-88.3],"haR":[-245.6,-78.5],"shL":[66.8,-101.8],"elL":[170.6,-87.2],"haL":[241.4,-77.3],"hipR":[-31.3,37.8],"knR":[-28.8,181.7],"ftR":[-26,340.9],"hipL":[30.5,37.8],"knL":[27.9,185.4],"ftL":[25.2,343]},{"rootY":0,"hips":[0,0],"chest":[-6.9,-77.6],"neck":[-6.9,-77.6],"head":[-11.8,-146],"shR":[-17,-104.6],"elR":[8.8,9.2],"haR":[-16.1,74.9],"shL":[10.1,-102.7],"elL":[23,1.3],"haL":[16.4,71.3],"hipR":[-13.3,38],"knR":[-33,179.8],"ftR":[9.7,332.5],"hipL":[-3.7,38.4],"knL":[-16.3,185.5],"ftL":[32.2,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7,-77.5],"neck":[-7,-77.5],"head":[-12.1,-146],"shR":[-17.1,-104.5],"elR":[8.8,9.4],"haR":[-15.4,75.3],"shL":[9.7,-102.8],"elL":[22.3,1.2],"haL":[15,71],"hipR":[-13.1,38],"knR":[-32.5,179.8],"ftR":[10.3,332.5],"hipL":[-3.7,38.4],"knL":[-15.9,185.6],"ftL":[32.8,335.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.4,-77.5],"neck":[-7.4,-77.5],"head":[-12.5,-146],"shR":[-17.2,-104.4],"elR":[9,9.5],"haR":[-14.5,75.6],"shL":[9.1,-102.9],"elL":[21.5,1.2],"haL":[13.1,70.8],"hipR":[-13,37.9],"knR":[-32,179.9],"ftR":[10.6,332.6],"hipL":[-3.6,38.5],"knL":[-15.8,185.7],"ftL":[33.4,335.3]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.3,-77.5],"neck":[-7.3,-77.5],"head":[-12.9,-145.9],"shR":[-17.1,-104.2],"elR":[9.6,9.5],"haR":[-14,75.7],"shL":[8.9,-103.1],"elL":[20.9,0.9],"haL":[11.2,70.4],"hipR":[-12.6,38.3],"knR":[-31.8,180.2],"ftR":[11.3,332.8],"hipL":[-3.4,38.3],"knL":[-15,185.5],"ftL":[34.1,335.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-7.7,-77.5],"neck":[-7.7,-77.5],"head":[-13.6,-145.9],"shR":[-17.2,-104],"elR":[9,10],"haR":[-13.8,76.3],"shL":[8.2,-103.2],"elL":[19.9,0.9],"haL":[8.7,70.2],"hipR":[-12.6,38],"knR":[-31.9,179.9],"ftR":[11.5,332.4],"hipL":[-3.6,38.5],"knL":[-14.7,185.7],"ftL":[34.5,335.4]},{"rootY":0,"hips":[0,0],"chest":[-7.6,-77.5],"neck":[-7.6,-77.5],"head":[-14.3,-145.8],"shR":[-16.3,-103.8],"elR":[9.5,10.4],"haR":[-13.1,76.8],"shL":[7.3,-103.6],"elL":[19.2,0.5],"haL":[6.2,69.6],"hipR":[-12.4,38.1],"knR":[-31.8,179.9],"ftR":[12.1,332.3],"hipL":[-3.7,38.4],"knL":[-14.2,185.7],"ftL":[35.3,335.3]},{"rootY":0.1,"hips":[0,0],"chest":[-7.2,-77.5],"neck":[-7.2,-77.5],"head":[-14.5,-145.6],"shR":[-15,-103.8],"elR":[10,10.6],"haR":[-12.9,76.9],"shL":[6.7,-103.6],"elL":[18.8,0.5],"haL":[4.1,69.1],"hipR":[-12.2,38.2],"knR":[-31.6,180],"ftR":[12.8,332.3],"hipL":[-3.8,38.3],"knL":[-13.6,185.7],"ftL":[36.2,335.2]},{"rootY":0.2,"hips":[0,0],"chest":[-6.8,-77.6],"neck":[-6.8,-77.6],"head":[-15,-145.4],"shR":[-13.1,-103.5],"elR":[10.3,11.4],"haR":[-12.9,77.6],"shL":[5.6,-104],"elL":[19.4,-0.1],"haL":[2.7,68.1],"hipR":[-11.9,38.3],"knR":[-31.7,180],"ftR":[13.5,332.2],"hipL":[-4.3,38.2],"knL":[-12.8,185.6],"ftL":[37.5,335]},{"rootY":0.3,"hips":[0,0],"chest":[-6.7,-77.6],"neck":[-6.7,-77.6],"head":[-16,-145],"shR":[-10.9,-103.4],"elR":[10.8,11.9],"haR":[-13.5,77.6],"shL":[3.7,-104],"elL":[18.2,-0.3],"haL":[-0.2,67.5],"hipR":[-11.5,38.3],"knR":[-31.7,179.9],"ftR":[13.8,332],"hipL":[-4.9,38.2],"knL":[-12.6,185.6],"ftL":[38.3,334.8]},{"rootY":0.5,"hips":[0,0],"chest":[-6.3,-77.6],"neck":[-6.3,-77.6],"head":[-16.6,-144.7],"shR":[-7.9,-103.3],"elR":[12.7,12.4],"haR":[-13.1,77.4],"shL":[1.6,-104.2],"elL":[16.9,-0.6],"haL":[-2.9,66.8],"hipR":[-10.8,38.3],"knR":[-31.3,179.8],"ftR":[15,331.8],"hipL":[-5.5,38.2],"knL":[-12,185.7],"ftL":[39.5,334.6]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-77.7],"neck":[-5.8,-77.7],"head":[-17.1,-144.5],"shR":[-4.9,-103.2],"elR":[15.1,12.8],"haR":[-12.6,77],"shL":[-0.5,-104.4],"elL":[15.1,-0.8],"haL":[-5.6,66.4],"hipR":[-10.1,38.4],"knR":[-31.4,179.8],"ftR":[15.8,331.6],"hipL":[-6.4,38],"knL":[-11.3,185.6],"ftL":[41.1,334.2]},{"rootY":1,"hips":[0,0],"chest":[-5.1,-77.7],"neck":[-5.1,-77.7],"head":[-17.2,-144.4],"shR":[-1.8,-103.3],"elR":[17.9,12.8],"haR":[-11.8,76],"shL":[-2.3,-104.3],"elL":[13.5,-0.8],"haL":[-7.6,66.4],"hipR":[-9.3,37.9],"knR":[-30.4,179.4],"ftR":[17.3,331.2],"hipL":[-7.4,38.5],"knL":[-11.4,186.1],"ftL":[43.1,333.9]},{"rootY":1.5,"hips":[0,0],"chest":[-4.4,-77.7],"neck":[-4.4,-77.7],"head":[-17.1,-144.3],"shR":[1.7,-103.1],"elR":[21.5,13.1],"haR":[-9.8,75.4],"shL":[-4.5,-104.6],"elL":[11.8,-1.2],"haL":[-9,66.2],"hipR":[-8.4,37.8],"knR":[-30,179.3],"ftR":[18.4,330.9],"hipL":[-8.5,38.5],"knL":[-11.4,186.2],"ftL":[44.5,333.4]},{"rootY":1.8,"hips":[0,0],"chest":[-3.7,-77.8],"neck":[-3.7,-77.8],"head":[-16.7,-144.2],"shR":[5.3,-102.6],"elR":[25.2,13.6],"haR":[-7.5,75.1],"shL":[-6.8,-105.2],"elL":[9,-1.8],"haL":[-11.1,65.8],"hipR":[-7.5,37.8],"knR":[-29.4,179.3],"ftR":[19.9,330.6],"hipL":[-9.7,38.4],"knL":[-11.6,186.1],"ftL":[46,332.7]},{"rootY":2.3,"hips":[0,0],"chest":[-3.2,-77.8],"neck":[-3.2,-77.8],"head":[-16.7,-144.2],"shR":[9.2,-102.3],"elR":[28.9,14],"haR":[-4.3,74.9],"shL":[-10,-105.6],"elL":[5.6,-2.2],"haL":[-13.7,65.6],"hipR":[-6.7,37.6],"knR":[-28.7,179],"ftR":[21,330.2],"hipL":[-10.4,38.7],"knL":[-13.4,186.3],"ftL":[46.7,331.8]},{"rootY":2.8,"hips":[0,0],"chest":[-2.5,-77.8],"neck":[-2.5,-77.8],"head":[-16.2,-144.2],"shR":[11.9,-102.2],"elR":[31.8,14.2],"haR":[-1.3,74.9],"shL":[-11.6,-105.7],"elL":[4,-2.4],"haL":[-14.9,65.4],"hipR":[-6.2,37.7],"knR":[-28.5,179.1],"ftR":[22.6,329.9],"hipL":[-11.5,38.4],"knL":[-15.2,185.9],"ftL":[47.4,330.4]},{"rootY":3.4,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-15.8,-144.2],"shR":[13.9,-102.3],"elR":[33.7,14.2],"haR":[1.5,75],"shL":[-12.7,-105.7],"elL":[2.6,-2.4],"haL":[-16.2,65.4],"hipR":[-5.6,37.4],"knR":[-27.7,178.8],"ftR":[24.1,329.4],"hipL":[-12.3,38.6],"knL":[-19,185.9],"ftL":[47.6,328.5]},{"rootY":3.8,"hips":[0,0],"chest":[-1.8,-77.8],"neck":[-1.8,-77.8],"head":[-15.8,-144.1],"shR":[15.5,-102.4],"elR":[36,14.1],"haR":[5.2,75.1],"shL":[-13.9,-105.5],"elL":[1.3,-2.3],"haL":[-17.8,65.5],"hipR":[-4.9,37.1],"knR":[-27.2,178.5],"ftR":[25.2,328.8],"hipL":[-13.2,38.8],"knL":[-23.8,185.7],"ftL":[47.7,326]},{"rootY":3.9,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-15.9,-144],"shR":[16.9,-102],"elR":[38.4,14.4],"haR":[9.5,76],"shL":[-15.4,-105.9],"elL":[-0.8,-2.7],"haL":[-20.5,64.8],"hipR":[-4.9,37.3],"knR":[-26.2,178.9],"ftR":[26.6,329.1],"hipL":[-13.8,38.5],"knL":[-30.8,184.5],"ftL":[47.1,321.4]},{"rootY":4.6,"hips":[0,0],"chest":[-1.7,-77.8],"neck":[-1.7,-77.8],"head":[-16.2,-143.9],"shR":[17.4,-101.8],"elR":[40.1,14.3],"haR":[13.7,76.8],"shL":[-16,-106.1],"elL":[-2.1,-2.8],"haL":[-22.9,64.3],"hipR":[-5,37.2],"knR":[-26,178.7],"ftR":[27.9,328.5],"hipL":[-13.9,38.5],"knL":[-38.2,183.4],"ftL":[45.4,316.8]},{"rootY":4.9,"hips":[0,0],"chest":[-2,-77.8],"neck":[-2,-77.8],"head":[-16.8,-143.7],"shR":[17.5,-101.6],"elR":[42.1,14.2],"haR":[18.4,77.6],"shL":[-16.7,-106.3],"elL":[-2.9,-3.1],"haL":[-25.2,63.6],"hipR":[-4.8,37.1],"knR":[-25.4,178.7],"ftR":[29.1,328.2],"hipL":[-14.4,38.5],"knL":[-46.9,181.6],"ftL":[42.3,311.3]},{"rootY":5.1,"hips":[0,0],"chest":[-2.1,-77.7],"neck":[-2.1,-77.7],"head":[-17.2,-143.6],"shR":[17.5,-101.6],"elR":[44,13.8],"haR":[22.9,78.1],"shL":[-17.1,-106.3],"elL":[-2.9,-3.2],"haL":[-27.1,63],"hipR":[-4.5,36.7],"knR":[-24.1,178.4],"ftR":[30.5,327.8],"hipL":[-14.9,38.8],"knL":[-55.6,179.7],"ftL":[38,306.1]},{"rootY":5.3,"hips":[0,0],"chest":[-2.4,-77.7],"neck":[-2.4,-77.7],"head":[-17.9,-143.5],"shR":[17.1,-101.8],"elR":[45.7,13.1],"haR":[27,78.3],"shL":[-17.6,-106],"elL":[-2.8,-3],"haL":[-28.8,62.5],"hipR":[-4.1,37],"knR":[-23.6,178.7],"ftR":[31.9,327.7],"hipL":[-15.6,38.5],"knL":[-63.1,177.4],"ftL":[32.5,302]},{"rootY":5.6,"hips":[0,0],"chest":[-2.8,-77.6],"neck":[-2.8,-77.6],"head":[-18.9,-143.3],"shR":[16.5,-101.8],"elR":[46.7,12.6],"haR":[30.3,78.6],"shL":[-18,-105.9],"elL":[-2.3,-3],"haL":[-29.6,62.1],"hipR":[-3.6,37.2],"knR":[-23.5,178.8],"ftR":[33,327.4],"hipL":[-16.3,38.2],"knL":[-70.1,175.1],"ftL":[24.9,300]},{"rootY":5.9,"hips":[0,0],"chest":[-3.1,-77.6],"neck":[-3.1,-77.6],"head":[-19.6,-143.1],"shR":[16.2,-102],"elR":[47.7,12.1],"haR":[33.2,78.6],"shL":[-18.5,-105.6],"elL":[-1.9,-2.9],"haL":[-29.9,62],"hipR":[-3.1,37.2],"knR":[-23.2,178.9],"ftR":[34.6,326.9],"hipL":[-16.7,38.2],"knL":[-75.9,173.1],"ftL":[16.3,299.7]},{"rootY":6.2,"hips":[0,0],"chest":[-3.5,-77.5],"neck":[-3.5,-77.5],"head":[-20.6,-142.9],"shR":[15.8,-102.1],"elR":[48.7,11.6],"haR":[35.6,78.4],"shL":[-19.6,-105.5],"elL":[-1.6,-3],"haL":[-29.8,61.8],"hipR":[-2.7,37.4],"knR":[-22.9,178.9],"ftR":[36.3,326.5],"hipL":[-17.2,38],"knL":[-80.7,171.2],"ftL":[6.4,301.2]},{"rootY":6.5,"hips":[0,0],"chest":[-4,-77.5],"neck":[-4,-77.5],"head":[-21.6,-142.7],"shR":[15.5,-102.2],"elR":[49.5,11.1],"haR":[37.2,78.1],"shL":[-20.7,-105.2],"elL":[-1.5,-3],"haL":[-29.2,62.1],"hipR":[-2.3,37.4],"knR":[-22,179],"ftR":[38,326.1],"hipL":[-17.6,38],"knL":[-84.4,169.6],"ftL":[-4.7,304]},{"rootY":6.7,"hips":[0,0],"chest":[-4.5,-77.5],"neck":[-4.5,-77.5],"head":[-22.8,-142.5],"shR":[15.1,-102.5],"elR":[49.7,10.6],"haR":[38,77.6],"shL":[-21.7,-104.9],"elL":[-1.6,-2.8],"haL":[-28.2,62.8],"hipR":[-1.7,37.3],"knR":[-20.7,179],"ftR":[40.2,325.7],"hipL":[-17.9,38.1],"knL":[-86.5,168.8],"ftL":[-16.7,308.5]},{"rootY":7.1,"hips":[0,0],"chest":[-4.9,-77.5],"neck":[-4.9,-77.5],"head":[-23.8,-142.3],"shR":[14.9,-102.9],"elR":[49.9,10.1],"haR":[38.4,76.9],"shL":[-22.9,-104.4],"elL":[-1.9,-2.5],"haL":[-26.7,63.8],"hipR":[-1,37.2],"knR":[-18.7,179.1],"ftR":[41.8,325.8],"hipL":[-18,38.3],"knL":[-87.9,168.1],"ftL":[-30.3,313.4]},{"rootY":6.4,"hips":[0,0],"chest":[-5.4,-77.4],"neck":[-5.4,-77.4],"head":[-25,-142],"shR":[14.7,-103.2],"elR":[50.1,9.7],"haR":[38.4,76.2],"shL":[-24.3,-104],"elL":[-2.5,-2.3],"haL":[-25.2,64.7],"hipR":[-0.2,37.1],"knR":[-16.6,179.1],"ftR":[44.8,325.5],"hipL":[-18.1,38.5],"knL":[-87,168.8],"ftL":[-43.9,319.2]},{"rootY":5.8,"hips":[0,0],"chest":[-6,-77.4],"neck":[-6,-77.4],"head":[-26.2,-141.7],"shR":[15,-103.4],"elR":[50.7,9.4],"haR":[38.7,75.7],"shL":[-26.6,-103.8],"elL":[-4.1,-2.2],"haL":[-24.4,65.6],"hipR":[0.7,37.1],"knR":[-14.1,179.4],"ftR":[47.3,325.6],"hipL":[-18.4,38.7],"knL":[-85.7,169.5],"ftL":[-57.6,323.8]},{"rootY":5.2,"hips":[0,0],"chest":[-6.4,-77.4],"neck":[-6.4,-77.4],"head":[-27.4,-141.5],"shR":[15.1,-104],"elR":[51.2,8.7],"haR":[38.4,74.7],"shL":[-28.4,-103.2],"elL":[-5.1,-1.7],"haL":[-23,66.7],"hipR":[1.7,36.9],"knR":[-10.4,179.5],"ftR":[49.9,326.1],"hipL":[-18.6,38.9],"knL":[-83.7,170.7],"ftL":[-69,327.1]},{"rootY":5,"hips":[0,0],"chest":[-6.9,-77.4],"neck":[-6.9,-77.4],"head":[-28.6,-141.3],"shR":[14.9,-104.8],"elR":[51.9,7.5],"haR":[38,73.1],"shL":[-30,-102.2],"elL":[-5.9,-0.9],"haL":[-21.4,68.1],"hipR":[2.6,36.9],"knR":[-7.1,179.7],"ftR":[52.9,326.2],"hipL":[-18.9,39],"knL":[-82.7,171.2],"ftL":[-78.6,328.6]},{"rootY":4.7,"hips":[0,0],"chest":[-7.4,-77.3],"neck":[-7.4,-77.3],"head":[-29.8,-141],"shR":[14.6,-105.5],"elR":[52.5,6.4],"haR":[37.5,71.5],"shL":[-31.5,-101.3],"elL":[-6.6,-0.1],"haL":[-20.2,69.3],"hipR":[3.3,37],"knR":[-4.1,179.8],"ftR":[55.8,326.2],"hipL":[-19.1,39],"knL":[-80,172.3],"ftL":[-83.9,329.8]},{"rootY":4.7,"hips":[0,0],"chest":[-8,-77.3],"neck":[-8,-77.3],"head":[-31.2,-140.8],"shR":[14.2,-106.3],"elR":[53.3,5.1],"haR":[37.2,69.8],"shL":[-32.9,-100.3],"elL":[-7.7,0.8],"haL":[-19.4,70.5],"hipR":[4,36.6],"knR":[-0.7,179.5],"ftR":[59,325.9],"hipL":[-19,39.4],"knL":[-79.3,172.8],"ftL":[-87,330.2]},{"rootY":5,"hips":[0,0],"chest":[-8.7,-77.3],"neck":[-8.7,-77.3],"head":[-32.6,-140.5],"shR":[13.9,-106.9],"elR":[53.8,4.2],"haR":[36.8,68.5],"shL":[-34.7,-99.5],"elL":[-9,1.6],"haL":[-19.5,71.4],"hipR":[4.7,36.4],"knR":[2.2,179.4],"ftR":[62.2,325.4],"hipL":[-18.8,39.7],"knL":[-78.1,173.4],"ftL":[-86.2,330.7]},{"rootY":5.7,"hips":[0,0],"chest":[-9.5,-77.2],"neck":[-9.5,-77.2],"head":[-34.1,-140.1],"shR":[12,-108.2],"elR":[53.5,2.2],"haR":[36.2,66.2],"shL":[-35.2,-97.7],"elL":[-9.4,3.4],"haL":[-19.1,73.4],"hipR":[5.1,36.3],"knR":[4.4,179.2],"ftR":[66.2,324.5],"hipL":[-18.7,39.9],"knL":[-76.5,174],"ftL":[-82,331.5]},{"rootY":5.8,"hips":[0,0],"chest":[-10.4,-77.1],"neck":[-10.4,-77.1],"head":[-35.8,-139.7],"shR":[10.6,-109.1],"elR":[53.2,0.8],"haR":[36.3,64.7],"shL":[-36.3,-96.4],"elL":[-10.3,4.7],"haL":[-19.7,74.9],"hipR":[5.5,36.2],"knR":[6.6,179.1],"ftR":[69.3,323.8],"hipL":[-18.3,40.1],"knL":[-74.9,174.8],"ftL":[-77.8,332.4]},{"rootY":5,"hips":[0,0],"chest":[-11.4,-77],"neck":[-11.4,-77],"head":[-37.8,-139.1],"shR":[8.6,-110.2],"elR":[52.5,-0.9],"haR":[36.3,63.1],"shL":[-36.8,-94.7],"elL":[-10.8,6.5],"haL":[-20.2,76.7],"hipR":[5.6,36.3],"knR":[8.8,179],"ftR":[73.4,323.1],"hipL":[-17.8,40.2],"knL":[-73.6,175.3],"ftL":[-74.5,332.8]},{"rootY":4.1,"hips":[0,0],"chest":[-12.5,-76.8],"neck":[-12.5,-76.8],"head":[-40,-138.3],"shR":[6.3,-110.9],"elR":[51.5,-2.2],"haR":[36.4,61.9],"shL":[-37.3,-93.4],"elL":[-10.8,7.8],"haL":[-21,78],"hipR":[5.5,36.5],"knR":[9.6,179.2],"ftR":[76.7,322],"hipL":[-17.4,40.1],"knL":[-71.2,176.1],"ftL":[-70.1,333.7]},{"rootY":3.3,"hips":[0,0],"chest":[-13.2,-76.7],"neck":[-13.2,-76.7],"head":[-41.5,-137.6],"shR":[3.9,-111.9],"elR":[50.9,-4.3],"haR":[36.8,60.2],"shL":[-36.6,-91.7],"elL":[-9.8,9.5],"haL":[-21.2,79.6],"hipR":[5.8,36.4],"knR":[11,179],"ftR":[80.3,320.8],"hipL":[-16.7,40.4],"knL":[-68.9,177.1],"ftL":[-65.5,334.6]},{"rootY":2.5,"hips":[0,0],"chest":[-13.7,-76.5],"neck":[-13.7,-76.5],"head":[-42.7,-137],"shR":[2.3,-112.5],"elR":[51.8,-6.1],"haR":[38.3,58.7],"shL":[-36.4,-90.7],"elL":[-8.9,10.3],"haL":[-21.9,80.3],"hipR":[6,36.2],"knR":[13.5,178.9],"ftR":[84.2,319.8],"hipL":[-16.4,40.6],"knL":[-66.9,178],"ftL":[-60.6,335.4]},{"rootY":1.7,"hips":[0,0],"chest":[-13.8,-76.5],"neck":[-13.8,-76.5],"head":[-43.5,-136.4],"shR":[1.5,-112.9],"elR":[52.8,-7.9],"haR":[39.8,57.2],"shL":[-35.9,-89.9],"elL":[-7.8,11],"haL":[-22.7,80.7],"hipR":[6.4,35.9],"knR":[16.9,178.4],"ftR":[88.8,318.9],"hipL":[-16.3,40.8],"knL":[-64.4,179],"ftL":[-55.4,336.3]},{"rootY":0.8,"hips":[0,0],"chest":[-13.5,-76.5],"neck":[-13.5,-76.5],"head":[-43.6,-136.1],"shR":[1.6,-113.5],"elR":[53.2,-9.1],"haR":[40.7,56],"shL":[-35.3,-89.1],"elL":[-6.8,11.7],"haL":[-23.5,81],"hipR":[6.5,35.8],"knR":[19.7,178.4],"ftR":[93.3,317.9],"hipL":[-16.5,40.9],"knL":[-61.3,180],"ftL":[-49.3,337.1]},{"rootY":0.4,"hips":[0,0],"chest":[-13.1,-76.5],"neck":[-13.1,-76.5],"head":[-43.2,-135.9],"shR":[1.8,-114],"elR":[52.9,-9.7],"haR":[40.9,55.2],"shL":[-34.3,-88.6],"elL":[-5.8,12.3],"haL":[-24,81.3],"hipR":[6.6,35.8],"knR":[21.3,178.3],"ftR":[98.1,316.1],"hipL":[-16.7,40.9],"knL":[-58,181],"ftL":[-42.9,337.8]},{"rootY":0.1,"hips":[0,0],"chest":[-12.4,-76.6],"neck":[-12.4,-76.6],"head":[-42.4,-135.8],"shR":[2.7,-114.6],"elR":[52.3,-10],"haR":[40.4,54.4],"shL":[-33.4,-87.9],"elL":[-5.4,13.1],"haL":[-24.6,81.8],"hipR":[6.8,36],"knR":[20.9,178.7],"ftR":[101.8,314.1],"hipL":[-16.9,40.7],"knL":[-55,181.8],"ftL":[-36.5,338.1]},{"rootY":0.2,"hips":[0,0],"chest":[-11.9,-76.6],"neck":[-11.9,-76.6],"head":[-41.6,-135.9],"shR":[3.3,-114.9],"elR":[51.6,-9.8],"haR":[39.2,53.7],"shL":[-32.6,-87.6],"elL":[-5.4,13.6],"haL":[-25.2,82.2],"hipR":[6.7,36.3],"knR":[18.5,179.4],"ftR":[104.6,311.6],"hipL":[-17.4,40.4],"knL":[-53.7,181.9],"ftL":[-31.1,337.7]},{"rootY":0.6,"hips":[0,0],"chest":[-11.4,-76.7],"neck":[-11.4,-76.7],"head":[-40.8,-136],"shR":[4.6,-115.1],"elR":[51.3,-9.6],"haR":[37.8,53.2],"shL":[-32.8,-87.3],"elL":[-6.6,14.2],"haL":[-26.8,82.7],"hipR":[6.3,36.3],"knR":[13.9,180],"ftR":[105.4,308.4],"hipL":[-17.8,40.3],"knL":[-53,182.1],"ftL":[-26.5,337.3]},{"rootY":0.8,"hips":[0,0],"chest":[-11.3,-76.7],"neck":[-11.3,-76.7],"head":[-40.4,-136.1],"shR":[5.1,-115.3],"elR":[50.3,-9.3],"haR":[35,52.6],"shL":[-32.5,-87.1],"elL":[-7.9,14.8],"haL":[-28.1,83.3],"hipR":[5.9,36.6],"knR":[7.2,180.6],"ftR":[103.7,305.4],"hipL":[-18.5,39.8],"knL":[-52.3,182],"ftL":[-22.6,336.7]},{"rootY":1.3,"hips":[0,0],"chest":[-10.8,-76.7],"neck":[-10.8,-76.7],"head":[-39.8,-136.2],"shR":[6,-115.5],"elR":[49.1,-8.9],"haR":[32.1,52.3],"shL":[-32.3,-86.8],"elL":[-9.1,15.4],"haL":[-29.5,83.9],"hipR":[5.4,37.1],"knR":[0.1,180.9],"ftR":[100.9,302.5],"hipL":[-19.2,39.3],"knL":[-50.9,182],"ftL":[-18.4,336.1]},{"rootY":1.4,"hips":[0,0],"chest":[-10.3,-76.7],"neck":[-10.3,-76.7],"head":[-39.1,-136.3],"shR":[7.1,-115.5],"elR":[48.6,-8.5],"haR":[29.6,52],"shL":[-32,-86.9],"elL":[-10.4,15.7],"haL":[-31.1,84.1],"hipR":[4.9,37.3],"knR":[-6.5,180.7],"ftR":[97.1,300.1],"hipL":[-19.7,39],"knL":[-49.6,182.1],"ftL":[-14.6,335.6]},{"rootY":1.7,"hips":[0,0],"chest":[-9.7,-76.8],"neck":[-9.7,-76.8],"head":[-38.3,-136.4],"shR":[8.1,-115.5],"elR":[48.4,-8.1],"haR":[27.3,51.7],"shL":[-31.4,-86.9],"elL":[-11.2,15.9],"haL":[-32.6,84.1],"hipR":[4.3,37.1],"knR":[-12.6,179.9],"ftR":[91.2,299.1],"hipL":[-19.7,38.9],"knL":[-48.3,182.4],"ftL":[-10.8,335.3]},{"rootY":2,"hips":[0,0],"chest":[-9.2,-76.8],"neck":[-9.2,-76.8],"head":[-37.6,-136.4],"shR":[8.5,-115.4],"elR":[48.2,-7.8],"haR":[25.3,51.5],"shL":[-30.2,-87.1],"elL":[-11.3,16],"haL":[-33.8,83.8],"hipR":[3.4,37],"knR":[-18.5,179],"ftR":[83,300.1],"hipL":[-19.4,38.9],"knL":[-47.1,182.6],"ftL":[-7.2,335]},{"rootY":2.6,"hips":[0,0],"chest":[-8.8,-76.8],"neck":[-8.8,-76.8],"head":[-36.9,-136.5],"shR":[8.6,-115.2],"elR":[48.2,-7.4],"haR":[23.9,51.4],"shL":[-29.1,-87.3],"elL":[-11.2,16],"haL":[-34.9,83.4],"hipR":[2.5,36.9],"knR":[-24.3,177.9],"ftR":[72.2,303.1],"hipL":[-19.2,38.9],"knL":[-46.8,182.7],"ftL":[-4.6,334.4]},{"rootY":3.2,"hips":[0,0],"chest":[-8.4,-76.8],"neck":[-8.4,-76.8],"head":[-36.6,-136.6],"shR":[8.2,-115.1],"elR":[47.8,-7.2],"haR":[22.7,51.5],"shL":[-27.7,-87.4],"elL":[-11,16.1],"haL":[-36.2,82.9],"hipR":[1.8,36.7],"knR":[-30,176.5],"ftR":[59.5,306.9],"hipL":[-18.9,39],"knL":[-46,182.8],"ftL":[-1.5,333.8]},{"rootY":4,"hips":[0,0],"chest":[-8.2,-76.7],"neck":[-8.2,-76.7],"head":[-36.3,-136.5],"shR":[7.7,-115.1],"elR":[47.3,-7.1],"haR":[21.6,51.8],"shL":[-26.4,-87.4],"elL":[-9.8,16.1],"haL":[-36.6,82.3],"hipR":[1,37],"knR":[-35.4,175.3],"ftR":[45.9,311.1],"hipL":[-18.8,38.7],"knL":[-45.6,182.6],"ftL":[1.7,332.8]},{"rootY":4.8,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.5,-136.4],"shR":[6.5,-115],"elR":[46.2,-7],"haR":[20.1,52],"shL":[-25.3,-87.3],"elL":[-8.7,16.1],"haL":[-37,81.7],"hipR":[0,37.5],"knR":[-41.5,173.8],"ftR":[31.3,314.6],"hipL":[-18.5,38.2],"knL":[-44.8,182.4],"ftL":[3.5,332.2]},{"rootY":4.9,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.7,-136.3],"shR":[5.5,-114.8],"elR":[45.1,-6.9],"haR":[18.9,52.5],"shL":[-24.1,-87.6],"elL":[-7.7,15.9],"haL":[-36.9,81],"hipR":[-0.8,37.7],"knR":[-46.9,172.3],"ftR":[17.6,317.5],"hipL":[-18.3,37.9],"knL":[-42.9,182.5],"ftL":[5.8,332.2]},{"rootY":4.5,"hips":[0,0],"chest":[-8.5,-76.7],"neck":[-8.5,-76.7],"head":[-36.8,-136.1],"shR":[4.3,-114.9],"elR":[44.1,-7.1],"haR":[17.6,52.4],"shL":[-22.5,-87.5],"elL":[-6.7,16],"haL":[-36.4,80.9],"hipR":[-1.6,37.8],"knR":[-51.5,170.8],"ftR":[4.5,319.8],"hipL":[-17.9,37.7],"knL":[-40.5,182.8],"ftL":[8,332.6]},{"rootY":4.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.6,-136],"shR":[3.3,-114.6],"elR":[43.6,-7.2],"haR":[16.8,52.4],"shL":[-21.2,-87.8],"elL":[-5.3,15.7],"haL":[-35.1,80.4],"hipR":[-2.2,38.3],"knR":[-55.9,169.6],"ftR":[-8.8,321.7],"hipL":[-17.2,37.4],"knL":[-37.6,182.9],"ftL":[10.1,333]},{"rootY":3.7,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[1.6,-114.4],"elR":[42,-7.3],"haR":[15,52.4],"shL":[-18.9,-88.1],"elL":[-2.6,15.3],"haL":[-31.8,80.2],"hipR":[-3.2,38.4],"knR":[-59.3,168.7],"ftR":[-21.4,322.8],"hipL":[-16.3,37.3],"knL":[-35,183.2],"ftL":[12.2,333.5]},{"rootY":3.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-36.5,-136],"shR":[0.2,-114.1],"elR":[40.4,-7.1],"haR":[13.2,52.7],"shL":[-17.3,-88.6],"elL":[-0.5,14.7],"haL":[-28.7,79.9],"hipR":[-4.6,38.2],"knR":[-61.7,168.1],"ftR":[-32.9,323.4],"hipL":[-15.4,37.4],"knL":[-32.6,183.7],"ftL":[14.3,334]},{"rootY":2.2,"hips":[0,0],"chest":[-8.6,-76.6],"neck":[-8.6,-76.6],"head":[-36.3,-136.1],"shR":[-1.3,-113.9],"elR":[38.6,-7],"haR":[11.5,52.8],"shL":[-15.6,-88.9],"elL":[1.8,14.4],"haL":[-25,80],"hipR":[-5.7,38.2],"knR":[-63.6,167.7],"ftR":[-43.6,323.4],"hipL":[-14.2,37.4],"knL":[-29.4,184.1],"ftL":[16.7,334.7]},{"rootY":1.6,"hips":[0,0],"chest":[-8.7,-76.7],"neck":[-8.7,-76.7],"head":[-36.1,-136.2],"shR":[-3.3,-113.7],"elR":[36.6,-7.1],"haR":[9.5,52.8],"shL":[-13.1,-89.2],"elL":[5.2,13.8],"haL":[-19.9,79.9],"hipR":[-6.8,37.9],"knR":[-64.4,167.7],"ftR":[-52.5,323.2],"hipL":[-12.7,37.8],"knL":[-26.1,184.7],"ftL":[19.2,335.5]},{"rootY":1.1,"hips":[0,0],"chest":[-8.5,-76.6],"neck":[-8.5,-76.6],"head":[-35.7,-136.2],"shR":[-5.3,-113.3],"elR":[34.4,-7.1],"haR":[7.2,53.2],"shL":[-10.4,-89.7],"elL":[8.9,13.2],"haL":[-14.5,79.7],"hipR":[-8.1,37.7],"knR":[-64.7,168],"ftR":[-59.4,322.6],"hipL":[-11.3,38],"knL":[-22.6,185.2],"ftL":[21.5,336.4]},{"rootY":0.8,"hips":[0,0],"chest":[-8,-76.5],"neck":[-8,-76.5],"head":[-34.9,-136.2],"shR":[-6.9,-112.8],"elR":[32.3,-6.8],"haR":[5.2,53.8],"shL":[-7.4,-90.2],"elL":[13,12.5],"haL":[-8.3,79.5],"hipR":[-9.2,39],"knR":[-65.3,169.7],"ftR":[-64.2,322.3],"hipL":[-9.3,37],"knL":[-16.4,184.5],"ftL":[24.6,336.5]},{"rootY":0.4,"hips":[0,0],"chest":[-7.7,-76.6],"neck":[-7.7,-76.6],"head":[-34.2,-136.3],"shR":[-9,-112.4],"elR":[29.5,-6.5],"haR":[2.5,54.4],"shL":[-4,-90.9],"elL":[17.5,11.6],"haL":[-1.5,78.9],"hipR":[-10.6,38.7],"knR":[-63.1,171.1],"ftR":[-67.4,322.4],"hipL":[-7.5,37.3],"knL":[-13.7,184.8],"ftL":[28.1,336.6]},{"rootY":0.7,"hips":[0,0],"chest":[-7.5,-76.7],"neck":[-7.5,-76.7],"head":[-33.4,-136.5],"shR":[-11,-112.2],"elR":[26.8,-6.5],"haR":[-0.2,54.7],"shL":[-1,-91.4],"elL":[21.5,10.9],"haL":[5,78.5],"hipR":[-12.6,38.1],"knR":[-61.4,172],"ftR":[-68.3,322.7],"hipL":[-6.2,37.8],"knL":[-11.7,185.2],"ftL":[31.5,336.5]},{"rootY":1.4,"hips":[0,0],"chest":[-7,-76.8],"neck":[-7,-76.8],"head":[-32.2,-136.6],"shR":[-13.4,-112],"elR":[23.5,-6.4],"haR":[-3.4,55.3],"shL":[3.1,-91.9],"elL":[26.8,10.1],"haL":[12.7,77.9],"hipR":[-14.2,37.8],"knR":[-59.6,173.3],"ftR":[-66.6,323.6],"hipL":[-4.4,38.1],"knL":[-9.4,185.4],"ftL":[35.6,336]},{"rootY":2.3,"hips":[0,0],"chest":[-6.3,-76.9],"neck":[-6.3,-76.9],"head":[-30.7,-136.9],"shR":[-15.5,-111.9],"elR":[20.7,-6.4],"haR":[-6.2,55.7],"shL":[7.3,-92.4],"elL":[31.9,9.4],"haL":[20.5,77.2],"hipR":[-15.8,37.9],"knR":[-57.2,174.9],"ftR":[-61.1,325.3],"hipL":[-2.2,38.2],"knL":[-6.9,185.2],"ftL":[40,335.1]},{"rootY":3.4,"hips":[0,0],"chest":[-5.9,-77],"neck":[-5.9,-77],"head":[-29.8,-137.1],"shR":[-17.9,-111.6],"elR":[17.3,-6.1],"haR":[-9.6,56.4],"shL":[11.4,-92.8],"elL":[37.5,8.6],"haL":[28.4,76.3],"hipR":[-17.1,38.5],"knR":[-54.9,177],"ftR":[-54.8,327.5],"hipL":[0.5,37.7],"knL":[-2.5,184.5],"ftL":[44.3,334.1]},{"rootY":4.4,"hips":[0,0],"chest":[-6.1,-77],"neck":[-6.1,-77],"head":[-29,-137.1],"shR":[-21.6,-111],"elR":[12.7,-5.7],"haR":[-13.9,57.4],"shL":[15.3,-93.8],"elL":[42.6,7.3],"haL":[35.7,74.7],"hipR":[-18.5,38.5],"knR":[-52.6,178.2],"ftR":[-48.9,329.4],"hipL":[2.4,37.9],"knL":[0.9,184.1],"ftL":[48.2,333.3]},{"rootY":5.1,"hips":[0,0],"chest":[-6.8,-77.1],"neck":[-6.8,-77.1],"head":[-29,-137.1],"shR":[-25.5,-110.8],"elR":[7.3,-5.4],"haR":[-18.7,58.4],"shL":[18.1,-94.2],"elL":[47,6.4],"haL":[42.1,73.1],"hipR":[-19.5,38.7],"knR":[-50.7,179.2],"ftR":[-43.7,330.6],"hipL":[4,37.7],"knL":[4.4,183.4],"ftL":[52.1,332.2]},{"rootY":5.2,"hips":[0,0],"chest":[-8.5,-77],"neck":[-8.5,-77],"head":[-31,-136.7],"shR":[-30.3,-109.3],"elR":[0.3,-4.1],"haR":[-24.8,60.5],"shL":[19,-95.8],"elL":[49.6,4.3],"haL":[46.4,70.5],"hipR":[-20.5,38.6],"knR":[-52.2,179],"ftR":[-42.4,330.6],"hipL":[5.2,37.8],"knL":[5.2,183.1],"ftL":[53.9,331.2]},{"rootY":5,"hips":[0,0],"chest":[-10.1,-76.8],"neck":[-10.1,-76.8],"head":[-33.2,-136.5],"shR":[-35,-107.8],"elR":[-6.9,-2.8],"haR":[-31.5,62.2],"shL":[19.6,-97.4],"elL":[52.7,2],"haL":[50.5,67.8],"hipR":[-21.7,38.2],"knR":[-52.4,178.7],"ftR":[-40.7,330.6],"hipL":[6.9,38.3],"knL":[4,182.8],"ftL":[54.7,330.4]},{"rootY":3.9,"hips":[0,0],"chest":[-11.1,-76.7],"neck":[-11.1,-76.7],"head":[-34.8,-136],"shR":[-39.3,-106.4],"elR":[-13.7,-1.4],"haR":[-38.4,63.6],"shL":[21.5,-98.8],"elL":[57.4,-0.4],"haL":[56.1,65.2],"hipR":[-22.4,39.2],"knR":[-50.7,179.9],"ftR":[-38.3,331.5],"hipL":[9.8,37.5],"knL":[5.4,181.3],"ftL":[54.6,329.5]},{"rootY":2.9,"hips":[0,0],"chest":[-12.2,-76.5],"neck":[-12.2,-76.5],"head":[-36.4,-135.5],"shR":[-43.5,-105],"elR":[-20.2,-0.7],"haR":[-45.6,64.1],"shL":[22.9,-100],"elL":[61,-2.3],"haL":[60.9,63.2],"hipR":[-23.5,39.5],"knR":[-48.9,180.5],"ftR":[-36.1,332],"hipL":[12.2,37.2],"knL":[5.9,180.1],"ftL":[53.9,328.9]},{"rootY":2.4,"hips":[0,0],"chest":[-13.7,-76.2],"neck":[-13.7,-76.2],"head":[-38.2,-135],"shR":[-48.1,-103.6],"elR":[-27,1.2],"haR":[-53.3,65.6],"shL":[24,-101.1],"elL":[64.1,-4.3],"haL":[65.7,61.3],"hipR":[-24.7,39.1],"knR":[-47.7,180.2],"ftR":[-35,332.2],"hipL":[14,37.8],"knL":[6.3,179.7],"ftL":[53,329.2]},{"rootY":1.2,"hips":[0,0],"chest":[-14.1,-76.2],"neck":[-14.1,-76.2],"head":[-38.6,-134.8],"shR":[-50.7,-102.5],"elR":[-32.2,1.6],"haR":[-59.6,65.7],"shL":[25.7,-102.2],"elL":[67.9,-6.4],"haL":[70.7,58.9],"hipR":[-24.8,39.8],"knR":[-46.2,181.1],"ftR":[-33.2,333.3],"hipL":[15.6,37],"knL":[10.4,179],"ftL":[55.3,329.1]},{"rootY":0.6,"hips":[0,0],"chest":[-14.6,-76],"neck":[-14.6,-76],"head":[-39.2,-134.4],"shR":[-53.5,-101.6],"elR":[-37.4,1.2],"haR":[-66.2,64.9],"shL":[27.2,-103],"elL":[71.2,-8],"haL":[75.6,56.8],"hipR":[-25.1,40.1],"knR":[-45.2,181.5],"ftR":[-32.3,334],"hipL":[16.7,36.7],"knL":[14,178.5],"ftL":[58.9,328.7]},{"rootY":0.2,"hips":[0,0],"chest":[-15,-75.9],"neck":[-15,-75.9],"head":[-39.6,-134],"shR":[-55.4,-100.9],"elR":[-43.5,2.7],"haR":[-72.9,66.1],"shL":[28.2,-103.5],"elL":[73.6,-9.3],"haL":[79.8,55.2],"hipR":[-25.5,40.1],"knR":[-44.4,181.4],"ftR":[-31.6,334.2],"hipL":[17.7,36.8],"knL":[17.1,178.2],"ftL":[63.6,328.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-15.2,-75.8],"neck":[-15.2,-75.8],"head":[-39.8,-133.5],"shR":[-57.4,-100.8],"elR":[-48.5,2.7],"haR":[-79.4,65.5],"shL":[29.8,-103.5],"elL":[77,-10.3],"haL":[84.4,53.3],"hipR":[-25.3,40.5],"knR":[-43.9,181.6],"ftR":[-31.4,334.4],"hipL":[18.9,36.4],"knL":[20.4,177.6],"ftL":[69.8,326.7]},{"rootY":-0.3,"hips":[0,0],"chest":[-15.7,-75.7],"neck":[-15.7,-75.7],"head":[-40.2,-133],"shR":[-59.1,-100.3],"elR":[-52.2,3.4],"haR":[-84.5,65.7],"shL":[30.1,-103.7],"elL":[78.9,-11.6],"haL":[87.4,51.7],"hipR":[-25.5,40.7],"knR":[-43.6,181.8],"ftR":[-31.7,334.5],"hipL":[20,36.2],"knL":[22.8,176.8],"ftL":[76.2,324.9]},{"rootY":0.4,"hips":[0,0],"chest":[-16.4,-75.5],"neck":[-16.4,-75.5],"head":[-40.8,-132.4],"shR":[-60.8,-99.4],"elR":[-55.8,3.5],"haR":[-89.6,65.2],"shL":[29.9,-104.2],"elL":[80.6,-13.4],"haL":[89.2,49.2],"hipR":[-25.8,40.8],"knR":[-44.1,181.4],"ftR":[-32.8,334],"hipL":[20.9,36.2],"knL":[24.1,176.1],"ftL":[81.4,322.9]},{"rootY":0.9,"hips":[0,0],"chest":[-16.9,-75.3],"neck":[-16.9,-75.3],"head":[-41,-131.5],"shR":[-61,-98],"elR":[-58.3,4.1],"haR":[-93.6,65.1],"shL":[28.1,-105.2],"elL":[80.4,-15.9],"haL":[88.1,46],"hipR":[-26,40.9],"knR":[-44.6,181.2],"ftR":[-34.4,333.6],"hipL":[21.9,36.2],"knL":[25.2,175.1],"ftL":[86.1,320.4]},{"rootY":1.3,"hips":[0,0],"chest":[-17.7,-75],"neck":[-17.7,-75],"head":[-42.3,-130.6],"shR":[-64.5,-98],"elR":[-63.3,3.5],"haR":[-99.6,63.8],"shL":[30.1,-104.5],"elL":[83.8,-16.5],"haL":[90,44.6],"hipR":[-26,41],"knR":[-45.3,180.9],"ftR":[-36.3,333.2],"hipL":[22.6,36.1],"knL":[26.7,174.4],"ftL":[89.2,318.8]},{"rootY":1.7,"hips":[0,0],"chest":[-18.2,-74.7],"neck":[-18.2,-74.7],"head":[-42.8,-129.8],"shR":[-66.2,-97.6],"elR":[-66.8,3.5],"haR":[-103.9,63.2],"shL":[30.6,-104.4],"elL":[85.3,-17.7],"haL":[89.6,42.5],"hipR":[-25.9,41.2],"knR":[-46.2,180.7],"ftR":[-38.2,332.8],"hipL":[23.4,35.8],"knL":[28.8,174.2],"ftL":[91.2,318.3]},{"rootY":2.3,"hips":[0,0],"chest":[-18.5,-74.5],"neck":[-18.5,-74.5],"head":[-43.4,-128.9],"shR":[-67.8,-97.3],"elR":[-70.4,3.4],"haR":[-107.9,62.3],"shL":[31.3,-104],"elL":[86.6,-18.2],"haL":[88.4,40.9],"hipR":[-25.7,41.4],"knR":[-47.5,180.4],"ftR":[-40.4,332.2],"hipL":[24,35.7],"knL":[30.8,174.4],"ftL":[92,319]},{"rootY":3,"hips":[0,0],"chest":[-18.9,-74.2],"neck":[-18.9,-74.2],"head":[-43.5,-128],"shR":[-68.9,-96.9],"elR":[-73.6,3.4],"haR":[-111.3,61.6],"shL":[31.5,-103.9],"elL":[87.3,-19.1],"haL":[86.4,38.9],"hipR":[-25.6,41.5],"knR":[-49.4,179.9],"ftR":[-43.2,331.4],"hipL":[24.4,35.7],"knL":[32.3,175],"ftL":[90.9,320.8]},{"rootY":4.1,"hips":[0,0],"chest":[-19,-74],"neck":[-19,-74],"head":[-43.5,-127.2],"shR":[-69.7,-96.6],"elR":[-75.3,2.7],"haR":[-113,60.2],"shL":[31.7,-103.5],"elL":[87.9,-19.6],"haL":[84.2,37.4],"hipR":[-25.4,41.6],"knR":[-51.4,179.3],"ftR":[-46.1,330.4],"hipL":[24.8,35.7],"knL":[33.4,175.7],"ftL":[89.3,322.6]},{"rootY":5.2,"hips":[0,0],"chest":[-19.1,-73.7],"neck":[-19.1,-73.7],"head":[-43.4,-126.3],"shR":[-70.4,-96.4],"elR":[-77.9,2.7],"haR":[-115.3,59.4],"shL":[32,-102.9],"elL":[88.3,-19.6],"haL":[81.7,36.5],"hipR":[-25.3,41.6],"knR":[-53.7,178.6],"ftR":[-49.4,329.4],"hipL":[25,35.7],"knL":[33.3,176.2],"ftL":[86.9,324]},{"rootY":6,"hips":[0,0],"chest":[-19.2,-73.3],"neck":[-19.2,-73.3],"head":[-43.2,-125.3],"shR":[-71.2,-96.2],"elR":[-80.4,2.9],"haR":[-117.1,59],"shL":[32.7,-102.2],"elL":[88.9,-19],"haL":[79.4,36.3],"hipR":[-25.4,41.5],"knR":[-55.7,177.9],"ftR":[-52.8,328.7],"hipL":[25.2,35.9],"knL":[32.7,176.5],"ftL":[83.8,325.1]},{"rootY":7,"hips":[0,0],"chest":[-19.2,-72.9],"neck":[-19.2,-72.9],"head":[-42.6,-124.2],"shR":[-71.9,-96.1],"elR":[-82.4,3.1],"haR":[-118.2,58.7],"shL":[33.4,-101.3],"elL":[89.4,-17.7],"haL":[77,37.1],"hipR":[-25.5,41.4],"knR":[-57.8,177.2],"ftR":[-56.3,327.8],"hipL":[25.3,36],"knL":[31.6,176.7],"ftL":[79.9,326.3]},{"rootY":7.7,"hips":[0,0],"chest":[-19,-72.6],"neck":[-19,-72.6],"head":[-41.7,-123],"shR":[-72.5,-95.9],"elR":[-84.3,3.1],"haR":[-118.7,58.3],"shL":[34.4,-100.5],"elL":[89.9,-16.2],"haL":[74.9,38.2],"hipR":[-25.5,41.4],"knR":[-59.7,176.6],"ftR":[-59.6,327.1],"hipL":[25.7,36.2],"knL":[30.4,176.7],"ftL":[76,327.1]},{"rootY":8.5,"hips":[0,0],"chest":[-18.8,-72.1],"neck":[-18.8,-72.1],"head":[-40.8,-121.7],"shR":[-72.8,-95.8],"elR":[-86.7,3.7],"haR":[-119.2,59],"shL":[35.3,-99.4],"elL":[90.3,-14.5],"haL":[72.7,39.6],"hipR":[-25.6,41.3],"knR":[-61.2,175.9],"ftR":[-62.7,326.3],"hipL":[25.9,36.4],"knL":[28.9,176.4],"ftL":[72.6,327.3]},{"rootY":9.4,"hips":[0,0],"chest":[-18.4,-71.7],"neck":[-18.4,-71.7],"head":[-39.8,-120.4],"shR":[-73,-95.6],"elR":[-87.4,3.1],"haR":[-117.8,58.4],"shL":[36.3,-98.4],"elL":[90.6,-12.5],"haL":[70.6,41.2],"hipR":[-25.8,41.1],"knR":[-63,175],"ftR":[-65.8,325.4],"hipL":[25.9,36.7],"knL":[27.2,176.1],"ftL":[70,327.2]},{"rootY":10.4,"hips":[0,0],"chest":[-18.1,-71.1],"neck":[-18.1,-71.1],"head":[-38.8,-119],"shR":[-73.2,-95.4],"elR":[-88.7,2.8],"haR":[-116.8,58.3],"shL":[37.6,-97],"elL":[91.3,-10.3],"haL":[68.9,43.2],"hipR":[-26,40.9],"knR":[-64.6,174.1],"ftR":[-68.6,324.5],"hipL":[26,37],"knL":[25.7,175.5],"ftL":[68.2,326.7]},{"rootY":11.4,"hips":[0,0],"chest":[-17.5,-70.7],"neck":[-17.5,-70.7],"head":[-37.5,-117.7],"shR":[-73.2,-95.3],"elR":[-89.7,2.4],"haR":[-115.5,57.9],"shL":[39,-95.8],"elL":[91.4,-8],"haL":[67.1,45.3],"hipR":[-26.1,40.7],"knR":[-66,173.2],"ftR":[-71.1,323.6],"hipL":[26.1,37.2],"knL":[24.2,174.9],"ftL":[65.9,326.2]},{"rootY":12.5,"hips":[0,0],"chest":[-16.9,-70.3],"neck":[-16.9,-70.3],"head":[-36,-116.3],"shR":[-72.6,-95.3],"elR":[-90.2,1.8],"haR":[-114,57.5],"shL":[40.1,-94.7],"elL":[91.2,-5.7],"haL":[65,47.4],"hipR":[-26.3,40.6],"knR":[-67.6,172.3],"ftR":[-73.3,322.6],"hipL":[26.3,37.3],"knL":[22.7,173.8],"ftL":[63.7,325.2]},{"rootY":13.4,"hips":[0,0],"chest":[-16.1,-69.9],"neck":[-16.1,-69.9],"head":[-34.5,-115.4],"shR":[-72.1,-95.2],"elR":[-90.6,1.4],"haR":[-112.6,57.2],"shL":[41.4,-93.7],"elL":[91.3,-3.8],"haL":[63.2,49.1],"hipR":[-26.6,40.4],"knR":[-69.4,171.3],"ftR":[-75.4,321.5],"hipL":[26.3,37.6],"knL":[21.5,172.6],"ftL":[61.7,324.2]},{"rootY":15,"hips":[0,0],"chest":[-15.3,-69.6],"neck":[-15.3,-69.6],"head":[-32.8,-114.5],"shR":[-71.3,-95.5],"elR":[-91.2,0.8],"haR":[-111.3,56.6],"shL":[42.8,-92.5],"elL":[91.4,-1.7],"haL":[61.3,50.7],"hipR":[-27,40.1],"knR":[-71.5,169.9],"ftR":[-77.3,320],"hipL":[26.4,38],"knL":[20.6,171.3],"ftL":[59.9,322.9]},{"rootY":16.4,"hips":[0,0],"chest":[-14.4,-69.3],"neck":[-14.4,-69.3],"head":[-31.1,-113.9],"shR":[-70.4,-95.7],"elR":[-91.5,0.1],"haR":[-110,56.1],"shL":[44.3,-91.5],"elL":[91.5,0.2],"haL":[59.7,52.2],"hipR":[-27.6,39.7],"knR":[-73.7,168.5],"ftR":[-79.1,318.6],"hipL":[26.2,38.4],"knL":[19.7,170],"ftL":[58.5,321.6]},{"rootY":17.8,"hips":[0,0],"chest":[-13.5,-69.1],"neck":[-13.5,-69.1],"head":[-29.4,-113.3],"shR":[-69.5,-96],"elR":[-91.4,-0.7],"haR":[-108.7,55.5],"shL":[45.6,-90.5],"elL":[91.5,2],"haL":[57.8,53.6],"hipR":[-28.1,39.4],"knR":[-75.8,167.2],"ftR":[-80.7,317.2],"hipL":[26.1,38.7],"knL":[19,168.8],"ftL":[57.2,320.4]},{"rootY":19.2,"hips":[0,0],"chest":[-12.6,-68.9],"neck":[-12.6,-68.9],"head":[-27.6,-112.9],"shR":[-68.6,-96.3],"elR":[-91.5,-1.5],"haR":[-107.6,55],"shL":[47.2,-89.5],"elL":[92,3.7],"haL":[56.4,54.8],"hipR":[-28.4,39.2],"knR":[-77.3,166],"ftR":[-82.1,315.8],"hipL":[25.9,38.9],"knL":[18.1,167.4],"ftL":[55.8,319]},{"rootY":20.5,"hips":[0,0],"chest":[-11.8,-68.8],"neck":[-11.8,-68.8],"head":[-26.1,-112.8],"shR":[-67.8,-96.8],"elR":[-91.5,-2.2],"haR":[-106.6,54.5],"shL":[48.6,-88.7],"elL":[92.3,5],"haL":[55.1,55.9],"hipR":[-28.6,39.1],"knR":[-79.1,164.8],"ftR":[-83.3,314.5],"hipL":[25.7,39],"knL":[17,166.3],"ftL":[54.6,317.7]},{"rootY":21.8,"hips":[0,0],"chest":[-11.2,-68.7],"neck":[-11.2,-68.7],"head":[-24.6,-112.8],"shR":[-67.1,-97.1],"elR":[-91.4,-2.9],"haR":[-105.6,54],"shL":[49.7,-88],"elL":[92.5,6.3],"haL":[53.7,56.9],"hipR":[-28.8,39],"knR":[-80.3,163.7],"ftR":[-84.4,313.2],"hipL":[25.6,39.1],"knL":[15.7,165.1],"ftL":[53.3,316.3]},{"rootY":23.3,"hips":[0,0],"chest":[-10.7,-68.5],"neck":[-10.7,-68.5],"head":[-23.5,-112.7],"shR":[-66.5,-97.4],"elR":[-91.7,-3.4],"haR":[-105.1,53.8],"shL":[50.6,-87.1],"elL":[92.7,7.5],"haL":[52.6,57.8],"hipR":[-28.9,38.9],"knR":[-81.5,162.5],"ftR":[-85.5,311.9],"hipL":[25.4,39.1],"knL":[14.4,163.8],"ftL":[52.2,314.9]},{"rootY":24.5,"hips":[0,0],"chest":[-10.2,-68.4],"neck":[-10.2,-68.4],"head":[-22.5,-112.8],"shR":[-65.8,-97.8],"elR":[-91.7,-4],"haR":[-104.7,53.2],"shL":[51.5,-86.4],"elL":[92.5,8.5],"haL":[51.5,58.4],"hipR":[-29.1,38.8],"knR":[-82.5,161.4],"ftR":[-86.4,310.6],"hipL":[25.2,39.2],"knL":[13.3,162.8],"ftL":[51.2,313.8]},{"rootY":25.9,"hips":[0,0],"chest":[-9.8,-68.4],"neck":[-9.8,-68.4],"head":[-21.4,-112.9],"shR":[-65.1,-98.1],"elR":[-92,-4.6],"haR":[-104.7,52.5],"shL":[51.6,-86.1],"elL":[91.4,9.1],"haL":[49.5,58.6],"hipR":[-29.1,38.8],"knR":[-83.4,160.3],"ftR":[-87.3,309.2],"hipL":[25.1,39.2],"knL":[12.4,161.6],"ftL":[50.3,312.4]},{"rootY":27.2,"hips":[0,0],"chest":[-9.4,-68.3],"neck":[-9.4,-68.3],"head":[-20.7,-113],"shR":[-64.7,-98.2],"elR":[-92,-4.4],"haR":[-104.7,52.7],"shL":[52.2,-85.6],"elL":[90.8,10],"haL":[48.4,58.9],"hipR":[-29.4,38.6],"knR":[-84.1,159.1],"ftR":[-87.8,307.9],"hipL":[24.9,39.4],"knL":[11.7,160.4],"ftL":[49.5,311.1]},{"rootY":28.5,"hips":[0,0],"chest":[-9.2,-68.2],"neck":[-9.2,-68.2],"head":[-20.1,-113.1],"shR":[-64.4,-98.4],"elR":[-92,-4.6],"haR":[-104.9,52.3],"shL":[52.6,-85.1],"elL":[90.2,10.8],"haL":[47.2,59.2],"hipR":[-29.6,38.5],"knR":[-84.9,158],"ftR":[-88.3,306.5],"hipL":[24.9,39.4],"knL":[11.2,159.2],"ftL":[48.9,309.8]},{"rootY":29.8,"hips":[0,0],"chest":[-9,-68.1],"neck":[-9,-68.1],"head":[-19.7,-113.2],"shR":[-64.1,-98.6],"elR":[-92.1,-4.6],"haR":[-105.1,52.1],"shL":[52.9,-84.8],"elL":[89.7,11.4],"haL":[46.2,59.3],"hipR":[-29.8,38.4],"knR":[-85.9,156.8],"ftR":[-88.9,305.2],"hipL":[24.9,39.5],"knL":[10.8,157.9],"ftL":[48.3,308.6]},{"rootY":31.1,"hips":[0,0],"chest":[-8.5,-68],"neck":[-8.5,-68],"head":[-18.9,-113.2],"shR":[-63.5,-98.5],"elR":[-92.3,-4.6],"haR":[-105.3,51.9],"shL":[53.4,-84.5],"elL":[89.3,12.1],"haL":[45.3,59.6],"hipR":[-30,38.4],"knR":[-86.9,155.6],"ftR":[-89.1,303.9],"hipL":[24.8,39.5],"knL":[10.9,156.5],"ftL":[48.1,307.3]},{"rootY":32.4,"hips":[0,0],"chest":[-8.2,-68.1],"neck":[-8.2,-68.1],"head":[-18.3,-113.4],"shR":[-63.2,-98.7],"elR":[-92.6,-4.6],"haR":[-105.6,51.7],"shL":[54.1,-84.6],"elL":[89.4,12.5],"haL":[45.1,59.6],"hipR":[-30.3,38.3],"knR":[-88,154.4],"ftR":[-89.1,302.5],"hipL":[24.9,39.5],"knL":[11.2,155.3],"ftL":[48.1,306]},{"rootY":33.9,"hips":[0,0],"chest":[-7.6,-68.2],"neck":[-7.6,-68.2],"head":[-17.6,-113.8],"shR":[-62.6,-98.9],"elR":[-92.6,-4.6],"haR":[-105.5,51.4],"shL":[54.8,-84.6],"elL":[89.5,13],"haL":[45,59.7],"hipR":[-30.5,38.3],"knR":[-89.1,153.1],"ftR":[-88.9,301],"hipL":[24.8,39.5],"knL":[11.7,153.8],"ftL":[48.3,304.5]},{"rootY":35.3,"hips":[0,0],"chest":[-7.1,-68.5],"neck":[-7.1,-68.5],"head":[-16.9,-114.4],"shR":[-62.2,-99.1],"elR":[-92.9,-4.2],"haR":[-105.6,51.3],"shL":[55.4,-85.3],"elL":[89.6,12.7],"haL":[44.9,59.1],"hipR":[-30.9,38.2],"knR":[-90.1,151.8],"ftR":[-88.7,299.4],"hipL":[24.6,39.5],"knL":[12.2,152.3],"ftL":[48.6,303]},{"rootY":37,"hips":[0,0],"chest":[-7,-69],"neck":[-7,-69],"head":[-16.6,-115.3],"shR":[-62.2,-99.3],"elR":[-93.5,-3.7],"haR":[-105.9,51.2],"shL":[55.6,-86.2],"elL":[89.5,12.2],"haL":[44.7,58.2],"hipR":[-31.3,38],"knR":[-91.3,150.4],"ftR":[-88.7,297.6],"hipL":[24.5,39.5],"knL":[12.6,150.8],"ftL":[48.6,301.4]},{"rootY":38.6,"hips":[0,0],"chest":[-6.8,-69.6],"neck":[-6.8,-69.6],"head":[-16.3,-116.6],"shR":[-62.1,-99.6],"elR":[-93.7,-2.8],"haR":[-106,51.4],"shL":[56,-87.5],"elL":[89.6,11.3],"haL":[44.8,56.8],"hipR":[-31.5,38.1],"knR":[-92.2,149.2],"ftR":[-88.4,295.8],"hipL":[24.6,39.2],"knL":[13.3,149.3],"ftL":[48.8,299.9]},{"rootY":40,"hips":[0,0],"chest":[-6.7,-70.2],"neck":[-6.7,-70.2],"head":[-16.2,-118.2],"shR":[-62.2,-100],"elR":[-94.2,-1.8],"haR":[-106.1,51.6],"shL":[56.2,-88.9],"elL":[89.5,10.3],"haL":[44.7,55.2],"hipR":[-31.6,38.2],"knR":[-93.2,148],"ftR":[-88.2,294.1],"hipL":[24.6,38.9],"knL":[14.1,147.9],"ftL":[48.9,298.5]},{"rootY":41.1,"hips":[0,0],"chest":[-6.7,-71],"neck":[-6.7,-71],"head":[-16,-120],"shR":[-62.3,-100.3],"elR":[-94.8,-0.6],"haR":[-106.4,52],"shL":[56.2,-90.5],"elL":[89,8.9],"haL":[44.2,53.3],"hipR":[-31.9,38.2],"knR":[-94.5,146.5],"ftR":[-88.3,292.4],"hipL":[24.4,38.6],"knL":[14.7,146.7],"ftL":[48.9,297.3]},{"rootY":42.2,"hips":[0,0],"chest":[-6.7,-71.7],"neck":[-6.7,-71.7],"head":[-16,-122.1],"shR":[-62.4,-100.4],"elR":[-95.8,1],"haR":[-107,52.7],"shL":[56,-92.4],"elL":[88.1,7.4],"haL":[43.5,51.5],"hipR":[-32,38.2],"knR":[-95.6,145.2],"ftR":[-88.3,290.8],"hipL":[24.3,38.2],"knL":[14.9,145.6],"ftL":[48.9,296.2]},{"rootY":43.3,"hips":[0,0],"chest":[-6.8,-72.4],"neck":[-6.8,-72.4],"head":[-16,-124.1],"shR":[-62.5,-100.8],"elR":[-96.9,2.5],"haR":[-107.3,53.3],"shL":[55.9,-94],"elL":[86.9,6.1],"haL":[42.6,49.7],"hipR":[-32,38.3],"knR":[-97.1,143.9],"ftR":[-88.6,289.3],"hipL":[24.2,37.8],"knL":[15,144.4],"ftL":[48.6,295.1]},{"rootY":44.5,"hips":[0,0],"chest":[-6.9,-73],"neck":[-6.9,-73],"head":[-16.1,-126.1],"shR":[-62.6,-101],"elR":[-97.9,4.1],"haR":[-107.6,54],"shL":[55.6,-95.5],"elL":[85.5,4.8],"haL":[41.2,48],"hipR":[-32.3,38.1],"knR":[-98.4,142.2],"ftR":[-89.2,287.6],"hipL":[23.9,37.5],"knL":[14.8,143.2],"ftL":[48.2,294]},{"rootY":45.4,"hips":[0,0],"chest":[-6.9,-73.7],"neck":[-6.9,-73.7],"head":[-16.3,-128.1],"shR":[-62.4,-101.6],"elR":[-98.9,5],"haR":[-107.8,53.9],"shL":[55.4,-96.7],"elL":[84.2,3.8],"haL":[39.7,46.5],"hipR":[-32.5,38],"knR":[-99.7,141],"ftR":[-89.8,286.3],"hipL":[23.8,37.1],"knL":[14.4,142.1],"ftL":[47.5,292.8]},{"rootY":46.7,"hips":[0,0],"chest":[-6.8,-74.2],"neck":[-6.8,-74.2],"head":[-16.2,-130],"shR":[-62,-101.9],"elR":[-99.7,5.9],"haR":[-107.7,53.6],"shL":[55.4,-97.6],"elL":[82.8,3.1],"haL":[38,45.3],"hipR":[-32.8,37.8],"knR":[-101,139.2],"ftR":[-90.5,284.6],"hipL":[23.2,37],"knL":[13.8,140.8],"ftL":[46.8,291.6]},{"rootY":47.7,"hips":[0,0],"chest":[-6.5,-74.8],"neck":[-6.5,-74.8],"head":[-15.9,-131.8],"shR":[-61.5,-102.3],"elR":[-101.1,6.1],"haR":[-107.6,52.4],"shL":[55.6,-98.7],"elL":[82.1,1.8],"haL":[36.4,43.3],"hipR":[-32.9,37.8],"knR":[-102.4,137.9],"ftR":[-91.3,283.3],"hipL":[23.1,36.4],"knL":[13.3,139.8],"ftL":[46.1,290.5]},{"rootY":48.9,"hips":[0,0],"chest":[-6.2,-75.2],"neck":[-6.2,-75.2],"head":[-15.5,-133.3],"shR":[-61,-102.7],"elR":[-102.7,5.9],"haR":[-107.5,50.7],"shL":[55.9,-99.4],"elL":[81.9,0.7],"haL":[35.1,41.4],"hipR":[-33.4,37.4],"knR":[-103.6,136.2],"ftR":[-92.1,281.7],"hipL":[22.5,36.1],"knL":[12.7,138.5],"ftL":[45.5,289.3]},{"rootY":50.3,"hips":[0,0],"chest":[-5.9,-75.7],"neck":[-5.9,-75.7],"head":[-14.9,-134.7],"shR":[-60.5,-102.9],"elR":[-104.9,5.4],"haR":[-107.4,48.8],"shL":[56.2,-100.3],"elL":[82.2,-0.6],"haL":[34.4,39.3],"hipR":[-33.8,37],"knR":[-104.9,134.3],"ftR":[-93.1,279.9],"hipL":[22.1,35.8],"knL":[11.9,137],"ftL":[44.6,287.8]},{"rootY":51.3,"hips":[0,0],"chest":[-5.5,-76.1],"neck":[-5.5,-76.1],"head":[-14.2,-136.1],"shR":[-59.9,-103.2],"elR":[-107.4,4.4],"haR":[-107.4,46.4],"shL":[56.5,-101.1],"elL":[83.3,-2.4],"haL":[34.3,36.8],"hipR":[-34,36.8],"knR":[-106.3,132.9],"ftR":[-94,278.5],"hipL":[21.8,35.2],"knL":[10.9,135.8],"ftL":[43.6,286.6]},{"rootY":52.5,"hips":[0,0],"chest":[-5.3,-76.4],"neck":[-5.3,-76.4],"head":[-13.5,-137.3],"shR":[-59.4,-103.3],"elR":[-110.2,3],"haR":[-107.6,43.5],"shL":[56.7,-101.8],"elL":[85,-4.4],"haL":[34.9,34.1],"hipR":[-34.4,36.4],"knR":[-107.7,131.1],"ftR":[-95.2,276.8],"hipL":[21.4,34.8],"knL":[9.8,134.7],"ftL":[42.5,285.4]},{"rootY":53.5,"hips":[0,0],"chest":[-5.2,-76.7],"neck":[-5.2,-76.7],"head":[-12.9,-138.5],"shR":[-59.1,-103.3],"elR":[-113.4,1.5],"haR":[-108.2,40.3],"shL":[56.8,-102.4],"elL":[87.4,-6.8],"haL":[36,31.4],"hipR":[-34.8,36],"knR":[-108.9,129.2],"ftR":[-96.5,275],"hipL":[20.9,34.4],"knL":[8.5,133.5],"ftL":[41.2,284.3]},{"rootY":54.2,"hips":[0,0],"chest":[-5.1,-76.8],"neck":[-5.1,-76.8],"head":[-12.3,-139.5],"shR":[-58.9,-103.2],"elR":[-116.2,0],"haR":[-108.7,37.2],"shL":[56.9,-103],"elL":[90.3,-9.4],"haL":[37.8,28.4],"hipR":[-35.4,35.4],"knR":[-110.1,127.7],"ftR":[-97.8,273.8],"hipL":[20.2,34],"knL":[7.2,132.4],"ftL":[40,283.2]},{"rootY":54.8,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11.5,-140.5],"shR":[-58.4,-103],"elR":[-118.5,-1.5],"haR":[-109,34.3],"shL":[57.1,-103.5],"elL":[93.6,-12.2],"haL":[40.3,25.6],"hipR":[-35.7,35],"knR":[-111.3,126.4],"ftR":[-99.3,272.6],"hipL":[20,33.4],"knL":[6,131.1],"ftL":[38.9,281.9]},{"rootY":55.6,"hips":[0,0],"chest":[-4.8,-77],"neck":[-4.8,-77],"head":[-11,-141.3],"shR":[-58.2,-103],"elR":[-120.7,-2.9],"haR":[-109.9,31.8],"shL":[57.1,-103.7],"elL":[96.8,-14.9],"haL":[43.1,23.3],"hipR":[-36.2,34.4],"knR":[-112.4,124.6],"ftR":[-100.9,271.1],"hipL":[19.4,33.1],"knL":[4.7,129.7],"ftL":[37.6,280.4]},{"rootY":56.2,"hips":[0,0],"chest":[-4.5,-77.1],"neck":[-4.5,-77.1],"head":[-10.2,-141.9],"shR":[-57.7,-102.9],"elR":[-122.2,-4.3],"haR":[-110.4,29.7],"shL":[57.3,-104],"elL":[100.1,-17.4],"haL":[46.2,21.4],"hipR":[-36.2,34.3],"knR":[-113.6,123],"ftR":[-102.3,269.7],"hipL":[19.4,32.3],"knL":[3.9,127.7],"ftL":[36.3,278.7]},{"rootY":56.8,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-9.2,-142.5],"shR":[-57.2,-102.8],"elR":[-123.7,-5.8],"haR":[-111,27.8],"shL":[57.7,-104.1],"elL":[103.5,-19.9],"haL":[49.5,19.6],"hipR":[-35.4,35],"knR":[-115.1,121.4],"ftR":[-104.1,268.5],"hipL":[20.3,31.2],"knL":[3.1,125],"ftL":[34.8,276.2]},{"rootY":57.3,"hips":[0,0],"chest":[-4.1,-77.2],"neck":[-4.1,-77.2],"head":[-8.7,-142.8],"shR":[-57,-102.8],"elR":[-125.6,-7.6],"haR":[-111.9,25.9],"shL":[57.6,-104.2],"elL":[106.4,-22.4],"haL":[52.5,18.1],"hipR":[-36.8,33.5],"knR":[-116.1,119.4],"ftR":[-105.3,266.8],"hipL":[18.6,31.7],"knL":[1.9,122.5],"ftL":[34,273.6]},{"rootY":57.8,"hips":[0,0],"chest":[-3.7,-77.2],"neck":[-3.7,-77.2],"head":[-7.7,-143.2],"shR":[-56.3,-103],"elR":[-127,-9.8],"haR":[-112.4,23.8],"shL":[58,-104],"elL":[110.2,-24.9],"haL":[56.1,16.5],"hipR":[-36.9,33.2],"knR":[-117.3,117.6],"ftR":[-106.8,265.2],"hipL":[18.4,31],"knL":[1.5,119.8],"ftL":[33.2,271]},{"rootY":58.2,"hips":[0,0],"chest":[-3.6,-77.2],"neck":[-3.6,-77.2],"head":[-7,-143.4],"shR":[-56,-103.1],"elR":[-129,-12.4],"haR":[-113.3,21.2],"shL":[58,-103.8],"elL":[113.9,-27.7],"haL":[59.9,14.7],"hipR":[-37.3,32.8],"knR":[-118.6,115.5],"ftR":[-108.7,263.4],"hipL":[17.9,30.9],"knL":[0.7,116.9],"ftL":[32.6,268.2]},{"rootY":58.7,"hips":[0,0],"chest":[-3.2,-77.2],"neck":[-3.2,-77.2],"head":[-6.3,-143.6],"shR":[-55.6,-103.4],"elR":[-131.4,-15.9],"haR":[-114.6,17.9],"shL":[58.5,-103.5],"elL":[118.5,-31],"haL":[64.5,12.3],"hipR":[-37.7,32.3],"knR":[-119.6,113.6],"ftR":[-110.1,261.8],"hipL":[17.4,30.7],"knL":[0.1,114.6],"ftL":[32.2,265.9]},{"rootY":58.9,"hips":[0,0],"chest":[-2.8,-77.2],"neck":[-2.8,-77.2],"head":[-5.4,-143.6],"shR":[-55,-103.7],"elR":[-133.7,-20],"haR":[-116.1,14.1],"shL":[59,-103.2],"elL":[123.2,-34.9],"haL":[69.3,9.1],"hipR":[-37.4,32.5],"knR":[-120.7,112.2],"ftR":[-111.4,260.3],"hipL":[17.8,30],"knL":[-0.3,112.8],"ftL":[31.9,264.2]},{"rootY":59.2,"hips":[0,0],"chest":[-2.6,-77.2],"neck":[-2.6,-77.2],"head":[-4.8,-143.7],"shR":[-54.6,-103.9],"elR":[-136,-24.1],"haR":[-117.8,10.6],"shL":[59.3,-103],"elL":[127.5,-38.7],"haL":[73.9,6.4],"hipR":[-37.7,32.2],"knR":[-121.5,110.5],"ftR":[-112.4,258.9],"hipL":[17.4,30],"knL":[-1,111.4],"ftL":[31.8,262.8]},{"rootY":59.4,"hips":[0,0],"chest":[-2.4,-77.2],"neck":[-2.4,-77.2],"head":[-4.2,-143.6],"shR":[-54.3,-104.1],"elR":[-138,-28.4],"haR":[-119.2,7.2],"shL":[59.7,-102.7],"elL":[131,-42],"haL":[77.9,4.1],"hipR":[-37.9,32],"knR":[-122.2,109.3],"ftR":[-113.1,257.8],"hipL":[17.2,30],"knL":[-1.5,110.6],"ftL":[31.6,261.9]},{"rootY":59.6,"hips":[0,0],"chest":[-2.1,-77.2],"neck":[-2.1,-77.2],"head":[-3.9,-143.4],"shR":[-53.9,-104.3],"elR":[-139.5,-32.5],"haR":[-120.1,4.4],"shL":[60,-102.5],"elL":[133.9,-44.5],"haL":[81.5,2.6],"hipR":[-38,31.9],"knR":[-122.6,108.4],"ftR":[-113.5,256.9],"hipL":[17,30.1],"knL":[-2.1,110.3],"ftL":[31.4,261.5]},{"rootY":59.8,"hips":[0,0],"chest":[-1.9,-77.3],"neck":[-1.9,-77.3],"head":[-3.7,-143.3],"shR":[-53.6,-104.5],"elR":[-140.7,-35.7],"haR":[-120.5,2.9],"shL":[60.3,-102.3],"elL":[135.7,-46],"haL":[83.8,1.8],"hipR":[-38,31.8],"knR":[-122.9,107.7],"ftR":[-113.8,256.3],"hipL":[16.9,30.1],"knL":[-2.6,110.1],"ftL":[31.3,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.8,-77.3],"neck":[-1.8,-77.3],"head":[-3.4,-143],"shR":[-53.3,-104.8],"elR":[-141.3,-38],"haR":[-120.1,2.4],"shL":[60.6,-102],"elL":[136.6,-46.6],"haL":[85.1,2],"hipR":[-38.1,31.7],"knR":[-123.1,107.2],"ftR":[-113.9,255.8],"hipL":[16.8,30.1],"knL":[-2.8,110.2],"ftL":[31.1,261.2]},{"rootY":59.8,"hips":[0,0],"chest":[-1.7,-77.3],"neck":[-1.7,-77.3],"head":[-3.4,-142.7],"shR":[-53.2,-105],"elR":[-141.6,-39.1],"haR":[-119.3,2.7],"shL":[60.9,-101.8],"elL":[136.7,-45.8],"haL":[85.9,3.8],"hipR":[-38.2,31.6],"knR":[-123.3,106.7],"ftR":[-114.5,255.3],"hipL":[16.8,30.2],"knL":[-3.1,110.1],"ftL":[30.7,261.1]},{"rootY":60.1,"hips":[0,0],"chest":[-1.5,-77.3],"neck":[-1.5,-77.3],"head":[-3.3,-142.3],"shR":[-53,-105.1],"elR":[-141.3,-38.7],"haR":[-117.8,4.3],"shL":[61.1,-101.6],"elL":[135.9,-44.3],"haL":[85.3,5.8],"hipR":[-37.4,32.4],"knR":[-123.9,106.3],"ftR":[-115,254.9],"hipL":[17.8,29.6],"knL":[-3.1,109.7],"ftL":[30.4,260.8]},{"rootY":60.1,"hips":[0,0],"chest":[-1.9,-77.2],"neck":[-1.9,-77.2],"head":[-3.7,-142],"shR":[-53.3,-105.2],"elR":[-140.9,-37.4],"haR":[-116.5,6.6],"shL":[60.6,-101.5],"elL":[133.8,-42.3],"haL":[83.7,8.4],"hipR":[-38.7,31.1],"knR":[-124.1,105.4],"ftR":[-115.4,254.1],"hipL":[16.1,30.5],"knL":[-3.7,109.8],"ftL":[30.1,260.6]},{"rootY":60.5,"hips":[0,0],"chest":[-1.6,-77.2],"neck":[-1.6,-77.2],"head":[-3.6,-141.9],"shR":[-53.1,-105.3],"elR":[-139.6,-35.4],"haR":[-114.5,9.5],"shL":[60.9,-101.3],"elL":[132.1,-39.5],"haL":[82.6,11.8],"hipR":[-38.4,31.4],"knR":[-124.4,104.6],"ftR":[-115.8,253.4],"hipL":[16.5,30.3],"knL":[-3.7,109.2],"ftL":[30.2,260.1]},{"rootY":60.5,"hips":[0,0],"chest":[-1.8,-77.2],"neck":[-1.8,-77.2],"head":[-3.7,-141.9],"shR":[-53.4,-105.4],"elR":[-138.6,-33.3],"haR":[-112.7,12.5],"shL":[60.7,-101.1],"elL":[129.9,-36.7],"haL":[80.6,15],"hipR":[-38.4,31.4],"knR":[-125,103.7],"ftR":[-116.4,252.7],"hipL":[16.4,30.2],"knL":[-3.9,109],"ftL":[30.1,259.9]},{"rootY":60.8,"hips":[0,0],"chest":[-1.9,-77.1],"neck":[-1.9,-77.1],"head":[-3.7,-141.8],"shR":[-53.8,-105.3],"elR":[-137.3,-30.8],"haR":[-110.7,15.8],"shL":[60.4,-101.1],"elL":[127.7,-34.1],"haL":[78.6,17.8],"hipR":[-38.3,31.5],"knR":[-125.5,102.9],"ftR":[-116.9,252],"hipL":[16.6,30.1],"knL":[-4.1,108.6],"ftL":[29.9,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-2,-77],"neck":[-2,-77],"head":[-4,-141.8],"shR":[-54.1,-105.2],"elR":[-135.6,-28.6],"haR":[-108,18.3],"shL":[60.2,-101],"elL":[125.6,-31.5],"haL":[76.3,20.1],"hipR":[-38,31.8],"knR":[-125.9,102.4],"ftR":[-117.5,251.7],"hipL":[17,29.9],"knL":[-4.2,108.3],"ftL":[29.8,259.3]},{"rootY":60.8,"hips":[0,0],"chest":[-2.1,-77],"neck":[-2.1,-77],"head":[-4,-141.8],"shR":[-54.5,-105.2],"elR":[-134.4,-26.9],"haR":[-106.7,20],"shL":[60.1,-101],"elL":[124.5,-29.7],"haL":[74.6,21.3],"hipR":[-37.9,31.9],"knR":[-126.3,102],"ftR":[-117.9,251.3],"hipL":[17.1,30],"knL":[-4.2,108.2],"ftL":[29.6,259.3]},{"rootY":61,"hips":[0,0],"chest":[-2.4,-76.9],"neck":[-2.4,-76.9],"head":[-4.1,-141.9],"shR":[-55,-105.1],"elR":[-133.9,-26],"haR":[-106.6,20.8],"shL":[59.8,-100.8],"elL":[123.6,-28.6],"haL":[73.6,22.2],"hipR":[-37.7,32.2],"knR":[-126.6,101.7],"ftR":[-118.3,251],"hipL":[17.3,30],"knL":[-4.2,108.2],"ftL":[29.4,259.3]},{"rootY":60.9,"hips":[0,0],"chest":[-2.7,-76.9],"neck":[-2.7,-76.9],"head":[-4,-141.9],"shR":[-55.4,-105.1],"elR":[-134.2,-25.7],"haR":[-107,21.5],"shL":[59.5,-100.7],"elL":[123,-28.1],"haL":[73.3,23.1],"hipR":[-37.8,32.2],"knR":[-126.5,101.8],"ftR":[-118.4,251.1],"hipL":[17.2,30.2],"knL":[-4.2,108.5],"ftL":[29.3,259.5]},{"rootY":60.9,"hips":[0,0],"chest":[-2.9,-76.8],"neck":[-2.9,-76.8],"head":[-3.9,-142],"shR":[-55.6,-105.2],"elR":[-134.6,-25.5],"haR":[-107.1,22.5],"shL":[59.1,-100.5],"elL":[122.6,-27.8],"haL":[73.4,23.9],"hipR":[-37.8,32.2],"knR":[-126.4,101.9],"ftR":[-118.3,251.2],"hipL":[17.1,30.6],"knL":[-4.2,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.2,-76.7],"neck":[-3.2,-76.7],"head":[-3.5,-142.3],"shR":[-55.9,-105.3],"elR":[-135.4,-25.9],"haR":[-107.6,22.9],"shL":[58.9,-100.1],"elL":[122.6,-27.6],"haL":[73.7,24.3],"hipR":[-37.7,32.3],"knR":[-126.2,102],"ftR":[-118.2,251.2],"hipL":[17.3,30.7],"knL":[-4.1,108.7],"ftL":[29.3,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.3,-76.6],"neck":[-3.3,-76.6],"head":[-3.2,-142.5],"shR":[-56.2,-105.4],"elR":[-136.3,-26.3],"haR":[-108,23.1],"shL":[58.7,-99.7],"elL":[122.4,-27.3],"haL":[73.7,25],"hipR":[-37.7,32.3],"knR":[-126.1,102],"ftR":[-117.9,251.2],"hipL":[17.3,30.8],"knL":[-4,108.7],"ftL":[29.4,259.7]},{"rootY":60.9,"hips":[0,0],"chest":[-3.4,-76.6],"neck":[-3.4,-76.6],"head":[-3,-142.7],"shR":[-56.2,-105.4],"elR":[-137,-26.7],"haR":[-108.1,23.1],"shL":[58.4,-99.6],"elL":[122.3,-27.4],"haL":[73.7,25.1],"hipR":[-37.7,32.4],"knR":[-125.9,102],"ftR":[-117.6,251],"hipL":[17.3,31],"knL":[-4,108.7],"ftL":[29.6,259.6]},{"rootY":60.8,"hips":[0,0],"chest":[-3.5,-76.5],"neck":[-3.5,-76.5],"head":[-2.8,-143],"shR":[-56.4,-105.5],"elR":[-137.7,-27],"haR":[-108.3,23.2],"shL":[58.3,-99.3],"elL":[122.1,-27],"haL":[73.7,25.6],"hipR":[-37.5,32.7],"knR":[-125.8,102.2],"ftR":[-117.4,251.1],"hipL":[17.6,31],"knL":[-3.9,108.7],"ftL":[29.8,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.5],"neck":[-3.6,-76.5],"head":[-3.1,-143.1],"shR":[-56.6,-105.4],"elR":[-138.5,-27.4],"haR":[-108.6,23.3],"shL":[58.3,-99.2],"elL":[122,-27],"haL":[73.8,25.7],"hipR":[-37.6,32.5],"knR":[-125.6,102.2],"ftR":[-117.3,251],"hipL":[17.5,31.3],"knL":[-3.9,108.8],"ftL":[30,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.7,-76.4],"neck":[-3.7,-76.4],"head":[-3.5,-143.3],"shR":[-56.9,-105.4],"elR":[-139.1,-27.6],"haR":[-108.9,23.5],"shL":[58.3,-98.9],"elL":[122,-26.6],"haL":[73.9,26.3],"hipR":[-37.6,32.6],"knR":[-125.4,102.3],"ftR":[-117.2,250.9],"hipL":[17.5,31.4],"knL":[-3.9,109],"ftL":[30.3,259.5]},{"rootY":60.7,"hips":[0,0],"chest":[-3.6,-76.3],"neck":[-3.6,-76.3],"head":[-3.8,-143.4],"shR":[-57,-105.2],"elR":[-139.6,-27.7],"haR":[-109,23.6],"shL":[58.4,-99.1],"elL":[122.1,-26.7],"haL":[74.1,26.3],"hipR":[-37.4,32.7],"knR":[-125.1,102.5],"ftR":[-117,250.9],"hipL":[17.7,31.3],"knL":[-3.9,109],"ftL":[30.5,259.5]},{"rootY":60.6,"hips":[0,0],"chest":[-3.8,-76.3],"neck":[-3.8,-76.3],"head":[-5,-143.5],"shR":[-57.2,-105],"elR":[-140,-27.8],"haR":[-109.1,23.6],"shL":[58.1,-99.3],"elL":[122.2,-27],"haL":[74.2,26.1],"hipR":[-37.5,32.7],"knR":[-124.8,102.6],"ftR":[-116.9,251],"hipL":[17.7,31.6],"knL":[-4.1,108.9],"ftL":[30.4,259.4]},{"rootY":60.5,"hips":[0,0],"chest":[-4,-76.2],"neck":[-4,-76.2],"head":[-6,-143.6],"shR":[-57.7,-104.7],"elR":[-140.6,-27.8],"haR":[-109.4,23.8],"shL":[58,-99.5],"elL":[122.3,-27.1],"haL":[74.4,25.9],"hipR":[-37.6,32.6],"knR":[-124.6,102.8],"ftR":[-117,251.2],"hipL":[17.6,31.7],"knL":[-4.2,109.1],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.1,-76.2],"neck":[-4.1,-76.2],"head":[-7.3,-143.5],"shR":[-58.1,-104.3],"elR":[-141,-27.7],"haR":[-109.5,23.8],"shL":[57.8,-99.7],"elL":[122.4,-27.2],"haL":[74.4,25.9],"hipR":[-37.4,32.8],"knR":[-124.6,102.8],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.4,109.1],"ftL":[30.3,259.6]},{"rootY":60.5,"hips":[0,0],"chest":[-4.3,-76.1],"neck":[-4.3,-76.1],"head":[-8.5,-143.5],"shR":[-58.6,-104],"elR":[-141.3,-27.5],"haR":[-109.5,23.8],"shL":[57.7,-99.9],"elL":[122.6,-27.3],"haL":[74.6,25.7],"hipR":[-37.4,32.8],"knR":[-124.6,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.6],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.4,-76],"neck":[-4.4,-76],"head":[-9.6,-143.4],"shR":[-58.9,-103.7],"elR":[-141.4,-27.3],"haR":[-109.5,23.9],"shL":[57.6,-100],"elL":[122.8,-27.4],"haL":[74.7,25.5],"hipR":[-37.5,32.7],"knR":[-124.5,102.9],"ftR":[-117.1,251.2],"hipL":[17.8,31.7],"knL":[-4.5,109],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.4,-75.9],"neck":[-4.4,-75.9],"head":[-10.1,-143.3],"shR":[-59,-103.3],"elR":[-141.2,-27],"haR":[-109.2,24.1],"shL":[57.4,-100.3],"elL":[123,-27.6],"haL":[74.9,25.4],"hipR":[-37.4,32.8],"knR":[-124.4,102.8],"ftR":[-117,251.1],"hipL":[17.8,31.7],"knL":[-4.3,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.6,-75.9],"neck":[-4.6,-75.9],"head":[-10.4,-143.3],"shR":[-59.4,-103.1],"elR":[-141.3,-26.9],"haR":[-109.3,24.2],"shL":[57.1,-100.3],"elL":[123.3,-27.6],"haL":[75.2,25.3],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.6],"knL":[-4.2,108.9],"ftL":[30.3,259.5]},{"rootY":60.4,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-103],"elR":[-141.3,-26.6],"haR":[-109.1,24.1],"shL":[56.8,-100.3],"elL":[123.5,-27.5],"haL":[75.2,25.2],"hipR":[-37.3,32.9],"knR":[-124.4,102.9],"ftR":[-117.1,251.2],"hipL":[18,31.7],"knL":[-4.1,108.9],"ftL":[30.3,259.5]},{"rootY":60.5,"hips":[0,0],"chest":[-4.8,-75.8],"neck":[-4.8,-75.8],"head":[-10.8,-143.3],"shR":[-59.6,-102.9],"elR":[-141,-26.5],"haR":[-108.9,24.1],"shL":[56.6,-100.3],"elL":[123.9,-27.6],"haL":[75.5,25.1],"hipR":[-37.3,32.9],"knR":[-124.4,103],"ftR":[-117,251.2],"hipL":[18,31.7],"knL":[-3.7,109],"ftL":[30.3,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-4.9,-75.8],"neck":[-4.9,-75.8],"head":[-11,-143.2],"shR":[-59.7,-102.9],"elR":[-140.6,-26.3],"haR":[-108.8,24.2],"shL":[56.4,-100.3],"elL":[123.9,-27.5],"haL":[75.5,25.1],"hipR":[-37.2,33],"knR":[-124.2,103],"ftR":[-116.9,251.3],"hipL":[18.2,31.6],"knL":[-3.6,108.9],"ftL":[30.5,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.2],"shR":[-59.7,-102.9],"elR":[-140.1,-26],"haR":[-108.6,24.4],"shL":[56.3,-100.3],"elL":[124.1,-27.5],"haL":[75.6,25.1],"hipR":[-37.1,33.2],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.3,31.6],"knL":[-3.4,109],"ftL":[30.4,259.7]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.8],"neck":[-5,-75.8],"head":[-10.9,-143.3],"shR":[-59.7,-102.9],"elR":[-139.8,-25.9],"haR":[-108.4,24.3],"shL":[56.2,-100.3],"elL":[124.2,-27.5],"haL":[75.7,25],"hipR":[-37,33.3],"knR":[-124.2,103.1],"ftR":[-116.9,251.3],"hipL":[18.5,31.6],"knL":[-3.4,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.8],"neck":[-5.1,-75.8],"head":[-10.7,-143.3],"shR":[-59.6,-103],"elR":[-139.3,-25.7],"haR":[-108.1,24.3],"shL":[56.2,-100.3],"elL":[124.3,-27.5],"haL":[75.7,24.8],"hipR":[-36.8,33.4],"knR":[-124.2,103.1],"ftR":[-116.8,251.3],"hipL":[18.6,31.5],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5,-75.9],"neck":[-5,-75.9],"head":[-10.5,-143.3],"shR":[-59.6,-103],"elR":[-138.8,-25.5],"haR":[-107.9,24.3],"shL":[56.2,-100.4],"elL":[124.4,-27.7],"haL":[75.7,24.7],"hipR":[-36.6,33.6],"knR":[-124.3,103.2],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.3,108.9],"ftL":[30.6,259.6]},{"rootY":60.4,"hips":[0,0],"chest":[-5.1,-75.9],"neck":[-5.1,-75.9],"head":[-10.5,-143.4],"shR":[-59.6,-103.1],"elR":[-138.5,-25.5],"haR":[-107.8,24.1],"shL":[56.1,-100.4],"elL":[124.5,-27.6],"haL":[75.8,24.7],"hipR":[-36.6,33.6],"knR":[-124.4,103.3],"ftR":[-116.8,251.4],"hipL":[18.9,31.3],"knL":[-3.4,109],"ftL":[30.6,259.7]}]},"twist":{"name":"twist","fps":30,"height":520,"groundY":329,"frameCount":143,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.8,-85.6],"neck":[0.8,-85.6],"head":[0.6,-164.3],"shR":[-68.1,-121.8],"elR":[-162.5,-108.5],"haR":[-233.5,-98.5],"shL":[76,-117],"elL":[171.2,-103.7],"haL":[243.5,-93.5],"hipR":[-69.8,34.9],"knR":[-67.3,174.6],"ftR":[-64.7,326.9],"hipL":[69.7,34.9],"knL":[67.4,172],"ftL":[64.6,329.1]},{"rootY":0,"hips":[0,0],"chest":[-14.9,-83.9],"neck":[-14.9,-83.9],"head":[6.3,-160],"shR":[27.6,-120.5],"elR":[55.4,-30.2],"haR":[35.4,33.1],"shL":[-54.3,-114.3],"elL":[-56.3,-20],"haL":[-97.2,40],"hipR":[25.3,40.9],"knR":[34.5,180.2],"ftR":[61.5,330.1],"hipL":[-66.6,39.1],"knL":[-29.8,171.1],"ftL":[10.8,322.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-14.9,-83.7],"neck":[-14.9,-83.7],"head":[6.1,-160.1],"shR":[27.4,-120.3],"elR":[52.7,-29.7],"haR":[26.4,31.4],"shL":[-54.4,-114.1],"elL":[-52.1,-20.4],"haL":[-89.8,42.1],"hipR":[27.6,40.6],"knR":[34.8,179.9],"ftR":[61.2,330],"hipL":[-67.3,39.6],"knL":[-30.3,171.5],"ftL":[10.9,322.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-14.8,-83.5],"neck":[-14.8,-83.5],"head":[6,-159.9],"shR":[27.5,-119.8],"elR":[50.1,-28.8],"haR":[19.7,30.9],"shL":[-54.1,-114.4],"elL":[-49.5,-21.4],"haL":[-82.8,43.3],"hipR":[29.2,40.7],"knR":[35.3,180],"ftR":[61.1,330.2],"hipL":[-68.1,39.6],"knL":[-30.5,171.4],"ftL":[11.9,322.3]},{"rootY":-0.3,"hips":[0,0],"chest":[-14.6,-83.5],"neck":[-14.6,-83.5],"head":[5.9,-159.9],"shR":[28.2,-119.1],"elR":[48.7,-27.9],"haR":[15.8,30.9],"shL":[-54.1,-115],"elL":[-48.5,-22.3],"haL":[-76.6,43.9],"hipR":[29.9,40.9],"knR":[35.9,180.2],"ftR":[61.3,330.4],"hipL":[-68.4,39.4],"knL":[-30.4,171.1],"ftL":[12.8,321.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-14.9,-83.3],"neck":[-14.9,-83.3],"head":[5.3,-159.8],"shR":[28.8,-118.1],"elR":[48.7,-26.7],"haR":[15.1,31.9],"shL":[-54.7,-115.8],"elL":[-49,-23.3],"haL":[-74.3,43.5],"hipR":[29.7,40.7],"knR":[35.8,180.1],"ftR":[60.6,330.4],"hipL":[-68.1,39.7],"knL":[-30.9,171.6],"ftL":[11,322.7]},{"rootY":-1.1,"hips":[0,0],"chest":[-15.1,-83.5],"neck":[-15.1,-83.5],"head":[3.2,-160.7],"shR":[31.7,-115.2],"elR":[52.9,-23.9],"haR":[20.4,35.5],"shL":[-56.9,-119.2],"elL":[-50.4,-26.4],"haL":[-76.2,40.4],"hipR":[28.8,40.6],"knR":[35.8,180],"ftR":[60.5,330.4],"hipL":[-67.6,39.9],"knL":[-30.3,171.8],"ftL":[11.7,322.8]},{"rootY":-1.5,"hips":[0,0],"chest":[-15.6,-83.5],"neck":[-15.6,-83.5],"head":[-0.2,-160.9],"shR":[33.3,-113.3],"elR":[56.5,-22.4],"haR":[27.7,39.3],"shL":[-58.6,-121.1],"elL":[-52.2,-28],"haL":[-81.7,38.2],"hipR":[27.5,40.3],"knR":[35.7,179.8],"ftR":[60.1,330.1],"hipL":[-66.9,40.1],"knL":[-30,172.1],"ftL":[11.5,323.3]},{"rootY":-2,"hips":[0,0],"chest":[-15.7,-83.6],"neck":[-15.7,-83.6],"head":[-1.8,-161],"shR":[34.6,-112.6],"elR":[58.6,-21.7],"haR":[35.5,42.7],"shL":[-59.3,-122.1],"elL":[-53.6,-28.5],"haL":[-87.6,36.1],"hipR":[26.3,39.9],"knR":[36.1,179.2],"ftR":[59.7,329.6],"hipL":[-66.2,40.4],"knL":[-30.1,172.6],"ftL":[10.1,324.1]},{"rootY":-2,"hips":[0,0],"chest":[-15.6,-83.8],"neck":[-15.6,-83.8],"head":[-2,-160.8],"shR":[34.8,-112.7],"elR":[59.6,-21.8],"haR":[42.1,44.5],"shL":[-59,-122.3],"elL":[-55.4,-28],"haL":[-92.5,34.7],"hipR":[25.2,39.3],"knR":[37,178.5],"ftR":[59.4,329],"hipL":[-65.8,40.5],"knL":[-29.9,172.8],"ftL":[9.9,324.5]},{"rootY":-2.1,"hips":[0,0],"chest":[-15.9,-83.9],"neck":[-15.9,-83.9],"head":[-2.7,-160.6],"shR":[34.8,-112.7],"elR":[60.6,-21.9],"haR":[46.8,45.2],"shL":[-59.1,-122.2],"elL":[-57.9,-27.4],"haL":[-96.5,33.9],"hipR":[24.5,38.7],"knR":[37,177.8],"ftR":[58.8,328.4],"hipL":[-65.6,40.7],"knL":[-30.5,173.1],"ftL":[8.3,325.1]},{"rootY":-2.2,"hips":[0,0],"chest":[-15.6,-84.1],"neck":[-15.6,-84.1],"head":[-2.3,-160.6],"shR":[35.2,-113.6],"elR":[62.3,-23],"haR":[49.3,44],"shL":[-58.8,-121.7],"elL":[-59.1,-26.5],"haL":[-98.4,33.7],"hipR":[24,38.2],"knR":[37.1,177.1],"ftR":[58.5,327.7],"hipL":[-65.6,40.7],"knL":[-30,173],"ftL":[9.3,325]},{"rootY":-2,"hips":[0,0],"chest":[-15.3,-84.2],"neck":[-15.3,-84.2],"head":[-1.6,-160.5],"shR":[35.3,-114.6],"elR":[63.2,-24.3],"haR":[49.4,42.1],"shL":[-58.6,-120.7],"elL":[-59.1,-25.6],"haL":[-98.3,34.6],"hipR":[23.9,37.5],"knR":[36.4,176.4],"ftR":[57.8,326.9],"hipL":[-65.6,41.1],"knL":[-29.9,173.4],"ftL":[9.7,325.3]},{"rootY":-1.9,"hips":[0,0],"chest":[-15.2,-84.2],"neck":[-15.2,-84.2],"head":[-1.4,-160.6],"shR":[35.4,-115.5],"elR":[63.2,-25.1],"haR":[48.4,40.3],"shL":[-58.4,-119.9],"elL":[-58.6,-24.9],"haL":[-96.8,36.1],"hipR":[24.5,37.4],"knR":[35.5,176.5],"ftR":[57.3,326.9],"hipL":[-65.9,41.1],"knL":[-30.4,173.3],"ftL":[9.4,325.3]},{"rootY":-1.8,"hips":[0,0],"chest":[-14.8,-84.3],"neck":[-14.8,-84.3],"head":[-1.3,-160.6],"shR":[35.5,-116.3],"elR":[62.5,-25.8],"haR":[47,39],"shL":[-58.2,-119.1],"elL":[-57.6,-24],"haL":[-94.7,38.2],"hipR":[25.3,37.4],"knR":[34.8,176.6],"ftR":[56.7,327],"hipL":[-66.4,41],"knL":[-30.6,173.1],"ftL":[9.7,324.9]},{"rootY":-1.6,"hips":[0,0],"chest":[-14.7,-84.3],"neck":[-14.7,-84.3],"head":[-1.3,-160.6],"shR":[35.3,-117],"elR":[62,-26.5],"haR":[45.1,37.8],"shL":[-58.1,-118.5],"elL":[-56.9,-23.5],"haL":[-92,40.3],"hipR":[25.9,37.7],"knR":[34.7,177],"ftR":[56.1,327.4],"hipL":[-66.8,40.7],"knL":[-30.7,172.6],"ftL":[10.2,324.3]},{"rootY":-1.5,"hips":[0,0],"chest":[-14.3,-84.3],"neck":[-14.3,-84.3],"head":[-1.4,-160.7],"shR":[35.3,-117.6],"elR":[62.2,-27.2],"haR":[43.7,36.6],"shL":[-57.9,-117.9],"elL":[-54,-23.3],"haL":[-88.4,41],"hipR":[26.8,37.8],"knR":[33.8,177.2],"ftR":[55.6,327.4],"hipL":[-67.1,40.8],"knL":[-31.3,172.8],"ftL":[9.4,324.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-13.8,-84.2],"neck":[-13.8,-84.2],"head":[-1.3,-160.5],"shR":[35.1,-118.1],"elR":[62.7,-27.9],"haR":[42.4,35.5],"shL":[-57.5,-117.3],"elL":[-48.6,-23.6],"haL":[-85,39.6],"hipR":[27.9,38],"knR":[32.3,177.6],"ftR":[55.3,327.6],"hipL":[-67.5,40.8],"knL":[-31.8,172.7],"ftL":[8.8,324.5]},{"rootY":-0.8,"hips":[0,0],"chest":[-12.8,-84.2],"neck":[-12.8,-84.2],"head":[-0.5,-160.4],"shR":[35.3,-118.2],"elR":[63.7,-28.4],"haR":[41,34.1],"shL":[-56.2,-117.2],"elL":[-42.5,-24.6],"haL":[-80.7,37.6],"hipR":[29.6,38.9],"knR":[30.7,178.6],"ftR":[55.9,328.1],"hipL":[-68.6,40],"knL":[-33.1,172],"ftL":[7.3,323.8]},{"rootY":-0.2,"hips":[0,0],"chest":[-11.7,-84],"neck":[-11.7,-84],"head":[0.4,-160.2],"shR":[35.4,-118.3],"elR":[66,-29.6],"haR":[37.3,29.9],"shL":[-54.7,-116.9],"elL":[-34.5,-26.4],"haL":[-72.1,34.7],"hipR":[32.3,41],"knR":[28.4,180.4],"ftR":[57.2,329.1],"hipL":[-70.5,38.4],"knL":[-36.7,171],"ftL":[1.3,323.4]},{"rootY":0.9,"hips":[0,0],"chest":[-11.1,-83.4],"neck":[-11.1,-83.4],"head":[1.3,-159.2],"shR":[33.6,-119.3],"elR":[66.5,-31.9],"haR":[32.1,23],"shL":[-53.2,-114.8],"elL":[-28.8,-26.5],"haL":[-63.6,29.9],"hipR":[34.1,43.4],"knR":[25.3,182.2],"ftR":[56.8,329.9],"hipL":[-72.5,36],"knL":[-45,170.2],"ftL":[-12.5,323.6]},{"rootY":0.9,"hips":[0,0],"chest":[-13.7,-83.4],"neck":[-13.7,-83.4],"head":[0.1,-159.3],"shR":[30.8,-117.8],"elR":[74.5,-34.7],"haR":[44.5,17],"shL":[-54.9,-116.4],"elL":[-33.5,-27.9],"haL":[-76.2,18.8],"hipR":[30.5,43.6],"knR":[19.8,182.5],"ftR":[54.3,328.8],"hipL":[-71.8,35],"knL":[-55.2,171],"ftL":[-23.6,323.8]},{"rootY":0.2,"hips":[0,0],"chest":[-19.9,-83.3],"neck":[-19.9,-83.3],"head":[-3.9,-160],"shR":[25.3,-114.2],"elR":[84.5,-40],"haR":[72.1,12.5],"shL":[-60.2,-119.8],"elL":[-55.1,-27.9],"haL":[-117.4,2.8],"hipR":[16.1,38.4],"knR":[6.8,177.8],"ftR":[51.8,320.7],"hipL":[-61.5,40.6],"knL":[-70.6,176.6],"ftL":[-36.5,327.8]},{"rootY":2,"hips":[0,0],"chest":[-25.9,-81.8],"neck":[-25.9,-81.8],"head":[-10.6,-160],"shR":[20.2,-110.5],"elR":[89.3,-44.8],"haR":[102.4,9],"shL":[-65.5,-120.6],"elL":[-89.7,-28.7],"haL":[-162.3,-20.2],"hipR":[-5.5,31.1],"knR":[-9,170.5],"ftR":[55.8,307.3],"hipL":[-45.3,47.2],"knL":[-81.8,178.4],"ftL":[-43.9,330]},{"rootY":6.9,"hips":[0,0],"chest":[-29.4,-79.9],"neck":[-29.4,-79.9],"head":[-13.8,-158.5],"shR":[16.4,-108],"elR":[90.5,-48.3],"haR":[124.3,2.8],"shL":[-68.9,-119.3],"elL":[-120.3,-38.5],"haL":[-190.3,-48.1],"hipR":[-19.2,27.4],"knR":[-14.7,166.5],"ftR":[56.9,300.7],"hipL":[-32.3,51.9],"knL":[-86.3,177.6],"ftL":[-48.1,330]},{"rootY":12.9,"hips":[0,0],"chest":[-31.6,-78.6],"neck":[-31.6,-78.6],"head":[-13.4,-156.7],"shR":[13.2,-108.4],"elR":[89.2,-50.9],"haR":[126.5,-4.3],"shL":[-71.3,-116.5],"elL":[-130.2,-45.2],"haL":[-195,-61.6],"hipR":[-20.6,23.7],"knR":[-11.2,162.3],"ftR":[56.3,298.5],"hipL":[-28.2,56.6],"knL":[-90.9,178.3],"ftL":[-51.7,330.4]},{"rootY":14.3,"hips":[0,0],"chest":[-33,-78.8],"neck":[-33,-78.8],"head":[-15.6,-157],"shR":[12.4,-109.5],"elR":[85.5,-50],"haR":[104.2,-7.3],"shL":[-74.8,-115.7],"elL":[-126.1,-37.4],"haL":[-189.9,-52.6],"hipR":[-8,22.9],"knR":[-11.6,162.2],"ftR":[55.7,298.1],"hipL":[-36.3,57.3],"knL":[-98.5,178.4],"ftL":[-51.8,327.4]},{"rootY":13.6,"hips":[0,0],"chest":[-31.1,-79.8],"neck":[-31.1,-79.8],"head":[-15.3,-158.4],"shR":[13.7,-113.3],"elR":[71.2,-48.1],"haR":[57.8,-15.4],"shL":[-75.4,-114],"elL":[-114.2,-26.1],"haL":[-185.3,-34.2],"hipR":[14.6,28.9],"knR":[-11.1,165.9],"ftR":[54.3,301.1],"hipL":[-51.9,52.3],"knL":[-96.4,176.4],"ftL":[-50,318]},{"rootY":17,"hips":[0,0],"chest":[-23.4,-80],"neck":[-23.4,-80],"head":[-9.9,-158.9],"shR":[18.5,-119.8],"elR":[49.1,-51.8],"haR":[8.2,-33.1],"shL":[-69.2,-107.3],"elL":[-88,-16.2],"haL":[-159.6,-19.3],"hipR":[37.3,38.8],"knR":[7.6,170.5],"ftR":[53,308],"hipL":[-68.3,43.3],"knL":[-82.3,171.9],"ftL":[-54.8,301.3]},{"rootY":24.4,"hips":[0,0],"chest":[-16.1,-78.6],"neck":[-16.1,-78.6],"head":[-6,-157.9],"shR":[23.1,-122.3],"elR":[30.2,-58.2],"haR":[-25.3,-52.4],"shL":[-62.3,-101.4],"elL":[-62.6,-14.4],"haL":[-124,-13.3],"hipR":[49.8,46.2],"knR":[28,175.2],"ftR":[48.6,318.7],"hipL":[-76.2,36.3],"knL":[-70.2,169],"ftL":[-47.4,294.2]},{"rootY":32.1,"hips":[0,0],"chest":[-14.6,-77.2],"neck":[-14.6,-77.2],"head":[-5.4,-156.6],"shR":[24,-120],"elR":[22.5,-59.5],"haR":[-36.8,-61.4],"shL":[-61.4,-101],"elL":[-51.1,-19.2],"haL":[-103.7,-18.1],"hipR":[52.5,46.5],"knR":[33.3,170.3],"ftR":[52.5,312.9],"hipL":[-77,35.5],"knL":[-68.9,168],"ftL":[-41.8,290.8]},{"rootY":38.6,"hips":[0,0],"chest":[-19.6,-78],"neck":[-19.6,-78],"head":[-9.1,-157.6],"shR":[18.9,-119.7],"elR":[32.4,-55.6],"haR":[-21.2,-56.4],"shL":[-66.4,-103.2],"elL":[-65.2,-19.2],"haL":[-122.7,-26.1],"hipR":[47.4,43.6],"knR":[21.2,166.4],"ftR":[53.1,304.2],"hipL":[-73.8,39.4],"knL":[-76.4,167.9],"ftL":[-41.8,289.4]},{"rootY":40,"hips":[0,0],"chest":[-30.7,-77.5],"neck":[-30.7,-77.5],"head":[-19.2,-157],"shR":[7.5,-118.6],"elR":[49,-51.4],"haR":[10.8,-46.3],"shL":[-77.6,-103.2],"elL":[-99,-17.2],"haL":[-165.6,-31.8],"hipR":[35.1,34.9],"knR":[-6.1,161.2],"ftR":[55.6,290.2],"hipL":[-63.9,47.9],"knL":[-92.7,169.4],"ftL":[-41.9,294]},{"rootY":40.5,"hips":[0,0],"chest":[-41.6,-74.5],"neck":[-41.6,-74.5],"head":[-30.6,-153.9],"shR":[-0.9,-112.3],"elR":[64.3,-48.3],"haR":[49.3,-37.3],"shL":[-90.8,-104],"elL":[-134.4,-20.4],"haL":[-204.4,-41.1],"hipR":[16.9,23],"knR":[-26.7,154.5],"ftR":[60.3,275.2],"hipL":[-49.5,57.6],"knL":[-106.9,170.1],"ftL":[-45.2,301.9]},{"rootY":44,"hips":[0,0],"chest":[-48.2,-70.7],"neck":[-48.2,-70.7],"head":[-37.6,-150],"shR":[-7.1,-107.4],"elR":[69.8,-51.2],"haR":[79.9,-32.7],"shL":[-99,-101.3],"elL":[-154.3,-22.6],"haL":[-222.2,-45.1],"hipR":[0.4,18.6],"knR":[-33.1,154.1],"ftR":[63,270.3],"hipL":[-36,62.5],"knL":[-114.4,164.8],"ftL":[-53.3,302.2]},{"rootY":48.6,"hips":[0,0],"chest":[-50.7,-69.1],"neck":[-50.7,-69.1],"head":[-41.6,-148.8],"shR":[-13.7,-109.1],"elR":[66.3,-57.2],"haR":[85.7,-35.5],"shL":[-100.7,-95.8],"elL":[-156.4,-17.9],"haL":[-222,-37.4],"hipR":[-0.9,23.1],"knR":[-34.1,158.6],"ftR":[56.7,276.2],"hipL":[-32.6,61.2],"knL":[-116.7,158.4],"ftL":[-56.7,297.1]},{"rootY":51,"hips":[0,0],"chest":[-50.2,-69.3],"neck":[-50.2,-69.3],"head":[-43.9,-149.3],"shR":[-15.8,-111.9],"elR":[60,-57.4],"haR":[63.9,-44.4],"shL":[-99.7,-92.7],"elL":[-145.6,-8.2],"haL":[-214.6,-22.2],"hipR":[13.3,31.7],"knR":[-36.4,160.8],"ftR":[41.3,281.6],"hipL":[-42,55.6],"knL":[-113.7,156.7],"ftL":[-55.3,292.6]},{"rootY":51.1,"hips":[0,0],"chest":[-46.5,-69.7],"neck":[-46.5,-69.7],"head":[-43.3,-150.1],"shR":[-16.9,-116.8],"elR":[43.1,-58.1],"haR":[22.9,-54.7],"shL":[-94.4,-87.4],"elL":[-126.1,1.5],"haL":[-198.6,-6.9],"hipR":[28.9,40.5],"knR":[-26.2,162],"ftR":[21.6,291.4],"hipL":[-58.2,46.9],"knL":[-99.5,157.7],"ftL":[-55.8,284.5]},{"rootY":51.2,"hips":[0,0],"chest":[-39.6,-69.7],"neck":[-39.6,-69.7],"head":[-39.5,-150.1],"shR":[-13.9,-120],"elR":[21.8,-61.7],"haR":[-17.3,-64.7],"shL":[-87.1,-82.8],"elL":[-94.5,5.3],"haL":[-163,4.7],"hipR":[42.8,44],"knR":[-7.1,160],"ftR":[20.5,295.3],"hipL":[-69.7,42],"knL":[-85.1,159.1],"ftL":[-60.4,273.1]},{"rootY":50.3,"hips":[0,0],"chest":[-34.5,-70.1],"neck":[-34.5,-70.1],"head":[-36.4,-150.3],"shR":[-9.7,-120.7],"elR":[12.5,-67.8],"haR":[-36.1,-72.5],"shL":[-82.1,-82.5],"elL":[-71.1,0.8],"haL":[-129.9,5.6],"hipR":[51.3,42.4],"knR":[8.6,159.1],"ftR":[26.1,296.5],"hipL":[-72.5,42.4],"knL":[-77.2,164.8],"ftL":[-59.9,275]},{"rootY":46.4,"hips":[0,0],"chest":[-35.4,-71.5],"neck":[-35.4,-71.5],"head":[-37,-151.7],"shR":[-10.2,-121.9],"elR":[17.3,-70.8],"haR":[-29.5,-76.3],"shL":[-82.7,-84.3],"elL":[-75.3,0],"haL":[-131.5,-4.5],"hipR":[50.2,41.2],"knR":[10.4,160.3],"ftR":[28.3,297.1],"hipL":[-71.7,43.3],"knL":[-77.7,168.3],"ftL":[-59.3,283.6]},{"rootY":37.3,"hips":[0,0],"chest":[-39.9,-73.1],"neck":[-39.9,-73.1],"head":[-39.7,-153.5],"shR":[-14.4,-123.6],"elR":[34.2,-70.7],"haR":[1,-77.5],"shL":[-85.6,-86.2],"elL":[-100,0.6],"haL":[-161.7,-16.5],"hipR":[41.9,36.5],"knR":[1.2,162.6],"ftR":[35.2,297.6],"hipL":[-65.7,47.9],"knL":[-86.4,172.7],"ftL":[-65.5,296.8]},{"rootY":23.9,"hips":[0,0],"chest":[-45.9,-72.5],"neck":[-45.9,-72.5],"head":[-43.6,-152.8],"shR":[-16.7,-122.1],"elR":[52.2,-70.7],"haR":[40.1,-81.4],"shL":[-93,-87.2],"elL":[-131.2,-3.3],"haL":[-196.4,-31.2],"hipR":[27.5,24.9],"knR":[-7.7,159.1],"ftR":[38.1,294.2],"hipL":[-52.9,57.5],"knL":[-102.6,180.2],"ftL":[-79.4,317.8]},{"rootY":12.2,"hips":[0,0],"chest":[-48.5,-70],"neck":[-48.5,-70],"head":[-42.8,-150],"shR":[-10.8,-117],"elR":[67.3,-70.3],"haR":[76.3,-88.5],"shL":[-99.7,-88.5],"elL":[-155.8,-11.6],"haL":[-218.9,-48.4],"hipR":[7.6,14.3],"knR":[0.5,153.8],"ftR":[45.8,293.2],"hipL":[-39.5,64.8],"knL":[-103.2,185.8],"ftL":[-86.7,333.8]},{"rootY":7.2,"hips":[0,0],"chest":[-47.8,-69.4],"neck":[-47.8,-69.4],"head":[-39.5,-149.1],"shR":[-7.5,-115.8],"elR":[75.1,-76],"haR":[94.4,-106.4],"shL":[-97.9,-88.7],"elL":[-163.7,-18.7],"haL":[-223.2,-60.3],"hipR":[-4.5,12.5],"knR":[6.6,151.6],"ftR":[53.4,294.6],"hipL":[-30.1,67.3],"knL":[-89.3,190.9],"ftL":[-85.6,342.7]},{"rootY":9,"hips":[0,0],"chest":[-43.9,-72.2],"neck":[-43.9,-72.2],"head":[-34.6,-151.9],"shR":[-4.8,-120.2],"elR":[77.4,-88.1],"haR":[90.5,-133.9],"shL":[-91.6,-89.4],"elL":[-153.9,-16.8],"haL":[-211.4,-61.2],"hipR":[-0.3,16.1],"knR":[15.7,154.5],"ftR":[54.9,300.2],"hipL":[-32.6,65.3],"knL":[-92.8,188.4],"ftL":[-84.3,339.9]},{"rootY":8.1,"hips":[0,0],"chest":[-39.4,-75.8],"neck":[-39.4,-75.8],"head":[-29.7,-155.4],"shR":[-0.5,-124.6],"elR":[73.9,-100.7],"haR":[67.1,-157.3],"shL":[-86.8,-91.9],"elL":[-137.2,-10.2],"haL":[-195.4,-54.3],"hipR":[14.4,16.9],"knR":[26.4,155.7],"ftR":[56.5,303.6],"hipL":[-44,62.8],"knL":[-96.5,189.3],"ftL":[-81,339.2]},{"rootY":2.5,"hips":[0,0],"chest":[-31.6,-79.9],"neck":[-31.6,-79.9],"head":[-22.7,-159.4],"shR":[5.8,-132.6],"elR":[65.3,-114.3],"haR":[38.1,-172.5],"shL":[-79.4,-90.7],"elL":[-106.2,-1.6],"haL":[-165.3,-41.3],"hipR":[34.8,28],"knR":[29.3,167.5],"ftR":[62.6,314.2],"hipL":[-60.7,53],"knL":[-84.3,188],"ftL":[-67.8,337.5]},{"rootY":-3.2,"hips":[0,0],"chest":[-22.2,-82.3],"neck":[-22.2,-82.3],"head":[-15.1,-161.3],"shR":[14,-138.3],"elR":[54.2,-125.8],"haR":[14.7,-182.5],"shL":[-70.4,-88],"elL":[-70.4,1.7],"haL":[-125.6,-31.7],"hipR":[47.2,37.8],"knR":[36.1,175.7],"ftR":[66.6,322.3],"hipL":[-72.8,42],"knL":[-70.9,179],"ftL":[-58,324]},{"rootY":-3.7,"hips":[0,0],"chest":[-15.2,-83.3],"neck":[-15.2,-83.3],"head":[-8.4,-161.8],"shR":[22.9,-139.1],"elR":[51.3,-132.9],"haR":[4.6,-186.2],"shL":[-65.5,-89.3],"elL":[-53.2,-2.5],"haL":[-101.9,-32.3],"hipR":[53.5,40.2],"knR":[43.6,177.9],"ftR":[62.4,326.4],"hipL":[-75.5,38.6],"knL":[-67.7,174.6],"ftL":[-60.7,318.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-12.7,-83.8],"neck":[-12.7,-83.8],"head":[-4,-162],"shR":[28.8,-136.8],"elR":[60.9,-131.9],"haR":[11.4,-182.5],"shL":[-64.2,-93.8],"elL":[-67.2,-7.4],"haL":[-116,-47.5],"hipR":[53,41.5],"knR":[48.8,178.9],"ftR":[69.7,328.1],"hipL":[-76.2,37.2],"knL":[-66.1,172.2],"ftL":[-54.3,320.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-4.5,-161.9],"shR":[28.9,-133.5],"elR":[77.2,-119],"haR":[33,-171.9],"shL":[-68.9,-98.3],"elL":[-100.8,-16.5],"haL":[-148.9,-67.8],"hipR":[45.8,34.9],"knR":[49.7,173.8],"ftR":[74.2,323.1],"hipL":[-72.4,42.6],"knL":[-68.3,179.5],"ftL":[-52.7,329.5]},{"rootY":-3.7,"hips":[0,0],"chest":[-24.5,-82.4],"neck":[-24.5,-82.4],"head":[-9.2,-160.1],"shR":[26.1,-125.2],"elR":[93.5,-97.4],"haR":[62.9,-153.8],"shL":[-79,-105.6],"elL":[-138.7,-34.8],"haL":[-179.4,-95.4],"hipR":[29.2,20.1],"knR":[47,158.5],"ftR":[73.2,308.1],"hipL":[-59.4,55.3],"knL":[-80.3,190.1],"ftL":[-56.2,339.3]},{"rootY":-7.2,"hips":[0,0],"chest":[-32.3,-79.1],"neck":[-32.3,-79.1],"head":[-13.2,-156.1],"shR":[22.8,-113.8],"elR":[100.2,-73.8],"haR":[89.8,-131.6],"shL":[-85,-111.5],"elL":[-161.7,-53.8],"haL":[-194.1,-118.4],"hipR":[11.5,10.4],"knR":[46.7,145.5],"ftR":[77.2,294.7],"hipL":[-46.2,63.5],"knL":[-75.7,195.7],"ftL":[-52.1,346.3]},{"rootY":-9,"hips":[0,0],"chest":[-33.8,-78.2],"neck":[-33.8,-78.2],"head":[-11.9,-154.6],"shR":[20.2,-111.8],"elR":[96.9,-62.5],"haR":[104.3,-118.9],"shL":[-83.8,-111.7],"elL":[-163.2,-58.1],"haL":[-191.5,-122.5],"hipR":[7.2,17.8],"knR":[47.4,151.4],"ftR":[84.4,298.8],"hipL":[-43.2,61],"knL":[-66,190.4],"ftL":[-37.6,340.5]},{"rootY":-8.3,"hips":[0,0],"chest":[-30.3,-80.1],"neck":[-30.3,-80.1],"head":[-10,-156.6],"shR":[22.2,-116.5],"elR":[91.2,-64.7],"haR":[96.2,-123.7],"shL":[-80.4,-110.4],"elL":[-154.2,-49],"haL":[-185,-111.2],"hipR":[15.8,18.7],"knR":[39.2,155.4],"ftR":[86.5,299.9],"hipL":[-49,59.5],"knL":[-60.2,190.9],"ftL":[-32.7,342.2]},{"rootY":-8.5,"hips":[0,0],"chest":[-26.2,-81.9],"neck":[-26.2,-81.9],"head":[-8.8,-158.8],"shR":[24.1,-123.6],"elR":[80.9,-76.6],"haR":[72.3,-138],"shL":[-76.6,-105.8],"elL":[-139.2,-33.3],"haL":[-179.3,-92.4],"hipR":[29.2,32.8],"knR":[32.6,168.7],"ftR":[88.5,310.5],"hipL":[-63.6,47],"knL":[-57.1,181.6],"ftL":[-27.2,334.6]},{"rootY":-5.8,"hips":[0,0],"chest":[-19,-83.3],"neck":[-19,-83.3],"head":[-5.3,-160],"shR":[26.6,-132.7],"elR":[68.4,-93.2],"haR":[48,-155.9],"shL":[-69.3,-97.5],"elL":[-113.2,-15.2],"haL":[-161.1,-70.3],"hipR":[37,45.4],"knR":[35.5,178.5],"ftR":[87.3,321.6],"hipL":[-75.8,32.5],"knL":[-55.1,167.9],"ftL":[-25.3,322]},{"rootY":0.2,"hips":[0,0],"chest":[-10.1,-83.5],"neck":[-10.1,-83.5],"head":[0,-159.1],"shR":[32.3,-136],"elR":[64.8,-103.6],"haR":[34.8,-165.3],"shL":[-59.4,-93.4],"elL":[-81.9,-6.4],"haL":[-135.1,-53.4],"hipR":[42.9,48.1],"knR":[39.1,181.4],"ftR":[73.7,329.5],"hipL":[-79.5,28.2],"knL":[-55.6,163.2],"ftL":[-22.2,316.2]},{"rootY":2.5,"hips":[0,0],"chest":[-5.9,-83.4],"neck":[-5.9,-83.4],"head":[3.4,-158.6],"shR":[36.8,-133.7],"elR":[69.3,-102.8],"haR":[31.7,-160.6],"shL":[-54.7,-96.8],"elL":[-67.3,-9.5],"haL":[-120.4,-53.1],"hipR":[46.2,47.7],"knR":[40.4,182.1],"ftR":[67.8,331.8],"hipL":[-79.1,30],"knL":[-56.6,165],"ftL":[-20.6,316.7]},{"rootY":2.9,"hips":[0,0],"chest":[-9.9,-83.5],"neck":[-9.9,-83.5],"head":[0.8,-159.4],"shR":[34.4,-131.3],"elR":[78.6,-88.6],"haR":[39.2,-140.6],"shL":[-59.5,-100.3],"elL":[-90,-17.7],"haL":[-135.9,-71.5],"hipR":[43.1,46.5],"knR":[37.9,180.8],"ftR":[78.5,327.1],"hipL":[-78.1,31.2],"knL":[-59.3,166.4],"ftL":[-22.5,317.7]},{"rootY":1.4,"hips":[0,0],"chest":[-18.7,-83.1],"neck":[-18.7,-83.1],"head":[-5.9,-159.8],"shR":[27.9,-127.2],"elR":[88.2,-68.1],"haR":[57.1,-109.9],"shL":[-68.9,-104.9],"elL":[-122.9,-31.1],"haL":[-161.8,-92.7],"hipR":[34.2,38.9],"knR":[30.2,176.4],"ftR":[91.9,315.4],"hipL":[-70.4,40.1],"knL":[-68.4,175.2],"ftL":[-32.2,326]},{"rootY":2.1,"hips":[0,0],"chest":[-27.3,-81.4],"neck":[-27.3,-81.4],"head":[-12.2,-158.6],"shR":[23.7,-118.2],"elR":[88.6,-49.3],"haR":[77.9,-77.4],"shL":[-78.3,-111.7],"elL":[-148.5,-47.2],"haL":[-182.2,-111.6],"hipR":[17.1,27.6],"knR":[21.3,167],"ftR":[97.2,298.9],"hipL":[-55,51.7],"knL":[-76.7,183],"ftL":[-41.4,333.5]},{"rootY":4.9,"hips":[0,0],"chest":[-32.6,-79.3],"neck":[-32.6,-79.3],"head":[-16,-156.6],"shR":[19.2,-110.8],"elR":[80.4,-39.1],"haR":[92.8,-53.7],"shL":[-82.2,-115.4],"elL":[-157.6,-56.1],"haL":[-188.9,-119.5],"hipR":[-0.5,22.5],"knR":[16.1,161],"ftR":[93.4,291.5],"hipL":[-39.8,58.1],"knL":[-80.7,181.9],"ftL":[-46.7,331.9]},{"rootY":8.1,"hips":[0,0],"chest":[-35.3,-78],"neck":[-35.3,-78],"head":[-18.2,-155.6],"shR":[13.6,-108.8],"elR":[77.3,-38.5],"haR":[88.1,-50.9],"shL":[-82.8,-115.1],"elL":[-155.1,-53.5],"haL":[-188.5,-112.5],"hipR":[-4.3,22.6],"knR":[17.5,160.1],"ftR":[87.8,294.6],"hipL":[-36.4,58.7],"knL":[-83.4,178.7],"ftL":[-50.4,327.7]},{"rootY":10.8,"hips":[0,0],"chest":[-34,-78.5],"neck":[-34,-78.5],"head":[-18.4,-156.5],"shR":[10.4,-111.2],"elR":[72.5,-40.7],"haR":[59.2,-59.9],"shL":[-79,-113.8],"elL":[-138.7,-38.4],"haL":[-182.1,-87.7],"hipR":[6.7,21.4],"knR":[18.8,159.9],"ftR":[83.9,297.6],"hipL":[-43,59.1],"knL":[-85.4,181.2],"ftL":[-56.3,329]},{"rootY":10.7,"hips":[0,0],"chest":[-29.2,-79.9],"neck":[-29.2,-79.9],"head":[-17.5,-158.5],"shR":[10.7,-116.9],"elR":[55.4,-45.9],"haR":[18.5,-72.7],"shL":[-72.1,-110.4],"elL":[-109.1,-24.8],"haL":[-169.1,-61.8],"hipR":[26.8,32.5],"knR":[25,169.1],"ftR":[78.2,310.3],"hipL":[-57.3,51],"knL":[-79.1,178.8],"ftL":[-52.8,324.4]},{"rootY":12.4,"hips":[0,0],"chest":[-21.7,-79.8],"neck":[-21.7,-79.8],"head":[-13.8,-158.6],"shR":[12,-124.5],"elR":[27.8,-55.4],"haR":[-23.3,-87.1],"shL":[-62.4,-101.5],"elL":[-66.9,-15.3],"haL":[-135.9,-39.1],"hipR":[41,43.7],"knR":[41.2,178.5],"ftR":[71.3,325.7],"hipL":[-72.1,39.1],"knL":[-75.7,172.7],"ftL":[-49.1,316]},{"rootY":18.1,"hips":[0,0],"chest":[-17,-78.4],"neck":[-17,-78.4],"head":[-12.7,-156.9],"shR":[14,-126.1],"elR":[2.3,-63.2],"haR":[-56.2,-95.9],"shL":[-57.2,-96.1],"elL":[-31.1,-16.1],"haL":[-96.9,-24.6],"hipR":[47.9,43.8],"knR":[46.8,175.5],"ftR":[67.7,322.3],"hipL":[-75.8,36.8],"knL":[-80.7,171.4],"ftL":[-59,308.2]},{"rootY":27.9,"hips":[0,0],"chest":[-16.2,-79.1],"neck":[-16.2,-79.1],"head":[-12.2,-157.6],"shR":[14.8,-124.3],"elR":[-6.9,-63.2],"haR":[-70.3,-91.8],"shL":[-55.7,-100.1],"elL":[-23.4,-20.6],"haL":[-82.9,-27.7],"hipR":[47.3,43.2],"knR":[32.5,171.9],"ftR":[57.2,314.4],"hipL":[-74.7,38.3],"knL":[-80.4,171.6],"ftL":[-71.7,300]},{"rootY":34.2,"hips":[0,0],"chest":[-23.9,-79],"neck":[-23.9,-79],"head":[-18.3,-157.7],"shR":[5.7,-123.6],"elR":[0.3,-55.1],"haR":[-65.8,-76.5],"shL":[-60.9,-100.8],"elL":[-46.5,-16],"haL":[-108.1,-38.6],"hipR":[39.8,41.2],"knR":[2.5,168.7],"ftR":[47.3,302.6],"hipL":[-70,41.7],"knL":[-88.9,170.1],"ftL":[-77.3,294.8]},{"rootY":39.4,"hips":[0,0],"chest":[-34,-77.7],"neck":[-34,-77.7],"head":[-26.9,-156.7],"shR":[-4.4,-120.9],"elR":[20.3,-46.1],"haR":[-43.8,-57.5],"shL":[-71.2,-101.1],"elL":[-81.5,-12.8],"haL":[-143.3,-48.3],"hipR":[24.7,31.1],"knR":[-25.3,161],"ftR":[44.7,285.3],"hipL":[-55.6,52.1],"knL":[-110.7,166.9],"ftL":[-82.3,298.7]},{"rootY":44.2,"hips":[0,0],"chest":[-42.7,-74.4],"neck":[-42.7,-74.4],"head":[-34.4,-153.7],"shR":[-10.5,-114.1],"elR":[44.5,-42.2],"haR":[-8.8,-38.7],"shL":[-82.6,-101.8],"elL":[-114.1,-13.1],"haL":[-172.8,-56.5],"hipR":[3.4,21.7],"knR":[-37.1,155.1],"ftR":[39.3,276.7],"hipL":[-38.1,60.7],"knL":[-127.5,156.6],"ftL":[-95,300.1]},{"rootY":47.9,"hips":[0,0],"chest":[-48,-71],"neck":[-48,-71],"head":[-39.6,-150.5],"shR":[-15.4,-109.7],"elR":[56.4,-47.4],"haR":[19.8,-27.6],"shL":[-89.9,-99.4],"elL":[-129.7,-11.9],"haL":[-187.7,-55.5],"hipR":[-10.1,20.6],"knR":[-45.4,155.6],"ftR":[32.4,274.5],"hipL":[-29.9,61.4],"knL":[-131.7,149.5],"ftL":[-103.6,298.4]},{"rootY":52.2,"hips":[0,0],"chest":[-47.6,-71.2],"neck":[-47.6,-71.2],"head":[-40.6,-150.9],"shR":[-16.7,-111.6],"elR":[59.1,-54.4],"haR":[25.9,-27.5],"shL":[-89,-97.6],"elL":[-127.5,-9.6],"haL":[-188,-47.9],"hipR":[-9.4,22.1],"knR":[-48.6,156],"ftR":[30.4,272.7],"hipL":[-30.5,60.4],"knL":[-135.1,146.6],"ftL":[-104.2,295.2]},{"rootY":56,"hips":[0,0],"chest":[-45.8,-72.7],"neck":[-45.8,-72.7],"head":[-40.4,-152.3],"shR":[-16.2,-115.4],"elR":[50.6,-53.1],"haR":[3.9,-34.1],"shL":[-85.9,-96.5],"elL":[-115.5,-5],"haL":[-179.2,-39.5],"hipR":[0.8,24.3],"knR":[-49.5,154.5],"ftR":[29.2,271.4],"hipL":[-37.3,58.8],"knL":[-138.1,145.8],"ftL":[-101.3,290.2]},{"rootY":58.9,"hips":[0,0],"chest":[-41.1,-74.6],"neck":[-41.1,-74.6],"head":[-38.2,-154.1],"shR":[-14.8,-121],"elR":[28.8,-50.4],"haR":[-31.3,-43.6],"shL":[-79.4,-93.9],"elL":[-90.6,0],"haL":[-157.4,-28.6],"hipR":[18.1,29.3],"knR":[-42.2,154.7],"ftR":[28.4,274.1],"hipL":[-50.6,54.1],"knL":[-132.2,149.7],"ftL":[-95.6,283.9]},{"rootY":61.6,"hips":[0,0],"chest":[-35.5,-75.8],"neck":[-35.5,-75.8],"head":[-34.4,-155],"shR":[-12.3,-124.4],"elR":[4.6,-49.8],"haR":[-62.8,-53.4],"shL":[-72.1,-92],"elL":[-58.3,-1.2],"haL":[-125.2,-17.9],"hipR":[36.7,34],"knR":[-27.5,153],"ftR":[26.5,276.7],"hipL":[-63.1,49.4],"knL":[-109.3,162.5],"ftL":[-98.9,267]},{"rootY":64.6,"hips":[0,0],"chest":[-31.3,-76.5],"neck":[-31.3,-76.5],"head":[-31.5,-155.4],"shR":[-9,-126.1],"elR":[-12.1,-52.5],"haR":[-82.1,-59.7],"shL":[-68.1,-91.4],"elL":[-37,-8],"haL":[-100.6,-13.9],"hipR":[49.7,35.7],"knR":[-12,149.6],"ftR":[28.7,276.9],"hipL":[-69.5,46.9],"knL":[-87.8,172.7],"ftL":[-104.9,256.4]},{"rootY":66.7,"hips":[0,0],"chest":[-31.5,-75.8],"neck":[-31.5,-75.8],"head":[-31.9,-154.9],"shR":[-6.9,-125.9],"elR":[-13.9,-53.8],"haR":[-84.4,-59.5],"shL":[-72.3,-89.9],"elL":[-41.4,-8.4],"haL":[-103.1,-18.5],"hipR":[53.8,35],"knR":[-6.6,146],"ftR":[31.3,275],"hipL":[-70.3,46.9],"knL":[-82.3,175.8],"ftL":[-88,266.9]},{"rootY":67,"hips":[0,0],"chest":[-35.2,-74.9],"neck":[-35.2,-74.9],"head":[-35.7,-154.4],"shR":[-7.5,-125.2],"elR":[3.8,-52.5],"haR":[-64.3,-53.6],"shL":[-80.2,-88.8],"elL":[-67.9,-1.8],"haL":[-131.8,-22.7],"hipR":[50.6,32.9],"knR":[-11.7,145.1],"ftR":[30.8,273.7],"hipL":[-67.7,49.6],"knL":[-89.7,173.8],"ftL":[-91.8,270.6]},{"rootY":64.2,"hips":[0,0],"chest":[-43,-72.8],"neck":[-43,-72.8],"head":[-41.8,-152.8],"shR":[-11.1,-121.9],"elR":[29.3,-51.8],"haR":[-29.1,-46.5],"shL":[-92.3,-88.4],"elL":[-102.2,3.6],"haL":[-168.6,-23.9],"hipR":[39.9,28.4],"knR":[-21.9,146.7],"ftR":[32.9,272.8],"hipL":[-61,54],"knL":[-102,172.1],"ftL":[-98.5,280.9]},{"rootY":60.8,"hips":[0,0],"chest":[-49.5,-69.9],"neck":[-49.5,-69.9],"head":[-46.2,-150],"shR":[-12.9,-117],"elR":[53.4,-53.9],"haR":[13.5,-41],"shL":[-103.1,-88.1],"elL":[-129.8,4],"haL":[-195.8,-26.7],"hipR":[23.5,23.9],"knR":[-31.9,149.9],"ftR":[44.1,270.7],"hipL":[-52.2,57.3],"knL":[-114.5,166.2],"ftL":[-105,285.1]},{"rootY":59.3,"hips":[0,0],"chest":[-50,-69.8],"neck":[-50,-69.8],"head":[-46.1,-149.9],"shR":[-10.7,-117.2],"elR":[65.8,-60.3],"haR":[47.7,-38.7],"shL":[-106.6,-87.6],"elL":[-142.5,1.1],"haL":[-204.3,-30.9],"hipR":[13.4,23.5],"knR":[-38,152.6],"ftR":[48.6,269.3],"hipL":[-46.9,57.8],"knL":[-121,161],"ftL":[-106.5,288]},{"rootY":58.4,"hips":[0,0],"chest":[-45.9,-72.6],"neck":[-45.9,-72.6],"head":[-42.9,-152.6],"shR":[-5.4,-121.8],"elR":[71.3,-65.3],"haR":[61.5,-41],"shL":[-103.4,-88.2],"elL":[-137.5,0.1],"haL":[-195.6,-32.2],"hipR":[15.3,25],"knR":[-34,155],"ftR":[54.9,272.2],"hipL":[-49.4,56.2],"knL":[-121.4,160.3],"ftL":[-101.1,289.5]},{"rootY":54.3,"hips":[0,0],"chest":[-39,-76.2],"neck":[-39,-76.2],"head":[-36.5,-156.1],"shR":[3.5,-126.2],"elR":[72.8,-60.9],"haR":[53.7,-44.1],"shL":[-96.7,-91.1],"elL":[-121.8,1.2],"haL":[-181.8,-28.8],"hipR":[25.4,27.1],"knR":[-17.8,157],"ftR":[64,279],"hipL":[-58.6,52.1],"knL":[-112.5,165.4],"ftL":[-86.3,291.4]},{"rootY":45.5,"hips":[0,0],"chest":[-27,-80.2],"neck":[-27,-80.2],"head":[-26.4,-159.6],"shR":[13.5,-133.4],"elR":[66,-56.9],"haR":[32.6,-48],"shL":[-83.8,-90.3],"elL":[-96.5,4.7],"haL":[-162.6,-18.1],"hipR":[40.2,31],"knR":[7.7,156.2],"ftR":[68.6,288.5],"hipL":[-70.7,44.2],"knL":[-92.7,169.7],"ftL":[-67.1,293.3]},{"rootY":35.6,"hips":[0,0],"chest":[-14.7,-82.2],"neck":[-14.7,-82.2],"head":[-16.8,-161],"shR":[24,-138.8],"elR":[57,-58.1],"haR":[10.5,-53.3],"shL":[-71.1,-87.3],"elL":[-71.1,5.6],"haL":[-142.3,-7],"hipR":[53.9,37],"knR":[35.6,157.2],"ftR":[65.8,300.8],"hipL":[-77.3,34.3],"knL":[-78.5,168.4],"ftL":[-54,295.6]},{"rootY":27.6,"hips":[0,0],"chest":[-7.5,-83],"neck":[-7.5,-83],"head":[-10.1,-160.9],"shR":[34.7,-139.2],"elR":[54.2,-60.5],"haR":[0.2,-57.7],"shL":[-66.3,-88.5],"elL":[-58.3,-0.5],"haL":[-131.1,-6.5],"hipR":[61.6,39.8],"knR":[52.5,160.5],"ftR":[67,310.3],"hipL":[-76,30.5],"knL":[-73,167.2],"ftL":[-50.7,299]},{"rootY":23.8,"hips":[0,0],"chest":[-4.8,-83.6],"neck":[-4.8,-83.6],"head":[-5.8,-161],"shR":[43.3,-136.6],"elR":[62.1,-59.7],"haR":[7.9,-60.8],"shL":[-66.7,-93.5],"elL":[-65.3,-5.2],"haL":[-136.3,-21.6],"hipR":[62.3,42.2],"knR":[60.2,164.1],"ftR":[76.9,314.9],"hipL":[-75.8,28.9],"knL":[-67.9,165.6],"ftL":[-44.8,300.7]},{"rootY":20.2,"hips":[0,0],"chest":[-7.2,-84.1],"neck":[-7.2,-84.1],"head":[-4.8,-161.4],"shR":[44.3,-134.9],"elR":[74.9,-56.3],"haR":[29.6,-59],"shL":[-70.3,-96.7],"elL":[-89.6,-6.5],"haL":[-154.6,-39.8],"hipR":[60.6,36.7],"knR":[61,162.4],"ftR":[84.8,312.5],"hipL":[-75.5,35],"knL":[-67.6,171.4],"ftL":[-42.3,310.4]},{"rootY":13.4,"hips":[0,0],"chest":[-15.4,-83.7],"neck":[-15.4,-83.7],"head":[-9.1,-161],"shR":[42.3,-128.9],"elR":[88.6,-49.9],"haR":[59,-51.1],"shL":[-81,-103.4],"elL":[-117.2,-14.7],"haL":[-173.9,-59.1],"hipR":[53.7,23.4],"knR":[55.5,156.4],"ftR":[91.3,304.5],"hipL":[-70.8,46.6],"knL":[-71.3,181.6],"ftL":[-44.9,322.6]},{"rootY":4.1,"hips":[0,0],"chest":[-27.8,-81],"neck":[-27.8,-81],"head":[-15.7,-157.9],"shR":[33.1,-121.1],"elR":[90.3,-44.9],"haR":[81,-42.9],"shL":[-92.5,-107],"elL":[-137.1,-23.1],"haL":[-184.7,-72.9],"hipR":[41.7,13.6],"knR":[49.4,149.9],"ftR":[88.7,297],"hipL":[-62.6,56.5],"knL":[-71.7,188.9],"ftL":[-45.9,332.9]},{"rootY":-2.4,"hips":[0,0],"chest":[-36.1,-77.7],"neck":[-36.1,-77.7],"head":[-20,-154],"shR":[26.8,-114.2],"elR":[89.5,-43.9],"haR":[97.4,-37.7],"shL":[-100.1,-107.9],"elL":[-145.1,-29.3],"haL":[-185.8,-79.8],"hipR":[30.5,11.3],"knR":[47.4,147.8],"ftR":[86.7,294.2],"hipL":[-55.5,61.1],"knL":[-67,190.1],"ftL":[-42,336.1]},{"rootY":-3.3,"hips":[0,0],"chest":[-38.3,-76.7],"neck":[-38.3,-76.7],"head":[-22.6,-153.2],"shR":[22.8,-114.9],"elR":[91.6,-50.3],"haR":[101.9,-45.6],"shL":[-101.9,-105],"elL":[-145.9,-28.3],"haL":[-183.1,-78.5],"hipR":[27.9,11.8],"knR":[47,147.7],"ftR":[88.1,293],"hipL":[-52,62.9],"knL":[-61.9,190],"ftL":[-38.4,337.1]},{"rootY":-1.5,"hips":[0,0],"chest":[-36.4,-77.7],"neck":[-36.4,-77.7],"head":[-25,-154.6],"shR":[22.1,-119],"elR":[94.5,-57.2],"haR":[91,-64.6],"shL":[-99.3,-102.5],"elL":[-141.1,-19.6],"haL":[-182.5,-67.2],"hipR":[34.4,15.6],"knR":[48,150.9],"ftR":[89.8,295.9],"hipL":[-55.9,60.4],"knL":[-59.5,188.9],"ftL":[-35.1,337.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-32.3,-79.5],"neck":[-32.3,-79.5],"head":[-24,-156],"shR":[21.5,-126],"elR":[88.6,-66.3],"haR":[68.5,-87.8],"shL":[-94.1,-97.7],"elL":[-127.2,-7.4],"haL":[-179.6,-49.3],"hipR":[44.1,28.3],"knR":[48.6,160.9],"ftR":[88.2,306.5],"hipL":[-65.6,51.2],"knL":[-58.3,183],"ftL":[-31,333.4]},{"rootY":-1.2,"hips":[0,0],"chest":[-27,-80.9],"neck":[-27,-80.9],"head":[-22,-156.8],"shR":[18.8,-134.4],"elR":[74.1,-78.2],"haR":[41.3,-109.2],"shL":[-85.2,-89.9],"elL":[-102.5,3.1],"haL":[-164.8,-32.1],"hipR":[51.1,37.3],"knR":[50.8,169.3],"ftR":[75.4,318],"hipL":[-73.4,42],"knL":[-55.8,176.5],"ftL":[-26.7,327.9]},{"rootY":-1.1,"hips":[0,0],"chest":[-20.6,-81.9],"neck":[-20.6,-81.9],"head":[-20.1,-156.8],"shR":[18.9,-139],"elR":[64.6,-85.8],"haR":[23.3,-119.6],"shL":[-74.7,-85.9],"elL":[-75.4,5.2],"haL":[-142.9,-22.5],"hipR":[55.6,38.4],"knR":[53.9,173.1],"ftR":[59.4,322.4],"hipL":[-75.2,39.1],"knL":[-52.7,173.9],"ftL":[-23,324.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-16.2,-82.5],"neck":[-16.2,-82.5],"head":[-17.4,-156.8],"shR":[21.4,-139.3],"elR":[61.9,-86.7],"haR":[15.6,-118.5],"shL":[-68.6,-87.3],"elL":[-59.6,1.4],"haL":[-126.8,-23.9],"hipR":[56.5,39],"knR":[57.8,174.9],"ftR":[60.9,323.7],"hipL":[-75.6,38.1],"knL":[-51,172.6],"ftL":[-20.4,323.1]},{"rootY":0.9,"hips":[0,0],"chest":[-17,-82.5],"neck":[-17,-82.5],"head":[-16.4,-157.5],"shR":[20.5,-137.7],"elR":[65,-82],"haR":[18.8,-110.4],"shL":[-67.2,-89.7],"elL":[-68.8,0.1],"haL":[-131.4,-34.8],"hipR":[53.2,38.6],"knR":[58.7,174.4],"ftR":[75.1,324.6],"hipL":[-75.3,39.1],"knL":[-53.4,174.1],"ftL":[-23.1,325]},{"rootY":1.2,"hips":[0,0],"chest":[-21.4,-82.3],"neck":[-21.4,-82.3],"head":[-16.7,-158.8],"shR":[18,-133.7],"elR":[72.5,-69.4],"haR":[33.6,-95],"shL":[-70.5,-94.8],"elL":[-95,-5.6],"haL":[-151,-51.7],"hipR":[43.7,36.6],"knR":[52.9,173],"ftR":[88.1,321.1],"hipL":[-72.4,41.7],"knL":[-58.5,177.2],"ftL":[-29.3,328.8]},{"rootY":1,"hips":[0,0],"chest":[-27.2,-81.5],"neck":[-27.2,-81.5],"head":[-17.7,-159.2],"shR":[17.1,-125.3],"elR":[77,-53.5],"haR":[52.2,-73.6],"shL":[-75.9,-103.7],"elL":[-118.6,-18.8],"haL":[-168.6,-71.9],"hipR":[27.1,30.9],"knR":[44.4,168.8],"ftR":[94,312.8],"hipL":[-62.3,48.1],"knL":[-65.6,183.1],"ftL":[-39.9,335.4]},{"rootY":-0.8,"hips":[0,0],"chest":[-30.1,-80.4],"neck":[-30.1,-80.4],"head":[-16.5,-158.2],"shR":[18.9,-115.3],"elR":[78.8,-41.1],"haR":[69.1,-54.4],"shL":[-78.4,-113],"elL":[-132.8,-33.7],"haL":[-177.3,-89.5],"hipR":[8.2,26],"knR":[35.3,162.7],"ftR":[95.9,302.3],"hipL":[-48,54.1],"knL":[-71.2,185.7],"ftL":[-49.2,338]},{"rootY":-2.1,"hips":[0,0],"chest":[-30.5,-80.1],"neck":[-30.5,-80.1],"head":[-14.5,-157.8],"shR":[18.5,-110.4],"elR":[79,-36.7],"haR":[71.4,-51.2],"shL":[-76.2,-117.6],"elL":[-134.9,-41.5],"haL":[-176.2,-97.2],"hipR":[-1.1,26.2],"knR":[29.6,161.9],"ftR":[91.4,300.4],"hipL":[-41.7,54.5],"knL":[-72.4,184.2],"ftL":[-53.4,336.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-27.8,-81.2],"neck":[-27.8,-81.2],"head":[-11.9,-158.9],"shR":[18.8,-110.4],"elR":[76.2,-36.5],"haR":[55.2,-61.1],"shL":[-70.1,-119.7],"elL":[-126.2,-41.6],"haL":[-169.4,-96.3],"hipR":[0.9,26.8],"knR":[24,163.9],"ftR":[84.6,303.2],"hipL":[-45,52.9],"knL":[-74,184.9],"ftL":[-61.1,336.9]},{"rootY":0.4,"hips":[0,0],"chest":[-22.4,-82.7],"neck":[-22.4,-82.7],"head":[-8.5,-160.7],"shR":[20.3,-114.7],"elR":[61.8,-40.3],"haR":[25.1,-76.2],"shL":[-60.7,-118.3],"elL":[-107.5,-36.3],"haL":[-156.3,-89],"hipR":[10.7,30],"knR":[24.4,168.6],"ftR":[79,310.7],"hipL":[-52.8,49.6],"knL":[-77.1,184.1],"ftL":[-70.7,335.8]},{"rootY":-1.1,"hips":[0,0],"chest":[-15.3,-83.3],"neck":[-15.3,-83.3],"head":[-4.7,-161.8],"shR":[19.9,-123.5],"elR":[35.6,-50.5],"haR":[-9.2,-95.1],"shL":[-48.5,-109.7],"elL":[-74.1,-24.5],"haL":[-128.2,-73.5],"hipR":[22.7,40.5],"knR":[30.8,179.7],"ftR":[71.5,325.9],"hipL":[-64.5,39.9],"knL":[-81.8,175.8],"ftL":[-79.1,326.8]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-82],"neck":[-10.4,-82],"head":[-3.7,-160.2],"shR":[18.8,-128.1],"elR":[10,-58.6],"haR":[-37.3,-108.5],"shL":[-40.1,-101.3],"elL":[-38,-16.2],"haL":[-93.6,-57],"hipR":[29.5,47.4],"knR":[26.1,186],"ftR":[64.4,331.7],"hipL":[-73.7,30.7],"knL":[-90.9,165.8],"ftL":[-94.7,315]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.1,-80.8],"neck":[-8.1,-80.8],"head":[-3.5,-158.6],"shR":[20.2,-125.8],"elR":[-7,-61.9],"haR":[-55.5,-113.3],"shL":[-38.1,-101.7],"elL":[-17.8,-18.3],"haL":[-68.8,-52.5],"hipR":[29.8,49.2],"knR":[18.7,187.8],"ftR":[52.6,333.5],"hipL":[-76.1,27.2],"knL":[-101.4,160.8],"ftL":[-113.1,307.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-8.4,-80.6],"neck":[-8.4,-80.6],"head":[-3.8,-158.4],"shR":[19.6,-123.8],"elR":[-5.2,-58.4],"haR":[-56.3,-107.9],"shL":[-37,-103.7],"elL":[-26.8,-20.4],"haL":[-74.1,-63.6],"hipR":[23.3,49.4],"knR":[7.4,188.1],"ftR":[42.5,332.2],"hipL":[-74,25.9],"knL":[-110.4,157.5],"ftL":[-128.1,304]},{"rootY":-1.8,"hips":[0,0],"chest":[-12.3,-81.9],"neck":[-12.3,-81.9],"head":[-6.6,-160.1],"shR":[16.4,-122.9],"elR":[13.8,-49.2],"haR":[-39.6,-94.2],"shL":[-41.1,-107.7],"elL":[-54.6,-27.7],"haL":[-102,-80.1],"hipR":[10.4,43.1],"knR":[-4.8,181.9],"ftR":[33.8,324.1],"hipL":[-64.8,31.6],"knL":[-119.5,157],"ftL":[-139.8,303.9]},{"rootY":2.1,"hips":[0,0],"chest":[-17.5,-83.4],"neck":[-17.5,-83.4],"head":[-10.2,-162],"shR":[15.7,-118.4],"elR":[41.4,-38.9],"haR":[-9.9,-76.9],"shL":[-49.4,-116.1],"elL":[-87.3,-39.3],"haL":[-132.2,-96.7],"hipR":[-7.9,32.5],"knR":[-19.9,171.2],"ftR":[30.6,310.3],"hipL":[-51.6,39.7],"knL":[-123.2,155.9],"ftL":[-141.8,305]},{"rootY":5.8,"hips":[0,0],"chest":[-21.9,-82.8],"neck":[-21.9,-82.8],"head":[-12.3,-161.2],"shR":[16.9,-109],"elR":[65.3,-30.8],"haR":[21.9,-59.3],"shL":[-54.7,-124.3],"elL":[-110.6,-49.5],"haL":[-152.7,-109],"hipR":[-23.9,23],"knR":[-31.1,161.5],"ftR":[23.4,299.7],"hipL":[-39.6,47],"knL":[-118.9,157.1],"ftL":[-142.4,307.9]},{"rootY":9.3,"hips":[0,0],"chest":[-22.3,-82.1],"neck":[-22.3,-82.1],"head":[-10.5,-160],"shR":[18.4,-104.1],"elR":[75.9,-28.9],"haR":[42.8,-50.5],"shL":[-52.8,-127.3],"elL":[-115.3,-54.4],"haL":[-157.8,-112.7],"hipR":[-30.9,20.1],"knR":[-34.8,158.3],"ftR":[18,296.9],"hipL":[-32.5,50.8],"knL":[-112.4,160.3],"ftL":[-142.9,311.1]},{"rootY":12.8,"hips":[0,0],"chest":[-21.3,-82.5],"neck":[-21.3,-82.5],"head":[-9.2,-160.4],"shR":[18.2,-107.7],"elR":[68.9,-30.7],"haR":[33.9,-59.4],"shL":[-51,-124.5],"elL":[-110.6,-49.4],"haL":[-154.4,-105.9],"hipR":[-27.7,19.2],"knR":[-38.1,157],"ftR":[13.1,295.2],"hipL":[-35.7,50.8],"knL":[-119,158],"ftL":[-150.3,307.2]},{"rootY":15.1,"hips":[0,0],"chest":[-18.5,-83.9],"neck":[-18.5,-83.9],"head":[-9,-161.9],"shR":[16.6,-116.7],"elR":[49.3,-39.4],"haR":[4.5,-78.1],"shL":[-46.6,-118.2],"elL":[-94.9,-38.1],"haL":[-142.5,-93.2],"hipR":[-14.2,23.3],"knR":[-34.4,160.2],"ftR":[8.1,299.5],"hipL":[-46.8,46.4],"knL":[-132,153.2],"ftL":[-160.8,299.7]},{"rootY":14.3,"hips":[0,0],"chest":[-13.5,-83.8],"neck":[-13.5,-83.8],"head":[-8.6,-161.7],"shR":[15.2,-126.7],"elR":[22.9,-53],"haR":[-28.1,-98.1],"shL":[-39.1,-106.9],"elL":[-63,-21.2],"haL":[-114.1,-71.7],"hipR":[7.3,32.8],"knR":[-31.7,165.7],"ftR":[4.9,305.5],"hipL":[-61,39.7],"knL":[-139.7,151.9],"ftL":[-171.2,292]},{"rootY":13.4,"hips":[0,0],"chest":[-10.3,-82.6],"neck":[-10.3,-82.6],"head":[-7.8,-159.6],"shR":[13.7,-131],"elR":[-0.4,-63.5],"haR":[-52.4,-112.2],"shL":[-34,-99],"elL":[-26.2,-12.4],"haL":[-78.2,-51.7],"hipR":[26.3,42],"knR":[-32.3,168.4],"ftR":[0.8,308.7],"hipL":[-70.4,35.3],"knL":[-140.4,152.8],"ftL":[-180.1,282.9]},{"rootY":12.8,"hips":[0,0],"chest":[-10.8,-82],"neck":[-10.8,-82],"head":[-9.7,-158.9],"shR":[12.9,-129],"elR":[-16.4,-68.2],"haR":[-68.4,-117.6],"shL":[-35.2,-100.5],"elL":[-14.3,-15.9],"haL":[-60.6,-50.9],"hipR":[33.5,45.4],"knR":[-30.8,169.4],"ftR":[-4.1,311.1],"hipL":[-74.1,33.1],"knL":[-134.2,155.2],"ftL":[-183.1,276.1]},{"rootY":14.4,"hips":[0,0],"chest":[-11.4,-82.4],"neck":[-11.4,-82.4],"head":[-9.6,-159.8],"shR":[13.7,-127.2],"elR":[-13.5,-65.1],"haR":[-67,-112.8],"shL":[-36.4,-103.5],"elL":[-30.9,-19.7],"haL":[-74.8,-65.6],"hipR":[32.5,42.9],"knR":[-30.3,167.7],"ftR":[-8,309.9],"hipL":[-72.6,35.3],"knL":[-132.4,157],"ftL":[-182.3,278.1]},{"rootY":15.1,"hips":[0,0],"chest":[-14.9,-82.9],"neck":[-14.9,-82.9],"head":[-12.6,-161],"shR":[12.9,-126],"elR":[3.6,-57],"haR":[-52,-101.2],"shL":[-42.4,-106.2],"elL":[-61.7,-25.3],"haL":[-105,-79.6],"hipR":[21.7,37],"knR":[-33.8,165],"ftR":[-12.7,307.4],"hipL":[-67.2,38.8],"knL":[-139.1,154.7],"ftL":[-179,286.9]},{"rootY":15.1,"hips":[0,0],"chest":[-19.8,-83.3],"neck":[-19.8,-83.3],"head":[-15.1,-162],"shR":[10.4,-123.3],"elR":[26.1,-49.9],"haR":[-28.6,-88.8],"shL":[-49,-110.2],"elL":[-91.4,-33.8],"haL":[-134.4,-91.9],"hipR":[1.7,26.4],"knR":[-37,159.5],"ftR":[-16.2,303.1],"hipL":[-57.8,43.3],"knL":[-137.2,154.9],"ftL":[-177.2,297.1]},{"rootY":14.8,"hips":[0,0],"chest":[-22.1,-82.6],"neck":[-22.1,-82.6],"head":[-15.1,-161.4],"shR":[13.6,-113.6],"elR":[51.8,-38.9],"haR":[3,-72.4],"shL":[-53.5,-119.4],"elL":[-111.8,-46.6],"haL":[-155.9,-104.8],"hipR":[-18.3,18.5],"knR":[-41,154.7],"ftR":[-18,300],"hipL":[-45,48.7],"knL":[-126.2,158.4],"ftL":[-175,303.3]},{"rootY":15.8,"hips":[0,0],"chest":[-21.5,-82.1],"neck":[-21.5,-82.1],"head":[-12.4,-160.8],"shR":[15.5,-106.3],"elR":[68.7,-33.2],"haR":[27.2,-59.6],"shL":[-50.5,-125.4],"elL":[-115.2,-54.6],"haL":[-163.3,-108.4],"hipR":[-29.5,18.1],"knR":[-47.1,155.3],"ftR":[-19.6,301.2],"hipL":[-35.9,50.2],"knL":[-114,161.9],"ftL":[-173.3,305.7]},{"rootY":19.3,"hips":[0,0],"chest":[-20.2,-82.6],"neck":[-20.2,-82.6],"head":[-7.8,-161],"shR":[12.6,-107.4],"elR":[67.2,-32.7],"haR":[30.7,-51.2],"shL":[-44.1,-125.1],"elL":[-107.7,-53],"haL":[-163.5,-96.4],"hipR":[-31.3,19.5],"knR":[-51.4,156.1],"ftR":[-22.1,301.8],"hipL":[-34.9,48.8],"knL":[-106.8,164.2],"ftL":[-169.5,307.1]},{"rootY":21.1,"hips":[0,0],"chest":[-18.6,-83.4],"neck":[-18.6,-83.4],"head":[-3.7,-161.6],"shR":[8.1,-111.3],"elR":[50.6,-30.2],"haR":[13.1,-40.7],"shL":[-37.9,-123],"elL":[-93.1,-44.3],"haL":[-158.1,-69],"hipR":[-30.4,20.3],"knR":[-54.5,156.3],"ftR":[-25.4,302.6],"hipL":[-35.8,47.9],"knL":[-107.7,162.5],"ftL":[-152.6,312.6]},{"rootY":19.8,"hips":[0,0],"chest":[-19.6,-83.4],"neck":[-19.6,-83.4],"head":[-0.5,-160.7],"shR":[3.8,-111.6],"elR":[27.6,-25],"haR":[-14.9,-21.4],"shL":[-36.2,-122.7],"elL":[-76.1,-35.4],"haL":[-145.9,-27.6],"hipR":[-30.4,20.5],"knR":[-54.1,157.2],"ftR":[-29.8,305.3],"hipL":[-36.1,47.5],"knL":[-108.7,160.9],"ftL":[-122.4,317.4]},{"rootY":17.7,"hips":[0,0],"chest":[-22.6,-82.6],"neck":[-22.6,-82.6],"head":[1.7,-158.6],"shR":[-1.9,-109.7],"elR":[7.3,-20.7],"haR":[-40,2.5],"shL":[-37.5,-123.2],"elL":[-63.9,-31.1],"haL":[-115.9,19.9],"hipR":[-29.7,20.1],"knR":[-53.7,157.2],"ftR":[-35.3,307],"hipL":[-37.4,47.2],"knL":[-109.7,159.4],"ftL":[-83.5,314.2]},{"rootY":15.9,"hips":[0,0],"chest":[-24.8,-82],"neck":[-24.8,-82],"head":[3.1,-157.1],"shR":[-8.4,-110.7],"elR":[-8.1,-21.8],"haR":[-58.5,18.5],"shL":[-36.7,-121.2],"elL":[-52.6,-26.7],"haL":[-70.5,43.6],"hipR":[-28,21.8],"knR":[-53.4,158.9],"ftR":[-40,310],"hipL":[-37.5,47],"knL":[-104.9,161.6],"ftL":[-40.8,305.1]},{"rootY":16.2,"hips":[0,0],"chest":[-26.1,-81.7],"neck":[-26.1,-81.7],"head":[2.8,-156.4],"shR":[-14.7,-111.7],"elR":[-16.5,-23.8],"haR":[-66.3,26.1],"shL":[-33.8,-119.5],"elL":[-26,-25.1],"haL":[-26.7,43.7],"hipR":[-27,23.8],"knR":[-55.7,160.5],"ftR":[-44.8,312.3],"hipL":[-35.7,47.6],"knL":[-89.2,169.7],"ftL":[1.1,297.5]},{"rootY":18.5,"hips":[0,0],"chest":[-26.7,-81.6],"neck":[-26.7,-81.6],"head":[0.6,-157],"shR":[-22.5,-113.3],"elR":[-23.5,-27.3],"haR":[-71.1,26.3],"shL":[-27.8,-117.6],"elL":[2.9,-29.2],"haL":[1.3,37.4],"hipR":[-27.8,25.4],"knR":[-58.9,161.4],"ftR":[-50,313.5],"hipL":[-32.5,48.6],"knL":[-60.7,180.1],"ftL":[35.7,300.2]},{"rootY":21.7,"hips":[0,0],"chest":[-26.8,-81.4],"neck":[-26.8,-81.4],"head":[-3.2,-157.9],"shR":[-28.7,-111.8],"elR":[-30.5,-27.7],"haR":[-74.8,27.8],"shL":[-22.8,-119],"elL":[16.3,-33.5],"haL":[17.3,31],"hipR":[-31.9,26.5],"knR":[-62.7,162.1],"ftR":[-56.6,313.5],"hipL":[-28.9,47.7],"knL":[-30.8,184],"ftL":[56.8,309.9]},{"rootY":20.3,"hips":[0,0],"chest":[-27.1,-80.8],"neck":[-27.1,-80.8],"head":[-9.3,-158.5],"shR":[-36.2,-109.3],"elR":[-37.2,-25],"haR":[-79,32.7],"shL":[-18.2,-120.3],"elL":[14.8,-31.8],"haL":[23.1,33],"hipR":[-40,27.4],"knR":[-62.5,163.8],"ftR":[-64.5,313.5],"hipL":[-21.6,46.8],"knL":[-36.2,182.9],"ftL":[45.9,315.2]},{"rootY":14.6,"hips":[0,0],"chest":[-25.1,-80.6],"neck":[-25.1,-80.6],"head":[-12.4,-158.9],"shR":[-43.6,-109.2],"elR":[-40.7,-23.2],"haR":[-79.8,36.8],"shL":[-7.5,-119.9],"elL":[16.4,-28.2],"haL":[22.5,37.9],"hipR":[-48.7,29],"knR":[-53.2,165.6],"ftR":[-59.7,314.8],"hipL":[-9.8,47.5],"knL":[-31.5,182.4],"ftL":[37.4,323.6]},{"rootY":11.6,"hips":[0,0],"chest":[-23.4,-80.4],"neck":[-23.4,-80.4],"head":[-14.8,-159.3],"shR":[-50.1,-109.1],"elR":[-44.7,-22.8],"haR":[-80.5,39.4],"shL":[3.2,-119.5],"elL":[21.9,-26.1],"haL":[12.7,39.1],"hipR":[-56.4,28.3],"knR":[-44.9,161.9],"ftR":[-37.1,310.9],"hipL":[0.8,49.7],"knL":[-25.5,183.8],"ftL":[31.6,330.1]},{"rootY":8.8,"hips":[0,0],"chest":[-21,-80.3],"neck":[-21,-80.3],"head":[-14.8,-159.6],"shR":[-55.2,-109.8],"elR":[-50.8,-25.6],"haR":[-81.8,39],"shL":[12.8,-118.8],"elL":[29.6,-24.6],"haL":[3,34],"hipR":[-60.4,30.7],"knR":[-41.7,161.2],"ftR":[-20.7,305.8],"hipL":[10.7,50.5],"knL":[-25.5,182.6],"ftL":[26,330.4]},{"rootY":5.8,"hips":[0,0],"chest":[-19.5,-79.6],"neck":[-19.5,-79.6],"head":[-13.9,-159],"shR":[-58.7,-110.5],"elR":[-60.3,-28.6],"haR":[-90.3,36.4],"shL":[18.8,-116.5],"elL":[35.8,-21.9],"haL":[-1,29.6],"hipR":[-63.7,28.7],"knR":[-44.3,161.2],"ftR":[-25,308.9],"hipL":[14.5,52.6],"knL":[-23,184.4],"ftL":[24,333.3]},{"rootY":1.6,"hips":[0,0],"chest":[-17.9,-78.9],"neck":[-17.9,-78.9],"head":[-11.9,-158.3],"shR":[-58,-112.2],"elR":[-66.7,-30.3],"haR":[-100.9,32.4],"shL":[22.5,-113.4],"elL":[41.8,-19.3],"haL":[2.5,30.7],"hipR":[-64.1,28.7],"knR":[-48.4,164.7],"ftR":[-34.7,314.2],"hipL":[15.4,52.9],"knL":[-17.5,186],"ftL":[23.9,336.4]},{"rootY":-1.2,"hips":[0,0],"chest":[-16.3,-78.3],"neck":[-16.3,-78.3],"head":[-9.1,-157.6],"shR":[-54.3,-114.3],"elR":[-67.4,-32.6],"haR":[-108.8,24.7],"shL":[23.9,-110],"elL":[45.4,-16.3],"haL":[11,38.7],"hipR":[-63.3,28.5],"knR":[-53.9,167.4],"ftR":[-29.1,315.7],"hipL":[15.2,53.8],"knL":[-13.1,187.7],"ftL":[24.8,339.2]},{"rootY":-1,"hips":[0,0],"chest":[-15.4,-78],"neck":[-15.4,-78],"head":[-7,-156.9],"shR":[-50.1,-117.4],"elR":[-66.1,-37.5],"haR":[-112.1,14],"shL":[23.3,-105.9],"elL":[45.5,-12.4],"haL":[22.2,50],"hipR":[-62.3,26.1],"knR":[-55.6,165.6],"ftR":[-17.4,312.3],"hipL":[12.2,55.5],"knL":[-13.2,189.9],"ftL":[26.8,340.9]},{"rootY":1,"hips":[0,0],"chest":[-15,-77.9],"neck":[-15,-77.9],"head":[-6.5,-156.4],"shR":[-46,-120.1],"elR":[-62.5,-42.8],"haR":[-110.4,5.3],"shL":[21.6,-102.6],"elL":[42.5,-8.7],"haL":[35,58.6],"hipR":[-59.6,24.1],"knR":[-59.3,162.9],"ftR":[-14.5,308.5],"hipL":[7.5,56.7],"knL":[-14.7,191.7],"ftL":[30.5,341.5]},{"rootY":1.6,"hips":[0,0],"chest":[-17.6,-78],"neck":[-17.6,-78],"head":[-8.8,-156.2],"shR":[-45.2,-121.8],"elR":[-57.2,-45.8],"haR":[-105.2,3.6],"shL":[16.3,-100.7],"elL":[38.2,-7.2],"haL":[42.7,61.6],"hipR":[-56.3,24.7],"knR":[-66.7,162.9],"ftR":[-27.1,310.1],"hipL":[3.6,55.9],"knL":[-13.1,191.5],"ftL":[34.4,340.6]}]},"walk":{"name":"walk","fps":30,"height":520,"groundY":344,"frameCount":86,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.6,-84.9],"neck":[0.6,-84.9],"head":[1.5,-149.1],"shR":[-71.5,-100.6],"elR":[-174.2,-86.2],"haR":[-242.9,-76.5],"shL":[73.7,-103.6],"elL":[173,-89.6],"haL":[241.5,-80],"hipR":[-33.2,37.2],"knR":[-30.5,193.6],"ftR":[-27.9,342.4],"hipL":[34.2,37.2],"knL":[31.4,193.7],"ftL":[28.8,344]},{"rootY":0.7,"hips":[0,0],"chest":[-5.8,-84.6],"neck":[-5.8,-84.6],"head":[-7.3,-148.9],"shR":[-78.3,-97],"elR":[-92.1,2.9],"haR":[-91.3,39.8],"shL":[66,-107.6],"elL":[61.1,-12.8],"haL":[72.2,55.4],"hipR":[-36.8,35],"knR":[-14.6,185.3],"ftR":[9.1,317.4],"hipL":[29.5,37.8],"knL":[5.4,172],"ftL":[-8.4,320.6]},{"rootY":2.9,"hips":[0,0],"chest":[-4.6,-84.8],"neck":[-4.6,-84.8],"head":[-6.4,-148.9],"shR":[-77,-97.1],"elR":[-90.6,2.9],"haR":[-90.1,41.3],"shL":[67.1,-107.8],"elL":[61.5,-12.6],"haL":[72.1,55.7],"hipR":[-36.8,35.1],"knR":[-14.7,184.1],"ftR":[9.3,311.3],"hipL":[29.5,37.9],"knL":[3.6,172.2],"ftL":[-9.9,321.8]},{"rootY":3.8,"hips":[0,0],"chest":[-4,-84.8],"neck":[-4,-84.8],"head":[-5.5,-148.8],"shR":[-76.3,-98.1],"elR":[-88.1,2.4],"haR":[-88.2,44.1],"shL":[68,-106.8],"elL":[62.4,-10.8],"haL":[72.4,57.7],"hipR":[-36.9,34.9],"knR":[-15.7,184],"ftR":[8.1,303.8],"hipL":[29.4,38],"knL":[2.8,171.7],"ftL":[-8.7,321.3]},{"rootY":3.6,"hips":[0,0],"chest":[-2.9,-84.9],"neck":[-2.9,-84.9],"head":[-3.4,-148.8],"shR":[-75.1,-98.6],"elR":[-84.8,2.6],"haR":[-85.7,48.5],"shL":[69.3,-106.4],"elL":[64.2,-9.3],"haL":[73.8,59.2],"hipR":[-35.5,36.1],"knR":[-18,188.2],"ftR":[4.3,295.5],"hipL":[31,36.9],"knL":[4.4,172],"ftL":[-7.6,320.9]},{"rootY":2,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[-2.9,-148.7],"shR":[-75,-99.1],"elR":[-82.8,2.7],"haR":[-83.9,53.1],"shL":[69.4,-105.9],"elL":[64.8,-7.9],"haL":[74.2,60.6],"hipR":[-35.7,36],"knR":[-22.7,190.8],"ftR":[-2.9,287.7],"hipL":[30.7,37],"knL":[3.4,174.4],"ftL":[-7.8,322.1]},{"rootY":0.6,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.6,-148.6],"shR":[-74.7,-99.1],"elR":[-80.9,3.3],"haR":[-82.7,58.1],"shL":[69.5,-105.9],"elL":[65.4,-7.2],"haL":[74.4,60.8],"hipR":[-35,36.7],"knR":[-26.4,192.9],"ftR":[-9.8,279.5],"hipL":[31.4,36.2],"knL":[3.5,177.4],"ftL":[-7.6,323.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2,-148.6],"shR":[-74.1,-99.1],"elR":[-78.9,3.7],"haR":[-81.5,61.9],"shL":[69.9,-105.9],"elL":[67.2,-6.7],"haL":[75.3,60.3],"hipR":[-34,37.5],"knR":[-28.4,193.1],"ftR":[-14.1,272.3],"hipL":[32.5,35.2],"knL":[4.8,179.6],"ftL":[-6.8,325.2]},{"rootY":-2.8,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.1,-148.5],"shR":[-74.1,-98.8],"elR":[-77.2,4.5],"haR":[-80.6,65.5],"shL":[69.8,-106.2],"elL":[68.2,-6.6],"haL":[75.5,58.5],"hipR":[-33.8,37.5],"knR":[-30.4,190.8],"ftR":[-17.9,269.4],"hipL":[32.7,35],"knL":[5.4,182.4],"ftL":[-6.7,326.7]},{"rootY":-4.2,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-2.2,-148.6],"shR":[-74.2,-98.2],"elR":[-76.1,5.4],"haR":[-79.6,68.6],"shL":[69.6,-106.8],"elL":[69.7,-6.8],"haL":[75.2,55.4],"hipR":[-33.4,37.5],"knR":[-30.9,187.3],"ftR":[-22.4,270.9],"hipL":[33.4,34.9],"knL":[6.5,184.6],"ftL":[-6.7,327.8]},{"rootY":-5.4,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[-2.3,-148.7],"shR":[-74.1,-98.1],"elR":[-74.9,5.4],"haR":[-78.3,70.4],"shL":[70,-106.9],"elL":[71.6,-6.7],"haL":[75.1,51.5],"hipR":[-33.2,37.3],"knR":[-29.2,182.8],"ftR":[-26.9,276.6],"hipL":[34,35.2],"knL":[7.5,186.4],"ftL":[-6.1,328.4]},{"rootY":-5.1,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-2.2,-148.7],"shR":[-73.8,-97.8],"elR":[-73.5,5.2],"haR":[-76.8,71.6],"shL":[70.3,-107.2],"elL":[73.8,-7],"haL":[74.8,46.6],"hipR":[-32.7,37.4],"knR":[-26.7,178.5],"ftR":[-31.6,285.8],"hipL":[34.6,35.1],"knL":[8.8,187.6],"ftL":[-5.5,328]},{"rootY":-4.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.6,-148.8],"shR":[-73.2,-97.5],"elR":[-72.2,4.5],"haR":[-75.2,71.9],"shL":[71,-107.5],"elL":[76.1,-7.4],"haL":[74.4,40.8],"hipR":[-32.4,37.3],"knR":[-23.7,175],"ftR":[-34.6,297],"hipL":[34.9,35.1],"knL":[10,188.7],"ftL":[-4.5,327.3]},{"rootY":-5.3,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1.1,-148.8],"shR":[-72.6,-97],"elR":[-70.6,3.9],"haR":[-73.4,72.2],"shL":[71.5,-108],"elL":[78.2,-7.9],"haL":[74.1,35.1],"hipR":[-31.6,37.7],"knR":[-21.3,172.9],"ftR":[-36,308.4],"hipL":[35.7,34.9],"knL":[11.8,189.4],"ftL":[-3.9,327.3]},{"rootY":-5.9,"hips":[0,0],"chest":[0.3,-84.9],"neck":[0.3,-84.9],"head":[-0.9,-148.8],"shR":[-72.2,-97.2],"elR":[-68.7,2.5],"haR":[-71.2,71.5],"shL":[72.1,-107.9],"elL":[80.4,-7.9],"haL":[74.3,30.1],"hipR":[-31,38.1],"knR":[-19.7,172.5],"ftR":[-34.5,317.3],"hipL":[36.3,34.6],"knL":[13.5,189.5],"ftL":[-3,327.1]},{"rootY":-5.8,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-0.8,-148.7],"shR":[-72.3,-97],"elR":[-67.3,1.5],"haR":[-69.4,70.8],"shL":[71.9,-108.1],"elL":[81.5,-8.2],"haL":[73.5,25.8],"hipR":[-30.8,38],"knR":[-19.2,172.2],"ftR":[-29.4,320.6],"hipL":[36.4,34.8],"knL":[14.7,189.3],"ftL":[-2.6,326.4]},{"rootY":-5.6,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-1,-148.7],"shR":[-72.8,-96.8],"elR":[-66.3,0.7],"haR":[-68.1,70],"shL":[71.5,-108.2],"elL":[81.8,-8.5],"haL":[73.1,23.2],"hipR":[-30.7,37.8],"knR":[-19.9,171.4],"ftR":[-22.8,319.6],"hipL":[36.5,35],"knL":[15.6,187.8],"ftL":[-2.7,325]},{"rootY":-5.1,"hips":[0,0],"chest":[0.1,-84.9],"neck":[0.1,-84.9],"head":[-1.2,-148.7],"shR":[-72.6,-96.3],"elR":[-64.8,0.8],"haR":[-66.5,69.9],"shL":[71.7,-108.8],"elL":[82.3,-9],"haL":[73.1,22],"hipR":[-30.1,38.2],"knR":[-19.1,170.5],"ftR":[-17.6,317.9],"hipL":[37,34.8],"knL":[16.5,185.2],"ftL":[-2,322]},{"rootY":-3.5,"hips":[0,0],"chest":[0.4,-84.9],"neck":[0.4,-84.9],"head":[-1.1,-148.6],"shR":[-72.4,-95.7],"elR":[-63.5,1.1],"haR":[-65.3,70.1],"shL":[71.7,-109.4],"elL":[81.9,-9.6],"haL":[72.9,22.9],"hipR":[-30.3,37.9],"knR":[-16.6,171.5],"ftR":[-14.3,319.3],"hipL":[36.8,35],"knL":[17.2,185],"ftL":[-0.1,316.8]},{"rootY":-1.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-1.1,-148.5],"shR":[-72.4,-95.5],"elR":[-62.7,1.7],"haR":[-64.3,70.5],"shL":[71.6,-109.4],"elL":[81.4,-9.7],"haL":[73.3,25.7],"hipR":[-30,38.1],"knR":[-13.6,171.9],"ftR":[-12.1,320.6],"hipL":[37,34.8],"knL":[18.1,184.1],"ftL":[2.1,310.2]},{"rootY":-1.7,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-2.3,-148.3],"shR":[-73.3,-95.1],"elR":[-63.2,2.7],"haR":[-64.7,71.5],"shL":[70.7,-109.7],"elL":[79.4,-10],"haL":[73,30.5],"hipR":[-31.4,36.9],"knR":[-13.6,171.6],"ftR":[-11.5,320.3],"hipL":[35.8,35.8],"knL":[17.9,185.6],"ftL":[3.7,302.5]},{"rootY":-1.9,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.9,-148.2],"shR":[-73.9,-94.4],"elR":[-63.8,4.2],"haR":[-65.6,73.2],"shL":[69.9,-110.3],"elL":[76.7,-10.4],"haL":[73.1,36],"hipR":[-32,36.4],"knR":[-13,172.7],"ftR":[-10.9,320.7],"hipL":[35.2,35.9],"knL":[19.1,187.8],"ftL":[6.4,292.8]},{"rootY":-2.7,"hips":[0,0],"chest":[-1.1,-84.9],"neck":[-1.1,-84.9],"head":[-3.1,-148],"shR":[-73.8,-94.7],"elR":[-64.2,4.9],"haR":[-66.4,74.1],"shL":[70.1,-109.9],"elL":[75.1,-10],"haL":[74.3,42.8],"hipR":[-32.6,36],"knR":[-11.9,174.6],"ftR":[-9.1,321.3],"hipL":[34.7,36.6],"knL":[22.4,191.3],"ftL":[11.3,284.7]},{"rootY":-5,"hips":[0,0],"chest":[-0.8,-84.9],"neck":[-0.8,-84.9],"head":[-2.8,-148],"shR":[-73.6,-95.1],"elR":[-64.8,5.6],"haR":[-67.6,74.9],"shL":[70.5,-109.6],"elL":[73.7,-9.7],"haL":[75.5,48.8],"hipR":[-32.9,35.5],"knR":[-12.4,177.7],"ftR":[-8,323],"hipL":[34.3,37],"knL":[25.5,193.3],"ftL":[15.1,276.3]},{"rootY":-6.5,"hips":[0,0],"chest":[-1.2,-84.9],"neck":[-1.2,-84.9],"head":[-2.8,-148],"shR":[-74,-95.6],"elR":[-66.4,6],"haR":[-69.5,75.1],"shL":[70.3,-109.1],"elL":[72.4,-9.1],"haL":[76.7,53.7],"hipR":[-33.7,34.9],"knR":[-14.4,180.4],"ftR":[-7.9,324.6],"hipL":[33.6,37.4],"knL":[27.5,193],"ftL":[15.3,270]},{"rootY":-8.3,"hips":[0,0],"chest":[-1,-84.9],"neck":[-1,-84.9],"head":[-2,-148.2],"shR":[-73.7,-96.5],"elR":[-67.6,6],"haR":[-71.2,74.3],"shL":[70.8,-108.2],"elL":[71.9,-8.3],"haL":[78.2,57.5],"hipR":[-34.1,34.7],"knR":[-14.9,182.9],"ftR":[-7.1,326.2],"hipL":[33.2,37.5],"knL":[29.1,190.3],"ftL":[16.1,268.6]},{"rootY":-9.7,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-1.3,-148.4],"shR":[-73.6,-97.1],"elR":[-70.2,6.2],"haR":[-73.6,72.9],"shL":[71,-107.7],"elL":[71.4,-7.9],"haL":[78.5,59.4],"hipR":[-34.5,34.6],"knR":[-15.5,185.1],"ftR":[-6.6,327.2],"hipL":[32.8,37.1],"knL":[29.2,185.9],"ftL":[18.2,272.5]},{"rootY":-9.4,"hips":[0,0],"chest":[-1.6,-84.9],"neck":[-1.6,-84.9],"head":[-1.8,-148.6],"shR":[-74.1,-98.3],"elR":[-73.7,5.3],"haR":[-76.7,69.5],"shL":[70.7,-106.6],"elL":[70.9,-7.3],"haL":[78.9,60.8],"hipR":[-35.3,34.4],"knR":[-17.6,186.4],"ftR":[-6.6,326.8],"hipL":[32,37.5],"knL":[27.1,181.2],"ftL":[20.5,280.6]},{"rootY":-8.9,"hips":[0,0],"chest":[-1.8,-84.9],"neck":[-1.8,-84.9],"head":[-1.3,-148.7],"shR":[-74.2,-98.8],"elR":[-77.4,4.8],"haR":[-78.5,64.8],"shL":[70.6,-106],"elL":[70.7,-7.8],"haL":[78.8,60.6],"hipR":[-35.3,34.8],"knR":[-18.5,187.9],"ftR":[-6.5,326.4],"hipL":[31.9,37.2],"knL":[24.5,175.9],"ftL":[22.1,290.9]},{"rootY":-8.7,"hips":[0,0],"chest":[-2.4,-84.9],"neck":[-2.4,-84.9],"head":[-1.6,-148.8],"shR":[-74.7,-99.1],"elR":[-81.1,4.1],"haR":[-82.1,59.5],"shL":[70.1,-105.8],"elL":[69.6,-8.7],"haL":[78.1,59.9],"hipR":[-35.9,34.5],"knR":[-19.9,189],"ftR":[-6.9,326.2],"hipL":[31.2,37.4],"knL":[21.5,172.3],"ftL":[22.3,302.5]},{"rootY":-9.7,"hips":[0,0],"chest":[-2.8,-84.9],"neck":[-2.8,-84.9],"head":[-2.3,-148.9],"shR":[-75,-99.5],"elR":[-84.8,3],"haR":[-84.3,52.2],"shL":[69.8,-105.4],"elL":[68.7,-9.4],"haL":[77,59.2],"hipR":[-35.9,34.7],"knR":[-20.7,190.2],"ftR":[-6.9,327],"hipL":[31.1,37.2],"knL":[19,170.1],"ftL":[21.5,313.1]},{"rootY":-10.3,"hips":[0,0],"chest":[-3.1,-84.9],"neck":[-3.1,-84.9],"head":[-2.7,-149],"shR":[-75.3,-99.6],"elR":[-87.9,2],"haR":[-86.1,44.8],"shL":[69.5,-105.3],"elL":[67.2,-10.4],"haL":[75.4,58.3],"hipR":[-36.3,34.5],"knR":[-21.7,190.2],"ftR":[-7.9,326.8],"hipL":[30.6,37.6],"knL":[17,170.4],"ftL":[19.2,319.8]},{"rootY":-10.1,"hips":[0,0],"chest":[-3.4,-84.9],"neck":[-3.4,-84.9],"head":[-3.4,-148.9],"shR":[-75.5,-99.4],"elR":[-91.1,1],"haR":[-87.8,37.8],"shL":[69.2,-105.5],"elL":[65.8,-11.4],"haL":[73.7,57.3],"hipR":[-36.8,34.2],"knR":[-22.6,189.2],"ftR":[-8.2,325.6],"hipL":[29.9,37.9],"knL":[15.4,171],"ftL":[16.7,321.1]},{"rootY":-9.6,"hips":[0,0],"chest":[-3.3,-84.9],"neck":[-3.3,-84.9],"head":[-4.2,-149],"shR":[-75.4,-99.6],"elR":[-92.3,-0.2],"haR":[-88.5,31.6],"shL":[69.3,-105.3],"elL":[64.8,-11.7],"haL":[72.4,56.9],"hipR":[-36.9,34.3],"knR":[-23.3,187.4],"ftR":[-9.3,323.9],"hipL":[29.7,37.7],"knL":[14.3,171.1],"ftL":[13.6,319.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-3.5,-84.9],"neck":[-3.5,-84.9],"head":[-5,-148.9],"shR":[-75.5,-99.5],"elR":[-93.6,-1.1],"haR":[-89.6,26.8],"shL":[69.1,-105.3],"elL":[63.8,-11.5],"haL":[70.9,57.2],"hipR":[-37.3,34],"knR":[-24,184.9],"ftR":[-10.3,319.8],"hipL":[29.2,37.9],"knL":[13.3,171.6],"ftL":[11.7,320.1]},{"rootY":-7.3,"hips":[0,0],"chest":[-2.6,-84.9],"neck":[-2.6,-84.9],"head":[-4.4,-149],"shR":[-74.6,-99.6],"elR":[-93.2,-1.4],"haR":[-89.7,24.1],"shL":[70,-105.3],"elL":[64.2,-10.6],"haL":[70.6,58],"hipR":[-37.1,34.3],"knR":[-24.1,184.3],"ftR":[-10.9,314.2],"hipL":[29.3,37.6],"knL":[12.9,172.8],"ftL":[10.4,322.4]},{"rootY":-7.2,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[-4.2,-149],"shR":[-73.6,-99.5],"elR":[-91.9,-1.1],"haR":[-88.9,24.3],"shL":[71,-105.2],"elL":[64.5,-9.7],"haL":[70.5,59.1],"hipR":[-36.7,34.6],"knR":[-24.3,182.5],"ftR":[-12.4,308.4],"hipL":[29.8,37.2],"knL":[12.6,172.4],"ftL":[8.9,322.7]},{"rootY":-7.4,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[-3.5,-149.1],"shR":[-72.7,-99.9],"elR":[-89.2,-0.6],"haR":[-87,26.8],"shL":[71.9,-104.6],"elL":[65.6,-7.9],"haL":[71.5,61],"hipR":[-36.6,34.5],"knR":[-24.9,183.9],"ftR":[-14.6,299.9],"hipL":[30.1,37.4],"knL":[13.7,172.9],"ftL":[9.2,322.8]},{"rootY":-8.4,"hips":[0,0],"chest":[-0.5,-84.9],"neck":[-0.5,-84.9],"head":[-2.8,-149.1],"shR":[-72.3,-100.3],"elR":[-87,0.3],"haR":[-85.5,31.8],"shL":[72.5,-104.1],"elL":[66.8,-6.2],"haL":[72.7,62.8],"hipR":[-35.4,35.4],"knR":[-26.6,188],"ftR":[-18.5,291.9],"hipL":[31.4,36.4],"knL":[14.5,174.4],"ftL":[8.8,323.4]},{"rootY":-10.4,"hips":[0,0],"chest":[-0.6,-85],"neck":[-0.6,-85],"head":[-3,-149.1],"shR":[-72.4,-100.3],"elR":[-85.6,1.1],"haR":[-84.7,37.5],"shL":[72.5,-104],"elL":[67.2,-5.5],"haL":[73.5,63.1],"hipR":[-35.1,35.8],"knR":[-28.8,191.3],"ftR":[-23.9,283.9],"hipL":[31.8,36.3],"knL":[13.8,177.6],"ftL":[7.2,325.5]},{"rootY":-12.3,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-2.6,-149.2],"shR":[-71.7,-99.4],"elR":[-82.9,2.6],"haR":[-83,44.9],"shL":[72.8,-104.9],"elL":[68.6,-5.9],"haL":[74.8,61.5],"hipR":[-33.6,37.3],"knR":[-29.9,193.6],"ftR":[-26.2,276.7],"hipL":[33.2,34.9],"knL":[13.7,179.9],"ftL":[6.1,326.8]},{"rootY":-14.1,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-3.2,-149.2],"shR":[-72,-99.7],"elR":[-81.3,2.9],"haR":[-82.5,51],"shL":[72.6,-104.7],"elL":[70.3,-5.3],"haL":[76.2,60],"hipR":[-33,37.5],"knR":[-30.9,192.6],"ftR":[-26.5,272.1],"hipL":[34,34.3],"knL":[14.5,182.4],"ftL":[5.2,328.3]},{"rootY":-15.8,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-3.4,-149.3],"shR":[-72.3,-98.8],"elR":[-79.5,4.4],"haR":[-81.8,58.3],"shL":[72.1,-105.6],"elL":[71.6,-5.9],"haL":[76.7,56.1],"hipR":[-33,37.3],"knR":[-31.6,189.3],"ftR":[-27.6,271.8],"hipL":[34.1,34.5],"knL":[14.6,184.9],"ftL":[4.1,329.6]},{"rootY":-16.2,"hips":[0,0],"chest":[-0.5,-85],"neck":[-0.5,-85],"head":[-4,-149.3],"shR":[-72.6,-98.4],"elR":[-77.3,5.1],"haR":[-80.8,63.8],"shL":[71.9,-106],"elL":[73.6,-6],"haL":[77.3,51.5],"hipR":[-32.6,37.1],"knR":[-31,185.1],"ftR":[-29.4,276.7],"hipL":[34.6,34.4],"knL":[14.6,186.4],"ftL":[2.9,329.4]},{"rootY":-15.6,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-4,-149.3],"shR":[-72.6,-97.9],"elR":[-75.5,5.6],"haR":[-79.3,68.5],"shL":[71.9,-106.6],"elL":[76.1,-6.5],"haL":[78.2,45.2],"hipR":[-32.2,37.2],"knR":[-29,180.4],"ftR":[-30.6,285.1],"hipL":[35.1,34.5],"knL":[15.2,187.6],"ftL":[2.6,328.9]},{"rootY":-14.5,"hips":[0,0],"chest":[-0.3,-85],"neck":[-0.3,-85],"head":[-4.4,-149.4],"shR":[-72.7,-97.4],"elR":[-73.4,5.9],"haR":[-78.2,71.7],"shL":[71.9,-107.1],"elL":[78.4,-7],"haL":[78.7,38.4],"hipR":[-31.9,36.9],"knR":[-26.6,176.2],"ftR":[-32.3,295.7],"hipL":[35.4,34.7],"knL":[15.6,188.8],"ftL":[1.8,328.1]},{"rootY":-14.5,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[-3.7,-149.4],"shR":[-72.4,-97.1],"elR":[-71.2,5.5],"haR":[-76.2,73.4],"shL":[72.2,-107.5],"elL":[81.2,-7.6],"haL":[79.6,31.4],"hipR":[-30.9,37.2],"knR":[-23.9,174.2],"ftR":[-33.1,307.9],"hipL":[36.4,34.1],"knL":[16.6,189.1],"ftL":[1.7,327.2]},{"rootY":-15.2,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.8,-149.4],"shR":[-72.3,-96.9],"elR":[-69.3,4.8],"haR":[-74.1,73.8],"shL":[72.4,-107.7],"elL":[83.2,-8],"haL":[79.9,25],"hipR":[-30.4,37.4],"knR":[-21.9,173.5],"ftR":[-33.4,317.7],"hipL":[36.8,34.2],"knL":[17.5,189.6],"ftL":[1.5,327.4]},{"rootY":-15.1,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-3.4,-149.4],"shR":[-72.2,-96.5],"elR":[-67.8,3.9],"haR":[-72.3,73.1],"shL":[72.5,-108.1],"elL":[85.1,-8.6],"haL":[80.5,19.4],"hipR":[-30.3,37.2],"knR":[-20.3,173.7],"ftR":[-29.8,322.1],"hipL":[36.8,34.6],"knL":[18.4,189.5],"ftL":[2.1,326.7]},{"rootY":-15.1,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.6,-149.4],"shR":[-72.5,-96.4],"elR":[-66.4,2.7],"haR":[-70.1,71.6],"shL":[72.1,-108.3],"elL":[85.8,-8.9],"haL":[80.6,15.8],"hipR":[-29.8,37.5],"knR":[-20.7,173],"ftR":[-24.2,321.2],"hipL":[37.2,34.5],"knL":[18.7,187.6],"ftL":[1.4,325.2]},{"rootY":-13.9,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[-3.5,-149.3],"shR":[-72.7,-96.1],"elR":[-65.1,1.7],"haR":[-67.9,69.9],"shL":[71.9,-108.6],"elL":[86.2,-9.3],"haL":[80.6,13.9],"hipR":[-29.3,37.6],"knR":[-20.2,171.8],"ftR":[-17.6,319.2],"hipL":[37.5,34.5],"knL":[19.3,185],"ftL":[2,321.7]},{"rootY":-12.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[-3.2,-149.2],"shR":[-72.5,-95.8],"elR":[-63.9,1.1],"haR":[-66.1,68.8],"shL":[72,-108.8],"elL":[86,-9.5],"haL":[80.9,14.6],"hipR":[-29.8,37.4],"knR":[-17.5,171.6],"ftR":[-14,319.5],"hipL":[37.1,34.8],"knL":[19.6,183.2],"ftL":[2.9,316.7]},{"rootY":-10.5,"hips":[0,0],"chest":[0.7,-85],"neck":[0.7,-85],"head":[-2.8,-149.1],"shR":[-72.1,-95.8],"elR":[-62.5,0.9],"haR":[-63.8,68.4],"shL":[72.3,-108.8],"elL":[85.8,-9.5],"haL":[81,17.5],"hipR":[-29.4,37.7],"knR":[-14.2,172.7],"ftR":[-11.4,321.3],"hipL":[37.5,34.4],"knL":[20.5,182],"ftL":[4.5,309.4]},{"rootY":-9.5,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[-3.3,-149.1],"shR":[-72.9,-95.3],"elR":[-62.6,1.6],"haR":[-63.6,69.3],"shL":[71.3,-109.1],"elL":[83.6,-9.8],"haL":[80.2,22],"hipR":[-30.9,36.4],"knR":[-13.2,172],"ftR":[-11,320.7],"hipL":[36.1,35.6],"knL":[20.8,184.3],"ftL":[6,301.5]},{"rootY":-9,"hips":[0,0],"chest":[-0.3,-84.9],"neck":[-0.3,-84.9],"head":[-3.5,-149],"shR":[-72.8,-95.1],"elR":[-62.4,2.8],"haR":[-63.6,70.8],"shL":[71.2,-109.1],"elL":[81.2,-9.9],"haL":[79.7,29.2],"hipR":[-32,35.6],"knR":[-12.4,171.9],"ftR":[-10,319.7],"hipL":[35.1,36.2],"knL":[22.7,187.6],"ftL":[8.9,291.4]},{"rootY":-9.3,"hips":[0,0],"chest":[0.2,-84.9],"neck":[0.2,-84.9],"head":[-2.6,-149],"shR":[-72.3,-95.2],"elR":[-62.4,4],"haR":[-64.4,72.6],"shL":[71.7,-109.1],"elL":[79.1,-9.7],"haL":[79.2,36.8],"hipR":[-32.3,35.3],"knR":[-10.4,173.6],"ftR":[-8.2,320],"hipL":[34.9,36.3],"knL":[26.5,190.8],"ftL":[13.6,281.9]},{"rootY":-10.3,"hips":[0,0],"chest":[0.6,-85],"neck":[0.6,-85],"head":[-1.5,-149.1],"shR":[-71.9,-96],"elR":[-62.4,4.4],"haR":[-65,73.6],"shL":[72.3,-108.4],"elL":[77.4,-8.9],"haL":[79.3,44.8],"hipR":[-32.9,34.9],"knR":[-9.3,176.1],"ftR":[-6.5,321.1],"hipL":[34.2,37],"knL":[30.5,193.5],"ftL":[17.1,272.7]},{"rootY":-11.7,"hips":[0,0],"chest":[0.1,-85],"neck":[0.1,-85],"head":[-1.1,-149.2],"shR":[-72.4,-96.9],"elR":[-63.7,4.6],"haR":[-66.9,73.9],"shL":[72.1,-107.5],"elL":[74.8,-7.8],"haL":[78.6,52],"hipR":[-33.2,34.8],"knR":[-10.6,178.9],"ftR":[-6.7,322.6],"hipL":[34,37.1],"knL":[32.5,192.8],"ftL":[16.5,266.6]},{"rootY":-13.4,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[-1.1,-149.2],"shR":[-72.8,-97.6],"elR":[-65.6,5],"haR":[-69.2,73.7],"shL":[71.8,-107],"elL":[71.9,-7],"haL":[77.5,57.3],"hipR":[-33.4,34.5],"knR":[-12.3,181.7],"ftR":[-7.3,323.6],"hipL":[33.8,36.8],"knL":[32.5,190.2],"ftL":[15.7,265.5]},{"rootY":-14.8,"hips":[0,0],"chest":[-0.1,-85],"neck":[-0.1,-85],"head":[-0.3,-149.3],"shR":[-72.4,-98.4],"elR":[-67.4,4.9],"haR":[-71.1,72],"shL":[72.3,-106.1],"elL":[70.3,-6.3],"haL":[76.5,60.6],"hipR":[-34,34.6],"knR":[-13.7,184.4],"ftR":[-7.2,325.4],"hipL":[33.4,36.7],"knL":[32,186.3],"ftL":[18,269.7]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.4,-85],"neck":[-0.4,-85],"head":[0.2,-149.4],"shR":[-72.5,-98.9],"elR":[-70.6,4.7],"haR":[-73.9,69],"shL":[72.2,-105.7],"elL":[68.5,-6.1],"haL":[74.8,62.1],"hipR":[-34.9,34.3],"knR":[-15.7,186.1],"ftR":[-7.5,325.9],"hipL":[32.4,37.1],"knL":[30.4,181.9],"ftL":[20.6,278.2]},{"rootY":-15.7,"hips":[0,0],"chest":[-0.8,-85],"neck":[-0.8,-85],"head":[0.2,-149.4],"shR":[-72.7,-99.6],"elR":[-74.1,3.7],"haR":[-77.2,64.1],"shL":[72,-105],"elL":[67.1,-6.1],"haL":[73.1,62.7],"hipR":[-35.1,34.6],"knR":[-17.3,187.9],"ftR":[-7.7,325.8],"hipL":[32.2,36.8],"knL":[27.7,176.9],"ftL":[22.6,289]},{"rootY":-16.2,"hips":[0,0],"chest":[-1.1,-85],"neck":[-1.1,-85],"head":[0.2,-149.3],"shR":[-72.8,-100.2],"elR":[-77.6,2.4],"haR":[-80.1,57.4],"shL":[71.8,-104.5],"elL":[65.7,-6.7],"haL":[71.3,62.3],"hipR":[-35.3,34.7],"knR":[-19.3,189.5],"ftR":[-8.6,326.2],"hipL":[31.9,36.9],"knL":[25.2,173.1],"ftL":[24.3,301.1]},{"rootY":-16.8,"hips":[0,0],"chest":[-1.6,-85],"neck":[-1.6,-85],"head":[0.2,-149.3],"shR":[-73.2,-100.4],"elR":[-81.1,1.2],"haR":[-82.5,50],"shL":[71.3,-104.3],"elL":[64,-7.8],"haL":[69.1,61.2],"hipR":[-36.1,34.2],"knR":[-21.2,189.9],"ftR":[-9.6,326.4],"hipL":[31,37.5],"knL":[23.3,171.1],"ftL":[25.8,312.6]},{"rootY":-18,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[-0.1,-149.2],"shR":[-73.3,-100.5],"elR":[-84.1,-0.3],"haR":[-84.5,42.5],"shL":[71.1,-104.2],"elL":[62.9,-8.9],"haL":[67.7,60.1],"hipR":[-36.4,34.3],"knR":[-22.5,189.9],"ftR":[-10.6,326.6],"hipL":[30.6,37.9],"knL":[21.6,171.1],"ftL":[26.5,320]},{"rootY":-17.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0.2,-149.1],"shR":[-73.5,-100.6],"elR":[-86.6,-1.7],"haR":[-86,34.9],"shL":[71,-104.2],"elL":[61.9,-9.5],"haL":[66.5,59.4],"hipR":[-36.8,34.2],"knR":[-23.9,188.7],"ftR":[-11.9,325.6],"hipL":[30.1,38.2],"knL":[20,171.8],"ftL":[26.2,321.9]},{"rootY":-16.7,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[0,-149],"shR":[-73.4,-100.7],"elR":[-88.1,-3.1],"haR":[-86.7,28.3],"shL":[71,-104.1],"elL":[61.5,-9.5],"haL":[65.8,59.3],"hipR":[-37,34.1],"knR":[-24.8,186.7],"ftR":[-12.6,323.4],"hipL":[29.7,38.2],"knL":[19.3,172],"ftL":[24.1,320.9]},{"rootY":-15.4,"hips":[0,0],"chest":[-2.2,-84.9],"neck":[-2.2,-84.9],"head":[-0.2,-148.9],"shR":[-73.6,-100.9],"elR":[-89,-4.2],"haR":[-87.1,23.5],"shL":[70.8,-104],"elL":[61.2,-9.4],"haL":[65.4,59.4],"hipR":[-36.9,34.3],"knR":[-25.6,184.7],"ftR":[-14.5,319.2],"hipL":[29.8,37.7],"knL":[18.5,172.5],"ftL":[21.3,321.4]},{"rootY":-14.3,"hips":[0,0],"chest":[-2.1,-84.9],"neck":[-2.1,-84.9],"head":[0,-148.8],"shR":[-73.5,-100.9],"elR":[-89.6,-4.6],"haR":[-87,20.3],"shL":[70.9,-103.9],"elL":[61.5,-8.7],"haL":[65.6,60.3],"hipR":[-37.2,34.1],"knR":[-26.5,182.7],"ftR":[-16.3,313.6],"hipL":[29.4,38.1],"knL":[17.4,173.2],"ftL":[18,323]},{"rootY":-14.2,"hips":[0,0],"chest":[-1.8,-85],"neck":[-1.8,-85],"head":[0.3,-148.8],"shR":[-73.3,-100.8],"elR":[-89.1,-3.9],"haR":[-86.5,20.4],"shL":[71.2,-103.9],"elL":[62.3,-7.6],"haL":[66.5,61.4],"hipR":[-35.8,35.3],"knR":[-27.2,182.8],"ftR":[-19.9,307.7],"hipL":[31,37],"knL":[16.5,172.1],"ftL":[16.4,322.4]},{"rootY":-12.7,"hips":[0,0],"chest":[-1.7,-84.9],"neck":[-1.7,-84.9],"head":[1,-148.7],"shR":[-73.4,-100.7],"elR":[-87.9,-2.8],"haR":[-85.2,23.1],"shL":[71.4,-103.9],"elL":[63.1,-6.5],"haL":[67.7,62.6],"hipR":[-35.6,35.1],"knR":[-28.2,185.2],"ftR":[-22.5,297.3],"hipL":[31.4,37],"knL":[16.8,171.5],"ftL":[15.1,321.3]},{"rootY":-14.3,"hips":[0,0],"chest":[-1.9,-85],"neck":[-1.9,-85],"head":[1.2,-148.7],"shR":[-73.8,-100.5],"elR":[-86.7,-1.1],"haR":[-84.3,28.3],"shL":[71.1,-104.1],"elL":[63.8,-5.7],"haL":[68.9,63],"hipR":[-35,35.7],"knR":[-30.8,189],"ftR":[-27.9,288.9],"hipL":[32.1,36.4],"knL":[16.2,173.2],"ftL":[12.9,321.8]},{"rootY":-16.1,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[1,-148.6],"shR":[-74,-100.2],"elR":[-85.7,0],"haR":[-83,34.2],"shL":[70.9,-104.3],"elL":[64.9,-5.5],"haL":[70.7,62.3],"hipR":[-34.2,36.5],"knR":[-32.5,192.3],"ftR":[-33,280.5],"hipL":[32.7,35.6],"knL":[15.2,176.1],"ftL":[10.6,323.6]},{"rootY":-17.9,"hips":[0,0],"chest":[-1.9,-84.9],"neck":[-1.9,-84.9],"head":[1.1,-148.7],"shR":[-73.8,-99.9],"elR":[-84,1],"haR":[-81.5,40.9],"shL":[71,-104.6],"elL":[66.7,-5.4],"haL":[72.4,60.8],"hipR":[-33,37.4],"knR":[-33,193.8],"ftR":[-33.9,273],"hipL":[33.9,34.3],"knL":[15,178.6],"ftL":[9,324.9]},{"rootY":-20,"hips":[0,0],"chest":[-2,-84.9],"neck":[-2,-84.9],"head":[0.6,-148.7],"shR":[-73.8,-99.6],"elR":[-81.6,2.1],"haR":[-80.6,48.1],"shL":[70.7,-105.1],"elL":[68.3,-5.5],"haL":[73.8,58.1],"hipR":[-33.8,36.7],"knR":[-32.5,191.4],"ftR":[-31.2,268.3],"hipL":[33.1,34.9],"knL":[14.4,181.8],"ftL":[8.7,326.9]},{"rootY":-21.5,"hips":[0,0],"chest":[-2.1,-85],"neck":[-2.1,-85],"head":[-0.1,-148.8],"shR":[-74.1,-98.8],"elR":[-80,3.8],"haR":[-80.1,55.7],"shL":[70.3,-105.9],"elL":[70.2,-6],"haL":[75,54.2],"hipR":[-32.7,37.4],"knR":[-32.6,189],"ftR":[-32.6,268],"hipL":[34.5,34.3],"knL":[15.4,184.5],"ftL":[6.7,328.9]},{"rootY":-22.3,"hips":[0,0],"chest":[-1.5,-85],"neck":[-1.5,-85],"head":[0.3,-148.9],"shR":[-73.7,-98.3],"elR":[-77.9,5],"haR":[-78.7,61.9],"shL":[70.9,-106.4],"elL":[73.2,-6.4],"haL":[76.4,49.9],"hipR":[-32.6,37.1],"knR":[-29.9,184.3],"ftR":[-31.3,272.9],"hipL":[34.7,34.4],"knL":[16,186.2],"ftL":[6.3,329.2]},{"rootY":-21.7,"hips":[0,0],"chest":[-1.2,-85],"neck":[-1.2,-85],"head":[0.3,-149],"shR":[-73.6,-97.8],"elR":[-75.4,5.8],"haR":[-77.2,67.4],"shL":[71,-107],"elL":[75.3,-6.8],"haL":[77.2,44.4],"hipR":[-31.7,37.3],"knR":[-27.2,180],"ftR":[-31.3,281.7],"hipL":[35.6,34.2],"knL":[16.6,187],"ftL":[5.2,328]},{"rootY":-21.9,"hips":[0,0],"chest":[-0.9,-84.9],"neck":[-0.9,-84.9],"head":[0.6,-149],"shR":[-73.5,-97.2],"elR":[-72.8,6.4],"haR":[-75.9,71.3],"shL":[71.1,-107.5],"elL":[77.5,-7.4],"haL":[78,37.9],"hipR":[-30.8,37.7],"knR":[-24.8,177.1],"ftR":[-32.6,293.8],"hipL":[36.5,33.5],"knL":[17.3,187.9],"ftL":[4,327.5]},{"rootY":-21.1,"hips":[0,0],"chest":[0.2,-85],"neck":[0.2,-85],"head":[1.3,-149.1],"shR":[-72.6,-97],"elR":[-70.1,6.1],"haR":[-73.3,73.6],"shL":[72.1,-107.7],"elL":[80,-7.7],"haL":[79,32.1],"hipR":[-30.2,37.9],"knR":[-21.6,174.9],"ftR":[-30.6,306.5],"hipL":[37,33.3],"knL":[18,188.4],"ftL":[4.2,326.4]},{"rootY":-21.2,"hips":[0,0],"chest":[-0.2,-84.9],"neck":[-0.2,-84.9],"head":[0.5,-149.1],"shR":[-72.9,-97.7],"elR":[-68.3,4.7],"haR":[-71.5,73.6],"shL":[71.9,-107.3],"elL":[81.1,-7.4],"haL":[79.1,27],"hipR":[-30.8,37.2],"knR":[-19.9,174],"ftR":[-27.3,317.9],"hipL":[36.4,34.9],"knL":[18.4,190.3],"ftL":[3.9,326]},{"rootY":-22,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.8,-149.1],"shR":[-72.6,-97.1],"elR":[-66,4.1],"haR":[-69,73.4],"shL":[72.2,-107.8],"elL":[82.2,-8],"haL":[79.3,21.9],"hipR":[-31.6,36.4],"knR":[-17.9,174],"ftR":[-20.8,322.6],"hipL":[35.6,35.8],"knL":[19,191.4],"ftL":[3.9,326.3]},{"rootY":-22.4,"hips":[0,0],"chest":[0.5,-85],"neck":[0.5,-85],"head":[0.8,-149],"shR":[-72.5,-96.8],"elR":[-64,2.7],"haR":[-65.9,71.7],"shL":[72.3,-107.9],"elL":[83.1,-8.2],"haL":[79.8,18.9],"hipR":[-30.8,37],"knR":[-16.7,174.3],"ftR":[-14,322.4],"hipL":[36.3,35.6],"knL":[19.5,190.4],"ftL":[3,325.1]},{"rootY":-20.8,"hips":[0,0],"chest":[0.3,-85],"neck":[0.3,-85],"head":[0.5,-148.9],"shR":[-72.8,-96.8],"elR":[-62.6,1],"haR":[-64.4,69.7],"shL":[72,-108.2],"elL":[82.6,-8.4],"haL":[79.2,17.9],"hipR":[-29.2,38],"knR":[-14.7,174.5],"ftR":[-7.3,321.6],"hipL":[37.5,34.7],"knL":[20.3,188.1],"ftL":[2.9,321.6]},{"rootY":-19.4,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.6,-148.9],"shR":[-72.7,-96.4],"elR":[-61.1,0.3],"haR":[-62.2,68],"shL":[72,-108.3],"elL":[81.9,-8.5],"haL":[79.2,18.8],"hipR":[-31,36.5],"knR":[-11.8,174.2],"ftR":[-3.1,321.5],"hipL":[35.9,36.1],"knL":[20.7,189],"ftL":[5,317.3]},{"rootY":-17.1,"hips":[0,0],"chest":[0.4,-85],"neck":[0.4,-85],"head":[0.4,-148.8],"shR":[-72.8,-96.2],"elR":[-60,-0.1],"haR":[-61.3,67.6],"shL":[72,-108.5],"elL":[81.1,-8.8],"haL":[79.6,21.5],"hipR":[-30.7,36.6],"knR":[-8.1,173.7],"ftR":[-0.7,322.2],"hipL":[36.2,35.8],"knL":[21.8,188.1],"ftL":[6.5,309.6]}]},"wave":{"name":"wave","fps":30,"height":520,"groundY":329,"frameCount":75,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.8,-85.6],"neck":[0.8,-85.6],"head":[0.6,-164.3],"shR":[-68.1,-121.8],"elR":[-162.5,-108.5],"haR":[-233.5,-98.5],"shL":[76,-117],"elL":[171.2,-103.7],"haL":[243.5,-93.5],"hipR":[-69.8,34.9],"knR":[-67.3,174.6],"ftR":[-64.7,326.9],"hipL":[69.7,34.9],"knL":[67.4,172],"ftL":[64.6,329.1]},{"rootY":0.1,"hips":[0,0],"chest":[-12.5,-83.8],"neck":[-12.5,-83.8],"head":[0.9,-160.9],"shR":[39,-114.9],"elR":[75.2,-27.7],"haR":[49.9,26.4],"shL":[-59.7,-120.1],"elL":[-56.6,-26.8],"haL":[-93,36.5],"hipR":[34,33.9],"knR":[37.9,165.4],"ftR":[12.5,307.8],"hipL":[-66.4,45.8],"knL":[-97.9,178.9],"ftL":[-125.5,332.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.7,-83.8],"neck":[-12.7,-83.8],"head":[-0.1,-161.1],"shR":[39,-116],"elR":[75.8,-31.2],"haR":[44.7,6.8],"shL":[-60.7,-119.1],"elL":[-56.5,-25.6],"haL":[-92,38.2],"hipR":[34.8,33.6],"knR":[39.6,164.9],"ftR":[14.2,307.2],"hipL":[-66.8,45.8],"knL":[-101,177.6],"ftL":[-124.7,330.9]},{"rootY":-0.4,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-0.3,-161.3],"shR":[39.2,-117],"elR":[70.8,-35.7],"haR":[40.9,-28.3],"shL":[-61.4,-118.1],"elL":[-56.5,-24.5],"haL":[-91.5,39.6],"hipR":[35.7,32.8],"knR":[41.4,164],"ftR":[16.9,306.3],"hipL":[-67,46.2],"knL":[-103,176.6],"ftL":[-121.8,329.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-11.8,-84.2],"neck":[-11.8,-84.2],"head":[0.5,-161.9],"shR":[41.3,-117.7],"elR":[60.4,-46.1],"haR":[41.5,-77],"shL":[-61.7,-118.1],"elL":[-56.2,-24.2],"haL":[-90.8,40.1],"hipR":[36.6,32.2],"knR":[44.3,162.9],"ftR":[21.4,305.2],"hipL":[-67.1,46.7],"knL":[-102.1,176.4],"ftL":[-114.8,329.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-11,-84.5],"neck":[-11,-84.5],"head":[1.9,-162],"shR":[42.5,-118.7],"elR":[50.2,-64.6],"haR":[44.4,-121.3],"shL":[-61,-117.3],"elL":[-55.9,-23],"haL":[-90.5,41.3],"hipR":[37.2,31.4],"knR":[47.5,161.6],"ftR":[27.4,304],"hipL":[-67.1,47.1],"knL":[-98.3,177.3],"ftL":[-106.8,330.6]},{"rootY":-1.9,"hips":[0,0],"chest":[-10.2,-84.7],"neck":[-10.2,-84.7],"head":[3.9,-162.1],"shR":[43.7,-119.7],"elR":[64.8,-82.4],"haR":[36.6,-140.4],"shL":[-60.7,-116.6],"elL":[-54.4,-22.1],"haL":[-89.1,42.1],"hipR":[37.8,30.8],"knR":[50.8,160.8],"ftR":[35,303.5],"hipL":[-67.5,47],"knL":[-92.2,179.1],"ftL":[-97.3,333]},{"rootY":-3.3,"hips":[0,0],"chest":[-10.1,-84.9],"neck":[-10.1,-84.9],"head":[5.5,-161.9],"shR":[43.9,-120.5],"elR":[79.2,-105.8],"haR":[33.5,-152.7],"shL":[-60.7,-116],"elL":[-53.1,-21.4],"haL":[-87.4,43],"hipR":[37.8,31.7],"knR":[53.5,161.7],"ftR":[43.5,305.2],"hipL":[-68.4,45.8],"knL":[-85.5,179.8],"ftL":[-86,334.4]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.9,-85.1],"neck":[-9.9,-85.1],"head":[7.1,-161.8],"shR":[44.5,-121],"elR":[81,-115],"haR":[36.3,-163.9],"shL":[-61.1,-115.8],"elL":[-53.4,-20.9],"haL":[-86.9,43.9],"hipR":[37.3,32.7],"knR":[55.5,163.3],"ftR":[52,307.8],"hipL":[-69.2,44.5],"knL":[-77.9,179.9],"ftL":[-73.5,335.2]},{"rootY":-5.6,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[8.6,-161.3],"shR":[44.2,-122.1],"elR":[65.9,-110.9],"haR":[42,-174.4],"shL":[-61.8,-114.6],"elL":[-54.9,-19.6],"haL":[-88.5,45.2],"hipR":[36.9,33.6],"knR":[56.5,165.2],"ftR":[59.4,310.7],"hipL":[-69.8,43.4],"knL":[-70.1,179.6],"ftL":[-60.8,335.4]},{"rootY":-6.3,"hips":[0,0],"chest":[-10.4,-85.2],"neck":[-10.4,-85.2],"head":[9,-161.1],"shR":[44.1,-122.3],"elR":[54.1,-111.1],"haR":[45.8,-181.3],"shL":[-61.2,-114.2],"elL":[-56,-19.1],"haL":[-90.5,45.2],"hipR":[37,35],"knR":[57.9,167.5],"ftR":[64.4,314.6],"hipL":[-70.5,42.3],"knL":[-63.1,178.5],"ftL":[-48.5,334.4]},{"rootY":-6.7,"hips":[0,0],"chest":[-10.6,-85.2],"neck":[-10.6,-85.2],"head":[9.2,-160.9],"shR":[44.4,-122.1],"elR":[69.2,-111.8],"haR":[37.6,-173.6],"shL":[-61.7,-114.4],"elL":[-58,-19.1],"haL":[-94.8,43.8],"hipR":[37.5,36.2],"knR":[60.1,169.3],"ftR":[70.5,317.2],"hipL":[-71.3,41.2],"knL":[-57.1,177.2],"ftL":[-37.2,332.7]},{"rootY":-6.8,"hips":[0,0],"chest":[-10.5,-85.3],"neck":[-10.5,-85.3],"head":[9.6,-160.7],"shR":[45.1,-122.2],"elR":[82.9,-122.3],"haR":[35.9,-170.6],"shL":[-62.2,-114.2],"elL":[-58.7,-19.1],"haL":[-98.1,42.2],"hipR":[37.8,37.6],"knR":[63.6,170.4],"ftR":[77.5,318.6],"hipL":[-71.9,40.2],"knL":[-52.2,175.7],"ftL":[-27.6,330.7]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.8,-85.2],"neck":[-10.8,-85.2],"head":[7.8,-161.1],"shR":[44.8,-123.1],"elR":[87.7,-125.3],"haR":[40.1,-172.7],"shL":[-63.4,-113.2],"elL":[-59.8,-18.2],"haL":[-100.9,41.9],"hipR":[37.8,38.8],"knR":[65.4,171.9],"ftR":[83.5,320],"hipL":[-72.3,39.4],"knL":[-49.1,174.3],"ftL":[-21,328.9]},{"rootY":-6.2,"hips":[0,0],"chest":[-11.2,-85.1],"neck":[-11.2,-85.1],"head":[7.9,-160.6],"shR":[44.3,-123.7],"elR":[80.7,-118.5],"haR":[50.9,-180.1],"shL":[-64.5,-112.3],"elL":[-61.3,-17.3],"haL":[-102,43.1],"hipR":[38,39],"knR":[66.2,172.5],"ftR":[87.9,320.5],"hipL":[-72.1,39.6],"knL":[-46,174.1],"ftL":[-15.2,328.1]},{"rootY":-6.3,"hips":[0,0],"chest":[-11.8,-85.1],"neck":[-11.8,-85.1],"head":[7.5,-160.4],"shR":[43,-124.4],"elR":[70.5,-117.4],"haR":[57.6,-186.8],"shL":[-65,-111.5],"elL":[-62.3,-16.5],"haL":[-101.4,44.9],"hipR":[38.2,39.3],"knR":[67.5,173.2],"ftR":[91.7,321.3],"hipL":[-72.1,39.6],"knL":[-43.4,173.5],"ftL":[-10.1,327]},{"rootY":-5.9,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[7.9,-160.1],"shR":[43.3,-123.9],"elR":[71.6,-114.9],"haR":[55.9,-183.7],"shL":[-65.5,-111.8],"elL":[-62.5,-16.8],"haL":[-100.3,45.5],"hipR":[38.8,39.5],"knR":[68.7,173.6],"ftR":[95,321.7],"hipL":[-72.2,39.6],"knL":[-40.6,172.9],"ftL":[-4.6,325.7]},{"rootY":-5.4,"hips":[0,0],"chest":[-12,-85],"neck":[-12,-85],"head":[6.7,-160.6],"shR":[44,-123.7],"elR":[84,-115.7],"haR":[45.7,-173.6],"shL":[-65.9,-112],"elL":[-62,-17],"haL":[-99.2,45.6],"hipR":[39.4,40.1],"knR":[69.7,174.6],"ftR":[97.2,322.8],"hipL":[-72.8,39],"knL":[-38.7,171.7],"ftL":[0,323.8]},{"rootY":-4.9,"hips":[0,0],"chest":[-11.8,-85],"neck":[-11.8,-85],"head":[6.3,-160.7],"shR":[44.6,-123.6],"elR":[92.2,-120.5],"haR":[42.3,-167.7],"shL":[-66.3,-112.2],"elL":[-61.7,-17.4],"haL":[-98.9,45.3],"hipR":[39.8,40.3],"knR":[69.5,175.2],"ftR":[99.4,323.1],"hipL":[-72.9,39],"knL":[-37.6,171.4],"ftL":[2.3,323]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[6.4,-160.5],"shR":[44,-124],"elR":[92.7,-121.7],"haR":[45.5,-171.2],"shL":[-66.7,-111.7],"elL":[-62.4,-16.9],"haL":[-99.2,46],"hipR":[39.6,40.8],"knR":[69.1,176.1],"ftR":[101.1,323.7],"hipL":[-73.1,38.4],"knL":[-37.1,170.6],"ftL":[3.4,321.9]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.5,-85],"neck":[-12.5,-85],"head":[5.3,-160.6],"shR":[43.4,-124.2],"elR":[84.2,-116.3],"haR":[55.5,-179.1],"shL":[-67,-111.4],"elL":[-62.7,-16.6],"haL":[-99.9,46.2],"hipR":[39.3,40.1],"knR":[69.6,175.2],"ftR":[101.1,322.9],"hipL":[-72.6,39.2],"knL":[-35.6,171.1],"ftL":[5.9,322]},{"rootY":-4.5,"hips":[0,0],"chest":[-12.6,-85],"neck":[-12.6,-85],"head":[4.3,-160.7],"shR":[43.6,-124],"elR":[73.7,-114.7],"haR":[59.9,-184.1],"shL":[-67.2,-111.6],"elL":[-62.8,-16.7],"haL":[-99.5,46.3],"hipR":[39,39.5],"knR":[69.3,174.5],"ftR":[101.1,322.1],"hipL":[-72.3,39.6],"knL":[-35.3,171.5],"ftL":[5.9,322.4]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.6,-85],"neck":[-12.6,-85],"head":[5,-160.5],"shR":[43.2,-124.4],"elR":[73.8,-111.9],"haR":[54.3,-180],"shL":[-66.6,-111.1],"elL":[-62.7,-16.1],"haL":[-99.2,47],"hipR":[39,39.3],"knR":[69.4,174.4],"ftR":[101.3,322],"hipL":[-72.6,39.3],"knL":[-35.5,171.3],"ftL":[5.6,322.1]},{"rootY":-4,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[5.4,-160.5],"shR":[44.2,-124],"elR":[84.6,-113.9],"haR":[43.8,-170.4],"shL":[-66.4,-111.6],"elL":[-62.2,-16.7],"haL":[-99.4,46],"hipR":[39.2,39.7],"knR":[69.3,174.8],"ftR":[101.5,322.4],"hipL":[-72.9,38.8],"knL":[-35.3,170.6],"ftL":[6.7,321.2]},{"rootY":-3.7,"hips":[0,0],"chest":[-12,-85],"neck":[-12,-85],"head":[4.5,-160.9],"shR":[44.4,-123.8],"elR":[91.6,-119],"haR":[41.3,-166.4],"shL":[-66.4,-111.8],"elL":[-62.1,-16.8],"haL":[-99.7,45.6],"hipR":[39.1,39.7],"knR":[68.9,175],"ftR":[101.3,322.5],"hipL":[-72.9,38.8],"knL":[-35.5,170.6],"ftL":[6,321.3]},{"rootY":-3.7,"hips":[0,0],"chest":[-12.8,-84.9],"neck":[-12.8,-84.9],"head":[4.3,-160.4],"shR":[43.3,-123.9],"elR":[90.4,-118.1],"haR":[46.5,-171.2],"shL":[-67.3,-111.7],"elL":[-62.8,-16.8],"haL":[-99.9,45.9],"hipR":[38.8,39.8],"knR":[68,175.2],"ftR":[100.5,322.7],"hipL":[-72.6,39.1],"knL":[-36,171.1],"ftL":[4.3,322]},{"rootY":-4.1,"hips":[0,0],"chest":[-14,-84.7],"neck":[-14,-84.7],"head":[2.3,-160.6],"shR":[41.9,-123.8],"elR":[79.9,-111.8],"haR":[56.4,-177.4],"shL":[-68.6,-111.3],"elL":[-63.1,-16.6],"haL":[-100,46.3],"hipR":[38.5,39.6],"knR":[67.3,175],"ftR":[99.3,322.6],"hipL":[-72.1,39.6],"knL":[-35.8,171.7],"ftL":[4.4,322.6]},{"rootY":-4.4,"hips":[0,0],"chest":[-14.5,-84.6],"neck":[-14.5,-84.6],"head":[1.3,-160.6],"shR":[41.8,-123.3],"elR":[69.2,-108.1],"haR":[61.4,-178.8],"shL":[-69.6,-111.9],"elL":[-63.7,-17.2],"haL":[-99.5,46.4],"hipR":[38.1,39.4],"knR":[67.7,174.5],"ftR":[98.5,322.3],"hipL":[-71.6,40.1],"knL":[-36,172.4],"ftL":[3.3,323.4]},{"rootY":-4.6,"hips":[0,0],"chest":[-14.7,-84.6],"neck":[-14.7,-84.6],"head":[0.8,-160.5],"shR":[41.7,-123.3],"elR":[73.5,-102.3],"haR":[54.6,-170.5],"shL":[-70.1,-111.8],"elL":[-64.2,-17.1],"haL":[-99.2,46.9],"hipR":[37.8,39.9],"knR":[67.8,174.7],"ftR":[97.6,322.6],"hipL":[-71.6,39.8],"knL":[-36.1,172.2],"ftL":[3.1,323.2]},{"rootY":-4.8,"hips":[0,0],"chest":[-14.9,-84.5],"neck":[-14.9,-84.5],"head":[0,-160.8],"shR":[41.2,-123.4],"elR":[88.9,-105.1],"haR":[45.1,-159],"shL":[-70.4,-111.7],"elL":[-63.6,-17.2],"haL":[-99,46.6],"hipR":[37.4,40.3],"knR":[67.2,175.1],"ftR":[96.5,323],"hipL":[-71.5,39.6],"knL":[-36.6,172.1],"ftL":[2.1,323.3]},{"rootY":-4.8,"hips":[0,0],"chest":[-15.1,-84.5],"neck":[-15.1,-84.5],"head":[0.1,-160.7],"shR":[40.8,-123.2],"elR":[97.3,-112.4],"haR":[44.4,-155.8],"shL":[-70.8,-111.9],"elL":[-63.1,-17.5],"haL":[-99.1,45.9],"hipR":[36.8,40.4],"knR":[65.8,175.4],"ftR":[95.4,323.3],"hipL":[-71,39.9],"knL":[-37,172.6],"ftL":[0.5,324.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-15.8,-84.3],"neck":[-15.8,-84.3],"head":[-0.5,-160.7],"shR":[39.1,-123.4],"elR":[94.6,-111.6],"haR":[51.7,-164.5],"shL":[-71.3,-111.5],"elL":[-62.4,-17.2],"haL":[-98.2,46.2],"hipR":[36.4,40],"knR":[63.9,175.4],"ftR":[93.3,323.2],"hipL":[-70.4,40.5],"knL":[-37.9,173.6],"ftL":[-2.4,325.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-16.7,-84.1],"neck":[-16.7,-84.1],"head":[-2,-160.7],"shR":[38.2,-123.1],"elR":[83.7,-106.6],"haR":[62.1,-172.1],"shL":[-71.9,-111.6],"elL":[-62.2,-17.1],"haL":[-97.1,46.8],"hipR":[35.6,39.9],"knR":[62.8,175.3],"ftR":[91.4,323.2],"hipL":[-69.8,40.8],"knL":[-38.2,174.1],"ftL":[-3.2,326.2]},{"rootY":-5.7,"hips":[0,0],"chest":[-16.6,-84.2],"neck":[-16.6,-84.2],"head":[-2.7,-160.8],"shR":[37.4,-123.4],"elR":[69.9,-105.5],"haR":[66.9,-176],"shL":[-71,-111.2],"elL":[-61.4,-16.4],"haL":[-95,48.1],"hipR":[34.7,39.5],"knR":[62.6,174.4],"ftR":[89.8,322.5],"hipL":[-69.3,41.2],"knL":[-38.8,174.7],"ftL":[-5.2,327.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-16.7,-84.2],"neck":[-16.7,-84.2],"head":[-3,-160.7],"shR":[36.3,-123.8],"elR":[62.2,-101.3],"haR":[58.7,-171.8],"shL":[-70.3,-110.9],"elL":[-60.5,-16],"haL":[-92.8,49.1],"hipR":[34.5,39.5],"knR":[61.7,174.5],"ftR":[87.7,322.7],"hipL":[-69.3,41.1],"knL":[-39.6,174.9],"ftL":[-6.8,327.7]},{"rootY":-5.7,"hips":[0,0],"chest":[-16,-84.4],"neck":[-16,-84.4],"head":[-3.8,-161.2],"shR":[38.3,-122.9],"elR":[71.1,-97.3],"haR":[41.8,-161.2],"shL":[-69.4,-112.2],"elL":[-59.3,-17.2],"haL":[-91.3,48],"hipR":[34.1,39.6],"knR":[59.8,174.9],"ftR":[85.5,323.1],"hipL":[-69.5,40.7],"knL":[-40.7,174.7],"ftL":[-8.7,327.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-15.7,-84.4],"neck":[-15.7,-84.4],"head":[-2.7,-161],"shR":[38.6,-122.7],"elR":[81.3,-105],"haR":[29.9,-152.6],"shL":[-68.8,-112.5],"elL":[-58.8,-17.5],"haL":[-91.4,47.5],"hipR":[32.8,39.8],"knR":[57.9,175.1],"ftR":[83.1,323.3],"hipL":[-69.3,40.2],"knL":[-42,174.5],"ftL":[-11.9,328]},{"rootY":-5.7,"hips":[0,0],"chest":[-16,-84.4],"neck":[-16,-84.4],"head":[-2.4,-160.9],"shR":[37,-123.3],"elR":[83.8,-112.6],"haR":[29.2,-155.8],"shL":[-68.2,-111.9],"elL":[-58.3,-16.9],"haL":[-91.9,47.7],"hipR":[31.5,39.2],"knR":[54.9,174.9],"ftR":[80.8,322.9],"hipL":[-68.6,40.7],"knL":[-43.3,175.4],"ftL":[-15.5,329.4]},{"rootY":-5.8,"hips":[0,0],"chest":[-16.3,-84.4],"neck":[-16.3,-84.4],"head":[-2.8,-161],"shR":[36.2,-123.3],"elR":[76.5,-107.5],"haR":[39.2,-166.4],"shL":[-67.5,-111.6],"elL":[-57.7,-16.5],"haL":[-91.4,48],"hipR":[30.3,38.6],"knR":[51.9,174.7],"ftR":[78.9,322.3],"hipL":[-68,41],"knL":[-44.9,176.1],"ftL":[-19.7,330.6]},{"rootY":-5.9,"hips":[0,0],"chest":[-16.4,-84.4],"neck":[-16.4,-84.4],"head":[-2.7,-160.9],"shR":[35.6,-123.6],"elR":[62.4,-103.2],"haR":[44.8,-171.3],"shL":[-66.8,-111.3],"elL":[-57,-16.1],"haL":[-90.7,48.5],"hipR":[29.5,37.6],"knR":[50,173.9],"ftR":[76.9,321.2],"hipL":[-67.4,41.7],"knL":[-46.4,177.1],"ftL":[-23.4,332.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-15.7,-84.5],"neck":[-15.7,-84.5],"head":[-2.1,-161],"shR":[36.5,-123.2],"elR":[57.5,-99.1],"haR":[42.6,-168.4],"shL":[-65.6,-111.9],"elL":[-56.4,-16.6],"haL":[-89.3,48.4],"hipR":[29.6,36.8],"knR":[50.2,172.4],"ftR":[72,320.4],"hipL":[-67.5,42],"knL":[-48.3,177.7],"ftL":[-27,333]},{"rootY":-5.6,"hips":[0,0],"chest":[-14.4,-84.7],"neck":[-14.4,-84.7],"head":[-0.5,-161.2],"shR":[37.9,-123.3],"elR":[67.3,-96.4],"haR":[31.4,-157],"shL":[-64,-112.1],"elL":[-55.1,-16.9],"haL":[-87.7,48.3],"hipR":[30.4,36.3],"knR":[50.6,170.8],"ftR":[65.9,319],"hipL":[-67.8,42.2],"knL":[-50.3,178.1],"ftL":[-30.5,333.8]},{"rootY":-5.9,"hips":[0,0],"chest":[-13.4,-84.9],"neck":[-13.4,-84.9],"head":[1.7,-161.1],"shR":[39.5,-122.8],"elR":[78.6,-100.8],"haR":[23.4,-144.6],"shL":[-63.3,-113.1],"elL":[-53.4,-18.1],"haL":[-86.7,46.8],"hipR":[31.2,36.1],"knR":[50.4,169.9],"ftR":[60.8,317.9],"hipL":[-68.2,42.3],"knL":[-52.6,178.3],"ftL":[-34.5,334.4]},{"rootY":-6,"hips":[0,0],"chest":[-12.9,-85],"neck":[-12.9,-85],"head":[2.4,-161.3],"shR":[40.6,-122.1],"elR":[83.1,-105.2],"haR":[22.8,-141.3],"shL":[-63,-114],"elL":[-53.5,-19.1],"haL":[-86.5,46],"hipR":[31.9,35.4],"knR":[49.6,168.6],"ftR":[55.2,316.2],"hipL":[-68.1,42.8],"knL":[-55.6,179.2],"ftL":[-41.1,335.6]},{"rootY":-5.9,"hips":[0,0],"chest":[-12.7,-85],"neck":[-12.7,-85],"head":[2.3,-161.5],"shR":[41.1,-121.8],"elR":[79.3,-100.5],"haR":[32.1,-151.6],"shL":[-63.1,-114.4],"elL":[-54.2,-19.6],"haL":[-87.6,45.3],"hipR":[32.3,35],"knR":[49.2,167.3],"ftR":[50.7,313.7],"hipL":[-68,43.3],"knL":[-59.6,180],"ftL":[-50,336.8]},{"rootY":-5.7,"hips":[0,0],"chest":[-12.8,-85],"neck":[-12.8,-85],"head":[2.3,-161.5],"shR":[40.9,-122],"elR":[71.9,-96.5],"haR":[46.7,-160.3],"shL":[-63.1,-114.1],"elL":[-54.4,-19.2],"haL":[-89,45],"hipR":[32.1,34.7],"knR":[48.7,166],"ftR":[47.3,311],"hipL":[-67.5,43.7],"knL":[-64.5,180.8],"ftL":[-61.1,337.8]},{"rootY":-5.2,"hips":[0,0],"chest":[-12.9,-84.9],"neck":[-12.9,-84.9],"head":[2.2,-161.5],"shR":[40.5,-122.1],"elR":[66.3,-95.9],"haR":[64.7,-163.2],"shL":[-63.1,-114],"elL":[-54.7,-19.1],"haL":[-90.3,44.6],"hipR":[32,33.5],"knR":[48.8,163.6],"ftR":[42.1,307.4],"hipL":[-66.9,44.7],"knL":[-70.7,181.7],"ftL":[-73.7,338.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-13.5,-84.8],"neck":[-13.5,-84.8],"head":[1.7,-161.3],"shR":[39.5,-122.2],"elR":[67.1,-91.3],"haR":[81.3,-153],"shL":[-63.3,-113.7],"elL":[-54.6,-18.7],"haL":[-90.6,44.6],"hipR":[31.8,32.6],"knR":[47.2,162.2],"ftR":[35.9,305.1],"hipL":[-66.4,45.5],"knL":[-78,181.8],"ftL":[-86.7,338.3]},{"rootY":-3.5,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[1.7,-161.3],"shR":[39.4,-122.3],"elR":[74,-81],"haR":[91.7,-132.1],"shL":[-63,-113.6],"elL":[-53.9,-18.7],"haL":[-89.2,45],"hipR":[31.8,31.6],"knR":[45.9,161],"ftR":[30.4,303.1],"hipL":[-66.2,46.1],"knL":[-84.3,181.4],"ftL":[-96.7,337.1]},{"rootY":-2.3,"hips":[0,0],"chest":[-13.5,-84.8],"neck":[-13.5,-84.8],"head":[1.7,-161.1],"shR":[39.8,-121.9],"elR":[79.6,-67.5],"haR":[96.2,-102.9],"shL":[-63.2,-114],"elL":[-53.7,-19.2],"haL":[-87.7,45.2],"hipR":[32.3,30.8],"knR":[44.2,160],"ftR":[25.4,301.5],"hipL":[-66.1,46.6],"knL":[-89.3,181],"ftL":[-104.7,336]},{"rootY":-1.5,"hips":[0,0],"chest":[-12.7,-84.9],"neck":[-12.7,-84.9],"head":[2.6,-161],"shR":[40.7,-121.5],"elR":[82.4,-54.2],"haR":[95.9,-69.5],"shL":[-62.3,-114.6],"elL":[-53.9,-19.7],"haL":[-86.2,45.7],"hipR":[33,30.4],"knR":[42.9,159.7],"ftR":[21.4,300.8],"hipL":[-66.4,46.7],"knL":[-92.5,180.5],"ftL":[-110.5,334.8]},{"rootY":-1.1,"hips":[0,0],"chest":[-11.8,-85],"neck":[-11.8,-85],"head":[3.9,-161],"shR":[42.5,-120.7],"elR":[81.5,-43],"haR":[92.4,-36.6],"shL":[-61.5,-115.6],"elL":[-54.7,-20.8],"haL":[-85.7,45.3],"hipR":[34.1,30.5],"knR":[41.7,160],"ftR":[18.1,300.8],"hipL":[-67.1,46.4],"knL":[-94.1,180],"ftL":[-113.5,333.9]},{"rootY":-0.8,"hips":[0,0],"chest":[-10.5,-85.1],"neck":[-10.5,-85.1],"head":[5.6,-160.8],"shR":[44.7,-119.8],"elR":[79,-35.2],"haR":[87.9,-7.7],"shL":[-60.5,-116.8],"elL":[-55.5,-22.2],"haL":[-86.4,44],"hipR":[35.4,31.2],"knR":[40.9,160.7],"ftR":[15.4,301.2],"hipL":[-68.1,45.6],"knL":[-94.9,179.4],"ftL":[-115.4,333]},{"rootY":-0.8,"hips":[0,0],"chest":[-8.8,-85.2],"neck":[-8.8,-85.2],"head":[7.8,-160.7],"shR":[47.4,-118.7],"elR":[79.3,-30.9],"haR":[82.3,13],"shL":[-59.3,-118.1],"elL":[-56.4,-23.7],"haL":[-88.6,41.9],"hipR":[37.1,31.3],"knR":[39.9,161.2],"ftR":[13.7,301.7],"hipL":[-68.8,45.2],"knL":[-95.3,179.4],"ftL":[-117.3,332.9]},{"rootY":-1,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[10.2,-160.4],"shR":[50.3,-117.2],"elR":[85.4,-29.6],"haR":[78.4,25.9],"shL":[-58.1,-119.6],"elL":[-57.7,-25.4],"haL":[-92.1,39],"hipR":[38.6,31.8],"knR":[40.2,161.9],"ftR":[12.7,302.5],"hipL":[-69.6,44.7],"knL":[-96.2,178.9],"ftL":[-119.1,332.4]},{"rootY":-0.9,"hips":[0,0],"chest":[-5.8,-85.1],"neck":[-5.8,-85.1],"head":[12.7,-160.3],"shR":[52.9,-115.7],"elR":[92.3,-29.3],"haR":[78.4,31.9],"shL":[-57,-121.2],"elL":[-58.7,-27.3],"haL":[-95.9,35.6],"hipR":[39.3,32.3],"knR":[40.3,162.4],"ftR":[11.9,302.7],"hipL":[-70,44.4],"knL":[-96.9,178.6],"ftL":[-120.5,332]},{"rootY":-0.8,"hips":[0,0],"chest":[-4.6,-85],"neck":[-4.6,-85],"head":[15,-160.1],"shR":[55.3,-114.1],"elR":[94.2,-27.2],"haR":[79.3,36.4],"shL":[-56.4,-122.6],"elL":[-59.7,-29.1],"haL":[-99.1,32.1],"hipR":[39.8,32.9],"knR":[40.2,163.1],"ftR":[11.1,303.3],"hipL":[-70.2,44.1],"knL":[-97.1,178.3],"ftL":[-121.2,331.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-3.4,-85],"neck":[-3.4,-85],"head":[16.5,-160.2],"shR":[57.1,-113.6],"elR":[91,-24.5],"haR":[79.8,40.8],"shL":[-55.7,-123.1],"elL":[-61.7,-29.4],"haL":[-102.2,30.8],"hipR":[40.3,33.6],"knR":[40.2,163.8],"ftR":[10.2,303.9],"hipL":[-70.6,43.6],"knL":[-97.1,177.9],"ftL":[-121.4,331.5]},{"rootY":-0.7,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[17.7,-160],"shR":[58.6,-112],"elR":[89.5,-21.8],"haR":[80.4,44.7],"shL":[-55.7,-124.5],"elL":[-63.3,-30.6],"haL":[-103.1,29.7],"hipR":[40.9,34.2],"knR":[40.4,164.4],"ftR":[9.6,304.4],"hipL":[-70.9,43.3],"knL":[-97.4,177.6],"ftL":[-122.1,331.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-3.2,-84.8],"neck":[-3.2,-84.8],"head":[18.4,-159.9],"shR":[59.1,-110.8],"elR":[90.9,-21],"haR":[81.8,46.1],"shL":[-56,-125.6],"elL":[-64.3,-31.8],"haL":[-103.5,28.6],"hipR":[41.4,34.3],"knR":[40.7,164.6],"ftR":[8.8,304.4],"hipL":[-71,43.3],"knL":[-97,177.7],"ftL":[-122.1,331.4]},{"rootY":-0.6,"hips":[0,0],"chest":[-3.5,-84.7],"neck":[-3.5,-84.7],"head":[18.9,-159.8],"shR":[59,-110.7],"elR":[92.8,-21.6],"haR":[82.8,45],"shL":[-56.7,-125.6],"elL":[-66.2,-31.7],"haL":[-104.7,28.8],"hipR":[41.7,34.6],"knR":[40.8,165],"ftR":[8.4,304.9],"hipL":[-70.9,43.5],"knL":[-97.5,177.7],"ftL":[-123,331.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.1,-84.7],"neck":[-4.1,-84.7],"head":[18.2,-160],"shR":[58.3,-111.2],"elR":[91.4,-21.8],"haR":[81.7,43.9],"shL":[-58.1,-125.2],"elL":[-68.8,-31.3],"haL":[-107.3,29.2],"hipR":[41.8,34.3],"knR":[40.2,165.2],"ftR":[7.5,305.6],"hipL":[-70.8,43.7],"knL":[-98.6,177.6],"ftL":[-124.8,330.9]},{"rootY":0.4,"hips":[0,0],"chest":[-4.8,-84.7],"neck":[-4.8,-84.7],"head":[17.5,-160],"shR":[57.3,-112.1],"elR":[88.9,-22.1],"haR":[79.5,42.8],"shL":[-59.2,-124.4],"elL":[-69.2,-30.2],"haL":[-106.7,31],"hipR":[42.1,33.3],"knR":[39.6,164.7],"ftR":[7,305.6],"hipL":[-70.3,44.6],"knL":[-99.5,178.1],"ftL":[-126.7,331]},{"rootY":0.8,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[15.4,-160.3],"shR":[55.9,-113],"elR":[86.7,-22.8],"haR":[76.5,41.2],"shL":[-59.7,-123.6],"elL":[-68.2,-29.2],"haL":[-104.6,32.7],"hipR":[42,32.4],"knR":[39.9,163.8],"ftR":[6.4,304.5],"hipL":[-70,45.2],"knL":[-100.8,178.2],"ftL":[-128.6,330.7]},{"rootY":1.1,"hips":[0,0],"chest":[-6.1,-84.9],"neck":[-6.1,-84.9],"head":[13.7,-160.6],"shR":[54.7,-113.9],"elR":[85,-23.6],"haR":[72.8,39.6],"shL":[-59.8,-122.8],"elL":[-65.8,-28],"haL":[-101.4,34.5],"hipR":[41.8,31.9],"knR":[40.1,163.2],"ftR":[6,303.6],"hipL":[-69.8,45.4],"knL":[-101.2,178.2],"ftL":[-128.9,330.5]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.9],"neck":[-6.3,-84.9],"head":[12.3,-160.8],"shR":[53.8,-114.8],"elR":[83.7,-24.5],"haR":[69.3,38.1],"shL":[-59.6,-121.9],"elL":[-63.5,-27],"haL":[-98,36.4],"hipR":[41.5,31.7],"knR":[40.2,162.6],"ftR":[5.9,302.8],"hipL":[-69.5,45.7],"knL":[-100.8,178.5],"ftL":[-128.6,330.8]},{"rootY":1.1,"hips":[0,0],"chest":[-6.6,-84.9],"neck":[-6.6,-84.9],"head":[11.3,-160.8],"shR":[52.6,-115.9],"elR":[82.3,-25.6],"haR":[66,36.7],"shL":[-59.4,-120.7],"elL":[-60.8,-25.8],"haL":[-94.4,38.2],"hipR":[41.1,31.4],"knR":[40.1,162.2],"ftR":[5.7,302.2],"hipL":[-69.3,45.9],"knL":[-101,178.6],"ftL":[-129,330.8]},{"rootY":0.9,"hips":[0,0],"chest":[-7.1,-84.9],"neck":[-7.1,-84.9],"head":[10.4,-160.9],"shR":[51.7,-116.2],"elR":[81.3,-25.9],"haR":[63.6,36.3],"shL":[-59.8,-120.5],"elL":[-59.5,-25.7],"haL":[-92.2,39],"hipR":[40.6,31.8],"knR":[39.7,162.5],"ftR":[5.5,302.4],"hipL":[-69.2,45.8],"knL":[-100.2,178.8],"ftL":[-128.3,331.2]},{"rootY":0.9,"hips":[0,0],"chest":[-7.7,-84.9],"neck":[-7.7,-84.9],"head":[9.3,-160.9],"shR":[50.7,-116.2],"elR":[79.9,-25.7],"haR":[61.7,36.5],"shL":[-60.1,-120.4],"elL":[-59.3,-25.8],"haL":[-91,39.6],"hipR":[40,32.1],"knR":[39.4,162.6],"ftR":[5.5,302.5],"hipL":[-69,45.7],"knL":[-99.9,178.8],"ftL":[-128,331.3]},{"rootY":0.7,"hips":[0,0],"chest":[-8.4,-84.8],"neck":[-8.4,-84.8],"head":[8.5,-160.9],"shR":[49.6,-115.9],"elR":[79.1,-25.5],"haR":[61.1,37.1],"shL":[-60.5,-120.6],"elL":[-61.5,-25.8],"haL":[-93.6,39.5],"hipR":[39.3,32.3],"knR":[39.1,162.7],"ftR":[5.3,302.4],"hipL":[-68.7,45.8],"knL":[-99.8,178.8],"ftL":[-128.2,331.5]},{"rootY":0.4,"hips":[0,0],"chest":[-8.9,-84.7],"neck":[-8.9,-84.7],"head":[8.1,-160.8],"shR":[48.8,-115.6],"elR":[78.3,-25.3],"haR":[61,37.8],"shL":[-60.4,-120.7],"elL":[-61.6,-26],"haL":[-95.1,38.6],"hipR":[38.7,32.6],"knR":[38.9,163],"ftR":[5,302.6],"hipL":[-68.6,45.6],"knL":[-99.5,178.7],"ftL":[-127.9,331.5]},{"rootY":0.4,"hips":[0,0],"chest":[-9.3,-84.6],"neck":[-9.3,-84.6],"head":[7.6,-160.8],"shR":[48.1,-115.2],"elR":[77.5,-24.9],"haR":[61.2,38.7],"shL":[-60.3,-120.9],"elL":[-61.9,-26.4],"haL":[-96.8,37.4],"hipR":[38.3,32.8],"knR":[38.7,163.1],"ftR":[5.3,302.8],"hipL":[-68.4,45.6],"knL":[-99,178.8],"ftL":[-127.6,331.8]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-84.5],"neck":[-9.4,-84.5],"head":[7.4,-160.8],"shR":[47.7,-115.1],"elR":[77.1,-24.7],"haR":[61.4,39.2],"shL":[-60.3,-121],"elL":[-62.3,-26.4],"haL":[-97.7,36.9],"hipR":[37.8,33.2],"knR":[38.3,163.5],"ftR":[5.3,303.2],"hipL":[-68.5,45.3],"knL":[-98.7,178.6],"ftL":[-126.8,331.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.7,-84.4],"neck":[-9.7,-84.4],"head":[7.5,-160.7],"shR":[47.3,-114.7],"elR":[76.7,-24.4],"haR":[60.7,39.7],"shL":[-60.2,-121.1],"elL":[-62.4,-26.6],"haL":[-98,36.5],"hipR":[37.5,33.4],"knR":[38.4,163.6],"ftR":[5.5,303.3],"hipL":[-68.3,45.3],"knL":[-98.3,178.7],"ftL":[-126.4,332]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.5,-84.4],"neck":[-9.5,-84.4],"head":[7.6,-160.7],"shR":[47.3,-114.7],"elR":[76.8,-24.3],"haR":[60.5,39.8],"shL":[-60,-121.1],"elL":[-62.3,-26.5],"haL":[-97.7,36.6],"hipR":[37.4,33.7],"knR":[38.3,163.8],"ftR":[5.5,303.5],"hipL":[-68.2,45.2],"knL":[-97.9,178.7],"ftL":[-126,332.1]}]}}; \ No newline at end of file diff --git a/ink-theater/mocap/clips/dab.json b/ink-theater/mocap/clips/dab.json deleted file mode 100644 index 59649d28..00000000 --- a/ink-theater/mocap/clips/dab.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"dab","fps":30,"height":520,"groundY":257,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-2.7,-100.2],"neck":[-0.2,-168.2],"head":[-0.2,-204],"shR":[51.8,-150.4],"elR":[129,-162],"haR":[197.6,-174.4],"shL":[-53.6,-148.5],"elL":[-129.7,-156.2],"haL":[-198.2,-160.7],"hipR":[24.8,7.4],"knR":[22.5,130.4],"ftR":[17.9,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-27.9,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.7,-100.2],"neck":[-0.1,-168.2],"head":[-0.1,-204],"shR":[51.8,-150.4],"elR":[129.1,-161.9],"haR":[197.7,-174.3],"shL":[-53.5,-148.6],"elL":[-129.6,-156.4],"haL":[-198.1,-161.1],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.9,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.6,-100.2],"neck":[0.1,-168.2],"head":[0,-204],"shR":[52,-150.5],"elR":[129.2,-161.8],"haR":[197.9,-174],"shL":[-53.3,-148.8],"elL":[-129.5,-156.8],"haL":[-197.9,-161.7],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.8,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.5,-100.2],"neck":[0.3,-168.1],"head":[0.3,-203.9],"shR":[52.2,-150.5],"elR":[129.4,-161.7],"haR":[198.1,-173.7],"shL":[-53.1,-149],"elL":[-129.3,-157.2],"haL":[-197.7,-162.3],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.8,255.7],"hipL":[-25.2,8.2],"knL":[-26.5,131.3],"ftL":[-28.1,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.4,-100.2],"neck":[0.6,-168.1],"head":[0.5,-203.9],"shR":[52.4,-150.5],"elR":[129.6,-161.5],"haR":[198.4,-173.3],"shL":[-52.9,-149.2],"elL":[-129,-157.5],"haL":[-197.5,-162.7],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.7,255.7],"hipL":[-25.2,8.1],"knL":[-26.5,131.3],"ftL":[-28.2,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.2,-100.2],"neck":[0.8,-168.1],"head":[0.7,-203.9],"shR":[52.6,-150.5],"elR":[129.9,-161.3],"haR":[198.7,-172.9],"shL":[-52.7,-149.4],"elL":[-128.8,-157.8],"haL":[-197.3,-163.2],"hipR":[24.8,7.4],"knR":[22.5,130.5],"ftR":[17.6,255.7],"hipL":[-25.3,8.1],"knL":[-26.6,131.3],"ftL":[-28.3,256.6]},{"rootY":0,"hips":[0,0],"chest":[-2.1,-100.2],"neck":[1.1,-168.1],"head":[1,-203.9],"shR":[52.8,-150.5],"elR":[130.1,-161.1],"haR":[198.9,-172.5],"shL":[-52.5,-149.6],"elL":[-128.5,-158.2],"haL":[-197,-163.7],"hipR":[24.8,7.5],"knR":[22.4,130.5],"ftR":[17.4,255.7],"hipL":[-25.3,8.1],"knL":[-26.7,131.3],"ftL":[-28.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-2,-100.2],"neck":[1.3,-168.1],"head":[1.3,-203.9],"shR":[53.1,-150.4],"elR":[130.4,-160.9],"haR":[199.2,-172.3],"shL":[-52.2,-149.8],"elL":[-128.3,-158.6],"haL":[-196.7,-164.3],"hipR":[24.9,7.5],"knR":[22.3,130.5],"ftR":[17.3,255.7],"hipL":[-25.3,8.1],"knL":[-26.8,131.3],"ftL":[-28.6,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.8,-100.2],"neck":[1.6,-168.2],"head":[1.6,-203.9],"shR":[53.3,-150.3],"elR":[130.6,-160.8],"haR":[199.4,-172.2],"shL":[-52,-150],"elL":[-128,-159],"haL":[-196.4,-164.9],"hipR":[24.9,7.5],"knR":[22.2,130.5],"ftR":[17.1,255.7],"hipL":[-25.3,8.1],"knL":[-26.8,131.3],"ftL":[-28.7,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.7,-100.2],"neck":[1.9,-168.2],"head":[1.9,-203.8],"shR":[53.5,-150.3],"elR":[130.8,-160.8],"haR":[199.6,-172.2],"shL":[-51.7,-150.1],"elL":[-127.7,-159.5],"haL":[-196,-165.7],"hipR":[24.8,7.5],"knR":[22.2,130.5],"ftR":[17,255.7],"hipL":[-25.3,8.1],"knL":[-26.9,131.2],"ftL":[-28.9,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.6,-100.2],"neck":[2.2,-168.2],"head":[2.2,-203.8],"shR":[53.8,-150.2],"elR":[131,-160.8],"haR":[199.8,-172.3],"shL":[-51.5,-150.4],"elL":[-127.3,-160.1],"haL":[-195.6,-166.6],"hipR":[24.8,7.5],"knR":[22.1,130.5],"ftR":[16.8,255.7],"hipL":[-25.3,8.1],"knL":[-27,131.2],"ftL":[-29.1,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.5,-100.2],"neck":[2.4,-168.2],"head":[2.4,-203.8],"shR":[54,-150.2],"elR":[131.2,-160.9],"haR":[200,-172.4],"shL":[-51.3,-150.6],"elL":[-127,-160.7],"haL":[-195.3,-167.6],"hipR":[24.8,7.5],"knR":[22,130.5],"ftR":[16.5,255.7],"hipL":[-25.3,8.1],"knL":[-27.1,131.2],"ftL":[-29.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.4,-100.3],"neck":[2.6,-168.2],"head":[2.6,-203.8],"shR":[54.1,-150.3],"elR":[131.4,-161],"haR":[200.1,-172.6],"shL":[-51.1,-150.8],"elL":[-126.8,-161.3],"haL":[-194.9,-168.5],"hipR":[24.8,7.5],"knR":[21.8,130.5],"ftR":[16.2,255.7],"hipL":[-25.3,8.1],"knL":[-27.3,131.2],"ftL":[-29.7,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.3,-100.3],"neck":[2.7,-168.2],"head":[2.8,-203.8],"shR":[54.2,-150.3],"elR":[131.5,-161.1],"haR":[200.2,-172.8],"shL":[-50.9,-151],"elL":[-126.6,-161.7],"haL":[-194.6,-169.2],"hipR":[24.8,7.5],"knR":[21.6,130.5],"ftR":[15.9,255.7],"hipL":[-25.3,8],"knL":[-27.4,131.2],"ftL":[-30,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.2,-100.3],"neck":[2.8,-168.2],"head":[2.9,-203.9],"shR":[54.3,-150.3],"elR":[131.6,-161.2],"haR":[200.3,-173],"shL":[-50.8,-151.2],"elL":[-126.3,-162.1],"haL":[-194.3,-169.8],"hipR":[24.8,7.5],"knR":[21.4,130.5],"ftR":[15.6,255.7],"hipL":[-25.4,8],"knL":[-27.6,131.2],"ftL":[-30.4,256.5]},{"rootY":0,"hips":[0,0],"chest":[-1.1,-100.3],"neck":[3,-168.2],"head":[3.1,-203.8],"shR":[54.5,-150.3],"elR":[131.8,-161.3],"haR":[200.4,-173.1],"shL":[-50.7,-151.3],"elL":[-126.1,-162.4],"haL":[-194.1,-170.2],"hipR":[24.9,7.5],"knR":[21.3,130.5],"ftR":[15.3,255.7],"hipL":[-25.4,8],"knL":[-27.8,131.2],"ftL":[-30.7,256.4]},{"rootY":0,"hips":[0,0],"chest":[-1,-100.3],"neck":[3.1,-168.2],"head":[3.2,-203.8],"shR":[54.6,-150.3],"elR":[131.9,-161.3],"haR":[200.5,-173.1],"shL":[-50.5,-151.4],"elL":[-125.9,-162.5],"haL":[-193.8,-170.3],"hipR":[24.9,7.5],"knR":[21.2,130.5],"ftR":[15,255.7],"hipL":[-25.4,8],"knL":[-27.9,131.2],"ftL":[-31,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.9,-100.3],"neck":[3.2,-168.2],"head":[3.3,-203.8],"shR":[54.7,-150.4],"elR":[132,-161.3],"haR":[200.7,-173.1],"shL":[-50.4,-151.5],"elL":[-125.7,-162.5],"haL":[-193.6,-170.3],"hipR":[24.9,7.6],"knR":[21,130.5],"ftR":[14.6,255.7],"hipL":[-25.5,8],"knL":[-28.1,131.2],"ftL":[-31.4,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.8,-100.3],"neck":[3.3,-168.2],"head":[3.4,-203.8],"shR":[54.8,-150.4],"elR":[132.2,-161.2],"haR":[200.8,-173],"shL":[-50.3,-151.6],"elL":[-125.6,-162.5],"haL":[-193.5,-170.2],"hipR":[24.9,7.6],"knR":[20.8,130.5],"ftR":[14.3,255.6],"hipL":[-25.5,8],"knL":[-28.3,131.1],"ftL":[-31.7,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.7,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[54.9,-150.4],"elR":[132.3,-161.2],"haR":[200.9,-172.9],"shL":[-50.3,-151.6],"elL":[-125.5,-162.5],"haL":[-193.4,-170.1],"hipR":[25,7.6],"knR":[20.6,130.5],"ftR":[13.9,255.6],"hipL":[-25.5,8],"knL":[-28.5,131.1],"ftL":[-32.1,256.4]},{"rootY":0,"hips":[0,0],"chest":[-0.7,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[55,-150.4],"elR":[132.4,-161.1],"haR":[201,-172.7],"shL":[-50.2,-151.6],"elL":[-125.5,-162.4],"haL":[-193.4,-169.9],"hipR":[25,7.6],"knR":[20.4,130.5],"ftR":[13.6,255.6],"hipL":[-25.5,8],"knL":[-28.6,131.1],"ftL":[-32.4,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.6,-100.4],"neck":[3.4,-168.2],"head":[3.5,-203.8],"shR":[55,-150.4],"elR":[132.4,-161],"haR":[201.1,-172.5],"shL":[-50.2,-151.6],"elL":[-125.5,-162.3],"haL":[-193.3,-169.9],"hipR":[25,7.6],"knR":[20.3,130.5],"ftR":[13.4,255.6],"hipL":[-25.6,7.9],"knL":[-28.8,131.1],"ftL":[-32.7,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.5,-100.4],"neck":[3.5,-168.1],"head":[3.5,-203.7],"shR":[55.1,-150.4],"elR":[132.6,-160.9],"haR":[201.2,-172.3],"shL":[-50.1,-151.6],"elL":[-125.4,-162.3],"haL":[-193.3,-169.8],"hipR":[25,7.6],"knR":[20.1,130.5],"ftR":[13.1,255.6],"hipL":[-25.6,7.9],"knL":[-28.9,131.1],"ftL":[-33,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.5,-100.4],"neck":[3.6,-168.1],"head":[3.6,-203.7],"shR":[55.2,-150.4],"elR":[132.7,-160.9],"haR":[201.4,-172.2],"shL":[-50,-151.6],"elL":[-125.3,-162.2],"haL":[-193.2,-169.7],"hipR":[25,7.6],"knR":[20,130.5],"ftR":[12.9,255.6],"hipL":[-25.6,7.9],"knL":[-29,131.1],"ftL":[-33.2,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.4,-100.4],"neck":[3.8,-168.1],"head":[3.7,-203.7],"shR":[55.3,-150.4],"elR":[132.8,-160.8],"haR":[201.5,-172.1],"shL":[-49.9,-151.6],"elL":[-125.2,-162.2],"haL":[-193.2,-169.6],"hipR":[24.9,7.6],"knR":[19.9,130.5],"ftR":[12.8,255.6],"hipL":[-25.6,7.9],"knL":[-29.1,131.1],"ftL":[-33.4,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.2,-100.4],"neck":[3.9,-168.1],"head":[3.8,-203.6],"shR":[55.5,-150.4],"elR":[133,-160.7],"haR":[201.7,-172],"shL":[-49.8,-151.5],"elL":[-125.1,-162.1],"haL":[-193.1,-169.4],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.6,255.6],"hipL":[-25.6,7.9],"knL":[-29.1,131.1],"ftL":[-33.5,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.1,-100.4],"neck":[4.1,-168.1],"head":[3.9,-203.6],"shR":[55.6,-150.2],"elR":[133.2,-160.6],"haR":[201.8,-171.9],"shL":[-49.6,-151.5],"elL":[-125,-162],"haL":[-192.9,-169.3],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.6,255.6],"hipL":[-25.6,7.9],"knL":[-29.2,131],"ftL":[-33.6,256.3]},{"rootY":0,"hips":[0,0],"chest":[-0.1,-100.4],"neck":[4.2,-168],"head":[4,-203.6],"shR":[55.8,-150.1],"elR":[133.3,-160.5],"haR":[201.9,-171.8],"shL":[-49.5,-151.4],"elL":[-124.9,-161.9],"haL":[-192.9,-169.2],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.5,255.6],"hipL":[-25.6,7.9],"knL":[-29.2,131],"ftL":[-33.7,256.3]},{"rootY":0.1,"hips":[0,0],"chest":[0,-100.4],"neck":[4.3,-168],"head":[4.1,-203.6],"shR":[55.9,-150.1],"elR":[133.4,-160.4],"haR":[202,-171.7],"shL":[-49.4,-151.4],"elL":[-124.8,-161.8],"haL":[-192.8,-169.1],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.4,255.6],"hipL":[-25.5,7.9],"knL":[-29.3,131],"ftL":[-33.8,256.3]},{"rootY":0.1,"hips":[0,0],"chest":[0,-100.4],"neck":[4.4,-168],"head":[4.2,-203.6],"shR":[55.9,-150.1],"elR":[133.5,-160.4],"haR":[202.1,-171.6],"shL":[-49.3,-151.5],"elL":[-124.8,-161.8],"haL":[-192.8,-169.1],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.3,255.6],"hipL":[-25.5,7.9],"knL":[-29.3,131],"ftL":[-33.8,256.3]},{"rootY":0,"hips":[0,0],"chest":[0.1,-100.4],"neck":[4.6,-168],"head":[4.4,-203.5],"shR":[56.1,-150],"elR":[133.7,-160.4],"haR":[202.3,-171.6],"shL":[-49.2,-151.6],"elL":[-124.6,-161.8],"haL":[-192.6,-169],"hipR":[24.9,7.6],"knR":[19.7,130.5],"ftR":[12.3,255.6],"hipL":[-25.6,7.9],"knL":[-29.3,131],"ftL":[-33.9,256.3]},{"rootY":0,"hips":[0,0],"chest":[0.3,-100.4],"neck":[4.8,-168],"head":[4.6,-203.5],"shR":[56.4,-149.9],"elR":[133.9,-160.3],"haR":[202.5,-171.6],"shL":[-48.9,-151.6],"elL":[-124.4,-161.7],"haL":[-192.4,-168.8],"hipR":[24.9,7.6],"knR":[19.8,130.5],"ftR":[12.3,255.6],"hipL":[-25.6,7.9],"knL":[-29.4,131],"ftL":[-33.9,256.2]},{"rootY":0.1,"hips":[0,0],"chest":[0.6,-100.3],"neck":[5.2,-167.9],"head":[5,-203.4],"shR":[56.7,-149.8],"elR":[134.3,-160.1],"haR":[202.8,-171.4],"shL":[-48.6,-151.5],"elL":[-124.1,-161.3],"haL":[-192,-168.3],"hipR":[25,7.7],"knR":[20,130.5],"ftR":[12.3,255.6],"hipL":[-25.7,7.9],"knL":[-29.4,131],"ftL":[-33.9,256.2]},{"rootY":0.1,"hips":[0,0],"chest":[1.1,-100.3],"neck":[5.8,-167.8],"head":[5.5,-203.3],"shR":[57.4,-149.5],"elR":[134.9,-159.7],"haR":[203.4,-171],"shL":[-48,-151.3],"elL":[-123.6,-160.5],"haL":[-191.5,-167.2],"hipR":[25.1,7.7],"knR":[20.1,130.6],"ftR":[12.1,255.7],"hipL":[-25.8,7.8],"knL":[-29.4,130.9],"ftL":[-33.8,256.1]},{"rootY":0.2,"hips":[0,0],"chest":[1.8,-100.2],"neck":[6.6,-167.6],"head":[6.2,-203.1],"shR":[58.2,-149],"elR":[135.8,-158.8],"haR":[204.2,-169.9],"shL":[-47.4,-150.9],"elL":[-123.1,-159.3],"haL":[-191,-165.3],"hipR":[25.3,7.9],"knR":[20.5,130.6],"ftR":[12,255.7],"hipL":[-26,7.7],"knL":[-29.6,130.8],"ftL":[-33.8,256]},{"rootY":0.3,"hips":[0,0],"chest":[2.4,-100.2],"neck":[7.2,-167.5],"head":[6.8,-203],"shR":[59,-148.4],"elR":[136.7,-157.5],"haR":[205.1,-167.9],"shL":[-46.8,-150.4],"elL":[-122.6,-157.4],"haL":[-190.6,-162.4],"hipR":[25.5,8],"knR":[21.2,130.6],"ftR":[11.9,255.6],"hipL":[-26.2,7.5],"knL":[-29.9,130.6],"ftL":[-33.9,255.9]},{"rootY":0.5,"hips":[0,0],"chest":[2.9,-100.1],"neck":[7.6,-167.3],"head":[7.3,-202.8],"shR":[59.6,-147.9],"elR":[137.5,-155.6],"haR":[205.9,-164.7],"shL":[-46.4,-149.8],"elL":[-122.4,-154.9],"haL":[-190.4,-158.4],"hipR":[25.6,8.3],"knR":[21.8,130.6],"ftR":[11.6,255.4],"hipL":[-26.4,7.3],"knL":[-30.2,130.4],"ftL":[-34.1,255.7]},{"rootY":0.6,"hips":[0,0],"chest":[3.5,-99.9],"neck":[8,-167.1],"head":[7.7,-202.6],"shR":[60.1,-147.4],"elR":[138.3,-153.1],"haR":[206.7,-160.3],"shL":[-46.1,-149.2],"elL":[-122.3,-151.9],"haL":[-190.3,-153.2],"hipR":[25.8,8.5],"knR":[22.1,130.6],"ftR":[11.3,255.2],"hipL":[-26.6,7],"knL":[-30.5,130.2],"ftL":[-34.5,255.4]},{"rootY":0.8,"hips":[0,0],"chest":[4.2,-99.8],"neck":[8.4,-166.7],"head":[8.3,-202.2],"shR":[60.8,-146.7],"elR":[139.2,-150],"haR":[207.6,-154.6],"shL":[-45.6,-148.5],"elL":[-121.8,-148.3],"haL":[-189.8,-147.2],"hipR":[25.9,8.8],"knR":[22.2,130.5],"ftR":[11,254.9],"hipL":[-26.8,6.8],"knL":[-30.8,129.8],"ftL":[-35,255.1]},{"rootY":1.1,"hips":[0,0],"chest":[5.1,-99.7],"neck":[9.2,-166.2],"head":[8.9,-201.8],"shR":[61.7,-146],"elR":[140.3,-146.5],"haR":[208.7,-148.2],"shL":[-44.9,-147.6],"elL":[-121,-144.4],"haL":[-188.9,-140.8],"hipR":[25.9,9],"knR":[22.2,130.3],"ftR":[10.8,254.5],"hipL":[-26.9,6.5],"knL":[-31.3,129.3],"ftL":[-35.4,254.6]},{"rootY":1.6,"hips":[0,0],"chest":[6,-99.6],"neck":[10,-165.7],"head":[9.5,-201.3],"shR":[62.7,-145.1],"elR":[141.4,-142.7],"haR":[209.7,-141.5],"shL":[-44.2,-146.6],"elL":[-119.9,-140.5],"haL":[-187.7,-134.4],"hipR":[26,9.1],"knR":[22.1,129.9],"ftR":[10.5,254],"hipL":[-27,6.5],"knL":[-32.2,128.7],"ftL":[-35.8,253.9]},{"rootY":2.1,"hips":[0,0],"chest":[6.7,-99.4],"neck":[10.7,-165.2],"head":[10,-200.8],"shR":[63.6,-144],"elR":[142.2,-138.7],"haR":[210.1,-135],"shL":[-43.6,-145.7],"elL":[-119,-137],"haL":[-186.4,-128.6],"hipR":[26.2,8.9],"knR":[21.8,129.6],"ftR":[10.2,253.6],"hipL":[-27,6.6],"knL":[-33.8,127.9],"ftL":[-36.8,252.8]},{"rootY":2.4,"hips":[0,0],"chest":[7,-99.3],"neck":[11.1,-164.8],"head":[10.2,-200.5],"shR":[64,-142.5],"elR":[142.5,-134.8],"haR":[209.2,-130],"shL":[-43.3,-145.2],"elL":[-118.4,-134.9],"haL":[-185.5,-125.1],"hipR":[26.3,8.8],"knR":[21.4,129.3],"ftR":[9.9,253.3],"hipL":[-27,6.8],"knL":[-36.7,126.9],"ftL":[-39.6,251.4]},{"rootY":2.5,"hips":[0,0],"chest":[7,-99.2],"neck":[11.2,-164.6],"head":[10.4,-200.4],"shR":[64.1,-141.2],"elR":[142.4,-131.7],"haR":[206.4,-128],"shL":[-43.2,-145.2],"elL":[-118.3,-134.9],"haL":[-185.2,-125.3],"hipR":[26.3,8.8],"knR":[21.2,129.2],"ftR":[9.7,253.2],"hipL":[-27,6.8],"knL":[-40.9,125.6],"ftL":[-45.7,250]},{"rootY":2.4,"hips":[0,0],"chest":[7,-99.2],"neck":[11.4,-164.7],"head":[10.8,-200.5],"shR":[64.2,-140.6],"elR":[142.6,-130.5],"haR":[201,-130.1],"shL":[-42.9,-145.7],"elL":[-118.2,-137.3],"haL":[-185.2,-129.5],"hipR":[26.2,9],"knR":[21.4,129.3],"ftR":[9.9,253.3],"hipL":[-27.1,6.5],"knL":[-46,124.5],"ftL":[-55.2,248.8]},{"rootY":2.3,"hips":[0,0],"chest":[7.2,-99.2],"neck":[11.9,-164.9],"head":[11.6,-200.8],"shR":[64.7,-141],"elR":[143.3,-131.5],"haR":[192.7,-136.1],"shL":[-42.4,-146.7],"elL":[-117.8,-141.6],"haL":[-184.9,-136.8],"hipR":[26,9.3],"knR":[22.1,129.5],"ftR":[10.4,253.3],"hipL":[-27.1,6.2],"knL":[-51.5,123.4],"ftL":[-67.7,247.3]},{"rootY":2.2,"hips":[0,0],"chest":[7.5,-99.1],"neck":[12.7,-165.1],"head":[12.5,-201],"shR":[65.4,-142.2],"elR":[144.3,-134.2],"haR":[181,-144.9],"shL":[-41.7,-148.1],"elL":[-117,-147.2],"haL":[-184.2,-146],"hipR":[25.8,9.5],"knR":[23,129.6],"ftR":[11.6,253.2],"hipL":[-27,6.1],"knL":[-57.6,122.1],"ftL":[-82.9,244.7]},{"rootY":2.1,"hips":[0,0],"chest":[7.8,-99.1],"neck":[13.3,-165.4],"head":[13.4,-201.3],"shR":[66,-143.9],"elR":[145,-138.3],"haR":[165.7,-155.3],"shL":[-41.1,-150.2],"elL":[-115.9,-154.2],"haL":[-182.9,-157],"hipR":[25.7,9.5],"knR":[24.1,129.6],"ftR":[13.1,253.1],"hipL":[-27,6],"knL":[-64.8,120],"ftL":[-100.2,240.2]},{"rootY":2.1,"hips":[0,0],"chest":[8.1,-99.1],"neck":[13.7,-165.7],"head":[14,-201.6],"shR":[66.2,-146.2],"elR":[145.2,-144],"haR":[148,-166.3],"shL":[-40.7,-152.7],"elL":[-114.2,-162.4],"haL":[-180.7,-170],"hipR":[25.6,9.6],"knR":[25.3,129.6],"ftR":[15,252.8],"hipL":[-26.9,5.9],"knL":[-72.8,116.9],"ftL":[-118.5,233.6]},{"rootY":2.3,"hips":[0,0],"chest":[8.5,-99],"neck":[14.1,-166],"head":[14.6,-201.8],"shR":[66.4,-149],"elR":[144.5,-151.4],"haR":[130,-177],"shL":[-40.1,-155.2],"elL":[-111.7,-171.7],"haL":[-177.1,-185],"hipR":[25.4,10],"knR":[26.6,129.6],"ftR":[17,252.4],"hipL":[-26.9,5.6],"knL":[-80.7,112.7],"ftL":[-135.7,225.3]},{"rootY":2.9,"hips":[0,0],"chest":[9.3,-98.9],"neck":[14.9,-166.1],"head":[15.3,-201.9],"shR":[66.6,-151.8],"elR":[142.8,-159.9],"haR":[113.4,-186.2],"shL":[-39.1,-157.2],"elL":[-108.4,-181.1],"haL":[-171.7,-201.2],"hipR":[25.2,10.5],"knR":[28.1,129.6],"ftR":[19.5,251.7],"hipL":[-27,5],"knL":[-88.1,107.8],"ftL":[-151,216.1]},{"rootY":3.9,"hips":[0,0],"chest":[10.3,-98.7],"neck":[15.7,-166],"head":[16,-201.9],"shR":[66.8,-154.1],"elR":[140,-168.1],"haR":[99.3,-193.2],"shL":[-37.9,-158.9],"elL":[-104,-190.2],"haL":[-164.6,-216.9],"hipR":[25,11.1],"knR":[30.2,129.3],"ftR":[22.5,250.6],"hipL":[-27.1,4.5],"knL":[-94.8,102.8],"ftL":[-164.2,207]},{"rootY":5.3,"hips":[0,0],"chest":[11.2,-98.4],"neck":[16.6,-165.9],"head":[16.8,-201.7],"shR":[67.2,-155.7],"elR":[136.3,-174.7],"haR":[88,-197.8],"shL":[-36.6,-160.6],"elL":[-99.1,-198.2],"haL":[-156.6,-230.6],"hipR":[24.9,11.5],"knR":[32.9,128.9],"ftR":[26.2,249],"hipL":[-27.1,4],"knL":[-100.3,98.2],"ftL":[-175.1,198.6]},{"rootY":6.8,"hips":[0,0],"chest":[12,-98.1],"neck":[17.4,-165.8],"head":[17.5,-201.6],"shR":[67.6,-156.6],"elR":[132.5,-178.6],"haR":[79.3,-200.2],"shL":[-35.3,-162],"elL":[-94.2,-204.7],"haL":[-148.9,-241.6],"hipR":[24.8,11.7],"knR":[35.6,128.4],"ftR":[30.3,247.3],"hipL":[-27.2,3.7],"knL":[-104.6,94.4],"ftL":[-183.6,191.5]},{"rootY":8.5,"hips":[0,0],"chest":[12.5,-97.9],"neck":[18,-165.8],"head":[18.1,-201.5],"shR":[68,-156.7],"elR":[129.5,-180],"haR":[72.9,-200.7],"shL":[-34.2,-163.2],"elL":[-90.2,-209.6],"haL":[-142.4,-249.9],"hipR":[24.8,11.9],"knR":[38,127.9],"ftR":[34.8,245.6],"hipL":[-27.3,3.6],"knL":[-107.8,91.5],"ftL":[-189.6,186.2]},{"rootY":10.3,"hips":[0,0],"chest":[12.9,-97.8],"neck":[18.5,-165.7],"head":[18.6,-201.4],"shR":[68.4,-156.3],"elR":[127.7,-179.6],"haR":[68.8,-199.6],"shL":[-33.4,-164.1],"elL":[-87.2,-213.2],"haL":[-137.4,-255.8],"hipR":[24.9,12],"knR":[40.1,127.4],"ftR":[39.7,243.8],"hipL":[-27.4,3.5],"knL":[-109.6,89.8],"ftL":[-192.8,183.3]},{"rootY":12.1,"hips":[0,0],"chest":[13.2,-97.6],"neck":[18.8,-165.6],"head":[19.2,-201.3],"shR":[68.8,-155.8],"elR":[127.2,-178.4],"haR":[66.6,-197.6],"shL":[-32.7,-164.7],"elL":[-84.9,-215.5],"haL":[-133.8,-259.8],"hipR":[25,12],"knR":[42.5,126.9],"ftR":[45.3,241.9],"hipL":[-27.4,3.5],"knL":[-109.9,89.5],"ftL":[-193,183.2]},{"rootY":14,"hips":[0,0],"chest":[13.6,-97.3],"neck":[19.5,-165.5],"head":[20.1,-201.1],"shR":[69.4,-155.1],"elR":[127.9,-176.8],"haR":[66.2,-195.3],"shL":[-31.9,-165.1],"elL":[-83.3,-216.8],"haL":[-131.4,-261.9],"hipR":[25,12.1],"knR":[45.5,126.5],"ftR":[51.9,239.9],"hipL":[-27.5,3.4],"knL":[-109,90.4],"ftL":[-190.8,185.3]},{"rootY":15.8,"hips":[0,0],"chest":[14.2,-97],"neck":[20.8,-165.2],"head":[21.7,-200.8],"shR":[70.7,-154.3],"elR":[129.7,-174.8],"haR":[67.4,-193],"shL":[-30.5,-165.5],"elL":[-81.8,-217.3],"haL":[-129.8,-262.5],"hipR":[25,12.2],"knR":[49.2,126],"ftR":[59.6,238],"hipL":[-27.5,3.2],"knL":[-107.2,92.5],"ftL":[-186.8,189.3]},{"rootY":17.8,"hips":[0,0],"chest":[15,-96.7],"neck":[22.5,-165],"head":[23.9,-200.5],"shR":[72.4,-153.3],"elR":[132.4,-172.2],"haR":[69.9,-190.6],"shL":[-28.9,-165.7],"elL":[-80.4,-217.1],"haL":[-128.8,-261.9],"hipR":[24.9,12.3],"knR":[54,125.4],"ftR":[68.4,236.1],"hipL":[-27.5,3.1],"knL":[-104.2,95.6],"ftL":[-180.7,194.8]},{"rootY":20.3,"hips":[0,0],"chest":[15.5,-96.5],"neck":[24.4,-164.8],"head":[26.6,-200.2],"shR":[74.3,-151.8],"elR":[135.6,-168.5],"haR":[73.5,-188.1],"shL":[-27.4,-165.5],"elL":[-79.4,-216.2],"haL":[-128.3,-260.3],"hipR":[24.8,12.4],"knR":[59.7,124.2],"ftR":[78.2,233.7],"hipL":[-27.5,3],"knL":[-100,99.4],"ftL":[-172.7,201.5]},{"rootY":23.7,"hips":[0,0],"chest":[15.5,-96.4],"neck":[26.2,-164.6],"head":[29.6,-199.9],"shR":[76,-149.5],"elR":[139.1,-163.1],"haR":[77.7,-185.3],"shL":[-26.3,-165],"elL":[-79.5,-214.7],"haL":[-129.1,-257.8],"hipR":[24.8,12.3],"knR":[66,122.2],"ftR":[88.9,230.3],"hipL":[-27.3,3.2],"knL":[-95.9,102.9],"ftL":[-164.8,207.6]},{"rootY":28.3,"hips":[0,0],"chest":[14.5,-96.4],"neck":[27.4,-164.3],"head":[32.7,-199.5],"shR":[77.1,-146.3],"elR":[141.8,-155.8],"haR":[81.6,-181.7],"shL":[-25.8,-164.7],"elL":[-80.7,-212.5],"haL":[-131.9,-254],"hipR":[24.8,11.9],"knR":[72.3,119.5],"ftR":[99.8,225.9],"hipL":[-27.1,3.6],"knL":[-93.5,105.3],"ftL":[-159.6,211.5]},{"rootY":33.4,"hips":[0,0],"chest":[12.9,-96.5],"neck":[28,-164.1],"head":[35.8,-198.9],"shR":[77.3,-142.6],"elR":[143.3,-148.4],"haR":[84.6,-177.8],"shL":[-25.9,-164.4],"elL":[-82.4,-209.6],"haL":[-135.9,-248.3],"hipR":[24.7,11.5],"knR":[78,116.4],"ftR":[110.4,221.1],"hipL":[-26.7,4],"knL":[-92.2,107],"ftL":[-156.4,213.7]},{"rootY":36.8,"hips":[0,0],"chest":[11.3,-96.8],"neck":[27.7,-164],"head":[38.4,-198.1],"shR":[76.5,-138.8],"elR":[143.8,-142.9],"haR":[85.6,-173.7],"shL":[-27,-163.2],"elL":[-84.4,-205.8],"haL":[-140.1,-240.9],"hipR":[24.6,11.4],"knR":[82.5,114.5],"ftR":[119.5,218.1],"hipL":[-26.6,4.1],"knL":[-90.3,108.9],"ftL":[-152.8,216.1]},{"rootY":36.8,"hips":[0,0],"chest":[10.1,-97],"neck":[26.9,-164.2],"head":[40.1,-197.5],"shR":[75.1,-135.6],"elR":[143.7,-140.1],"haR":[85,-170.3],"shL":[-28.7,-161.1],"elL":[-87,-201.1],"haL":[-143.9,-233.1],"hipR":[24.4,11.8],"knR":[84.6,114.8],"ftR":[126.3,218.2],"hipL":[-26.6,3.7],"knL":[-87.2,110.8],"ftL":[-148,219.4]},{"rootY":34.3,"hips":[0,0],"chest":[9.2,-97.4],"neck":[25.8,-164.7],"head":[40.3,-197.4],"shR":[73.9,-135.1],"elR":[143.9,-140.5],"haR":[84.1,-169.4],"shL":[-30.4,-159.4],"elL":[-89.8,-197.3],"haL":[-147.1,-227.7],"hipR":[24.3,11.8],"knR":[84.6,116.3],"ftR":[130.7,220.5],"hipL":[-26.6,3.6],"knL":[-84.5,112.4],"ftL":[-143.4,222.6]},{"rootY":31.7,"hips":[0,0],"chest":[8.4,-98],"neck":[24.6,-165.5],"head":[39,-198.2],"shR":[73.1,-136.9],"elR":[144.6,-143.7],"haR":[84.2,-171.5],"shL":[-31.7,-158.8],"elL":[-92.2,-196],"haL":[-149.6,-226.3],"hipR":[24.5,11.2],"knR":[84.1,117.2],"ftR":[133,222.9],"hipL":[-26.6,4.3],"knL":[-83.1,113.6],"ftL":[-140.6,224.8]},{"rootY":30.4,"hips":[0,0],"chest":[7.6,-98.4],"neck":[23.1,-166.1],"head":[36.9,-199.2],"shR":[72,-138.8],"elR":[144.9,-147.9],"haR":[85.1,-175.4],"shL":[-33.1,-158.6],"elL":[-94,-196.6],"haL":[-151.2,-227.8],"hipR":[24.7,10.5],"knR":[84.6,117.1],"ftR":[134.5,224.4],"hipL":[-26.5,5.1],"knL":[-82.5,114.7],"ftL":[-139.4,226.2]},{"rootY":29.8,"hips":[0,0],"chest":[6.5,-98.8],"neck":[21.4,-166.5],"head":[34.4,-200],"shR":[70.5,-139.4],"elR":[144.3,-151.1],"haR":[85.6,-178.5],"shL":[-34.8,-158],"elL":[-95.4,-197.3],"haL":[-152.1,-230],"hipR":[24.9,10],"knR":[85.8,116.4],"ftR":[135.5,225.1],"hipL":[-26.4,5.6],"knL":[-82.1,115.4],"ftL":[-138.8,227]},{"rootY":29.5,"hips":[0,0],"chest":[5.3,-99],"neck":[19.8,-166.7],"head":[32.1,-200.7],"shR":[68.8,-139.4],"elR":[142.9,-152.3],"haR":[84.9,-179.7],"shL":[-36.6,-157.3],"elL":[-96.9,-197.5],"haL":[-153,-231.2],"hipR":[24.9,9.6],"knR":[86.5,115.7],"ftR":[135.8,225.6],"hipL":[-26.3,6],"knL":[-81.9,115.8],"ftL":[-138.6,227.5]},{"rootY":29.1,"hips":[0,0],"chest":[4.1,-99.3],"neck":[18.4,-166.9],"head":[30,-201.2],"shR":[67.5,-139.3],"elR":[141.6,-151.8],"haR":[83.5,-179.3],"shL":[-38,-156.6],"elL":[-98.1,-197.1],"haL":[-154,-231.1],"hipR":[24.9,9.1],"knR":[86.3,115.5],"ftR":[135.7,226],"hipL":[-26.1,6.5],"knL":[-82,116.1],"ftL":[-138.9,227.7]},{"rootY":28.9,"hips":[0,0],"chest":[3.1,-99.4],"neck":[17.4,-167.1],"head":[28.5,-201.5],"shR":[66.6,-139.1],"elR":[140.6,-151],"haR":[82.3,-178.5],"shL":[-38.9,-155.9],"elL":[-98.7,-196.3],"haL":[-154.6,-230.2],"hipR":[25,8.7],"knR":[85.6,115.6],"ftR":[135.5,226.2],"hipL":[-25.9,6.9],"knL":[-82.1,116.4],"ftL":[-139.2,227.9]},{"rootY":28.8,"hips":[0,0],"chest":[2.5,-99.5],"neck":[16.8,-167.1],"head":[27.6,-201.6],"shR":[65.9,-138.5],"elR":[139.8,-150.4],"haR":[81.8,-177.9],"shL":[-39.6,-155.2],"elL":[-99,-195.3],"haL":[-154.7,-228.9],"hipR":[25,8.4],"knR":[85.1,115.7],"ftR":[135.5,226.4],"hipL":[-25.9,7.1],"knL":[-82,116.7],"ftL":[-139.2,228.1]},{"rootY":28.6,"hips":[0,0],"chest":[2.2,-99.4],"neck":[16.6,-167],"head":[27.2,-201.6],"shR":[65.6,-137.9],"elR":[139.5,-149.8],"haR":[81.8,-177.6],"shL":[-39.9,-154.8],"elL":[-99,-194.3],"haL":[-154.6,-227.3],"hipR":[25,8.4],"knR":[85,115.8],"ftR":[135.9,226.6],"hipL":[-25.8,7.2],"knL":[-81.9,116.8],"ftL":[-138.9,228.3]},{"rootY":28.5,"hips":[0,0],"chest":[2.1,-99.4],"neck":[16.5,-166.9],"head":[27.1,-201.5],"shR":[65.5,-137.7],"elR":[139.5,-149.3],"haR":[82,-177.5],"shL":[-39.9,-154.6],"elL":[-98.8,-193.5],"haL":[-154.4,-225.9],"hipR":[25,8.4],"knR":[85,115.9],"ftR":[136.3,226.8],"hipL":[-25.8,7.1],"knL":[-81.8,116.8],"ftL":[-138.6,228.4]},{"rootY":28.4,"hips":[0,0],"chest":[2,-99.4],"neck":[16.6,-166.9],"head":[27.1,-201.5],"shR":[65.4,-137.3],"elR":[139.4,-149],"haR":[82.2,-177.6],"shL":[-39.8,-154.4],"elL":[-98.6,-192.8],"haL":[-154.2,-224.7],"hipR":[24.9,8.5],"knR":[84.9,116],"ftR":[136.7,226.9],"hipL":[-25.9,7.1],"knL":[-81.6,116.8],"ftL":[-138.3,228.5]},{"rootY":28.3,"hips":[0,0],"chest":[1.7,-99.5],"neck":[16.4,-166.9],"head":[27.1,-201.5],"shR":[65,-136.6],"elR":[139.1,-148.9],"haR":[82.3,-177.7],"shL":[-40,-154.2],"elL":[-98.7,-192.2],"haL":[-154.2,-223.8],"hipR":[25,8.5],"knR":[84.8,116.2],"ftR":[137,227],"hipL":[-25.9,7.1],"knL":[-81.5,116.8],"ftL":[-138,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[1.1,-99.5],"neck":[15.9,-166.9],"head":[26.8,-201.5],"shR":[64.3,-136],"elR":[138.6,-148.8],"haR":[82.2,-177.7],"shL":[-40.4,-153.9],"elL":[-99.1,-191.7],"haL":[-154.6,-223],"hipR":[25,8.5],"knR":[84.6,116.2],"ftR":[137.1,227],"hipL":[-25.9,7.1],"knL":[-81.5,116.9],"ftL":[-137.9,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[0.4,-99.6],"neck":[15.1,-167],"head":[26.2,-201.5],"shR":[63.4,-135.9],"elR":[138,-148.8],"haR":[82,-177.7],"shL":[-41.1,-153.9],"elL":[-99.8,-191.3],"haL":[-155.3,-222.3],"hipR":[25.1,8.3],"knR":[84.5,116.2],"ftR":[136.8,227.1],"hipL":[-25.9,7.2],"knL":[-81.7,116.9],"ftL":[-138.2,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[-0.5,-99.6],"neck":[14.1,-167.1],"head":[25.4,-201.5],"shR":[62.5,-135.9],"elR":[137.3,-148.8],"haR":[81.5,-177.9],"shL":[-42,-153.8],"elL":[-100.6,-191],"haL":[-156.2,-221.8],"hipR":[25.1,8.1],"knR":[84.4,116.1],"ftR":[136.4,227.1],"hipL":[-25.9,7.5],"knL":[-81.8,117],"ftL":[-138.6,228.7]},{"rootY":28.2,"hips":[0,0],"chest":[-1.4,-99.7],"neck":[13.1,-167.1],"head":[24.6,-201.5],"shR":[61.4,-136],"elR":[136.4,-149],"haR":[80.9,-178.2],"shL":[-42.9,-153.6],"elL":[-101.5,-190.6],"haL":[-157.1,-221.3],"hipR":[25.1,7.9],"knR":[84.3,115.9],"ftR":[136,227],"hipL":[-25.8,7.7],"knL":[-82,117.1],"ftL":[-139,228.7]},{"rootY":28.3,"hips":[0,0],"chest":[-2.2,-99.7],"neck":[12.3,-167.1],"head":[23.7,-201.5],"shR":[60.6,-136.1],"elR":[135.6,-149.3],"haR":[80.2,-178.4],"shL":[-43.6,-153.3],"elL":[-102.4,-190.2],"haL":[-158,-220.8],"hipR":[25.1,7.7],"knR":[84.1,115.8],"ftR":[135.6,227],"hipL":[-25.7,7.9],"knL":[-82.1,117.2],"ftL":[-139.4,228.6]},{"rootY":28.3,"hips":[0,0],"chest":[-3,-99.7],"neck":[11.6,-167.1],"head":[23,-201.6],"shR":[59.8,-136.2],"elR":[134.9,-149.6],"haR":[79.6,-178.5],"shL":[-44.3,-153.1],"elL":[-103.2,-189.7],"haL":[-158.8,-220.2],"hipR":[25.1,7.4],"knR":[83.9,115.7],"ftR":[135.3,227.1],"hipL":[-25.6,8.1],"knL":[-82.2,117.3],"ftL":[-139.7,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-3.8,-99.7],"neck":[11,-167.1],"head":[22.3,-201.6],"shR":[59.1,-136.2],"elR":[134.2,-150],"haR":[79.1,-178.6],"shL":[-44.8,-152.9],"elL":[-103.8,-189.4],"haL":[-159.6,-219.6],"hipR":[25.1,7.2],"knR":[83.6,115.5],"ftR":[135,227.1],"hipL":[-25.4,8.3],"knL":[-82.3,117.4],"ftL":[-140,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[-4.7,-99.7],"neck":[10.4,-167.1],"head":[21.7,-201.5],"shR":[58.3,-136],"elR":[133.6,-150.2],"haR":[78.7,-178.7],"shL":[-45.4,-152.7],"elL":[-104.5,-189.1],"haL":[-160.3,-219.2],"hipR":[25,6.9],"knR":[83.3,115.4],"ftR":[134.8,227.2],"hipL":[-25.3,8.6],"knL":[-82.4,117.6],"ftL":[-140.3,228.6]},{"rootY":28.1,"hips":[0,0],"chest":[-5.5,-99.7],"neck":[9.7,-167],"head":[21,-201.5],"shR":[57.5,-136],"elR":[132.9,-150.3],"haR":[78.2,-178.8],"shL":[-46.1,-152.6],"elL":[-105.2,-188.9],"haL":[-161,-219],"hipR":[25,6.7],"knR":[83,115.4],"ftR":[134.5,227.3],"hipL":[-25.2,8.8],"knL":[-82.4,117.7],"ftL":[-140.6,228.6]},{"rootY":28.1,"hips":[0,0],"chest":[-6.4,-99.7],"neck":[8.9,-167],"head":[20.3,-201.5],"shR":[56.7,-136],"elR":[132.2,-150.2],"haR":[77.8,-178.8],"shL":[-46.7,-152.7],"elL":[-106,-188.9],"haL":[-161.8,-219.1],"hipR":[25,6.4],"knR":[82.7,115.2],"ftR":[134.1,227.3],"hipL":[-25.1,9.1],"knL":[-82.6,117.8],"ftL":[-140.9,228.6]},{"rootY":28.2,"hips":[0,0],"chest":[-7.4,-99.7],"neck":[8,-167],"head":[19.4,-201.4],"shR":[55.7,-136.1],"elR":[131.5,-150.2],"haR":[77.3,-178.8],"shL":[-47.5,-152.8],"elL":[-106.8,-189],"haL":[-162.6,-219.2],"hipR":[25,6.1],"knR":[82.5,115],"ftR":[133.6,227.2],"hipL":[-24.9,9.3],"knL":[-82.7,117.9],"ftL":[-141.4,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-8.5,-99.6],"neck":[7,-167],"head":[18.5,-201.4],"shR":[54.7,-136.1],"elR":[130.6,-150],"haR":[76.9,-178.8],"shL":[-48.4,-152.9],"elL":[-107.8,-189.1],"haL":[-163.5,-219.4],"hipR":[25,5.8],"knR":[82.3,114.8],"ftR":[133,227.1],"hipL":[-24.8,9.7],"knL":[-82.9,118.1],"ftL":[-142,228.5]},{"rootY":28.2,"hips":[0,0],"chest":[-9.7,-99.5],"neck":[6,-166.8],"head":[17.5,-201.3],"shR":[53.6,-136],"elR":[129.7,-149.8],"haR":[76.5,-178.9],"shL":[-49.3,-153.1],"elL":[-108.7,-189.4],"haL":[-164.4,-219.7],"hipR":[25,5.4],"knR":[81.9,114.7],"ftR":[132.2,227.2],"hipL":[-24.7,10],"knL":[-83.1,118.3],"ftL":[-142.6,228.4]},{"rootY":28.2,"hips":[0,0],"chest":[-10.9,-99.4],"neck":[5,-166.7],"head":[16.6,-201.1],"shR":[52.5,-136],"elR":[128.9,-149.5],"haR":[76.1,-178.9],"shL":[-50.2,-153.3],"elL":[-109.6,-189.7],"haL":[-165.2,-220.1],"hipR":[25.1,5],"knR":[81.6,114.5],"ftR":[131.5,227.2],"hipL":[-24.5,10.4],"knL":[-83.4,118.5],"ftL":[-143.3,228.3]},{"rootY":28.2,"hips":[0,0],"chest":[-11.8,-99.3],"neck":[4.2,-166.6],"head":[15.9,-200.9],"shR":[51.6,-135.9],"elR":[128.2,-149.2],"haR":[76,-178.8],"shL":[-50.9,-153.5],"elL":[-110.2,-190],"haL":[-165.7,-220.6],"hipR":[25.1,4.6],"knR":[81.3,114.2],"ftR":[130.9,227.2],"hipL":[-24.4,10.7],"knL":[-83.6,118.6],"ftL":[-144,228.3]},{"rootY":28.2,"hips":[0,0],"chest":[-12.5,-99.2],"neck":[3.6,-166.5],"head":[15.5,-200.8],"shR":[50.9,-135.8],"elR":[127.8,-148.7],"haR":[76.2,-178.7],"shL":[-51.3,-153.7],"elL":[-110.6,-190.1],"haL":[-166,-220.9],"hipR":[25.1,4.4],"knR":[81.1,114.1],"ftR":[130.6,227.1],"hipL":[-24.3,11],"knL":[-83.8,118.8],"ftL":[-144.4,228.2]},{"rootY":28.1,"hips":[0,0],"chest":[-12.9,-99.2],"neck":[3.3,-166.4],"head":[15.4,-200.7],"shR":[50.5,-135.6],"elR":[127.6,-148.3],"haR":[76.6,-178.6],"shL":[-51.5,-153.9],"elL":[-110.7,-190.3],"haL":[-165.9,-221],"hipR":[25.2,4.2],"knR":[80.9,114.1],"ftR":[130.2,227.2],"hipL":[-24.3,11.1],"knL":[-83.8,118.9],"ftL":[-144.6,228.2]},{"rootY":28.1,"hips":[0,0],"chest":[-12.9,-99.2],"neck":[3.3,-166.4],"head":[15.7,-200.6],"shR":[50.4,-135.4],"elR":[127.7,-147.5],"haR":[77.6,-178.3],"shL":[-51.3,-154.2],"elL":[-110.4,-190.3],"haL":[-165.5,-220.8],"hipR":[25.2,4.2],"knR":[81,114],"ftR":[130.1,227.2],"hipL":[-24.3,11.1],"knL":[-83.9,118.9],"ftL":[-144.7,228.3]},{"rootY":28.1,"hips":[0,0],"chest":[-12.4,-99.4],"neck":[3.9,-166.4],"head":[16.4,-200.5],"shR":[50.8,-135.2],"elR":[128.6,-146],"haR":[79.7,-177.6],"shL":[-50.6,-154.2],"elL":[-109.8,-189.5],"haL":[-164.5,-219.6],"hipR":[25.2,4.2],"knR":[81.3,114],"ftR":[130.6,227.1],"hipL":[-24.4,11.1],"knL":[-83.8,118.9],"ftL":[-144.5,228.4]},{"rootY":28.1,"hips":[0,0],"chest":[-11.3,-99.6],"neck":[5,-166.4],"head":[17.7,-200.5],"shR":[51.9,-134.9],"elR":[130.2,-142.9],"haR":[83.4,-176.1],"shL":[-49.3,-153.7],"elL":[-109,-187.4],"haL":[-163.4,-216.4],"hipR":[25.2,4.5],"knR":[81.7,114],"ftR":[131.5,226.9],"hipL":[-24.5,10.8],"knL":[-83.6,118.9],"ftL":[-144,228.5]},{"rootY":28.1,"hips":[0,0],"chest":[-9.5,-99.9],"neck":[6.8,-166.5],"head":[19.6,-200.4],"shR":[53.6,-134.8],"elR":[132.5,-137.4],"haR":[89,-172.8],"shL":[-47.3,-152.8],"elL":[-108.2,-183.4],"haL":[-161.9,-210.3],"hipR":[25.1,4.8],"knR":[82.2,114],"ftR":[132.3,226.7],"hipL":[-24.6,10.5],"knL":[-83.2,118.8],"ftL":[-143.3,228.5]},{"rootY":28.3,"hips":[0,0],"chest":[-7,-100.2],"neck":[9.4,-166.3],"head":[22.3,-200.3],"shR":[56.2,-134.6],"elR":[135.1,-129],"haR":[96.7,-166.9],"shL":[-44.5,-151.1],"elL":[-107.4,-176.7],"haL":[-159.6,-200.1],"hipR":[24.9,5.2],"knR":[82.9,113.8],"ftR":[133.1,226.5],"hipL":[-24.7,10.1],"knL":[-82.8,118.6],"ftL":[-142.4,228.3]},{"rootY":28.9,"hips":[0,0],"chest":[-4,-100.3],"neck":[12.8,-165.9],"head":[25.5,-199.9],"shR":[59.4,-133.6],"elR":[137.1,-117.8],"haR":[106.5,-157.8],"shL":[-41,-148.4],"elL":[-106.1,-166.8],"haL":[-156,-184.8],"hipR":[24.8,5.5],"knR":[83.7,113.5],"ftR":[133.8,225.9],"hipL":[-24.8,9.8],"knL":[-82.3,118.2],"ftL":[-141.1,227.6]},{"rootY":30.5,"hips":[0,0],"chest":[-1,-99.8],"neck":[16.8,-164.6],"head":[28.8,-198.9],"shR":[63.4,-132.4],"elR":[138,-105.5],"haR":[117.5,-145.2],"shL":[-36.9,-146.2],"elL":[-103.7,-154.1],"haL":[-150.9,-164.7],"hipR":[25,5.4],"knR":[84.3,112.6],"ftR":[134.6,224.2],"hipL":[-24.8,9.9],"knL":[-82.3,116.6],"ftL":[-139.2,225.3]},{"rootY":34.2,"hips":[0,0],"chest":[1.6,-98.8],"neck":[21.4,-162.3],"head":[32.4,-196.9],"shR":[68,-131.2],"elR":[138,-94.6],"haR":[128.2,-129.3],"shL":[-32.3,-145.7],"elL":[-99.6,-140.6],"haL":[-143.9,-141.2],"hipR":[25.2,5.1],"knR":[85.2,110.5],"ftR":[135.1,220.2],"hipL":[-24.6,10.3],"knL":[-82.5,113.3],"ftL":[-137.6,220.3]},{"rootY":40.7,"hips":[0,0],"chest":[3.7,-97.7],"neck":[25.7,-159.4],"head":[35.6,-194.2],"shR":[72,-129.1],"elR":[137.6,-86.7],"haR":[137.2,-111.6],"shL":[-27.6,-145.3],"elL":[-95.1,-127.4],"haL":[-134.9,-117.8],"hipR":[25.1,5.2],"knR":[86.3,106.8],"ftR":[135,213.7],"hipL":[-24.3,10.3],"knL":[-83.6,108.6],"ftL":[-137.9,213.2]},{"rootY":48.5,"hips":[0,0],"chest":[5.1,-97.1],"neck":[28.3,-157.2],"head":[37.4,-192.2],"shR":[73.8,-125.3],"elR":[136.7,-80.8],"haR":[143.5,-94.2],"shL":[-24.7,-142.1],"elL":[-92.5,-113.9],"haL":[-126.2,-96.3],"hipR":[24.7,5.7],"knR":[85.9,102.8],"ftR":[133,206.1],"hipL":[-24.2,9.8],"knL":[-87.3,103.2],"ftL":[-141.4,206.1]},{"rootY":54.4,"hips":[0,0],"chest":[5.7,-97.1],"neck":[28.5,-156.8],"head":[36.4,-192],"shR":[72.4,-120.9],"elR":[133.5,-75.6],"haR":[147.1,-77],"shL":[-25.2,-137.2],"elL":[-92.2,-100.1],"haL":[-120.6,-75.7],"hipR":[24.6,6.2],"knR":[82.4,101.2],"ftR":[127.8,200.8],"hipL":[-24.4,9.3],"knL":[-92.9,99.1],"ftL":[-147.6,201.3]},{"rootY":55.5,"hips":[0,0],"chest":[5.3,-97.5],"neck":[26.1,-158.1],"head":[32.5,-193.5],"shR":[68.9,-118.8],"elR":[126.8,-71.5],"haR":[148.4,-57.7],"shL":[-28.3,-133.8],"elL":[-91.8,-87.8],"haL":[-119.4,-55.2],"hipR":[24.8,6.6],"knR":[76.5,103.1],"ftR":[119.4,199.8],"hipL":[-24.7,9],"knL":[-97,98.3],"ftL":[-155.9,199.7]},{"rootY":51.9,"hips":[0,0],"chest":[4.5,-97.9],"neck":[21.8,-160.1],"head":[26.5,-195.6],"shR":[65.9,-120.9],"elR":[118.7,-70],"haR":[147.8,-36.9],"shL":[-32.9,-132.4],"elL":[-91.6,-79.3],"haL":[-122.9,-37.6],"hipR":[25,7.3],"knR":[70.6,106.9],"ftR":[109,203.3],"hipL":[-25.1,8.4],"knL":[-98.3,100.3],"ftL":[-164.1,200.3]},{"rootY":45.9,"hips":[0,0],"chest":[4.2,-98.4],"neck":[16.3,-162],"head":[19.6,-197.5],"shR":[63.6,-125.7],"elR":[111.1,-71.3],"haR":[145,-21.1],"shL":[-37.5,-130.4],"elL":[-93.9,-74.6],"haL":[-130.3,-27],"hipR":[25,8.1],"knR":[66.4,110.9],"ftR":[98.3,209.1],"hipL":[-25.5,7.5],"knL":[-98.4,102.2],"ftL":[-169.2,201.4]},{"rootY":39.6,"hips":[0,0],"chest":[3.6,-98.7],"neck":[9.3,-163.3],"head":[12,-198.8],"shR":[60.1,-130.6],"elR":[102.8,-74.2],"haR":[139,-15.6],"shL":[-42.8,-127.8],"elL":[-99.4,-72.3],"haL":[-140.4,-23],"hipR":[25.5,8.6],"knR":[62.8,114.9],"ftR":[87.6,215.5],"hipL":[-26.2,7.1],"knL":[-98.3,102.6],"ftL":[-169.9,202]},{"rootY":33.5,"hips":[0,0],"chest":[1.5,-98.8],"neck":[0.9,-163.8],"head":[4,-199.2],"shR":[54.1,-133.8],"elR":[93.4,-77.9],"haR":[130.7,-19.5],"shL":[-49.3,-126.5],"elL":[-106.9,-72],"haL":[-151,-23.3],"hipR":[26.5,8.1],"knR":[58,119],"ftR":[77.2,221.6],"hipL":[-26.7,7.6],"knL":[-97.7,102.4],"ftL":[-167.5,202.1]},{"rootY":28,"hips":[0,0],"chest":[-1.7,-98.6],"neck":[-7,-164],"head":[-2.8,-199.2],"shR":[47,-135],"elR":[86,-81.7],"haR":[124.8,-27.8],"shL":[-56.4,-127.4],"elL":[-115,-74.1],"haL":[-161.3,-26.5],"hipR":[27,7.1],"knR":[51,122.8],"ftR":[68.4,226.7],"hipL":[-26.5,8.6],"knL":[-95.2,103.3],"ftL":[-161.9,204]},{"rootY":23.3,"hips":[0,0],"chest":[-4.2,-98.6],"neck":[-12.9,-164.3],"head":[-7.3,-199.1],"shR":[41.3,-135.7],"elR":[82.6,-85.4],"haR":[124.8,-36],"shL":[-62.2,-129.4],"elL":[-122.9,-78.5],"haL":[-171.8,-32.6],"hipR":[26.7,6.4],"knR":[42.1,126],"ftR":[62.3,231.3],"hipL":[-25.8,9.2],"knL":[-91,105.6],"ftL":[-151.1,210.6]},{"rootY":19.7,"hips":[0,0],"chest":[-4.7,-98.8],"neck":[-14.9,-164.6],"head":[-8.4,-199.2],"shR":[39.4,-136.7],"elR":[83.7,-88.9],"haR":[131.2,-42.7],"shL":[-64.7,-131.9],"elL":[-128.4,-85],"haL":[-180.8,-41.9],"hipR":[26,6.3],"knR":[34.5,128.1],"ftR":[59.4,235.1],"hipL":[-25,9.3],"knL":[-83.2,110.4],"ftL":[-133.6,221.5]},{"rootY":17.3,"hips":[0,0],"chest":[-2.6,-99.2],"neck":[-11,-165],"head":[-5.1,-199.8],"shR":[42.5,-135.9],"elR":[89.1,-90],"haR":[144.3,-49.1],"shL":[-61.9,-134.8],"elL":[-128.5,-92.1],"haL":[-184.6,-52.9],"hipR":[26,6.9],"knR":[33.1,129.1],"ftR":[60.4,237.7],"hipL":[-25.2,8.7],"knL":[-70.5,117.3],"ftL":[-113.4,232.5]},{"rootY":15.9,"hips":[0,0],"chest":[1.5,-99.5],"neck":[-1.4,-165.4],"head":[2.3,-200.6],"shR":[50,-132.9],"elR":[98,-86.4],"haR":[161.1,-56.4],"shL":[-53.6,-137.1],"elL":[-122.6,-98.1],"haL":[-181.9,-63.5],"hipR":[26.7,8],"knR":[39.2,129],"ftR":[64.9,238.8],"hipL":[-26.6,7.6],"knL":[-57,122.8],"ftL":[-97.7,239.4]},{"rootY":15.4,"hips":[0,0],"chest":[7.5,-99.2],"neck":[11.4,-165.3],"head":[11.7,-200.5],"shR":[60.8,-130.7],"elR":[107.8,-78.7],"haR":[174.9,-66.5],"shL":[-41.5,-137.3],"elL":[-111.2,-100.4],"haL":[-173.7,-73.1],"hipR":[25.2,10.3],"knR":[49.2,127.7],"ftR":[71,238.7],"hipL":[-26.9,5.3],"knL":[-49.8,124.1],"ftL":[-89.1,241.1]},{"rootY":15.6,"hips":[0,0],"chest":[14.5,-97.9],"neck":[24.2,-163.8],"head":[20.6,-198.7],"shR":[72.9,-131.7],"elR":[115.5,-70.9],"haR":[178.4,-81],"shL":[-28.1,-134.7],"elL":[-94.8,-95.4],"haL":[-160,-80],"hipR":[19.8,13.2],"knR":[56.7,126],"ftR":[75.9,238.4],"hipL":[-23.7,2],"knL":[-48.9,122],"ftL":[-85.4,240]},{"rootY":16.7,"hips":[0,0],"chest":[19.4,-96.3],"neck":[33.9,-161.1],"head":[27.4,-195.6],"shR":[82.5,-135.6],"elR":[119.8,-69.2],"haR":[170.1,-95.9],"shL":[-18,-129.6],"elL":[-78,-82.8],"haL":[-142.6,-83.7],"hipR":[14.2,14.9],"knR":[58.7,124.9],"ftR":[77.8,237.8],"hipL":[-19.2,-0.1],"knL":[-47.5,119.7],"ftL":[-85.3,237.6]},{"rootY":18.6,"hips":[0,0],"chest":[19.4,-95.5],"neck":[36.1,-159.2],"head":[29.4,-193.7],"shR":[85.1,-139.6],"elR":[122.8,-74.8],"haR":[157.3,-105.4],"shL":[-15.7,-123.8],"elL":[-68.6,-67.6],"haL":[-127,-85.5],"hipR":[12.4,15.5],"knR":[56.3,125],"ftR":[76.2,236.2],"hipL":[-17.5,-0.8],"knL":[-45,119.1],"ftL":[-90.5,234.7]},{"rootY":20.9,"hips":[0,0],"chest":[15.9,-96.2],"neck":[28.7,-160.2],"head":[25.6,-195.2],"shR":[79.3,-142.2],"elR":[126.3,-87.6],"haR":[150,-115.1],"shL":[-22.1,-121.1],"elL":[-71.4,-59.2],"haL":[-119.2,-87.9],"hipR":[15.5,15.2],"knR":[52.6,125.4],"ftR":[72.6,234],"hipL":[-20.1,-0.4],"knL":[-44.4,119.3],"ftL":[-99.3,230.7]},{"rootY":22.5,"hips":[0,0],"chest":[9.3,-97.7],"neck":[13.1,-163],"head":[16.1,-197.9],"shR":[66.2,-144.3],"elR":[124.6,-103.6],"haR":[150,-128.3],"shL":[-36.8,-124],"elL":[-86.5,-62.9],"haL":[-119.7,-94.5],"hipR":[21,13.5],"knR":[49.6,125.2],"ftR":[65.7,232.4],"hipL":[-24.4,1.8],"knL":[-52.8,116.7],"ftL":[-107.6,227]},{"rootY":22.4,"hips":[0,0],"chest":[-0.9,-98.4],"neck":[-5.1,-164.5],"head":[3.4,-198.4],"shR":[49.8,-148.6],"elR":[116.8,-118.2],"haR":[157,-142.8],"shL":[-55.7,-131.2],"elL":[-108.8,-77],"haL":[-120.6,-107.5],"hipR":[25.8,9.5],"knR":[47.3,124.1],"ftR":[55.3,231.4],"hipL":[-26.8,6.1],"knL":[-65.3,112.8],"ftL":[-111.7,225.9]},{"rootY":19.9,"hips":[0,0],"chest":[-10.1,-97.5],"neck":[-18.8,-163.5],"head":[-6.9,-196.4],"shR":[36.2,-152.9],"elR":[109.6,-129],"haR":[165.6,-156.7],"shL":[-70.2,-137.7],"elL":[-126.9,-96.8],"haL":[-112,-123.6],"hipR":[27.1,5.8],"knR":[44.7,123.2],"ftR":[48.3,230.5],"hipL":[-26,9.8],"knL":[-69.1,114.1],"ftL":[-110,229.4]},{"rootY":17.6,"hips":[0,0],"chest":[-15.5,-96.6],"neck":[-26.2,-162.1],"head":[-12.5,-194.2],"shR":[28.6,-152.9],"elR":[105.5,-135.2],"haR":[168.8,-164.1],"shL":[-77.6,-142.2],"elL":[-134.2,-120.5],"haL":[-94.6,-138.8],"hipR":[26,3.9],"knR":[39,122.5],"ftR":[50.4,228.7],"hipL":[-23.9,11.6],"knL":[-65.5,118.6],"ftL":[-106.6,234.8]},{"rootY":17.7,"hips":[0,0],"chest":[-16.8,-96.3],"neck":[-28,-161.3],"head":[-14.2,-193.3],"shR":[26.4,-151.5],"elR":[103.1,-131.5],"haR":[161.4,-169.6],"shL":[-78.9,-147],"elL":[-131.1,-146.6],"haL":[-76.6,-151.8],"hipR":[24.5,3.6],"knR":[29.5,123.1],"ftR":[60.1,226.6],"hipL":[-22.1,11.8],"knL":[-62.8,120.6],"ftL":[-104.3,237.4]},{"rootY":19.8,"hips":[0,0],"chest":[-13.9,-96.7],"neck":[-23.7,-161.3],"head":[-12,-194],"shR":[30.7,-148.7],"elR":[105.2,-121.6],"haR":[148.1,-176.7],"shL":[-73.7,-153.3],"elL":[-121.8,-170],"haL":[-63.9,-165.6],"hipR":[23.8,4.8],"knR":[21.9,125.4],"ftR":[70.5,225.3],"hipL":[-21.9,10.7],"knL":[-63.8,118.4],"ftL":[-102,236]},{"rootY":21.1,"hips":[0,0],"chest":[-8,-97.4],"neck":[-12.9,-162.2],"head":[-4.8,-195.9],"shR":[41.2,-142.8],"elR":[115.2,-114.4],"haR":[135.7,-180.8],"shL":[-62.2,-159.5],"elL":[-112.4,-185.7],"haL":[-58.3,-182.6],"hipR":[24.8,6.5],"knR":[22.8,126.9],"ftR":[77,225.3],"hipL":[-24,9.2],"knL":[-64.8,115.9],"ftL":[-97.5,234.6]},{"rootY":19.5,"hips":[0,0],"chest":[0.2,-98.1],"neck":[3.4,-163.1],"head":[7.1,-197.4],"shR":[55.8,-136.9],"elR":[132,-115.2],"haR":[128.5,-181.8],"shL":[-46.3,-163.7],"elL":[-104.3,-191.7],"haL":[-59.4,-202.1],"hipR":[26.4,8.5],"knR":[33.9,125.7],"ftR":[82.7,225.8],"hipL":[-26.8,7.2],"knL":[-61.3,116.8],"ftL":[-88.9,236.2]},{"rootY":16.2,"hips":[0,0],"chest":[10.4,-97.6],"neck":[21.4,-162.7],"head":[21.3,-197],"shR":[72.6,-137.2],"elR":[151.5,-129.6],"haR":[129.2,-182.7],"shL":[-28.7,-165.4],"elL":[-95.9,-190.1],"haL":[-65.1,-220.9],"hipR":[24.7,10.9],"knR":[51.1,121.4],"ftR":[91.6,226.1],"hipL":[-26.6,4.6],"knL":[-52.4,119.9],"ftL":[-77.6,239.4]},{"rootY":13.5,"hips":[0,0],"chest":[17.9,-96.2],"neck":[34,-161.1],"head":[32.5,-195.1],"shR":[84.1,-142.3],"elR":[161.8,-158.4],"haR":[134.1,-185],"shL":[-16.2,-162.9],"elL":[-89.2,-184],"haL":[-74.8,-235.4],"hipR":[19.5,12.4],"knR":[63.2,117.7],"ftR":[97.3,227.9],"hipL":[-22.6,2.9],"knL":[-43.7,122.4],"ftL":[-73.2,241.3]},{"rootY":13.6,"hips":[0,0],"chest":[18.8,-95.7],"neck":[38.1,-160.1],"head":[37.6,-194],"shR":[84.9,-151.1],"elR":[153.7,-190.4],"haR":[139.6,-189.8],"shL":[-11.7,-157],"elL":[-86.6,-177.7],"haL":[-88.9,-243.2],"hipR":[14.2,12.7],"knR":[66.3,117],"ftR":[92.6,231.3],"hipL":[-17.4,2.5],"knL":[-40.1,123.2],"ftL":[-81.3,240]},{"rootY":17.4,"hips":[0,0],"chest":[13.2,-96.7],"neck":[33.9,-160.6],"head":[37.2,-194.6],"shR":[75.4,-161.8],"elR":[135.2,-212.7],"haR":[142.8,-200.5],"shL":[-14.1,-151.7],"elL":[-88.6,-172.7],"haL":[-104.9,-240.6],"hipR":[11.1,12.6],"knR":[66.5,117.1],"ftR":[80.1,233.5],"hipL":[-13.9,2.7],"knL":[-41,122.7],"ftL":[-94.4,235.8]},{"rootY":23.2,"hips":[0,0],"chest":[5.8,-97.4],"neck":[26.1,-161.2],"head":[34.7,-194.8],"shR":[63.7,-168.5],"elR":[118.4,-217.2],"haR":[147.4,-215.9],"shL":[-20.2,-149.3],"elL":[-93.9,-163.7],"haL":[-118.2,-228.9],"hipR":[11.3,13.2],"knR":[71.7,115.1],"ftR":[71.5,231.2],"hipL":[-13.6,2.2],"knL":[-41.6,121.9],"ftL":[-102.9,231.2]},{"rootY":28.2,"hips":[0,0],"chest":[1.9,-97.1],"neck":[20,-161],"head":[31.7,-194.3],"shR":[58.3,-166.6],"elR":[109.3,-202.6],"haR":[152,-229.5],"shL":[-25.9,-144.9],"elL":[-98.2,-143.9],"haL":[-126.8,-207.6],"hipR":[14.6,13.9],"knR":[80.6,112.1],"ftR":[70.3,226.4],"hipL":[-16.7,1.3],"knL":[-39.6,121.7],"ftL":[-105.8,228]},{"rootY":30.2,"hips":[0,0],"chest":[1.6,-96.9],"neck":[15,-161.2],"head":[26.7,-194.7],"shR":[57.5,-159.4],"elR":[106.2,-175.6],"haR":[150.7,-226.1],"shL":[-30,-137.9],"elL":[-98.5,-116.3],"haL":[-130.3,-175.9],"hipR":[19.7,13.3],"knR":[84.3,111.7],"ftR":[68.8,224],"hipL":[-22.2,2],"knL":[-38.5,121.9],"ftL":[-108.7,225.7]},{"rootY":28.5,"hips":[0,0],"chest":[-0.1,-97.1],"neck":[7,-161.4],"head":[17.1,-195.5],"shR":[54.1,-153.4],"elR":[99.2,-143],"haR":[143.4,-195.4],"shL":[-36.3,-132.8],"elL":[-96.7,-91.8],"haL":[-129.7,-132.8],"hipR":[24.5,11.1],"knR":[75.3,116.2],"ftR":[60.3,226.2],"hipL":[-26.4,4.5],"knL":[-43.7,121.7],"ftL":[-115,224.5]},{"rootY":24.6,"hips":[0,0],"chest":[-4.7,-96.9],"neck":[-2.6,-160.4],"head":[5.1,-195],"shR":[47.8,-147],"elR":[82.2,-115.5],"haR":[130.9,-150],"shL":[-45,-132.1],"elL":[-94.1,-76.9],"haL":[-112.8,-84.7],"hipR":[26.4,9.2],"knR":[57.9,121.7],"ftR":[52.2,229.7],"hipL":[-27.2,6.5],"knL":[-52.1,120.2],"ftL":[-115.9,225.8]},{"rootY":21.9,"hips":[0,0],"chest":[-9.2,-96.6],"neck":[-10.2,-158.7],"head":[-5.2,-193.2],"shR":[41,-137.7],"elR":[60.9,-96.2],"haR":[119,-92.9],"shL":[-52.5,-133.4],"elL":[-88.3,-68.7],"haL":[-75.4,-52.5],"hipR":[25.9,8.1],"knR":[41.4,124.8],"ftR":[55,230.2],"hipL":[-25.7,7.5],"knL":[-62,117.2],"ftL":[-101.2,229.3]},{"rootY":22.9,"hips":[0,0],"chest":[-11.3,-96.6],"neck":[-14.2,-157.6],"head":[-11.9,-191.6],"shR":[35.6,-131],"elR":[47.2,-84.4],"haR":[102,-46.1],"shL":[-57.2,-134.8],"elL":[-78.6,-64.4],"haL":[-31.5,-48.2],"hipR":[24.8,7.1],"knR":[30.1,126.4],"ftR":[68.5,227.2],"hipL":[-24,8.5],"knL":[-72.8,114.8],"ftL":[-84.8,231]},{"rootY":25.9,"hips":[0,0],"chest":[-10.3,-96.8],"neck":[-14,-157.8],"head":[-12.8,-191.5],"shR":[35.6,-128.8],"elR":[47.5,-73],"haR":[91.7,-19.1],"shL":[-59,-135.8],"elL":[-65.3,-65.3],"haL":[-0.6,-64.1],"hipR":[24.4,6.7],"knR":[27.4,127.5],"ftR":[82.1,224.3],"hipL":[-23.5,8.9],"knL":[-80,112.7],"ftL":[-78.3,229.5]},{"rootY":27.3,"hips":[0,0],"chest":[-8,-97.1],"neck":[-10.5,-159.3],"head":[-8,-193.2],"shR":[41.3,-129.6],"elR":[54.6,-64.7],"haR":[90.1,-11.9],"shL":[-57.2,-138.2],"elL":[-55,-73.4],"haL":[11.6,-89.7],"hipR":[25.3,7],"knR":[32.5,127.7],"ftR":[90,224.1],"hipL":[-24.7,8.6],"knL":[-81.4,112.1],"ftL":[-76.7,227.2]},{"rootY":24.7,"hips":[0,0],"chest":[-5.1,-97.4],"neck":[-3.7,-160.8],"head":[1.3,-195],"shR":[48.7,-130.3],"elR":[69.6,-62.3],"haR":[100.2,-23.3],"shL":[-52,-142.5],"elL":[-54.6,-88.2],"haL":[9.4,-115.5],"hipR":[26.5,7.9],"knR":[42.4,126.9],"ftR":[95.7,226],"hipL":[-26.5,7.8],"knL":[-74.7,115],"ftL":[-72.8,226.8]},{"rootY":18.7,"hips":[0,0],"chest":[-2.8,-97.5],"neck":[4,-161.2],"head":[11.6,-195.7],"shR":[55.7,-132.1],"elR":[94.1,-68.5],"haR":[115.5,-47.4],"shL":[-45.2,-145],"elL":[-64.5,-109.7],"haL":[-0.6,-137.2],"hipR":[26.2,9.1],"knR":[52.4,125.2],"ftR":[101,228.3],"hipL":[-26.9,6.6],"knL":[-62.2,119.2],"ftL":[-71.3,227.6]},{"rootY":11.4,"hips":[0,0],"chest":[-2,-97.4],"neck":[9.8,-161],"head":[19.4,-195.5],"shR":[60.4,-136],"elR":[120.7,-89.1],"haR":[128.5,-81],"shL":[-38.6,-144.8],"elL":[-77.5,-137.6],"haL":[-12.6,-156.3],"hipR":[24.2,10.2],"knR":[60,122.4],"ftR":[99.6,229.8],"hipL":[-25.3,5.4],"knL":[-49.4,122.2],"ftL":[-80.9,227.4]},{"rootY":6.5,"hips":[0,0],"chest":[-1.3,-97.5],"neck":[13.1,-161.3],"head":[23.2,-195.9],"shR":[62.4,-141],"elR":[138.1,-124.7],"haR":[137,-118.2],"shL":[-33,-147.5],"elL":[-80.9,-167.2],"haL":[-28,-178.9],"hipR":[21.1,11.1],"knR":[66.9,117.6],"ftR":[84.9,229.2],"hipL":[-22.5,4.5],"knL":[-40.8,124.1],"ftL":[-98.2,225.6]},{"rootY":6.5,"hips":[0,0],"chest":[0.1,-97.7],"neck":[14.4,-162.6],"head":[23.2,-197.2],"shR":[62.6,-150.8],"elR":[138.5,-167.2],"haR":[141.8,-159],"shL":[-29,-153.7],"elL":[-72.4,-193.5],"haL":[-49.9,-209.5],"hipR":[18,11.8],"knR":[73.5,113.5],"ftR":[58.5,227.7],"hipL":[-19.6,3.7],"knL":[-40.7,124],"ftL":[-113.5,223.4]},{"rootY":10.7,"hips":[0,0],"chest":[1.1,-97.9],"neck":[14.9,-163.7],"head":[21.2,-197.8],"shR":[59.5,-164.1],"elR":[124.3,-204.7],"haR":[138,-201.8],"shL":[-25.2,-160.4],"elL":[-59.1,-208.5],"haL":[-65.8,-236],"hipR":[16.5,12],"knR":[76.1,114.2],"ftR":[35.7,228.3],"hipL":[-18.1,3.5],"knL":[-46.8,122.2],"ftL":[-123,221.6]},{"rootY":17.5,"hips":[0,0],"chest":[1.5,-98],"neck":[15.5,-164.1],"head":[20,-197],"shR":[53.8,-174.6],"elR":[104.7,-227.3],"haR":[128.2,-239.8],"shL":[-19.6,-165.2],"elL":[-52.2,-213.6],"haL":[-69.2,-253.5],"hipR":[16.2,11.9],"knR":[76.9,116.2],"ftR":[24.2,228.5],"hipL":[-17.9,3.6],"knL":[-53.4,119.8],"ftL":[-129,219.7]},{"rootY":24.7,"hips":[0,0],"chest":[1,-98.1],"neck":[14.8,-163.9],"head":[19.8,-196.4],"shR":[50.2,-177.4],"elR":[92.3,-232.7],"haR":[117.5,-271.1],"shL":[-10.4,-169.6],"elL":[-58,-212.3],"haL":[-69.3,-266.5],"hipR":[16.2,11.9],"knR":[79.6,115.9],"ftR":[20.9,225.8],"hipL":[-17.9,3.6],"knL":[-57.9,118.2],"ftL":[-134.5,217.1]},{"rootY":29.3,"hips":[0,0],"chest":[0.5,-98],"neck":[12.5,-164],"head":[19.2,-196.5],"shR":[50.4,-174.3],"elR":[93.4,-226.1],"haR":[109.4,-285.9],"shL":[-15.3,-170.4],"elL":[-69.1,-203.5],"haL":[-78.7,-261],"hipR":[16.9,11.9],"knR":[82.6,114.5],"ftR":[20.5,221.8],"hipL":[-18.5,3.5],"knL":[-59.7,118.1],"ftL":[-138.9,215.1]},{"rootY":28.8,"hips":[0,0],"chest":[0.9,-97.9],"neck":[10.1,-164.4],"head":[18.3,-196.8],"shR":[50.9,-170.5],"elR":[99.5,-212.7],"haR":[107.1,-281.7],"shL":[-32.5,-155.2],"elL":[-80.6,-194.1],"haL":[-99.9,-235.4],"hipR":[19.3,11.8],"knR":[81.4,115.2],"ftR":[19.8,220.6],"hipL":[-21,3.7],"knL":[-59.1,118.8],"ftL":[-140,214.5]},{"rootY":24,"hips":[0,0],"chest":[0.5,-97.6],"neck":[6,-164],"head":[15.6,-196.1],"shR":[49.2,-167.2],"elR":[98,-194.3],"haR":[117.6,-259.5],"shL":[-39.8,-150.8],"elL":[-97,-177.4],"haL":[-125.1,-196.5],"hipR":[23.2,11],"knR":[71.9,118.2],"ftR":[21.3,221.6],"hipL":[-24.7,4.5],"knL":[-59.4,117.3],"ftL":[-136.6,214.4]},{"rootY":18.3,"hips":[0,0],"chest":[-1.5,-96.9],"neck":[1.2,-162.3],"head":[11.1,-194.4],"shR":[46.9,-161.9],"elR":[87.9,-175.1],"haR":[133.9,-217.2],"shL":[-46.1,-147.7],"elL":[-110.2,-154.6],"haL":[-142.2,-153.8],"hipR":[26,9.6],"knR":[53.5,121.8],"ftR":[32.2,220.6],"hipL":[-26.9,6],"knL":[-64.8,111.5],"ftL":[-126.7,215.6]},{"rootY":14.9,"hips":[0,0],"chest":[-3.9,-96.4],"neck":[-3.3,-160.6],"head":[5.9,-193],"shR":[44.6,-152.9],"elR":[78.7,-155.4],"haR":[137.5,-167],"shL":[-50.8,-144.9],"elL":[-116.6,-125.9],"haL":[-150,-112],"hipR":[26.4,8.3],"knR":[33.7,125.3],"ftR":[55.5,217.6],"hipL":[-26.8,7.4],"knL":[-73.4,106],"ftL":[-110.2,220.4]},{"rootY":15.8,"hips":[0,0],"chest":[-6.2,-96.3],"neck":[-7.8,-159.7],"head":[0.1,-192.5],"shR":[41.5,-145.9],"elR":[74.5,-131.1],"haR":[135.4,-112.2],"shL":[-54.6,-141.8],"elL":[-114.4,-96.8],"haL":[-150.2,-77.2],"hipR":[25.7,7.2],"knR":[21.3,128.5],"ftR":[84.2,215.7],"hipL":[-25.6,8.4],"knL":[-80.3,105.3],"ftL":[-93.9,226.7]},{"rootY":20.6,"hips":[0,0],"chest":[-6.7,-96.6],"neck":[-10.4,-159],"head":[-4.7,-192.2],"shR":[40.7,-143.6],"elR":[71.5,-104.8],"haR":[124.1,-61.9],"shL":[-57.1,-137],"elL":[-104.9,-74.8],"haL":[-136.2,-50.8],"hipR":[25.1,7.2],"knR":[25.3,130.2],"ftR":[107.7,216.3],"hipL":[-24.8,8.5],"knL":[-82.6,106.1],"ftL":[-83.3,229.4]},{"rootY":25.5,"hips":[0,0],"chest":[-6.5,-96.6],"neck":[-11.2,-157.4],"head":[-8.5,-190.6],"shR":[42.2,-139.1],"elR":[67.9,-83.7],"haR":[109.8,-27.7],"shL":[-59.1,-131.9],"elL":[-97.9,-62.7],"haL":[-115.1,-37.7],"hipR":[25.5,7.1],"knR":[37.3,129.4],"ftR":[119.2,218.6],"hipL":[-25,8.6],"knL":[-84.5,104.9],"ftL":[-79,227.6]},{"rootY":27.8,"hips":[0,0],"chest":[-5.7,-96.5],"neck":[-10.5,-155.9],"head":[-10,-188.8],"shR":[44.4,-134.5],"elR":[71.2,-71.6],"haR":[99.1,-11.7],"shL":[-60.8,-130],"elL":[-95.9,-58.9],"haL":[-93.8,-39.2],"hipR":[26.3,7.3],"knR":[50,126.8],"ftR":[123.1,219.5],"hipL":[-26,8.3],"knL":[-86.5,102.5],"ftL":[-77,224.1]},{"rootY":25.7,"hips":[0,0],"chest":[-4.2,-96.9],"neck":[-8.4,-156.3],"head":[-7.3,-188.8],"shR":[46.6,-132.1],"elR":[84.3,-66],"haR":[90.3,-13],"shL":[-60.5,-131.1],"elL":[-96.9,-61.4],"haL":[-80.6,-52.6],"hipR":[26.5,8.6],"knR":[59.4,124.6],"ftR":[124.8,220.6],"hipL":[-26.9,7.1],"knL":[-85.2,102.7],"ftL":[-74.7,223.7]},{"rootY":19.1,"hips":[0,0],"chest":[-2.4,-97.6],"neck":[-5.6,-158.3],"head":[-1.9,-190.1],"shR":[48.9,-131.4],"elR":[96,-67.7],"haR":[84.3,-28.9],"shL":[-58.1,-133.7],"elL":[-100.8,-68.9],"haL":[-80.9,-69.1],"hipR":[26.2,9.5],"knR":[64.4,124.7],"ftR":[124.3,224.7],"hipL":[-27.2,6.1],"knL":[-79,106.7],"ftL":[-71.7,228.1]},{"rootY":12.1,"hips":[0,0],"chest":[-0.8,-97.9],"neck":[-2.5,-160.5],"head":[3.9,-191.8],"shR":[51.6,-133.9],"elR":[101.4,-76],"haR":[79.9,-53.9],"shL":[-55.8,-137.5],"elL":[-109.1,-83.4],"haL":[-89.8,-96.3],"hipR":[26.1,9.9],"knR":[67.2,125.2],"ftR":[116.5,229.6],"hipL":[-27.3,5.7],"knL":[-71.9,111.6],"ftL":[-68.8,233.3]},{"rootY":7.9,"hips":[0,0],"chest":[0.2,-98],"neck":[-0.3,-162],"head":[7.6,-193.9],"shR":[53.6,-138.7],"elR":[103,-88],"haR":[75.7,-83.3],"shL":[-54.1,-139.8],"elL":[-120,-106.7],"haL":[-102.4,-133.2],"hipR":[26,10.1],"knR":[68,125.6],"ftR":[99.1,233.8],"hipL":[-27.4,5.5],"knL":[-68.3,114.7],"ftL":[-69.2,236.1]},{"rootY":6.9,"hips":[0,0],"chest":[0.8,-98],"neck":[0.7,-163.2],"head":[8.4,-196.5],"shR":[53.9,-143.8],"elR":[104,-104.1],"haR":[72.9,-114.2],"shL":[-53.6,-143.8],"elL":[-126.7,-134.3],"haL":[-113.1,-172.1],"hipR":[25.6,10.7],"knR":[67.2,126.4],"ftR":[77.5,237.4],"hipL":[-27.3,4.9],"knL":[-66,116],"ftL":[-75.7,236.3]},{"rootY":8.8,"hips":[0,0],"chest":[1.4,-98.2],"neck":[1.9,-164.4],"head":[7.8,-198.9],"shR":[54.1,-148.1],"elR":[106.3,-122.7],"haR":[72.8,-144.7],"shL":[-52.5,-149.5],"elL":[-127,-161.1],"haL":[-122.2,-206.6],"hipR":[24.8,11.5],"knR":[65.6,127.4],"ftR":[60.2,240],"hipL":[-27,4],"knL":[-60.9,117.6],"ftL":[-85.6,234.9]},{"rootY":12,"hips":[0,0],"chest":[2.1,-98.3],"neck":[3.6,-164.8],"head":[6.5,-200.2],"shR":[54.9,-151.7],"elR":[109.9,-140.1],"haR":[75.5,-173],"shL":[-50.3,-154.2],"elL":[-121.8,-182.8],"haL":[-130.8,-233.9],"hipR":[24.1,12],"knR":[64.5,127.6],"ftR":[52.3,240],"hipL":[-26.5,3.5],"knL":[-55.2,119.6],"ftL":[-92.8,233.2]},{"rootY":13.5,"hips":[0,0],"chest":[2.6,-98.2],"neck":[4,-164.2],"head":[2.8,-200],"shR":[54.4,-154.8],"elR":[113.6,-149.9],"haR":[81.3,-193.3],"shL":[-48.4,-157.9],"elL":[-118.1,-192.5],"haL":[-136.8,-249],"hipR":[23.8,12.2],"knR":[62.8,128.1],"ftR":[50.6,239.4],"hipL":[-26.3,3.3],"knL":[-55,120.1],"ftL":[-95.5,233]},{"rootY":11.6,"hips":[0,0],"chest":[2,-98.4],"neck":[0.8,-163.7],"head":[-4,-199.4],"shR":[50.8,-156.7],"elR":[113.4,-147.9],"haR":[88.8,-200.8],"shL":[-49.3,-161.2],"elL":[-122.4,-187.6],"haL":[-139.8,-250.8],"hipR":[24.4,11.8],"knR":[58.8,129.4],"ftR":[48.9,241],"hipL":[-26.8,3.6],"knL":[-60.8,119.4],"ftL":[-97.6,234.9]},{"rootY":7.8,"hips":[0,0],"chest":[0,-99.1],"neck":[-5.6,-164.1],"head":[-12.3,-199.4],"shR":[45.3,-156.2],"elR":[106.8,-136.5],"haR":[95,-194.5],"shL":[-55.3,-160.1],"elL":[-131.1,-171.9],"haL":[-145.9,-238.4],"hipR":[25.4,10.7],"knR":[52.3,130.7],"ftR":[46.4,243.9],"hipL":[-27.3,4.8],"knL":[-65.9,119.9],"ftL":[-101.2,237.7]},{"rootY":5,"hips":[0,0],"chest":[-2.6,-99.7],"neck":[-11.9,-164.9],"head":[-19.4,-199.8],"shR":[40.5,-154.2],"elR":[97.9,-121.7],"haR":[98.6,-175.2],"shL":[-62.8,-154.5],"elL":[-138.1,-149.4],"haL":[-154.3,-214.9],"hipR":[26.3,9.3],"knR":[47,130.8],"ftR":[48.3,244.4],"hipL":[-27.2,6.2],"knL":[-66,122.2],"ftL":[-101.7,240.7]},{"rootY":4.4,"hips":[0,0],"chest":[-4.2,-99.9],"neck":[-16,-165.3],"head":[-23.4,-199.9],"shR":[37.6,-151.1],"elR":[93.4,-108.7],"haR":[99.8,-145.9],"shL":[-67.3,-146.2],"elL":[-138.5,-123.6],"haL":[-159.7,-182.5],"hipR":[26.6,8.5],"knR":[46.5,129.8],"ftR":[58.5,241.9],"hipL":[-26.9,7],"knL":[-63.6,124.1],"ftL":[-94.5,243.3]},{"rootY":6.9,"hips":[0,0],"chest":[-4.7,-99.6],"neck":[-18.3,-165.2],"head":[-24.4,-199.7],"shR":[36,-146.5],"elR":[93.8,-101],"haR":[96.4,-115.9],"shL":[-68.1,-137.6],"elL":[-132.4,-99.1],"haL":[-157.2,-141.9],"hipR":[26.6,8.1],"knR":[50.2,128.5],"ftR":[74.6,237.2],"hipL":[-26.6,7.5],"knL":[-65.1,123.3],"ftL":[-82.5,242.7]},{"rootY":13.4,"hips":[0,0],"chest":[-5.2,-98.9],"neck":[-19.3,-164.7],"head":[-23.5,-199.4],"shR":[34.5,-141.9],"elR":[95,-97.8],"haR":[88.9,-90.5],"shL":[-67.3,-131.8],"elL":[-125.2,-82.7],"haL":[-145.2,-102],"hipR":[26.6,7.2],"knR":[54.1,126.9],"ftR":[90.4,229.3],"hipL":[-26,8.5],"knL":[-71.7,119.7],"ftL":[-74.6,236.6]},{"rootY":20.8,"hips":[0,0],"chest":[-5,-98.1],"neck":[-18.2,-163.8],"head":[-20.3,-199],"shR":[34.9,-137.3],"elR":[96.8,-95],"haR":[82.7,-75.4],"shL":[-65.5,-128.5],"elL":[-120.4,-74.5],"haL":[-130,-68.6],"hipR":[26.4,6.6],"knR":[57.3,125.9],"ftR":[101.6,219.8],"hipL":[-25.7,9],"knL":[-76.5,116.2],"ftL":[-72.1,229.4]},{"rootY":24.4,"hips":[0,0],"chest":[-4,-97.6],"neck":[-14.7,-162.9],"head":[-14.9,-198.5],"shR":[38,-133.5],"elR":[99.8,-89.2],"haR":[81.1,-68.5],"shL":[-62.3,-126.5],"elL":[-117.7,-71.4],"haL":[-117.9,-47.2],"hipR":[26.6,6.8],"knR":[61.1,125],"ftR":[107.6,214],"hipL":[-26,8.8],"knL":[-75.9,115.8],"ftL":[-70.5,226.3]},{"rootY":21.2,"hips":[0,0],"chest":[-3.1,-97.6],"neck":[-9.8,-162.6],"head":[-8.1,-198.2],"shR":[42.9,-131.5],"elR":[104.5,-84.3],"haR":[87.6,-71.2],"shL":[-59.1,-126.3],"elL":[-115.6,-71],"haL":[-112.2,-39.9],"hipR":[26.9,6.9],"knR":[64.7,124.1],"ftR":[110.7,215.5],"hipL":[-26.4,8.8],"knL":[-70.7,119.1],"ftL":[-67.7,228.3]},{"rootY":13.4,"hips":[0,0],"chest":[-3.1,-97.9],"neck":[-5.3,-163.1],"head":[-1.4,-198.6],"shR":[47.4,-132.1],"elR":[110.9,-86.7],"haR":[96.1,-86.2],"shL":[-56.8,-129.1],"elL":[-116.1,-76.5],"haL":[-113.9,-51.4],"hipR":[27.1,6.7],"knR":[66.8,123.3],"ftR":[110.2,220.6],"hipL":[-26.4,9],"knL":[-64.2,123.1],"ftL":[-66.9,232.8]},{"rootY":4.8,"hips":[0,0],"chest":[-4.2,-98.2],"neck":[-2.6,-164],"head":[3.7,-198.9],"shR":[50,-134.1],"elR":[118.7,-98.1],"haR":[103.5,-111.6],"shL":[-56,-133.7],"elL":[-121.8,-89.8],"haL":[-119.5,-80.8],"hipR":[26.9,6.5],"knR":[67.5,122.8],"ftR":[103.1,224.1],"hipL":[-26.2,9.2],"knL":[-58.6,125.8],"ftL":[-72.4,236.3]},{"rootY":-1.7,"hips":[0,0],"chest":[-6.2,-98.1],"neck":[-2.3,-164.7],"head":[6.5,-198.6],"shR":[50.5,-137.7],"elR":[124.2,-116.6],"haR":[108.3,-141.2],"shL":[-56.4,-137.2],"elL":[-129.3,-110.9],"haL":[-124.6,-119.6],"hipR":[26.1,6.8],"knR":[68.5,122.3],"ftR":[89.5,226.2],"hipL":[-25.6,8.8],"knL":[-53.9,126.5],"ftL":[-84.8,234.8]},{"rootY":-3.5,"hips":[0,0],"chest":[-8.8,-98],"neck":[-4.8,-165.8],"head":[6.9,-197.7],"shR":[48.6,-144.4],"elR":[124.7,-140.3],"haR":[111.1,-170.1],"shL":[-58.3,-142.1],"elL":[-131.3,-136.9],"haL":[-126.3,-160.2],"hipR":[24.8,7.4],"knR":[68.7,121.8],"ftR":[75.4,230.6],"hipL":[-24.5,8.3],"knL":[-50.6,125.6],"ftL":[-100.1,227.6]}]} \ No newline at end of file diff --git a/ink-theater/mocap/clips/shuffle.json b/ink-theater/mocap/clips/shuffle.json index e5899b06..0852d45e 100644 --- a/ink-theater/mocap/clips/shuffle.json +++ b/ink-theater/mocap/clips/shuffle.json @@ -1 +1 @@ -{"name":"shuffle","fps":30,"height":520,"groundY":256,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.2],"neck":[-3.8,-168.3],"head":[-1.6,-203.7],"shR":[50.1,-147],"elR":[128.4,-146.4],"haR":[193.7,-148.9],"shL":[-57.7,-145.7],"elL":[-134.6,-146.3],"haL":[-203,-146.3],"hipR":[26.6,7.9],"knR":[30.4,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.2],"neck":[-3.8,-168.3],"head":[-1.7,-203.6],"shR":[50.1,-147],"elR":[128.4,-146.4],"haR":[193.6,-148.7],"shL":[-57.7,-145.5],"elL":[-134.6,-145.9],"haL":[-203.1,-145.7],"hipR":[26.6,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-3.9,-168.3],"head":[-1.8,-203.6],"shR":[50.1,-146.9],"elR":[128.3,-146.4],"haR":[193.6,-148.6],"shL":[-57.7,-145.3],"elL":[-134.7,-145.3],"haL":[-203.2,-144.8],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.8],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-3.9,-168.3],"head":[-1.9,-203.6],"shR":[50,-146.9],"elR":[128.3,-146.4],"haR":[193.5,-148.6],"shL":[-57.7,-145],"elL":[-134.8,-144.6],"haL":[-203.3,-143.7],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.3,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.8],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-4.1,-168.2],"head":[-2,-203.6],"shR":[49.9,-146.9],"elR":[128.2,-146.4],"haR":[193.4,-148.6],"shL":[-57.8,-144.8],"elL":[-134.9,-143.9],"haL":[-203.5,-142.6],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.2,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.2,-100.2],"neck":[-4.3,-168.2],"head":[-2.2,-203.6],"shR":[49.8,-147.1],"elR":[128.1,-146.4],"haR":[193.4,-148.6],"shL":[-58,-144.7],"elL":[-135.1,-143.3],"haL":[-203.7,-141.5],"hipR":[26.5,7.9],"knR":[30.5,129.6],"ftR":[30.2,254.7],"hipL":[-26.8,7.7],"knL":[-23.5,130.9],"ftL":[-20.4,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.3,-100.1],"neck":[-4.5,-168.2],"head":[-2.5,-203.5],"shR":[49.6,-147.2],"elR":[127.9,-146.5],"haR":[193.3,-148.5],"shL":[-58.1,-144.5],"elL":[-135.3,-142.6],"haL":[-203.9,-140.5],"hipR":[26.5,7.9],"knR":[30.4,129.6],"ftR":[30.1,254.7],"hipL":[-26.8,7.7],"knL":[-23.6,130.8],"ftL":[-20.5,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.4,-100.1],"neck":[-4.7,-168.1],"head":[-2.8,-203.5],"shR":[49.4,-147.2],"elR":[127.8,-146.6],"haR":[193.3,-148.5],"shL":[-58.3,-144.3],"elL":[-135.4,-142],"haL":[-204.1,-139.5],"hipR":[26.5,7.9],"knR":[30.4,129.6],"ftR":[30,254.7],"hipL":[-26.8,7.7],"knL":[-23.6,130.8],"ftL":[-20.6,256]},{"rootY":0,"hips":[0,0],"chest":[-3.5,-100.1],"neck":[-4.9,-168.1],"head":[-3.1,-203.5],"shR":[49.3,-147.3],"elR":[127.6,-146.7],"haR":[193.2,-148.5],"shL":[-58.5,-144.1],"elL":[-135.6,-141.5],"haL":[-204.3,-138.7],"hipR":[26.5,7.9],"knR":[30.3,129.6],"ftR":[29.9,254.7],"hipL":[-26.8,7.7],"knL":[-23.7,130.8],"ftL":[-20.7,256]},{"rootY":0,"hips":[0,0],"chest":[-3.7,-100.1],"neck":[-5.2,-168.1],"head":[-3.4,-203.5],"shR":[49,-147.3],"elR":[127.4,-146.8],"haR":[193.1,-148.7],"shL":[-58.7,-143.8],"elL":[-135.8,-141],"haL":[-204.5,-138],"hipR":[26.5,7.9],"knR":[30.3,129.6],"ftR":[29.7,254.7],"hipL":[-26.8,7.7],"knL":[-23.7,130.8],"ftL":[-20.8,256.1]},{"rootY":0,"hips":[0,0],"chest":[-3.8,-100.1],"neck":[-5.4,-168.1],"head":[-3.7,-203.5],"shR":[48.8,-147.3],"elR":[127.2,-146.9],"haR":[193,-149],"shL":[-58.9,-143.6],"elL":[-136,-140.6],"haL":[-204.7,-137.4],"hipR":[26.5,7.9],"knR":[30.2,129.6],"ftR":[29.6,254.7],"hipL":[-26.8,7.7],"knL":[-23.8,130.9],"ftL":[-21,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4,-100.1],"neck":[-5.7,-168.1],"head":[-4,-203.5],"shR":[48.6,-147.3],"elR":[127,-147.1],"haR":[192.9,-149.3],"shL":[-59.1,-143.3],"elL":[-136.3,-140.2],"haL":[-205,-137],"hipR":[26.5,7.9],"knR":[30.1,129.6],"ftR":[29.4,254.7],"hipL":[-26.8,7.7],"knL":[-23.9,130.9],"ftL":[-21.1,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4.1,-100.1],"neck":[-6,-168.1],"head":[-4.4,-203.5],"shR":[48.4,-147.3],"elR":[126.8,-147.3],"haR":[192.8,-149.7],"shL":[-59.3,-143.1],"elL":[-136.5,-139.9],"haL":[-205.2,-136.6],"hipR":[26.5,7.8],"knR":[30,129.6],"ftR":[29.3,254.7],"hipL":[-26.7,7.7],"knL":[-23.9,130.9],"ftL":[-21.3,256.1]},{"rootY":0,"hips":[0,0],"chest":[-4.2,-100.1],"neck":[-6.3,-168],"head":[-4.8,-203.5],"shR":[48.1,-147.3],"elR":[126.6,-147.5],"haR":[192.6,-150],"shL":[-59.5,-142.8],"elL":[-136.8,-139.7],"haL":[-205.5,-136.3],"hipR":[26.5,7.8],"knR":[29.9,129.6],"ftR":[29,254.8],"hipL":[-26.7,7.7],"knL":[-24,130.9],"ftL":[-21.5,256.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.2,-100.1],"neck":[-6.7,-168],"head":[-5.2,-203.5],"shR":[47.8,-147.4],"elR":[126.3,-147.7],"haR":[192.4,-150.3],"shL":[-59.8,-142.6],"elL":[-137.1,-139.4],"haL":[-205.9,-136.1],"hipR":[26.5,7.8],"knR":[29.8,129.6],"ftR":[28.8,254.8],"hipL":[-26.7,7.8],"knL":[-24.2,130.9],"ftL":[-21.8,256.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.4,-100.1],"neck":[-7.1,-168],"head":[-5.7,-203.5],"shR":[47.5,-147.4],"elR":[126.1,-147.9],"haR":[192.1,-150.6],"shL":[-60.1,-142.2],"elL":[-137.4,-139.2],"haL":[-206.2,-135.8],"hipR":[26.5,7.8],"knR":[29.6,129.6],"ftR":[28.4,254.8],"hipL":[-26.7,7.8],"knL":[-24.3,131],"ftL":[-22.1,256.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-4.5,-100.1],"neck":[-7.5,-167.9],"head":[-6.1,-203.4],"shR":[47.2,-147.3],"elR":[125.8,-148],"haR":[191.8,-150.9],"shL":[-60.4,-141.9],"elL":[-137.7,-138.9],"haL":[-206.5,-135.5],"hipR":[26.6,7.7],"knR":[29.4,129.7],"ftR":[28.1,254.9],"hipL":[-26.7,7.8],"knL":[-24.5,131],"ftL":[-22.5,256.3]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.6,-100.1],"neck":[-7.8,-167.9],"head":[-6.5,-203.4],"shR":[47,-147.2],"elR":[125.5,-148.1],"haR":[191.6,-151.1],"shL":[-60.6,-141.7],"elL":[-137.9,-138.6],"haL":[-206.7,-135.2],"hipR":[26.6,7.7],"knR":[29.2,129.7],"ftR":[27.7,254.9],"hipL":[-26.7,7.9],"knL":[-24.7,131.1],"ftL":[-22.9,256.3]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.7,-100.1],"neck":[-7.9,-167.9],"head":[-6.9,-203.4],"shR":[46.8,-147.1],"elR":[125.4,-148.2],"haR":[191.4,-151.3],"shL":[-60.7,-141.5],"elL":[-138,-138.4],"haL":[-206.8,-134.9],"hipR":[26.6,7.6],"knR":[29,129.8],"ftR":[27.4,255],"hipL":[-26.7,7.9],"knL":[-24.9,131.1],"ftL":[-23.2,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.7,-100.1],"neck":[-8.1,-167.9],"head":[-7.2,-203.4],"shR":[46.7,-147.1],"elR":[125.2,-148.2],"haR":[191.2,-151.5],"shL":[-60.8,-141.4],"elL":[-138.1,-138.1],"haL":[-207,-134.6],"hipR":[26.6,7.6],"knR":[28.8,129.8],"ftR":[27.1,255.1],"hipL":[-26.7,8],"knL":[-25,131.1],"ftL":[-23.6,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.9,-100.1],"neck":[-8.2,-167.9],"head":[-7.4,-203.5],"shR":[46.5,-147],"elR":[125.1,-148.3],"haR":[191,-151.7],"shL":[-60.9,-141.3],"elL":[-138.3,-138],"haL":[-207.1,-134.3],"hipR":[26.6,7.6],"knR":[28.5,129.9],"ftR":[26.7,255.1],"hipL":[-26.7,8],"knL":[-25.2,131.2],"ftL":[-23.9,256.4]},{"rootY":-0.3,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.3,-167.9],"head":[-7.7,-203.5],"shR":[46.4,-147],"elR":[125,-148.4],"haR":[190.9,-151.9],"shL":[-61,-141.2],"elL":[-138.4,-137.9],"haL":[-207.3,-134.2],"hipR":[26.6,7.6],"knR":[28.3,129.9],"ftR":[26.4,255.2],"hipL":[-26.7,8],"knL":[-25.3,131.2],"ftL":[-24.2,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.4,-167.9],"head":[-7.9,-203.5],"shR":[46.4,-147],"elR":[124.9,-148.6],"haR":[190.8,-152.1],"shL":[-61.1,-141.2],"elL":[-138.6,-137.8],"haL":[-207.5,-134.2],"hipR":[26.6,7.5],"knR":[28.1,129.9],"ftR":[26.1,255.2],"hipL":[-26.7,8],"knL":[-25.5,131.2],"ftL":[-24.5,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.5,-167.8],"head":[-8.2,-203.4],"shR":[46.3,-147],"elR":[124.8,-148.7],"haR":[190.7,-152.3],"shL":[-61.1,-141.2],"elL":[-138.8,-137.8],"haL":[-207.8,-134.1],"hipR":[26.6,7.5],"knR":[27.9,130],"ftR":[25.8,255.3],"hipL":[-26.7,8.1],"knL":[-25.7,131.2],"ftL":[-24.9,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.6,-167.8],"head":[-8.4,-203.4],"shR":[46.2,-147],"elR":[124.7,-148.8],"haR":[190.6,-152.5],"shL":[-61.2,-141.2],"elL":[-139,-137.7],"haL":[-208.1,-134],"hipR":[26.6,7.5],"knR":[27.7,130],"ftR":[25.5,255.3],"hipL":[-26.7,8.1],"knL":[-25.9,131.3],"ftL":[-25.3,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-5,-100.1],"neck":[-8.7,-167.7],"head":[-8.5,-203.3],"shR":[46.2,-147],"elR":[124.7,-148.9],"haR":[190.7,-152.7],"shL":[-61.2,-141.1],"elL":[-139.1,-137.6],"haL":[-208.3,-133.8],"hipR":[26.6,7.4],"knR":[27.5,130],"ftR":[25.3,255.3],"hipL":[-26.7,8.1],"knL":[-26,131.3],"ftL":[-25.5,256.5]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.8,-100.1],"neck":[-8.6,-167.7],"head":[-8.5,-203.3],"shR":[46.2,-146.9],"elR":[124.8,-149],"haR":[190.8,-152.9],"shL":[-61.1,-141],"elL":[-139.1,-137.4],"haL":[-208.3,-133.5],"hipR":[26.7,7.4],"knR":[27.4,130.1],"ftR":[25.2,255.4],"hipL":[-26.7,8.1],"knL":[-26.1,131.3],"ftL":[-25.7,256.5]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.6,-100.1],"neck":[-8.5,-167.7],"head":[-8.4,-203.3],"shR":[46.3,-146.8],"elR":[124.9,-149],"haR":[190.9,-152.9],"shL":[-61,-140.9],"elL":[-139,-137.1],"haL":[-208.3,-133.1],"hipR":[26.7,7.4],"knR":[27.3,130.1],"ftR":[25.2,255.4],"hipL":[-26.7,8.1],"knL":[-26.1,131.3],"ftL":[-25.7,256.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.4,-100.2],"neck":[-8.3,-167.7],"head":[-8.3,-203.2],"shR":[46.5,-146.7],"elR":[125,-148.8],"haR":[191,-152.7],"shL":[-60.8,-140.8],"elL":[-138.8,-136.7],"haL":[-208.1,-132.5],"hipR":[26.7,7.4],"knR":[27.3,130.1],"ftR":[25.3,255.4],"hipL":[-26.7,8.1],"knL":[-26,131.3],"ftL":[-25.6,256.6]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.2,-100.2],"neck":[-8,-167.7],"head":[-8.1,-203.2],"shR":[46.8,-146.6],"elR":[125.2,-148.6],"haR":[191,-152.2],"shL":[-60.5,-140.8],"elL":[-138.5,-136.3],"haL":[-207.8,-131.8],"hipR":[26.7,7.4],"knR":[27.4,130.1],"ftR":[25.5,255.4],"hipL":[-26.7,8.1],"knL":[-25.9,131.3],"ftL":[-25.3,256.5]},{"rootY":-0.5,"hips":[0,0],"chest":[-4,-100.2],"neck":[-7.9,-167.6],"head":[-8,-203.1],"shR":[46.9,-146.4],"elR":[125.1,-148.1],"haR":[190.6,-151.5],"shL":[-60.4,-140.6],"elL":[-138.2,-136],"haL":[-207.4,-131.3],"hipR":[26.7,7.4],"knR":[27.6,130.1],"ftR":[25.8,255.4],"hipL":[-26.7,8.1],"knL":[-25.8,131.3],"ftL":[-25,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4,-100.1],"neck":[-7.9,-167.3],"head":[-8.1,-202.9],"shR":[46.9,-146.3],"elR":[124.8,-147.6],"haR":[189.8,-150.4],"shL":[-60.5,-140.5],"elL":[-138,-135.6],"haL":[-207,-130.7],"hipR":[26.7,7.4],"knR":[27.7,130.1],"ftR":[26.1,255.4],"hipL":[-26.7,8.2],"knL":[-25.6,131.3],"ftL":[-24.7,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.2,-100],"neck":[-8,-167.1],"head":[-8.2,-202.7],"shR":[46.7,-146.3],"elR":[124.1,-147],"haR":[188.4,-149.2],"shL":[-60.7,-140.5],"elL":[-137.7,-135.5],"haL":[-206.5,-130.4],"hipR":[26.8,7.3],"knR":[27.9,130.1],"ftR":[26.4,255.4],"hipL":[-26.7,8.2],"knL":[-25.5,131.4],"ftL":[-24.4,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.3,-100],"neck":[-8,-166.9],"head":[-8.3,-202.5],"shR":[46.6,-146.3],"elR":[123.3,-146.5],"haR":[186.5,-148.1],"shL":[-60.8,-140.5],"elL":[-137.1,-135.6],"haL":[-205.5,-130.5],"hipR":[26.8,7.3],"knR":[28.2,130],"ftR":[26.9,255.3],"hipL":[-26.6,8.3],"knL":[-25.2,131.4],"ftL":[-23.8,256.4]},{"rootY":-0.5,"hips":[0,0],"chest":[-4.3,-99.9],"neck":[-8,-166.8],"head":[-8.4,-202.4],"shR":[46.5,-146.3],"elR":[122.1,-146.1],"haR":[183.9,-147.3],"shL":[-60.9,-140.6],"elL":[-136.2,-135.9],"haL":[-204,-131.2],"hipR":[26.7,7.2],"knR":[28.6,130],"ftR":[27.5,255.3],"hipL":[-26.6,8.3],"knL":[-24.8,131.4],"ftL":[-23.1,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.3,-99.9],"neck":[-8,-166.6],"head":[-8.4,-202.3],"shR":[46.5,-146.1],"elR":[120.5,-145.8],"haR":[180.3,-146.9],"shL":[-60.9,-140.6],"elL":[-134.9,-136.5],"haL":[-201.6,-132.2],"hipR":[26.7,7.2],"knR":[29,129.9],"ftR":[28.4,255.2],"hipL":[-26.6,8.4],"knL":[-24.3,131.5],"ftL":[-22.3,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.4,-99.8],"neck":[-7.8,-166.6],"head":[-8.2,-202.3],"shR":[46.5,-146.1],"elR":[118.4,-145.6],"haR":[175.5,-146.5],"shL":[-60.9,-141.1],"elL":[-132.9,-137.3],"haL":[-198.3,-133.3],"hipR":[26.7,7.1],"knR":[29.5,129.9],"ftR":[29.4,255.2],"hipL":[-26.5,8.5],"knL":[-23.7,131.5],"ftL":[-21.2,256.3]},{"rootY":-0.4,"hips":[0,0],"chest":[-4.4,-99.8],"neck":[-7.5,-166.5],"head":[-7.9,-202.3],"shR":[46.6,-146.1],"elR":[115.9,-145.6],"haR":[169.7,-146.5],"shL":[-60.8,-141.8],"elL":[-129.8,-138.3],"haL":[-193.5,-134.5],"hipR":[26.7,7.1],"knR":[30.2,129.8],"ftR":[30.8,255.2],"hipL":[-26.5,8.5],"knL":[-22.9,131.6],"ftL":[-19.8,256.3]},{"rootY":-0.3,"hips":[0,0],"chest":[-4.3,-99.7],"neck":[-7.2,-166.5],"head":[-7.6,-202.4],"shR":[46.8,-146.1],"elR":[112.7,-145.7],"haR":[162.6,-146.9],"shL":[-60.6,-142.5],"elL":[-125.7,-139.5],"haL":[-186.9,-135.8],"hipR":[26.6,7.1],"knR":[31.1,129.8],"ftR":[32.4,255.1],"hipL":[-26.5,8.5],"knL":[-22,131.6],"ftL":[-18.2,256.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.2,-99.6],"neck":[-6.9,-166.4],"head":[-7.2,-202.4],"shR":[46.9,-145.9],"elR":[108.7,-146],"haR":[154,-147.7],"shL":[-60.4,-143.3],"elL":[-121,-140.7],"haL":[-178.7,-137.5],"hipR":[26.6,7.1],"knR":[32.4,129.6],"ftR":[34.1,254.9],"hipL":[-26.4,8.5],"knL":[-21.1,131.5],"ftL":[-16.4,256.1]},{"rootY":0.1,"hips":[0,0],"chest":[-4.1,-99.6],"neck":[-6.7,-166.5],"head":[-6.7,-202.5],"shR":[47,-146],"elR":[104.1,-146.5],"haR":[144.2,-148.6],"shL":[-60.4,-144.2],"elL":[-115.7,-142.3],"haL":[-169,-139.7],"hipR":[26.6,7.3],"knR":[34,129.4],"ftR":[36,254.5],"hipL":[-26.5,8.3],"knL":[-20.4,131.3],"ftL":[-14.5,255.7]},{"rootY":0.8,"hips":[0,0],"chest":[-4.1,-99.7],"neck":[-6.7,-166.7],"head":[-6.4,-202.7],"shR":[47,-146.5],"elR":[99.2,-147.2],"haR":[133.5,-149.7],"shL":[-60.4,-145.4],"elL":[-110,-144.4],"haL":[-158.1,-142.5],"hipR":[26.4,7.8],"knR":[35.8,129],"ftR":[38,253.6],"hipL":[-26.7,7.8],"knL":[-19.7,130.7],"ftL":[-12.5,255]},{"rootY":1.8,"hips":[0,0],"chest":[-4.1,-99.6],"neck":[-7,-166.7],"head":[-6.3,-202.8],"shR":[46.8,-147],"elR":[93.9,-148],"haR":[122.2,-150.9],"shL":[-60.5,-146.3],"elL":[-104,-146.4],"haL":[-146.5,-145.6],"hipR":[26.3,8.5],"knR":[36.9,128.3],"ftR":[39.7,252],"hipL":[-26.9,7.1],"knL":[-19.1,129.9],"ftL":[-10.6,254]},{"rootY":2.5,"hips":[0,0],"chest":[-4.1,-99.3],"neck":[-7.5,-166.5],"head":[-6.7,-202.7],"shR":[46.4,-147.3],"elR":[88.3,-148.4],"haR":[110.5,-151.7],"shL":[-60.9,-146.7],"elL":[-98.1,-147.9],"haL":[-134.6,-148.3],"hipR":[26.1,9.1],"knR":[37.5,127.3],"ftR":[40.5,249.7],"hipL":[-27,6.5],"knL":[-18.6,129.4],"ftL":[-9.2,253.2]},{"rootY":2.8,"hips":[0,0],"chest":[-4.4,-99.1],"neck":[-8.1,-166.3],"head":[-7.3,-202.5],"shR":[45.9,-147.2],"elR":[82.6,-148.4],"haR":[98.9,-152.1],"shL":[-61.3,-146.7],"elL":[-92.4,-149.1],"haL":[-122.7,-150.5],"hipR":[26.1,9.3],"knR":[37.6,125.9],"ftR":[40.2,247],"hipL":[-27,6.3],"knL":[-18.1,129.1],"ftL":[-8.1,252.9]},{"rootY":3,"hips":[0,0],"chest":[-4.7,-98.9],"neck":[-8.5,-166.3],"head":[-7.9,-202.5],"shR":[45.4,-147.1],"elR":[77,-148.2],"haR":[88.1,-152.1],"shL":[-61.6,-146.8],"elL":[-86.9,-150.1],"haL":[-111.4,-152.5],"hipR":[26.1,9.3],"knR":[37.2,124.3],"ftR":[39,244.4],"hipL":[-27,6.3],"knL":[-17.7,129.1],"ftL":[-7.2,252.7]},{"rootY":3,"hips":[0,0],"chest":[-5.2,-98.7],"neck":[-9,-166.3],"head":[-8.7,-202.5],"shR":[44.9,-146.8],"elR":[71.5,-147.7],"haR":[78.4,-151.7],"shL":[-62,-146.8],"elL":[-81.7,-151],"haL":[-101.1,-154.4],"hipR":[26.1,9.2],"knR":[36.4,122.8],"ftR":[37.5,242.5],"hipL":[-27,6.4],"knL":[-17.5,129.2],"ftL":[-6.6,252.6]},{"rootY":3,"hips":[0,0],"chest":[-5.7,-98.6],"neck":[-9.7,-166.2],"head":[-9.6,-202.4],"shR":[44.2,-146.7],"elR":[66.3,-147],"haR":[69.8,-150.8],"shL":[-62.5,-146.7],"elL":[-77,-152],"haL":[-92.1,-156.1],"hipR":[26.2,9.1],"knR":[35.5,121.5],"ftR":[36.1,241.4],"hipL":[-27,6.5],"knL":[-17.5,129.4],"ftL":[-6.4,252.5]},{"rootY":3,"hips":[0,0],"chest":[-6.2,-98.5],"neck":[-10.3,-166.1],"head":[-10.4,-202.3],"shR":[43.5,-146.8],"elR":[61.5,-146.1],"haR":[62.5,-149.2],"shL":[-62.9,-147],"elL":[-72.7,-152.8],"haL":[-84.3,-157.4],"hipR":[26.2,9],"knR":[34.8,120.2],"ftR":[35.4,240.9],"hipL":[-27,6.6],"knL":[-17.5,129.4],"ftL":[-6.2,252.5]},{"rootY":3,"hips":[0,0],"chest":[-6.5,-98.5],"neck":[-10.9,-166.1],"head":[-11.2,-202.4],"shR":[42.9,-147.1],"elR":[57.5,-145.1],"haR":[56.3,-147.2],"shL":[-63.2,-147.6],"elL":[-68.8,-153.6],"haL":[-77.4,-158.1],"hipR":[26.2,9],"knR":[34.5,118.9],"ftR":[35.3,240.8],"hipL":[-27,6.6],"knL":[-17.5,129.4],"ftL":[-5.9,252.4]},{"rootY":2.9,"hips":[0,0],"chest":[-6.7,-98.5],"neck":[-11.4,-166.2],"head":[-12.2,-202.4],"shR":[42.5,-147.2],"elR":[54.2,-144.2],"haR":[51.1,-145.1],"shL":[-63.4,-148.1],"elL":[-65.4,-154],"haL":[-71.5,-158.4],"hipR":[26.2,9],"knR":[34.4,117.8],"ftR":[35.3,241.1],"hipL":[-27,6.6],"knL":[-17.5,129.5],"ftL":[-5.8,252.3]},{"rootY":2.9,"hips":[0,0],"chest":[-7.1,-98.4],"neck":[-12,-166.1],"head":[-13.3,-202.4],"shR":[41.9,-147],"elR":[51.4,-143.3],"haR":[46.6,-143.3],"shL":[-63.8,-148.2],"elL":[-62.9,-154.1],"haL":[-66.7,-158.4],"hipR":[26.3,8.8],"knR":[34.2,117.2],"ftR":[35.1,241.6],"hipL":[-26.9,6.8],"knL":[-17.6,129.7],"ftL":[-6.1,252.3]},{"rootY":2.8,"hips":[0,0],"chest":[-7.3,-98.3],"neck":[-12.5,-166],"head":[-14.5,-202.2],"shR":[41.3,-146.8],"elR":[49.1,-142.6],"haR":[42.9,-142.2],"shL":[-64.1,-148.1],"elL":[-61,-153.8],"haL":[-62.8,-158],"hipR":[26.4,8.7],"knR":[33.8,116.9],"ftR":[34.8,242],"hipL":[-26.9,7],"knL":[-17.9,129.9],"ftL":[-6.6,252.4]},{"rootY":2.9,"hips":[0,0],"chest":[-7.2,-98.2],"neck":[-12.7,-165.9],"head":[-15.5,-202.2],"shR":[41.1,-146.7],"elR":[47.5,-142.4],"haR":[40,-142.1],"shL":[-64.2,-148.2],"elL":[-59.3,-153.5],"haL":[-59.5,-157.2],"hipR":[26.5,8.6],"knR":[33.5,116.8],"ftR":[34.4,242.2],"hipL":[-26.9,7.1],"knL":[-18.3,129.9],"ftL":[-7,252.2]},{"rootY":3.1,"hips":[0,0],"chest":[-6.7,-98.3],"neck":[-12.6,-166],"head":[-16.3,-202.2],"shR":[41.2,-146.6],"elR":[46.4,-142.8],"haR":[37.6,-143],"shL":[-63.9,-148.5],"elL":[-57.6,-153],"haL":[-56.7,-155.8],"hipR":[26.5,8.6],"knR":[33.2,117],"ftR":[34,242],"hipL":[-27,7],"knL":[-18.6,129.9],"ftL":[-7.4,252]},{"rootY":3.3,"hips":[0,0],"chest":[-6.2,-98.3],"neck":[-12.4,-166.1],"head":[-17.3,-202.1],"shR":[41.4,-146.7],"elR":[45.7,-143.6],"haR":[35.5,-144.6],"shL":[-63.6,-148.7],"elL":[-56.1,-151.9],"haL":[-54.7,-153.6],"hipR":[26.5,8.6],"knR":[32.7,117.2],"ftR":[33.6,241.7],"hipL":[-27,7],"knL":[-19.2,130],"ftL":[-8.1,251.7]},{"rootY":3.5,"hips":[0,0],"chest":[-5.6,-98.3],"neck":[-12.3,-166.1],"head":[-18.5,-201.9],"shR":[41.5,-146.9],"elR":[45.1,-144.7],"haR":[33.5,-146.7],"shL":[-63.4,-148.6],"elL":[-54.8,-150.4],"haL":[-53.4,-150.4],"hipR":[26.6,8.6],"knR":[32,117.6],"ftR":[32.9,241.5],"hipL":[-27,7.1],"knL":[-19.9,130],"ftL":[-9,251.5]},{"rootY":3.8,"hips":[0,0],"chest":[-4.8,-98.4],"neck":[-12,-166.1],"head":[-19.7,-201.6],"shR":[41.8,-147.3],"elR":[44.8,-146.3],"haR":[31.9,-149.4],"shL":[-63.1,-148.3],"elL":[-53.7,-148.4],"haL":[-52.5,-146.8],"hipR":[26.6,8.6],"knR":[31.3,118.1],"ftR":[32.4,241.6],"hipL":[-27,7],"knL":[-20.4,130],"ftL":[-10,251.3]},{"rootY":4.1,"hips":[0,0],"chest":[-3.8,-98.5],"neck":[-11.4,-166.3],"head":[-20.6,-201.4],"shR":[42.3,-147.7],"elR":[44.6,-148.2],"haR":[30.8,-152.6],"shL":[-62.5,-147.6],"elL":[-52.7,-146.2],"haL":[-51.9,-142.9],"hipR":[26.5,8.8],"knR":[30.7,118.7],"ftR":[31.9,242.1],"hipL":[-27.1,6.9],"knL":[-20.8,129.8],"ftL":[-10.9,251]},{"rootY":4.5,"hips":[0,0],"chest":[-2.7,-98.6],"neck":[-10.7,-166.4],"head":[-21.5,-201.1],"shR":[43.1,-147.8],"elR":[44.6,-150.2],"haR":[29.9,-155.9],"shL":[-61.8,-146.6],"elL":[-51.9,-143.9],"haL":[-51.6,-139.2],"hipR":[26.5,8.9],"knR":[30.2,119.3],"ftR":[31.5,242.8],"hipL":[-27.1,6.7],"knL":[-21.2,129.5],"ftL":[-12,250.7]},{"rootY":5,"hips":[0,0],"chest":[-1.5,-98.7],"neck":[-9.9,-166.5],"head":[-22.3,-200.6],"shR":[44,-147.9],"elR":[44.8,-151.9],"haR":[29.1,-159.2],"shL":[-61,-145.9],"elL":[-51.2,-141.9],"haL":[-51.6,-135.8],"hipR":[26.4,9.1],"knR":[29.4,119.9],"ftR":[30.7,243.9],"hipL":[-27.1,6.6],"knL":[-21.7,129.1],"ftL":[-13.3,250.2]},{"rootY":5.5,"hips":[0,0],"chest":[-0.3,-98.8],"neck":[-8.9,-166.6],"head":[-23,-200.1],"shR":[45,-147.9],"elR":[45.2,-153.5],"haR":[28.7,-162.2],"shL":[-60.1,-145.5],"elL":[-50.5,-140.2],"haL":[-51.7,-132.8],"hipR":[26.4,9.2],"knR":[28.5,120.9],"ftR":[29.2,245.5],"hipL":[-27.2,6.4],"knL":[-22.3,128.7],"ftL":[-14.8,249.5]},{"rootY":5.9,"hips":[0,0],"chest":[1,-99],"neck":[-7.8,-166.8],"head":[-23.6,-199.5],"shR":[46.1,-147.6],"elR":[45.7,-154.7],"haR":[28.4,-164.9],"shL":[-59,-144.9],"elL":[-49.9,-138.7],"haL":[-51.9,-130.4],"hipR":[26.4,9.2],"knR":[27.5,122.3],"ftR":[27,247.2],"hipL":[-27.1,6.5],"knL":[-23.2,128.5],"ftL":[-16.7,248.8]},{"rootY":6,"hips":[0,0],"chest":[2.2,-99],"neck":[-6.5,-166.9],"head":[-24.2,-198.6],"shR":[47.3,-146.6],"elR":[46.3,-155.4],"haR":[28.3,-167],"shL":[-57.9,-144],"elL":[-49.4,-137.1],"haL":[-52.2,-128.3],"hipR":[26.5,8.8],"knR":[26.3,123.6],"ftR":[24.6,248.6],"hipL":[-27.1,6.8],"knL":[-24.4,128.6],"ftL":[-18.9,248.2]},{"rootY":5.9,"hips":[0,0],"chest":[3.6,-99],"neck":[-4.9,-166.9],"head":[-24.4,-197.4],"shR":[48.8,-146.1],"elR":[47.3,-156],"haR":[28.7,-168.8],"shL":[-56.3,-143],"elL":[-48.7,-135.7],"haL":[-52.3,-126.6],"hipR":[26.6,8.6],"knR":[25.1,124.2],"ftR":[22.3,249.3],"hipL":[-27,7.1],"knL":[-25.6,128.6],"ftL":[-21.2,247.2]},{"rootY":5.8,"hips":[0,0],"chest":[5.7,-99],"neck":[-2.7,-167],"head":[-23.8,-196.3],"shR":[50.8,-146.8],"elR":[49,-157.4],"haR":[30.2,-170.9],"shL":[-54.2,-142.7],"elL":[-47.5,-134.9],"haL":[-51.9,-125.4],"hipR":[26.5,8.8],"knR":[23.7,124.2],"ftR":[20.6,249.4],"hipL":[-27.1,6.8],"knL":[-26.7,128],"ftL":[-23.2,245.7]},{"rootY":5.8,"hips":[0,0],"chest":[8.1,-99],"neck":[-0.5,-167.1],"head":[-22.6,-195.5],"shR":[53,-148.4],"elR":[51.1,-159.7],"haR":[32.4,-173.5],"shL":[-51.8,-143],"elL":[-46,-134.5],"haL":[-51.1,-124.4],"hipR":[26.3,9.5],"knR":[22.1,124.1],"ftR":[19.3,249.4],"hipL":[-27.2,6.1],"knL":[-27.8,127.2],"ftL":[-24.8,243.8]},{"rootY":5.7,"hips":[0,0],"chest":[10.1,-98.9],"neck":[1.2,-167.1],"head":[-21.3,-195],"shR":[54.4,-149.6],"elR":[52.8,-162.3],"haR":[34.4,-176.6],"shL":[-50,-143.2],"elL":[-44.9,-134.1],"haL":[-50.3,-123.4],"hipR":[26.1,10],"knR":[20,124.5],"ftR":[17.8,249.5],"hipL":[-27.3,5.5],"knL":[-29.5,126.6],"ftL":[-26.7,242.1]},{"rootY":5.5,"hips":[0,0],"chest":[11.3,-98.9],"neck":[2.2,-167.1],"head":[-20.1,-195],"shR":[55.2,-150],"elR":[54,-164.4],"haR":[36,-179.8],"shL":[-49.1,-143.1],"elL":[-44.5,-133.7],"haL":[-49.9,-122.7],"hipR":[26,10],"knR":[17.7,125.2],"ftR":[16,249.7],"hipL":[-27.2,5.5],"knL":[-31.5,126.5],"ftL":[-28.9,240.7]},{"rootY":5.4,"hips":[0,0],"chest":[11.6,-98.9],"neck":[2.9,-167.2],"head":[-18.7,-195.4],"shR":[55.5,-149.8],"elR":[54.8,-165.8],"haR":[37,-182.7],"shL":[-48.6,-143.5],"elL":[-44.5,-133.6],"haL":[-50.1,-122.2],"hipR":[26.1,9.8],"knR":[16,125.8],"ftR":[13.8,249.9],"hipL":[-27.1,5.8],"knL":[-33.4,126.7],"ftL":[-31,239.1]},{"rootY":5.4,"hips":[0,0],"chest":[11.8,-98.9],"neck":[3.7,-167.4],"head":[-16.9,-196.1],"shR":[55.9,-149.7],"elR":[55.6,-166.8],"haR":[37.8,-184.8],"shL":[-48,-144.4],"elL":[-44.4,-134],"haL":[-50.4,-122.1],"hipR":[26.1,9.6],"knR":[15.2,126.5],"ftR":[11.9,250.2],"hipL":[-27,5.9],"knL":[-35.1,126.8],"ftL":[-32.8,237.1]},{"rootY":5.4,"hips":[0,0],"chest":[12.1,-98.8],"neck":[4.5,-167.5],"head":[-14.8,-196.9],"shR":[56.4,-149.9],"elR":[56,-167.4],"haR":[38.1,-185.9],"shL":[-47.3,-145.1],"elL":[-44.1,-134.5],"haL":[-50.7,-122.3],"hipR":[26.1,9.7],"knR":[14.9,127.3],"ftR":[10.4,250.6],"hipL":[-27.1,5.9],"knL":[-37.4,127.1],"ftL":[-34.6,234.2]},{"rootY":5.4,"hips":[0,0],"chest":[12.2,-98.8],"neck":[4.9,-167.6],"head":[-13,-197.9],"shR":[56.8,-150.2],"elR":[55.7,-167.9],"haR":[37.6,-186.2],"shL":[-46.9,-145.2],"elL":[-44,-134.8],"haL":[-51,-122.9],"hipR":[26.1,9.7],"knR":[14.4,128],"ftR":[9,250.7],"hipL":[-27.1,5.9],"knL":[-40.7,127.5],"ftL":[-36.9,230.5]},{"rootY":5.5,"hips":[0,0],"chest":[12.1,-98.8],"neck":[4.6,-167.6],"head":[-11.5,-198.9],"shR":[56.7,-150.8],"elR":[54.6,-168.2],"haR":[36.5,-185.9],"shL":[-47.1,-144.7],"elL":[-44.3,-135],"haL":[-51.3,-123.7],"hipR":[26.1,9.6],"knR":[13.6,128.3],"ftR":[7.7,250.5],"hipL":[-27.1,6],"knL":[-44.7,127.7],"ftL":[-39.5,226.6]},{"rootY":5.6,"hips":[0,0],"chest":[11.9,-98.8],"neck":[4.3,-167.6],"head":[-10.4,-199.6],"shR":[56.4,-151.3],"elR":[53.2,-168.2],"haR":[35.2,-185.1],"shL":[-47.3,-144.2],"elL":[-44.8,-135],"haL":[-51.6,-124.2],"hipR":[26.2,9.5],"knR":[12.8,128.6],"ftR":[6.8,250.2],"hipL":[-27.1,6.1],"knL":[-48.7,127.3],"ftL":[-42,223.8]},{"rootY":5.4,"hips":[0,0],"chest":[11.9,-98.6],"neck":[4.2,-167.4],"head":[-9.5,-199.9],"shR":[56.4,-151.6],"elR":[52,-167.7],"haR":[33.8,-183.6],"shL":[-47.2,-143.8],"elL":[-45.2,-134.7],"haL":[-51.7,-124.2],"hipR":[26.2,9.6],"knR":[12.8,129],"ftR":[6.3,250],"hipL":[-27.1,6],"knL":[-52.2,126.6],"ftL":[-44.8,223.8]},{"rootY":5.1,"hips":[0,0],"chest":[12,-98.5],"neck":[4.3,-167.2],"head":[-8.9,-200],"shR":[56.5,-152],"elR":[51,-166.9],"haR":[32.6,-181.3],"shL":[-47.1,-143.6],"elL":[-45.4,-134.4],"haL":[-51.8,-123.8],"hipR":[26.2,9.6],"knR":[13.5,129.6],"ftR":[6.2,250],"hipL":[-27.2,6],"knL":[-55.5,125.6],"ftL":[-49,226.5]},{"rootY":4.8,"hips":[0,0],"chest":[12,-98.3],"neck":[4.4,-167.1],"head":[-8.6,-199.9],"shR":[56.6,-152.3],"elR":[50.2,-165.7],"haR":[31.4,-178.8],"shL":[-47,-143.6],"elL":[-45.5,-134.2],"haL":[-51.9,-123.5],"hipR":[26.2,9.7],"knR":[14.4,130.2],"ftR":[5.9,250.2],"hipL":[-27.2,5.9],"knL":[-58.5,124.5],"ftL":[-54.8,230.6]},{"rootY":4.7,"hips":[0,0],"chest":[11.9,-98.2],"neck":[4.3,-167],"head":[-8.5,-199.8],"shR":[56.6,-152.6],"elR":[49.7,-164.7],"haR":[30.7,-176.5],"shL":[-46.9,-143.7],"elL":[-45.5,-134.1],"haL":[-51.9,-123.4],"hipR":[26.2,9.8],"knR":[15,130.8],"ftR":[5.5,250.2],"hipL":[-27.3,5.8],"knL":[-60.9,123.3],"ftL":[-61.6,234.6]},{"rootY":4.9,"hips":[0,0],"chest":[12,-98.1],"neck":[4.4,-166.8],"head":[-8.4,-199.7],"shR":[56.7,-152.8],"elR":[49.5,-163.8],"haR":[30.4,-174.4],"shL":[-46.8,-143.7],"elL":[-45.3,-134.2],"haL":[-51.8,-123.4],"hipR":[26.1,10],"knR":[15.4,131.1],"ftR":[5.6,249.9],"hipL":[-27.4,5.6],"knL":[-62.2,122.1],"ftL":[-68.7,237.8]},{"rootY":5.3,"hips":[0,0],"chest":[12.3,-98],"neck":[4.8,-166.7],"head":[-8,-199.6],"shR":[57.1,-152.9],"elR":[49.7,-162.9],"haR":[30.7,-172.7],"shL":[-46.4,-143.6],"elL":[-44.9,-134.1],"haL":[-51.6,-123.5],"hipR":[26,10.1],"knR":[15.9,131.4],"ftR":[6.1,249.4],"hipL":[-27.4,5.4],"knL":[-62.5,121],"ftL":[-75.4,240.1]},{"rootY":5.9,"hips":[0,0],"chest":[12.6,-97.9],"neck":[5.3,-166.6],"head":[-7.5,-199.6],"shR":[57.6,-152.8],"elR":[50.3,-162],"haR":[31.5,-171.1],"shL":[-45.9,-143.4],"elL":[-44.3,-134],"haL":[-51.1,-123.4],"hipR":[25.9,10.3],"knR":[16.5,131.7],"ftR":[6.9,248.7],"hipL":[-27.4,5.3],"knL":[-62.1,120.1],"ftL":[-81,241.4]},{"rootY":6.4,"hips":[0,0],"chest":[12.9,-97.8],"neck":[5.9,-166.5],"head":[-6.8,-199.6],"shR":[58.2,-152.4],"elR":[51.2,-161],"haR":[32.7,-169.6],"shL":[-45.3,-143.2],"elL":[-43.6,-133.8],"haL":[-50.5,-123],"hipR":[25.9,10.4],"knR":[17.4,132.1],"ftR":[8.1,248.2],"hipL":[-27.4,5.1],"knL":[-61.2,119.4],"ftL":[-84.7,241.8]},{"rootY":6.7,"hips":[0,0],"chest":[13.2,-97.6],"neck":[6.6,-166.4],"head":[-5.9,-199.6],"shR":[58.9,-152.1],"elR":[52.4,-160],"haR":[34.4,-168],"shL":[-44.7,-143.2],"elL":[-42.9,-133.5],"haL":[-49.8,-122.5],"hipR":[25.8,10.5],"knR":[18.5,132.5],"ftR":[9.6,247.8],"hipL":[-27.4,5.1],"knL":[-59.8,118.9],"ftL":[-86.4,241.4]},{"rootY":6.9,"hips":[0,0],"chest":[13.4,-97.5],"neck":[7.2,-166.3],"head":[-4.9,-199.7],"shR":[59.7,-151.8],"elR":[53.5,-159.1],"haR":[36.2,-166.6],"shL":[-44.1,-143.2],"elL":[-42.1,-133.2],"haL":[-48.9,-122],"hipR":[25.8,10.5],"knR":[19.8,132.9],"ftR":[11.5,247.4],"hipL":[-27.4,5],"knL":[-58.2,118.3],"ftL":[-86.1,240.2]},{"rootY":7.1,"hips":[0,0],"chest":[13.5,-97.4],"neck":[7.7,-166.2],"head":[-3.9,-199.9],"shR":[60.2,-151.7],"elR":[54.6,-158.3],"haR":[38.2,-165.3],"shL":[-43.7,-143.1],"elL":[-41.4,-133.2],"haL":[-47.9,-122],"hipR":[25.8,10.5],"knR":[21.2,133.2],"ftR":[13.6,246.9],"hipL":[-27.4,5.1],"knL":[-56.3,117.6],"ftL":[-83.7,238.7]},{"rootY":7.3,"hips":[0,0],"chest":[13.2,-97.3],"neck":[7.7,-166.2],"head":[-3,-200.3],"shR":[60.3,-151.7],"elR":[55.5,-157.8],"haR":[39.9,-164.2],"shL":[-43.7,-142.7],"elL":[-41,-133.4],"haL":[-47.1,-122.6],"hipR":[25.7,10.4],"knR":[22.8,133.3],"ftR":[15.8,246.4],"hipL":[-27.3,5.2],"knL":[-54.1,117.1],"ftL":[-79.8,237.6]},{"rootY":7.5,"hips":[0,0],"chest":[12.5,-97.4],"neck":[7.1,-166.3],"head":[-2.3,-200.9],"shR":[59.8,-151.7],"elR":[56,-157.4],"haR":[41.4,-163.2],"shL":[-44.3,-142.2],"elL":[-41.2,-133.9],"haL":[-46.6,-124],"hipR":[25.7,10.2],"knR":[24.6,133.3],"ftR":[18.1,245.7],"hipL":[-27.2,5.4],"knL":[-51.5,116.9],"ftL":[-75.1,236.9]},{"rootY":7.9,"hips":[0,0],"chest":[11.3,-97.4],"neck":[6.1,-166.5],"head":[-1.6,-201.5],"shR":[58.9,-151.5],"elR":[56.1,-157],"haR":[42.6,-162.5],"shL":[-45.2,-141.9],"elL":[-42,-134.9],"haL":[-46.6,-126.2],"hipR":[25.8,9.9],"knR":[26.3,133.1],"ftR":[20.5,244.8],"hipL":[-27.1,5.7],"knL":[-48.4,117.2],"ftL":[-69.8,236.7]},{"rootY":8.5,"hips":[0,0],"chest":[10,-97.5],"neck":[5,-166.7],"head":[-0.9,-202],"shR":[58.1,-151.2],"elR":[55.9,-156.6],"haR":[43.4,-162],"shL":[-46.3,-141.9],"elL":[-43.1,-136.5],"haL":[-47,-129.3],"hipR":[25.8,9.6],"knR":[28,132.8],"ftR":[23.2,243.4],"hipL":[-27,6],"knL":[-44.9,117.9],"ftL":[-63.2,237.3]},{"rootY":9.3,"hips":[0,0],"chest":[8.7,-97.5],"neck":[4.3,-166.8],"head":[-0.1,-202.4],"shR":[57.5,-150.7],"elR":[55.9,-156.1],"haR":[44.1,-161.5],"shL":[-47.1,-142.2],"elL":[-43.8,-138.3],"haL":[-47.3,-132.9],"hipR":[25.9,9.4],"knR":[30.1,132.3],"ftR":[26.3,241.6],"hipL":[-26.9,6.2],"knL":[-40.8,119.5],"ftL":[-55.3,239.2]},{"rootY":10,"hips":[0,0],"chest":[7.6,-97.4],"neck":[3.8,-166.8],"head":[1,-202.6],"shR":[57.2,-149.6],"elR":[56.2,-155.2],"haR":[45.1,-160.8],"shL":[-47.6,-142.2],"elL":[-44.1,-140.4],"haL":[-47.4,-136.8],"hipR":[25.8,9.4],"knR":[32.8,131.9],"ftR":[30.2,239.6],"hipL":[-26.8,6.2],"knL":[-36.7,121.5],"ftL":[-47.4,241.5]},{"rootY":10.5,"hips":[0,0],"chest":[6.8,-97],"neck":[3.4,-166.5],"head":[2.1,-202.3],"shR":[56.9,-147.4],"elR":[56.8,-153.6],"haR":[46.6,-160],"shL":[-48,-141.6],"elL":[-44,-142.3],"haL":[-46.9,-141],"hipR":[25.4,10],"knR":[36,131.8],"ftR":[34.9,237.3],"hipL":[-26.8,5.6],"knL":[-33.6,122.9],"ftL":[-41,243.4]},{"rootY":10.4,"hips":[0,0],"chest":[6.3,-96.1],"neck":[2.6,-165.7],"head":[3.3,-201.5],"shR":[56.5,-144.9],"elR":[57.5,-151.7],"haR":[48.4,-158.7],"shL":[-48.4,-140.4],"elL":[-43.7,-143.7],"haL":[-45.8,-145],"hipR":[25,11.2],"knR":[39.2,132.1],"ftR":[39.9,234.5],"hipL":[-26.9,4.3],"knL":[-31.3,123],"ftL":[-36.3,244.5]},{"rootY":9.5,"hips":[0,0],"chest":[6.2,-94.9],"neck":[1.2,-164.6],"head":[4.3,-200.2],"shR":[55.6,-143.9],"elR":[58.1,-149.8],"haR":[49.8,-156.2],"shL":[-49.2,-138.8],"elL":[-43.7,-144.7],"haL":[-44.6,-148.2],"hipR":[24.5,12.4],"knR":[41.9,132.3],"ftR":[44.9,231.2],"hipL":[-27,3],"knL":[-28.9,122.8],"ftL":[-32.1,245.6]},{"rootY":8,"hips":[0,0],"chest":[5.4,-93.9],"neck":[-1,-163.6],"head":[4.6,-199],"shR":[53.9,-144.6],"elR":[57.9,-148.3],"haR":[50.6,-152.7],"shL":[-50.9,-137.4],"elL":[-44.4,-145.5],"haL":[-44,-151],"hipR":[24.2,13],"knR":[44.3,132.4],"ftR":[49.1,227.5],"hipL":[-27,2.4],"knL":[-26.9,123.3],"ftL":[-28.1,247.2]},{"rootY":6.6,"hips":[0,0],"chest":[3.6,-93.2],"neck":[-3.5,-162.9],"head":[4.3,-197.8],"shR":[51.6,-145.5],"elR":[56.7,-147],"haR":[50.9,-149.3],"shL":[-53.2,-136.7],"elL":[-45.8,-146.7],"haL":[-44.1,-154],"hipR":[24,13.1],"knR":[47,132.8],"ftR":[51.7,222.7],"hipL":[-26.8,2.2],"knL":[-25.6,124.2],"ftL":[-24.9,248.6]},{"rootY":6.3,"hips":[0,0],"chest":[1.5,-92.8],"neck":[-5.7,-162.5],"head":[3.5,-197],"shR":[49.5,-145.3],"elR":[55.4,-146],"haR":[51,-147.3],"shL":[-55.3,-136.9],"elL":[-47,-149],"haL":[-44.5,-158.2],"hipR":[23.7,13.5],"knR":[50.3,133.5],"ftR":[52.5,216.4],"hipL":[-26.6,1.7],"knL":[-24.7,124.3],"ftL":[-22.5,249]},{"rootY":6.8,"hips":[0,0],"chest":[0,-92.5],"neck":[-7.2,-162.2],"head":[2.3,-196.6],"shR":[48.2,-144.5],"elR":[54.7,-145],"haR":[50.9,-146.2],"shL":[-56.8,-137.5],"elL":[-47.5,-151.7],"haL":[-44.7,-162.8],"hipR":[23.3,14.3],"knR":[53.5,133.7],"ftR":[51.7,209.8],"hipL":[-26.5,0.8],"knL":[-24,123.8],"ftL":[-20.4,248.6]},{"rootY":7.1,"hips":[0,0],"chest":[-1,-92.3],"neck":[-8.5,-161.9],"head":[0.5,-196.5],"shR":[47.1,-144.1],"elR":[54.4,-143.5],"haR":[50.3,-144.1],"shL":[-57.9,-137.3],"elL":[-47.5,-153.4],"haL":[-44.4,-166.2],"hipR":[23.1,14.7],"knR":[55.4,132.9],"ftR":[49.7,205.5],"hipL":[-26.5,0.3],"knL":[-23.6,123.4],"ftL":[-18.7,248.3]},{"rootY":6.8,"hips":[0,0],"chest":[-1.9,-92.1],"neck":[-9.8,-161.7],"head":[-1.7,-196.7],"shR":[45.9,-144.5],"elR":[53.9,-141.7],"haR":[49.5,-140.7],"shL":[-59,-136.4],"elL":[-47.3,-153.8],"haL":[-43.3,-167.8],"hipR":[23.2,14.5],"knR":[55.9,131.1],"ftR":[47.1,205.4],"hipL":[-26.6,0.4],"knL":[-23.3,123.6],"ftL":[-17.8,248.6]},{"rootY":6.2,"hips":[0,0],"chest":[-2.8,-92.2],"neck":[-11.1,-161.7],"head":[-4.2,-197],"shR":[44.7,-145.1],"elR":[53,-140],"haR":[48.8,-137],"shL":[-60.2,-135.5],"elL":[-46.9,-153.5],"haL":[-41.1,-167.9],"hipR":[23.5,14.2],"knR":[55.5,128.7],"ftR":[45.4,209.5],"hipL":[-26.7,0.9],"knL":[-22.8,124],"ftL":[-17.6,249.2]},{"rootY":5.8,"hips":[0,0],"chest":[-3.7,-92.4],"neck":[-12.3,-161.8],"head":[-6.6,-197.4],"shR":[43.4,-145.5],"elR":[51.6,-138.7],"haR":[48.1,-134.1],"shL":[-61.4,-135],"elL":[-46.1,-153.1],"haL":[-38.1,-167.7],"hipR":[23.8,13.9],"knR":[54.4,125.9],"ftR":[45.6,216.6],"hipL":[-26.8,1.2],"knL":[-22.3,124.3],"ftL":[-17.6,249.6]},{"rootY":5.5,"hips":[0,0],"chest":[-4.5,-92.5],"neck":[-13.3,-161.8],"head":[-8.7,-197.6],"shR":[42.3,-145.5],"elR":[50.2,-137.6],"haR":[47,-131.6],"shL":[-62.4,-134.7],"elL":[-45,-152.6],"haL":[-35.1,-167.2],"hipR":[24,13.6],"knR":[53,123.3],"ftR":[47.8,225.3],"hipL":[-26.9,1.6],"knL":[-22.1,124.7],"ftL":[-17.7,249.9]},{"rootY":5.3,"hips":[0,0],"chest":[-4.9,-92.5],"neck":[-13.9,-161.8],"head":[-10.1,-197.7],"shR":[41.6,-145.4],"elR":[49.3,-136.3],"haR":[46,-129.2],"shL":[-63,-134.6],"elL":[-43.7,-152.1],"haL":[-32.2,-166.4],"hipR":[24.2,13.3],"knR":[52.4,121.2],"ftR":[50.9,234.4],"hipL":[-27,1.8],"knL":[-22.1,124.9],"ftL":[-17.7,250.1]},{"rootY":5.3,"hips":[0,0],"chest":[-4.7,-92.5],"neck":[-13.8,-161.7],"head":[-10.7,-197.8],"shR":[41.6,-145.2],"elR":[49.1,-134.9],"haR":[45.3,-126.8],"shL":[-63,-134.6],"elL":[-42.3,-151.5],"haL":[-29.8,-165.2],"hipR":[24.4,13.2],"knR":[52.9,120.2],"ftR":[54.5,241.5],"hipL":[-27.1,2],"knL":[-22.4,125.1],"ftL":[-17.8,250.2]},{"rootY":5.3,"hips":[0,0],"chest":[-4.1,-92.6],"neck":[-13.3,-161.8],"head":[-10.5,-197.9],"shR":[42,-144.9],"elR":[49.2,-133.4],"haR":[44.9,-124.6],"shL":[-62.7,-134.5],"elL":[-41.2,-150.7],"haL":[-28,-163.7],"hipR":[24.5,13.1],"knR":[53.7,119.9],"ftR":[58.5,244.9],"hipL":[-27.2,2.1],"knL":[-22.6,125.1],"ftL":[-18,250.3]},{"rootY":5.2,"hips":[0,0],"chest":[-3.4,-92.8],"neck":[-12.4,-161.9],"head":[-9.7,-198.1],"shR":[42.5,-144.1],"elR":[48.9,-132],"haR":[44,-122.6],"shL":[-62.1,-134.6],"elL":[-40.6,-149.8],"haL":[-27.2,-162],"hipR":[24.6,12.9],"knR":[53.1,120.5],"ftR":[62.9,244.6],"hipL":[-27.3,2.3],"knL":[-22.8,125.3],"ftL":[-18.4,250.3]},{"rootY":5.3,"hips":[0,0],"chest":[-2.9,-92.9],"neck":[-11.3,-162.1],"head":[-8.8,-198.2],"shR":[43.2,-143.3],"elR":[48.3,-130.8],"haR":[42.3,-121],"shL":[-61.5,-135.2],"elL":[-40.4,-149.1],"haL":[-27.4,-160.2],"hipR":[24.7,12.9],"knR":[51,121.7],"ftR":[66.8,241.5],"hipL":[-27.4,2.4],"knL":[-23.3,125.3],"ftL":[-19.4,250.3]},{"rootY":5.6,"hips":[0,0],"chest":[-2.3,-92.9],"neck":[-9.9,-162.2],"head":[-7.8,-198.4],"shR":[44.1,-142.8],"elR":[47.6,-129.9],"haR":[40.2,-120],"shL":[-60.8,-136.6],"elL":[-40.5,-148.9],"haL":[-28.4,-158.7],"hipR":[24.7,12.9],"knR":[49.3,122.1],"ftR":[69.9,237.4],"hipL":[-27.5,2.3],"knL":[-23.9,125.2],"ftL":[-20.8,250]},{"rootY":5.8,"hips":[0,0],"chest":[-1.6,-92.8],"neck":[-8.5,-162.3],"head":[-6.8,-198.5],"shR":[45,-142.4],"elR":[47,-129.1],"haR":[38.2,-119.2],"shL":[-60,-137.7],"elL":[-40.6,-148.7],"haL":[-29.8,-157.3],"hipR":[24.8,12.8],"knR":[49.6,121.1],"ftR":[72.5,234.2],"hipL":[-27.6,2.4],"knL":[-24.8,125.3],"ftL":[-22.6,249.8]},{"rootY":5.8,"hips":[0,0],"chest":[-1.1,-92.7],"neck":[-7.2,-162.2],"head":[-5.8,-198.5],"shR":[45.8,-141.8],"elR":[46.5,-128.5],"haR":[36.3,-118.8],"shL":[-59.2,-138.2],"elL":[-40.7,-148.4],"haL":[-31.3,-156.2],"hipR":[25,12.4],"knR":[51.3,118.9],"ftR":[74.6,232.5],"hipL":[-27.7,2.8],"knL":[-25.8,125.5],"ftL":[-24.7,249.7]},{"rootY":5.9,"hips":[0,0],"chest":[-0.8,-92.3],"neck":[-6.3,-161.9],"head":[-5.2,-198.2],"shR":[46.3,-141],"elR":[45.9,-128.1],"haR":[34.4,-119],"shL":[-58.7,-138.8],"elL":[-41.1,-148.3],"haL":[-32.8,-155.5],"hipR":[25.2,12],"knR":[52.8,116.4],"ftR":[75.5,232.3],"hipL":[-27.6,3.2],"knL":[-27.2,125.7],"ftL":[-27.3,249.6]},{"rootY":6.2,"hips":[0,0],"chest":[-0.5,-92.1],"neck":[-5.7,-161.7],"head":[-4.9,-198],"shR":[46.6,-140.2],"elR":[45.1,-128.1],"haR":[32.5,-119.9],"shL":[-58.4,-139.9],"elL":[-41.8,-148.7],"haL":[-34.4,-155.3],"hipR":[25.4,11.6],"knR":[53,113.9],"ftR":[74.8,232.8],"hipL":[-27.6,3.7],"knL":[-28.9,125.7],"ftL":[-30.6,249.2]},{"rootY":6.9,"hips":[0,0],"chest":[-0.1,-91.9],"neck":[-5.2,-161.6],"head":[-4.8,-197.9],"shR":[46.8,-139.6],"elR":[44.4,-128.6],"haR":[30.9,-121.6],"shL":[-58.1,-140.8],"elL":[-42.5,-149.3],"haL":[-36,-155.6],"hipR":[25.5,11.3],"knR":[51.4,111.6],"ftR":[72.9,233.2],"hipL":[-27.6,4],"knL":[-30.9,125.4],"ftL":[-34.5,248.4]},{"rootY":8.3,"hips":[0,0],"chest":[0.5,-91.7],"neck":[-4.7,-161.5],"head":[-4.9,-197.7],"shR":[47.3,-139.3],"elR":[44.1,-129.8],"haR":[29.7,-124.1],"shL":[-57.6,-140.9],"elL":[-43.1,-149.9],"haL":[-37.7,-156.6],"hipR":[25.6,11.2],"knR":[48.2,110.6],"ftR":[70.1,233.7],"hipL":[-27.6,4.1],"knL":[-33.1,124.7],"ftL":[-38.9,247]},{"rootY":10.3,"hips":[0,0],"chest":[1.6,-91.5],"neck":[-4,-161.2],"head":[-5.1,-197.4],"shR":[47.9,-139.2],"elR":[44.2,-131.5],"haR":[29,-127.5],"shL":[-56.9,-140.4],"elL":[-43.4,-150.5],"haL":[-39,-158.1],"hipR":[25.5,11.3],"knR":[44.3,111.8],"ftR":[66.3,235.2],"hipL":[-27.6,4.1],"knL":[-35.5,123.7],"ftL":[-43.7,244.9]},{"rootY":12.9,"hips":[0,0],"chest":[2.9,-91.4],"neck":[-3.5,-161.1],"head":[-5.6,-197.2],"shR":[48.6,-139.1],"elR":[44.4,-133.8],"haR":[28.4,-132.4],"shL":[-56.2,-139.7],"elL":[-43.9,-150.9],"haL":[-40.3,-159.6],"hipR":[25.5,11.3],"knR":[39.3,113.9],"ftR":[60.9,236.8],"hipL":[-27.6,4],"knL":[-38.2,122.8],"ftL":[-49.2,242.2]},{"rootY":16,"hips":[0,0],"chest":[3.7,-91.6],"neck":[-3.4,-161.4],"head":[-6.8,-197.2],"shR":[48.7,-138.9],"elR":[44.1,-136.9],"haR":[26.7,-139.3],"shL":[-55.9,-138.3],"elL":[-44.8,-150.6],"haL":[-42.3,-160],"hipR":[25.6,11.1],"knR":[32.3,115],"ftR":[54,236.6],"hipL":[-27.6,4.3],"knL":[-41.5,122.3],"ftL":[-55.7,238.9]},{"rootY":18.6,"hips":[0,0],"chest":[3.3,-92],"neck":[-4.2,-161.7],"head":[-8.8,-197.2],"shR":[47.9,-138.7],"elR":[43.2,-140.8],"haR":[23.4,-148.5],"shL":[-56.3,-135.9],"elL":[-46.2,-148.3],"haL":[-44.8,-157.3],"hipR":[26,10.2],"knR":[23.7,114.6],"ftR":[46.2,234.6],"hipL":[-27.4,5.3],"knL":[-45.1,122.6],"ftL":[-62.9,235.3]},{"rootY":19.5,"hips":[0,0],"chest":[1.7,-92.2],"neck":[-5.8,-161.9],"head":[-10.9,-197.2],"shR":[46.2,-138.7],"elR":[41.9,-145.2],"haR":[19.3,-158.8],"shL":[-57.3,-133.3],"elL":[-47.4,-143.8],"haL":[-46.2,-150.5],"hipR":[26.5,8.9],"knR":[16.3,114.6],"ftR":[38.6,233.3],"hipL":[-27.1,6.6],"knL":[-48.3,123.9],"ftL":[-69.5,231.7]},{"rootY":18.2,"hips":[0,0],"chest":[-0.4,-92.5],"neck":[-8,-162.2],"head":[-12.4,-197.5],"shR":[44.2,-139.5],"elR":[40.9,-150],"haR":[15.4,-169.3],"shL":[-59,-132],"elL":[-47.9,-138.1],"haL":[-45.5,-140.8],"hipR":[26.9,7.6],"knR":[12,115.9],"ftR":[31.7,234.6],"hipL":[-26.7,8],"knL":[-51.1,126.3],"ftL":[-73.8,227.8]},{"rootY":15.7,"hips":[0,0],"chest":[-2.4,-93.2],"neck":[-10.2,-162.8],"head":[-13.1,-198.3],"shR":[42.3,-141.2],"elR":[40,-155.3],"haR":[12.3,-179.5],"shL":[-60.9,-132.2],"elL":[-47.9,-133.1],"haL":[-43.5,-131.2],"hipR":[27.1,6.4],"knR":[10.1,117.8],"ftR":[25.7,237.3],"hipL":[-26.4,9.1],"knL":[-54,128.5],"ftL":[-75.1,222.9]},{"rootY":13.4,"hips":[0,0],"chest":[-3.6,-94],"neck":[-11.6,-163.6],"head":[-12.9,-199.2],"shR":[41.3,-143.7],"elR":[39.4,-161],"haR":[10.8,-189],"shL":[-62.3,-133.2],"elL":[-47.6,-129.5],"haL":[-41.3,-123.7],"hipR":[27.3,5.6],"knR":[8.8,119.4],"ftR":[21,239.6],"hipL":[-26,10],"knL":[-56.3,129.4],"ftL":[-73.6,217.2]},{"rootY":11.7,"hips":[0,0],"chest":[-3.9,-94.6],"neck":[-11.8,-164.2],"head":[-11.8,-199.9],"shR":[41.4,-146],"elR":[39.6,-166.3],"haR":[11.1,-196.8],"shL":[-62.6,-134],"elL":[-47.1,-127.1],"haL":[-39.7,-118.3],"hipR":[27.3,5.1],"knR":[8.2,120.6],"ftR":[17.7,241.1],"hipL":[-25.8,10.4],"knL":[-57.1,128.8],"ftL":[-70.2,212]},{"rootY":10.6,"hips":[0,0],"chest":[-3.5,-95],"neck":[-11,-164.7],"head":[-9.9,-200.5],"shR":[42.3,-147.4],"elR":[40.6,-170.2],"haR":[12.6,-202.2],"shL":[-62,-134.5],"elL":[-46.7,-125.2],"haL":[-38.8,-114.4],"hipR":[27.3,5.1],"knR":[8.7,121.6],"ftR":[15.5,242.2],"hipL":[-25.8,10.5],"knL":[-57.2,126.9],"ftL":[-66,209.1]},{"rootY":9.9,"hips":[0,0],"chest":[-2.8,-95.3],"neck":[-9.7,-164.9],"head":[-7.8,-200.8],"shR":[43.4,-147.7],"elR":[42,-172.1],"haR":[14.5,-204.7],"shL":[-61,-135.1],"elL":[-46.6,-123.9],"haL":[-38.8,-111.6],"hipR":[27.3,5.3],"knR":[9.9,122.6],"ftR":[13.8,243],"hipL":[-25.9,10.3],"knL":[-57.3,124.3],"ftL":[-61.9,209.7]},{"rootY":9.3,"hips":[0,0],"chest":[-2.3,-95.4],"neck":[-8.3,-165],"head":[-5.7,-201],"shR":[44.6,-147.3],"elR":[43.5,-171.9],"haR":[16.6,-204.4],"shL":[-60,-135.9],"elL":[-46.7,-123.2],"haL":[-39.7,-109.9],"hipR":[27.3,5.5],"knR":[11.1,123.3],"ftR":[12.4,243.5],"hipL":[-26,10.1],"knL":[-57.6,121.6],"ftL":[-58.7,213.4]},{"rootY":8.8,"hips":[0,0],"chest":[-1.8,-95.4],"neck":[-7.1,-165],"head":[-3.8,-201],"shR":[45.8,-146.9],"elR":[45.4,-170.1],"haR":[18.9,-201.8],"shL":[-59.1,-136.9],"elL":[-46.8,-123.2],"haL":[-40.9,-109.1],"hipR":[27.3,5.6],"knR":[12,124.1],"ftR":[11.3,244],"hipL":[-26.1,10],"knL":[-57.4,119.4],"ftL":[-57.2,219.1]},{"rootY":8.1,"hips":[0,0],"chest":[-1.6,-95.2],"neck":[-6.3,-164.8],"head":[-2.1,-200.7],"shR":[46.6,-146.8],"elR":[47.3,-167.4],"haR":[21.3,-197.2],"shL":[-58.5,-137.6],"elL":[-47,-123.4],"haL":[-41.9,-108.7],"hipR":[27.3,5.7],"knR":[12.9,125.1],"ftR":[10.5,244.7],"hipL":[-26.1,9.8],"knL":[-56.8,117.6],"ftL":[-57.6,225.2]},{"rootY":7.4,"hips":[0,0],"chest":[-1.8,-95],"neck":[-5.9,-164.4],"head":[-0.7,-200.3],"shR":[47,-146.7],"elR":[48.7,-164.3],"haR":[23.5,-191.5],"shL":[-58.3,-138.4],"elL":[-47.3,-123.6],"haL":[-42.5,-108.6],"hipR":[27.3,5.8],"knR":[13.8,126],"ftR":[9.7,245.5],"hipL":[-26.2,9.8],"knL":[-56,116.2],"ftL":[-59.5,230.4]},{"rootY":6.8,"hips":[0,0],"chest":[-2.1,-94.8],"neck":[-5.5,-164.2],"head":[0.6,-200],"shR":[47.3,-146.3],"elR":[49.4,-161],"haR":[25.5,-185.2],"shL":[-58.2,-139.3],"elL":[-47.8,-123.8],"haL":[-43,-108.5],"hipR":[27.3,5.8],"knR":[14.6,126.7],"ftR":[9.2,246.1],"hipL":[-26.2,9.7],"knL":[-55,115],"ftL":[-61.8,234.1]},{"rootY":6.4,"hips":[0,0],"chest":[-2.1,-94.7],"neck":[-4.9,-164.1],"head":[2,-199.8],"shR":[47.8,-145.7],"elR":[49.8,-157.5],"haR":[27.3,-178.6],"shL":[-57.8,-140.2],"elL":[-48,-124.2],"haL":[-43.5,-108.5],"hipR":[27.3,5.9],"knR":[15.2,127.3],"ftR":[9.1,246.5],"hipL":[-26.2,9.7],"knL":[-53.7,113.9],"ftL":[-63.3,236.2]},{"rootY":6.1,"hips":[0,0],"chest":[-1.8,-94.8],"neck":[-4,-164],"head":[3.3,-199.6],"shR":[48.5,-145.2],"elR":[50.3,-154.1],"haR":[28.7,-172],"shL":[-57.1,-140.8],"elL":[-47.8,-124.6],"haL":[-43.7,-108.7],"hipR":[27.3,6],"knR":[16,127.9],"ftR":[9.3,246.7],"hipL":[-26.2,9.5],"knL":[-52.1,113],"ftL":[-63.9,237.1]},{"rootY":6,"hips":[0,0],"chest":[-1.6,-94.8],"neck":[-3.1,-164],"head":[4.4,-199.6],"shR":[49.3,-144.9],"elR":[50.9,-150.9],"haR":[29.7,-165.7],"shL":[-56.2,-141.4],"elL":[-47.4,-125.1],"haL":[-43.8,-109],"hipR":[27.2,6.2],"knR":[16.7,128.4],"ftR":[9.8,246.7],"hipL":[-26.2,9.3],"knL":[-50.5,112.5],"ftL":[-63.9,237.1]},{"rootY":6.1,"hips":[0,0],"chest":[-1.4,-94.9],"neck":[-2.5,-164.1],"head":[5.2,-199.6],"shR":[49.9,-144.7],"elR":[51.3,-148.1],"haR":[30.4,-160.1],"shL":[-55.5,-141.9],"elL":[-46.9,-125.6],"haL":[-43.7,-109.5],"hipR":[27.2,6.3],"knR":[17.4,128.8],"ftR":[10.4,246.5],"hipL":[-26.2,9.2],"knL":[-48.6,112.8],"ftL":[-62.9,236.7]},{"rootY":6.3,"hips":[0,0],"chest":[-1.4,-95.2],"neck":[-2.1,-164.3],"head":[5.8,-199.7],"shR":[50.3,-144.2],"elR":[51.5,-145.4],"haR":[30.8,-155.1],"shL":[-55.1,-142.4],"elL":[-46.6,-126.2],"haL":[-43.5,-109.9],"hipR":[27.2,6.2],"knR":[18.1,129],"ftR":[11,246.3],"hipL":[-26.2,9.3],"knL":[-46.3,113.8],"ftL":[-60.6,236]},{"rootY":6.6,"hips":[0,0],"chest":[-1.7,-95.6],"neck":[-2.1,-164.6],"head":[6,-200],"shR":[50.3,-143.7],"elR":[51.4,-143.1],"haR":[31.1,-150.8],"shL":[-55,-142.8],"elL":[-46.5,-126.7],"haL":[-43.3,-110.4],"hipR":[27.3,6],"knR":[18.9,128.9],"ftR":[11.7,245.9],"hipL":[-26.2,9.6],"knL":[-43.6,115.4],"ftL":[-57.2,235]},{"rootY":7.1,"hips":[0,0],"chest":[-2.2,-95.9],"neck":[-2.5,-164.9],"head":[5.9,-200.2],"shR":[49.9,-143.2],"elR":[51,-140.9],"haR":[31.1,-147],"shL":[-55.3,-143],"elL":[-46.7,-127.3],"haL":[-43.2,-111.6],"hipR":[27.4,5.7],"knR":[19.8,128.5],"ftR":[12.4,245.4],"hipL":[-26.1,9.9],"knL":[-40.5,117.6],"ftL":[-52.5,234.6]},{"rootY":7.7,"hips":[0,0],"chest":[-2.7,-96.2],"neck":[-2.8,-165.2],"head":[5.8,-200.5],"shR":[49.5,-142.6],"elR":[50.7,-138.6],"haR":[30.9,-143.1],"shL":[-55.6,-143],"elL":[-46.9,-128.3],"haL":[-43,-113.5],"hipR":[27.4,5.5],"knR":[20.9,127.9],"ftR":[13.6,244.7],"hipL":[-26,10.1],"knL":[-36.4,120.3],"ftL":[-45.7,235.9]},{"rootY":8.5,"hips":[0,0],"chest":[-3.2,-96.7],"neck":[-3,-165.7],"head":[5.8,-200.9],"shR":[49.3,-141.4],"elR":[50.5,-135.1],"haR":[30.6,-138.2],"shL":[-55.8,-142.5],"elL":[-46.8,-129.6],"haL":[-43.1,-116],"hipR":[27.4,5.6],"knR":[22,127.3],"ftR":[15.1,243.6],"hipL":[-26.1,10],"knL":[-31.5,123.4],"ftL":[-37.1,238.4]},{"rootY":9.4,"hips":[0,0],"chest":[-4,-97.1],"neck":[-3.2,-166.1],"head":[5.8,-201.3],"shR":[49,-139.6],"elR":[50.3,-130.4],"haR":[30.5,-131.4],"shL":[-56,-141.9],"elL":[-47.2,-131.1],"haL":[-43.2,-119.7],"hipR":[27.3,5.8],"knR":[23.2,126.9],"ftR":[16.8,242.2],"hipL":[-26.2,9.8],"knL":[-27.4,125.5],"ftL":[-29.6,240.4]},{"rootY":10.3,"hips":[0,0],"chest":[-4.2,-97.4],"neck":[-2.8,-166.3],"head":[5.9,-201.5],"shR":[48.9,-137.6],"elR":[49.8,-124.8],"haR":[31.1,-122.3],"shL":[-56.1,-141.2],"elL":[-48,-133],"haL":[-42.7,-125],"hipR":[27.1,6.6],"knR":[24.7,127],"ftR":[19.1,240.6],"hipL":[-26.4,9.1],"knL":[-25.3,125.7],"ftL":[-24.9,241]},{"rootY":10.5,"hips":[0,0],"chest":[-2.5,-97.2],"neck":[-1.1,-166.1],"head":[6.9,-201.4],"shR":[50.1,-135.7],"elR":[49.6,-119],"haR":[32.9,-111.1],"shL":[-54.8,-140.6],"elL":[-48.3,-135.6],"haL":[-41.4,-131.5],"hipR":[26.7,8.1],"knR":[26.7,127.9],"ftR":[22.7,239.1],"hipL":[-26.9,7.5],"knL":[-24.4,124.5],"ftL":[-21.7,241.4]},{"rootY":9.3,"hips":[0,0],"chest":[1.2,-96.9],"neck":[2,-165.8],"head":[8.9,-201.3],"shR":[52.9,-135.1],"elR":[49.8,-113.7],"haR":[35,-99],"shL":[-51.9,-140.3],"elL":[-47.6,-139.1],"haL":[-39.7,-139],"hipR":[26.1,9.9],"knR":[29.2,129.1],"ftR":[27.2,237.4],"hipL":[-27.3,5.8],"knL":[-22.9,123.8],"ftL":[-18.1,242.7]},{"rootY":7.4,"hips":[0,0],"chest":[5,-96.7],"neck":[5.6,-165.8],"head":[10.9,-201.5],"shR":[56.2,-136.2],"elR":[50.1,-109.3],"haR":[36.2,-87.8],"shL":[-48.5,-140.5],"elL":[-46.7,-143.4],"haL":[-38.5,-147.4],"hipR":[25.7,10.9],"knR":[32.1,130],"ftR":[31.7,235],"hipL":[-27.5,4.6],"knL":[-20.9,124.2],"ftL":[-13.7,244.6]},{"rootY":5.9,"hips":[0,0],"chest":[7.6,-96.9],"neck":[8.3,-166.1],"head":[12.3,-201.9],"shR":[58.6,-137.8],"elR":[50.6,-105.9],"haR":[36.5,-79.4],"shL":[-46,-141.4],"elL":[-46.1,-148.7],"haL":[-37.9,-157.2],"hipR":[25.3,11.5],"knR":[35.5,130.9],"ftR":[35.8,231.8],"hipL":[-27.5,4.1],"knL":[-19.2,124.7],"ftL":[-10,246]},{"rootY":5.3,"hips":[0,0],"chest":[8.9,-97.1],"neck":[10,-166.3],"head":[13.5,-202.1],"shR":[60.1,-138.2],"elR":[51.7,-103],"haR":[37,-73.7],"shL":[-44.6,-142.5],"elL":[-45.6,-154.6],"haL":[-37.1,-167.5],"hipR":[24.9,12.2],"knR":[40,132.5],"ftR":[40.3,227.2],"hipL":[-27.6,3.2],"knL":[-17.7,124.5],"ftL":[-6.8,246.6]},{"rootY":5.5,"hips":[0,0],"chest":[9.6,-97.2],"neck":[10.9,-166.3],"head":[14.6,-202],"shR":[60.9,-137.3],"elR":[52.9,-100.1],"haR":[38,-69.6],"shL":[-43.8,-143.5],"elL":[-45.2,-160.1],"haL":[-35.5,-176.9],"hipR":[24.3,13.3],"knR":[45.6,134],"ftR":[45.7,220.7],"hipL":[-27.6,2.1],"knL":[-16.2,123.8],"ftL":[-3.7,246.6]},{"rootY":6.1,"hips":[0,0],"chest":[9.7,-97],"neck":[11.3,-166.1],"head":[15.4,-201.7],"shR":[61.3,-136.2],"elR":[53.7,-97.6],"haR":[38.6,-66.5],"shL":[-43.4,-144.6],"elL":[-44.5,-164.8],"haL":[-33.4,-184.6],"hipR":[23.6,14.4],"knR":[50.8,134.5],"ftR":[51.4,213],"hipL":[-27.5,0.8],"knL":[-14.8,122.9],"ftL":[-0.5,246.1]},{"rootY":6.7,"hips":[0,0],"chest":[9.4,-96.8],"neck":[11.2,-165.8],"head":[15.5,-201.4],"shR":[61.3,-135.6],"elR":[53.7,-95.7],"haR":[38.1,-64],"shL":[-43.4,-145.3],"elL":[-43.5,-167.9],"haL":[-31.7,-189.7],"hipR":[23,15.2],"knR":[53.4,133.3],"ftR":[55.4,206.2],"hipL":[-27.4,-0.2],"knL":[-13.8,122.2],"ftL":[1.6,245.7]},{"rootY":6.6,"hips":[0,0],"chest":[8.8,-96.7],"neck":[10.4,-165.5],"head":[14.7,-201.1],"shR":[60.8,-135.5],"elR":[53,-94.4],"haR":[36.9,-61.8],"shL":[-43.9,-145.3],"elL":[-42.5,-169],"haL":[-30.6,-191.7],"hipR":[22.8,15.4],"knR":[53,131.1],"ftR":[56.6,201.8],"hipL":[-27.4,-0.5],"knL":[-13.2,121.8],"ftL":[2.5,245.7]},{"rootY":5.8,"hips":[0,0],"chest":[7.5,-96.8],"neck":[8.6,-165.5],"head":[12.8,-201.2],"shR":[59.5,-136],"elR":[51.6,-93.7],"haR":[35.7,-60],"shL":[-45.3,-144.9],"elL":[-42.1,-168],"haL":[-30.2,-190.1],"hipR":[23.1,15.1],"knR":[50,128.3],"ftR":[55.1,201.6],"hipL":[-27.5,-0.1],"knL":[-12.9,122.2],"ftL":[2.2,246.5]},{"rootY":4.6,"hips":[0,0],"chest":[5.6,-97],"neck":[6.1,-165.7],"head":[10.3,-201.4],"shR":[57.4,-137],"elR":[50,-93.9],"haR":[34.9,-59.1],"shL":[-47.5,-144.7],"elL":[-42.5,-165.4],"haL":[-30.4,-185.2],"hipR":[23.7,14.3],"knR":[45.9,125.1],"ftR":[51.8,206.1],"hipL":[-27.6,0.8],"knL":[-13.2,123.2],"ftL":[1.4,247.6]},{"rootY":3.5,"hips":[0,0],"chest":[3.4,-97.2],"neck":[3.3,-165.7],"head":[7.6,-201.5],"shR":[55,-138.1],"elR":[48.5,-95],"haR":[34.8,-60],"shL":[-49.9,-144.9],"elL":[-43,-161.9],"haL":[-30.7,-178.2],"hipR":[24.3,13.6],"knR":[41.8,121.5],"ftR":[48.5,213.5],"hipL":[-27.7,1.7],"knL":[-13.9,124.1],"ftL":[0.2,248.6]},{"rootY":3,"hips":[0,0],"chest":[1.6,-97.1],"neck":[0.7,-165.6],"head":[5.1,-201.4],"shR":[52.8,-138.7],"elR":[47.6,-96.7],"haR":[35.3,-62.4],"shL":[-52.1,-144.6],"elL":[-43.3,-157.5],"haL":[-31.1,-169.8],"hipR":[24.5,13.2],"knR":[38.6,118.1],"ftR":[46.2,221.5],"hipL":[-27.8,2.1],"knL":[-14.5,124.6],"ftL":[-0.9,249.1]},{"rootY":2.8,"hips":[0,0],"chest":[0.4,-97],"neck":[-1.3,-165.3],"head":[3,-201.2],"shR":[51.2,-139],"elR":[47.2,-98.7],"haR":[36.2,-65.7],"shL":[-53.8,-143.4],"elL":[-43.5,-151.9],"haL":[-31.2,-160],"hipR":[24.7,13.1],"knR":[36.8,115.5],"ftR":[44.9,229.1],"hipL":[-27.8,2.2],"knL":[-15,124.8],"ftL":[-1.7,249.3]},{"rootY":3,"hips":[0,0],"chest":[0,-96.9],"neck":[-2.6,-165.1],"head":[1.5,-201.1],"shR":[50.4,-139.3],"elR":[47.7,-100.8],"haR":[37.5,-69.4],"shL":[-54.6,-142],"elL":[-43.3,-145.5],"haL":[-31.2,-149.1],"hipR":[24.7,13.1],"knR":[36.1,114],"ftR":[43.5,235.4],"hipL":[-27.8,2.3],"knL":[-15.3,124.8],"ftL":[-2.2,249.2]},{"rootY":3.3,"hips":[0,0],"chest":[0.3,-96.8],"neck":[-3,-164.9],"head":[0.4,-201],"shR":[50.3,-139.5],"elR":[49.1,-103],"haR":[39.2,-73.7],"shL":[-54.7,-141],"elL":[-42.3,-139.4],"haL":[-31.3,-138.1],"hipR":[24.6,13.2],"knR":[35.6,113.9],"ftR":[41.4,238.9],"hipL":[-27.8,2.1],"knL":[-15.4,124.6],"ftL":[-2.5,248.9]},{"rootY":3.9,"hips":[0,0],"chest":[0.7,-96.8],"neck":[-3.1,-164.7],"head":[-0.5,-200.9],"shR":[50.5,-139.5],"elR":[50.9,-105.1],"haR":[41.1,-78.5],"shL":[-54.3,-140.3],"elL":[-40.6,-134.2],"haL":[-31.7,-127.5],"hipR":[24.6,13.3],"knR":[34.7,115.1],"ftR":[38.7,238.8],"hipL":[-27.9,2],"knL":[-15.5,124.3],"ftL":[-2.8,248.3]},{"rootY":4.7,"hips":[0,0],"chest":[1.2,-96.7],"neck":[-3.3,-164.6],"head":[-1.6,-200.9],"shR":[50.6,-139.3],"elR":[52.7,-107.1],"haR":[42.9,-83.3],"shL":[-54.2,-139.1],"elL":[-39.2,-129.1],"haL":[-32.3,-117.5],"hipR":[24.6,13.3],"knR":[32.5,117.3],"ftR":[35.4,235.5],"hipL":[-27.9,2],"knL":[-15.8,124],"ftL":[-3.3,247.7]},{"rootY":5.7,"hips":[0,0],"chest":[1.5,-96.6],"neck":[-3.5,-164.5],"head":[-2.8,-200.8],"shR":[50.6,-139.4],"elR":[54.3,-109.1],"haR":[44.6,-88.2],"shL":[-54.4,-137.7],"elL":[-38.9,-123.8],"haL":[-32.6,-108.2],"hipR":[24.5,13.3],"knR":[28.7,119.1],"ftR":[30.8,231.1],"hipL":[-27.9,2],"knL":[-16.4,123.7],"ftL":[-4.2,246.7]},{"rootY":7.1,"hips":[0,0],"chest":[1.7,-96.5],"neck":[-3.7,-164.5],"head":[-3.8,-200.8],"shR":[50.6,-139.4],"elR":[55.9,-111.3],"haR":[46.4,-93.3],"shL":[-54.5,-136.6],"elL":[-38.7,-119.1],"haL":[-32.9,-100.7],"hipR":[24.5,13.4],"knR":[25,119.4],"ftR":[24.9,228.6],"hipL":[-27.9,2],"knL":[-17.2,123.4],"ftL":[-5.4,245.4]},{"rootY":8.6,"hips":[0,0],"chest":[1.7,-96.4],"neck":[-3.7,-164.4],"head":[-4.5,-200.7],"shR":[50.7,-139.4],"elR":[57.7,-113.4],"haR":[48.2,-98.6],"shL":[-54.4,-136.3],"elL":[-38.3,-116.3],"haL":[-33,-95.7],"hipR":[24.6,13.2],"knR":[22.4,118.8],"ftR":[19.1,228.8],"hipL":[-27.9,2.1],"knL":[-18,123.1],"ftL":[-6.6,243.7]},{"rootY":10.2,"hips":[0,0],"chest":[1.6,-96.4],"neck":[-3.4,-164.5],"head":[-5,-200.8],"shR":[50.9,-139.6],"elR":[59.4,-115.7],"haR":[50.2,-103.8],"shL":[-54.2,-136.6],"elL":[-38.1,-115.3],"haL":[-33.1,-93.3],"hipR":[24.8,12.9],"knR":[21,118.7],"ftR":[15.2,231],"hipL":[-27.8,2.5],"knL":[-18.9,123.1],"ftL":[-7.8,241.8]},{"rootY":12,"hips":[0,0],"chest":[1.7,-96.8],"neck":[-3.1,-164.9],"head":[-5.1,-201.2],"shR":[51.2,-139.7],"elR":[61,-118.6],"haR":[52.5,-109.6],"shL":[-53.9,-136.9],"elL":[-38.6,-115.4],"haL":[-34,-93.6],"hipR":[25.1,12.2],"knR":[19.8,119.6],"ftR":[12.6,234.1],"hipL":[-27.7,3.3],"knL":[-20.2,123.6],"ftL":[-9.1,239.9]},{"rootY":13.8,"hips":[0,0],"chest":[1.3,-97.3],"neck":[-3.3,-165.4],"head":[-5.3,-201.6],"shR":[50.7,-139],"elR":[61.7,-122.6],"haR":[54.6,-117.2],"shL":[-54.3,-136.1],"elL":[-41,-116.5],"haL":[-37.2,-96.7],"hipR":[25.7,10.9],"knR":[17.5,120.9],"ftR":[8.5,236.4],"hipL":[-27.5,4.6],"knL":[-22.3,124.7],"ftL":[-11.3,237.9]},{"rootY":14.5,"hips":[0,0],"chest":[-1.1,-97.4],"neck":[-4.4,-165.6],"head":[-5.9,-201.7],"shR":[48.8,-137.1],"elR":[61.4,-126.9],"haR":[55.4,-126.7],"shL":[-55.8,-134.9],"elL":[-45.8,-118.6],"haL":[-43.5,-102.3],"hipR":[26.6,8.6],"knR":[14.7,121.8],"ftR":[2.6,237.5],"hipL":[-27,7],"knL":[-24.6,126.4],"ftL":[-14.7,236]},{"rootY":13.9,"hips":[0,0],"chest":[-5.6,-97.3],"neck":[-5.7,-165.8],"head":[-5.8,-201.7],"shR":[46.6,-135.9],"elR":[61.2,-130.9],"haR":[55.5,-136.3],"shL":[-58.2,-135.9],"elL":[-52.2,-122.5],"haL":[-51.8,-109.3],"hipR":[27.3,5.9],"knR":[13,121.8],"ftR":[-1.6,238],"hipL":[-26.2,9.7],"knL":[-26.3,128.3],"ftL":[-18.1,233.7]},{"rootY":12,"hips":[0,0],"chest":[-9.1,-97.7],"neck":[-6.4,-166.3],"head":[-4.3,-202.2],"shR":[45.6,-136.7],"elR":[62.7,-134.2],"haR":[56.1,-144.7],"shL":[-59.9,-140.5],"elL":[-58.3,-128.8],"haL":[-60,-117.7],"hipR":[27.6,4.5],"knR":[12.5,121.5],"ftR":[-2.5,239],"hipL":[-25.7,11],"knL":[-27.7,130.6],"ftL":[-19.6,229.9]},{"rootY":9.9,"hips":[0,0],"chest":[-10.2,-98.4],"neck":[-6.5,-166.9],"head":[-2,-202.5],"shR":[45.7,-138.7],"elR":[65.3,-136.9],"haR":[57.7,-152.1],"shL":[-60.2,-145.7],"elL":[-63,-136.5],"haL":[-67,-128.2],"hipR":[27.6,4.1],"knR":[12.7,121.8],"ftR":[-2.2,240.8],"hipL":[-25.5,11.4],"knL":[-29.5,132.9],"ftL":[-19.2,224.1]},{"rootY":8.3,"hips":[0,0],"chest":[-10.4,-98.8],"neck":[-6.5,-167.1],"head":[0.3,-202.5],"shR":[46,-139.9],"elR":[68,-139.5],"haR":[59.4,-159.4],"shL":[-59.9,-148.4],"elL":[-66.8,-144.3],"haL":[-72.7,-140.8],"hipR":[27.7,3.7],"knR":[12.5,122.2],"ftR":[-2.8,242.3],"hipL":[-25.3,11.8],"knL":[-33.3,134.5],"ftL":[-18.1,216.8]},{"rootY":7.2,"hips":[0,0],"chest":[-10.4,-98.8],"neck":[-5.8,-166.9],"head":[2.4,-202.1],"shR":[46.4,-139.6],"elR":[70.2,-141.9],"haR":[61.1,-165.6],"shL":[-59.6,-149],"elL":[-69.9,-151.1],"haL":[-76.7,-153],"hipR":[27.8,2.8],"knR":[12.2,122.3],"ftR":[-3.3,243.3],"hipL":[-25,12.5],"knL":[-38.3,134.9],"ftL":[-17.2,210.3]},{"rootY":6.1,"hips":[0,0],"chest":[-10.5,-98.6],"neck":[-4.4,-166.6],"head":[4.8,-201.6],"shR":[47.1,-138.6],"elR":[72.1,-143.1],"haR":[63.1,-169.3],"shL":[-59,-149.6],"elL":[-72,-156.4],"haL":[-79,-162.7],"hipR":[27.9,2.1],"knR":[12.4,122.5],"ftR":[-2.6,244.2],"hipL":[-24.6,13.2],"knL":[-43.1,134.2],"ftL":[-17,207]},{"rootY":4.9,"hips":[0,0],"chest":[-10.1,-98.4],"neck":[-2.7,-166.2],"head":[7.3,-201.1],"shR":[48.2,-137.6],"elR":[73.5,-142.8],"haR":[65.2,-169.8],"shL":[-57.9,-151],"elL":[-73,-160.8],"haL":[-80,-170.2],"hipR":[27.9,1.9],"knR":[12.7,122.9],"ftR":[-1.6,245.4],"hipL":[-24.5,13.4],"knL":[-47.1,132.6],"ftL":[-18.2,207.6]},{"rootY":3.6,"hips":[0,0],"chest":[-9.2,-98.2],"neck":[-1.1,-165.9],"head":[9.6,-200.6],"shR":[49.4,-136.8],"elR":[74.3,-141.4],"haR":[67,-167.8],"shL":[-56.5,-152.3],"elL":[-72.9,-164.8],"haL":[-80.1,-176.6],"hipR":[27.9,1.9],"knR":[13,123.4],"ftR":[-1.4,246.6],"hipL":[-24.5,13.3],"knL":[-50.1,130.4],"ftL":[-21.2,211.5]},{"rootY":2.5,"hips":[0,0],"chest":[-7.9,-98.1],"neck":[0.6,-165.7],"head":[11.6,-200.3],"shR":[50.7,-136.3],"elR":[75.1,-139.8],"haR":[68.5,-164.2],"shL":[-55.1,-153],"elL":[-71.9,-168.4],"haL":[-79,-182.4],"hipR":[27.9,2.1],"knR":[13.2,123.9],"ftR":[-1.4,247.6],"hipL":[-24.6,13.2],"knL":[-52.3,127.7],"ftL":[-25.2,217.4]},{"rootY":1.7,"hips":[0,0],"chest":[-6.7,-98],"neck":[2.2,-165.5],"head":[13.3,-200.1],"shR":[52.1,-136.1],"elR":[75.7,-138.2],"haR":[69.7,-159.5],"shL":[-53.7,-153.6],"elL":[-70.4,-171.4],"haL":[-77.1,-187],"hipR":[27.8,2.3],"knR":[13.6,124.3],"ftR":[-1,248.4],"hipL":[-24.7,13.1],"knL":[-53.7,125],"ftL":[-29.5,224.5]},{"rootY":1.2,"hips":[0,0],"chest":[-5.8,-97.9],"neck":[3.5,-165.4],"head":[14.6,-200],"shR":[53.1,-136],"elR":[75.6,-136.5],"haR":[70.5,-153.6],"shL":[-52.5,-154.4],"elL":[-68.8,-173.6],"haL":[-74.9,-190.4],"hipR":[27.8,2.5],"knR":[13.9,124.7],"ftR":[-0.4,249.1],"hipL":[-24.8,12.9],"knL":[-54.3,122.5],"ftL":[-34.2,231.7]},{"rootY":0.8,"hips":[0,0],"chest":[-5.2,-97.9],"neck":[4.2,-165.3],"head":[15.6,-199.8],"shR":[53.7,-136],"elR":[74.8,-134.1],"haR":[71.1,-146.4],"shL":[-51.8,-155.1],"elL":[-67.6,-175.3],"haL":[-72.7,-193.1],"hipR":[27.8,2.6],"knR":[14,125],"ftR":[-0.2,249.5],"hipL":[-24.8,12.7],"knL":[-53.4,120.5],"ftL":[-39.6,237.9]}]} \ No newline at end of file +{"name":"shuffle","fps":30,"height":520,"groundY":326,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[-1.8,-86.1],"neck":[-1.8,-86.1],"head":[-2.4,-158.8],"shR":[-80.8,-96.8],"elR":[-184.3,-82.3],"haR":[-254.1,-72.5],"shL":[77,-103.3],"elL":[180.6,-88.7],"haL":[250.6,-78.9],"hipR":[-28.7,33.1],"knR":[-26.2,174.4],"ftR":[-23.6,322.6],"hipL":[28.7,33.1],"knL":[26.1,179.9],"ftL":[23.6,325.8]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.5,-85.6],"neck":[-9.5,-85.6],"head":[0.8,-156.9],"shR":[16.2,-96.3],"elR":[13,8.1],"haR":[36.8,73.9],"shL":[-42,-103.2],"elL":[-30.7,0.8],"haL":[-8.9,67.6],"hipR":[26.9,36.6],"knR":[34.7,177.5],"ftR":[-21,313.3],"hipL":[12.7,32.6],"knL":[23.9,178.9],"ftL":[-28.3,315.1]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.7,-157],"shR":[16,-96.4],"elR":[12.8,8],"haR":[36.6,73.8],"shL":[-41.9,-103.1],"elL":[-38.3,1.4],"haL":[-13.9,67.5],"hipR":[27,36.4],"knR":[34.3,177.4],"ftR":[-21.2,313.3],"hipL":[12.7,32.7],"knL":[24,179],"ftL":[-28.5,315]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.6,-157],"shR":[15.6,-96.6],"elR":[12.7,7.8],"haR":[36.5,73.6],"shL":[-41.6,-102.9],"elL":[-38.9,1.6],"haL":[-14.3,67.8],"hipR":[26.9,36.3],"knR":[34,177.3],"ftR":[-21.3,313.3],"hipL":[12.9,32.8],"knL":[24.2,179.1],"ftL":[-28.6,315]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.6,-85.6],"neck":[-9.6,-85.6],"head":[0.6,-157],"shR":[15.5,-96.7],"elR":[12.7,7.7],"haR":[36.6,73.5],"shL":[-41.5,-102.8],"elL":[-38.5,1.7],"haL":[-13.8,67.8],"hipR":[26.9,36.2],"knR":[33.8,177.2],"ftR":[-21.2,313.4],"hipL":[13,32.9],"knL":[24.6,179.1],"ftL":[-28.6,315]},{"rootY":-0.2,"hips":[0,0],"chest":[-9.4,-85.6],"neck":[-9.4,-85.6],"head":[0.8,-157.1],"shR":[15.5,-96.8],"elR":[12.6,7.6],"haR":[37.3,73.1],"shL":[-41.2,-102.8],"elL":[-38.4,1.8],"haL":[-13.7,67.8],"hipR":[27,36.1],"knR":[33.8,177.1],"ftR":[-21.2,313.3],"hipL":[13.2,32.9],"knL":[24.7,179.1],"ftL":[-28.5,314.9]},{"rootY":-0.2,"hips":[0,0],"chest":[-9.5,-85.6],"neck":[-9.5,-85.6],"head":[0.7,-157],"shR":[15.4,-96.9],"elR":[12.4,7.6],"haR":[37.1,73],"shL":[-41.2,-102.7],"elL":[-38.1,1.8],"haL":[-13.5,67.9],"hipR":[26.9,36],"knR":[33.4,177.1],"ftR":[-21.2,313.4],"hipL":[13.2,33.1],"knL":[25,179.3],"ftL":[-28.6,314.9]},{"rootY":-0.4,"hips":[0,0],"chest":[-9.4,-85.7],"neck":[-9.4,-85.7],"head":[0.8,-157],"shR":[15.3,-96.9],"elR":[12.4,7.6],"haR":[37.2,73],"shL":[-40.9,-102.7],"elL":[-37.6,1.8],"haL":[-13.1,68],"hipR":[26.9,36],"knR":[33.2,177],"ftR":[-21.2,313.5],"hipL":[13.2,33.2],"knL":[25.1,179.4],"ftL":[-28.6,315.1]},{"rootY":-0.4,"hips":[0,0],"chest":[-9.3,-85.7],"neck":[-9.3,-85.7],"head":[0.9,-157.1],"shR":[15.1,-96.8],"elR":[12.2,7.6],"haR":[37,73.1],"shL":[-40.6,-102.8],"elL":[-37.6,1.7],"haL":[-13.1,67.8],"hipR":[26.8,36],"knR":[33.1,177],"ftR":[-21.1,313.6],"hipL":[13.3,33.2],"knL":[25.2,179.4],"ftL":[-28.5,315]},{"rootY":-0.6,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1,-157.1],"shR":[15.3,-96.8],"elR":[12.5,7.6],"haR":[37.2,73.1],"shL":[-40.6,-102.9],"elL":[-37.3,1.7],"haL":[-12.8,67.8],"hipR":[26.6,36],"knR":[32.9,177.1],"ftR":[-21,313.8],"hipL":[13.3,33.3],"knL":[25.4,179.5],"ftL":[-28.5,315.1]},{"rootY":-0.8,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.1,-157.1],"shR":[15.2,-96.8],"elR":[12.5,7.7],"haR":[37.3,73.2],"shL":[-40.3,-103],"elL":[-36.9,1.6],"haL":[-12.5,67.8],"hipR":[26.5,36],"knR":[32.7,177],"ftR":[-20.9,313.9],"hipL":[13.3,33.5],"knL":[25.5,179.7],"ftL":[-28.5,315.2]},{"rootY":-0.9,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.3,-157.1],"shR":[15.3,-96.8],"elR":[12.8,7.7],"haR":[37.6,73.1],"shL":[-40.2,-102.9],"elL":[-37,1.6],"haL":[-12.7,67.8],"hipR":[26.4,36.1],"knR":[32.5,177.1],"ftR":[-20.9,314.1],"hipL":[13.3,33.6],"knL":[25.7,179.7],"ftL":[-28.4,315.2]},{"rootY":-1,"hips":[0,0],"chest":[-9.1,-85.7],"neck":[-9.1,-85.7],"head":[1.3,-157],"shR":[15.2,-96.7],"elR":[12.6,7.7],"haR":[37.5,73.2],"shL":[-40.2,-103],"elL":[-36.8,1.5],"haL":[-12.6,67.7],"hipR":[26.3,36.1],"knR":[32.2,177.1],"ftR":[-20.9,314.2],"hipL":[13.3,33.7],"knL":[25.9,179.8],"ftL":[-28.4,315.2]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157],"shR":[14.8,-96.6],"elR":[12.3,7.9],"haR":[37.1,73.4],"shL":[-40,-103.1],"elL":[-36.9,1.4],"haL":[-12.5,67.6],"hipR":[26.3,36],"knR":[31.9,177],"ftR":[-21.1,314.2],"hipL":[13.3,33.7],"knL":[26,179.8],"ftL":[-28.6,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157],"shR":[14.9,-96.7],"elR":[12.2,7.8],"haR":[36.9,73.3],"shL":[-40,-103],"elL":[-37.3,1.5],"haL":[-12.8,67.7],"hipR":[26.3,35.9],"knR":[31.4,177],"ftR":[-21.4,314.2],"hipL":[13.3,33.8],"knL":[26.1,179.9],"ftL":[-28.8,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.3,-85.7],"neck":[-9.3,-85.7],"head":[1.1,-157],"shR":[14.8,-96.7],"elR":[12,7.8],"haR":[36.1,73.5],"shL":[-40.2,-103],"elL":[-37.5,1.5],"haL":[-12.7,67.6],"hipR":[26.3,35.8],"knR":[31,176.9],"ftR":[-21.8,314.2],"hipL":[13.3,34],"knL":[26,180.1],"ftL":[-29.2,315.1]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.3,-157.1],"shR":[14.9,-96.7],"elR":[12.1,7.8],"haR":[36.3,73.5],"shL":[-40,-103.1],"elL":[-37.2,1.5],"haL":[-12.7,67.7],"hipR":[26.4,35.8],"knR":[30.9,176.9],"ftR":[-21.8,314.2],"hipL":[13.4,33.9],"knL":[26.3,180],"ftL":[-29.2,314.9]},{"rootY":-1,"hips":[0,0],"chest":[-9.2,-85.7],"neck":[-9.2,-85.7],"head":[1.2,-157.1],"shR":[14.8,-96.8],"elR":[12,7.6],"haR":[36.1,73.4],"shL":[-40,-102.9],"elL":[-37.3,1.6],"haL":[-12.7,67.8],"hipR":[26.4,35.8],"knR":[30.6,176.9],"ftR":[-21.9,314.3],"hipL":[13.3,34],"knL":[26.3,180.1],"ftL":[-29.3,314.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.6,-157.1],"shR":[15.1,-96.9],"elR":[12.3,7.6],"haR":[36.5,73.3],"shL":[-39.7,-102.9],"elL":[-37.1,1.7],"haL":[-12.6,67.8],"hipR":[26.3,35.8],"knR":[30.4,176.9],"ftR":[-21.9,314.3],"hipL":[13.3,34],"knL":[26.6,180.1],"ftL":[-29.1,315]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.5,-157.1],"shR":[15.1,-96.8],"elR":[12.3,7.6],"haR":[36.6,73.3],"shL":[-39.7,-103],"elL":[-37.2,1.6],"haL":[-12.9,67.8],"hipR":[26.3,35.7],"knR":[30.1,176.8],"ftR":[-22.1,314.3],"hipL":[13.4,34.1],"knL":[26.6,180.2],"ftL":[-29.4,314.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-9,-85.7],"neck":[-9,-85.7],"head":[1.6,-157],"shR":[15,-96.8],"elR":[12.1,7.6],"haR":[36.4,73.4],"shL":[-39.5,-103],"elL":[-37.3,1.6],"haL":[-12.9,67.8],"hipR":[26.3,35.7],"knR":[29.8,176.8],"ftR":[-22.4,314.3],"hipL":[13.5,34.1],"knL":[26.7,180.2],"ftL":[-29.5,314.8]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.8,-157.1],"shR":[14.9,-96.8],"elR":[11.9,7.6],"haR":[36.2,73.3],"shL":[-39.1,-103],"elL":[-36.8,1.6],"haL":[-12.3,67.7],"hipR":[26.2,35.7],"knR":[29.6,176.9],"ftR":[-22.2,314.5],"hipL":[13.5,34.1],"knL":[26.9,180.2],"ftL":[-29.4,314.8]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.8,-157.1],"shR":[14.5,-96.6],"elR":[11.3,7.8],"haR":[35.4,73.6],"shL":[-38.7,-103.2],"elL":[-36.4,1.3],"haL":[-12.2,67.6],"hipR":[26.2,35.7],"knR":[29.4,176.8],"ftR":[-22.3,314.5],"hipL":[13.6,34.1],"knL":[27.1,180.2],"ftL":[-29.5,314.7]},{"rootY":-1.3,"hips":[0,0],"chest":[-8.8,-85.7],"neck":[-8.8,-85.7],"head":[1.9,-157.1],"shR":[14.4,-96.5],"elR":[11.1,7.9],"haR":[35.1,73.7],"shL":[-38.6,-103.3],"elL":[-36.5,1.2],"haL":[-12.2,67.5],"hipR":[26.3,35.6],"knR":[29,176.8],"ftR":[-22.6,314.5],"hipL":[13.6,34.1],"knL":[27.3,180.1],"ftL":[-29.5,314.6]},{"rootY":-1.4,"hips":[0,0],"chest":[-8.7,-85.7],"neck":[-8.7,-85.7],"head":[2,-157.1],"shR":[14.6,-96.7],"elR":[11.3,7.7],"haR":[35.3,73.5],"shL":[-38.5,-103.2],"elL":[-36.4,1.4],"haL":[-11.9,67.6],"hipR":[26.2,35.6],"knR":[28.8,176.8],"ftR":[-22.5,314.7],"hipL":[13.6,34.2],"knL":[27.4,180.2],"ftL":[-29.6,314.6]},{"rootY":-1.5,"hips":[0,0],"chest":[-8.5,-85.8],"neck":[-8.5,-85.8],"head":[2.2,-157.1],"shR":[14.8,-96.8],"elR":[11.4,7.7],"haR":[35.5,73.4],"shL":[-38.4,-103.1],"elL":[-36.2,1.4],"haL":[-11.8,67.7],"hipR":[26.1,35.6],"knR":[28.5,176.7],"ftR":[-22.4,314.8],"hipL":[13.6,34.4],"knL":[27.6,180.4],"ftL":[-29.6,314.6]},{"rootY":-1.6,"hips":[0,0],"chest":[-8.6,-85.7],"neck":[-8.6,-85.7],"head":[2.3,-157],"shR":[14.6,-96.5],"elR":[11.2,7.9],"haR":[35.5,73.7],"shL":[-38.3,-103.5],"elL":[-36.2,1.1],"haL":[-11.8,67.3],"hipR":[26,35.5],"knR":[28.1,176.7],"ftR":[-22.5,314.9],"hipL":[13.6,34.5],"knL":[27.7,180.5],"ftL":[-29.7,314.6]},{"rootY":-1.7,"hips":[0,0],"chest":[-8.5,-85.8],"neck":[-8.5,-85.8],"head":[2.4,-157.1],"shR":[14.6,-96.5],"elR":[10.9,7.9],"haR":[35.2,73.6],"shL":[-38.1,-103.4],"elL":[-36.2,1.1],"haL":[-11.8,67.4],"hipR":[26,35.6],"knR":[27.8,176.7],"ftR":[-22.8,314.9],"hipL":[13.5,34.5],"knL":[27.6,180.5],"ftL":[-29.8,314.6]},{"rootY":-1.7,"hips":[0,0],"chest":[-8.7,-85.7],"neck":[-8.7,-85.7],"head":[1.4,-157.3],"shR":[14.1,-96.4],"elR":[10.5,8],"haR":[34.7,73.8],"shL":[-37.9,-103.5],"elL":[-36.1,1],"haL":[-11.9,67.3],"hipR":[25.7,35.6],"knR":[27.7,176.7],"ftR":[-22.4,315.2],"hipL":[13.8,34.6],"knL":[27.7,180.6],"ftL":[-30.2,314.5]},{"rootY":-1.6,"hips":[0,0],"chest":[-8.3,-85.8],"neck":[-8.3,-85.8],"head":[0.4,-157.8],"shR":[13.5,-96.1],"elR":[10.2,8.3],"haR":[34.6,74],"shL":[-36.4,-103.9],"elL":[-34.9,0.7],"haL":[-11,67.1],"hipR":[25.6,35.5],"knR":[27.9,176.6],"ftR":[-21.7,315.3],"hipL":[14.4,34.5],"knL":[28.4,180.5],"ftL":[-29.8,314.3]},{"rootY":-1.8,"hips":[0,0],"chest":[-7.3,-85.9],"neck":[-7.3,-85.9],"head":[0.9,-158.2],"shR":[12.6,-95.7],"elR":[9.4,8.8],"haR":[34.4,74.2],"shL":[-33.2,-104.6],"elL":[-31.8,-0.1],"haL":[-8.8,66.7],"hipR":[25.1,35.5],"knR":[28.2,176.5],"ftR":[-20.5,315.5],"hipL":[15.2,34.5],"knL":[29.3,180.5],"ftL":[-29,314.2]},{"rootY":-1.9,"hips":[0,0],"chest":[-5.2,-86],"neck":[-5.2,-86],"head":[3.9,-158.3],"shR":[11.7,-96],"elR":[8.3,8.5],"haR":[34.1,73.7],"shL":[-27.9,-104.7],"elL":[-30.6,-0.2],"haL":[-8.7,66.9],"hipR":[24.6,35.3],"knR":[28.4,176.3],"ftR":[-19.7,315.5],"hipL":[15.9,34.6],"knL":[30.3,180.6],"ftL":[-28.1,314.3]},{"rootY":-1.9,"hips":[0,0],"chest":[-2.8,-86.1],"neck":[-2.8,-86.1],"head":[8.5,-158],"shR":[11.4,-96.5],"elR":[6.6,7.9],"haR":[32.9,73],"shL":[-22.1,-104.6],"elL":[-29.1,-0.3],"haL":[-7,66.8],"hipR":[23.9,35.2],"knR":[29.2,176.1],"ftR":[-17.9,315.7],"hipL":[16.7,34.7],"knL":[31.7,180.7],"ftL":[-26.7,314.4]},{"rootY":-1.9,"hips":[0,0],"chest":[0.5,-86.1],"neck":[0.5,-86.1],"head":[13.6,-157.7],"shR":[12.4,-97.1],"elR":[4.8,7.1],"haR":[31.3,72.2],"shL":[-15.7,-104.1],"elL":[-26.6,-0.2],"haL":[-4.9,67],"hipR":[23.2,34.9],"knR":[29.5,175.7],"ftR":[-16.2,315.8],"hipL":[17.9,34.9],"knL":[33.5,180.8],"ftL":[-25.2,314.3]},{"rootY":-2,"hips":[0,0],"chest":[4.2,-86],"neck":[4.2,-86],"head":[18.5,-157.4],"shR":[14.1,-97.5],"elR":[2.5,6.2],"haR":[28.2,71.7],"shL":[-8.8,-103.5],"elL":[-22.6,0.1],"haL":[-3.4,68.1],"hipR":[22.5,34.7],"knR":[30,175.3],"ftR":[-14.3,315.9],"hipL":[18.6,35.2],"knL":[35.9,180.9],"ftL":[-23.2,314.3]},{"rootY":-2.1,"hips":[0,0],"chest":[7.6,-85.7],"neck":[7.6,-85.7],"head":[22.8,-156.9],"shR":[15.6,-97.7],"elR":[0.9,5.6],"haR":[24,72.2],"shL":[-2.5,-102.8],"elL":[-19.4,0.4],"haL":[-1.4,68.6],"hipR":[21.1,34.6],"knR":[30.2,175],"ftR":[-12.2,316.2],"hipL":[19.6,35.5],"knL":[38.2,181.1],"ftL":[-21.7,314.1]},{"rootY":-1.7,"hips":[0,0],"chest":[10.7,-85.3],"neck":[10.7,-85.3],"head":[26.7,-156.3],"shR":[16.9,-97.9],"elR":[-0.8,4.8],"haR":[20,72.2],"shL":[3.3,-101.8],"elL":[-16.1,0.9],"haL":[0.3,69.5],"hipR":[20.5,34.1],"knR":[30.1,174.3],"ftR":[-11.1,315.9],"hipL":[20.3,35.9],"knL":[40.7,181.2],"ftL":[-20.2,313.8]},{"rootY":-1.7,"hips":[0,0],"chest":[12.7,-84.9],"neck":[12.7,-84.9],"head":[29.6,-155.7],"shR":[17.1,-98.6],"elR":[-2.6,3.7],"haR":[16,71.7],"shL":[7.9,-100.4],"elL":[-14.2,1.8],"haL":[1.5,70.5],"hipR":[19.4,34.7],"knR":[30.8,174.5],"ftR":[-10.6,315.9],"hipL":[20.3,36],"knL":[41.4,181.2],"ftL":[-19.4,313.6]},{"rootY":-1.1,"hips":[0,0],"chest":[14.4,-84.5],"neck":[14.4,-84.5],"head":[31.7,-155.2],"shR":[17,-99.6],"elR":[-4.5,2.2],"haR":[13.4,70.3],"shL":[11.8,-98.6],"elL":[-11.7,3.3],"haL":[3.5,72],"hipR":[18.7,34.3],"knR":[30.8,173.9],"ftR":[-10.2,315.5],"hipL":[20.9,36.3],"knL":[43,181.4],"ftL":[-19.2,313.2]},{"rootY":-0.9,"hips":[0,0],"chest":[15.5,-84.2],"neck":[15.5,-84.2],"head":[32.9,-154.7],"shR":[16.8,-100.4],"elR":[-6.1,0.9],"haR":[11.7,69],"shL":[14.7,-97.1],"elL":[-8.4,4.8],"haL":[6.1,73.6],"hipR":[18.1,34],"knR":[30.4,173.3],"ftR":[-10.1,314.9],"hipL":[21.7,36.4],"knL":[43.8,181.5],"ftL":[-19.3,312.8]},{"rootY":-0.2,"hips":[0,0],"chest":[15.9,-84],"neck":[15.9,-84],"head":[33.1,-154.5],"shR":[16.2,-101.2],"elR":[-8.1,-0.3],"haR":[10.5,67.5],"shL":[16.2,-95.9],"elL":[-6.7,6],"haL":[7.9,74.7],"hipR":[18.6,34.1],"knR":[32.4,172.9],"ftR":[-10.4,313.8],"hipL":[22,36],"knL":[43,181.2],"ftL":[-20.1,312.4]},{"rootY":-0.1,"hips":[0,0],"chest":[16.9,-83.7],"neck":[16.9,-83.7],"head":[34,-154.3],"shR":[16.3,-101.6],"elR":[-8.9,-1.1],"haR":[11.1,66.3],"shL":[18.4,-95],"elL":[-4.3,7],"haL":[11.3,75.3],"hipR":[18.4,34],"knR":[38.4,171.3],"ftR":[-7.9,311.2],"hipL":[22.6,35.7],"knL":[42.4,181],"ftL":[-20.1,312.5]},{"rootY":0.1,"hips":[0,0],"chest":[18.5,-83.3],"neck":[18.5,-83.3],"head":[35.8,-153.9],"shR":[17,-101.4],"elR":[-8.8,-1.2],"haR":[13.4,65.4],"shL":[21.1,-94.3],"elL":[-3,7.4],"haL":[14.8,74.7],"hipR":[18.6,34.4],"knR":[50.2,168.4],"ftR":[-2.7,306.2],"hipL":[23.3,34.9],"knL":[41.9,180.2],"ftL":[-19.6,312]},{"rootY":0.9,"hips":[0,0],"chest":[20.6,-82.8],"neck":[20.6,-82.8],"head":[38.6,-153.3],"shR":[18.9,-100.6],"elR":[-6.9,-0.5],"haR":[18,65.1],"shL":[23.8,-94.1],"elL":[-1.4,7.4],"haL":[18.6,73.7],"hipR":[18.5,34.5],"knR":[62.2,163.8],"ftR":[8.4,301.4],"hipL":[24,34.4],"knL":[43,179.7],"ftL":[-18,311.6]},{"rootY":0.9,"hips":[0,0],"chest":[21.8,-82.5],"neck":[21.8,-82.5],"head":[40.4,-152.9],"shR":[21.1,-99.8],"elR":[-6.1,0],"haR":[21.2,64.5],"shL":[24.2,-94.3],"elL":[-0.4,7.4],"haL":[20.9,72.8],"hipR":[19.3,34.3],"knR":[68.9,160.9],"ftR":[25.8,301.9],"hipL":[23.7,34.3],"knL":[42.3,179.7],"ftL":[-18.4,311.4]},{"rootY":1.1,"hips":[0,0],"chest":[22.6,-82.2],"neck":[22.6,-82.2],"head":[41.9,-152.6],"shR":[22.8,-98.9],"elR":[-4.8,0.8],"haR":[24.4,64.4],"shL":[24.6,-94.7],"elL":[-1,6.8],"haL":[21.5,71.8],"hipR":[19.5,34.1],"knR":[71.6,159.6],"ftR":[45.5,303.7],"hipL":[23.6,34.5],"knL":[41.4,179.9],"ftL":[-20,311.3]},{"rootY":1.3,"hips":[0,0],"chest":[23.1,-82.1],"neck":[23.1,-82.1],"head":[43.7,-152.1],"shR":[24.5,-98.4],"elR":[-2.3,1.5],"haR":[28.3,64.5],"shL":[24.3,-94.8],"elL":[-2.2,6.4],"haL":[20.5,71.5],"hipR":[20.1,34.1],"knR":[73.1,159.3],"ftR":[62.3,304],"hipL":[23.3,34.4],"knL":[40.2,180],"ftL":[-21.9,311]},{"rootY":2,"hips":[0,0],"chest":[23.4,-82],"neck":[23.4,-82],"head":[44.8,-151.8],"shR":[26.2,-97.9],"elR":[-0.5,2],"haR":[32.3,64],"shL":[23.3,-95.1],"elL":[-4,5.9],"haL":[18.3,71.4],"hipR":[20.9,34.2],"knR":[74.3,159.6],"ftR":[72.2,303.6],"hipL":[22.7,34.1],"knL":[38.2,179.9],"ftL":[-24.9,310.4]},{"rootY":2.5,"hips":[0,0],"chest":[24.1,-81.9],"neck":[24.1,-81.9],"head":[45.9,-151.5],"shR":[27.7,-96.9],"elR":[1,3],"haR":[36.4,63.6],"shL":[23.2,-95.8],"elL":[-5.2,4.9],"haL":[16.8,71],"hipR":[21,34.4],"knR":[74.5,160.2],"ftR":[75.3,303.8],"hipL":[22.7,33.9],"knL":[37.1,179.9],"ftL":[-27.6,309.7]},{"rootY":3.3,"hips":[0,0],"chest":[24.7,-81.8],"neck":[24.7,-81.8],"head":[47.4,-151.1],"shR":[29.2,-95.8],"elR":[2.5,4.3],"haR":[40.1,63.7],"shL":[23.4,-96.7],"elL":[-5.7,3.8],"haL":[15.8,70.7],"hipR":[21.2,35.1],"knR":[75,161.2],"ftR":[72.1,305.5],"hipL":[21.9,33.6],"knL":[34.6,179.8],"ftL":[-31.5,308.9]},{"rootY":3.4,"hips":[0,0],"chest":[25.9,-81.5],"neck":[25.9,-81.5],"head":[49.5,-150.7],"shR":[31.1,-94.2],"elR":[3.5,5.8],"haR":[42.6,64.3],"shL":[24.3,-97.7],"elL":[-5.9,2.4],"haL":[15.3,69.8],"hipR":[21.7,35.6],"knR":[76.4,162],"ftR":[69.1,306.8],"hipL":[21.1,33.2],"knL":[31.5,179.6],"ftL":[-35.7,308.4]},{"rootY":3.9,"hips":[0,0],"chest":[27.4,-81.1],"neck":[27.4,-81.1],"head":[52,-150],"shR":[34,-92.4],"elR":[6.1,7.6],"haR":[45.9,65.7],"shL":[24.8,-98.8],"elL":[-6.1,1.2],"haL":[14.9,68.7],"hipR":[21.8,36.2],"knR":[78.8,162],"ftR":[65.7,307.3],"hipL":[20.3,33],"knL":[28.4,179.4],"ftL":[-40.1,307.8]},{"rootY":4.9,"hips":[0,0],"chest":[28.9,-80.7],"neck":[28.9,-80.7],"head":[54.1,-149.3],"shR":[36,-90.6],"elR":[8.2,9.6],"haR":[48.3,67.5],"shL":[26.2,-99.6],"elL":[-4.6,0.4],"haL":[16.1,67.8],"hipR":[21.7,36.7],"knR":[81.7,161.5],"ftR":[62.2,306.7],"hipL":[19.8,32.7],"knL":[25.5,179.2],"ftL":[-44.6,306.8]},{"rootY":5.9,"hips":[0,0],"chest":[29.8,-80.4],"neck":[29.8,-80.4],"head":[55.7,-148.8],"shR":[36.9,-88.9],"elR":[8.9,11.3],"haR":[49,69.3],"shL":[27.4,-100.6],"elL":[-3.8,-0.8],"haL":[17.5,66.4],"hipR":[22.1,37.4],"knR":[85.3,161],"ftR":[58,305.6],"hipL":[19,31.9],"knL":[21.2,178.4],"ftL":[-49.7,305.8]},{"rootY":7.6,"hips":[0,0],"chest":[30.6,-80.1],"neck":[30.6,-80.1],"head":[56.9,-148.4],"shR":[38.9,-87.4],"elR":[10.6,12.9],"haR":[50.5,71],"shL":[27.3,-101.6],"elL":[-2.7,-1.4],"haL":[19.5,65.2],"hipR":[22.4,37.9],"knR":[88.4,160.3],"ftR":[53.7,303.8],"hipL":[18.5,31.3],"knL":[17.8,177.6],"ftL":[-54.6,304.2]},{"rootY":9.6,"hips":[0,0],"chest":[31.6,-79.7],"neck":[31.6,-79.7],"head":[58,-148],"shR":[39.9,-85.6],"elR":[11,14.5],"haR":[50.3,73],"shL":[28.6,-102.5],"elL":[-0.9,-2.4],"haL":[22.9,63.6],"hipR":[22.6,38.3],"knR":[90.8,160],"ftR":[49.4,302.1],"hipL":[17.6,31],"knL":[14.8,176.8],"ftL":[-59.7,302.2]},{"rootY":11.7,"hips":[0,0],"chest":[32.8,-79.2],"neck":[32.8,-79.2],"head":[59.5,-147.3],"shR":[41.8,-83.9],"elR":[12.5,16.2],"haR":[50.9,75.2],"shL":[29.3,-103.2],"elL":[-1.5,-3.6],"haL":[24.3,61.6],"hipR":[22.6,38.8],"knR":[92.9,159.6],"ftR":[45.2,300],"hipL":[17.1,30.4],"knL":[11.6,175.6],"ftL":[-64.5,300.1]},{"rootY":13.6,"hips":[0,0],"chest":[34.1,-78.7],"neck":[34.1,-78.7],"head":[61.1,-146.6],"shR":[43.2,-82.2],"elR":[13,17.6],"haR":[50.4,77.3],"shL":[31,-103.6],"elL":[-2.6,-5.2],"haL":[24.5,59.7],"hipR":[22.1,39.4],"knR":[93.4,160],"ftR":[41.2,298.8],"hipL":[16.6,30.1],"knL":[9.1,174.9],"ftL":[-68.9,298.1]},{"rootY":14.8,"hips":[0,0],"chest":[35.6,-78],"neck":[35.6,-78],"head":[62.8,-145.7],"shR":[44.8,-80.8],"elR":[13.2,18.7],"haR":[49.3,79.3],"shL":[32.8,-103.6],"elL":[-4.6,-6.9],"haL":[22.7,58],"hipR":[21.9,39.7],"knR":[92.7,160.9],"ftR":[36,297.9],"hipL":[16.3,30.1],"knL":[7.5,174.1],"ftL":[-73.8,295.1]},{"rootY":15.1,"hips":[0,0],"chest":[37.2,-77.2],"neck":[37.2,-77.2],"head":[65.3,-144.5],"shR":[46.3,-79.1],"elR":[14,20.1],"haR":[48.4,81.7],"shL":[34.8,-103.6],"elL":[-6,-8.5],"haL":[19.1,57.2],"hipR":[22.2,39.5],"knR":[91.1,162.3],"ftR":[31.6,298],"hipL":[16,30.2],"knL":[11.5,173.5],"ftL":[-76.2,289.8]},{"rootY":14.1,"hips":[0,0],"chest":[38.4,-76.5],"neck":[38.4,-76.5],"head":[67.7,-143.2],"shR":[47.5,-77.4],"elR":[14.9,21.8],"haR":[47.2,84.4],"shL":[36.4,-103.8],"elL":[-7,-9.9],"haL":[14.9,56.8],"hipR":[22.5,39.3],"knR":[88.3,164.1],"ftR":[27.1,298.9],"hipL":[15.9,30.4],"knL":[21.4,172.3],"ftL":[-74,282.6]},{"rootY":13.2,"hips":[0,0],"chest":[39.1,-75.9],"neck":[39.1,-75.9],"head":[69,-142.4],"shR":[49.1,-76.2],"elR":[16.5,22.9],"haR":[47.2,86.3],"shL":[36.5,-103.8],"elL":[-9.5,-11.3],"haL":[7.2,56.7],"hipR":[22.7,39.2],"knR":[85.2,165.8],"ftR":[22.8,300],"hipL":[16.1,30.3],"knL":[34.8,169.6],"ftL":[-66.3,274.8]},{"rootY":12.4,"hips":[0,0],"chest":[39,-75.9],"neck":[39,-75.9],"head":[68.9,-142.1],"shR":[48.8,-75.1],"elR":[16,24],"haR":[45.7,87.9],"shL":[36.4,-104.8],"elL":[-12.9,-14.2],"haL":[-1,54.5],"hipR":[22.9,38.9],"knR":[82.2,167.1],"ftR":[18.3,300.5],"hipL":[16.4,30.4],"knL":[48.9,166.2],"ftL":[-52.1,271.3]},{"rootY":11.5,"hips":[0,0],"chest":[39,-75.7],"neck":[39,-75.7],"head":[68.9,-141.9],"shR":[49.7,-73.7],"elR":[17.2,25.4],"haR":[46.1,89.6],"shL":[35.6,-105.8],"elL":[-15,-15.9],"haL":[-7.7,53.4],"hipR":[23.1,38.6],"knR":[78.9,168.4],"ftR":[14,301.3],"hipL":[16.8,30.4],"knL":[62.7,162.3],"ftL":[-29.6,275]},{"rootY":10.7,"hips":[0,0],"chest":[38.7,-75.8],"neck":[38.7,-75.8],"head":[68.3,-141.8],"shR":[49.5,-72.8],"elR":[18,26.7],"haR":[46.3,91.3],"shL":[35.1,-106.7],"elL":[-17.1,-17.8],"haL":[-13,51.9],"hipR":[23.1,38.4],"knR":[75.2,169.7],"ftR":[9.8,302.2],"hipL":[17.4,30.6],"knL":[74.1,159.1],"ftL":[-2.1,283.5]},{"rootY":9.5,"hips":[0,0],"chest":[37.9,-76.1],"neck":[37.9,-76.1],"head":[67.5,-141.9],"shR":[48.3,-72.9],"elR":[17.6,26.9],"haR":[45.6,91.6],"shL":[34.6,-107.3],"elL":[-18.7,-18.8],"haL":[-16.1,50.9],"hipR":[22.9,38.1],"knR":[70.8,171],"ftR":[5,303.3],"hipL":[18.2,30.6],"knL":[82.1,157],"ftL":[27.6,292.2]},{"rootY":8.9,"hips":[0,0],"chest":[36.9,-76.4],"neck":[36.9,-76.4],"head":[66.2,-142.3],"shR":[47.3,-73.7],"elR":[17.3,26.4],"haR":[45.3,91],"shL":[33.4,-107.3],"elL":[-19.8,-18.6],"haL":[-17.2,51.1],"hipR":[22.7,37.6],"knR":[66.4,171.9],"ftR":[0.3,304],"hipL":[19.3,31],"knL":[88.2,155.8],"ftL":[57.8,297.5]},{"rootY":8.1,"hips":[0,0],"chest":[35.3,-77.2],"neck":[35.3,-77.2],"head":[64,-143.2],"shR":[44.1,-75],"elR":[14.4,25.1],"haR":[42.5,89.8],"shL":[32.8,-107.5],"elL":[-19.3,-18.1],"haL":[-15.7,51.6],"hipR":[22.4,37.3],"knR":[61.7,173],"ftR":[-5.3,304.6],"hipL":[20.4,31],"knL":[91,155.6],"ftL":[81.5,299.3]},{"rootY":8.3,"hips":[0,0],"chest":[33.8,-77.8],"neck":[33.8,-77.8],"head":[61.7,-144.4],"shR":[41.2,-76.5],"elR":[11.5,23.7],"haR":[39.7,88.3],"shL":[32.5,-107.5],"elL":[-17.5,-16.8],"haL":[-11.6,52.8],"hipR":[21.7,36.8],"knR":[57.2,173.6],"ftR":[-11.2,304.6],"hipL":[21.5,31.4],"knL":[93.4,155.8],"ftL":[97.8,298.8]},{"rootY":8.1,"hips":[0,0],"chest":[33.3,-78.1],"neck":[33.3,-78.1],"head":[59.9,-145.6],"shR":[38.9,-77.9],"elR":[8.7,22.1],"haR":[36.6,86.9],"shL":[33.4,-106.8],"elL":[-14.1,-14.8],"haL":[-5.3,54.6],"hipR":[21.2,36.8],"knR":[51.9,174.7],"ftR":[-17.7,305.2],"hipL":[22.3,31.4],"knL":[94.9,155.9],"ftL":[103.6,298.5]},{"rootY":8.6,"hips":[0,0],"chest":[33.8,-78],"neck":[33.8,-78],"head":[60.4,-146.1],"shR":[37,-79.3],"elR":[5.6,20.4],"haR":[32.3,85.6],"shL":[36.4,-105.2],"elL":[-9.5,-12.4],"haL":[1.4,56.9],"hipR":[20,36.1],"knR":[46.5,174.8],"ftR":[-24.1,304.8],"hipL":[23.4,32.4],"knL":[97.1,156.6],"ftL":[99.4,299.7]},{"rootY":8.6,"hips":[0,0],"chest":[34.4,-77.8],"neck":[34.4,-77.8],"head":[62.2,-145.7],"shR":[34.2,-80.9],"elR":[1.8,18.4],"haR":[26.9,84.2],"shL":[41.1,-103.1],"elL":[-5.6,-10.7],"haL":[5.3,58.9],"hipR":[18,36],"knR":[40.9,175.3],"ftR":[-31.4,304.5],"hipL":[24.5,33],"knL":[98.3,157.6],"ftL":[93.1,301]},{"rootY":9,"hips":[0,0],"chest":[36.6,-76.8],"neck":[36.6,-76.8],"head":[65.9,-144.1],"shR":[32.1,-81.2],"elR":[-2,17.5],"haR":[22,83.5],"shL":[48.1,-100.7],"elL":[0.3,-9],"haL":[9.2,61],"hipR":[15.8,36.3],"knR":[35.1,175.8],"ftR":[-38.7,304.3],"hipL":[25.1,33.7],"knL":[100.4,158],"ftL":[87.1,301.7]},{"rootY":9,"hips":[0,0],"chest":[38,-76],"neck":[38,-76],"head":[69.5,-142.2],"shR":[29.1,-81.6],"elR":[-4.9,17.1],"haR":[17.8,83.3],"shL":[54.5,-98.4],"elL":[5.2,-7.8],"haL":[12.1,62.5],"hipR":[14.2,36.2],"knR":[28.6,175.8],"ftR":[-45.8,304],"hipL":[25.8,34.1],"knL":[102.8,158],"ftL":[80.7,301.1]},{"rootY":9.2,"hips":[0,0],"chest":[39.5,-75],"neck":[39.5,-75],"head":[72.2,-140.7],"shR":[26.8,-81.5],"elR":[-8.8,16.7],"haR":[13.4,82.8],"shL":[60.4,-96.4],"elL":[10.6,-6.6],"haL":[15.3,63.9],"hipR":[11.7,36.1],"knR":[22,175.5],"ftR":[-52.3,303.8],"hipL":[26.7,34.8],"knL":[104.7,158.4],"ftL":[74.8,300.4]},{"rootY":10.4,"hips":[0,0],"chest":[40.8,-74.2],"neck":[40.8,-74.2],"head":[74.4,-139.4],"shR":[24,-81.3],"elR":[-12.3,16.6],"haR":[9.6,82.7],"shL":[66.1,-94.9],"elL":[16.3,-5.7],"haL":[20.6,64.8],"hipR":[10,35.9],"knR":[16.7,174.9],"ftR":[-58.6,302.6],"hipL":[27,35.4],"knL":[106.6,158.3],"ftL":[69.8,298.9]},{"rootY":11.4,"hips":[0,0],"chest":[41.5,-73.7],"neck":[41.5,-73.7],"head":[75.1,-138.9],"shR":[22.7,-81.7],"elR":[-14.1,16],"haR":[7.1,82.2],"shL":[68.9,-93.4],"elL":[19.8,-4.2],"haL":[24.6,66.3],"hipR":[8.5,35.5],"knR":[11.1,174.2],"ftR":[-64.8,301.5],"hipL":[27.4,36],"knL":[107.6,158.7],"ftL":[64,297.5]},{"rootY":12.5,"hips":[0,0],"chest":[41.6,-73.7],"neck":[41.6,-73.7],"head":[76,-138.4],"shR":[19.9,-82.8],"elR":[-17.3,14.8],"haR":[3.8,81],"shL":[71.9,-92.3],"elL":[24.1,-2.6],"haL":[29.5,67.9],"hipR":[7.1,35.2],"knR":[6.2,173.4],"ftR":[-69.7,300.6],"hipL":[27.6,36.5],"knL":[107.9,159.3],"ftL":[59.7,296.7]},{"rootY":13.1,"hips":[0,0],"chest":[42.2,-73.4],"neck":[42.2,-73.4],"head":[75.3,-138.8],"shR":[17.5,-85.4],"elR":[-19.8,12.2],"haR":[1.1,78.5],"shL":[75.9,-89.1],"elL":[29.1,0.9],"haL":[35.2,71.3],"hipR":[6,34.9],"knR":[0.8,172.6],"ftR":[-74.9,299.9],"hipL":[27.6,37],"knL":[107.5,160.1],"ftL":[54.7,295.8]},{"rootY":13.6,"hips":[0,0],"chest":[42.1,-73.3],"neck":[42.1,-73.3],"head":[73.8,-139.4],"shR":[20.1,-84.1],"elR":[-17.1,13.5],"haR":[3.3,80],"shL":[73.4,-90],"elL":[27.6,0.5],"haL":[33.9,70.9],"hipR":[5.3,34.7],"knR":[-3.9,172],"ftR":[-78.7,299.7],"hipL":[27.4,37.5],"knL":[107,160.8],"ftL":[51.2,295.4]},{"rootY":13.7,"hips":[0,0],"chest":[43,-72.9],"neck":[43,-72.9],"head":[70.8,-140.3],"shR":[20.3,-84.1],"elR":[-17.3,13.4],"haR":[3.4,79.8],"shL":[74.7,-89.4],"elL":[28.8,1.2],"haL":[34.9,71.6],"hipR":[4.4,34.4],"knR":[-8.3,171.5],"ftR":[-81.5,299.8],"hipL":[27.2,37.9],"knL":[106.3,161.5],"ftL":[48.6,295.3]},{"rootY":13.4,"hips":[0,0],"chest":[42.9,-72.9],"neck":[42.9,-72.9],"head":[69.8,-139.1],"shR":[21.5,-84.7],"elR":[-17,12.4],"haR":[4.6,78.7],"shL":[73.8,-88.7],"elL":[28.1,2.2],"haL":[33.7,72.7],"hipR":[4,34.5],"knR":[-12.7,171.2],"ftR":[-84.6,300.1],"hipL":[27,38.1],"knL":[105.1,162.3],"ftL":[45.8,295.5]},{"rootY":13.5,"hips":[0,0],"chest":[43.7,-72.7],"neck":[43.7,-72.7],"head":[71.9,-136.9],"shR":[24.7,-84.2],"elR":[-16,12.1],"haR":[5.6,78.5],"shL":[71.9,-88.8],"elL":[25.3,2.1],"haL":[31,72.5],"hipR":[4.1,34.2],"knR":[-16.3,170.7],"ftR":[-86.8,300.1],"hipL":[26.4,38.6],"knL":[104,163],"ftL":[44,295.8]},{"rootY":13.9,"hips":[0,0],"chest":[43,-73.2],"neck":[43,-73.2],"head":[72.8,-136.2],"shR":[28.2,-85.6],"elR":[-13.8,10],"haR":[6.8,77],"shL":[67.5,-88.3],"elL":[20.5,2.9],"haL":[26.1,73.4],"hipR":[4.9,34.4],"knR":[-19.7,170.3],"ftR":[-89.9,299.9],"hipL":[25.3,38.8],"knL":[102.8,163.4],"ftL":[41.7,295.8]},{"rootY":14.5,"hips":[0,0],"chest":[43.2,-73.3],"neck":[43.2,-73.3],"head":[73.9,-136],"shR":[32.4,-86],"elR":[-10.8,9.1],"haR":[9.3,76.3],"shL":[63.7,-88.2],"elL":[16.3,3.6],"haL":[22.3,74],"hipR":[5.9,34.1],"knR":[-22.2,169.6],"ftR":[-92.3,299.1],"hipL":[24.6,39],"knL":[102.3,163.5],"ftL":[39.6,295.3]},{"rootY":15.1,"hips":[0,0],"chest":[43.2,-73.5],"neck":[43.2,-73.5],"head":[74.3,-136.4],"shR":[36.8,-86.4],"elR":[-7.5,8],"haR":[12.1,75.4],"shL":[59.2,-88.3],"elL":[11.1,3.7],"haL":[17.2,74.1],"hipR":[7,33.8],"knR":[-25.4,168.7],"ftR":[-95.1,298.3],"hipL":[23.8,39.3],"knL":[101.8,163.6],"ftL":[37.2,294.4]},{"rootY":15.7,"hips":[0,0],"chest":[43.6,-73.5],"neck":[43.6,-73.5],"head":[75.3,-136.5],"shR":[41.3,-86.3],"elR":[-1.6,8.5],"haR":[17.5,76.1],"shL":[55.5,-88.4],"elL":[6.4,3.5],"haL":[12.3,73.9],"hipR":[8.2,33.7],"knR":[-29.6,167.5],"ftR":[-98.2,297.7],"hipL":[22.7,39.5],"knL":[101,163.6],"ftL":[35.2,293.9]},{"rootY":15.9,"hips":[0,0],"chest":[43,-74],"neck":[43,-74],"head":[75,-137.2],"shR":[44.2,-86.9],"elR":[3,8.5],"haR":[22.9,75.8],"shL":[51.5,-88.7],"elL":[2,3.2],"haL":[6.6,73.7],"hipR":[9.1,33.7],"knR":[-35.8,165.6],"ftR":[-101.7,297.1],"hipL":[22,39.7],"knL":[99.6,164.2],"ftL":[32.2,293.6]},{"rootY":16.3,"hips":[0,0],"chest":[43.3,-73.9],"neck":[43.3,-73.9],"head":[73.4,-138.8],"shR":[46.8,-87.1],"elR":[7.8,8.9],"haR":[29.1,75.8],"shL":[49.3,-88.4],"elL":[-0.6,3.3],"haL":[3.1,73.9],"hipR":[9.6,34],"knR":[-45.1,162.5],"ftR":[-105.1,296.4],"hipL":[21,39.8],"knL":[98,164.6],"ftL":[29.2,293.3]},{"rootY":16.7,"hips":[0,0],"chest":[43.2,-74],"neck":[43.2,-74],"head":[69.6,-141.8],"shR":[48,-87.6],"elR":[12.6,9.5],"haR":[35.7,75.9],"shL":[47.8,-88.2],"elL":[-2,3.7],"haL":[0.9,74.4],"hipR":[10,34],"knR":[-47.8,161.3],"ftR":[-108.4,294.8],"hipL":[20.2,40.1],"knL":[97.1,165],"ftL":[26.3,292.6]},{"rootY":17.1,"hips":[0,0],"chest":[43.2,-74],"neck":[43.2,-74],"head":[68,-142.5],"shR":[48.3,-88],"elR":[16.3,10],"haR":[41.5,75.7],"shL":[47.4,-87.7],"elL":[-2.8,4],"haL":[-0.3,74.7],"hipR":[10.2,33.9],"knR":[-49.1,160.5],"ftR":[-111.4,293.4],"hipL":[19.8,40.2],"knL":[96.2,165.4],"ftL":[23.8,292.1]},{"rootY":17.4,"hips":[0,0],"chest":[43.5,-73.8],"neck":[43.5,-73.8],"head":[69.2,-141.3],"shR":[47.7,-88.2],"elR":[18.9,10.7],"haR":[47.3,75.2],"shL":[48.8,-87.1],"elL":[-2.6,4],"haL":[-0.2,74.7],"hipR":[9.7,33.9],"knR":[-50.5,160.1],"ftR":[-113.7,292.6],"hipL":[19.4,40.5],"knL":[95.7,165.8],"ftL":[22,291.8]},{"rootY":17.7,"hips":[0,0],"chest":[44.3,-73.4],"neck":[44.3,-73.4],"head":[71,-140.2],"shR":[45.8,-87.9],"elR":[19.2,11.9],"haR":[50.9,74.9],"shL":[52.2,-86.7],"elL":[-0.2,3.9],"haL":[1,74.6],"hipR":[8.9,33.9],"knR":[-51.8,159.8],"ftR":[-115.6,292],"hipL":[19.7,40.6],"knL":[95.2,166.4],"ftL":[20.4,291.7]},{"rootY":17.5,"hips":[0,0],"chest":[44.7,-73.2],"neck":[44.7,-73.2],"head":[72.1,-139.7],"shR":[43.9,-87.2],"elR":[19.6,13.5],"haR":[53.9,75.1],"shL":[55.1,-86.9],"elL":[2.5,3.5],"haL":[3,74.1],"hipR":[8,34],"knR":[-53.1,159.8],"ftR":[-117.2,291.8],"hipL":[19.8,40.7],"knL":[94.3,167.1],"ftL":[18.5,291.9]},{"rootY":17.2,"hips":[0,0],"chest":[44.9,-73],"neck":[44.9,-73],"head":[72.7,-139.7],"shR":[43,-86.4],"elR":[19.5,14.7],"haR":[54.8,75.7],"shL":[56.7,-87.2],"elL":[4.8,3.4],"haL":[5.5,74.1],"hipR":[7.4,34.1],"knR":[-53.9,159.7],"ftR":[-118.3,291.5],"hipL":[19.8,40.8],"knL":[93.5,167.7],"ftL":[17.4,292.1]},{"rootY":17.1,"hips":[0,0],"chest":[44.4,-73.4],"neck":[44.4,-73.4],"head":[72.3,-140.4],"shR":[41.6,-86.3],"elR":[18.3,15],"haR":[53.4,76.1],"shL":[57.1,-88],"elL":[5.7,2.8],"haL":[7.5,73.5],"hipR":[6.9,34.1],"knR":[-54.9,159.3],"ftR":[-119.8,290.8],"hipL":[19.9,40.9],"knL":[92.5,168.4],"ftL":[15.7,292.5]},{"rootY":17.3,"hips":[0,0],"chest":[43.8,-73.8],"neck":[43.8,-73.8],"head":[70.7,-141.7],"shR":[40.3,-86.3],"elR":[15.8,14.7],"haR":[49.6,76.6],"shL":[56.6,-88.9],"elL":[6,2.3],"haL":[9.3,72.9],"hipR":[7.2,34.1],"knR":[-55.9,158.4],"ftR":[-122.1,288.9],"hipL":[20.1,40.7],"knL":[90.8,169.2],"ftL":[12,292.1]},{"rootY":17.1,"hips":[0,0],"chest":[42.9,-74.3],"neck":[42.9,-74.3],"head":[69,-142.5],"shR":[39.8,-87],"elR":[12.7,13.2],"haR":[44,76.4],"shL":[55.1,-89.3],"elL":[5.9,2.8],"haL":[10.2,73.3],"hipR":[7.9,33.8],"knR":[-50.4,159.7],"ftR":[-124,286.3],"hipL":[20.6,40.5],"knL":[88.3,170.6],"ftL":[8.1,292.5]},{"rootY":15.6,"hips":[0,0],"chest":[42.9,-74.3],"neck":[42.9,-74.3],"head":[69.3,-142.2],"shR":[40.3,-87.7],"elR":[9.8,11.5],"haR":[36.8,76.4],"shL":[54.4,-88.7],"elL":[6.2,4],"haL":[11.6,74.4],"hipR":[8.7,33.9],"knR":[-26.6,165.9],"ftR":[-120.6,279.4],"hipL":[21.7,39.8],"knL":[84.4,172.2],"ftL":[4.6,294.3]},{"rootY":13.3,"hips":[0,0],"chest":[43.3,-74],"neck":[43.3,-74],"head":[70.3,-141.7],"shR":[41.2,-88.2],"elR":[8.2,10.2],"haR":[31.1,76.2],"shL":[54.3,-87.6],"elL":[6.8,5.5],"haL":[14,75.7],"hipR":[9.9,34.2],"knR":[-0.2,168],"ftR":[-108.3,269.2],"hipL":[22.7,38.8],"knL":[79.6,173.6],"ftL":[1.7,297]},{"rootY":11.8,"hips":[0,0],"chest":[42.7,-74.2],"neck":[42.7,-74.2],"head":[70.2,-141.7],"shR":[40.3,-89],"elR":[5.5,8.6],"haR":[25.1,75.3],"shL":[53.9,-87.3],"elL":[7.7,6.4],"haL":[17.5,76.2],"hipR":[11.5,34.5],"knR":[26.2,165.8],"ftR":[-87.2,261.3],"hipL":[23.5,37.7],"knL":[75.7,174.2],"ftL":[-1.2,298.3]},{"rootY":11.6,"hips":[0,0],"chest":[42.4,-74.3],"neck":[42.4,-74.3],"head":[69.9,-141.8],"shR":[40,-89.3],"elR":[4.1,7.9],"haR":[21.8,74.7],"shL":[53.2,-87.3],"elL":[8.6,7.2],"haL":[20.6,76.7],"hipR":[12.9,34.7],"knR":[49.8,160.9],"ftR":[-56.1,264.3],"hipL":[23.6,37.1],"knL":[72.9,174.7],"ftL":[-3.9,298.8]},{"rootY":11.5,"hips":[0,0],"chest":[41.4,-74.8],"neck":[41.4,-74.8],"head":[68.6,-142.5],"shR":[39.8,-89.8],"elR":[3.3,7.2],"haR":[19.9,74.1],"shL":[51.4,-87.8],"elL":[7.3,7],"haL":[20.7,76.2],"hipR":[13.9,34.6],"knR":[67.8,155.3],"ftR":[-19,275.4],"hipL":[24.1,36.4],"knL":[69.8,175.3],"ftL":[-7.9,298.8]},{"rootY":11.4,"hips":[0,0],"chest":[40.7,-75.2],"neck":[40.7,-75.2],"head":[66.9,-143.3],"shR":[38.8,-89.8],"elR":[3,7.6],"haR":[18.9,74.5],"shL":[50.4,-88.8],"elL":[6.9,6.2],"haL":[20,75.5],"hipR":[15,34.9],"knR":[80.4,151.8],"ftR":[19.9,287.1],"hipL":[24,35.8],"knL":[65.5,176],"ftL":[-12.8,299.1]},{"rootY":10.1,"hips":[0,0],"chest":[39,-76.1],"neck":[39,-76.1],"head":[64.6,-144.4],"shR":[36.9,-89.8],"elR":[0.9,7.5],"haR":[18.3,74.2],"shL":[48.3,-90.7],"elL":[5.1,4.5],"haL":[17.4,74],"hipR":[16.5,34.9],"knR":[87.1,151],"ftR":[55.3,294.9],"hipL":[23.6,35.4],"knL":[59.4,177.3],"ftL":[-18.6,300.6]},{"rootY":8.8,"hips":[0,0],"chest":[37.8,-76.7],"neck":[37.8,-76.7],"head":[62.1,-145.6],"shR":[37.4,-89.6],"elR":[2.1,8],"haR":[20,74.8],"shL":[44.9,-92.3],"elL":[1.7,2.9],"haL":[13.3,72.5],"hipR":[16.8,35.2],"knR":[89.2,151.5],"ftR":[83.5,297.6],"hipL":[23.3,35.1],"knL":[52.8,178.6],"ftL":[-25.2,301.9]},{"rootY":7.4,"hips":[0,0],"chest":[36.5,-77.3],"neck":[36.5,-77.3],"head":[59.6,-146.7],"shR":[38.5,-89.1],"elR":[4.5,9.1],"haR":[23.6,75.8],"shL":[41,-94],"elL":[-2.1,1.2],"haL":[9.4,70.9],"hipR":[18.4,35.5],"knR":[90.7,153.1],"ftR":[96.7,298.7],"hipL":[22,34.8],"knL":[44.2,179.7],"ftL":[-33.4,303.2]},{"rootY":7.4,"hips":[0,0],"chest":[35.5,-77.9],"neck":[35.5,-77.9],"head":[57.6,-147.4],"shR":[40,-88.4],"elR":[6.2,10],"haR":[25.9,76.9],"shL":[37.2,-95.9],"elL":[-6,-0.7],"haL":[5,69.1],"hipR":[19.4,35.8],"knR":[91.2,154.4],"ftR":[92,300.7],"hipL":[21.4,34.3],"knL":[36.2,180.2],"ftL":[-42.8,302.9]},{"rootY":7.3,"hips":[0,0],"chest":[35.6,-77.8],"neck":[35.6,-77.8],"head":[57.5,-147.5],"shR":[42.4,-87.2],"elR":[8.9,11.4],"haR":[29.2,78.4],"shL":[35.3,-97.1],"elL":[-8.7,-2.2],"haL":[0.8,67.8],"hipR":[20.2,36.3],"knR":[92.3,155.6],"ftR":[84.2,302.2],"hipL":[20.1,34],"knL":[28.6,180.5],"ftL":[-51.2,302.7]},{"rootY":7.5,"hips":[0,0],"chest":[36.4,-77.5],"neck":[36.4,-77.5],"head":[58.6,-147],"shR":[44.8,-85.6],"elR":[11.5,13],"haR":[32.5,80],"shL":[34.6,-98],"elL":[-10.6,-3.7],"haL":[-3.3,66.5],"hipR":[21.2,36.7],"knR":[93.7,156.5],"ftR":[76.5,302.7],"hipL":[18.6,33.7],"knL":[20.4,180.4],"ftL":[-60.6,301.7]},{"rootY":7.5,"hips":[0,0],"chest":[37.4,-77.1],"neck":[37.4,-77.1],"head":[60.2,-146.4],"shR":[47.5,-83.6],"elR":[14.5,15],"haR":[36.2,81.9],"shL":[34.3,-98.9],"elL":[-10.9,-4.6],"haL":[-6,65.7],"hipR":[21.8,37.4],"knR":[94.8,157.5],"ftR":[69.3,302.7],"hipL":[17,33.3],"knL":[13.1,179.8],"ftL":[-68.4,300.8]},{"rootY":7.9,"hips":[0,0],"chest":[38.6,-76.5],"neck":[38.6,-76.5],"head":[61.9,-145.5],"shR":[50.3,-81.6],"elR":[17.1,16.9],"haR":[38.8,83.9],"shL":[34.1,-99.8],"elL":[-13.1,-6.4],"haL":[-8.9,64],"hipR":[21.9,38.1],"knR":[94.9,158.5],"ftR":[62.2,302.6],"hipL":[15.6,33.1],"knL":[6.6,179.2],"ftL":[-75.8,299.4]},{"rootY":8.7,"hips":[0,0],"chest":[39.5,-76.1],"neck":[39.5,-76.1],"head":[63.7,-144.7],"shR":[52.7,-79.6],"elR":[19.2,18.9],"haR":[40.4,86.1],"shL":[33.8,-100.9],"elL":[-15.2,-8.5],"haL":[-11.5,61.9],"hipR":[22,38.6],"knR":[94.9,159.4],"ftR":[55.6,302],"hipL":[14.7,32.6],"knL":[0.9,178.1],"ftL":[-82.4,297.5]},{"rootY":9.5,"hips":[0,0],"chest":[40.5,-75.6],"neck":[40.5,-75.6],"head":[65.1,-144],"shR":[54.4,-77.5],"elR":[20,20.7],"haR":[40.9,88],"shL":[34.3,-101.9],"elL":[-16.2,-10.3],"haL":[-13.1,60.1],"hipR":[21.8,39.3],"knR":[94.6,160.3],"ftR":[49.7,301.3],"hipL":[13.8,32.1],"knL":[-4.7,176.8],"ftL":[-88.5,295.6]},{"rootY":10.7,"hips":[0,0],"chest":[41.3,-75.2],"neck":[41.3,-75.2],"head":[66.6,-143.2],"shR":[56.1,-75.8],"elR":[20.6,22.1],"haR":[38.9,90.2],"shL":[34.3,-102.7],"elL":[-17.4,-11.9],"haL":[-14.7,58.5],"hipR":[21.8,39.8],"knR":[94.5,160.9],"ftR":[43.8,300],"hipL":[12.9,31.8],"knL":[-9.4,175.5],"ftL":[-94.2,293.5]},{"rootY":13.2,"hips":[0,0],"chest":[41.5,-75],"neck":[41.5,-75],"head":[67.4,-142.8],"shR":[56.6,-74.6],"elR":[20.7,23.3],"haR":[40,91.1],"shL":[34.5,-103.5],"elL":[-18,-13.2],"haL":[-15.9,57.1],"hipR":[21.9,40.1],"knR":[94.1,161.5],"ftR":[37.9,298.6],"hipL":[12.3,31.5],"knL":[-11.5,174.5],"ftL":[-99.9,289.6]},{"rootY":13.2,"hips":[0,0],"chest":[41.8,-74.8],"neck":[41.8,-74.8],"head":[67.8,-142.5],"shR":[56.8,-73.3],"elR":[20.1,24.4],"haR":[38.5,92.4],"shL":[35.2,-104.2],"elL":[-17.7,-14.3],"haL":[-16.6,56],"hipR":[21.9,40.1],"knR":[91.6,162.9],"ftR":[32.6,298.9],"hipL":[12.2,31.6],"knL":[-8.3,174.5],"ftL":[-102.2,285.1]},{"rootY":11.4,"hips":[0,0],"chest":[42.5,-74.3],"neck":[42.5,-74.3],"head":[68.4,-142.3],"shR":[57,-71.9],"elR":[20.1,25.7],"haR":[38.1,93.8],"shL":[36.5,-104.5],"elL":[-17,-15],"haL":[-16.4,55.1],"hipR":[22,40],"knR":[87.6,164.9],"ftR":[27.7,300.6],"hipL":[12.2,31.6],"knL":[2,174.7],"ftL":[-99.9,278.5]},{"rootY":9.6,"hips":[0,0],"chest":[43.4,-73.7],"neck":[43.4,-73.7],"head":[69.4,-141.8],"shR":[57.6,-70.4],"elR":[20.2,27.1],"haR":[39.1,94.9],"shL":[37.7,-104.7],"elL":[-16.3,-15.7],"haL":[-15.9,54.4],"hipR":[22.4,39.5],"knR":[83.4,166.7],"ftR":[23.5,302.4],"hipL":[12.7,31.8],"knL":[19.5,173.8],"ftL":[-90.6,269.6]},{"rootY":8.6,"hips":[0,0],"chest":[43.9,-73.2],"neck":[43.9,-73.2],"head":[70,-141.2],"shR":[57,-69.1],"elR":[19.7,28.5],"haR":[38.1,96.4],"shL":[39.5,-105],"elL":[-15.2,-16.5],"haL":[-14.7,53.5],"hipR":[22.6,39.2],"knR":[80.3,167.9],"ftR":[20.1,303.4],"hipL":[13.3,31.8],"knL":[38,170.4],"ftL":[-74.9,262.3]},{"rootY":8,"hips":[0,0],"chest":[44.3,-72.8],"neck":[44.3,-72.8],"head":[70.7,-140.6],"shR":[56.4,-67.7],"elR":[19.4,30],"haR":[40,97.3],"shL":[40.9,-105.4],"elL":[-14.2,-17.4],"haL":[-13.2,52.5],"hipR":[22.7,39],"knR":[78.3,168.7],"ftR":[16.9,303.5],"hipL":[14.2,31.7],"knL":[55.5,164.9],"ftL":[-51.8,261.9]},{"rootY":8.2,"hips":[0,0],"chest":[44.6,-72.4],"neck":[44.6,-72.4],"head":[71.4,-139.8],"shR":[56.5,-66.4],"elR":[20.2,31.6],"haR":[41.2,98.8],"shL":[41.5,-105.8],"elL":[-13.9,-18.3],"haL":[-11.8,51.5],"hipR":[22.8,38.7],"knR":[77.1,169],"ftR":[14.3,303.1],"hipL":[15,31.7],"knL":[71.5,158.3],"ftL":[-22.6,268]},{"rootY":8.6,"hips":[0,0],"chest":[44.7,-72.1],"neck":[44.7,-72.1],"head":[72.4,-139.1],"shR":[56,-65.3],"elR":[19.9,32.7],"haR":[41.3,99.7],"shL":[42.3,-106.2],"elL":[-13.5,-19.2],"haL":[-9.7,50.2],"hipR":[22.8,38.6],"knR":[75.9,169.4],"ftR":[11.2,302.4],"hipL":[15.9,31.3],"knL":[83.7,152.7],"ftL":[9.2,277.5]},{"rootY":9.5,"hips":[0,0],"chest":[44.6,-71.9],"neck":[44.6,-71.9],"head":[73.5,-138.2],"shR":[55.2,-64.4],"elR":[19.5,33.8],"haR":[41.9,100.5],"shL":[43,-106.6],"elL":[-12.9,-20.1],"haL":[-6.3,48.9],"hipR":[22.6,38.4],"knR":[74.7,169.7],"ftR":[7.8,301.5],"hipL":[17,31.3],"knL":[92.3,149.1],"ftL":[40.8,285.6]},{"rootY":10.2,"hips":[0,0],"chest":[43.6,-72.2],"neck":[43.6,-72.2],"head":[73.1,-138.1],"shR":[52.8,-64.6],"elR":[17.3,33.7],"haR":[40,100.3],"shL":[43.6,-106.9],"elL":[-12.2,-20.8],"haL":[-2.3,47.7],"hipR":[22,38.3],"knR":[73.3,169.9],"ftR":[4.8,300.8],"hipL":[18.1,31.3],"knL":[97.3,147.8],"ftL":[69.6,290.6]},{"rootY":10.6,"hips":[0,0],"chest":[42.9,-72.3],"neck":[42.9,-72.3],"head":[73,-137.7],"shR":[50.6,-64.8],"elR":[15.5,33.6],"haR":[38.5,100.2],"shL":[44.1,-107],"elL":[-10.7,-20.7],"haL":[1.5,47.4],"hipR":[21.6,38],"knR":[71.7,170],"ftR":[1.7,299.7],"hipL":[19.1,31.5],"knL":[98.7,148.4],"ftL":[89.4,292.5]},{"rootY":10.5,"hips":[0,0],"chest":[42,-72.8],"neck":[42,-72.8],"head":[72.5,-137.5],"shR":[47.1,-65.7],"elR":[12.7,33],"haR":[35.7,99.6],"shL":[45.4,-107.2],"elL":[-7.6,-20.1],"haL":[5.5,47.9],"hipR":[20.6,37.8],"knR":[68.8,170.4],"ftR":[-1.2,299.9],"hipL":[20.5,31.7],"knL":[98.2,150],"ftL":[100,292.7]},{"rootY":10.1,"hips":[0,0],"chest":[40.8,-73.3],"neck":[40.8,-73.3],"head":[71.7,-137.6],"shR":[43.8,-67.6],"elR":[9.8,31.2],"haR":[32.6,97.9],"shL":[46.3,-106.4],"elL":[-4.8,-18.6],"haL":[8.5,49.5],"hipR":[19.9,37.7],"knR":[64.7,171.5],"ftR":[-6.4,300.7],"hipL":[21.7,31.7],"knL":[97.4,151.1],"ftL":[102.4,292.5]},{"rootY":9.9,"hips":[0,0],"chest":[40.7,-73.5],"neck":[40.7,-73.5],"head":[71.7,-137.8],"shR":[43.8,-69.2],"elR":[8,29],"haR":[30.2,95.9],"shL":[46.1,-105.3],"elL":[-3.4,-16.5],"haL":[10.4,51.6],"hipR":[20.5,37.6],"knR":[61.3,172.6],"ftR":[-12.3,300.8],"hipL":[21.5,31.4],"knL":[95.4,151.3],"ftL":[98.4,292.9]},{"rootY":10.1,"hips":[0,0],"chest":[41.3,-73.5],"neck":[41.3,-73.5],"head":[72.6,-137.7],"shR":[45.2,-70.4],"elR":[7.6,27.1],"haR":[28.2,94.4],"shL":[46.1,-104.1],"elL":[-3.4,-14.7],"haL":[11.3,53.3],"hipR":[20.3,37.4],"knR":[57.8,173.3],"ftR":[-17.3,300.8],"hipL":[20.8,32.3],"knL":[94.9,151.4],"ftL":[93,293.3]},{"rootY":10.5,"hips":[0,0],"chest":[42.5,-73.3],"neck":[42.5,-73.3],"head":[74,-137.7],"shR":[48,-71.6],"elR":[8.5,25],"haR":[26.8,92.9],"shL":[45.9,-102.5],"elL":[-4.2,-12.8],"haL":[10.3,55.4],"hipR":[20.7,37],"knR":[53.5,174.1],"ftR":[-24.1,300.4],"hipL":[20.1,32.8],"knL":[94.3,151.6],"ftL":[86.3,294.2]},{"rootY":11.3,"hips":[0,0],"chest":[44.1,-72.7],"neck":[44.1,-72.7],"head":[76.6,-136.8],"shR":[52.6,-72.2],"elR":[11.1,23.3],"haR":[27.5,91.5],"shL":[45.1,-100.6],"elL":[-6.7,-11.3],"haL":[6.5,57.3],"hipR":[20.8,36.8],"knR":[49,174.7],"ftR":[-30.7,299.7],"hipL":[19.1,33.6],"knL":[94.2,151.9],"ftL":[80.3,295.4]},{"rootY":12.4,"hips":[0,0],"chest":[45.3,-72.3],"neck":[45.3,-72.3],"head":[78.8,-136.1],"shR":[56.6,-73.2],"elR":[14.4,21.5],"haR":[29,90],"shL":[43.8,-98.7],"elL":[-9.6,-9.9],"haL":[1.5,59.3],"hipR":[22.1,36.4],"knR":[43.4,175.3],"ftR":[-39,298.3],"hipL":[17.8,33.9],"knL":[93.7,151.7],"ftL":[73.1,295.5]},{"rootY":13.8,"hips":[0,0],"chest":[46.1,-72],"neck":[46.1,-72],"head":[80.4,-135.6],"shR":[60.7,-74.6],"elR":[18.4,19.6],"haR":[32.8,88.1],"shL":[41.9,-96.7],"elL":[-13.9,-8.7],"haL":[-4.3,60.9],"hipR":[21.8,36.3],"knR":[37.4,175.5],"ftR":[-46.7,296.8],"hipL":[17.3,34.6],"knL":[96.1,151.2],"ftL":[68.1,294.3]},{"rootY":15.4,"hips":[0,0],"chest":[46.1,-72],"neck":[46.1,-72],"head":[80.7,-135.5],"shR":[63.7,-76.2],"elR":[23.4,18.5],"haR":[38.3,87],"shL":[38.9,-95.1],"elL":[-17.8,-7.4],"haL":[-10.2,62.5],"hipR":[21.7,35.8],"knR":[30.3,175.1],"ftR":[-55.5,294.5],"hipL":[17.2,35.2],"knL":[97.6,152.2],"ftL":[60.8,293.5]},{"rootY":16.4,"hips":[0,0],"chest":[45.3,-72.4],"neck":[45.3,-72.4],"head":[79.3,-136.4],"shR":[65.7,-78.1],"elR":[26.6,16.7],"haR":[43.6,84.9],"shL":[35.4,-93.9],"elL":[-20.9,-5.8],"haL":[-15,64.5],"hipR":[21.9,35.4],"knR":[23.5,174.4],"ftR":[-63.9,291.6],"hipL":[16.7,35.8],"knL":[96.8,154.3],"ftL":[52.2,293.1]},{"rootY":15.4,"hips":[0,0],"chest":[45,-72.3],"neck":[45,-72.3],"head":[77,-137.4],"shR":[67.2,-80.6],"elR":[29.7,14.6],"haR":[49.4,82.2],"shL":[33,-91.4],"elL":[-23.2,-3.1],"haL":[-18.3,67.3],"hipR":[21.9,35.2],"knR":[19.5,173.7],"ftR":[-70.8,287.5],"hipL":[16.4,36.2],"knL":[93.4,157.6],"ftL":[43.5,294.4]},{"rootY":13.5,"hips":[0,0],"chest":[44.6,-72.3],"neck":[44.6,-72.3],"head":[74.7,-138],"shR":[68.1,-82.9],"elR":[29.4,11.6],"haR":[52.3,78.3],"shL":[31,-89],"elL":[-24.2,-0.2],"haL":[-20.2,70.3],"hipR":[21.9,35.2],"knR":[24.3,173.2],"ftR":[-73,281],"hipL":[15.7,36.6],"knL":[88.9,161.1],"ftL":[35.8,296.4]},{"rootY":10.4,"hips":[0,0],"chest":[44,-72.3],"neck":[44,-72.3],"head":[72.3,-138.5],"shR":[67.8,-84.9],"elR":[28.3,9],"haR":[54.3,74.5],"shL":[29.8,-87],"elL":[-24.5,2.3],"haL":[-20.4,72.8],"hipR":[22,35],"knR":[33.9,172.3],"ftR":[-69.5,275.2],"hipL":[16,36.6],"knL":[83.8,165],"ftL":[28.9,299.3]},{"rootY":8.7,"hips":[0,0],"chest":[43.6,-72.3],"neck":[43.6,-72.3],"head":[70.3,-138.9],"shR":[66.7,-86.1],"elR":[27,7.7],"haR":[55.6,72.1],"shL":[29.8,-86],"elL":[-23.4,4],"haL":[-17.7,74.5],"hipR":[22.2,35.1],"knR":[44.7,170.7],"ftR":[-61,272.5],"hipL":[16,36.4],"knL":[79.6,167.7],"ftL":[23.6,301.4]},{"rootY":7.8,"hips":[0,0],"chest":[43.6,-72.2],"neck":[43.6,-72.2],"head":[68.6,-139.3],"shR":[64.9,-87.1],"elR":[24.9,6.5],"haR":[54.5,70.4],"shL":[31.6,-84.7],"elL":[-20.3,6],"haL":[-11.9,76.2],"hipR":[21.9,34.9],"knR":[56.1,168.3],"ftR":[-43.9,276.2],"hipL":[16.4,36.6],"knL":[76.9,169.9],"ftL":[18.4,302.5]},{"rootY":7.3,"hips":[0,0],"chest":[43.4,-72.4],"neck":[43.4,-72.4],"head":[66.9,-140.2],"shR":[61.9,-88.6],"elR":[21.6,5.1],"haR":[50.2,69.5],"shL":[33.8,-83.8],"elL":[-16.6,7.8],"haL":[-4.2,77.4],"hipR":[21.3,34.7],"knR":[66.5,164.8],"ftR":[-20.1,284],"hipL":[17.5,36.5],"knL":[74.4,171.6],"ftL":[12.9,302.8]},{"rootY":7.5,"hips":[0,0],"chest":[43.2,-72.7],"neck":[43.2,-72.7],"head":[65.4,-141.2],"shR":[58,-89.8],"elR":[15.6,3.3],"haR":[42.1,68.4],"shL":[37,-83.4],"elL":[-12.3,8.9],"haL":[7,76.9],"hipR":[20.7,35],"knR":[76,160.8],"ftR":[9.4,292],"hipL":[18.4,36.1],"knL":[71.4,172.9],"ftL":[6.9,302.6]},{"rootY":7.1,"hips":[0,0],"chest":[41.7,-73.8],"neck":[41.7,-73.8],"head":[62.3,-143],"shR":[53.1,-90.9],"elR":[8.3,0.9],"haR":[32.9,66.4],"shL":[38.2,-84.6],"elL":[-9.4,8.6],"haL":[20.2,72.7],"hipR":[20.4,34.6],"knR":[82.5,157.2],"ftR":[40.1,297.6],"hipL":[19.6,36],"knL":[68.2,174.4],"ftL":[0.2,302.3]},{"rootY":7.1,"hips":[0,0],"chest":[39.9,-74.9],"neck":[39.9,-74.9],"head":[57.8,-145],"shR":[48.2,-92.3],"elR":[-0.4,-2.2],"haR":[24,63.2],"shL":[38.8,-85.7],"elL":[-4.9,9.2],"haL":[34.5,67.4],"hipR":[20.5,34.4],"knR":[87.1,154.8],"ftR":[68.4,299.5],"hipL":[20.3,35.6],"knL":[63.9,175.8],"ftL":[-7,302.1]},{"rootY":6.9,"hips":[0,0],"chest":[37.7,-76.2],"neck":[37.7,-76.2],"head":[52.7,-147.2],"shR":[43.4,-93.4],"elR":[-6.2,-3.4],"haR":[17.4,62.2],"shL":[38,-87.6],"elL":[0.5,9.8],"haL":[46.2,62.8],"hipR":[20.5,34.2],"knR":[89.1,153.5],"ftR":[91.1,298.8],"hipL":[21.3,35.3],"knL":[58.7,177.1],"ftL":[-15.2,301.9]},{"rootY":6.6,"hips":[0,0],"chest":[35.3,-77.5],"neck":[35.3,-77.5],"head":[47.7,-149.1],"shR":[39.3,-94.1],"elR":[-9.6,-3.3],"haR":[13.1,62.6],"shL":[36.3,-89.7],"elL":[4.5,9.6],"haL":[53.1,59.5],"hipR":[21.1,34.4],"knR":[91.2,153.2],"ftR":[105.2,297.3],"hipL":[21.1,34.8],"knL":[53.1,178],"ftL":[-22.8,301.7]},{"rootY":7.9,"hips":[0,0],"chest":[34.7,-78.1],"neck":[34.7,-78.1],"head":[44.8,-150.1],"shR":[36.8,-94],"elR":[-10.5,-1.8],"haR":[12,64.2],"shL":[36.7,-91],"elL":[8.5,9.3],"haL":[57.6,58.4],"hipR":[21.4,34.8],"knR":[93.8,152.4],"ftR":[108.4,296.6],"hipL":[21.1,34.3],"knL":[48,178.5],"ftL":[-30.6,300.5]},{"rootY":9.3,"hips":[0,0],"chest":[36.2,-77.6],"neck":[36.2,-77.6],"head":[44.5,-150.1],"shR":[36.8,-92.7],"elR":[-11.8,-0.8],"haR":[13.2,64.5],"shL":[39.6,-91.5],"elL":[10.7,8.2],"haL":[59.4,57.6],"hipR":[21.6,35.2],"knR":[96.7,151.4],"ftR":[103.8,297.1],"hipL":[21.1,33.7],"knL":[44,178.6],"ftL":[-37.4,298.9]},{"rootY":11.6,"hips":[0,0],"chest":[39.1,-76.5],"neck":[39.1,-76.5],"head":[47.2,-149],"shR":[39,-89.8],"elR":[-11.8,1.1],"haR":[16.4,65.3],"shL":[43.4,-92],"elL":[9.2,5.4],"haL":[56.5,55.5],"hipR":[21.5,35.9],"knR":[100.4,149.5],"ftR":[98,296.2],"hipL":[20.5,33.4],"knL":[40.6,178.7],"ftL":[-44.7,296.4]},{"rootY":13.5,"hips":[0,0],"chest":[41.6,-75.2],"neck":[41.6,-75.2],"head":[51,-147.7],"shR":[40.8,-86.6],"elR":[-12.6,2.8],"haR":[19.4,65.4],"shL":[47.3,-92.7],"elL":[7.5,1.7],"haL":[51.5,53.7],"hipR":[21.1,36.9],"knR":[103.3,148.2],"ftR":[91.4,295.1],"hipL":[19.7,33],"knL":[36.9,178.4],"ftL":[-51.4,294]},{"rootY":14.8,"hips":[0,0],"chest":[43.9,-73.9],"neck":[43.9,-73.9],"head":[54.8,-146.2],"shR":[43.3,-83.1],"elR":[-12.3,4.9],"haR":[23.8,65.5],"shL":[50.4,-93.3],"elL":[6,-2.1],"haL":[45.6,52.1],"hipR":[21,37.6],"knR":[105.7,147.6],"ftR":[85,293.9],"hipL":[18.6,32.7],"knL":[32.9,178.1],"ftL":[-58.4,291.6]},{"rootY":15.8,"hips":[0,0],"chest":[45.1,-73.1],"neck":[45.1,-73.1],"head":[57.9,-145.1],"shR":[44.2,-80.2],"elR":[-13.6,6.4],"haR":[28.7,62.7],"shL":[52.4,-94.5],"elL":[2.7,-7],"haL":[38.7,48.6],"hipR":[20.8,38.5],"knR":[106.9,147.9],"ftR":[77.6,293],"hipL":[17.3,32.3],"knL":[28,177.5],"ftL":[-66,288.8]},{"rootY":16.6,"hips":[0,0],"chest":[46.3,-72.3],"neck":[46.3,-72.3],"head":[60,-144.1],"shR":[46.2,-77.4],"elR":[-13.9,7.9],"haR":[36.2,57.3],"shL":[53.3,-95.4],"elL":[-1.3,-11.1],"haL":[32.2,45.6],"hipR":[20,39.3],"knR":[106.8,148.4],"ftR":[70,292.1],"hipL":[16.8,32],"knL":[22.5,177.1],"ftL":[-73.6,286.8]},{"rootY":17.1,"hips":[0,0],"chest":[46.8,-71.9],"neck":[46.8,-71.9],"head":[61.7,-143.3],"shR":[46.1,-75.6],"elR":[-13.3,10.4],"haR":[43.6,51.4],"shL":[54.6,-96.3],"elL":[-4.4,-14.5],"haL":[27.3,43.4],"hipR":[19.7,39.9],"knR":[106.1,149.8],"ftR":[62.2,291.5],"hipL":[16.1,31.7],"knL":[16.2,176.5],"ftL":[-81.6,284.8]},{"rootY":17.4,"hips":[0,0],"chest":[46.4,-71.9],"neck":[46.4,-71.9],"head":[62.2,-143.1],"shR":[45.2,-74.2],"elR":[-11.8,13.4],"haR":[49.2,48.1],"shL":[54.9,-97.7],"elL":[-5.3,-16.2],"haL":[24,43.3],"hipR":[19.4,40.3],"knR":[104.4,151.8],"ftR":[54.6,291.5],"hipL":[16,31.5],"knL":[10.3,175.6],"ftL":[-89.2,282.4]},{"rootY":17.1,"hips":[0,0],"chest":[45.4,-72.2],"neck":[45.4,-72.2],"head":[61.1,-143.3],"shR":[43.9,-73],"elR":[-8.8,17],"haR":[53.7,48.7],"shL":[53.7,-99.6],"elL":[-6.4,-18.1],"haL":[21.4,42.4],"hipR":[19.1,40.6],"knR":[101.5,154.4],"ftR":[47.2,292.3],"hipL":[16.2,31.1],"knL":[6,174.6],"ftL":[-96.2,278.6]},{"rootY":15.2,"hips":[0,0],"chest":[43.8,-72.8],"neck":[43.8,-72.8],"head":[58.8,-143.9],"shR":[42,-72],"elR":[-7.3,19.8],"haR":[54.6,52.3],"shL":[51.9,-101.8],"elL":[-6.7,-19.7],"haL":[21.6,41],"hipR":[19.2,40.5],"knR":[96.5,158.2],"ftR":[38.4,294.5],"hipL":[16.9,30.8],"knL":[8.1,173.8],"ftL":[-98.7,273]},{"rootY":12.2,"hips":[0,0],"chest":[42.5,-73.2],"neck":[42.5,-73.2],"head":[57.2,-144.1],"shR":[40.4,-70.4],"elR":[-6.8,22.4],"haR":[53.5,57.4],"shL":[50.4,-104.2],"elL":[-6.5,-21.5],"haL":[25.3,38.3],"hipR":[19.3,40.1],"knR":[90.7,161.8],"ftR":[31.4,297.5],"hipL":[17.6,31],"knL":[18.1,173.5],"ftL":[-94.5,266.2]},{"rootY":9.2,"hips":[0,0],"chest":[41.1,-73.5],"neck":[41.1,-73.5],"head":[55.9,-144.1],"shR":[39,-69],"elR":[-6,24.9],"haR":[52.2,63.2],"shL":[48.3,-106.3],"elL":[-5.4,-22.1],"haL":[31.8,35.5],"hipR":[19.9,39.5],"knR":[84.7,164.9],"ftR":[25.1,300.4],"hipL":[18.6,31],"knL":[33,172.3],"ftL":[-83.4,260.3]},{"rootY":6.5,"hips":[0,0],"chest":[39.5,-74],"neck":[39.5,-74],"head":[54.3,-144.3],"shR":[36.9,-68.3],"elR":[-5.6,26.7],"haR":[49.8,69],"shL":[47.1,-107.9],"elL":[-2.7,-22.3],"haL":[39.2,32.8],"hipR":[20.4,39],"knR":[79,167.4],"ftR":[20.2,303.1],"hipL":[19.4,30.9],"knL":[50,169.4],"ftL":[-64.2,259.8]},{"rootY":5,"hips":[0,0],"chest":[38.7,-74.2],"neck":[38.7,-74.2],"head":[54.2,-144.2],"shR":[36,-67.9],"elR":[-5.7,27.5],"haR":[46.7,73.8],"shL":[46,-108.7],"elL":[0.5,-21.8],"haL":[45.8,31.2],"hipR":[20.8,38.4],"knR":[74.4,169.1],"ftR":[15.7,304.9],"hipL":[20.1,30.9],"knL":[67.8,164.8],"ftL":[-36.7,265.9]},{"rootY":4,"hips":[0,0],"chest":[37.8,-74.6],"neck":[37.8,-74.6],"head":[53.6,-144.4],"shR":[35.3,-68.4],"elR":[-5.9,27.2],"haR":[42.8,77.7],"shL":[44.7,-108.9],"elL":[2.9,-20.9],"haL":[50.5,30.6],"hipR":[20.8,38],"knR":[69.9,170.4],"ftR":[10.9,305.9],"hipL":[21.2,30.9],"knL":[83.1,159.6],"ftL":[-2.9,277.1]},{"rootY":3.4,"hips":[0,0],"chest":[36.7,-75.1],"neck":[36.7,-75.1],"head":[53.2,-144.7],"shR":[33.7,-69.4],"elR":[-7,26.3],"haR":[37.1,81],"shL":[44.1,-109],"elL":[4.2,-20.1],"haL":[52.4,31.2],"hipR":[21,37.4],"knR":[65.5,171.5],"ftR":[5.5,306.4],"hipL":[22,31],"knL":[93.8,155.4],"ftL":[33.2,288.1]},{"rootY":2.5,"hips":[0,0],"chest":[35.7,-75.6],"neck":[35.7,-75.6],"head":[52.3,-145],"shR":[31.3,-70.8],"elR":[-9.1,25],"haR":[30.4,83.3],"shL":[44.3,-108.7],"elL":[4.7,-19.4],"haL":[52,33],"hipR":[20.4,37],"knR":[60.4,172.5],"ftR":[-0.2,307.1],"hipL":[23.2,31.2],"knL":[100.3,153.3],"ftL":[68.4,295.5]},{"rootY":2.1,"hips":[0,0],"chest":[34.3,-76.3],"neck":[34.3,-76.3],"head":[51.4,-145.5],"shR":[28.1,-72.5],"elR":[-12.6,23.2],"haR":[23.1,84],"shL":[44.6,-108.3],"elL":[5.1,-18.3],"haL":[49.3,36.9],"hipR":[19.4,36.6],"knR":[55.1,173.3],"ftR":[-6.4,307.3],"hipL":[24.4,31.5],"knL":[103.3,153.3],"ftL":[96.7,298]},{"rootY":2.7,"hips":[0,0],"chest":[33.2,-76.7],"neck":[33.2,-76.7],"head":[50.8,-145.9],"shR":[24.9,-74.5],"elR":[-15.4,21.4],"haR":[16.3,84.4],"shL":[45.7,-107.3],"elL":[4.3,-17.3],"haL":[43.8,41.3],"hipR":[18.2,36.3],"knR":[50.6,173.8],"ftR":[-12.7,306.8],"hipL":[25.7,31.9],"knL":[104.4,154.3],"ftL":[114.5,297.8]},{"rootY":3.8,"hips":[0,0],"chest":[33.2,-76.7],"neck":[33.2,-76.7],"head":[51.2,-146.1],"shR":[23.7,-76.2],"elR":[-16.3,19.8],"haR":[12.1,84.3],"shL":[47.4,-105.6],"elL":[4.1,-15.7],"haL":[38.1,46.3],"hipR":[16.8,36],"knR":[46.4,174],"ftR":[-19.8,305.7],"hipL":[26.9,32.2],"knL":[105.7,154.9],"ftL":[121.7,297.4]},{"rootY":4.7,"hips":[0,0],"chest":[34.8,-76],"neck":[34.8,-76],"head":[55.2,-145.6],"shR":[20.8,-77.2],"elR":[-22.4,17.5],"haR":[3.5,82.9],"shL":[54,-103.2],"elL":[6.5,-15],"haL":[35.3,49.5],"hipR":[14.6,35.9],"knR":[42.1,174.2],"ftR":[-27,304.3],"hipL":[28,32.8],"knL":[106.6,155.8],"ftL":[119,298.4]},{"rootY":5.8,"hips":[0,0],"chest":[37.7,-74.5],"neck":[37.7,-74.5],"head":[61.4,-143.5],"shR":[21.1,-77.9],"elR":[-24.4,15.7],"haR":[-1.1,81.9],"shL":[60.8,-99.1],"elL":[9.2,-13.2],"haL":[33,53.3],"hipR":[12,36.1],"knR":[37,174.6],"ftR":[-34.6,303.4],"hipL":[28.7,33.4],"knL":[107.1,156.8],"ftL":[111.3,300.2]},{"rootY":6.3,"hips":[0,0],"chest":[41.7,-72],"neck":[41.7,-72],"head":[69,-140],"shR":[22.3,-77],"elR":[-27.8,14.3],"haR":[-6.8,81],"shL":[69.3,-94.7],"elL":[14.8,-11.5],"haL":[32.2,56.9],"hipR":[9.5,36.3],"knR":[31.1,175],"ftR":[-42.7,302.8],"hipL":[28.5,34.4],"knL":[108,157.5],"ftL":[103.9,301.4]},{"rootY":6.3,"hips":[0,0],"chest":[45.3,-69.6],"neck":[45.3,-69.6],"head":[76,-136.1],"shR":[22.6,-76.1],"elR":[-31,13.3],"haR":[-12.9,80.5],"shL":[77.4,-90.4],"elL":[23.2,-8.5],"haL":[35.1,61.1],"hipR":[6.9,36.3],"knR":[24,175.1],"ftR":[-50.6,302.7],"hipL":[28.4,35.5],"knL":[109.4,157.8],"ftL":[96.8,301.7]},{"rootY":6.6,"hips":[0,0],"chest":[48.3,-67.4],"neck":[48.3,-67.4],"head":[82.7,-131.8],"shR":[23.6,-75.6],"elR":[-32.9,11.9],"haR":[-16.8,79.5],"shL":[83.5,-86.1],"elL":[29.9,-5.3],"haL":[39.5,64.7],"hipR":[4.6,36.4],"knR":[16.5,175.2],"ftR":[-59.2,302.5],"hipL":[27.6,36.6],"knL":[110.2,157.9],"ftL":[89.3,301.3]},{"rootY":6.1,"hips":[0,0],"chest":[49.6,-66.2],"neck":[49.6,-66.2],"head":[85.7,-129.3],"shR":[23.7,-75.4],"elR":[-34.3,11],"haR":[-19.6,78.8],"shL":[86.9,-83.4],"elL":[34.8,-3.1],"haL":[44.1,67],"hipR":[3.4,37.1],"knR":[7.3,175.8],"ftR":[-69.4,302.6],"hipL":[28.3,36.2],"knL":[108.8,158.9],"ftL":[79,300.9]},{"rootY":7.4,"hips":[0,0],"chest":[51.2,-64.8],"neck":[51.2,-64.8],"head":[87.9,-127.6],"shR":[22.2,-74.7],"elR":[-36.9,10.9],"haR":[-22.7,78.7],"shL":[91.7,-81.3],"elL":[41.4,-0.7],"haL":[51.2,69.3],"hipR":[1.2,35.9],"knR":[-0.2,174.6],"ftR":[-76.8,301.6],"hipL":[27,38.1],"knL":[109.3,159.4],"ftL":[73.2,300]},{"rootY":8.1,"hips":[0,0],"chest":[51.9,-64.1],"neck":[51.9,-64.1],"head":[89.2,-126.3],"shR":[21.9,-74],"elR":[-36.6,11.6],"haR":[-23.2,79.7],"shL":[93.5,-80.3],"elL":[45.3,1.1],"haL":[56.3,70.9],"hipR":[0.2,35.7],"knR":[-7.2,174],"ftR":[-84.1,300.8],"hipL":[26.5,38.7],"knL":[108.3,160.1],"ftL":[66.1,299.1]},{"rootY":9.2,"hips":[0,0],"chest":[52.4,-63.4],"neck":[52.4,-63.4],"head":[88.9,-126.4],"shR":[21.9,-73.6],"elR":[-36.2,12.1],"haR":[-22.7,80.5],"shL":[94.8,-79.2],"elL":[47.6,2.4],"haL":[60.9,71.6],"hipR":[-0.7,35.5],"knR":[-13.3,173.2],"ftR":[-90.7,299.6],"hipL":[26.3,39.1],"knL":[107.9,160.3],"ftL":[60.4,297.7]},{"rootY":10.9,"hips":[0,0],"chest":[53.5,-62.4],"neck":[53.5,-62.4],"head":[89.6,-125.7],"shR":[23.4,-72.9],"elR":[-35.5,12.1],"haR":[-21,80.6],"shL":[95.9,-77.8],"elL":[48.1,3.3],"haL":[63.3,71.8],"hipR":[-1.9,35.4],"knR":[-16.2,172.5],"ftR":[-95.1,297.9],"hipL":[26,39.5],"knL":[107.9,160.2],"ftL":[55.8,296]},{"rootY":12.6,"hips":[0,0],"chest":[54.5,-61.2],"neck":[54.5,-61.2],"head":[89.3,-125],"shR":[25.9,-71.8],"elR":[-33.5,12.9],"haR":[-17.8,81.2],"shL":[96.2,-76.1],"elL":[47.6,4.4],"haL":[62.9,72.5],"hipR":[-2.5,34.9],"knR":[-18.4,171.5],"ftR":[-98.4,296.2],"hipL":[25.4,40.1],"knL":[108.4,159.9],"ftL":[52.5,294.3]},{"rootY":14,"hips":[0,0],"chest":[56.1,-59.5],"neck":[56.1,-59.5],"head":[90.5,-122.7],"shR":[29.7,-69.9],"elR":[-31.3,13.6],"haR":[-14.4,81.7],"shL":[96.4,-74.2],"elL":[46.7,5.9],"haL":[60.7,74.1],"hipR":[-3.2,34.9],"knR":[-19.2,170.9],"ftR":[-101,294.4],"hipL":[24.8,40.5],"knL":[108.5,159.5],"ftL":[50.2,292.9]}]} \ No newline at end of file diff --git a/ink-theater/mocap/clips/twist.json b/ink-theater/mocap/clips/twist.json new file mode 100644 index 00000000..347e6624 --- /dev/null +++ b/ink-theater/mocap/clips/twist.json @@ -0,0 +1 @@ +{"name":"twist","fps":30,"height":520,"groundY":329,"frameCount":143,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.8,-85.6],"neck":[0.8,-85.6],"head":[0.6,-164.3],"shR":[-68.1,-121.8],"elR":[-162.5,-108.5],"haR":[-233.5,-98.5],"shL":[76,-117],"elL":[171.2,-103.7],"haL":[243.5,-93.5],"hipR":[-69.8,34.9],"knR":[-67.3,174.6],"ftR":[-64.7,326.9],"hipL":[69.7,34.9],"knL":[67.4,172],"ftL":[64.6,329.1]},{"rootY":0,"hips":[0,0],"chest":[-14.9,-83.9],"neck":[-14.9,-83.9],"head":[6.3,-160],"shR":[27.6,-120.5],"elR":[55.4,-30.2],"haR":[35.4,33.1],"shL":[-54.3,-114.3],"elL":[-56.3,-20],"haL":[-97.2,40],"hipR":[25.3,40.9],"knR":[34.5,180.2],"ftR":[61.5,330.1],"hipL":[-66.6,39.1],"knL":[-29.8,171.1],"ftL":[10.8,322.2]},{"rootY":-0.1,"hips":[0,0],"chest":[-14.9,-83.7],"neck":[-14.9,-83.7],"head":[6.1,-160.1],"shR":[27.4,-120.3],"elR":[52.7,-29.7],"haR":[26.4,31.4],"shL":[-54.4,-114.1],"elL":[-52.1,-20.4],"haL":[-89.8,42.1],"hipR":[27.6,40.6],"knR":[34.8,179.9],"ftR":[61.2,330],"hipL":[-67.3,39.6],"knL":[-30.3,171.5],"ftL":[10.9,322.6]},{"rootY":-0.1,"hips":[0,0],"chest":[-14.8,-83.5],"neck":[-14.8,-83.5],"head":[6,-159.9],"shR":[27.5,-119.8],"elR":[50.1,-28.8],"haR":[19.7,30.9],"shL":[-54.1,-114.4],"elL":[-49.5,-21.4],"haL":[-82.8,43.3],"hipR":[29.2,40.7],"knR":[35.3,180],"ftR":[61.1,330.2],"hipL":[-68.1,39.6],"knL":[-30.5,171.4],"ftL":[11.9,322.3]},{"rootY":-0.3,"hips":[0,0],"chest":[-14.6,-83.5],"neck":[-14.6,-83.5],"head":[5.9,-159.9],"shR":[28.2,-119.1],"elR":[48.7,-27.9],"haR":[15.8,30.9],"shL":[-54.1,-115],"elL":[-48.5,-22.3],"haL":[-76.6,43.9],"hipR":[29.9,40.9],"knR":[35.9,180.2],"ftR":[61.3,330.4],"hipL":[-68.4,39.4],"knL":[-30.4,171.1],"ftL":[12.8,321.9]},{"rootY":-0.7,"hips":[0,0],"chest":[-14.9,-83.3],"neck":[-14.9,-83.3],"head":[5.3,-159.8],"shR":[28.8,-118.1],"elR":[48.7,-26.7],"haR":[15.1,31.9],"shL":[-54.7,-115.8],"elL":[-49,-23.3],"haL":[-74.3,43.5],"hipR":[29.7,40.7],"knR":[35.8,180.1],"ftR":[60.6,330.4],"hipL":[-68.1,39.7],"knL":[-30.9,171.6],"ftL":[11,322.7]},{"rootY":-1.1,"hips":[0,0],"chest":[-15.1,-83.5],"neck":[-15.1,-83.5],"head":[3.2,-160.7],"shR":[31.7,-115.2],"elR":[52.9,-23.9],"haR":[20.4,35.5],"shL":[-56.9,-119.2],"elL":[-50.4,-26.4],"haL":[-76.2,40.4],"hipR":[28.8,40.6],"knR":[35.8,180],"ftR":[60.5,330.4],"hipL":[-67.6,39.9],"knL":[-30.3,171.8],"ftL":[11.7,322.8]},{"rootY":-1.5,"hips":[0,0],"chest":[-15.6,-83.5],"neck":[-15.6,-83.5],"head":[-0.2,-160.9],"shR":[33.3,-113.3],"elR":[56.5,-22.4],"haR":[27.7,39.3],"shL":[-58.6,-121.1],"elL":[-52.2,-28],"haL":[-81.7,38.2],"hipR":[27.5,40.3],"knR":[35.7,179.8],"ftR":[60.1,330.1],"hipL":[-66.9,40.1],"knL":[-30,172.1],"ftL":[11.5,323.3]},{"rootY":-2,"hips":[0,0],"chest":[-15.7,-83.6],"neck":[-15.7,-83.6],"head":[-1.8,-161],"shR":[34.6,-112.6],"elR":[58.6,-21.7],"haR":[35.5,42.7],"shL":[-59.3,-122.1],"elL":[-53.6,-28.5],"haL":[-87.6,36.1],"hipR":[26.3,39.9],"knR":[36.1,179.2],"ftR":[59.7,329.6],"hipL":[-66.2,40.4],"knL":[-30.1,172.6],"ftL":[10.1,324.1]},{"rootY":-2,"hips":[0,0],"chest":[-15.6,-83.8],"neck":[-15.6,-83.8],"head":[-2,-160.8],"shR":[34.8,-112.7],"elR":[59.6,-21.8],"haR":[42.1,44.5],"shL":[-59,-122.3],"elL":[-55.4,-28],"haL":[-92.5,34.7],"hipR":[25.2,39.3],"knR":[37,178.5],"ftR":[59.4,329],"hipL":[-65.8,40.5],"knL":[-29.9,172.8],"ftL":[9.9,324.5]},{"rootY":-2.1,"hips":[0,0],"chest":[-15.9,-83.9],"neck":[-15.9,-83.9],"head":[-2.7,-160.6],"shR":[34.8,-112.7],"elR":[60.6,-21.9],"haR":[46.8,45.2],"shL":[-59.1,-122.2],"elL":[-57.9,-27.4],"haL":[-96.5,33.9],"hipR":[24.5,38.7],"knR":[37,177.8],"ftR":[58.8,328.4],"hipL":[-65.6,40.7],"knL":[-30.5,173.1],"ftL":[8.3,325.1]},{"rootY":-2.2,"hips":[0,0],"chest":[-15.6,-84.1],"neck":[-15.6,-84.1],"head":[-2.3,-160.6],"shR":[35.2,-113.6],"elR":[62.3,-23],"haR":[49.3,44],"shL":[-58.8,-121.7],"elL":[-59.1,-26.5],"haL":[-98.4,33.7],"hipR":[24,38.2],"knR":[37.1,177.1],"ftR":[58.5,327.7],"hipL":[-65.6,40.7],"knL":[-30,173],"ftL":[9.3,325]},{"rootY":-2,"hips":[0,0],"chest":[-15.3,-84.2],"neck":[-15.3,-84.2],"head":[-1.6,-160.5],"shR":[35.3,-114.6],"elR":[63.2,-24.3],"haR":[49.4,42.1],"shL":[-58.6,-120.7],"elL":[-59.1,-25.6],"haL":[-98.3,34.6],"hipR":[23.9,37.5],"knR":[36.4,176.4],"ftR":[57.8,326.9],"hipL":[-65.6,41.1],"knL":[-29.9,173.4],"ftL":[9.7,325.3]},{"rootY":-1.9,"hips":[0,0],"chest":[-15.2,-84.2],"neck":[-15.2,-84.2],"head":[-1.4,-160.6],"shR":[35.4,-115.5],"elR":[63.2,-25.1],"haR":[48.4,40.3],"shL":[-58.4,-119.9],"elL":[-58.6,-24.9],"haL":[-96.8,36.1],"hipR":[24.5,37.4],"knR":[35.5,176.5],"ftR":[57.3,326.9],"hipL":[-65.9,41.1],"knL":[-30.4,173.3],"ftL":[9.4,325.3]},{"rootY":-1.8,"hips":[0,0],"chest":[-14.8,-84.3],"neck":[-14.8,-84.3],"head":[-1.3,-160.6],"shR":[35.5,-116.3],"elR":[62.5,-25.8],"haR":[47,39],"shL":[-58.2,-119.1],"elL":[-57.6,-24],"haL":[-94.7,38.2],"hipR":[25.3,37.4],"knR":[34.8,176.6],"ftR":[56.7,327],"hipL":[-66.4,41],"knL":[-30.6,173.1],"ftL":[9.7,324.9]},{"rootY":-1.6,"hips":[0,0],"chest":[-14.7,-84.3],"neck":[-14.7,-84.3],"head":[-1.3,-160.6],"shR":[35.3,-117],"elR":[62,-26.5],"haR":[45.1,37.8],"shL":[-58.1,-118.5],"elL":[-56.9,-23.5],"haL":[-92,40.3],"hipR":[25.9,37.7],"knR":[34.7,177],"ftR":[56.1,327.4],"hipL":[-66.8,40.7],"knL":[-30.7,172.6],"ftL":[10.2,324.3]},{"rootY":-1.5,"hips":[0,0],"chest":[-14.3,-84.3],"neck":[-14.3,-84.3],"head":[-1.4,-160.7],"shR":[35.3,-117.6],"elR":[62.2,-27.2],"haR":[43.7,36.6],"shL":[-57.9,-117.9],"elL":[-54,-23.3],"haL":[-88.4,41],"hipR":[26.8,37.8],"knR":[33.8,177.2],"ftR":[55.6,327.4],"hipL":[-67.1,40.8],"knL":[-31.3,172.8],"ftL":[9.4,324.6]},{"rootY":-1.2,"hips":[0,0],"chest":[-13.8,-84.2],"neck":[-13.8,-84.2],"head":[-1.3,-160.5],"shR":[35.1,-118.1],"elR":[62.7,-27.9],"haR":[42.4,35.5],"shL":[-57.5,-117.3],"elL":[-48.6,-23.6],"haL":[-85,39.6],"hipR":[27.9,38],"knR":[32.3,177.6],"ftR":[55.3,327.6],"hipL":[-67.5,40.8],"knL":[-31.8,172.7],"ftL":[8.8,324.5]},{"rootY":-0.8,"hips":[0,0],"chest":[-12.8,-84.2],"neck":[-12.8,-84.2],"head":[-0.5,-160.4],"shR":[35.3,-118.2],"elR":[63.7,-28.4],"haR":[41,34.1],"shL":[-56.2,-117.2],"elL":[-42.5,-24.6],"haL":[-80.7,37.6],"hipR":[29.6,38.9],"knR":[30.7,178.6],"ftR":[55.9,328.1],"hipL":[-68.6,40],"knL":[-33.1,172],"ftL":[7.3,323.8]},{"rootY":-0.2,"hips":[0,0],"chest":[-11.7,-84],"neck":[-11.7,-84],"head":[0.4,-160.2],"shR":[35.4,-118.3],"elR":[66,-29.6],"haR":[37.3,29.9],"shL":[-54.7,-116.9],"elL":[-34.5,-26.4],"haL":[-72.1,34.7],"hipR":[32.3,41],"knR":[28.4,180.4],"ftR":[57.2,329.1],"hipL":[-70.5,38.4],"knL":[-36.7,171],"ftL":[1.3,323.4]},{"rootY":0.9,"hips":[0,0],"chest":[-11.1,-83.4],"neck":[-11.1,-83.4],"head":[1.3,-159.2],"shR":[33.6,-119.3],"elR":[66.5,-31.9],"haR":[32.1,23],"shL":[-53.2,-114.8],"elL":[-28.8,-26.5],"haL":[-63.6,29.9],"hipR":[34.1,43.4],"knR":[25.3,182.2],"ftR":[56.8,329.9],"hipL":[-72.5,36],"knL":[-45,170.2],"ftL":[-12.5,323.6]},{"rootY":0.9,"hips":[0,0],"chest":[-13.7,-83.4],"neck":[-13.7,-83.4],"head":[0.1,-159.3],"shR":[30.8,-117.8],"elR":[74.5,-34.7],"haR":[44.5,17],"shL":[-54.9,-116.4],"elL":[-33.5,-27.9],"haL":[-76.2,18.8],"hipR":[30.5,43.6],"knR":[19.8,182.5],"ftR":[54.3,328.8],"hipL":[-71.8,35],"knL":[-55.2,171],"ftL":[-23.6,323.8]},{"rootY":0.2,"hips":[0,0],"chest":[-19.9,-83.3],"neck":[-19.9,-83.3],"head":[-3.9,-160],"shR":[25.3,-114.2],"elR":[84.5,-40],"haR":[72.1,12.5],"shL":[-60.2,-119.8],"elL":[-55.1,-27.9],"haL":[-117.4,2.8],"hipR":[16.1,38.4],"knR":[6.8,177.8],"ftR":[51.8,320.7],"hipL":[-61.5,40.6],"knL":[-70.6,176.6],"ftL":[-36.5,327.8]},{"rootY":2,"hips":[0,0],"chest":[-25.9,-81.8],"neck":[-25.9,-81.8],"head":[-10.6,-160],"shR":[20.2,-110.5],"elR":[89.3,-44.8],"haR":[102.4,9],"shL":[-65.5,-120.6],"elL":[-89.7,-28.7],"haL":[-162.3,-20.2],"hipR":[-5.5,31.1],"knR":[-9,170.5],"ftR":[55.8,307.3],"hipL":[-45.3,47.2],"knL":[-81.8,178.4],"ftL":[-43.9,330]},{"rootY":6.9,"hips":[0,0],"chest":[-29.4,-79.9],"neck":[-29.4,-79.9],"head":[-13.8,-158.5],"shR":[16.4,-108],"elR":[90.5,-48.3],"haR":[124.3,2.8],"shL":[-68.9,-119.3],"elL":[-120.3,-38.5],"haL":[-190.3,-48.1],"hipR":[-19.2,27.4],"knR":[-14.7,166.5],"ftR":[56.9,300.7],"hipL":[-32.3,51.9],"knL":[-86.3,177.6],"ftL":[-48.1,330]},{"rootY":12.9,"hips":[0,0],"chest":[-31.6,-78.6],"neck":[-31.6,-78.6],"head":[-13.4,-156.7],"shR":[13.2,-108.4],"elR":[89.2,-50.9],"haR":[126.5,-4.3],"shL":[-71.3,-116.5],"elL":[-130.2,-45.2],"haL":[-195,-61.6],"hipR":[-20.6,23.7],"knR":[-11.2,162.3],"ftR":[56.3,298.5],"hipL":[-28.2,56.6],"knL":[-90.9,178.3],"ftL":[-51.7,330.4]},{"rootY":14.3,"hips":[0,0],"chest":[-33,-78.8],"neck":[-33,-78.8],"head":[-15.6,-157],"shR":[12.4,-109.5],"elR":[85.5,-50],"haR":[104.2,-7.3],"shL":[-74.8,-115.7],"elL":[-126.1,-37.4],"haL":[-189.9,-52.6],"hipR":[-8,22.9],"knR":[-11.6,162.2],"ftR":[55.7,298.1],"hipL":[-36.3,57.3],"knL":[-98.5,178.4],"ftL":[-51.8,327.4]},{"rootY":13.6,"hips":[0,0],"chest":[-31.1,-79.8],"neck":[-31.1,-79.8],"head":[-15.3,-158.4],"shR":[13.7,-113.3],"elR":[71.2,-48.1],"haR":[57.8,-15.4],"shL":[-75.4,-114],"elL":[-114.2,-26.1],"haL":[-185.3,-34.2],"hipR":[14.6,28.9],"knR":[-11.1,165.9],"ftR":[54.3,301.1],"hipL":[-51.9,52.3],"knL":[-96.4,176.4],"ftL":[-50,318]},{"rootY":17,"hips":[0,0],"chest":[-23.4,-80],"neck":[-23.4,-80],"head":[-9.9,-158.9],"shR":[18.5,-119.8],"elR":[49.1,-51.8],"haR":[8.2,-33.1],"shL":[-69.2,-107.3],"elL":[-88,-16.2],"haL":[-159.6,-19.3],"hipR":[37.3,38.8],"knR":[7.6,170.5],"ftR":[53,308],"hipL":[-68.3,43.3],"knL":[-82.3,171.9],"ftL":[-54.8,301.3]},{"rootY":24.4,"hips":[0,0],"chest":[-16.1,-78.6],"neck":[-16.1,-78.6],"head":[-6,-157.9],"shR":[23.1,-122.3],"elR":[30.2,-58.2],"haR":[-25.3,-52.4],"shL":[-62.3,-101.4],"elL":[-62.6,-14.4],"haL":[-124,-13.3],"hipR":[49.8,46.2],"knR":[28,175.2],"ftR":[48.6,318.7],"hipL":[-76.2,36.3],"knL":[-70.2,169],"ftL":[-47.4,294.2]},{"rootY":32.1,"hips":[0,0],"chest":[-14.6,-77.2],"neck":[-14.6,-77.2],"head":[-5.4,-156.6],"shR":[24,-120],"elR":[22.5,-59.5],"haR":[-36.8,-61.4],"shL":[-61.4,-101],"elL":[-51.1,-19.2],"haL":[-103.7,-18.1],"hipR":[52.5,46.5],"knR":[33.3,170.3],"ftR":[52.5,312.9],"hipL":[-77,35.5],"knL":[-68.9,168],"ftL":[-41.8,290.8]},{"rootY":38.6,"hips":[0,0],"chest":[-19.6,-78],"neck":[-19.6,-78],"head":[-9.1,-157.6],"shR":[18.9,-119.7],"elR":[32.4,-55.6],"haR":[-21.2,-56.4],"shL":[-66.4,-103.2],"elL":[-65.2,-19.2],"haL":[-122.7,-26.1],"hipR":[47.4,43.6],"knR":[21.2,166.4],"ftR":[53.1,304.2],"hipL":[-73.8,39.4],"knL":[-76.4,167.9],"ftL":[-41.8,289.4]},{"rootY":40,"hips":[0,0],"chest":[-30.7,-77.5],"neck":[-30.7,-77.5],"head":[-19.2,-157],"shR":[7.5,-118.6],"elR":[49,-51.4],"haR":[10.8,-46.3],"shL":[-77.6,-103.2],"elL":[-99,-17.2],"haL":[-165.6,-31.8],"hipR":[35.1,34.9],"knR":[-6.1,161.2],"ftR":[55.6,290.2],"hipL":[-63.9,47.9],"knL":[-92.7,169.4],"ftL":[-41.9,294]},{"rootY":40.5,"hips":[0,0],"chest":[-41.6,-74.5],"neck":[-41.6,-74.5],"head":[-30.6,-153.9],"shR":[-0.9,-112.3],"elR":[64.3,-48.3],"haR":[49.3,-37.3],"shL":[-90.8,-104],"elL":[-134.4,-20.4],"haL":[-204.4,-41.1],"hipR":[16.9,23],"knR":[-26.7,154.5],"ftR":[60.3,275.2],"hipL":[-49.5,57.6],"knL":[-106.9,170.1],"ftL":[-45.2,301.9]},{"rootY":44,"hips":[0,0],"chest":[-48.2,-70.7],"neck":[-48.2,-70.7],"head":[-37.6,-150],"shR":[-7.1,-107.4],"elR":[69.8,-51.2],"haR":[79.9,-32.7],"shL":[-99,-101.3],"elL":[-154.3,-22.6],"haL":[-222.2,-45.1],"hipR":[0.4,18.6],"knR":[-33.1,154.1],"ftR":[63,270.3],"hipL":[-36,62.5],"knL":[-114.4,164.8],"ftL":[-53.3,302.2]},{"rootY":48.6,"hips":[0,0],"chest":[-50.7,-69.1],"neck":[-50.7,-69.1],"head":[-41.6,-148.8],"shR":[-13.7,-109.1],"elR":[66.3,-57.2],"haR":[85.7,-35.5],"shL":[-100.7,-95.8],"elL":[-156.4,-17.9],"haL":[-222,-37.4],"hipR":[-0.9,23.1],"knR":[-34.1,158.6],"ftR":[56.7,276.2],"hipL":[-32.6,61.2],"knL":[-116.7,158.4],"ftL":[-56.7,297.1]},{"rootY":51,"hips":[0,0],"chest":[-50.2,-69.3],"neck":[-50.2,-69.3],"head":[-43.9,-149.3],"shR":[-15.8,-111.9],"elR":[60,-57.4],"haR":[63.9,-44.4],"shL":[-99.7,-92.7],"elL":[-145.6,-8.2],"haL":[-214.6,-22.2],"hipR":[13.3,31.7],"knR":[-36.4,160.8],"ftR":[41.3,281.6],"hipL":[-42,55.6],"knL":[-113.7,156.7],"ftL":[-55.3,292.6]},{"rootY":51.1,"hips":[0,0],"chest":[-46.5,-69.7],"neck":[-46.5,-69.7],"head":[-43.3,-150.1],"shR":[-16.9,-116.8],"elR":[43.1,-58.1],"haR":[22.9,-54.7],"shL":[-94.4,-87.4],"elL":[-126.1,1.5],"haL":[-198.6,-6.9],"hipR":[28.9,40.5],"knR":[-26.2,162],"ftR":[21.6,291.4],"hipL":[-58.2,46.9],"knL":[-99.5,157.7],"ftL":[-55.8,284.5]},{"rootY":51.2,"hips":[0,0],"chest":[-39.6,-69.7],"neck":[-39.6,-69.7],"head":[-39.5,-150.1],"shR":[-13.9,-120],"elR":[21.8,-61.7],"haR":[-17.3,-64.7],"shL":[-87.1,-82.8],"elL":[-94.5,5.3],"haL":[-163,4.7],"hipR":[42.8,44],"knR":[-7.1,160],"ftR":[20.5,295.3],"hipL":[-69.7,42],"knL":[-85.1,159.1],"ftL":[-60.4,273.1]},{"rootY":50.3,"hips":[0,0],"chest":[-34.5,-70.1],"neck":[-34.5,-70.1],"head":[-36.4,-150.3],"shR":[-9.7,-120.7],"elR":[12.5,-67.8],"haR":[-36.1,-72.5],"shL":[-82.1,-82.5],"elL":[-71.1,0.8],"haL":[-129.9,5.6],"hipR":[51.3,42.4],"knR":[8.6,159.1],"ftR":[26.1,296.5],"hipL":[-72.5,42.4],"knL":[-77.2,164.8],"ftL":[-59.9,275]},{"rootY":46.4,"hips":[0,0],"chest":[-35.4,-71.5],"neck":[-35.4,-71.5],"head":[-37,-151.7],"shR":[-10.2,-121.9],"elR":[17.3,-70.8],"haR":[-29.5,-76.3],"shL":[-82.7,-84.3],"elL":[-75.3,0],"haL":[-131.5,-4.5],"hipR":[50.2,41.2],"knR":[10.4,160.3],"ftR":[28.3,297.1],"hipL":[-71.7,43.3],"knL":[-77.7,168.3],"ftL":[-59.3,283.6]},{"rootY":37.3,"hips":[0,0],"chest":[-39.9,-73.1],"neck":[-39.9,-73.1],"head":[-39.7,-153.5],"shR":[-14.4,-123.6],"elR":[34.2,-70.7],"haR":[1,-77.5],"shL":[-85.6,-86.2],"elL":[-100,0.6],"haL":[-161.7,-16.5],"hipR":[41.9,36.5],"knR":[1.2,162.6],"ftR":[35.2,297.6],"hipL":[-65.7,47.9],"knL":[-86.4,172.7],"ftL":[-65.5,296.8]},{"rootY":23.9,"hips":[0,0],"chest":[-45.9,-72.5],"neck":[-45.9,-72.5],"head":[-43.6,-152.8],"shR":[-16.7,-122.1],"elR":[52.2,-70.7],"haR":[40.1,-81.4],"shL":[-93,-87.2],"elL":[-131.2,-3.3],"haL":[-196.4,-31.2],"hipR":[27.5,24.9],"knR":[-7.7,159.1],"ftR":[38.1,294.2],"hipL":[-52.9,57.5],"knL":[-102.6,180.2],"ftL":[-79.4,317.8]},{"rootY":12.2,"hips":[0,0],"chest":[-48.5,-70],"neck":[-48.5,-70],"head":[-42.8,-150],"shR":[-10.8,-117],"elR":[67.3,-70.3],"haR":[76.3,-88.5],"shL":[-99.7,-88.5],"elL":[-155.8,-11.6],"haL":[-218.9,-48.4],"hipR":[7.6,14.3],"knR":[0.5,153.8],"ftR":[45.8,293.2],"hipL":[-39.5,64.8],"knL":[-103.2,185.8],"ftL":[-86.7,333.8]},{"rootY":7.2,"hips":[0,0],"chest":[-47.8,-69.4],"neck":[-47.8,-69.4],"head":[-39.5,-149.1],"shR":[-7.5,-115.8],"elR":[75.1,-76],"haR":[94.4,-106.4],"shL":[-97.9,-88.7],"elL":[-163.7,-18.7],"haL":[-223.2,-60.3],"hipR":[-4.5,12.5],"knR":[6.6,151.6],"ftR":[53.4,294.6],"hipL":[-30.1,67.3],"knL":[-89.3,190.9],"ftL":[-85.6,342.7]},{"rootY":9,"hips":[0,0],"chest":[-43.9,-72.2],"neck":[-43.9,-72.2],"head":[-34.6,-151.9],"shR":[-4.8,-120.2],"elR":[77.4,-88.1],"haR":[90.5,-133.9],"shL":[-91.6,-89.4],"elL":[-153.9,-16.8],"haL":[-211.4,-61.2],"hipR":[-0.3,16.1],"knR":[15.7,154.5],"ftR":[54.9,300.2],"hipL":[-32.6,65.3],"knL":[-92.8,188.4],"ftL":[-84.3,339.9]},{"rootY":8.1,"hips":[0,0],"chest":[-39.4,-75.8],"neck":[-39.4,-75.8],"head":[-29.7,-155.4],"shR":[-0.5,-124.6],"elR":[73.9,-100.7],"haR":[67.1,-157.3],"shL":[-86.8,-91.9],"elL":[-137.2,-10.2],"haL":[-195.4,-54.3],"hipR":[14.4,16.9],"knR":[26.4,155.7],"ftR":[56.5,303.6],"hipL":[-44,62.8],"knL":[-96.5,189.3],"ftL":[-81,339.2]},{"rootY":2.5,"hips":[0,0],"chest":[-31.6,-79.9],"neck":[-31.6,-79.9],"head":[-22.7,-159.4],"shR":[5.8,-132.6],"elR":[65.3,-114.3],"haR":[38.1,-172.5],"shL":[-79.4,-90.7],"elL":[-106.2,-1.6],"haL":[-165.3,-41.3],"hipR":[34.8,28],"knR":[29.3,167.5],"ftR":[62.6,314.2],"hipL":[-60.7,53],"knL":[-84.3,188],"ftL":[-67.8,337.5]},{"rootY":-3.2,"hips":[0,0],"chest":[-22.2,-82.3],"neck":[-22.2,-82.3],"head":[-15.1,-161.3],"shR":[14,-138.3],"elR":[54.2,-125.8],"haR":[14.7,-182.5],"shL":[-70.4,-88],"elL":[-70.4,1.7],"haL":[-125.6,-31.7],"hipR":[47.2,37.8],"knR":[36.1,175.7],"ftR":[66.6,322.3],"hipL":[-72.8,42],"knL":[-70.9,179],"ftL":[-58,324]},{"rootY":-3.7,"hips":[0,0],"chest":[-15.2,-83.3],"neck":[-15.2,-83.3],"head":[-8.4,-161.8],"shR":[22.9,-139.1],"elR":[51.3,-132.9],"haR":[4.6,-186.2],"shL":[-65.5,-89.3],"elL":[-53.2,-2.5],"haL":[-101.9,-32.3],"hipR":[53.5,40.2],"knR":[43.6,177.9],"ftR":[62.4,326.4],"hipL":[-75.5,38.6],"knL":[-67.7,174.6],"ftL":[-60.7,318.9]},{"rootY":-1.2,"hips":[0,0],"chest":[-12.7,-83.8],"neck":[-12.7,-83.8],"head":[-4,-162],"shR":[28.8,-136.8],"elR":[60.9,-131.9],"haR":[11.4,-182.5],"shL":[-64.2,-93.8],"elL":[-67.2,-7.4],"haL":[-116,-47.5],"hipR":[53,41.5],"knR":[48.8,178.9],"ftR":[69.7,328.1],"hipL":[-76.2,37.2],"knL":[-66.1,172.2],"ftL":[-54.3,320.7]},{"rootY":-0.8,"hips":[0,0],"chest":[-16,-83.8],"neck":[-16,-83.8],"head":[-4.5,-161.9],"shR":[28.9,-133.5],"elR":[77.2,-119],"haR":[33,-171.9],"shL":[-68.9,-98.3],"elL":[-100.8,-16.5],"haL":[-148.9,-67.8],"hipR":[45.8,34.9],"knR":[49.7,173.8],"ftR":[74.2,323.1],"hipL":[-72.4,42.6],"knL":[-68.3,179.5],"ftL":[-52.7,329.5]},{"rootY":-3.7,"hips":[0,0],"chest":[-24.5,-82.4],"neck":[-24.5,-82.4],"head":[-9.2,-160.1],"shR":[26.1,-125.2],"elR":[93.5,-97.4],"haR":[62.9,-153.8],"shL":[-79,-105.6],"elL":[-138.7,-34.8],"haL":[-179.4,-95.4],"hipR":[29.2,20.1],"knR":[47,158.5],"ftR":[73.2,308.1],"hipL":[-59.4,55.3],"knL":[-80.3,190.1],"ftL":[-56.2,339.3]},{"rootY":-7.2,"hips":[0,0],"chest":[-32.3,-79.1],"neck":[-32.3,-79.1],"head":[-13.2,-156.1],"shR":[22.8,-113.8],"elR":[100.2,-73.8],"haR":[89.8,-131.6],"shL":[-85,-111.5],"elL":[-161.7,-53.8],"haL":[-194.1,-118.4],"hipR":[11.5,10.4],"knR":[46.7,145.5],"ftR":[77.2,294.7],"hipL":[-46.2,63.5],"knL":[-75.7,195.7],"ftL":[-52.1,346.3]},{"rootY":-9,"hips":[0,0],"chest":[-33.8,-78.2],"neck":[-33.8,-78.2],"head":[-11.9,-154.6],"shR":[20.2,-111.8],"elR":[96.9,-62.5],"haR":[104.3,-118.9],"shL":[-83.8,-111.7],"elL":[-163.2,-58.1],"haL":[-191.5,-122.5],"hipR":[7.2,17.8],"knR":[47.4,151.4],"ftR":[84.4,298.8],"hipL":[-43.2,61],"knL":[-66,190.4],"ftL":[-37.6,340.5]},{"rootY":-8.3,"hips":[0,0],"chest":[-30.3,-80.1],"neck":[-30.3,-80.1],"head":[-10,-156.6],"shR":[22.2,-116.5],"elR":[91.2,-64.7],"haR":[96.2,-123.7],"shL":[-80.4,-110.4],"elL":[-154.2,-49],"haL":[-185,-111.2],"hipR":[15.8,18.7],"knR":[39.2,155.4],"ftR":[86.5,299.9],"hipL":[-49,59.5],"knL":[-60.2,190.9],"ftL":[-32.7,342.2]},{"rootY":-8.5,"hips":[0,0],"chest":[-26.2,-81.9],"neck":[-26.2,-81.9],"head":[-8.8,-158.8],"shR":[24.1,-123.6],"elR":[80.9,-76.6],"haR":[72.3,-138],"shL":[-76.6,-105.8],"elL":[-139.2,-33.3],"haL":[-179.3,-92.4],"hipR":[29.2,32.8],"knR":[32.6,168.7],"ftR":[88.5,310.5],"hipL":[-63.6,47],"knL":[-57.1,181.6],"ftL":[-27.2,334.6]},{"rootY":-5.8,"hips":[0,0],"chest":[-19,-83.3],"neck":[-19,-83.3],"head":[-5.3,-160],"shR":[26.6,-132.7],"elR":[68.4,-93.2],"haR":[48,-155.9],"shL":[-69.3,-97.5],"elL":[-113.2,-15.2],"haL":[-161.1,-70.3],"hipR":[37,45.4],"knR":[35.5,178.5],"ftR":[87.3,321.6],"hipL":[-75.8,32.5],"knL":[-55.1,167.9],"ftL":[-25.3,322]},{"rootY":0.2,"hips":[0,0],"chest":[-10.1,-83.5],"neck":[-10.1,-83.5],"head":[0,-159.1],"shR":[32.3,-136],"elR":[64.8,-103.6],"haR":[34.8,-165.3],"shL":[-59.4,-93.4],"elL":[-81.9,-6.4],"haL":[-135.1,-53.4],"hipR":[42.9,48.1],"knR":[39.1,181.4],"ftR":[73.7,329.5],"hipL":[-79.5,28.2],"knL":[-55.6,163.2],"ftL":[-22.2,316.2]},{"rootY":2.5,"hips":[0,0],"chest":[-5.9,-83.4],"neck":[-5.9,-83.4],"head":[3.4,-158.6],"shR":[36.8,-133.7],"elR":[69.3,-102.8],"haR":[31.7,-160.6],"shL":[-54.7,-96.8],"elL":[-67.3,-9.5],"haL":[-120.4,-53.1],"hipR":[46.2,47.7],"knR":[40.4,182.1],"ftR":[67.8,331.8],"hipL":[-79.1,30],"knL":[-56.6,165],"ftL":[-20.6,316.7]},{"rootY":2.9,"hips":[0,0],"chest":[-9.9,-83.5],"neck":[-9.9,-83.5],"head":[0.8,-159.4],"shR":[34.4,-131.3],"elR":[78.6,-88.6],"haR":[39.2,-140.6],"shL":[-59.5,-100.3],"elL":[-90,-17.7],"haL":[-135.9,-71.5],"hipR":[43.1,46.5],"knR":[37.9,180.8],"ftR":[78.5,327.1],"hipL":[-78.1,31.2],"knL":[-59.3,166.4],"ftL":[-22.5,317.7]},{"rootY":1.4,"hips":[0,0],"chest":[-18.7,-83.1],"neck":[-18.7,-83.1],"head":[-5.9,-159.8],"shR":[27.9,-127.2],"elR":[88.2,-68.1],"haR":[57.1,-109.9],"shL":[-68.9,-104.9],"elL":[-122.9,-31.1],"haL":[-161.8,-92.7],"hipR":[34.2,38.9],"knR":[30.2,176.4],"ftR":[91.9,315.4],"hipL":[-70.4,40.1],"knL":[-68.4,175.2],"ftL":[-32.2,326]},{"rootY":2.1,"hips":[0,0],"chest":[-27.3,-81.4],"neck":[-27.3,-81.4],"head":[-12.2,-158.6],"shR":[23.7,-118.2],"elR":[88.6,-49.3],"haR":[77.9,-77.4],"shL":[-78.3,-111.7],"elL":[-148.5,-47.2],"haL":[-182.2,-111.6],"hipR":[17.1,27.6],"knR":[21.3,167],"ftR":[97.2,298.9],"hipL":[-55,51.7],"knL":[-76.7,183],"ftL":[-41.4,333.5]},{"rootY":4.9,"hips":[0,0],"chest":[-32.6,-79.3],"neck":[-32.6,-79.3],"head":[-16,-156.6],"shR":[19.2,-110.8],"elR":[80.4,-39.1],"haR":[92.8,-53.7],"shL":[-82.2,-115.4],"elL":[-157.6,-56.1],"haL":[-188.9,-119.5],"hipR":[-0.5,22.5],"knR":[16.1,161],"ftR":[93.4,291.5],"hipL":[-39.8,58.1],"knL":[-80.7,181.9],"ftL":[-46.7,331.9]},{"rootY":8.1,"hips":[0,0],"chest":[-35.3,-78],"neck":[-35.3,-78],"head":[-18.2,-155.6],"shR":[13.6,-108.8],"elR":[77.3,-38.5],"haR":[88.1,-50.9],"shL":[-82.8,-115.1],"elL":[-155.1,-53.5],"haL":[-188.5,-112.5],"hipR":[-4.3,22.6],"knR":[17.5,160.1],"ftR":[87.8,294.6],"hipL":[-36.4,58.7],"knL":[-83.4,178.7],"ftL":[-50.4,327.7]},{"rootY":10.8,"hips":[0,0],"chest":[-34,-78.5],"neck":[-34,-78.5],"head":[-18.4,-156.5],"shR":[10.4,-111.2],"elR":[72.5,-40.7],"haR":[59.2,-59.9],"shL":[-79,-113.8],"elL":[-138.7,-38.4],"haL":[-182.1,-87.7],"hipR":[6.7,21.4],"knR":[18.8,159.9],"ftR":[83.9,297.6],"hipL":[-43,59.1],"knL":[-85.4,181.2],"ftL":[-56.3,329]},{"rootY":10.7,"hips":[0,0],"chest":[-29.2,-79.9],"neck":[-29.2,-79.9],"head":[-17.5,-158.5],"shR":[10.7,-116.9],"elR":[55.4,-45.9],"haR":[18.5,-72.7],"shL":[-72.1,-110.4],"elL":[-109.1,-24.8],"haL":[-169.1,-61.8],"hipR":[26.8,32.5],"knR":[25,169.1],"ftR":[78.2,310.3],"hipL":[-57.3,51],"knL":[-79.1,178.8],"ftL":[-52.8,324.4]},{"rootY":12.4,"hips":[0,0],"chest":[-21.7,-79.8],"neck":[-21.7,-79.8],"head":[-13.8,-158.6],"shR":[12,-124.5],"elR":[27.8,-55.4],"haR":[-23.3,-87.1],"shL":[-62.4,-101.5],"elL":[-66.9,-15.3],"haL":[-135.9,-39.1],"hipR":[41,43.7],"knR":[41.2,178.5],"ftR":[71.3,325.7],"hipL":[-72.1,39.1],"knL":[-75.7,172.7],"ftL":[-49.1,316]},{"rootY":18.1,"hips":[0,0],"chest":[-17,-78.4],"neck":[-17,-78.4],"head":[-12.7,-156.9],"shR":[14,-126.1],"elR":[2.3,-63.2],"haR":[-56.2,-95.9],"shL":[-57.2,-96.1],"elL":[-31.1,-16.1],"haL":[-96.9,-24.6],"hipR":[47.9,43.8],"knR":[46.8,175.5],"ftR":[67.7,322.3],"hipL":[-75.8,36.8],"knL":[-80.7,171.4],"ftL":[-59,308.2]},{"rootY":27.9,"hips":[0,0],"chest":[-16.2,-79.1],"neck":[-16.2,-79.1],"head":[-12.2,-157.6],"shR":[14.8,-124.3],"elR":[-6.9,-63.2],"haR":[-70.3,-91.8],"shL":[-55.7,-100.1],"elL":[-23.4,-20.6],"haL":[-82.9,-27.7],"hipR":[47.3,43.2],"knR":[32.5,171.9],"ftR":[57.2,314.4],"hipL":[-74.7,38.3],"knL":[-80.4,171.6],"ftL":[-71.7,300]},{"rootY":34.2,"hips":[0,0],"chest":[-23.9,-79],"neck":[-23.9,-79],"head":[-18.3,-157.7],"shR":[5.7,-123.6],"elR":[0.3,-55.1],"haR":[-65.8,-76.5],"shL":[-60.9,-100.8],"elL":[-46.5,-16],"haL":[-108.1,-38.6],"hipR":[39.8,41.2],"knR":[2.5,168.7],"ftR":[47.3,302.6],"hipL":[-70,41.7],"knL":[-88.9,170.1],"ftL":[-77.3,294.8]},{"rootY":39.4,"hips":[0,0],"chest":[-34,-77.7],"neck":[-34,-77.7],"head":[-26.9,-156.7],"shR":[-4.4,-120.9],"elR":[20.3,-46.1],"haR":[-43.8,-57.5],"shL":[-71.2,-101.1],"elL":[-81.5,-12.8],"haL":[-143.3,-48.3],"hipR":[24.7,31.1],"knR":[-25.3,161],"ftR":[44.7,285.3],"hipL":[-55.6,52.1],"knL":[-110.7,166.9],"ftL":[-82.3,298.7]},{"rootY":44.2,"hips":[0,0],"chest":[-42.7,-74.4],"neck":[-42.7,-74.4],"head":[-34.4,-153.7],"shR":[-10.5,-114.1],"elR":[44.5,-42.2],"haR":[-8.8,-38.7],"shL":[-82.6,-101.8],"elL":[-114.1,-13.1],"haL":[-172.8,-56.5],"hipR":[3.4,21.7],"knR":[-37.1,155.1],"ftR":[39.3,276.7],"hipL":[-38.1,60.7],"knL":[-127.5,156.6],"ftL":[-95,300.1]},{"rootY":47.9,"hips":[0,0],"chest":[-48,-71],"neck":[-48,-71],"head":[-39.6,-150.5],"shR":[-15.4,-109.7],"elR":[56.4,-47.4],"haR":[19.8,-27.6],"shL":[-89.9,-99.4],"elL":[-129.7,-11.9],"haL":[-187.7,-55.5],"hipR":[-10.1,20.6],"knR":[-45.4,155.6],"ftR":[32.4,274.5],"hipL":[-29.9,61.4],"knL":[-131.7,149.5],"ftL":[-103.6,298.4]},{"rootY":52.2,"hips":[0,0],"chest":[-47.6,-71.2],"neck":[-47.6,-71.2],"head":[-40.6,-150.9],"shR":[-16.7,-111.6],"elR":[59.1,-54.4],"haR":[25.9,-27.5],"shL":[-89,-97.6],"elL":[-127.5,-9.6],"haL":[-188,-47.9],"hipR":[-9.4,22.1],"knR":[-48.6,156],"ftR":[30.4,272.7],"hipL":[-30.5,60.4],"knL":[-135.1,146.6],"ftL":[-104.2,295.2]},{"rootY":56,"hips":[0,0],"chest":[-45.8,-72.7],"neck":[-45.8,-72.7],"head":[-40.4,-152.3],"shR":[-16.2,-115.4],"elR":[50.6,-53.1],"haR":[3.9,-34.1],"shL":[-85.9,-96.5],"elL":[-115.5,-5],"haL":[-179.2,-39.5],"hipR":[0.8,24.3],"knR":[-49.5,154.5],"ftR":[29.2,271.4],"hipL":[-37.3,58.8],"knL":[-138.1,145.8],"ftL":[-101.3,290.2]},{"rootY":58.9,"hips":[0,0],"chest":[-41.1,-74.6],"neck":[-41.1,-74.6],"head":[-38.2,-154.1],"shR":[-14.8,-121],"elR":[28.8,-50.4],"haR":[-31.3,-43.6],"shL":[-79.4,-93.9],"elL":[-90.6,0],"haL":[-157.4,-28.6],"hipR":[18.1,29.3],"knR":[-42.2,154.7],"ftR":[28.4,274.1],"hipL":[-50.6,54.1],"knL":[-132.2,149.7],"ftL":[-95.6,283.9]},{"rootY":61.6,"hips":[0,0],"chest":[-35.5,-75.8],"neck":[-35.5,-75.8],"head":[-34.4,-155],"shR":[-12.3,-124.4],"elR":[4.6,-49.8],"haR":[-62.8,-53.4],"shL":[-72.1,-92],"elL":[-58.3,-1.2],"haL":[-125.2,-17.9],"hipR":[36.7,34],"knR":[-27.5,153],"ftR":[26.5,276.7],"hipL":[-63.1,49.4],"knL":[-109.3,162.5],"ftL":[-98.9,267]},{"rootY":64.6,"hips":[0,0],"chest":[-31.3,-76.5],"neck":[-31.3,-76.5],"head":[-31.5,-155.4],"shR":[-9,-126.1],"elR":[-12.1,-52.5],"haR":[-82.1,-59.7],"shL":[-68.1,-91.4],"elL":[-37,-8],"haL":[-100.6,-13.9],"hipR":[49.7,35.7],"knR":[-12,149.6],"ftR":[28.7,276.9],"hipL":[-69.5,46.9],"knL":[-87.8,172.7],"ftL":[-104.9,256.4]},{"rootY":66.7,"hips":[0,0],"chest":[-31.5,-75.8],"neck":[-31.5,-75.8],"head":[-31.9,-154.9],"shR":[-6.9,-125.9],"elR":[-13.9,-53.8],"haR":[-84.4,-59.5],"shL":[-72.3,-89.9],"elL":[-41.4,-8.4],"haL":[-103.1,-18.5],"hipR":[53.8,35],"knR":[-6.6,146],"ftR":[31.3,275],"hipL":[-70.3,46.9],"knL":[-82.3,175.8],"ftL":[-88,266.9]},{"rootY":67,"hips":[0,0],"chest":[-35.2,-74.9],"neck":[-35.2,-74.9],"head":[-35.7,-154.4],"shR":[-7.5,-125.2],"elR":[3.8,-52.5],"haR":[-64.3,-53.6],"shL":[-80.2,-88.8],"elL":[-67.9,-1.8],"haL":[-131.8,-22.7],"hipR":[50.6,32.9],"knR":[-11.7,145.1],"ftR":[30.8,273.7],"hipL":[-67.7,49.6],"knL":[-89.7,173.8],"ftL":[-91.8,270.6]},{"rootY":64.2,"hips":[0,0],"chest":[-43,-72.8],"neck":[-43,-72.8],"head":[-41.8,-152.8],"shR":[-11.1,-121.9],"elR":[29.3,-51.8],"haR":[-29.1,-46.5],"shL":[-92.3,-88.4],"elL":[-102.2,3.6],"haL":[-168.6,-23.9],"hipR":[39.9,28.4],"knR":[-21.9,146.7],"ftR":[32.9,272.8],"hipL":[-61,54],"knL":[-102,172.1],"ftL":[-98.5,280.9]},{"rootY":60.8,"hips":[0,0],"chest":[-49.5,-69.9],"neck":[-49.5,-69.9],"head":[-46.2,-150],"shR":[-12.9,-117],"elR":[53.4,-53.9],"haR":[13.5,-41],"shL":[-103.1,-88.1],"elL":[-129.8,4],"haL":[-195.8,-26.7],"hipR":[23.5,23.9],"knR":[-31.9,149.9],"ftR":[44.1,270.7],"hipL":[-52.2,57.3],"knL":[-114.5,166.2],"ftL":[-105,285.1]},{"rootY":59.3,"hips":[0,0],"chest":[-50,-69.8],"neck":[-50,-69.8],"head":[-46.1,-149.9],"shR":[-10.7,-117.2],"elR":[65.8,-60.3],"haR":[47.7,-38.7],"shL":[-106.6,-87.6],"elL":[-142.5,1.1],"haL":[-204.3,-30.9],"hipR":[13.4,23.5],"knR":[-38,152.6],"ftR":[48.6,269.3],"hipL":[-46.9,57.8],"knL":[-121,161],"ftL":[-106.5,288]},{"rootY":58.4,"hips":[0,0],"chest":[-45.9,-72.6],"neck":[-45.9,-72.6],"head":[-42.9,-152.6],"shR":[-5.4,-121.8],"elR":[71.3,-65.3],"haR":[61.5,-41],"shL":[-103.4,-88.2],"elL":[-137.5,0.1],"haL":[-195.6,-32.2],"hipR":[15.3,25],"knR":[-34,155],"ftR":[54.9,272.2],"hipL":[-49.4,56.2],"knL":[-121.4,160.3],"ftL":[-101.1,289.5]},{"rootY":54.3,"hips":[0,0],"chest":[-39,-76.2],"neck":[-39,-76.2],"head":[-36.5,-156.1],"shR":[3.5,-126.2],"elR":[72.8,-60.9],"haR":[53.7,-44.1],"shL":[-96.7,-91.1],"elL":[-121.8,1.2],"haL":[-181.8,-28.8],"hipR":[25.4,27.1],"knR":[-17.8,157],"ftR":[64,279],"hipL":[-58.6,52.1],"knL":[-112.5,165.4],"ftL":[-86.3,291.4]},{"rootY":45.5,"hips":[0,0],"chest":[-27,-80.2],"neck":[-27,-80.2],"head":[-26.4,-159.6],"shR":[13.5,-133.4],"elR":[66,-56.9],"haR":[32.6,-48],"shL":[-83.8,-90.3],"elL":[-96.5,4.7],"haL":[-162.6,-18.1],"hipR":[40.2,31],"knR":[7.7,156.2],"ftR":[68.6,288.5],"hipL":[-70.7,44.2],"knL":[-92.7,169.7],"ftL":[-67.1,293.3]},{"rootY":35.6,"hips":[0,0],"chest":[-14.7,-82.2],"neck":[-14.7,-82.2],"head":[-16.8,-161],"shR":[24,-138.8],"elR":[57,-58.1],"haR":[10.5,-53.3],"shL":[-71.1,-87.3],"elL":[-71.1,5.6],"haL":[-142.3,-7],"hipR":[53.9,37],"knR":[35.6,157.2],"ftR":[65.8,300.8],"hipL":[-77.3,34.3],"knL":[-78.5,168.4],"ftL":[-54,295.6]},{"rootY":27.6,"hips":[0,0],"chest":[-7.5,-83],"neck":[-7.5,-83],"head":[-10.1,-160.9],"shR":[34.7,-139.2],"elR":[54.2,-60.5],"haR":[0.2,-57.7],"shL":[-66.3,-88.5],"elL":[-58.3,-0.5],"haL":[-131.1,-6.5],"hipR":[61.6,39.8],"knR":[52.5,160.5],"ftR":[67,310.3],"hipL":[-76,30.5],"knL":[-73,167.2],"ftL":[-50.7,299]},{"rootY":23.8,"hips":[0,0],"chest":[-4.8,-83.6],"neck":[-4.8,-83.6],"head":[-5.8,-161],"shR":[43.3,-136.6],"elR":[62.1,-59.7],"haR":[7.9,-60.8],"shL":[-66.7,-93.5],"elL":[-65.3,-5.2],"haL":[-136.3,-21.6],"hipR":[62.3,42.2],"knR":[60.2,164.1],"ftR":[76.9,314.9],"hipL":[-75.8,28.9],"knL":[-67.9,165.6],"ftL":[-44.8,300.7]},{"rootY":20.2,"hips":[0,0],"chest":[-7.2,-84.1],"neck":[-7.2,-84.1],"head":[-4.8,-161.4],"shR":[44.3,-134.9],"elR":[74.9,-56.3],"haR":[29.6,-59],"shL":[-70.3,-96.7],"elL":[-89.6,-6.5],"haL":[-154.6,-39.8],"hipR":[60.6,36.7],"knR":[61,162.4],"ftR":[84.8,312.5],"hipL":[-75.5,35],"knL":[-67.6,171.4],"ftL":[-42.3,310.4]},{"rootY":13.4,"hips":[0,0],"chest":[-15.4,-83.7],"neck":[-15.4,-83.7],"head":[-9.1,-161],"shR":[42.3,-128.9],"elR":[88.6,-49.9],"haR":[59,-51.1],"shL":[-81,-103.4],"elL":[-117.2,-14.7],"haL":[-173.9,-59.1],"hipR":[53.7,23.4],"knR":[55.5,156.4],"ftR":[91.3,304.5],"hipL":[-70.8,46.6],"knL":[-71.3,181.6],"ftL":[-44.9,322.6]},{"rootY":4.1,"hips":[0,0],"chest":[-27.8,-81],"neck":[-27.8,-81],"head":[-15.7,-157.9],"shR":[33.1,-121.1],"elR":[90.3,-44.9],"haR":[81,-42.9],"shL":[-92.5,-107],"elL":[-137.1,-23.1],"haL":[-184.7,-72.9],"hipR":[41.7,13.6],"knR":[49.4,149.9],"ftR":[88.7,297],"hipL":[-62.6,56.5],"knL":[-71.7,188.9],"ftL":[-45.9,332.9]},{"rootY":-2.4,"hips":[0,0],"chest":[-36.1,-77.7],"neck":[-36.1,-77.7],"head":[-20,-154],"shR":[26.8,-114.2],"elR":[89.5,-43.9],"haR":[97.4,-37.7],"shL":[-100.1,-107.9],"elL":[-145.1,-29.3],"haL":[-185.8,-79.8],"hipR":[30.5,11.3],"knR":[47.4,147.8],"ftR":[86.7,294.2],"hipL":[-55.5,61.1],"knL":[-67,190.1],"ftL":[-42,336.1]},{"rootY":-3.3,"hips":[0,0],"chest":[-38.3,-76.7],"neck":[-38.3,-76.7],"head":[-22.6,-153.2],"shR":[22.8,-114.9],"elR":[91.6,-50.3],"haR":[101.9,-45.6],"shL":[-101.9,-105],"elL":[-145.9,-28.3],"haL":[-183.1,-78.5],"hipR":[27.9,11.8],"knR":[47,147.7],"ftR":[88.1,293],"hipL":[-52,62.9],"knL":[-61.9,190],"ftL":[-38.4,337.1]},{"rootY":-1.5,"hips":[0,0],"chest":[-36.4,-77.7],"neck":[-36.4,-77.7],"head":[-25,-154.6],"shR":[22.1,-119],"elR":[94.5,-57.2],"haR":[91,-64.6],"shL":[-99.3,-102.5],"elL":[-141.1,-19.6],"haL":[-182.5,-67.2],"hipR":[34.4,15.6],"knR":[48,150.9],"ftR":[89.8,295.9],"hipL":[-55.9,60.4],"knL":[-59.5,188.9],"ftL":[-35.1,337.2]},{"rootY":-1.1,"hips":[0,0],"chest":[-32.3,-79.5],"neck":[-32.3,-79.5],"head":[-24,-156],"shR":[21.5,-126],"elR":[88.6,-66.3],"haR":[68.5,-87.8],"shL":[-94.1,-97.7],"elL":[-127.2,-7.4],"haL":[-179.6,-49.3],"hipR":[44.1,28.3],"knR":[48.6,160.9],"ftR":[88.2,306.5],"hipL":[-65.6,51.2],"knL":[-58.3,183],"ftL":[-31,333.4]},{"rootY":-1.2,"hips":[0,0],"chest":[-27,-80.9],"neck":[-27,-80.9],"head":[-22,-156.8],"shR":[18.8,-134.4],"elR":[74.1,-78.2],"haR":[41.3,-109.2],"shL":[-85.2,-89.9],"elL":[-102.5,3.1],"haL":[-164.8,-32.1],"hipR":[51.1,37.3],"knR":[50.8,169.3],"ftR":[75.4,318],"hipL":[-73.4,42],"knL":[-55.8,176.5],"ftL":[-26.7,327.9]},{"rootY":-1.1,"hips":[0,0],"chest":[-20.6,-81.9],"neck":[-20.6,-81.9],"head":[-20.1,-156.8],"shR":[18.9,-139],"elR":[64.6,-85.8],"haR":[23.3,-119.6],"shL":[-74.7,-85.9],"elL":[-75.4,5.2],"haL":[-142.9,-22.5],"hipR":[55.6,38.4],"knR":[53.9,173.1],"ftR":[59.4,322.4],"hipL":[-75.2,39.1],"knL":[-52.7,173.9],"ftL":[-23,324.9]},{"rootY":-0.1,"hips":[0,0],"chest":[-16.2,-82.5],"neck":[-16.2,-82.5],"head":[-17.4,-156.8],"shR":[21.4,-139.3],"elR":[61.9,-86.7],"haR":[15.6,-118.5],"shL":[-68.6,-87.3],"elL":[-59.6,1.4],"haL":[-126.8,-23.9],"hipR":[56.5,39],"knR":[57.8,174.9],"ftR":[60.9,323.7],"hipL":[-75.6,38.1],"knL":[-51,172.6],"ftL":[-20.4,323.1]},{"rootY":0.9,"hips":[0,0],"chest":[-17,-82.5],"neck":[-17,-82.5],"head":[-16.4,-157.5],"shR":[20.5,-137.7],"elR":[65,-82],"haR":[18.8,-110.4],"shL":[-67.2,-89.7],"elL":[-68.8,0.1],"haL":[-131.4,-34.8],"hipR":[53.2,38.6],"knR":[58.7,174.4],"ftR":[75.1,324.6],"hipL":[-75.3,39.1],"knL":[-53.4,174.1],"ftL":[-23.1,325]},{"rootY":1.2,"hips":[0,0],"chest":[-21.4,-82.3],"neck":[-21.4,-82.3],"head":[-16.7,-158.8],"shR":[18,-133.7],"elR":[72.5,-69.4],"haR":[33.6,-95],"shL":[-70.5,-94.8],"elL":[-95,-5.6],"haL":[-151,-51.7],"hipR":[43.7,36.6],"knR":[52.9,173],"ftR":[88.1,321.1],"hipL":[-72.4,41.7],"knL":[-58.5,177.2],"ftL":[-29.3,328.8]},{"rootY":1,"hips":[0,0],"chest":[-27.2,-81.5],"neck":[-27.2,-81.5],"head":[-17.7,-159.2],"shR":[17.1,-125.3],"elR":[77,-53.5],"haR":[52.2,-73.6],"shL":[-75.9,-103.7],"elL":[-118.6,-18.8],"haL":[-168.6,-71.9],"hipR":[27.1,30.9],"knR":[44.4,168.8],"ftR":[94,312.8],"hipL":[-62.3,48.1],"knL":[-65.6,183.1],"ftL":[-39.9,335.4]},{"rootY":-0.8,"hips":[0,0],"chest":[-30.1,-80.4],"neck":[-30.1,-80.4],"head":[-16.5,-158.2],"shR":[18.9,-115.3],"elR":[78.8,-41.1],"haR":[69.1,-54.4],"shL":[-78.4,-113],"elL":[-132.8,-33.7],"haL":[-177.3,-89.5],"hipR":[8.2,26],"knR":[35.3,162.7],"ftR":[95.9,302.3],"hipL":[-48,54.1],"knL":[-71.2,185.7],"ftL":[-49.2,338]},{"rootY":-2.1,"hips":[0,0],"chest":[-30.5,-80.1],"neck":[-30.5,-80.1],"head":[-14.5,-157.8],"shR":[18.5,-110.4],"elR":[79,-36.7],"haR":[71.4,-51.2],"shL":[-76.2,-117.6],"elL":[-134.9,-41.5],"haL":[-176.2,-97.2],"hipR":[-1.1,26.2],"knR":[29.6,161.9],"ftR":[91.4,300.4],"hipL":[-41.7,54.5],"knL":[-72.4,184.2],"ftL":[-53.4,336.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-27.8,-81.2],"neck":[-27.8,-81.2],"head":[-11.9,-158.9],"shR":[18.8,-110.4],"elR":[76.2,-36.5],"haR":[55.2,-61.1],"shL":[-70.1,-119.7],"elL":[-126.2,-41.6],"haL":[-169.4,-96.3],"hipR":[0.9,26.8],"knR":[24,163.9],"ftR":[84.6,303.2],"hipL":[-45,52.9],"knL":[-74,184.9],"ftL":[-61.1,336.9]},{"rootY":0.4,"hips":[0,0],"chest":[-22.4,-82.7],"neck":[-22.4,-82.7],"head":[-8.5,-160.7],"shR":[20.3,-114.7],"elR":[61.8,-40.3],"haR":[25.1,-76.2],"shL":[-60.7,-118.3],"elL":[-107.5,-36.3],"haL":[-156.3,-89],"hipR":[10.7,30],"knR":[24.4,168.6],"ftR":[79,310.7],"hipL":[-52.8,49.6],"knL":[-77.1,184.1],"ftL":[-70.7,335.8]},{"rootY":-1.1,"hips":[0,0],"chest":[-15.3,-83.3],"neck":[-15.3,-83.3],"head":[-4.7,-161.8],"shR":[19.9,-123.5],"elR":[35.6,-50.5],"haR":[-9.2,-95.1],"shL":[-48.5,-109.7],"elL":[-74.1,-24.5],"haL":[-128.2,-73.5],"hipR":[22.7,40.5],"knR":[30.8,179.7],"ftR":[71.5,325.9],"hipL":[-64.5,39.9],"knL":[-81.8,175.8],"ftL":[-79.1,326.8]},{"rootY":-4,"hips":[0,0],"chest":[-10.4,-82],"neck":[-10.4,-82],"head":[-3.7,-160.2],"shR":[18.8,-128.1],"elR":[10,-58.6],"haR":[-37.3,-108.5],"shL":[-40.1,-101.3],"elL":[-38,-16.2],"haL":[-93.6,-57],"hipR":[29.5,47.4],"knR":[26.1,186],"ftR":[64.4,331.7],"hipL":[-73.7,30.7],"knL":[-90.9,165.8],"ftL":[-94.7,315]},{"rootY":-5.4,"hips":[0,0],"chest":[-8.1,-80.8],"neck":[-8.1,-80.8],"head":[-3.5,-158.6],"shR":[20.2,-125.8],"elR":[-7,-61.9],"haR":[-55.5,-113.3],"shL":[-38.1,-101.7],"elL":[-17.8,-18.3],"haL":[-68.8,-52.5],"hipR":[29.8,49.2],"knR":[18.7,187.8],"ftR":[52.6,333.5],"hipL":[-76.1,27.2],"knL":[-101.4,160.8],"ftL":[-113.1,307.8]},{"rootY":-3.8,"hips":[0,0],"chest":[-8.4,-80.6],"neck":[-8.4,-80.6],"head":[-3.8,-158.4],"shR":[19.6,-123.8],"elR":[-5.2,-58.4],"haR":[-56.3,-107.9],"shL":[-37,-103.7],"elL":[-26.8,-20.4],"haL":[-74.1,-63.6],"hipR":[23.3,49.4],"knR":[7.4,188.1],"ftR":[42.5,332.2],"hipL":[-74,25.9],"knL":[-110.4,157.5],"ftL":[-128.1,304]},{"rootY":-1.8,"hips":[0,0],"chest":[-12.3,-81.9],"neck":[-12.3,-81.9],"head":[-6.6,-160.1],"shR":[16.4,-122.9],"elR":[13.8,-49.2],"haR":[-39.6,-94.2],"shL":[-41.1,-107.7],"elL":[-54.6,-27.7],"haL":[-102,-80.1],"hipR":[10.4,43.1],"knR":[-4.8,181.9],"ftR":[33.8,324.1],"hipL":[-64.8,31.6],"knL":[-119.5,157],"ftL":[-139.8,303.9]},{"rootY":2.1,"hips":[0,0],"chest":[-17.5,-83.4],"neck":[-17.5,-83.4],"head":[-10.2,-162],"shR":[15.7,-118.4],"elR":[41.4,-38.9],"haR":[-9.9,-76.9],"shL":[-49.4,-116.1],"elL":[-87.3,-39.3],"haL":[-132.2,-96.7],"hipR":[-7.9,32.5],"knR":[-19.9,171.2],"ftR":[30.6,310.3],"hipL":[-51.6,39.7],"knL":[-123.2,155.9],"ftL":[-141.8,305]},{"rootY":5.8,"hips":[0,0],"chest":[-21.9,-82.8],"neck":[-21.9,-82.8],"head":[-12.3,-161.2],"shR":[16.9,-109],"elR":[65.3,-30.8],"haR":[21.9,-59.3],"shL":[-54.7,-124.3],"elL":[-110.6,-49.5],"haL":[-152.7,-109],"hipR":[-23.9,23],"knR":[-31.1,161.5],"ftR":[23.4,299.7],"hipL":[-39.6,47],"knL":[-118.9,157.1],"ftL":[-142.4,307.9]},{"rootY":9.3,"hips":[0,0],"chest":[-22.3,-82.1],"neck":[-22.3,-82.1],"head":[-10.5,-160],"shR":[18.4,-104.1],"elR":[75.9,-28.9],"haR":[42.8,-50.5],"shL":[-52.8,-127.3],"elL":[-115.3,-54.4],"haL":[-157.8,-112.7],"hipR":[-30.9,20.1],"knR":[-34.8,158.3],"ftR":[18,296.9],"hipL":[-32.5,50.8],"knL":[-112.4,160.3],"ftL":[-142.9,311.1]},{"rootY":12.8,"hips":[0,0],"chest":[-21.3,-82.5],"neck":[-21.3,-82.5],"head":[-9.2,-160.4],"shR":[18.2,-107.7],"elR":[68.9,-30.7],"haR":[33.9,-59.4],"shL":[-51,-124.5],"elL":[-110.6,-49.4],"haL":[-154.4,-105.9],"hipR":[-27.7,19.2],"knR":[-38.1,157],"ftR":[13.1,295.2],"hipL":[-35.7,50.8],"knL":[-119,158],"ftL":[-150.3,307.2]},{"rootY":15.1,"hips":[0,0],"chest":[-18.5,-83.9],"neck":[-18.5,-83.9],"head":[-9,-161.9],"shR":[16.6,-116.7],"elR":[49.3,-39.4],"haR":[4.5,-78.1],"shL":[-46.6,-118.2],"elL":[-94.9,-38.1],"haL":[-142.5,-93.2],"hipR":[-14.2,23.3],"knR":[-34.4,160.2],"ftR":[8.1,299.5],"hipL":[-46.8,46.4],"knL":[-132,153.2],"ftL":[-160.8,299.7]},{"rootY":14.3,"hips":[0,0],"chest":[-13.5,-83.8],"neck":[-13.5,-83.8],"head":[-8.6,-161.7],"shR":[15.2,-126.7],"elR":[22.9,-53],"haR":[-28.1,-98.1],"shL":[-39.1,-106.9],"elL":[-63,-21.2],"haL":[-114.1,-71.7],"hipR":[7.3,32.8],"knR":[-31.7,165.7],"ftR":[4.9,305.5],"hipL":[-61,39.7],"knL":[-139.7,151.9],"ftL":[-171.2,292]},{"rootY":13.4,"hips":[0,0],"chest":[-10.3,-82.6],"neck":[-10.3,-82.6],"head":[-7.8,-159.6],"shR":[13.7,-131],"elR":[-0.4,-63.5],"haR":[-52.4,-112.2],"shL":[-34,-99],"elL":[-26.2,-12.4],"haL":[-78.2,-51.7],"hipR":[26.3,42],"knR":[-32.3,168.4],"ftR":[0.8,308.7],"hipL":[-70.4,35.3],"knL":[-140.4,152.8],"ftL":[-180.1,282.9]},{"rootY":12.8,"hips":[0,0],"chest":[-10.8,-82],"neck":[-10.8,-82],"head":[-9.7,-158.9],"shR":[12.9,-129],"elR":[-16.4,-68.2],"haR":[-68.4,-117.6],"shL":[-35.2,-100.5],"elL":[-14.3,-15.9],"haL":[-60.6,-50.9],"hipR":[33.5,45.4],"knR":[-30.8,169.4],"ftR":[-4.1,311.1],"hipL":[-74.1,33.1],"knL":[-134.2,155.2],"ftL":[-183.1,276.1]},{"rootY":14.4,"hips":[0,0],"chest":[-11.4,-82.4],"neck":[-11.4,-82.4],"head":[-9.6,-159.8],"shR":[13.7,-127.2],"elR":[-13.5,-65.1],"haR":[-67,-112.8],"shL":[-36.4,-103.5],"elL":[-30.9,-19.7],"haL":[-74.8,-65.6],"hipR":[32.5,42.9],"knR":[-30.3,167.7],"ftR":[-8,309.9],"hipL":[-72.6,35.3],"knL":[-132.4,157],"ftL":[-182.3,278.1]},{"rootY":15.1,"hips":[0,0],"chest":[-14.9,-82.9],"neck":[-14.9,-82.9],"head":[-12.6,-161],"shR":[12.9,-126],"elR":[3.6,-57],"haR":[-52,-101.2],"shL":[-42.4,-106.2],"elL":[-61.7,-25.3],"haL":[-105,-79.6],"hipR":[21.7,37],"knR":[-33.8,165],"ftR":[-12.7,307.4],"hipL":[-67.2,38.8],"knL":[-139.1,154.7],"ftL":[-179,286.9]},{"rootY":15.1,"hips":[0,0],"chest":[-19.8,-83.3],"neck":[-19.8,-83.3],"head":[-15.1,-162],"shR":[10.4,-123.3],"elR":[26.1,-49.9],"haR":[-28.6,-88.8],"shL":[-49,-110.2],"elL":[-91.4,-33.8],"haL":[-134.4,-91.9],"hipR":[1.7,26.4],"knR":[-37,159.5],"ftR":[-16.2,303.1],"hipL":[-57.8,43.3],"knL":[-137.2,154.9],"ftL":[-177.2,297.1]},{"rootY":14.8,"hips":[0,0],"chest":[-22.1,-82.6],"neck":[-22.1,-82.6],"head":[-15.1,-161.4],"shR":[13.6,-113.6],"elR":[51.8,-38.9],"haR":[3,-72.4],"shL":[-53.5,-119.4],"elL":[-111.8,-46.6],"haL":[-155.9,-104.8],"hipR":[-18.3,18.5],"knR":[-41,154.7],"ftR":[-18,300],"hipL":[-45,48.7],"knL":[-126.2,158.4],"ftL":[-175,303.3]},{"rootY":15.8,"hips":[0,0],"chest":[-21.5,-82.1],"neck":[-21.5,-82.1],"head":[-12.4,-160.8],"shR":[15.5,-106.3],"elR":[68.7,-33.2],"haR":[27.2,-59.6],"shL":[-50.5,-125.4],"elL":[-115.2,-54.6],"haL":[-163.3,-108.4],"hipR":[-29.5,18.1],"knR":[-47.1,155.3],"ftR":[-19.6,301.2],"hipL":[-35.9,50.2],"knL":[-114,161.9],"ftL":[-173.3,305.7]},{"rootY":19.3,"hips":[0,0],"chest":[-20.2,-82.6],"neck":[-20.2,-82.6],"head":[-7.8,-161],"shR":[12.6,-107.4],"elR":[67.2,-32.7],"haR":[30.7,-51.2],"shL":[-44.1,-125.1],"elL":[-107.7,-53],"haL":[-163.5,-96.4],"hipR":[-31.3,19.5],"knR":[-51.4,156.1],"ftR":[-22.1,301.8],"hipL":[-34.9,48.8],"knL":[-106.8,164.2],"ftL":[-169.5,307.1]},{"rootY":21.1,"hips":[0,0],"chest":[-18.6,-83.4],"neck":[-18.6,-83.4],"head":[-3.7,-161.6],"shR":[8.1,-111.3],"elR":[50.6,-30.2],"haR":[13.1,-40.7],"shL":[-37.9,-123],"elL":[-93.1,-44.3],"haL":[-158.1,-69],"hipR":[-30.4,20.3],"knR":[-54.5,156.3],"ftR":[-25.4,302.6],"hipL":[-35.8,47.9],"knL":[-107.7,162.5],"ftL":[-152.6,312.6]},{"rootY":19.8,"hips":[0,0],"chest":[-19.6,-83.4],"neck":[-19.6,-83.4],"head":[-0.5,-160.7],"shR":[3.8,-111.6],"elR":[27.6,-25],"haR":[-14.9,-21.4],"shL":[-36.2,-122.7],"elL":[-76.1,-35.4],"haL":[-145.9,-27.6],"hipR":[-30.4,20.5],"knR":[-54.1,157.2],"ftR":[-29.8,305.3],"hipL":[-36.1,47.5],"knL":[-108.7,160.9],"ftL":[-122.4,317.4]},{"rootY":17.7,"hips":[0,0],"chest":[-22.6,-82.6],"neck":[-22.6,-82.6],"head":[1.7,-158.6],"shR":[-1.9,-109.7],"elR":[7.3,-20.7],"haR":[-40,2.5],"shL":[-37.5,-123.2],"elL":[-63.9,-31.1],"haL":[-115.9,19.9],"hipR":[-29.7,20.1],"knR":[-53.7,157.2],"ftR":[-35.3,307],"hipL":[-37.4,47.2],"knL":[-109.7,159.4],"ftL":[-83.5,314.2]},{"rootY":15.9,"hips":[0,0],"chest":[-24.8,-82],"neck":[-24.8,-82],"head":[3.1,-157.1],"shR":[-8.4,-110.7],"elR":[-8.1,-21.8],"haR":[-58.5,18.5],"shL":[-36.7,-121.2],"elL":[-52.6,-26.7],"haL":[-70.5,43.6],"hipR":[-28,21.8],"knR":[-53.4,158.9],"ftR":[-40,310],"hipL":[-37.5,47],"knL":[-104.9,161.6],"ftL":[-40.8,305.1]},{"rootY":16.2,"hips":[0,0],"chest":[-26.1,-81.7],"neck":[-26.1,-81.7],"head":[2.8,-156.4],"shR":[-14.7,-111.7],"elR":[-16.5,-23.8],"haR":[-66.3,26.1],"shL":[-33.8,-119.5],"elL":[-26,-25.1],"haL":[-26.7,43.7],"hipR":[-27,23.8],"knR":[-55.7,160.5],"ftR":[-44.8,312.3],"hipL":[-35.7,47.6],"knL":[-89.2,169.7],"ftL":[1.1,297.5]},{"rootY":18.5,"hips":[0,0],"chest":[-26.7,-81.6],"neck":[-26.7,-81.6],"head":[0.6,-157],"shR":[-22.5,-113.3],"elR":[-23.5,-27.3],"haR":[-71.1,26.3],"shL":[-27.8,-117.6],"elL":[2.9,-29.2],"haL":[1.3,37.4],"hipR":[-27.8,25.4],"knR":[-58.9,161.4],"ftR":[-50,313.5],"hipL":[-32.5,48.6],"knL":[-60.7,180.1],"ftL":[35.7,300.2]},{"rootY":21.7,"hips":[0,0],"chest":[-26.8,-81.4],"neck":[-26.8,-81.4],"head":[-3.2,-157.9],"shR":[-28.7,-111.8],"elR":[-30.5,-27.7],"haR":[-74.8,27.8],"shL":[-22.8,-119],"elL":[16.3,-33.5],"haL":[17.3,31],"hipR":[-31.9,26.5],"knR":[-62.7,162.1],"ftR":[-56.6,313.5],"hipL":[-28.9,47.7],"knL":[-30.8,184],"ftL":[56.8,309.9]},{"rootY":20.3,"hips":[0,0],"chest":[-27.1,-80.8],"neck":[-27.1,-80.8],"head":[-9.3,-158.5],"shR":[-36.2,-109.3],"elR":[-37.2,-25],"haR":[-79,32.7],"shL":[-18.2,-120.3],"elL":[14.8,-31.8],"haL":[23.1,33],"hipR":[-40,27.4],"knR":[-62.5,163.8],"ftR":[-64.5,313.5],"hipL":[-21.6,46.8],"knL":[-36.2,182.9],"ftL":[45.9,315.2]},{"rootY":14.6,"hips":[0,0],"chest":[-25.1,-80.6],"neck":[-25.1,-80.6],"head":[-12.4,-158.9],"shR":[-43.6,-109.2],"elR":[-40.7,-23.2],"haR":[-79.8,36.8],"shL":[-7.5,-119.9],"elL":[16.4,-28.2],"haL":[22.5,37.9],"hipR":[-48.7,29],"knR":[-53.2,165.6],"ftR":[-59.7,314.8],"hipL":[-9.8,47.5],"knL":[-31.5,182.4],"ftL":[37.4,323.6]},{"rootY":11.6,"hips":[0,0],"chest":[-23.4,-80.4],"neck":[-23.4,-80.4],"head":[-14.8,-159.3],"shR":[-50.1,-109.1],"elR":[-44.7,-22.8],"haR":[-80.5,39.4],"shL":[3.2,-119.5],"elL":[21.9,-26.1],"haL":[12.7,39.1],"hipR":[-56.4,28.3],"knR":[-44.9,161.9],"ftR":[-37.1,310.9],"hipL":[0.8,49.7],"knL":[-25.5,183.8],"ftL":[31.6,330.1]},{"rootY":8.8,"hips":[0,0],"chest":[-21,-80.3],"neck":[-21,-80.3],"head":[-14.8,-159.6],"shR":[-55.2,-109.8],"elR":[-50.8,-25.6],"haR":[-81.8,39],"shL":[12.8,-118.8],"elL":[29.6,-24.6],"haL":[3,34],"hipR":[-60.4,30.7],"knR":[-41.7,161.2],"ftR":[-20.7,305.8],"hipL":[10.7,50.5],"knL":[-25.5,182.6],"ftL":[26,330.4]},{"rootY":5.8,"hips":[0,0],"chest":[-19.5,-79.6],"neck":[-19.5,-79.6],"head":[-13.9,-159],"shR":[-58.7,-110.5],"elR":[-60.3,-28.6],"haR":[-90.3,36.4],"shL":[18.8,-116.5],"elL":[35.8,-21.9],"haL":[-1,29.6],"hipR":[-63.7,28.7],"knR":[-44.3,161.2],"ftR":[-25,308.9],"hipL":[14.5,52.6],"knL":[-23,184.4],"ftL":[24,333.3]},{"rootY":1.6,"hips":[0,0],"chest":[-17.9,-78.9],"neck":[-17.9,-78.9],"head":[-11.9,-158.3],"shR":[-58,-112.2],"elR":[-66.7,-30.3],"haR":[-100.9,32.4],"shL":[22.5,-113.4],"elL":[41.8,-19.3],"haL":[2.5,30.7],"hipR":[-64.1,28.7],"knR":[-48.4,164.7],"ftR":[-34.7,314.2],"hipL":[15.4,52.9],"knL":[-17.5,186],"ftL":[23.9,336.4]},{"rootY":-1.2,"hips":[0,0],"chest":[-16.3,-78.3],"neck":[-16.3,-78.3],"head":[-9.1,-157.6],"shR":[-54.3,-114.3],"elR":[-67.4,-32.6],"haR":[-108.8,24.7],"shL":[23.9,-110],"elL":[45.4,-16.3],"haL":[11,38.7],"hipR":[-63.3,28.5],"knR":[-53.9,167.4],"ftR":[-29.1,315.7],"hipL":[15.2,53.8],"knL":[-13.1,187.7],"ftL":[24.8,339.2]},{"rootY":-1,"hips":[0,0],"chest":[-15.4,-78],"neck":[-15.4,-78],"head":[-7,-156.9],"shR":[-50.1,-117.4],"elR":[-66.1,-37.5],"haR":[-112.1,14],"shL":[23.3,-105.9],"elL":[45.5,-12.4],"haL":[22.2,50],"hipR":[-62.3,26.1],"knR":[-55.6,165.6],"ftR":[-17.4,312.3],"hipL":[12.2,55.5],"knL":[-13.2,189.9],"ftL":[26.8,340.9]},{"rootY":1,"hips":[0,0],"chest":[-15,-77.9],"neck":[-15,-77.9],"head":[-6.5,-156.4],"shR":[-46,-120.1],"elR":[-62.5,-42.8],"haR":[-110.4,5.3],"shL":[21.6,-102.6],"elL":[42.5,-8.7],"haL":[35,58.6],"hipR":[-59.6,24.1],"knR":[-59.3,162.9],"ftR":[-14.5,308.5],"hipL":[7.5,56.7],"knL":[-14.7,191.7],"ftL":[30.5,341.5]},{"rootY":1.6,"hips":[0,0],"chest":[-17.6,-78],"neck":[-17.6,-78],"head":[-8.8,-156.2],"shR":[-45.2,-121.8],"elR":[-57.2,-45.8],"haR":[-105.2,3.6],"shL":[16.3,-100.7],"elL":[38.2,-7.2],"haL":[42.7,61.6],"hipR":[-56.3,24.7],"knR":[-66.7,162.9],"ftR":[-27.1,310.1],"hipL":[3.6,55.9],"knL":[-13.1,191.5],"ftL":[34.4,340.6]}]} \ No newline at end of file diff --git a/ink-theater/mocap/clips/wave.json b/ink-theater/mocap/clips/wave.json index 2bd4467f..a7cea7b2 100644 --- a/ink-theater/mocap/clips/wave.json +++ b/ink-theater/mocap/clips/wave.json @@ -1 +1 @@ -{"name":"wave","fps":30,"height":520,"groundY":284,"frameCount":180,"frames":[{"rootY":0,"hips":[0,0],"chest":[3.1,-86],"neck":[3.7,-146.1],"head":[2.6,-177.8],"shR":[61.2,-143.1],"elR":[139.1,-124.1],"haR":[222.8,-109],"shL":[-55.1,-141.8],"elL":[-130,-112.1],"haL":[-215.5,-84.1],"hipR":[29.3,7.8],"knR":[37.3,164],"ftR":[48.3,283.2],"hipL":[-28.9,9.2],"knL":[-38.3,165.3],"ftL":[-49.4,284.2]},{"rootY":0,"hips":[0,0],"chest":[3,-86],"neck":[3.4,-146.1],"head":[2.3,-177.8],"shR":[61,-143.2],"elR":[139,-124.5],"haR":[222.7,-109.5],"shL":[-55.3,-141.7],"elL":[-130.2,-111.9],"haL":[-215.6,-83.7],"hipR":[29.3,7.7],"knR":[37.4,163.9],"ftR":[48.2,283.1],"hipL":[-28.8,9.3],"knL":[-38.5,165.3],"ftL":[-49.7,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.1,-146.1],"head":[1.8,-177.8],"shR":[60.6,-143.5],"elR":[138.7,-125.1],"haR":[222.4,-110.6],"shL":[-55.6,-141.4],"elL":[-130.5,-111.5],"haL":[-215.9,-83.2],"hipR":[29.3,7.6],"knR":[37.5,163.8],"ftR":[48,283],"hipL":[-28.8,9.4],"knL":[-38.8,165.4],"ftL":[-50.2,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[2.7,-85.9],"neck":[2.7,-146.1],"head":[1.3,-177.8],"shR":[60.2,-143.8],"elR":[138.4,-125.9],"haR":[222.2,-112],"shL":[-56,-141.2],"elL":[-130.8,-111.1],"haL":[-216.2,-82.6],"hipR":[29.3,7.5],"knR":[37.4,163.7],"ftR":[47.7,282.9],"hipL":[-28.8,9.5],"knL":[-39.1,165.5],"ftL":[-50.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-85.9],"neck":[2.3,-146.2],"head":[0.8,-177.8],"shR":[59.9,-144.2],"elR":[138.1,-126.8],"haR":[222.1,-113.4],"shL":[-56.4,-141],"elL":[-131,-110.6],"haL":[-216.3,-81.9],"hipR":[29.3,7.5],"knR":[37.1,163.7],"ftR":[47.2,282.9],"hipL":[-28.8,9.5],"knL":[-39.4,165.5],"ftL":[-51.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.9],"neck":[2,-146.2],"head":[0.4,-177.8],"shR":[59.5,-144.6],"elR":[138,-127.7],"haR":[222,-114.9],"shL":[-56.6,-140.8],"elL":[-131.1,-110.1],"haL":[-216.4,-81.1],"hipR":[29.4,7.5],"knR":[36.9,163.7],"ftR":[46.8,282.9],"hipL":[-28.8,9.5],"knL":[-39.6,165.5],"ftL":[-51.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[1.8,-146.2],"head":[0.1,-177.8],"shR":[59.3,-144.9],"elR":[137.8,-128.6],"haR":[222,-116.3],"shL":[-56.8,-140.6],"elL":[-131.2,-109.6],"haL":[-216.3,-80.2],"hipR":[29.4,7.4],"knR":[36.8,163.7],"ftR":[46.5,282.9],"hipL":[-28.8,9.5],"knL":[-39.8,165.5],"ftL":[-51.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.3,-85.9],"neck":[1.5,-146.2],"head":[-0.3,-177.9],"shR":[59,-145.3],"elR":[137.6,-129.4],"haR":[221.9,-117.5],"shL":[-57.1,-140.4],"elL":[-131.3,-109.1],"haL":[-216.3,-79.2],"hipR":[29.4,7.4],"knR":[36.5,163.7],"ftR":[46.1,283],"hipL":[-28.8,9.5],"knL":[-39.9,165.5],"ftL":[-52,284.4]},{"rootY":0,"hips":[0,0],"chest":[2.2,-86],"neck":[1.2,-146.3],"head":[-0.6,-177.9],"shR":[58.6,-145.6],"elR":[137.3,-130],"haR":[221.7,-118.4],"shL":[-57.4,-140.4],"elL":[-131.5,-108.8],"haL":[-216.3,-78.4],"hipR":[29.3,7.5],"knR":[36,163.8],"ftR":[45.5,283.1],"hipL":[-28.8,9.5],"knL":[-40.1,165.4],"ftL":[-52.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[2,-86],"neck":[0.9,-146.3],"head":[-1,-177.9],"shR":[58.3,-146],"elR":[137,-130.6],"haR":[221.4,-119.1],"shL":[-57.7,-140.4],"elL":[-131.7,-108.4],"haL":[-216.3,-77.8],"hipR":[29.3,7.6],"knR":[35.7,163.9],"ftR":[45,283.2],"hipL":[-28.8,9.4],"knL":[-40.3,165.4],"ftL":[-52.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.9,-86],"neck":[0.6,-146.3],"head":[-1.4,-177.9],"shR":[57.9,-146.3],"elR":[136.6,-131],"haR":[221,-119.6],"shL":[-58,-140.3],"elL":[-131.9,-108.2],"haL":[-216.5,-77.3],"hipR":[29.3,7.5],"knR":[35.7,163.9],"ftR":[44.8,283.2],"hipL":[-28.8,9.4],"knL":[-40.4,165.4],"ftL":[-52.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.7,-86],"neck":[0.2,-146.3],"head":[-1.8,-177.9],"shR":[57.5,-146.5],"elR":[136.3,-131.3],"haR":[220.7,-120],"shL":[-58.3,-140.3],"elL":[-132.2,-108.1],"haL":[-216.7,-77],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[44.7,283.2],"hipL":[-28.8,9.5],"knL":[-40.5,165.4],"ftL":[-52.7,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.6,-86.1],"neck":[-0.1,-146.3],"head":[-2.2,-177.9],"shR":[57.2,-146.8],"elR":[136,-131.7],"haR":[220.4,-120.4],"shL":[-58.6,-140.3],"elL":[-132.5,-108.1],"haL":[-217,-76.9],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[44.6,283.2],"hipL":[-28.8,9.5],"knL":[-40.6,165.5],"ftL":[-52.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.5,-86.2],"neck":[-0.3,-146.3],"head":[-2.6,-177.9],"shR":[56.9,-147],"elR":[135.7,-132.1],"haR":[220.2,-120.8],"shL":[-58.9,-140.3],"elL":[-132.7,-108.1],"haL":[-217.3,-76.9],"hipR":[29.3,7.5],"knR":[35.7,163.8],"ftR":[44.6,283.2],"hipL":[-28.8,9.5],"knL":[-40.6,165.4],"ftL":[-52.9,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.4,-86.2],"neck":[-0.5,-146.4],"head":[-2.9,-178],"shR":[56.6,-147.2],"elR":[135.5,-132.6],"haR":[220.2,-121.4],"shL":[-59.1,-140.2],"elL":[-133,-108.2],"haL":[-217.5,-77],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.7,283.1],"hipL":[-28.8,9.5],"knL":[-40.6,165.5],"ftL":[-52.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.3,-86.3],"neck":[-0.7,-146.4],"head":[-3.1,-178],"shR":[56.5,-147.3],"elR":[135.4,-133],"haR":[220.2,-122],"shL":[-59.2,-140.2],"elL":[-133.1,-108.2],"haL":[-217.7,-77],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.8,283.1],"hipL":[-28.8,9.5],"knL":[-40.5,165.5],"ftL":[-52.8,284.2]},{"rootY":0,"hips":[0,0],"chest":[1.2,-86.4],"neck":[-0.8,-146.4],"head":[-3.3,-178],"shR":[56.3,-147.5],"elR":[135.3,-133.5],"haR":[220.1,-122.6],"shL":[-59.3,-140.1],"elL":[-133.2,-108.2],"haL":[-217.8,-77.1],"hipR":[29.3,7.5],"knR":[35.6,163.8],"ftR":[44.9,283.1],"hipL":[-28.8,9.5],"knL":[-40.4,165.5],"ftL":[-52.6,284.2]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.4],"neck":[-0.9,-146.4],"head":[-3.5,-178],"shR":[56.1,-147.7],"elR":[135.2,-133.9],"haR":[220,-123],"shL":[-59.5,-140.2],"elL":[-133.3,-108.2],"haL":[-217.9,-77],"hipR":[29.3,7.5],"knR":[35.8,163.8],"ftR":[45.2,283.1],"hipL":[-28.8,9.5],"knL":[-40.3,165.5],"ftL":[-52.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.4],"neck":[-1,-146.4],"head":[-3.6,-178],"shR":[55.9,-147.9],"elR":[135,-134.2],"haR":[219.7,-123.2],"shL":[-59.6,-140.2],"elL":[-133.4,-108.3],"haL":[-217.9,-76.9],"hipR":[29.3,7.5],"knR":[36,163.8],"ftR":[45.5,283],"hipL":[-28.8,9.5],"knL":[-40.3,165.5],"ftL":[-52.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.4],"neck":[-1.1,-146.4],"head":[-3.7,-177.9],"shR":[55.7,-148.2],"elR":[134.8,-134.4],"haR":[219.4,-123.1],"shL":[-59.6,-140.4],"elL":[-133.5,-108.3],"haL":[-217.9,-76.7],"hipR":[29.3,7.5],"knR":[36.1,163.8],"ftR":[45.7,283],"hipL":[-28.8,9.5],"knL":[-40.2,165.5],"ftL":[-52,284.3]},{"rootY":0,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.2,-146.4],"head":[-3.9,-177.9],"shR":[55.6,-148.5],"elR":[134.6,-134.4],"haR":[219,-122.8],"shL":[-59.7,-140.5],"elL":[-133.5,-108.2],"haL":[-217.8,-76.5],"hipR":[29.3,7.5],"knR":[36.2,163.8],"ftR":[46,283],"hipL":[-28.8,9.5],"knL":[-40,165.5],"ftL":[-51.8,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.2,-146.4],"head":[-4,-177.9],"shR":[55.4,-148.7],"elR":[134.3,-134.4],"haR":[218.6,-122.2],"shL":[-59.8,-140.6],"elL":[-133.4,-108.1],"haL":[-217.7,-76.1],"hipR":[29.3,7.5],"knR":[36.4,163.8],"ftR":[46.3,283],"hipL":[-28.8,9.5],"knL":[-39.9,165.5],"ftL":[-51.5,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1,-86.5],"neck":[-1.3,-146.4],"head":[-4,-178],"shR":[55.3,-148.8],"elR":[134.1,-134.1],"haR":[218.2,-121.4],"shL":[-59.8,-140.7],"elL":[-133.4,-107.9],"haL":[-217.5,-75.5],"hipR":[29.3,7.5],"knR":[36.5,163.8],"ftR":[46.5,283],"hipL":[-28.8,9.5],"knL":[-39.7,165.6],"ftL":[-51.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.6],"neck":[-1.3,-146.5],"head":[-4.1,-178],"shR":[55.2,-148.8],"elR":[133.9,-133.8],"haR":[217.8,-120.6],"shL":[-59.9,-140.8],"elL":[-133.3,-107.7],"haL":[-217.3,-75],"hipR":[29.3,7.5],"knR":[36.6,163.8],"ftR":[46.6,283],"hipL":[-28.8,9.5],"knL":[-39.5,165.6],"ftL":[-51.1,284.3]},{"rootY":0,"hips":[0,0],"chest":[1.1,-86.6],"neck":[-1.2,-146.5],"head":[-4.1,-178],"shR":[55.1,-148.8],"elR":[133.7,-133.5],"haR":[217.4,-119.8],"shL":[-59.9,-140.8],"elL":[-133.2,-107.4],"haL":[-217.1,-74.6],"hipR":[29.3,7.5],"knR":[36.6,163.8],"ftR":[46.8,283],"hipL":[-28.8,9.5],"knL":[-39.4,165.6],"ftL":[-50.9,284.2]},{"rootY":-0.1,"hips":[0,0],"chest":[1.2,-86.6],"neck":[-1.1,-146.5],"head":[-4,-178],"shR":[55.2,-148.7],"elR":[133.7,-133.2],"haR":[217.2,-119.3],"shL":[-59.8,-140.7],"elL":[-133.1,-107.2],"haL":[-216.8,-74.3],"hipR":[29.4,7.5],"knR":[37,163.8],"ftR":[47.2,282.9],"hipL":[-28.8,9.5],"knL":[-39.2,165.6],"ftL":[-50.7,284.3]},{"rootY":-0.1,"hips":[0,0],"chest":[1.3,-86.5],"neck":[-0.9,-146.5],"head":[-3.9,-178],"shR":[55.4,-148.5],"elR":[133.8,-132.9],"haR":[217.1,-118.9],"shL":[-59.6,-140.7],"elL":[-132.9,-107.2],"haL":[-216.6,-74.2],"hipR":[29.4,7.4],"knR":[37.7,163.7],"ftR":[47.8,282.9],"hipL":[-28.7,9.6],"knL":[-39,165.7],"ftL":[-50.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[1.4,-86.5],"neck":[-0.7,-146.4],"head":[-3.6,-178],"shR":[55.6,-148.3],"elR":[134,-132.8],"haR":[217.2,-118.8],"shL":[-59.4,-140.8],"elL":[-132.7,-107.4],"haL":[-216.5,-74.5],"hipR":[29.4,7.4],"knR":[38.3,163.6],"ftR":[48.5,282.8],"hipL":[-28.7,9.6],"knL":[-38.9,165.7],"ftL":[-50,284.5]},{"rootY":-0.2,"hips":[0,0],"chest":[1.4,-86.4],"neck":[-0.5,-146.4],"head":[-3.4,-177.9],"shR":[55.7,-148.3],"elR":[134.1,-132.8],"haR":[217.2,-118.8],"shL":[-59.2,-141],"elL":[-132.7,-107.8],"haL":[-216.5,-75.2],"hipR":[29.4,7.4],"knR":[38.7,163.6],"ftR":[48.9,282.8],"hipL":[-28.8,9.5],"knL":[-38.9,165.7],"ftL":[-49.7,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.5,-86.4],"neck":[-0.3,-146.4],"head":[-3.2,-177.9],"shR":[55.8,-148.5],"elR":[134.2,-133],"haR":[217.2,-119],"shL":[-59.1,-141.2],"elL":[-132.7,-108.3],"haL":[-216.7,-76.1],"hipR":[29.3,7.5],"knR":[39,163.7],"ftR":[49.3,282.9],"hipL":[-28.8,9.5],"knL":[-38.8,165.6],"ftL":[-49.4,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.5,-86.3],"neck":[-0.2,-146.4],"head":[-3,-177.9],"shR":[56,-148.5],"elR":[134.4,-133.1],"haR":[217.5,-119.3],"shL":[-58.9,-141.2],"elL":[-132.7,-108.8],"haL":[-216.9,-77.1],"hipR":[29.3,7.5],"knR":[39.3,163.7],"ftR":[49.9,282.9],"hipL":[-28.8,9.4],"knL":[-38.7,165.6],"ftL":[-48.9,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.6,-86.3],"neck":[0,-146.4],"head":[-2.7,-178],"shR":[56.3,-148.3],"elR":[134.7,-133.1],"haR":[217.9,-119.6],"shL":[-58.7,-141.3],"elL":[-132.7,-109.3],"haL":[-217.1,-78.2],"hipR":[29.3,7.6],"knR":[39.6,163.7],"ftR":[50.4,282.9],"hipL":[-28.8,9.4],"knL":[-38.3,165.6],"ftL":[-48.5,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.7,-86.3],"neck":[0.2,-146.4],"head":[-2.5,-178],"shR":[56.6,-148.2],"elR":[135.1,-133.1],"haR":[218.3,-119.9],"shL":[-58.5,-141.3],"elL":[-132.7,-109.8],"haL":[-217.3,-79.1],"hipR":[29.3,7.6],"knR":[39.8,163.7],"ftR":[50.9,282.9],"hipL":[-28.8,9.4],"knL":[-38,165.6],"ftL":[-48,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.8,-86.3],"neck":[0.3,-146.5],"head":[-2.3,-178.1],"shR":[56.8,-148.1],"elR":[135.4,-133],"haR":[218.7,-120],"shL":[-58.4,-141.3],"elL":[-132.7,-110],"haL":[-217.4,-79.8],"hipR":[29.3,7.6],"knR":[39.9,163.7],"ftR":[51.3,282.8],"hipL":[-28.8,9.4],"knL":[-37.5,165.5],"ftL":[-47.5,284.5]},{"rootY":-0.3,"hips":[0,0],"chest":[1.9,-86.3],"neck":[0.5,-146.6],"head":[-2,-178.2],"shR":[57.1,-148],"elR":[135.7,-132.8],"haR":[219.2,-119.8],"shL":[-58.2,-141.2],"elL":[-132.6,-110.2],"haL":[-217.4,-80.3],"hipR":[29.3,7.7],"knR":[40,163.8],"ftR":[51.8,282.8],"hipL":[-28.8,9.3],"knL":[-37.1,165.5],"ftL":[-47,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2,-86.3],"neck":[0.7,-146.6],"head":[-1.8,-178.2],"shR":[57.4,-147.7],"elR":[136,-132.4],"haR":[219.8,-119.6],"shL":[-58,-141.1],"elL":[-132.5,-110.2],"haL":[-217.4,-80.7],"hipR":[29.3,7.7],"knR":[40.1,163.8],"ftR":[52.2,282.8],"hipL":[-28.8,9.3],"knL":[-36.7,165.5],"ftL":[-46.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.1,-86.3],"neck":[0.8,-146.7],"head":[-1.5,-178.3],"shR":[57.7,-147.4],"elR":[136.4,-132.1],"haR":[220.4,-119.2],"shL":[-57.9,-141],"elL":[-132.4,-110.4],"haL":[-217.5,-81.1],"hipR":[29.3,7.8],"knR":[40.3,163.8],"ftR":[52.7,282.8],"hipL":[-28.8,9.2],"knL":[-36.5,165.4],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.2,-86.3],"neck":[1,-146.7],"head":[-1.3,-178.3],"shR":[57.9,-147.3],"elR":[136.6,-131.8],"haR":[220.7,-118.6],"shL":[-57.7,-141.1],"elL":[-132.4,-110.6],"haL":[-217.4,-81.6],"hipR":[29.2,7.8],"knR":[40.6,163.8],"ftR":[53.1,282.8],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.3],"neck":[1.1,-146.7],"head":[-1,-178.3],"shR":[58.1,-147.3],"elR":[136.8,-131.4],"haR":[221,-118],"shL":[-57.6,-141.2],"elL":[-132.3,-110.8],"haL":[-217.4,-82.1],"hipR":[29.2,7.8],"knR":[40.9,163.8],"ftR":[53.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.2,165.4],"ftL":[-45.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.3,-146.7],"head":[-0.8,-178.3],"shR":[58.3,-147.1],"elR":[137,-131.1],"haR":[221.3,-117.5],"shL":[-57.4,-141.3],"elL":[-132.2,-111.2],"haL":[-217.4,-82.7],"hipR":[29.2,7.9],"knR":[41.1,163.9],"ftR":[53.6,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-45.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.2],"neck":[1.4,-146.6],"head":[-0.6,-178.3],"shR":[58.5,-146.9],"elR":[137.2,-130.7],"haR":[221.6,-117],"shL":[-57.3,-141.3],"elL":[-132.2,-111.4],"haL":[-217.4,-83.3],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.8,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-45,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.2],"neck":[1.5,-146.6],"head":[-0.4,-178.3],"shR":[58.7,-146.7],"elR":[137.4,-130.3],"haR":[221.9,-116.6],"shL":[-57.1,-141.3],"elL":[-132.2,-111.7],"haL":[-217.5,-84],"hipR":[29.2,7.9],"knR":[41.3,163.9],"ftR":[54,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.7,-146.6],"head":[-0.2,-178.3],"shR":[58.9,-146.5],"elR":[137.6,-130],"haR":[222.2,-116.1],"shL":[-57,-141.4],"elL":[-132.1,-112],"haL":[-217.5,-84.5],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54.1,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[1.8,-146.6],"head":[0,-178.3],"shR":[59.1,-146.3],"elR":[137.8,-129.7],"haR":[222.5,-115.6],"shL":[-56.8,-141.5],"elL":[-132,-112.3],"haL":[-217.5,-84.9],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.3,-86.2],"neck":[2,-146.6],"head":[0.2,-178.3],"shR":[59.3,-146.1],"elR":[138,-129.3],"haR":[222.8,-115.2],"shL":[-56.6,-141.7],"elL":[-131.9,-112.6],"haL":[-217.3,-85.3],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.8,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-86.1],"neck":[2.2,-146.6],"head":[0.4,-178.2],"shR":[59.6,-146],"elR":[138.2,-129],"haR":[223.1,-114.7],"shL":[-56.4,-141.8],"elL":[-131.7,-112.8],"haL":[-217.1,-85.5],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.6,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-86.1],"neck":[2.4,-146.5],"head":[0.7,-178.2],"shR":[59.9,-145.8],"elR":[138.5,-128.7],"haR":[223.5,-114.2],"shL":[-56.2,-141.9],"elL":[-131.5,-112.9],"haL":[-216.9,-85.8],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.2,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.6,-86.1],"neck":[2.7,-146.5],"head":[1,-178.2],"shR":[60.2,-145.6],"elR":[138.8,-128.4],"haR":[223.8,-113.9],"shL":[-55.9,-141.8],"elL":[-131.2,-112.9],"haL":[-216.7,-86],"hipR":[29.2,7.9],"knR":[41.5,163.9],"ftR":[54.1,282.9],"hipL":[-28.9,9.1],"knL":[-35.9,165.3],"ftL":[-44.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.7,-86],"neck":[2.9,-146.5],"head":[1.2,-178.2],"shR":[60.4,-145.4],"elR":[139,-128],"haR":[224.2,-113.5],"shL":[-55.7,-141.8],"elL":[-131,-112.9],"haL":[-216.5,-86.1],"hipR":[29.2,7.9],"knR":[41.4,163.9],"ftR":[54,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-44.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.7,-86],"neck":[3,-146.5],"head":[1.4,-178.2],"shR":[60.6,-145.1],"elR":[139.3,-127.7],"haR":[224.5,-113.1],"shL":[-55.6,-141.8],"elL":[-130.9,-112.9],"haL":[-216.4,-86.1],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.9,282.9],"hipL":[-28.9,9.1],"knL":[-36,165.3],"ftL":[-44.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.2,-146.5],"head":[1.6,-178.2],"shR":[60.8,-144.8],"elR":[139.4,-127.3],"haR":[224.8,-112.6],"shL":[-55.5,-141.8],"elL":[-130.8,-113],"haL":[-216.3,-86.2],"hipR":[29.2,7.9],"knR":[41.2,163.9],"ftR":[53.7,282.9],"hipL":[-28.8,9.1],"knL":[-36.1,165.3],"ftL":[-45,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.2,-146.5],"head":[1.8,-178.2],"shR":[60.9,-144.7],"elR":[139.5,-127],"haR":[225,-112.2],"shL":[-55.4,-141.8],"elL":[-130.7,-113],"haL":[-216.2,-86.3],"hipR":[29.2,7.9],"knR":[41.1,163.9],"ftR":[53.6,282.9],"hipL":[-28.8,9.1],"knL":[-36.2,165.3],"ftL":[-45.1,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.8,-86],"neck":[3.3,-146.5],"head":[1.9,-178.2],"shR":[61,-144.5],"elR":[139.6,-126.6],"haR":[225.2,-111.6],"shL":[-55.3,-141.8],"elL":[-130.7,-113.1],"haL":[-216.2,-86.5],"hipR":[29.2,7.9],"knR":[41,163.9],"ftR":[53.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.3,165.3],"ftL":[-45.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.4,-146.4],"head":[2.1,-178.1],"shR":[61.1,-144.2],"elR":[139.7,-126.2],"haR":[225.4,-111.1],"shL":[-55.2,-141.8],"elL":[-130.6,-113.2],"haL":[-216.2,-86.8],"hipR":[29.2,7.9],"knR":[40.9,163.9],"ftR":[53.2,282.9],"hipL":[-28.8,9.1],"knL":[-36.4,165.3],"ftL":[-45.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.5,-146.4],"head":[2.2,-178.1],"shR":[61.3,-143.9],"elR":[139.8,-125.8],"haR":[225.5,-110.5],"shL":[-55.1,-141.8],"elL":[-130.6,-113.3],"haL":[-216.2,-87],"hipR":[29.2,7.9],"knR":[40.9,163.9],"ftR":[53.1,283],"hipL":[-28.8,9.1],"knL":[-36.5,165.3],"ftL":[-45.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.6,-146.4],"head":[2.3,-178.1],"shR":[61.4,-143.7],"elR":[139.9,-125.3],"haR":[225.6,-109.8],"shL":[-55,-141.8],"elL":[-130.5,-113.4],"haL":[-216.2,-87.1],"hipR":[29.2,7.9],"knR":[40.8,163.9],"ftR":[52.9,283],"hipL":[-28.8,9.1],"knL":[-36.6,165.3],"ftL":[-45.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.9,-85.9],"neck":[3.7,-146.4],"head":[2.5,-178.1],"shR":[61.5,-143.5],"elR":[140,-124.8],"haR":[225.7,-109],"shL":[-54.9,-141.8],"elL":[-130.4,-113.5],"haL":[-216.1,-87.3],"hipR":[29.2,7.9],"knR":[40.7,163.9],"ftR":[52.7,283],"hipL":[-28.8,9.1],"knL":[-36.7,165.3],"ftL":[-45.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3,-85.9],"neck":[3.9,-146.4],"head":[2.7,-178.1],"shR":[61.7,-143.3],"elR":[140.1,-124.4],"haR":[225.8,-108.4],"shL":[-54.8,-141.9],"elL":[-130.3,-113.6],"haL":[-216,-87.4],"hipR":[29.2,7.9],"knR":[40.5,163.9],"ftR":[52.6,283],"hipL":[-28.8,9.1],"knL":[-36.8,165.3],"ftL":[-45.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.1,-85.9],"neck":[4.1,-146.4],"head":[2.9,-178.1],"shR":[61.9,-143.1],"elR":[140.3,-124.1],"haR":[225.9,-107.9],"shL":[-54.6,-142],"elL":[-130.1,-113.7],"haL":[-215.8,-87.6],"hipR":[29.2,7.9],"knR":[40.5,163.9],"ftR":[52.5,283],"hipL":[-28.8,9.1],"knL":[-36.8,165.3],"ftL":[-46,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.1,-85.9],"neck":[4.3,-146.3],"head":[3.2,-178.1],"shR":[62.2,-142.9],"elR":[140.5,-123.9],"haR":[226.1,-107.7],"shL":[-54.3,-142.1],"elL":[-129.9,-113.9],"haL":[-215.6,-87.8],"hipR":[29.2,7.8],"knR":[40.4,163.9],"ftR":[52.5,283],"hipL":[-28.8,9.1],"knL":[-36.9,165.3],"ftL":[-46.1,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.2,-85.9],"neck":[4.6,-146.3],"head":[3.5,-178],"shR":[62.4,-142.6],"elR":[140.8,-123.8],"haR":[226.3,-107.9],"shL":[-54.1,-142.2],"elL":[-129.7,-114.2],"haL":[-215.5,-88.2],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.4,283],"hipL":[-28.8,9.1],"knL":[-36.9,165.3],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.3,-85.9],"neck":[4.8,-146.3],"head":[3.8,-178],"shR":[62.6,-142.3],"elR":[141.1,-123.9],"haR":[226.5,-108.3],"shL":[-53.9,-142.3],"elL":[-129.6,-114.5],"haL":[-215.4,-88.7],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.3,283],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-46.2,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.4,-85.9],"neck":[4.9,-146.3],"head":[4,-178],"shR":[62.8,-142.2],"elR":[141.3,-124],"haR":[226.5,-108.8],"shL":[-53.7,-142.4],"elL":[-129.5,-114.8],"haL":[-215.3,-89.3],"hipR":[29.2,7.8],"knR":[40.3,163.9],"ftR":[52.2,283],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-46.3,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.5,-85.9],"neck":[5,-146.2],"head":[4.2,-177.9],"shR":[62.8,-142.1],"elR":[141.4,-124.2],"haR":[226.5,-109.3],"shL":[-53.6,-142.6],"elL":[-129.5,-115.2],"haL":[-215.3,-89.8],"hipR":[29.2,7.8],"knR":[40.2,163.9],"ftR":[52.1,283],"hipL":[-28.8,9.2],"knL":[-37,165.4],"ftL":[-46.4,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.5,-85.9],"neck":[4.9,-146.2],"head":[4.2,-177.9],"shR":[62.8,-142],"elR":[141.3,-124.4],"haR":[226.3,-109.8],"shL":[-53.7,-142.8],"elL":[-129.6,-115.5],"haL":[-215.4,-90.2],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[52,283],"hipL":[-28.8,9.2],"knL":[-37,165.4],"ftL":[-46.5,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.4,-85.9],"neck":[4.8,-146.2],"head":[4.1,-177.9],"shR":[62.6,-142.1],"elR":[141.2,-124.5],"haR":[226,-110.1],"shL":[-53.8,-142.9],"elL":[-129.7,-115.6],"haL":[-215.6,-90.4],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[51.8,283],"hipL":[-28.8,9.2],"knL":[-37.1,165.4],"ftL":[-46.7,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.3,-85.9],"neck":[4.6,-146.2],"head":[3.9,-177.9],"shR":[62.4,-142.1],"elR":[140.9,-124.5],"haR":[225.5,-110.3],"shL":[-54,-143],"elL":[-129.9,-115.6],"haL":[-215.8,-90.4],"hipR":[29.3,7.8],"knR":[40,163.9],"ftR":[51.6,282.9],"hipL":[-28.8,9.2],"knL":[-37.2,165.4],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[3.2,-86],"neck":[4.3,-146.2],"head":[3.6,-177.9],"shR":[62.2,-142],"elR":[140.6,-124.4],"haR":[225.1,-110.4],"shL":[-54.3,-142.9],"elL":[-130.1,-115.4],"haL":[-215.9,-89.9],"hipR":[29.3,7.7],"knR":[39.9,163.8],"ftR":[51.4,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-47,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.1,-86],"neck":[4.1,-146.2],"head":[3.4,-177.9],"shR":[62,-141.8],"elR":[140.3,-123.7],"haR":[224.6,-110.6],"shL":[-54.5,-142.7],"elL":[-130.2,-114.8],"haL":[-215.9,-88.9],"hipR":[29.3,7.7],"knR":[39.8,163.8],"ftR":[51.2,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-47.2,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.9,-86],"neck":[4,-146.2],"head":[3.1,-177.9],"shR":[62,-141.6],"elR":[139.9,-121.8],"haR":[223.9,-111.2],"shL":[-54.6,-142.2],"elL":[-130.1,-113.9],"haL":[-215.7,-87.3],"hipR":[29.3,7.7],"knR":[39.7,163.8],"ftR":[51.1,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.5],"ftL":[-47.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.8,-86],"neck":[3.9,-146.2],"head":[2.9,-177.8],"shR":[62,-141.3],"elR":[139,-118.4],"haR":[222.5,-112.1],"shL":[-54.7,-141.5],"elL":[-130,-112.5],"haL":[-215.4,-85.1],"hipR":[29.3,7.7],"knR":[39.6,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-86],"neck":[3.7,-146.2],"head":[2.6,-177.8],"shR":[61.9,-140.9],"elR":[137.7,-114.8],"haR":[220.2,-113.1],"shL":[-54.9,-140.7],"elL":[-129.8,-110.8],"haL":[-214.7,-82.1],"hipR":[29.3,7.7],"knR":[39.5,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-86],"neck":[3.5,-146.1],"head":[2.3,-177.7],"shR":[61.8,-140.4],"elR":[136.8,-112.6],"haR":[217.4,-114.7],"shL":[-55.1,-140.1],"elL":[-129.4,-108.8],"haL":[-213.8,-78.4],"hipR":[29.2,7.7],"knR":[39.5,163.8],"ftR":[51.1,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.4,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.3,-146.1],"head":[2,-177.7],"shR":[61.6,-140.2],"elR":[136.4,-112.1],"haR":[214.6,-116.8],"shL":[-55.2,-139.5],"elL":[-128.9,-106.7],"haL":[-212.7,-74.7],"hipR":[29.2,7.7],"knR":[39.5,163.9],"ftR":[51.2,282.9],"hipL":[-28.8,9.3],"knL":[-37.5,165.5],"ftL":[-47.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.3,-146.1],"head":[1.7,-177.6],"shR":[61.5,-140.7],"elR":[136,-112.3],"haR":[211.8,-119.6],"shL":[-55.3,-138.9],"elL":[-128.4,-104.8],"haL":[-211.6,-71.4],"hipR":[29.2,7.8],"knR":[39.7,163.9],"ftR":[51.4,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-47.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.4,-85.9],"neck":[3.2,-146],"head":[1.4,-177.6],"shR":[61.3,-141.6],"elR":[135.3,-113],"haR":[209.2,-122.5],"shL":[-55.4,-138.3],"elL":[-128,-103.1],"haL":[-210.6,-68.5],"hipR":[29.2,7.8],"knR":[40.1,163.9],"ftR":[51.6,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-47,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-85.8],"neck":[2.9,-145.9],"head":[0.8,-177.5],"shR":[60.8,-142.5],"elR":[134.5,-114.3],"haR":[206.8,-124.9],"shL":[-55.7,-137.8],"elL":[-127.8,-101.7],"haL":[-210,-65.9],"hipR":[29.2,7.8],"knR":[40.5,163.8],"ftR":[51.7,282.9],"hipL":[-28.8,9.2],"knL":[-37.5,165.4],"ftL":[-46.9,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.4,-85.8],"neck":[2.5,-145.9],"head":[0.1,-177.4],"shR":[60.2,-143.2],"elR":[133.9,-116.2],"haR":[204.8,-126.6],"shL":[-56.2,-137.4],"elL":[-127.8,-100.3],"haL":[-209.5,-63.5],"hipR":[29.2,7.8],"knR":[41,163.8],"ftR":[51.8,282.9],"hipL":[-28.8,9.2],"knL":[-37.4,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-85.7],"neck":[1.9,-145.8],"head":[-0.7,-177.3],"shR":[59.3,-144],"elR":[133.4,-118.6],"haR":[203.1,-127.7],"shL":[-56.8,-136.9],"elL":[-128,-99.1],"haL":[-209.3,-61.4],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.2,"hips":[0,0],"chest":[2.5,-85.7],"neck":[1.3,-145.8],"head":[-1.5,-177.3],"shR":[58.5,-144.7],"elR":[132.7,-120.6],"haR":[201.9,-128.2],"shL":[-57.4,-136.5],"elL":[-128.3,-98.1],"haL":[-209.4,-59.8],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.3,165.5],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[0.7,-145.8],"head":[-2.3,-177.3],"shR":[57.6,-145.2],"elR":[131.7,-122],"haR":[201,-127.9],"shL":[-58,-136.1],"elL":[-128.8,-97.4],"haL":[-209.8,-58.7],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.7,282.9],"hipL":[-28.8,9.3],"knL":[-37.1,165.6],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[0.1,-145.8],"head":[-3.1,-177.3],"shR":[56.8,-145.5],"elR":[130.6,-123.2],"haR":[200.4,-126.9],"shL":[-58.6,-135.7],"elL":[-129.3,-96.9],"haL":[-210.3,-58.1],"hipR":[29.3,7.6],"knR":[41.2,163.7],"ftR":[51.7,282.8],"hipL":[-28.8,9.3],"knL":[-37,165.6],"ftL":[-46.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[-0.4,-145.8],"head":[-3.8,-177.3],"shR":[56.1,-145.9],"elR":[129.8,-124.5],"haR":[200.2,-125.1],"shL":[-59.1,-135.4],"elL":[-129.8,-96.6],"haL":[-211,-58],"hipR":[29.3,7.6],"knR":[41.2,163.6],"ftR":[51.7,282.8],"hipL":[-28.8,9.4],"knL":[-37,165.6],"ftL":[-46.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.5,-85.7],"neck":[-0.8,-145.8],"head":[-4.3,-177.3],"shR":[55.6,-146.1],"elR":[129.2,-125.6],"haR":[200.3,-123.3],"shL":[-59.4,-135],"elL":[-130.1,-96.6],"haL":[-211.7,-58.2],"hipR":[29.3,7.6],"knR":[41.2,163.7],"ftR":[51.7,282.9],"hipL":[-28.8,9.3],"knL":[-36.9,165.6],"ftL":[-46.8,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.6,-85.7],"neck":[-0.9,-145.8],"head":[-4.5,-177.4],"shR":[55.3,-146.2],"elR":[128.9,-125.9],"haR":[200.6,-121.9],"shL":[-59.5,-134.8],"elL":[-130.4,-96.7],"haL":[-212.2,-58.8],"hipR":[29.3,7.7],"knR":[41.3,163.7],"ftR":[51.8,282.9],"hipL":[-28.8,9.3],"knL":[-36.8,165.6],"ftL":[-46.7,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.7,-85.7],"neck":[-0.9,-145.8],"head":[-4.6,-177.4],"shR":[55.2,-145.8],"elR":[129,-125.6],"haR":[201.1,-120.7],"shL":[-59.4,-134.6],"elL":[-130.3,-96.9],"haL":[-212.4,-59.3],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[51.9,282.9],"hipL":[-28.8,9.3],"knL":[-36.8,165.5],"ftL":[-46.5,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[2.8,-85.6],"neck":[-0.7,-145.9],"head":[-4.4,-177.4],"shR":[55.4,-145.3],"elR":[129.3,-125.2],"haR":[202,-119.4],"shL":[-59.2,-134.5],"elL":[-130,-96.9],"haL":[-212.1,-59.3],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[52.1,282.9],"hipL":[-28.8,9.3],"knL":[-36.6,165.5],"ftL":[-46.3,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.4,-145.9],"head":[-4.2,-177.4],"shR":[55.6,-144.9],"elR":[129.8,-125.3],"haR":[203.1,-118],"shL":[-58.8,-134.3],"elL":[-129.4,-96.5],"haL":[-211.3,-58.7],"hipR":[29.3,7.7],"knR":[41.4,163.7],"ftR":[52.3,282.9],"hipL":[-28.9,9.2],"knL":[-36.5,165.5],"ftL":[-46.1,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.4,-85.6],"neck":[-0.1,-145.9],"head":[-3.9,-177.5],"shR":[55.8,-144.9],"elR":[130.1,-125.6],"haR":[204.4,-116.6],"shL":[-58.4,-134.1],"elL":[-128.6,-95.9],"haL":[-210.3,-57.5],"hipR":[29.3,7.8],"knR":[41.4,163.8],"ftR":[52.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.4,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[3.8,-85.6],"neck":[0.1,-146],"head":[-3.8,-177.5],"shR":[55.9,-145],"elR":[130.3,-125.8],"haR":[205.4,-115.6],"shL":[-58.1,-133.7],"elL":[-127.9,-95],"haL":[-209.3,-56.1],"hipR":[29.3,7.8],"knR":[41.3,163.8],"ftR":[52.5,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[4,-85.6],"neck":[0.2,-146],"head":[-3.8,-177.5],"shR":[55.9,-144.7],"elR":[130.5,-125.6],"haR":[206.2,-114.8],"shL":[-57.9,-133.2],"elL":[-127.4,-94.1],"haL":[-208.5,-54.8],"hipR":[29.3,7.8],"knR":[41.1,163.8],"ftR":[52.4,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.4],"ftL":[-45.9,284.4]},{"rootY":-0.1,"hips":[0,0],"chest":[4.1,-85.6],"neck":[0.2,-146],"head":[-3.9,-177.5],"shR":[55.8,-144.3],"elR":[130.6,-125.1],"haR":[206.6,-114.3],"shL":[-57.9,-132.8],"elL":[-127.1,-93.3],"haL":[-207.9,-53.5],"hipR":[29.2,7.8],"knR":[40.9,163.8],"ftR":[52.3,282.9],"hipL":[-28.9,9.2],"knL":[-36.3,165.3],"ftL":[-46.1,284.4]},{"rootY":0,"hips":[0,0],"chest":[4,-85.6],"neck":[-0.1,-146],"head":[-4.2,-177.6],"shR":[55.6,-143.8],"elR":[130.5,-124.5],"haR":[206.7,-114],"shL":[-58.1,-132.5],"elL":[-126.9,-92.4],"haL":[-207.3,-51.8],"hipR":[29.2,7.8],"knR":[40.7,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.4,165.3],"ftL":[-46.4,284.4]},{"rootY":0,"hips":[0,0],"chest":[3.8,-85.6],"neck":[-0.4,-146.1],"head":[-4.6,-177.6],"shR":[55.4,-143.6],"elR":[130.3,-124.1],"haR":[206.3,-113.7],"shL":[-58.4,-132.2],"elL":[-126.7,-91.3],"haL":[-206.6,-49.8],"hipR":[29.2,7.8],"knR":[40.3,163.7],"ftR":[51.5,282.9],"hipL":[-28.8,9.2],"knL":[-36.6,165.3],"ftL":[-46.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.7,-85.7],"neck":[-0.7,-146.1],"head":[-5,-177.6],"shR":[55.1,-143.6],"elR":[129.8,-123.9],"haR":[205.7,-113.7],"shL":[-58.7,-131.9],"elL":[-126.4,-90.1],"haL":[-205.8,-47.5],"hipR":[29.3,7.8],"knR":[39.9,163.7],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-47.2,284.4]},{"rootY":0,"hips":[0,0],"chest":[3.6,-85.7],"neck":[-1,-146.1],"head":[-5.4,-177.6],"shR":[54.8,-143.3],"elR":[129.5,-123.1],"haR":[204.8,-114.3],"shL":[-58.9,-131.2],"elL":[-126.1,-88.5],"haL":[-205,-44.9],"hipR":[29.3,7.8],"knR":[39.5,163.7],"ftR":[50.7,282.9],"hipL":[-28.8,9.2],"knL":[-37.3,165.3],"ftL":[-47.7,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.4,-85.6],"neck":[-1.2,-146.1],"head":[-5.7,-177.5],"shR":[54.8,-142.1],"elR":[129.4,-120.4],"haR":[202.6,-115],"shL":[-59,-130.2],"elL":[-125.3,-86.2],"haL":[-203.4,-41.2],"hipR":[29.3,7.8],"knR":[39.2,163.7],"ftR":[50.3,282.9],"hipL":[-28.8,9.2],"knL":[-37.6,165.3],"ftL":[-48.1,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.2,-85.6],"neck":[-1.1,-146],"head":[-5.8,-177.5],"shR":[55.1,-139.7],"elR":[129.7,-116],"haR":[198.4,-114.9],"shL":[-58.8,-129],"elL":[-123.5,-82.8],"haL":[-200.4,-35.6],"hipR":[29.3,7.7],"knR":[38.9,163.7],"ftR":[50,282.9],"hipL":[-28.8,9.2],"knL":[-37.8,165.3],"ftL":[-48.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.9,-146],"head":[-5.7,-177.5],"shR":[55.4,-137.2],"elR":[130.1,-111.1],"haR":[191.9,-113.1],"shL":[-58.3,-127.6],"elL":[-120.4,-78.2],"haL":[-195.2,-27.8],"hipR":[29.3,7.7],"knR":[38.6,163.7],"ftR":[49.8,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.2],"ftL":[-48.6,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.7,-146],"head":[-5.4,-177.5],"shR":[55.8,-135.4],"elR":[130.4,-107.1],"haR":[184,-109],"shL":[-57.7,-126],"elL":[-116,-72.6],"haL":[-187.5,-17.8],"hipR":[29.3,7.7],"knR":[38.3,163.7],"ftR":[49.7,282.8],"hipL":[-28.8,9.3],"knL":[-38,165.2],"ftL":[-48.7,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.1,-85.6],"neck":[-0.4,-146],"head":[-5,-177.5],"shR":[56.2,-134.2],"elR":[130.3,-104],"haR":[176.4,-103.7],"shL":[-57.1,-124.8],"elL":[-109.9,-66.3],"haL":[-176,-5.8],"hipR":[29.3,7.7],"knR":[38.2,163.7],"ftR":[49.7,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.2],"ftL":[-48.7,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3,-85.6],"neck":[0.2,-146],"head":[-4.3,-177.5],"shR":[56.6,-133.1],"elR":[129.8,-100.4],"haR":[171,-99.2],"shL":[-56.4,-124.4],"elL":[-102.1,-60.2],"haL":[-160.1,7.1],"hipR":[29.3,7.7],"knR":[38.3,163.7],"ftR":[50,282.8],"hipL":[-28.8,9.3],"knL":[-37.8,165.2],"ftL":[-48.4,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[2.9,-85.6],"neck":[1,-146.1],"head":[-3.3,-177.6],"shR":[57.3,-132.4],"elR":[128.6,-96],"haR":[167.5,-97.2],"shL":[-55.7,-124.7],"elL":[-93.3,-55],"haL":[-141.4,19.1],"hipR":[29.3,7.7],"knR":[38.5,163.7],"ftR":[50.5,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.1],"ftL":[-47.9,284.3]},{"rootY":0.1,"hips":[0,0],"chest":[3.2,-85.6],"neck":[2.3,-146.1],"head":[-2,-177.6],"shR":[58.4,-132.1],"elR":[126.7,-91],"haR":[164.5,-99.4],"shL":[-54.4,-124.8],"elL":[-84.3,-50.9],"haL":[-122,29.1],"hipR":[29.2,7.8],"knR":[38.7,163.8],"ftR":[51.2,282.8],"hipL":[-28.9,9.2],"knL":[-37.3,165],"ftL":[-47.2,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[4,-85.5],"neck":[4,-146],"head":[-0.1,-177.5],"shR":[59.9,-131.9],"elR":[124.7,-86],"haR":[161.3,-105.7],"shL":[-52.6,-124.4],"elL":[-75,-47.5],"haL":[-102.7,36.9],"hipR":[29.2,7.9],"knR":[38.8,163.9],"ftR":[52.1,282.8],"hipL":[-28.9,9.1],"knL":[-36.9,165],"ftL":[-46.4,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[5,-85.3],"neck":[5.8,-145.8],"head":[1.7,-177.3],"shR":[61.5,-131.8],"elR":[121.9,-81.4],"haR":[157.9,-114.4],"shL":[-50.7,-123.7],"elL":[-65.8,-44.8],"haL":[-84.7,42.4],"hipR":[29.2,8],"knR":[39,163.9],"ftR":[52.9,282.8],"hipL":[-28.9,9],"knL":[-36.4,164.9],"ftL":[-45.7,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[5.9,-85.2],"neck":[7.1,-145.6],"head":[3.1,-177.1],"shR":[62.7,-132.3],"elR":[117.5,-78.6],"haR":[153.4,-124.3],"shL":[-49.3,-123.1],"elL":[-59.1,-43.3],"haL":[-72.2,45.2],"hipR":[29.2,8.1],"knR":[38.9,164],"ftR":[53.3,282.8],"hipL":[-28.9,8.9],"knL":[-36.2,164.8],"ftL":[-45.3,284]},{"rootY":0.1,"hips":[0,0],"chest":[6.4,-85.1],"neck":[7.5,-145.5],"head":[3.6,-177],"shR":[63.1,-133.3],"elR":[112.7,-79.1],"haR":[146.3,-135.2],"shL":[-48.9,-123],"elL":[-57,-43.1],"haL":[-69.5,45.6],"hipR":[29.2,8.1],"knR":[38.6,164],"ftR":[53.1,282.8],"hipL":[-28.9,8.9],"knL":[-36.4,164.8],"ftL":[-45.5,284]},{"rootY":0.1,"hips":[0,0],"chest":[6.5,-85.2],"neck":[7.3,-145.5],"head":[3.6,-177],"shR":[62.7,-134.2],"elR":[112.3,-82.9],"haR":[135.1,-144.9],"shL":[-49,-122.9],"elL":[-59.5,-43.4],"haL":[-75.4,44.7],"hipR":[29.2,8],"knR":[38.3,163.9],"ftR":[52.5,282.7],"hipL":[-28.9,9],"knL":[-36.7,164.8],"ftL":[-46.1,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.4,-85.2],"neck":[6.8,-145.5],"head":[3.7,-177.1],"shR":[62,-135.3],"elR":[118.4,-90.6],"haR":[120.9,-150.3],"shL":[-49.2,-122.3],"elL":[-63.9,-43.6],"haL":[-84.1,43.6],"hipR":[29.2,7.9],"knR":[38,163.9],"ftR":[51.9,282.7],"hipL":[-28.9,9],"knL":[-37.1,164.9],"ftL":[-46.7,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.5,-85.1],"neck":[6.2,-145.4],"head":[3.7,-177.1],"shR":[61.1,-136.5],"elR":[126.5,-103.5],"haR":[107.3,-150.5],"shL":[-49.5,-121.3],"elL":[-68.3,-43.6],"haL":[-91.6,42.6],"hipR":[29.2,7.9],"knR":[37.7,163.9],"ftR":[51.3,282.7],"hipL":[-28.9,9.1],"knL":[-37.3,164.9],"ftL":[-47.2,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[6.9,-85],"neck":[5.5,-145.4],"head":[3.5,-177.1],"shR":[60,-137.2],"elR":[130.6,-118.2],"haR":[98.2,-149.1],"shL":[-50,-120.5],"elL":[-72.2,-43.8],"haL":[-98,41.6],"hipR":[29.2,7.9],"knR":[37.5,163.8],"ftR":[50.7,282.8],"hipL":[-28.9,9.1],"knL":[-37.6,164.9],"ftL":[-47.8,284.1]},{"rootY":0.2,"hips":[0,0],"chest":[7.3,-85],"neck":[4.6,-145.4],"head":[2.9,-177.1],"shR":[58.4,-137.6],"elR":[129.1,-125.9],"haR":[92.7,-150.7],"shL":[-50.7,-120],"elL":[-75.5,-44],"haL":[-103.9,40.3],"hipR":[29.2,7.9],"knR":[37.1,163.8],"ftR":[49.9,282.8],"hipL":[-28.9,9.1],"knL":[-38.1,164.9],"ftL":[-48.5,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[7.4,-85.2],"neck":[3.6,-145.5],"head":[2,-177.3],"shR":[56.7,-138.4],"elR":[123.9,-121.7],"haR":[90,-154.2],"shL":[-51.3,-119.5],"elL":[-77.7,-43.9],"haL":[-108.3,39.2],"hipR":[29.3,7.8],"knR":[36.7,163.8],"ftR":[49,282.8],"hipL":[-28.9,9.2],"knL":[-38.6,165],"ftL":[-49.4,284.1]},{"rootY":0.1,"hips":[0,0],"chest":[7.2,-85.3],"neck":[2.9,-145.7],"head":[1.1,-177.4],"shR":[55.5,-139.3],"elR":[114.5,-110.8],"haR":[87.1,-157.5],"shL":[-51.9,-119.1],"elL":[-78.4,-43.5],"haL":[-110.2,38.5],"hipR":[29.3,7.7],"knR":[36.3,163.7],"ftR":[48.3,282.8],"hipL":[-28.9,9.2],"knL":[-38.8,165.1],"ftL":[-50,284.2]},{"rootY":0.2,"hips":[0,0],"chest":[6.9,-85.4],"neck":[2.6,-145.7],"head":[0.7,-177.4],"shR":[55,-139.8],"elR":[103.3,-102.2],"haR":[84,-160.5],"shL":[-52.3,-119.2],"elL":[-77.9,-43.2],"haL":[-110,37.8],"hipR":[29.3,7.6],"knR":[36.1,163.6],"ftR":[47.8,282.7],"hipL":[-28.8,9.3],"knL":[-38.8,165.2],"ftL":[-50.5,284.2]},{"rootY":0.3,"hips":[0,0],"chest":[6.9,-85.4],"neck":[2.7,-145.7],"head":[0.8,-177.4],"shR":[54.8,-139.4],"elR":[97.7,-99.6],"haR":[80.2,-159.2],"shL":[-52.6,-119.7],"elL":[-76.8,-43.2],"haL":[-108,37.4],"hipR":[29.3,7.6],"knR":[36,163.6],"ftR":[47.7,282.7],"hipL":[-28.8,9.4],"knL":[-38.7,165.3],"ftL":[-50.7,284.2]},{"rootY":0.3,"hips":[0,0],"chest":[7,-85.4],"neck":[3,-145.6],"head":[1.3,-177.3],"shR":[54.8,-138.9],"elR":[101.1,-102.2],"haR":[75.1,-152.1],"shL":[-52.5,-120.3],"elL":[-75,-43.1],"haL":[-104.2,37.5],"hipR":[29.3,7.6],"knR":[36.1,163.6],"ftR":[48,282.7],"hipL":[-28.8,9.4],"knL":[-38.5,165.3],"ftL":[-50.4,284.2]},{"rootY":0.2,"hips":[0,0],"chest":[7.2,-85.3],"neck":[3.4,-145.5],"head":[1.9,-177.2],"shR":[54.9,-138.6],"elR":[108,-108.6],"haR":[71.3,-143.6],"shL":[-52.1,-120.2],"elL":[-72.8,-42.5],"haL":[-99.2,38.5],"hipR":[29.3,7.7],"knR":[36.4,163.7],"ftR":[48.6,282.7],"hipL":[-28.8,9.3],"knL":[-38.3,165.2],"ftL":[-49.8,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[7.5,-85.2],"neck":[3.6,-145.3],"head":[2.2,-177.1],"shR":[55,-138.4],"elR":[111.7,-114.8],"haR":[68,-136.3],"shL":[-51.7,-119.5],"elL":[-70.5,-41.3],"haL":[-94.1,40],"hipR":[29.3,7.8],"knR":[36.8,163.8],"ftR":[49.1,282.8],"hipL":[-28.9,9.2],"knL":[-38.1,165.2],"ftL":[-49.2,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[7.7,-85.2],"neck":[3.5,-145.3],"head":[2.2,-177],"shR":[54.8,-138.3],"elR":[110.8,-115.2],"haR":[64.9,-131.9],"shL":[-51.6,-119],"elL":[-68.4,-40.4],"haL":[-89.3,41.5],"hipR":[29.3,7.8],"knR":[37.1,163.8],"ftR":[49.6,282.9],"hipL":[-28.9,9.2],"knL":[-38,165.1],"ftL":[-48.8,284.2]},{"rootY":0,"hips":[0,0],"chest":[7.6,-85.2],"neck":[3.5,-145.3],"head":[2,-177],"shR":[54.9,-138.2],"elR":[106.2,-107.5],"haR":[60.3,-132],"shL":[-51.6,-118.8],"elL":[-66.7,-39.9],"haL":[-84.9,42.8],"hipR":[29.3,7.8],"knR":[37.2,163.9],"ftR":[49.8,282.9],"hipL":[-28.9,9.2],"knL":[-38,165.1],"ftL":[-48.6,284.2]},{"rootY":0,"hips":[0,0],"chest":[7.2,-85.4],"neck":[3.5,-145.3],"head":[1.8,-177],"shR":[55.4,-138.2],"elR":[97.6,-96.3],"haR":[55.1,-135.7],"shL":[-51.8,-118.9],"elL":[-65.5,-39.9],"haL":[-81.1,44.1],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50,282.9],"hipL":[-28.9,9.2],"knL":[-37.8,165.1],"ftL":[-48.5,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.8,-85.4],"neck":[3.6,-145.3],"head":[1.8,-177],"shR":[56,-138.5],"elR":[87.1,-88.4],"haR":[50.7,-140.4],"shL":[-51.9,-119.1],"elL":[-65,-40],"haL":[-78.3,45.3],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50.1,282.8],"hipL":[-28.9,9.2],"knL":[-37.7,165.2],"ftL":[-48.4,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.6,-85.4],"neck":[3.8,-145.2],"head":[1.9,-176.9],"shR":[56.5,-138.6],"elR":[80.3,-85.4],"haR":[46.7,-143.4],"shL":[-52,-119.3],"elL":[-65.1,-40.2],"haL":[-76.4,46.4],"hipR":[29.3,7.8],"knR":[37.1,163.9],"ftR":[50.2,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.2],"ftL":[-48.3,284.2]},{"rootY":0.1,"hips":[0,0],"chest":[6.6,-85.4],"neck":[3.9,-145.2],"head":[2,-176.9],"shR":[56.7,-138.5],"elR":[81.4,-86.1],"haR":[41.2,-141.7],"shL":[-52.1,-119.6],"elL":[-65.2,-40.5],"haL":[-75.4,47.2],"hipR":[29.2,7.8],"knR":[37.2,163.9],"ftR":[50.5,282.8],"hipL":[-28.8,9.2],"knL":[-37.6,165.2],"ftL":[-48,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.5,-85.4],"neck":[3.8,-145.3],"head":[2.1,-177],"shR":[56.9,-138.5],"elR":[87.9,-89.7],"haR":[35.8,-136.1],"shL":[-52.1,-119.7],"elL":[-65.3,-40.5],"haL":[-75.3,47.5],"hipR":[29.2,7.8],"knR":[37.4,163.9],"ftR":[50.9,282.8],"hipL":[-28.8,9.2],"knL":[-37.4,165.1],"ftL":[-47.7,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.4,-85.4],"neck":[3.6,-145.3],"head":[2,-177],"shR":[57,-138.9],"elR":[93.9,-95.4],"haR":[31,-129.6],"shL":[-52.2,-119.4],"elL":[-65.6,-40.4],"haL":[-76.1,47.7],"hipR":[29.2,7.9],"knR":[37.6,163.9],"ftR":[51.2,282.8],"hipL":[-28.8,9.1],"knL":[-37.3,165.1],"ftL":[-47.3,284.2]},{"rootY":0,"hips":[0,0],"chest":[6.3,-85.4],"neck":[3.1,-145.3],"head":[1.6,-177],"shR":[56.6,-139.1],"elR":[96.8,-100.4],"haR":[28.4,-124.7],"shL":[-52.6,-119],"elL":[-66.4,-40.1],"haL":[-77.5,47.7],"hipR":[29.2,7.9],"knR":[37.8,163.9],"ftR":[51.4,282.8],"hipL":[-28.9,9.1],"knL":[-37.2,165.1],"ftL":[-47.2,284.2]},{"rootY":0,"hips":[0,0],"chest":[6,-85.4],"neck":[2.3,-145.3],"head":[0.9,-177],"shR":[55.7,-138.8],"elR":[96.8,-101.8],"haR":[28.5,-124.7],"shL":[-53.1,-118.7],"elL":[-67.4,-39.8],"haL":[-79.2,47.7],"hipR":[29.2,7.9],"knR":[37.8,163.9],"ftR":[51.4,282.8],"hipL":[-28.8,9.1],"knL":[-37.1,165.1],"ftL":[-47.2,284.2]},{"rootY":0,"hips":[0,0],"chest":[5.7,-85.5],"neck":[1.5,-145.3],"head":[0.1,-177],"shR":[54.7,-138.4],"elR":[94.7,-99.2],"haR":[29.5,-127.4],"shL":[-53.9,-118.5],"elL":[-68.6,-39.7],"haL":[-80.8,47.4],"hipR":[29.2,7.8],"knR":[37.8,163.9],"ftR":[51.2,282.8],"hipL":[-28.8,9.2],"knL":[-37.2,165.2],"ftL":[-47.3,284.2]},{"rootY":0,"hips":[0,0],"chest":[5.3,-85.5],"neck":[0.8,-145.3],"head":[-0.6,-177],"shR":[53.9,-138.7],"elR":[90.8,-95.2],"haR":[30,-131.3],"shL":[-54.5,-118.4],"elL":[-69.8,-39.6],"haL":[-82.2,47],"hipR":[29.3,7.8],"knR":[37.8,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37.1,165.2],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[5,-85.5],"neck":[0.4,-145.2],"head":[-1.1,-176.9],"shR":[53.5,-139.3],"elR":[86.1,-91.8],"haR":[30.7,-137.2],"shL":[-54.9,-118.3],"elL":[-70.9,-39.6],"haL":[-83.2,46.6],"hipR":[29.3,7.8],"knR":[37.9,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37.1,165.3],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.9,-85.5],"neck":[0.3,-145.2],"head":[-1.3,-176.9],"shR":[53.3,-139.8],"elR":[82.1,-90.1],"haR":[32.8,-143.8],"shL":[-55.1,-118.2],"elL":[-71.9,-39.7],"haL":[-83.7,46.1],"hipR":[29.3,7.7],"knR":[38.1,163.9],"ftR":[51.1,282.8],"hipL":[-28.8,9.2],"knL":[-37,165.3],"ftL":[-47.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.5],"neck":[0.4,-145.2],"head":[-1.3,-176.8],"shR":[53.4,-140],"elR":[81.5,-90.6],"haR":[34.6,-146.6],"shL":[-55.2,-118.4],"elL":[-72.5,-39.9],"haL":[-83.8,45.7],"hipR":[29.3,7.8],"knR":[38.2,163.9],"ftR":[51.3,282.8],"hipL":[-28.8,9.2],"knL":[-36.9,165.3],"ftL":[-47.2,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.5],"neck":[0.4,-145.1],"head":[-1.2,-176.8],"shR":[53.7,-139.9],"elR":[86,-93.2],"haR":[34.7,-142.9],"shL":[-55.2,-118.5],"elL":[-72.8,-40],"haL":[-83.5,45.4],"hipR":[29.3,7.8],"knR":[38.4,163.9],"ftR":[51.7,282.8],"hipL":[-28.9,9.2],"knL":[-36.7,165.3],"ftL":[-46.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.4],"neck":[0.5,-145.1],"head":[-1,-176.7],"shR":[54,-139.2],"elR":[93.7,-97.4],"haR":[35.8,-135.3],"shL":[-55,-118.3],"elL":[-72.7,-39.8],"haL":[-83,45.3],"hipR":[29.3,7.8],"knR":[38.7,163.9],"ftR":[52.2,282.8],"hipL":[-28.9,9.2],"knL":[-36.5,165.3],"ftL":[-46.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.4],"neck":[0.6,-145],"head":[-0.9,-176.7],"shR":[54.2,-137.6],"elR":[101.2,-101.5],"haR":[37.5,-125.2],"shL":[-54.8,-118],"elL":[-72.4,-39.4],"haL":[-82.3,45.5],"hipR":[29.2,7.9],"knR":[38.9,164],"ftR":[52.7,282.8],"hipL":[-28.9,9.1],"knL":[-36.3,165.3],"ftL":[-45.9,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.3],"neck":[0.5,-145],"head":[-1,-176.7],"shR":[54,-135.5],"elR":[105.9,-103.9],"haR":[38.5,-111.7],"shL":[-54.7,-117.6],"elL":[-72,-38.9],"haL":[-81.6,45.8],"hipR":[29.2,7.9],"knR":[39.1,164],"ftR":[53,282.8],"hipL":[-28.9,9.1],"knL":[-36.1,165.2],"ftL":[-45.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.8,-85.3],"neck":[0.3,-145],"head":[-1.2,-176.7],"shR":[53.8,-133.6],"elR":[108.2,-102.8],"haR":[40.5,-97.5],"shL":[-54.8,-117.3],"elL":[-71.5,-38.5],"haL":[-80.9,46.2],"hipR":[29.2,7.9],"knR":[39.2,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.6,-85.2],"neck":[0.1,-145],"head":[-1.6,-176.7],"shR":[53.5,-132.3],"elR":[110,-98],"haR":[46.4,-85.3],"shL":[-54.8,-117],"elL":[-71.1,-38.1],"haL":[-80.2,46.5],"hipR":[29.2,7.9],"knR":[39.3,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.5,-85.1],"neck":[0,-145],"head":[-1.9,-176.6],"shR":[53.4,-131],"elR":[110.9,-90.4],"haR":[55.3,-73.6],"shL":[-54.8,-116.6],"elL":[-70.7,-37.6],"haL":[-79.5,47],"hipR":[29.2,7.9],"knR":[39.4,164],"ftR":[53.2,282.8],"hipL":[-28.9,9.1],"knL":[-36,165.2],"ftL":[-45.3,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.3,-85],"neck":[-0.2,-144.9],"head":[-2.4,-176.5],"shR":[53.3,-129.4],"elR":[108.7,-81.3],"haR":[62.6,-57.5],"shL":[-54.8,-116.2],"elL":[-70.4,-37.2],"haL":[-78.9,47.5],"hipR":[29.2,7.9],"knR":[39.5,164],"ftR":[53,282.9],"hipL":[-28.9,9.1],"knL":[-36.1,165.2],"ftL":[-45.4,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.9],"neck":[-0.3,-144.8],"head":[-2.8,-176.4],"shR":[53,-127.3],"elR":[103.4,-71.8],"haR":[67.4,-35.7],"shL":[-55,-116],"elL":[-70.2,-37],"haL":[-78.4,48],"hipR":[29.2,7.9],"knR":[39.5,164],"ftR":[52.9,282.9],"hipL":[-28.9,9.1],"knL":[-36.2,165.2],"ftL":[-45.6,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.9],"neck":[-0.4,-144.6],"head":[-3.1,-176.2],"shR":[52.8,-125.2],"elR":[96.8,-62.9],"haR":[72.4,-15.1],"shL":[-55.2,-116.2],"elL":[-70,-37.1],"haL":[-78,48.4],"hipR":[29.2,7.9],"knR":[39.6,164],"ftR":[52.7,282.9],"hipL":[-28.9,9.1],"knL":[-36.4,165.2],"ftL":[-45.8,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.8],"neck":[-0.3,-144.5],"head":[-3.2,-176.1],"shR":[52.7,-123.6],"elR":[91.1,-56.1],"haR":[79.4,1],"shL":[-55.3,-116.5],"elL":[-69.9,-37.3],"haL":[-77.9,48.5],"hipR":[29.3,7.9],"knR":[39.6,163.9],"ftR":[52.5,282.9],"hipL":[-28.9,9.1],"knL":[-36.5,165.3],"ftL":[-46,284.3]},{"rootY":0,"hips":[0,0],"chest":[4.1,-84.8],"neck":[-0.2,-144.5],"head":[-3.2,-176.1],"shR":[52.9,-122.5],"elR":[87.2,-52],"haR":[87.1,14.5],"shL":[-55.4,-116.7],"elL":[-69.9,-37.6],"haL":[-77.9,48.6],"hipR":[29.3,7.9],"knR":[39.7,163.9],"ftR":[52.3,282.9],"hipL":[-28.9,9.1],"knL":[-36.6,165.3],"ftL":[-46.1,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.1,-84.8],"neck":[0.1,-144.3],"head":[-3,-175.9],"shR":[53.1,-121.9],"elR":[85.1,-49.7],"haR":[93.2,25.7],"shL":[-55.3,-116.8],"elL":[-69.9,-37.8],"haL":[-78.2,48.7],"hipR":[29.3,7.8],"knR":[39.8,163.9],"ftR":[52.1,282.9],"hipL":[-28.9,9.2],"knL":[-36.6,165.3],"ftL":[-46.2,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.2,-84.7],"neck":[0.4,-144.3],"head":[-2.8,-175.8],"shR":[53.3,-121.6],"elR":[84.3,-48.1],"haR":[97.7,32.8],"shL":[-55.1,-116.9],"elL":[-70,-38],"haL":[-78.8,48.7],"hipR":[29.3,7.8],"knR":[40,163.9],"ftR":[52,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.3,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.3,-84.7],"neck":[0.6,-144.3],"head":[-2.6,-175.9],"shR":[53.6,-121.5],"elR":[84.3,-47.3],"haR":[101.3,36.3],"shL":[-54.8,-116.8],"elL":[-70.1,-38.1],"haL":[-79.5,48.8],"hipR":[29.3,7.8],"knR":[40.3,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.3,284.4]},{"rootY":0,"hips":[0,0],"chest":[4.4,-84.8],"neck":[0.8,-144.4],"head":[-2.4,-176],"shR":[54.1,-121.5],"elR":[84.4,-46.8],"haR":[103.9,38.3],"shL":[-54.5,-116.7],"elL":[-70.1,-38.1],"haL":[-80.4,48.8],"hipR":[29.3,7.8],"knR":[40.5,163.8],"ftR":[51.9,282.9],"hipL":[-28.9,9.2],"knL":[-36.9,165.4],"ftL":[-46.3,284.5]},{"rootY":0,"hips":[0,0],"chest":[4.4,-84.8],"neck":[0.9,-144.5],"head":[-2.2,-176.1],"shR":[54.7,-121.3],"elR":[84.3,-46.3],"haR":[105.2,39.7],"shL":[-54.2,-116.5],"elL":[-70.2,-38],"haL":[-81.2,48.9],"hipR":[29.3,7.8],"knR":[40.6,163.8],"ftR":[51.8,282.9],"hipL":[-28.9,9.2],"knL":[-36.9,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[4.2,-84.9],"neck":[1.1,-144.6],"head":[-2,-176.2],"shR":[55.3,-121],"elR":[84.1,-45.9],"haR":[106.1,40.5],"shL":[-53.9,-116.4],"elL":[-70.2,-38],"haL":[-81.9,48.9],"hipR":[29.2,7.8],"knR":[40.7,163.8],"ftR":[51.8,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[3.9,-85],"neck":[1.3,-144.7],"head":[-1.7,-176.4],"shR":[55.8,-120.8],"elR":[84.1,-45.8],"haR":[106.7,40.8],"shL":[-53.5,-116.4],"elL":[-70.3,-38.1],"haL":[-82.4,48.9],"hipR":[29.3,7.8],"knR":[40.7,163.8],"ftR":[51.7,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.4,284.4]},{"rootY":0.1,"hips":[0,0],"chest":[3.5,-85.1],"neck":[1.5,-144.9],"head":[-1.5,-176.6],"shR":[56.2,-120.5],"elR":[83.7,-45.7],"haR":[106.7,41],"shL":[-53.2,-116.4],"elL":[-70.3,-38.2],"haL":[-82.6,48.9],"hipR":[29.3,7.8],"knR":[40.5,163.8],"ftR":[51.6,282.9],"hipL":[-28.9,9.2],"knL":[-36.7,165.4],"ftL":[-46.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[3,-85.2],"neck":[1.5,-145.1],"head":[-1.3,-176.7],"shR":[56.5,-120.4],"elR":[82.7,-45.4],"haR":[105.9,41.3],"shL":[-53,-116.5],"elL":[-70.4,-38.2],"haL":[-82.7,49],"hipR":[29.3,7.8],"knR":[40.2,163.8],"ftR":[51.5,282.9],"hipL":[-28.9,9.2],"knL":[-36.8,165.4],"ftL":[-46.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[2.6,-85.2],"neck":[1.4,-145.1],"head":[-1.4,-176.8],"shR":[56.5,-120.3],"elR":[81.5,-45.1],"haR":[104.7,41.7],"shL":[-53,-116.4],"elL":[-70.6,-38.1],"haL":[-82.6,49],"hipR":[29.3,7.7],"knR":[39.9,163.8],"ftR":[51.3,282.9],"hipL":[-28.9,9.2],"knL":[-37,165.4],"ftL":[-46.9,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[2.2,-85.2],"neck":[1.2,-145.1],"head":[-1.6,-176.8],"shR":[56.4,-120.2],"elR":[80.6,-44.8],"haR":[103.6,42],"shL":[-53,-116.2],"elL":[-70.7,-37.9],"haL":[-82.3,49.1],"hipR":[29.3,7.7],"knR":[39.6,163.8],"ftR":[51,282.9],"hipL":[-28.8,9.3],"knL":[-37.2,165.4],"ftL":[-47.2,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.9,-85.2],"neck":[0.9,-145.1],"head":[-1.9,-176.8],"shR":[56.2,-120.1],"elR":[80.1,-44.5],"haR":[102.6,42.3],"shL":[-53.1,-116],"elL":[-70.8,-37.6],"haL":[-81.8,49.1],"hipR":[29.3,7.7],"knR":[39.3,163.8],"ftR":[50.8,282.9],"hipL":[-28.8,9.3],"knL":[-37.4,165.4],"ftL":[-47.4,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.5,-85.2],"neck":[0.5,-145.1],"head":[-2.2,-176.8],"shR":[55.9,-119.9],"elR":[79.7,-44.3],"haR":[101.7,42.5],"shL":[-53.2,-115.7],"elL":[-70.9,-37.2],"haL":[-81.2,49],"hipR":[29.3,7.7],"knR":[38.9,163.8],"ftR":[50.6,282.9],"hipL":[-28.8,9.3],"knL":[-37.6,165.3],"ftL":[-47.6,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[1.1,-85.2],"neck":[0.1,-145.1],"head":[-2.6,-176.8],"shR":[55.5,-119.9],"elR":[79.5,-44.1],"haR":[101.2,42.3],"shL":[-53.4,-115.4],"elL":[-70.8,-36.7],"haL":[-80.4,48.9],"hipR":[29.3,7.7],"knR":[38.4,163.8],"ftR":[50.4,282.9],"hipL":[-28.8,9.3],"knL":[-37.7,165.3],"ftL":[-47.8,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.8,-85.2],"neck":[-0.3,-145.2],"head":[-2.9,-176.9],"shR":[55.2,-120],"elR":[79.3,-44.1],"haR":[101,41.9],"shL":[-53.5,-115],"elL":[-70.7,-36.3],"haL":[-79.4,48.7],"hipR":[29.3,7.7],"knR":[37.9,163.8],"ftR":[50.2,282.8],"hipL":[-28.8,9.3],"knL":[-37.9,165.3],"ftL":[-48,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.5,-85.2],"neck":[-0.6,-145.2],"head":[-3.3,-176.9],"shR":[54.9,-120],"elR":[79.3,-44.1],"haR":[101.1,41.4],"shL":[-53.6,-114.6],"elL":[-70.4,-35.8],"haL":[-78.4,48.5],"hipR":[29.3,7.7],"knR":[37.6,163.8],"ftR":[50.1,282.8],"hipL":[-28.8,9.3],"knL":[-38,165.3],"ftL":[-48.1,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.3,-85.2],"neck":[-0.9,-145.2],"head":[-3.5,-176.9],"shR":[54.8,-120.1],"elR":[79.5,-44.1],"haR":[101.4,40.8],"shL":[-53.6,-114.3],"elL":[-70.1,-35.4],"haL":[-77.2,48.3],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.1,282.8],"hipL":[-28.8,9.3],"knL":[-38.1,165.3],"ftL":[-48.1,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.2,-85.2],"neck":[-1,-145.2],"head":[-3.5,-176.9],"shR":[54.7,-120.2],"elR":[80,-44.2],"haR":[102,40.1],"shL":[-53.5,-114.2],"elL":[-69.8,-35.2],"haL":[-76.1,48],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.2,282.8],"hipL":[-28.7,9.3],"knL":[-38.1,165.3],"ftL":[-48,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.1,-85.1],"neck":[-1,-145.2],"head":[-3.5,-176.9],"shR":[54.8,-120.2],"elR":[80.6,-44.3],"haR":[102.7,39.3],"shL":[-53.4,-114.1],"elL":[-69.6,-35.1],"haL":[-75.1,47.8],"hipR":[29.2,7.7],"knR":[37.4,163.8],"ftR":[50.4,282.8],"hipL":[-28.7,9.3],"knL":[-38,165.2],"ftL":[-47.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.1,-85],"neck":[-0.8,-145.1],"head":[-3.4,-176.8],"shR":[55,-120.2],"elR":[81.2,-44.4],"haR":[103.3,38.6],"shL":[-53.1,-114],"elL":[-69.3,-35],"haL":[-74.2,47.7],"hipR":[29.2,7.7],"knR":[37.5,163.8],"ftR":[50.7,282.8],"hipL":[-28.7,9.3],"knL":[-37.9,165.2],"ftL":[-47.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.2,-85],"neck":[-0.6,-145.1],"head":[-3.2,-176.8],"shR":[55.2,-120.1],"elR":[81.6,-44.3],"haR":[103.9,38.3],"shL":[-52.9,-114],"elL":[-69.1,-35],"haL":[-73.7,47.7],"hipR":[29.2,7.7],"knR":[37.6,163.9],"ftR":[51,282.8],"hipL":[-28.7,9.2],"knL":[-37.8,165.2],"ftL":[-47.2,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.3,-84.9],"neck":[-0.4,-145.1],"head":[-3,-176.8],"shR":[55.4,-119.9],"elR":[81.7,-44],"haR":[104.4,38.2],"shL":[-52.6,-114],"elL":[-68.9,-35],"haL":[-73.6,47.8],"hipR":[29.2,7.8],"knR":[37.8,163.9],"ftR":[51.3,282.8],"hipL":[-28.7,9.2],"knL":[-37.6,165.1],"ftL":[-46.9,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.4,-84.9],"neck":[-0.2,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.7],"elR":[81.5,-43.6],"haR":[104.5,38.6],"shL":[-52.4,-114],"elL":[-68.8,-35],"haL":[-73.8,48.1],"hipR":[29.2,7.8],"knR":[38.1,163.9],"ftR":[51.5,282.8],"hipL":[-28.7,9.2],"knL":[-37.5,165.1],"ftL":[-46.7,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.9],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.5],"elR":[81,-43.2],"haR":[104.1,39.3],"shL":[-52.3,-114],"elL":[-68.7,-35.1],"haL":[-74.3,48.4],"hipR":[29.2,7.8],"knR":[38.3,163.9],"ftR":[51.7,282.8],"hipL":[-28.7,9.2],"knL":[-37.4,165.1],"ftL":[-46.5,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.5,-119.3],"elR":[80.3,-42.8],"haR":[103.5,40.2],"shL":[-52.4,-114.1],"elL":[-68.8,-35.1],"haL":[-75,48.8],"hipR":[29.2,7.8],"knR":[38.5,163.9],"ftR":[51.8,282.8],"hipL":[-28.7,9.2],"knL":[-37.3,165.1],"ftL":[-46.3,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.1,-145],"head":[-2.8,-176.7],"shR":[55.3,-119.1],"elR":[79.7,-42.5],"haR":[102.7,41.1],"shL":[-52.4,-114.1],"elL":[-69,-35.2],"haL":[-75.9,49.1],"hipR":[29.2,7.8],"knR":[38.7,163.9],"ftR":[52,282.8],"hipL":[-28.7,9.2],"knL":[-37.2,165.1],"ftL":[-46.2,284.4]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.8],"neck":[-0.2,-145],"head":[-2.9,-176.7],"shR":[55.2,-119],"elR":[79.3,-42.2],"haR":[102.1,41.8],"shL":[-52.5,-114.1],"elL":[-69.2,-35.2],"haL":[-76.7,49.5],"hipR":[29.2,7.8],"knR":[39,163.9],"ftR":[52.1,282.8],"hipL":[-28.7,9.2],"knL":[-37.2,165.1],"ftL":[-46.1,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.7],"neck":[-0.2,-144.9],"head":[-2.9,-176.6],"shR":[55.1,-118.9],"elR":[78.9,-42],"haR":[101.6,42.5],"shL":[-52.6,-114.1],"elL":[-69.3,-35.2],"haL":[-77.6,49.9],"hipR":[29.2,7.8],"knR":[39.3,163.9],"ftR":[52.1,282.9],"hipL":[-28.7,9.2],"knL":[-37.1,165.1],"ftL":[-46,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.6],"neck":[-0.2,-144.9],"head":[-2.9,-176.6],"shR":[55.1,-118.8],"elR":[78.4,-41.9],"haR":[101.2,43.1],"shL":[-52.7,-114],"elL":[-69.3,-35.1],"haL":[-78.2,50.2],"hipR":[29.2,7.8],"knR":[39.7,163.9],"ftR":[52.2,282.9],"hipL":[-28.8,9.1],"knL":[-37,165.1],"ftL":[-45.8,284.3]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.6],"neck":[-0.3,-144.8],"head":[-3,-176.5],"shR":[55,-118.9],"elR":[77.7,-41.7],"haR":[101.1,43.5],"shL":[-52.8,-113.9],"elL":[-69.3,-35],"haL":[-78.7,50.5],"hipR":[29.2,7.8],"knR":[40,163.8],"ftR":[52.4,282.9],"hipL":[-28.8,9.2],"knL":[-36.9,165.1],"ftL":[-45.7,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.5],"neck":[-0.4,-144.8],"head":[-3.2,-176.5],"shR":[54.9,-118.9],"elR":[77.1,-41.7],"haR":[101,43.8],"shL":[-52.9,-113.8],"elL":[-69.3,-34.9],"haL":[-79.1,50.9],"hipR":[29.2,7.8],"knR":[40.2,163.8],"ftR":[52.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.8,165.1],"ftL":[-45.5,284.4]},{"rootY":0.2,"hips":[0,0],"chest":[0.5,-84.5],"neck":[-0.6,-144.8],"head":[-3.3,-176.5],"shR":[54.8,-119],"elR":[76.6,-41.5],"haR":[100.9,44],"shL":[-53,-113.6],"elL":[-69.2,-34.7],"haL":[-79.2,51.3],"hipR":[29.2,7.9],"knR":[40.2,163.9],"ftR":[52.4,282.9],"hipL":[-28.8,9.1],"knL":[-36.8,165.1],"ftL":[-45.4,284.3]},{"rootY":0.3,"hips":[0,0],"chest":[0.4,-84.5],"neck":[-0.7,-144.8],"head":[-3.5,-176.4],"shR":[54.7,-118.9],"elR":[76.1,-41.4],"haR":[100.7,44.3],"shL":[-52.9,-113.4],"elL":[-69,-34.4],"haL":[-79.1,51.7],"hipR":[29.2,7.9],"knR":[40.1,163.9],"ftR":[52.4,283],"hipL":[-28.8,9.1],"knL":[-36.7,165],"ftL":[-45.3,284.3]}]} \ No newline at end of file +{"name":"wave","fps":30,"height":520,"groundY":329,"frameCount":75,"frames":[{"rootY":0,"hips":[0,0],"chest":[0.8,-85.6],"neck":[0.8,-85.6],"head":[0.6,-164.3],"shR":[-68.1,-121.8],"elR":[-162.5,-108.5],"haR":[-233.5,-98.5],"shL":[76,-117],"elL":[171.2,-103.7],"haL":[243.5,-93.5],"hipR":[-69.8,34.9],"knR":[-67.3,174.6],"ftR":[-64.7,326.9],"hipL":[69.7,34.9],"knL":[67.4,172],"ftL":[64.6,329.1]},{"rootY":0.1,"hips":[0,0],"chest":[-12.5,-83.8],"neck":[-12.5,-83.8],"head":[0.9,-160.9],"shR":[39,-114.9],"elR":[75.2,-27.7],"haR":[49.9,26.4],"shL":[-59.7,-120.1],"elL":[-56.6,-26.8],"haL":[-93,36.5],"hipR":[34,33.9],"knR":[37.9,165.4],"ftR":[12.5,307.8],"hipL":[-66.4,45.8],"knL":[-97.9,178.9],"ftL":[-125.5,332.4]},{"rootY":-0.1,"hips":[0,0],"chest":[-12.7,-83.8],"neck":[-12.7,-83.8],"head":[-0.1,-161.1],"shR":[39,-116],"elR":[75.8,-31.2],"haR":[44.7,6.8],"shL":[-60.7,-119.1],"elL":[-56.5,-25.6],"haL":[-92,38.2],"hipR":[34.8,33.6],"knR":[39.6,164.9],"ftR":[14.2,307.2],"hipL":[-66.8,45.8],"knL":[-101,177.6],"ftL":[-124.7,330.9]},{"rootY":-0.4,"hips":[0,0],"chest":[-12.7,-83.9],"neck":[-12.7,-83.9],"head":[-0.3,-161.3],"shR":[39.2,-117],"elR":[70.8,-35.7],"haR":[40.9,-28.3],"shL":[-61.4,-118.1],"elL":[-56.5,-24.5],"haL":[-91.5,39.6],"hipR":[35.7,32.8],"knR":[41.4,164],"ftR":[16.9,306.3],"hipL":[-67,46.2],"knL":[-103,176.6],"ftL":[-121.8,329.8]},{"rootY":-0.5,"hips":[0,0],"chest":[-11.8,-84.2],"neck":[-11.8,-84.2],"head":[0.5,-161.9],"shR":[41.3,-117.7],"elR":[60.4,-46.1],"haR":[41.5,-77],"shL":[-61.7,-118.1],"elL":[-56.2,-24.2],"haL":[-90.8,40.1],"hipR":[36.6,32.2],"knR":[44.3,162.9],"ftR":[21.4,305.2],"hipL":[-67.1,46.7],"knL":[-102.1,176.4],"ftL":[-114.8,329.6]},{"rootY":-0.9,"hips":[0,0],"chest":[-11,-84.5],"neck":[-11,-84.5],"head":[1.9,-162],"shR":[42.5,-118.7],"elR":[50.2,-64.6],"haR":[44.4,-121.3],"shL":[-61,-117.3],"elL":[-55.9,-23],"haL":[-90.5,41.3],"hipR":[37.2,31.4],"knR":[47.5,161.6],"ftR":[27.4,304],"hipL":[-67.1,47.1],"knL":[-98.3,177.3],"ftL":[-106.8,330.6]},{"rootY":-1.9,"hips":[0,0],"chest":[-10.2,-84.7],"neck":[-10.2,-84.7],"head":[3.9,-162.1],"shR":[43.7,-119.7],"elR":[64.8,-82.4],"haR":[36.6,-140.4],"shL":[-60.7,-116.6],"elL":[-54.4,-22.1],"haL":[-89.1,42.1],"hipR":[37.8,30.8],"knR":[50.8,160.8],"ftR":[35,303.5],"hipL":[-67.5,47],"knL":[-92.2,179.1],"ftL":[-97.3,333]},{"rootY":-3.3,"hips":[0,0],"chest":[-10.1,-84.9],"neck":[-10.1,-84.9],"head":[5.5,-161.9],"shR":[43.9,-120.5],"elR":[79.2,-105.8],"haR":[33.5,-152.7],"shL":[-60.7,-116],"elL":[-53.1,-21.4],"haL":[-87.4,43],"hipR":[37.8,31.7],"knR":[53.5,161.7],"ftR":[43.5,305.2],"hipL":[-68.4,45.8],"knL":[-85.5,179.8],"ftL":[-86,334.4]},{"rootY":-4.4,"hips":[0,0],"chest":[-9.9,-85.1],"neck":[-9.9,-85.1],"head":[7.1,-161.8],"shR":[44.5,-121],"elR":[81,-115],"haR":[36.3,-163.9],"shL":[-61.1,-115.8],"elL":[-53.4,-20.9],"haL":[-86.9,43.9],"hipR":[37.3,32.7],"knR":[55.5,163.3],"ftR":[52,307.8],"hipL":[-69.2,44.5],"knL":[-77.9,179.9],"ftL":[-73.5,335.2]},{"rootY":-5.6,"hips":[0,0],"chest":[-10.3,-85.2],"neck":[-10.3,-85.2],"head":[8.6,-161.3],"shR":[44.2,-122.1],"elR":[65.9,-110.9],"haR":[42,-174.4],"shL":[-61.8,-114.6],"elL":[-54.9,-19.6],"haL":[-88.5,45.2],"hipR":[36.9,33.6],"knR":[56.5,165.2],"ftR":[59.4,310.7],"hipL":[-69.8,43.4],"knL":[-70.1,179.6],"ftL":[-60.8,335.4]},{"rootY":-6.3,"hips":[0,0],"chest":[-10.4,-85.2],"neck":[-10.4,-85.2],"head":[9,-161.1],"shR":[44.1,-122.3],"elR":[54.1,-111.1],"haR":[45.8,-181.3],"shL":[-61.2,-114.2],"elL":[-56,-19.1],"haL":[-90.5,45.2],"hipR":[37,35],"knR":[57.9,167.5],"ftR":[64.4,314.6],"hipL":[-70.5,42.3],"knL":[-63.1,178.5],"ftL":[-48.5,334.4]},{"rootY":-6.7,"hips":[0,0],"chest":[-10.6,-85.2],"neck":[-10.6,-85.2],"head":[9.2,-160.9],"shR":[44.4,-122.1],"elR":[69.2,-111.8],"haR":[37.6,-173.6],"shL":[-61.7,-114.4],"elL":[-58,-19.1],"haL":[-94.8,43.8],"hipR":[37.5,36.2],"knR":[60.1,169.3],"ftR":[70.5,317.2],"hipL":[-71.3,41.2],"knL":[-57.1,177.2],"ftL":[-37.2,332.7]},{"rootY":-6.8,"hips":[0,0],"chest":[-10.5,-85.3],"neck":[-10.5,-85.3],"head":[9.6,-160.7],"shR":[45.1,-122.2],"elR":[82.9,-122.3],"haR":[35.9,-170.6],"shL":[-62.2,-114.2],"elL":[-58.7,-19.1],"haL":[-98.1,42.2],"hipR":[37.8,37.6],"knR":[63.6,170.4],"ftR":[77.5,318.6],"hipL":[-71.9,40.2],"knL":[-52.2,175.7],"ftL":[-27.6,330.7]},{"rootY":-6.4,"hips":[0,0],"chest":[-10.8,-85.2],"neck":[-10.8,-85.2],"head":[7.8,-161.1],"shR":[44.8,-123.1],"elR":[87.7,-125.3],"haR":[40.1,-172.7],"shL":[-63.4,-113.2],"elL":[-59.8,-18.2],"haL":[-100.9,41.9],"hipR":[37.8,38.8],"knR":[65.4,171.9],"ftR":[83.5,320],"hipL":[-72.3,39.4],"knL":[-49.1,174.3],"ftL":[-21,328.9]},{"rootY":-6.2,"hips":[0,0],"chest":[-11.2,-85.1],"neck":[-11.2,-85.1],"head":[7.9,-160.6],"shR":[44.3,-123.7],"elR":[80.7,-118.5],"haR":[50.9,-180.1],"shL":[-64.5,-112.3],"elL":[-61.3,-17.3],"haL":[-102,43.1],"hipR":[38,39],"knR":[66.2,172.5],"ftR":[87.9,320.5],"hipL":[-72.1,39.6],"knL":[-46,174.1],"ftL":[-15.2,328.1]},{"rootY":-6.3,"hips":[0,0],"chest":[-11.8,-85.1],"neck":[-11.8,-85.1],"head":[7.5,-160.4],"shR":[43,-124.4],"elR":[70.5,-117.4],"haR":[57.6,-186.8],"shL":[-65,-111.5],"elL":[-62.3,-16.5],"haL":[-101.4,44.9],"hipR":[38.2,39.3],"knR":[67.5,173.2],"ftR":[91.7,321.3],"hipL":[-72.1,39.6],"knL":[-43.4,173.5],"ftL":[-10.1,327]},{"rootY":-5.9,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[7.9,-160.1],"shR":[43.3,-123.9],"elR":[71.6,-114.9],"haR":[55.9,-183.7],"shL":[-65.5,-111.8],"elL":[-62.5,-16.8],"haL":[-100.3,45.5],"hipR":[38.8,39.5],"knR":[68.7,173.6],"ftR":[95,321.7],"hipL":[-72.2,39.6],"knL":[-40.6,172.9],"ftL":[-4.6,325.7]},{"rootY":-5.4,"hips":[0,0],"chest":[-12,-85],"neck":[-12,-85],"head":[6.7,-160.6],"shR":[44,-123.7],"elR":[84,-115.7],"haR":[45.7,-173.6],"shL":[-65.9,-112],"elL":[-62,-17],"haL":[-99.2,45.6],"hipR":[39.4,40.1],"knR":[69.7,174.6],"ftR":[97.2,322.8],"hipL":[-72.8,39],"knL":[-38.7,171.7],"ftL":[0,323.8]},{"rootY":-4.9,"hips":[0,0],"chest":[-11.8,-85],"neck":[-11.8,-85],"head":[6.3,-160.7],"shR":[44.6,-123.6],"elR":[92.2,-120.5],"haR":[42.3,-167.7],"shL":[-66.3,-112.2],"elL":[-61.7,-17.4],"haL":[-98.9,45.3],"hipR":[39.8,40.3],"knR":[69.5,175.2],"ftR":[99.4,323.1],"hipL":[-72.9,39],"knL":[-37.6,171.4],"ftL":[2.3,323]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[6.4,-160.5],"shR":[44,-124],"elR":[92.7,-121.7],"haR":[45.5,-171.2],"shL":[-66.7,-111.7],"elL":[-62.4,-16.9],"haL":[-99.2,46],"hipR":[39.6,40.8],"knR":[69.1,176.1],"ftR":[101.1,323.7],"hipL":[-73.1,38.4],"knL":[-37.1,170.6],"ftL":[3.4,321.9]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.5,-85],"neck":[-12.5,-85],"head":[5.3,-160.6],"shR":[43.4,-124.2],"elR":[84.2,-116.3],"haR":[55.5,-179.1],"shL":[-67,-111.4],"elL":[-62.7,-16.6],"haL":[-99.9,46.2],"hipR":[39.3,40.1],"knR":[69.6,175.2],"ftR":[101.1,322.9],"hipL":[-72.6,39.2],"knL":[-35.6,171.1],"ftL":[5.9,322]},{"rootY":-4.5,"hips":[0,0],"chest":[-12.6,-85],"neck":[-12.6,-85],"head":[4.3,-160.7],"shR":[43.6,-124],"elR":[73.7,-114.7],"haR":[59.9,-184.1],"shL":[-67.2,-111.6],"elL":[-62.8,-16.7],"haL":[-99.5,46.3],"hipR":[39,39.5],"knR":[69.3,174.5],"ftR":[101.1,322.1],"hipL":[-72.3,39.6],"knL":[-35.3,171.5],"ftL":[5.9,322.4]},{"rootY":-4.4,"hips":[0,0],"chest":[-12.6,-85],"neck":[-12.6,-85],"head":[5,-160.5],"shR":[43.2,-124.4],"elR":[73.8,-111.9],"haR":[54.3,-180],"shL":[-66.6,-111.1],"elL":[-62.7,-16.1],"haL":[-99.2,47],"hipR":[39,39.3],"knR":[69.4,174.4],"ftR":[101.3,322],"hipL":[-72.6,39.3],"knL":[-35.5,171.3],"ftL":[5.6,322.1]},{"rootY":-4,"hips":[0,0],"chest":[-12.1,-85],"neck":[-12.1,-85],"head":[5.4,-160.5],"shR":[44.2,-124],"elR":[84.6,-113.9],"haR":[43.8,-170.4],"shL":[-66.4,-111.6],"elL":[-62.2,-16.7],"haL":[-99.4,46],"hipR":[39.2,39.7],"knR":[69.3,174.8],"ftR":[101.5,322.4],"hipL":[-72.9,38.8],"knL":[-35.3,170.6],"ftL":[6.7,321.2]},{"rootY":-3.7,"hips":[0,0],"chest":[-12,-85],"neck":[-12,-85],"head":[4.5,-160.9],"shR":[44.4,-123.8],"elR":[91.6,-119],"haR":[41.3,-166.4],"shL":[-66.4,-111.8],"elL":[-62.1,-16.8],"haL":[-99.7,45.6],"hipR":[39.1,39.7],"knR":[68.9,175],"ftR":[101.3,322.5],"hipL":[-72.9,38.8],"knL":[-35.5,170.6],"ftL":[6,321.3]},{"rootY":-3.7,"hips":[0,0],"chest":[-12.8,-84.9],"neck":[-12.8,-84.9],"head":[4.3,-160.4],"shR":[43.3,-123.9],"elR":[90.4,-118.1],"haR":[46.5,-171.2],"shL":[-67.3,-111.7],"elL":[-62.8,-16.8],"haL":[-99.9,45.9],"hipR":[38.8,39.8],"knR":[68,175.2],"ftR":[100.5,322.7],"hipL":[-72.6,39.1],"knL":[-36,171.1],"ftL":[4.3,322]},{"rootY":-4.1,"hips":[0,0],"chest":[-14,-84.7],"neck":[-14,-84.7],"head":[2.3,-160.6],"shR":[41.9,-123.8],"elR":[79.9,-111.8],"haR":[56.4,-177.4],"shL":[-68.6,-111.3],"elL":[-63.1,-16.6],"haL":[-100,46.3],"hipR":[38.5,39.6],"knR":[67.3,175],"ftR":[99.3,322.6],"hipL":[-72.1,39.6],"knL":[-35.8,171.7],"ftL":[4.4,322.6]},{"rootY":-4.4,"hips":[0,0],"chest":[-14.5,-84.6],"neck":[-14.5,-84.6],"head":[1.3,-160.6],"shR":[41.8,-123.3],"elR":[69.2,-108.1],"haR":[61.4,-178.8],"shL":[-69.6,-111.9],"elL":[-63.7,-17.2],"haL":[-99.5,46.4],"hipR":[38.1,39.4],"knR":[67.7,174.5],"ftR":[98.5,322.3],"hipL":[-71.6,40.1],"knL":[-36,172.4],"ftL":[3.3,323.4]},{"rootY":-4.6,"hips":[0,0],"chest":[-14.7,-84.6],"neck":[-14.7,-84.6],"head":[0.8,-160.5],"shR":[41.7,-123.3],"elR":[73.5,-102.3],"haR":[54.6,-170.5],"shL":[-70.1,-111.8],"elL":[-64.2,-17.1],"haL":[-99.2,46.9],"hipR":[37.8,39.9],"knR":[67.8,174.7],"ftR":[97.6,322.6],"hipL":[-71.6,39.8],"knL":[-36.1,172.2],"ftL":[3.1,323.2]},{"rootY":-4.8,"hips":[0,0],"chest":[-14.9,-84.5],"neck":[-14.9,-84.5],"head":[0,-160.8],"shR":[41.2,-123.4],"elR":[88.9,-105.1],"haR":[45.1,-159],"shL":[-70.4,-111.7],"elL":[-63.6,-17.2],"haL":[-99,46.6],"hipR":[37.4,40.3],"knR":[67.2,175.1],"ftR":[96.5,323],"hipL":[-71.5,39.6],"knL":[-36.6,172.1],"ftL":[2.1,323.3]},{"rootY":-4.8,"hips":[0,0],"chest":[-15.1,-84.5],"neck":[-15.1,-84.5],"head":[0.1,-160.7],"shR":[40.8,-123.2],"elR":[97.3,-112.4],"haR":[44.4,-155.8],"shL":[-70.8,-111.9],"elL":[-63.1,-17.5],"haL":[-99.1,45.9],"hipR":[36.8,40.4],"knR":[65.8,175.4],"ftR":[95.4,323.3],"hipL":[-71,39.9],"knL":[-37,172.6],"ftL":[0.5,324.1]},{"rootY":-4.9,"hips":[0,0],"chest":[-15.8,-84.3],"neck":[-15.8,-84.3],"head":[-0.5,-160.7],"shR":[39.1,-123.4],"elR":[94.6,-111.6],"haR":[51.7,-164.5],"shL":[-71.3,-111.5],"elL":[-62.4,-17.2],"haL":[-98.2,46.2],"hipR":[36.4,40],"knR":[63.9,175.4],"ftR":[93.3,323.2],"hipL":[-70.4,40.5],"knL":[-37.9,173.6],"ftL":[-2.4,325.5]},{"rootY":-5.5,"hips":[0,0],"chest":[-16.7,-84.1],"neck":[-16.7,-84.1],"head":[-2,-160.7],"shR":[38.2,-123.1],"elR":[83.7,-106.6],"haR":[62.1,-172.1],"shL":[-71.9,-111.6],"elL":[-62.2,-17.1],"haL":[-97.1,46.8],"hipR":[35.6,39.9],"knR":[62.8,175.3],"ftR":[91.4,323.2],"hipL":[-69.8,40.8],"knL":[-38.2,174.1],"ftL":[-3.2,326.2]},{"rootY":-5.7,"hips":[0,0],"chest":[-16.6,-84.2],"neck":[-16.6,-84.2],"head":[-2.7,-160.8],"shR":[37.4,-123.4],"elR":[69.9,-105.5],"haR":[66.9,-176],"shL":[-71,-111.2],"elL":[-61.4,-16.4],"haL":[-95,48.1],"hipR":[34.7,39.5],"knR":[62.6,174.4],"ftR":[89.8,322.5],"hipL":[-69.3,41.2],"knL":[-38.8,174.7],"ftL":[-5.2,327.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-16.7,-84.2],"neck":[-16.7,-84.2],"head":[-3,-160.7],"shR":[36.3,-123.8],"elR":[62.2,-101.3],"haR":[58.7,-171.8],"shL":[-70.3,-110.9],"elL":[-60.5,-16],"haL":[-92.8,49.1],"hipR":[34.5,39.5],"knR":[61.7,174.5],"ftR":[87.7,322.7],"hipL":[-69.3,41.1],"knL":[-39.6,174.9],"ftL":[-6.8,327.7]},{"rootY":-5.7,"hips":[0,0],"chest":[-16,-84.4],"neck":[-16,-84.4],"head":[-3.8,-161.2],"shR":[38.3,-122.9],"elR":[71.1,-97.3],"haR":[41.8,-161.2],"shL":[-69.4,-112.2],"elL":[-59.3,-17.2],"haL":[-91.3,48],"hipR":[34.1,39.6],"knR":[59.8,174.9],"ftR":[85.5,323.1],"hipL":[-69.5,40.7],"knL":[-40.7,174.7],"ftL":[-8.7,327.7]},{"rootY":-5.8,"hips":[0,0],"chest":[-15.7,-84.4],"neck":[-15.7,-84.4],"head":[-2.7,-161],"shR":[38.6,-122.7],"elR":[81.3,-105],"haR":[29.9,-152.6],"shL":[-68.8,-112.5],"elL":[-58.8,-17.5],"haL":[-91.4,47.5],"hipR":[32.8,39.8],"knR":[57.9,175.1],"ftR":[83.1,323.3],"hipL":[-69.3,40.2],"knL":[-42,174.5],"ftL":[-11.9,328]},{"rootY":-5.7,"hips":[0,0],"chest":[-16,-84.4],"neck":[-16,-84.4],"head":[-2.4,-160.9],"shR":[37,-123.3],"elR":[83.8,-112.6],"haR":[29.2,-155.8],"shL":[-68.2,-111.9],"elL":[-58.3,-16.9],"haL":[-91.9,47.7],"hipR":[31.5,39.2],"knR":[54.9,174.9],"ftR":[80.8,322.9],"hipL":[-68.6,40.7],"knL":[-43.3,175.4],"ftL":[-15.5,329.4]},{"rootY":-5.8,"hips":[0,0],"chest":[-16.3,-84.4],"neck":[-16.3,-84.4],"head":[-2.8,-161],"shR":[36.2,-123.3],"elR":[76.5,-107.5],"haR":[39.2,-166.4],"shL":[-67.5,-111.6],"elL":[-57.7,-16.5],"haL":[-91.4,48],"hipR":[30.3,38.6],"knR":[51.9,174.7],"ftR":[78.9,322.3],"hipL":[-68,41],"knL":[-44.9,176.1],"ftL":[-19.7,330.6]},{"rootY":-5.9,"hips":[0,0],"chest":[-16.4,-84.4],"neck":[-16.4,-84.4],"head":[-2.7,-160.9],"shR":[35.6,-123.6],"elR":[62.4,-103.2],"haR":[44.8,-171.3],"shL":[-66.8,-111.3],"elL":[-57,-16.1],"haL":[-90.7,48.5],"hipR":[29.5,37.6],"knR":[50,173.9],"ftR":[76.9,321.2],"hipL":[-67.4,41.7],"knL":[-46.4,177.1],"ftL":[-23.4,332.1]},{"rootY":-5.7,"hips":[0,0],"chest":[-15.7,-84.5],"neck":[-15.7,-84.5],"head":[-2.1,-161],"shR":[36.5,-123.2],"elR":[57.5,-99.1],"haR":[42.6,-168.4],"shL":[-65.6,-111.9],"elL":[-56.4,-16.6],"haL":[-89.3,48.4],"hipR":[29.6,36.8],"knR":[50.2,172.4],"ftR":[72,320.4],"hipL":[-67.5,42],"knL":[-48.3,177.7],"ftL":[-27,333]},{"rootY":-5.6,"hips":[0,0],"chest":[-14.4,-84.7],"neck":[-14.4,-84.7],"head":[-0.5,-161.2],"shR":[37.9,-123.3],"elR":[67.3,-96.4],"haR":[31.4,-157],"shL":[-64,-112.1],"elL":[-55.1,-16.9],"haL":[-87.7,48.3],"hipR":[30.4,36.3],"knR":[50.6,170.8],"ftR":[65.9,319],"hipL":[-67.8,42.2],"knL":[-50.3,178.1],"ftL":[-30.5,333.8]},{"rootY":-5.9,"hips":[0,0],"chest":[-13.4,-84.9],"neck":[-13.4,-84.9],"head":[1.7,-161.1],"shR":[39.5,-122.8],"elR":[78.6,-100.8],"haR":[23.4,-144.6],"shL":[-63.3,-113.1],"elL":[-53.4,-18.1],"haL":[-86.7,46.8],"hipR":[31.2,36.1],"knR":[50.4,169.9],"ftR":[60.8,317.9],"hipL":[-68.2,42.3],"knL":[-52.6,178.3],"ftL":[-34.5,334.4]},{"rootY":-6,"hips":[0,0],"chest":[-12.9,-85],"neck":[-12.9,-85],"head":[2.4,-161.3],"shR":[40.6,-122.1],"elR":[83.1,-105.2],"haR":[22.8,-141.3],"shL":[-63,-114],"elL":[-53.5,-19.1],"haL":[-86.5,46],"hipR":[31.9,35.4],"knR":[49.6,168.6],"ftR":[55.2,316.2],"hipL":[-68.1,42.8],"knL":[-55.6,179.2],"ftL":[-41.1,335.6]},{"rootY":-5.9,"hips":[0,0],"chest":[-12.7,-85],"neck":[-12.7,-85],"head":[2.3,-161.5],"shR":[41.1,-121.8],"elR":[79.3,-100.5],"haR":[32.1,-151.6],"shL":[-63.1,-114.4],"elL":[-54.2,-19.6],"haL":[-87.6,45.3],"hipR":[32.3,35],"knR":[49.2,167.3],"ftR":[50.7,313.7],"hipL":[-68,43.3],"knL":[-59.6,180],"ftL":[-50,336.8]},{"rootY":-5.7,"hips":[0,0],"chest":[-12.8,-85],"neck":[-12.8,-85],"head":[2.3,-161.5],"shR":[40.9,-122],"elR":[71.9,-96.5],"haR":[46.7,-160.3],"shL":[-63.1,-114.1],"elL":[-54.4,-19.2],"haL":[-89,45],"hipR":[32.1,34.7],"knR":[48.7,166],"ftR":[47.3,311],"hipL":[-67.5,43.7],"knL":[-64.5,180.8],"ftL":[-61.1,337.8]},{"rootY":-5.2,"hips":[0,0],"chest":[-12.9,-84.9],"neck":[-12.9,-84.9],"head":[2.2,-161.5],"shR":[40.5,-122.1],"elR":[66.3,-95.9],"haR":[64.7,-163.2],"shL":[-63.1,-114],"elL":[-54.7,-19.1],"haL":[-90.3,44.6],"hipR":[32,33.5],"knR":[48.8,163.6],"ftR":[42.1,307.4],"hipL":[-66.9,44.7],"knL":[-70.7,181.7],"ftL":[-73.7,338.7]},{"rootY":-4.6,"hips":[0,0],"chest":[-13.5,-84.8],"neck":[-13.5,-84.8],"head":[1.7,-161.3],"shR":[39.5,-122.2],"elR":[67.1,-91.3],"haR":[81.3,-153],"shL":[-63.3,-113.7],"elL":[-54.6,-18.7],"haL":[-90.6,44.6],"hipR":[31.8,32.6],"knR":[47.2,162.2],"ftR":[35.9,305.1],"hipL":[-66.4,45.5],"knL":[-78,181.8],"ftL":[-86.7,338.3]},{"rootY":-3.5,"hips":[0,0],"chest":[-13.4,-84.8],"neck":[-13.4,-84.8],"head":[1.7,-161.3],"shR":[39.4,-122.3],"elR":[74,-81],"haR":[91.7,-132.1],"shL":[-63,-113.6],"elL":[-53.9,-18.7],"haL":[-89.2,45],"hipR":[31.8,31.6],"knR":[45.9,161],"ftR":[30.4,303.1],"hipL":[-66.2,46.1],"knL":[-84.3,181.4],"ftL":[-96.7,337.1]},{"rootY":-2.3,"hips":[0,0],"chest":[-13.5,-84.8],"neck":[-13.5,-84.8],"head":[1.7,-161.1],"shR":[39.8,-121.9],"elR":[79.6,-67.5],"haR":[96.2,-102.9],"shL":[-63.2,-114],"elL":[-53.7,-19.2],"haL":[-87.7,45.2],"hipR":[32.3,30.8],"knR":[44.2,160],"ftR":[25.4,301.5],"hipL":[-66.1,46.6],"knL":[-89.3,181],"ftL":[-104.7,336]},{"rootY":-1.5,"hips":[0,0],"chest":[-12.7,-84.9],"neck":[-12.7,-84.9],"head":[2.6,-161],"shR":[40.7,-121.5],"elR":[82.4,-54.2],"haR":[95.9,-69.5],"shL":[-62.3,-114.6],"elL":[-53.9,-19.7],"haL":[-86.2,45.7],"hipR":[33,30.4],"knR":[42.9,159.7],"ftR":[21.4,300.8],"hipL":[-66.4,46.7],"knL":[-92.5,180.5],"ftL":[-110.5,334.8]},{"rootY":-1.1,"hips":[0,0],"chest":[-11.8,-85],"neck":[-11.8,-85],"head":[3.9,-161],"shR":[42.5,-120.7],"elR":[81.5,-43],"haR":[92.4,-36.6],"shL":[-61.5,-115.6],"elL":[-54.7,-20.8],"haL":[-85.7,45.3],"hipR":[34.1,30.5],"knR":[41.7,160],"ftR":[18.1,300.8],"hipL":[-67.1,46.4],"knL":[-94.1,180],"ftL":[-113.5,333.9]},{"rootY":-0.8,"hips":[0,0],"chest":[-10.5,-85.1],"neck":[-10.5,-85.1],"head":[5.6,-160.8],"shR":[44.7,-119.8],"elR":[79,-35.2],"haR":[87.9,-7.7],"shL":[-60.5,-116.8],"elL":[-55.5,-22.2],"haL":[-86.4,44],"hipR":[35.4,31.2],"knR":[40.9,160.7],"ftR":[15.4,301.2],"hipL":[-68.1,45.6],"knL":[-94.9,179.4],"ftL":[-115.4,333]},{"rootY":-0.8,"hips":[0,0],"chest":[-8.8,-85.2],"neck":[-8.8,-85.2],"head":[7.8,-160.7],"shR":[47.4,-118.7],"elR":[79.3,-30.9],"haR":[82.3,13],"shL":[-59.3,-118.1],"elL":[-56.4,-23.7],"haL":[-88.6,41.9],"hipR":[37.1,31.3],"knR":[39.9,161.2],"ftR":[13.7,301.7],"hipL":[-68.8,45.2],"knL":[-95.3,179.4],"ftL":[-117.3,332.9]},{"rootY":-1,"hips":[0,0],"chest":[-7.3,-85.2],"neck":[-7.3,-85.2],"head":[10.2,-160.4],"shR":[50.3,-117.2],"elR":[85.4,-29.6],"haR":[78.4,25.9],"shL":[-58.1,-119.6],"elL":[-57.7,-25.4],"haL":[-92.1,39],"hipR":[38.6,31.8],"knR":[40.2,161.9],"ftR":[12.7,302.5],"hipL":[-69.6,44.7],"knL":[-96.2,178.9],"ftL":[-119.1,332.4]},{"rootY":-0.9,"hips":[0,0],"chest":[-5.8,-85.1],"neck":[-5.8,-85.1],"head":[12.7,-160.3],"shR":[52.9,-115.7],"elR":[92.3,-29.3],"haR":[78.4,31.9],"shL":[-57,-121.2],"elL":[-58.7,-27.3],"haL":[-95.9,35.6],"hipR":[39.3,32.3],"knR":[40.3,162.4],"ftR":[11.9,302.7],"hipL":[-70,44.4],"knL":[-96.9,178.6],"ftL":[-120.5,332]},{"rootY":-0.8,"hips":[0,0],"chest":[-4.6,-85],"neck":[-4.6,-85],"head":[15,-160.1],"shR":[55.3,-114.1],"elR":[94.2,-27.2],"haR":[79.3,36.4],"shL":[-56.4,-122.6],"elL":[-59.7,-29.1],"haL":[-99.1,32.1],"hipR":[39.8,32.9],"knR":[40.2,163.1],"ftR":[11.1,303.3],"hipL":[-70.2,44.1],"knL":[-97.1,178.3],"ftL":[-121.2,331.8]},{"rootY":-0.8,"hips":[0,0],"chest":[-3.4,-85],"neck":[-3.4,-85],"head":[16.5,-160.2],"shR":[57.1,-113.6],"elR":[91,-24.5],"haR":[79.8,40.8],"shL":[-55.7,-123.1],"elL":[-61.7,-29.4],"haL":[-102.2,30.8],"hipR":[40.3,33.6],"knR":[40.2,163.8],"ftR":[10.2,303.9],"hipL":[-70.6,43.6],"knL":[-97.1,177.9],"ftL":[-121.4,331.5]},{"rootY":-0.7,"hips":[0,0],"chest":[-3,-84.9],"neck":[-3,-84.9],"head":[17.7,-160],"shR":[58.6,-112],"elR":[89.5,-21.8],"haR":[80.4,44.7],"shL":[-55.7,-124.5],"elL":[-63.3,-30.6],"haL":[-103.1,29.7],"hipR":[40.9,34.2],"knR":[40.4,164.4],"ftR":[9.6,304.4],"hipL":[-70.9,43.3],"knL":[-97.4,177.6],"ftL":[-122.1,331.2]},{"rootY":-0.8,"hips":[0,0],"chest":[-3.2,-84.8],"neck":[-3.2,-84.8],"head":[18.4,-159.9],"shR":[59.1,-110.8],"elR":[90.9,-21],"haR":[81.8,46.1],"shL":[-56,-125.6],"elL":[-64.3,-31.8],"haL":[-103.5,28.6],"hipR":[41.4,34.3],"knR":[40.7,164.6],"ftR":[8.8,304.4],"hipL":[-71,43.3],"knL":[-97,177.7],"ftL":[-122.1,331.4]},{"rootY":-0.6,"hips":[0,0],"chest":[-3.5,-84.7],"neck":[-3.5,-84.7],"head":[18.9,-159.8],"shR":[59,-110.7],"elR":[92.8,-21.6],"haR":[82.8,45],"shL":[-56.7,-125.6],"elL":[-66.2,-31.7],"haL":[-104.7,28.8],"hipR":[41.7,34.6],"knR":[40.8,165],"ftR":[8.4,304.9],"hipL":[-70.9,43.5],"knL":[-97.5,177.7],"ftL":[-123,331.2]},{"rootY":-0.2,"hips":[0,0],"chest":[-4.1,-84.7],"neck":[-4.1,-84.7],"head":[18.2,-160],"shR":[58.3,-111.2],"elR":[91.4,-21.8],"haR":[81.7,43.9],"shL":[-58.1,-125.2],"elL":[-68.8,-31.3],"haL":[-107.3,29.2],"hipR":[41.8,34.3],"knR":[40.2,165.2],"ftR":[7.5,305.6],"hipL":[-70.8,43.7],"knL":[-98.6,177.6],"ftL":[-124.8,330.9]},{"rootY":0.4,"hips":[0,0],"chest":[-4.8,-84.7],"neck":[-4.8,-84.7],"head":[17.5,-160],"shR":[57.3,-112.1],"elR":[88.9,-22.1],"haR":[79.5,42.8],"shL":[-59.2,-124.4],"elL":[-69.2,-30.2],"haL":[-106.7,31],"hipR":[42.1,33.3],"knR":[39.6,164.7],"ftR":[7,305.6],"hipL":[-70.3,44.6],"knL":[-99.5,178.1],"ftL":[-126.7,331]},{"rootY":0.8,"hips":[0,0],"chest":[-5.6,-84.8],"neck":[-5.6,-84.8],"head":[15.4,-160.3],"shR":[55.9,-113],"elR":[86.7,-22.8],"haR":[76.5,41.2],"shL":[-59.7,-123.6],"elL":[-68.2,-29.2],"haL":[-104.6,32.7],"hipR":[42,32.4],"knR":[39.9,163.8],"ftR":[6.4,304.5],"hipL":[-70,45.2],"knL":[-100.8,178.2],"ftL":[-128.6,330.7]},{"rootY":1.1,"hips":[0,0],"chest":[-6.1,-84.9],"neck":[-6.1,-84.9],"head":[13.7,-160.6],"shR":[54.7,-113.9],"elR":[85,-23.6],"haR":[72.8,39.6],"shL":[-59.8,-122.8],"elL":[-65.8,-28],"haL":[-101.4,34.5],"hipR":[41.8,31.9],"knR":[40.1,163.2],"ftR":[6,303.6],"hipL":[-69.8,45.4],"knL":[-101.2,178.2],"ftL":[-128.9,330.5]},{"rootY":1.2,"hips":[0,0],"chest":[-6.3,-84.9],"neck":[-6.3,-84.9],"head":[12.3,-160.8],"shR":[53.8,-114.8],"elR":[83.7,-24.5],"haR":[69.3,38.1],"shL":[-59.6,-121.9],"elL":[-63.5,-27],"haL":[-98,36.4],"hipR":[41.5,31.7],"knR":[40.2,162.6],"ftR":[5.9,302.8],"hipL":[-69.5,45.7],"knL":[-100.8,178.5],"ftL":[-128.6,330.8]},{"rootY":1.1,"hips":[0,0],"chest":[-6.6,-84.9],"neck":[-6.6,-84.9],"head":[11.3,-160.8],"shR":[52.6,-115.9],"elR":[82.3,-25.6],"haR":[66,36.7],"shL":[-59.4,-120.7],"elL":[-60.8,-25.8],"haL":[-94.4,38.2],"hipR":[41.1,31.4],"knR":[40.1,162.2],"ftR":[5.7,302.2],"hipL":[-69.3,45.9],"knL":[-101,178.6],"ftL":[-129,330.8]},{"rootY":0.9,"hips":[0,0],"chest":[-7.1,-84.9],"neck":[-7.1,-84.9],"head":[10.4,-160.9],"shR":[51.7,-116.2],"elR":[81.3,-25.9],"haR":[63.6,36.3],"shL":[-59.8,-120.5],"elL":[-59.5,-25.7],"haL":[-92.2,39],"hipR":[40.6,31.8],"knR":[39.7,162.5],"ftR":[5.5,302.4],"hipL":[-69.2,45.8],"knL":[-100.2,178.8],"ftL":[-128.3,331.2]},{"rootY":0.9,"hips":[0,0],"chest":[-7.7,-84.9],"neck":[-7.7,-84.9],"head":[9.3,-160.9],"shR":[50.7,-116.2],"elR":[79.9,-25.7],"haR":[61.7,36.5],"shL":[-60.1,-120.4],"elL":[-59.3,-25.8],"haL":[-91,39.6],"hipR":[40,32.1],"knR":[39.4,162.6],"ftR":[5.5,302.5],"hipL":[-69,45.7],"knL":[-99.9,178.8],"ftL":[-128,331.3]},{"rootY":0.7,"hips":[0,0],"chest":[-8.4,-84.8],"neck":[-8.4,-84.8],"head":[8.5,-160.9],"shR":[49.6,-115.9],"elR":[79.1,-25.5],"haR":[61.1,37.1],"shL":[-60.5,-120.6],"elL":[-61.5,-25.8],"haL":[-93.6,39.5],"hipR":[39.3,32.3],"knR":[39.1,162.7],"ftR":[5.3,302.4],"hipL":[-68.7,45.8],"knL":[-99.8,178.8],"ftL":[-128.2,331.5]},{"rootY":0.4,"hips":[0,0],"chest":[-8.9,-84.7],"neck":[-8.9,-84.7],"head":[8.1,-160.8],"shR":[48.8,-115.6],"elR":[78.3,-25.3],"haR":[61,37.8],"shL":[-60.4,-120.7],"elL":[-61.6,-26],"haL":[-95.1,38.6],"hipR":[38.7,32.6],"knR":[38.9,163],"ftR":[5,302.6],"hipL":[-68.6,45.6],"knL":[-99.5,178.7],"ftL":[-127.9,331.5]},{"rootY":0.4,"hips":[0,0],"chest":[-9.3,-84.6],"neck":[-9.3,-84.6],"head":[7.6,-160.8],"shR":[48.1,-115.2],"elR":[77.5,-24.9],"haR":[61.2,38.7],"shL":[-60.3,-120.9],"elL":[-61.9,-26.4],"haL":[-96.8,37.4],"hipR":[38.3,32.8],"knR":[38.7,163.1],"ftR":[5.3,302.8],"hipL":[-68.4,45.6],"knL":[-99,178.8],"ftL":[-127.6,331.8]},{"rootY":0.1,"hips":[0,0],"chest":[-9.4,-84.5],"neck":[-9.4,-84.5],"head":[7.4,-160.8],"shR":[47.7,-115.1],"elR":[77.1,-24.7],"haR":[61.4,39.2],"shL":[-60.3,-121],"elL":[-62.3,-26.4],"haL":[-97.7,36.9],"hipR":[37.8,33.2],"knR":[38.3,163.5],"ftR":[5.3,303.2],"hipL":[-68.5,45.3],"knL":[-98.7,178.6],"ftL":[-126.8,331.7]},{"rootY":-0.1,"hips":[0,0],"chest":[-9.7,-84.4],"neck":[-9.7,-84.4],"head":[7.5,-160.7],"shR":[47.3,-114.7],"elR":[76.7,-24.4],"haR":[60.7,39.7],"shL":[-60.2,-121.1],"elL":[-62.4,-26.6],"haL":[-98,36.5],"hipR":[37.5,33.4],"knR":[38.4,163.6],"ftR":[5.5,303.3],"hipL":[-68.3,45.3],"knL":[-98.3,178.7],"ftL":[-126.4,332]},{"rootY":-0.3,"hips":[0,0],"chest":[-9.5,-84.4],"neck":[-9.5,-84.4],"head":[7.6,-160.7],"shR":[47.3,-114.7],"elR":[76.8,-24.3],"haR":[60.5,39.8],"shL":[-60,-121.1],"elL":[-62.3,-26.5],"haL":[-97.7,36.6],"hipR":[37.4,33.7],"knR":[38.3,163.8],"ftR":[5.5,303.5],"hipL":[-68.2,45.2],"knL":[-97.9,178.7],"ftL":[-126,332.1]}]} \ No newline at end of file diff --git a/ink-theater/mocap/dab.bvh b/ink-theater/mocap/dab.bvh deleted file mode 100644 index 9f567afc..00000000 --- a/ink-theater/mocap/dab.bvh +++ /dev/null @@ -1,506 +0,0 @@ -HIERARCHY -ROOT Hips -{ - OFFSET 0.00 0.00 0.00 - CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation - JOINT Spine - { - OFFSET 0.00000 1.15266 1.72900 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine1 - { - OFFSET 0.00000 0.40032 2.27031 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine2 - { - OFFSET 0.00000 0.20092 2.29656 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine3 - { - OFFSET 0.00000 0.00000 2.30533 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Neck - { - OFFSET 0.00000 -0.86449 6.05149 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Head - { - OFFSET 0.00000 -0.55043 3.12167 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 0.00000 3.73175 - } - } - } - JOINT RightShoulder - { - OFFSET -0.78828 -1.31380 4.25672 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightArm - { - OFFSET -3.91513 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightForeArm - { - OFFSET -6.91491 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHand - { - OFFSET -6.09622 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHandEnd - { - OFFSET -1.74995 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET -1.74995 0.00000 0.00000 - } - } - JOINT RightHandThumb1 - { - OFFSET -0.69998 -1.16663 -0.46665 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET -1.69032 -0.45292 0.00000 - } - } - } - } - } - } - JOINT LeftShoulder - { - OFFSET 0.78828 -1.31380 4.25672 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftArm - { - OFFSET 3.91513 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftForeArm - { - OFFSET 6.91491 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHand - { - OFFSET 6.09622 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHandEnd - { - OFFSET 1.74995 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 1.74995 0.00000 0.00000 - } - } - JOINT LeftHandThumb1 - { - OFFSET 0.69998 -1.16663 -0.46665 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET 1.69032 -0.45292 0.00000 - } - } - } - } - } - } - } - } - } - } - JOINT RightUpLeg - { - OFFSET -2.33857 0.00000 -0.68318 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightLeg - { - OFFSET 0.00000 0.00000 -10.74496 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightFoot - { - OFFSET 0.00000 0.00000 -10.93085 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightToeBase - { - OFFSET 0.00000 -4.08727 -1.48765 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.89187 -0.00000 - } - } - } - } - } - JOINT LeftUpLeg - { - OFFSET 2.33857 0.00000 -0.68318 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftLeg - { - OFFSET 0.00000 0.00000 -10.74496 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftFoot - { - OFFSET 0.00000 0.00000 -10.93085 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftToeBase - { - OFFSET 0.00000 -4.08727 -1.48765 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.89187 -0.00000 - } - } - } - } - } -} -MOTION -Frames: 339 -Frame Time: 0.0333333 - -1.2344 -0.5247 25.0481 -6.3389 1.5268 158.9231 -0.9467 -0.8818 0.6613 -0.4314 -2.9862 0.0497 0.9160 3.3771 10.6242 0.0771 0.8801 1.5412 -6.2439 3.6810 -11.9512 3.7770 0.7580 -17.8822 -10.8288 5.0991 -9.2866 -4.1143 2.9629 8.3573 0.0000 0.0000 14.0990 -6.3276 1.2965 -11.5775 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -9.2830 -2.0240 6.9341 -19.4054 1.9126 -14.5823 -0.0000 0.0000 4.8586 2.9106 7.4251 7.6107 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -8.3456 -2.7124 -6.1466 2.3003 0.0000 0.0000 -0.5011 0.0225 25.7021 4.7461 0.0000 0.0000 -4.7722 -0.8451 8.3983 0.2919 0.0000 0.0000 -5.3589 2.0117 3.7720 -2.8200 0.0000 -0.0000 - -1.2302 -0.5463 25.0488 -6.3498 1.5528 158.9254 -0.9193 -0.8773 0.6525 -0.4300 -2.9738 0.0511 0.9141 3.3585 10.6080 0.0753 0.8755 1.5396 -6.1961 3.7338 -11.9571 3.7707 0.7710 -17.8708 -10.7848 5.1834 -9.2519 -4.0837 2.8641 8.2630 0.0000 0.0000 14.1275 -6.3253 1.3580 -11.5707 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.2488 -2.1176 6.9005 -19.3092 1.8673 -14.4473 -0.0000 0.0000 4.8182 2.8606 7.3878 7.5985 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.4353 -2.7155 -6.1436 2.3436 0.0000 0.0000 -0.4562 0.0254 25.6905 4.6910 0.0000 0.0000 -4.8855 -0.8564 8.4325 0.3829 0.0000 0.0000 -5.3661 1.9014 3.7395 -2.6940 0.0000 -0.0000 - -1.2228 -0.5786 25.0488 -6.3587 1.5831 158.9308 -0.8721 -0.8877 0.6407 -0.4153 -2.9542 0.0530 0.8980 3.3227 10.5908 0.0716 0.8735 1.5347 -6.0857 3.8315 -11.9569 3.7467 0.7900 -17.8370 -10.7323 5.3190 -9.1950 -4.0057 2.7075 8.1318 0.0000 0.0000 14.1090 -6.3637 1.3903 -11.5623 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.2143 -2.2694 6.8489 -19.1910 1.8310 -14.2467 -0.0000 0.0000 4.7368 2.7827 7.3434 7.5619 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -8.5631 -2.7275 -6.1406 2.4205 0.0000 0.0000 -0.3966 0.0172 25.6765 4.6020 0.0000 0.0000 -5.0524 -0.8870 8.4969 0.5387 0.0000 0.0000 -5.3795 1.8531 3.6704 -2.6186 0.0000 -0.0000 - -1.2142 -0.6084 25.0484 -6.3456 1.6006 158.9579 -0.7976 -0.9177 0.6251 -0.4003 -2.9181 0.0592 0.8702 3.2558 10.5669 0.0614 0.8802 1.5247 -5.9519 3.9502 -11.9398 3.7687 0.8273 -17.7711 -10.6991 5.4642 -9.1337 -3.9227 2.5350 7.9997 0.0000 0.0000 14.0622 -6.4289 1.3203 -11.5425 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.1811 -2.4167 6.8181 -19.1515 1.8549 -14.0926 -0.0000 0.0000 4.6770 2.8434 7.2991 7.4913 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.6520 -2.7437 -6.1583 2.4871 0.0000 0.0000 -0.3517 0.0284 25.6591 4.5235 0.0000 0.0000 -5.1837 -0.9193 8.5545 0.6796 0.0000 0.0000 -5.3923 1.8005 3.5917 -2.5044 0.0000 -0.0000 - -1.2061 -0.6313 25.0483 -6.3441 1.6247 159.0239 -0.7444 -0.9347 0.6160 -0.3825 -2.9054 0.0578 0.8293 3.1958 10.5220 0.0479 0.8811 1.5116 -5.8387 4.0680 -11.9169 3.8781 0.8689 -17.6856 -10.6806 5.5842 -9.0825 -3.8475 2.3846 7.8770 0.0000 0.0000 14.0333 -6.4989 1.1811 -11.4961 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.1447 -2.5375 6.8137 -19.1814 1.9401 -14.0205 -0.0000 0.0000 4.6759 2.9291 7.3270 7.4081 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.7244 -2.7515 -6.1937 2.5250 0.0000 0.0000 -0.3339 0.0902 25.6164 4.4731 0.0000 0.0000 -5.2844 -0.9323 8.5824 0.7479 0.0000 0.0000 -5.3741 1.7155 3.5139 -2.3572 0.0000 -0.0000 - -1.1971 -0.6505 25.0484 -6.3605 1.6482 159.1355 -0.7100 -0.9468 0.6043 -0.3748 -2.8954 0.0543 0.7967 3.1244 10.4419 0.0363 0.8803 1.4932 -5.7338 4.1761 -11.9066 4.0213 0.8838 -17.6119 -10.6555 5.6739 -9.0371 -3.7620 2.2710 7.7788 0.0000 0.0000 14.0017 -6.5724 1.0471 -11.4189 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.1275 -2.6745 6.7993 -19.1828 2.0575 -13.9532 -0.0000 0.0000 4.6895 2.8230 7.4440 7.3580 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.7844 -2.7625 -6.2468 2.5252 0.0000 0.0000 -0.3208 0.1777 25.5470 4.4336 0.0000 0.0000 -5.3704 -0.9455 8.5625 0.7634 0.0000 0.0000 -5.3199 1.7129 3.4392 -2.3399 0.0000 -0.0000 - -1.1863 -0.6681 25.0481 -6.3810 1.6674 159.2605 -0.6820 -0.9667 0.5937 -0.3625 -2.8861 0.0488 0.7615 3.0564 10.3434 0.0288 0.8781 1.4706 -5.6010 4.2700 -11.9212 4.1125 0.8773 -17.5640 -10.6343 5.7332 -8.9967 -3.7015 2.2002 7.7365 0.0000 0.0000 13.9457 -6.6383 0.9366 -11.3392 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.1567 -2.8358 6.7557 -19.1291 2.1640 -13.8530 -0.0000 0.0000 4.6753 2.6218 7.5243 7.3455 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.8284 -2.7783 -6.3048 2.5083 0.0000 0.0000 -0.3089 0.2415 25.4777 4.4090 0.0000 0.0000 -5.4426 -0.9674 8.5252 0.7612 0.0000 0.0000 -5.2576 1.8013 3.3621 -2.4220 0.0000 -0.0000 - -1.1740 -0.6816 25.0479 -6.3804 1.6849 159.3572 -0.6372 -0.9950 0.5828 -0.3431 -2.8707 0.0457 0.7128 2.9908 10.2545 0.0221 0.8754 1.4522 -5.4415 4.3561 -11.9534 4.1419 0.8944 -17.5310 -10.6321 5.7655 -8.9626 -3.7354 2.1800 7.7419 0.0000 0.0000 13.9418 -6.6570 0.8624 -11.2798 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.2171 -2.9750 6.7043 -19.0771 2.2260 -13.7644 -0.0000 0.0000 4.6441 2.5780 7.4535 7.3269 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -8.8352 -2.7899 -6.3571 2.4864 0.0000 0.0000 -0.3070 0.2778 25.4375 4.4218 0.0000 0.0000 -5.4732 -0.9831 8.4990 0.7397 0.0000 0.0000 -5.2188 1.7925 3.2989 -2.3354 0.0000 -0.0000 - -1.1606 -0.6915 25.0484 -6.3758 1.7168 159.3981 -0.5903 -1.0144 0.5751 -0.3239 -2.8557 0.0453 0.6578 2.9227 10.1901 0.0126 0.8682 1.4429 -5.2947 4.4526 -11.9823 4.1572 0.9560 -17.4954 -10.6206 5.7817 -8.9339 -3.8455 2.2209 7.7652 0.0000 0.0000 14.0711 -6.6315 0.8752 -11.2194 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.2559 -3.0677 6.6791 -19.0590 2.2328 -13.7326 -0.0000 0.0000 4.6248 2.6602 7.3126 7.2752 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -8.8456 -2.7948 -6.3799 2.4783 0.0000 0.0000 -0.3145 0.3247 25.4211 4.4581 0.0000 0.0000 -5.4887 -0.9857 8.4897 0.7055 0.0000 0.0000 -5.1999 1.6473 3.2742 -2.0637 0.0000 -0.0000 - -1.1452 -0.7010 25.0489 -6.3861 1.7532 159.3881 -0.5485 -1.0327 0.5688 -0.3097 -2.8472 0.0439 0.6091 2.8542 10.1529 -0.0009 0.8564 1.4424 -5.1826 4.5717 -11.9959 4.1805 1.0263 -17.4497 -10.5672 5.8141 -8.9062 -3.9376 2.3005 7.7999 0.0000 0.0000 14.2897 -6.6122 0.9908 -11.1390 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.2363 -3.1524 6.6785 -19.0630 2.2045 -13.7465 -0.0000 0.0000 4.6223 2.6763 7.2584 7.2123 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.8888 -2.8137 -6.3738 2.4917 0.0000 0.0000 -0.3117 0.3875 25.4216 4.4721 0.0000 0.0000 -5.5251 -1.0036 8.4916 0.7038 0.0000 0.0000 -5.1813 1.6143 3.2880 -1.9625 0.0000 -0.0000 - -1.1271 -0.7123 25.0485 -6.4287 1.7833 159.3552 -0.5245 -1.0681 0.5630 -0.3023 -2.8353 0.0469 0.5700 2.7847 10.1290 -0.0134 0.8462 1.4446 -5.1013 4.7054 -11.9969 4.2044 1.0597 -17.3948 -10.5003 5.8929 -8.8725 -3.9855 2.3636 7.8554 0.0000 0.0000 14.4887 -6.6041 1.1328 -11.0697 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.1870 -3.2803 6.6583 -19.0661 2.1783 -13.7475 -0.0000 0.0000 4.6073 2.6574 7.2821 7.1646 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -8.9725 -2.8589 -6.3690 2.5196 0.0000 0.0000 -0.2881 0.4255 25.4491 4.4601 0.0000 0.0000 -5.6087 -1.0567 8.5192 0.7596 0.0000 0.0000 -5.1562 1.8291 3.3022 -2.1929 0.0000 -0.0000 - -1.1051 -0.7232 25.0481 -6.4788 1.8021 159.3349 -0.5009 -1.1120 0.5575 -0.2984 -2.8228 0.0466 0.5286 2.7310 10.1109 -0.0233 0.8417 1.4430 -5.0402 4.8107 -11.9891 4.2467 1.0622 -17.3364 -10.4592 5.9963 -8.8307 -4.0493 2.3832 7.9251 0.0000 0.0000 14.6232 -6.5448 1.2371 -11.0481 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.1352 -3.4612 6.5966 -19.0544 2.1699 -13.7271 -0.0000 0.0000 4.5660 2.7202 7.2688 7.1043 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -9.0355 -2.9218 -6.3983 2.5167 0.0000 0.0000 -0.2432 0.4220 25.5065 4.4609 0.0000 0.0000 -5.6874 -1.1292 8.5619 0.8121 0.0000 0.0000 -5.1254 2.0967 3.2933 -2.4671 0.0000 -0.0000 - -1.0798 -0.7350 25.0484 -6.5622 1.8410 159.3515 -0.5042 -1.1342 0.5517 -0.3051 -2.8055 0.0503 0.4802 2.6908 10.0721 -0.0341 0.8394 1.4385 -5.0016 4.8611 -11.9754 4.3292 1.0638 -17.2757 -10.4331 6.0605 -8.7942 -4.1495 2.4095 8.0070 0.0000 0.0000 14.7029 -6.4246 1.3300 -11.0421 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.0813 -3.6497 6.5204 -19.0136 2.1558 -13.7306 -0.0000 0.0000 4.5042 2.7669 7.1958 6.9993 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.1158 -2.9832 -6.4391 2.4768 0.0000 0.0000 -0.1860 0.4249 25.5401 4.4737 0.0000 0.0000 -5.8029 -1.1977 8.6109 0.8429 0.0000 0.0000 -5.0989 2.2417 3.2372 -2.5338 0.0000 -0.0000 - -1.0516 -0.7478 25.0489 -6.6505 1.8938 159.4179 -0.5053 -1.1224 0.5495 -0.3135 -2.7874 0.0507 0.4241 2.6562 10.0012 -0.0512 0.8349 1.4287 -4.9749 4.8650 -11.9553 4.4304 1.0800 -17.2167 -10.3883 6.0757 -8.7692 -4.2382 2.4719 8.0948 0.0000 0.0000 14.7422 -6.3279 1.4525 -10.9938 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.0212 -3.8284 6.4684 -18.9601 2.1599 -13.7886 -0.0000 0.0000 4.4376 2.6849 7.0949 6.8890 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.1965 -3.0386 -6.4902 2.4183 0.0000 0.0000 -0.1313 0.4821 25.5236 4.4497 0.0000 0.0000 -5.9544 -1.2643 8.6476 0.9084 0.0000 0.0000 -5.0932 2.3658 3.1334 -2.5114 0.0000 -0.0000 - -1.0220 -0.7621 25.0485 -6.7355 1.9392 159.5387 -0.4978 -1.1091 0.5420 -0.3145 -2.7664 0.0522 0.3682 2.6245 9.9055 -0.0742 0.8302 1.4096 -4.9445 4.8583 -11.9360 4.5035 1.1034 -17.1648 -10.3341 6.0859 -8.7552 -4.3000 2.5342 8.1642 0.0000 0.0000 14.7737 -6.3047 1.5823 -10.9202 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.9699 -3.9874 6.4321 -18.9420 2.2168 -13.8827 -0.0000 0.0000 4.3845 2.6114 6.9733 6.8289 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.2857 -3.0947 -6.6005 2.3900 0.0000 0.0000 -0.0964 0.5689 25.5046 4.3841 0.0000 0.0000 -6.1604 -1.3466 8.7147 1.0789 0.0000 0.0000 -5.1187 2.5712 2.9454 -2.5611 0.0000 -0.0000 - -0.9922 -0.7767 25.0480 -6.8041 1.9710 159.6959 -0.4802 -1.1119 0.5312 -0.3134 -2.7439 0.0539 0.3281 2.6012 9.8050 -0.0936 0.8306 1.3847 -4.9104 4.8626 -11.9212 4.5401 1.1251 -17.1256 -10.3015 6.1334 -8.7453 -4.3567 2.5349 8.1829 0.0000 0.0000 14.8376 -6.2906 1.6736 -10.8940 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.9280 -4.1263 6.3875 -18.9739 2.3454 -13.9824 -0.0000 0.0000 4.3629 2.6930 6.8544 6.7933 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.3762 -3.1434 -6.8040 2.4172 0.0000 0.0000 -0.0957 0.6218 25.5543 4.3477 0.0000 0.0000 -6.3736 -1.4319 8.8435 1.2938 0.0000 0.0000 -5.1459 2.7377 2.6720 -2.6138 0.0000 -0.0000 - -0.9621 -0.7922 25.0484 -6.8719 2.0001 159.8699 -0.4742 -1.1238 0.5207 -0.3217 -2.7188 0.0555 0.3180 2.5843 9.7065 -0.1019 0.8367 1.3586 -4.8946 4.8734 -11.9115 4.5594 1.1394 -17.0943 -10.2834 6.2028 -8.7354 -4.4132 2.4755 8.1569 0.0000 0.0000 14.9165 -6.2342 1.7090 -10.9399 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -8.8789 -4.2499 6.3372 -19.0223 2.5280 -14.0751 -0.0000 0.0000 4.3840 2.8140 6.8211 6.7051 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.4737 -3.1868 -7.0602 2.4630 0.0000 0.0000 -0.1129 0.6371 25.6572 4.3775 0.0000 0.0000 -6.5636 -1.5086 8.9870 1.4502 0.0000 0.0000 -5.1416 2.7694 2.3752 -2.5714 0.0000 -0.0000 - -0.9316 -0.8086 25.0486 -6.9407 2.0339 160.0466 -0.4773 -1.1220 0.5134 -0.3319 -2.6975 0.0567 0.3261 2.5716 9.6037 -0.1045 0.8426 1.3355 -4.9058 4.8840 -11.9058 4.5656 1.1398 -17.0698 -10.2569 6.2649 -8.7226 -4.4597 2.3904 8.1257 0.0000 0.0000 14.9501 -6.2050 1.6907 -10.9876 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -8.8287 -4.3676 6.2950 -19.0615 2.7369 -14.1479 -0.0000 0.0000 4.4355 2.8285 6.8948 6.5680 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -9.5574 -3.2342 -7.2772 2.4642 0.0000 0.0000 -0.1274 0.6822 25.7177 4.4245 0.0000 0.0000 -6.7187 -1.5761 9.0772 1.5234 0.0000 0.0000 -5.1028 2.7821 2.1311 -2.4934 0.0000 -0.0000 - -0.9006 -0.8251 25.0477 -7.0034 2.0617 160.2177 -0.4652 -1.1124 0.5070 -0.3366 -2.6797 0.0564 0.3266 2.5617 9.5102 -0.1131 0.8499 1.3108 -4.9296 4.8921 -11.9161 4.5613 1.1295 -17.0591 -10.2319 6.3043 -8.7083 -4.5050 2.2997 8.1017 0.0000 0.0000 14.9464 -6.2670 1.6451 -10.9736 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.8103 -4.4767 6.2556 -19.0877 2.9403 -14.1868 -0.0000 0.0000 4.4859 2.8276 6.9894 6.4566 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.6017 -3.2986 -7.4180 2.3956 0.0000 0.0000 -0.1226 0.7843 25.6923 4.4340 0.0000 0.0000 -6.8473 -1.6499 9.1006 1.5670 0.0000 0.0000 -5.0587 2.8973 1.9589 -2.4812 0.0000 -0.0000 - -0.8701 -0.8412 25.0464 -7.0639 2.0875 160.3609 -0.4421 -1.1022 0.5041 -0.3280 -2.6680 0.0580 0.2988 2.5666 9.4416 -0.1307 0.8549 1.2896 -4.9463 4.9024 -11.9402 4.5671 1.1098 -17.0722 -10.2219 6.3151 -8.6960 -4.5523 2.2138 8.0757 0.0000 0.0000 14.9565 -6.3469 1.6303 -10.9200 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.8239 -4.5448 6.2164 -19.0927 3.0846 -14.2102 -0.0000 0.0000 4.5157 2.9451 7.0558 6.3937 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -9.6295 -3.3687 -7.5069 2.3007 0.0000 0.0000 -0.0914 0.8693 25.6402 4.4125 0.0000 0.0000 -6.9705 -1.7285 9.0969 1.6184 0.0000 0.0000 -5.0280 3.0576 1.8317 -2.5532 0.0000 -0.0000 - -0.8404 -0.8571 25.0458 -7.1342 2.1126 160.4620 -0.4310 -1.1035 0.5036 -0.3195 -2.6643 0.0603 0.2662 2.5911 9.4068 -0.1476 0.8662 1.2719 -4.9597 4.9046 -11.9604 4.5951 1.0839 -17.0929 -10.2127 6.2949 -8.6877 -4.5709 2.1408 8.0648 0.0000 0.0000 14.9576 -6.3429 1.6710 -10.8868 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -8.8331 -4.5628 6.1980 -19.0734 3.1380 -14.2543 -0.0000 0.0000 4.5356 3.1202 7.1060 6.3372 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.6675 -3.4392 -7.5796 2.2081 0.0000 0.0000 -0.0201 0.8641 25.6274 4.3753 0.0000 0.0000 -7.1070 -1.8132 9.0931 1.6842 0.0000 0.0000 -5.0104 3.1696 1.7314 -2.6630 0.0000 -0.0000 - -0.8129 -0.8714 25.0456 -7.1821 2.1398 160.5138 -0.4198 -1.1057 0.5050 -0.3171 -2.6650 0.0635 0.2590 2.6209 9.3971 -0.1538 0.8832 1.2602 -4.9742 4.9190 -11.9615 4.6232 1.0472 -17.0878 -10.1827 6.2794 -8.6676 -4.5561 2.0700 8.0809 0.0000 0.0000 14.8972 -6.2881 1.7102 -10.8786 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -8.8208 -4.5484 6.2056 -19.0516 3.1260 -14.3038 -0.0000 0.0000 4.5544 3.2357 7.1008 6.2812 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.6902 -3.4951 -7.6210 2.1288 0.0000 0.0000 0.0575 0.8075 25.6386 4.3310 0.0000 0.0000 -7.2173 -1.8851 9.0985 1.7507 0.0000 0.0000 -4.9936 3.2433 1.6786 -2.7232 0.0000 -0.0000 - -0.7892 -0.8846 25.0451 -7.2203 2.1786 160.5198 -0.4217 -1.1140 0.5068 -0.3197 -2.6711 0.0662 0.2788 2.6571 9.4117 -0.1489 0.9050 1.2514 -4.9800 4.9643 -11.9462 4.6236 1.0112 -17.0502 -10.1521 6.2905 -8.6258 -4.5442 1.9915 8.1000 0.0000 0.0000 14.8257 -6.2797 1.7111 -10.8462 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.8097 -4.5245 6.2130 -19.0348 3.0895 -14.3051 -0.0000 0.0000 4.5587 3.3016 6.9965 6.2616 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.7352 -3.5321 -7.6172 2.1016 0.0000 0.0000 0.0840 0.7831 25.6367 4.3162 0.0000 0.0000 -7.3202 -1.9364 9.1419 1.8283 0.0000 0.0000 -4.9867 3.3188 1.6533 -2.6794 0.0000 -0.0000 - -0.7700 -0.8954 25.0444 -7.2382 2.2146 160.4933 -0.4150 -1.1449 0.5057 -0.3221 -2.6754 0.0668 0.3039 2.6961 9.4507 -0.1370 0.9266 1.2451 -4.9518 5.0502 -11.9304 4.5942 0.9876 -16.9969 -10.1442 6.3314 -8.5727 -4.5489 1.9082 8.0896 0.0000 0.0000 14.8466 -6.3118 1.7339 -10.7966 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.8121 -4.5136 6.2106 -19.0080 3.0857 -14.2470 -0.0000 0.0000 4.5476 3.3801 6.8621 6.2594 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.7807 -3.5589 -7.6134 2.1185 0.0000 0.0000 0.0579 0.7919 25.6569 4.3673 0.0000 0.0000 -7.3915 -1.9732 9.1815 1.9051 0.0000 0.0000 -5.0013 3.3730 1.6519 -2.5956 0.0000 -0.0000 - -0.7545 -0.9022 25.0442 -7.2337 2.2355 160.4578 -0.4012 -1.2029 0.5087 -0.3170 -2.6783 0.0704 0.3294 2.7318 9.4953 -0.1182 0.9520 1.2381 -4.8874 5.1641 -11.9205 4.5422 0.9751 -16.9502 -10.1379 6.3680 -8.5456 -4.5727 1.8565 8.0895 0.0000 0.0000 14.9194 -6.2945 1.8208 -10.7790 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -8.8183 -4.5079 6.2296 -18.9990 3.1382 -14.2044 -0.0000 0.0000 4.5521 3.4561 6.8186 6.2192 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.7799 -3.5845 -7.6149 2.1062 0.0000 0.0000 0.0428 0.7787 25.7044 4.4390 0.0000 0.0000 -7.4090 -2.0017 9.1993 1.9417 0.0000 0.0000 -5.0134 3.3747 1.6551 -2.5637 0.0000 -0.0000 - -0.7429 -0.9058 25.0443 -7.2434 2.2528 160.4459 -0.4147 -1.2658 0.5130 -0.3211 -2.7051 0.0689 0.3730 2.7750 9.5393 -0.0926 0.9833 1.2215 -4.8251 5.2847 -11.9146 4.4859 0.9625 -16.9163 -10.1231 6.3572 -8.5478 -4.6450 1.8711 8.1287 0.0000 0.0000 14.9417 -6.1641 1.8799 -10.7813 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -8.8384 -4.4739 6.2859 -19.0317 3.2083 -14.2308 -0.0000 0.0000 4.5767 3.5019 6.8642 6.1418 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -9.7523 -3.6066 -7.5996 2.0238 0.0000 0.0000 0.0811 0.7362 25.7322 4.4416 0.0000 0.0000 -7.4249 -2.0207 9.2082 1.9416 0.0000 0.0000 -5.0079 3.3386 1.6594 -2.5487 0.0000 -0.0000 - -0.7345 -0.9067 25.0445 -7.2591 2.2755 160.4404 -0.4364 -1.3095 0.5134 -0.3339 -2.7398 0.0672 0.4217 2.8076 9.5760 -0.0702 1.0102 1.2101 -4.7996 5.4012 -11.9147 4.4673 0.9414 -16.8890 -10.1184 6.2943 -8.5502 -4.7847 1.9467 8.1705 0.0000 0.0000 14.9565 -5.9047 1.7435 -10.7187 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.8669 -4.3731 6.3431 -19.0464 3.2043 -14.2855 -0.0000 0.0000 4.5863 3.5424 6.9219 6.0781 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.7281 -3.6144 -7.5547 1.9437 0.0000 0.0000 0.1270 0.7029 25.7244 4.3777 0.0000 0.0000 -7.4234 -2.0209 9.2344 1.8961 0.0000 0.0000 -4.9937 3.3005 1.6699 -2.4798 0.0000 -0.0000 - -0.7279 -0.9072 25.0444 -7.2903 2.3010 160.4080 -0.4609 -1.3300 0.5171 -0.3360 -2.7703 0.0589 0.4462 2.8234 9.6076 -0.0636 1.0220 1.2024 -4.8208 5.4911 -11.9073 4.4874 0.9158 -16.8558 -10.1401 6.2169 -8.5284 -4.9001 2.0363 8.1887 0.0000 0.0000 15.0675 -5.5390 1.3396 -10.5459 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.8785 -4.2491 6.3657 -18.9692 3.1102 -14.2698 -0.0000 0.0000 4.5625 3.5870 6.9751 6.0456 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -9.7603 -3.6217 -7.5109 1.9420 0.0000 0.0000 0.1295 0.7026 25.7268 4.3409 0.0000 0.0000 -7.4172 -2.0201 9.2158 1.8266 0.0000 0.0000 -4.9881 3.2906 1.7285 -2.4189 0.0000 -0.0000 - -0.7218 -0.9070 25.0436 -7.3077 2.3025 160.3672 -0.4513 -1.3493 0.5161 -0.3312 -2.7736 0.0595 0.4599 2.8046 9.6074 -0.0724 1.0183 1.2052 -4.8612 5.5607 -11.8944 4.4602 0.8856 -16.8105 -10.1475 6.2080 -8.4876 -4.8689 2.0788 8.1906 0.0000 0.0000 15.2136 -5.1670 0.7951 -10.3205 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.8744 -4.2079 6.3279 -18.8619 3.0652 -14.1260 -0.0000 0.0000 4.5382 3.6105 7.0151 6.0184 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.7784 -3.6491 -7.4928 1.9549 0.0000 0.0000 0.1029 0.7332 25.7503 4.3738 0.0000 0.0000 -7.3926 -2.0411 9.1499 1.7721 0.0000 0.0000 -4.9731 3.3408 1.8085 -2.4545 0.0000 -0.0000 - -0.7177 -0.9060 25.0430 -7.3148 2.2955 160.3611 -0.4230 -1.3656 0.5151 -0.3169 -2.7695 0.0588 0.4714 2.7675 9.5920 -0.0859 1.0138 1.2063 -4.8949 5.6237 -11.8801 4.3200 0.8710 -16.7669 -10.0916 6.2595 -8.4433 -4.7519 2.0972 8.1984 0.0000 0.0000 15.2381 -4.9237 0.3735 -10.1080 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.8629 -4.2542 6.2378 -18.8386 3.1376 -13.9158 -0.0000 0.0000 4.5221 3.6085 7.0192 5.9918 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.7799 -3.6719 -7.4743 1.9617 0.0000 0.0000 0.0669 0.7729 25.7378 4.4258 0.0000 0.0000 -7.3755 -2.0651 9.2294 1.7423 0.0000 0.0000 -4.9205 3.4504 1.7408 -2.5246 0.0000 -0.0000 - -0.7170 -0.9066 25.0438 -7.3350 2.3047 160.4151 -0.3773 -1.3836 0.5027 -0.3146 -2.7541 0.0611 0.4747 2.7198 9.5719 -0.1013 1.0158 1.2012 -4.9355 5.6896 -11.8572 4.1428 0.9001 -16.7313 -9.9965 6.2843 -8.4044 -4.7825 2.1517 8.1920 0.0000 0.0000 15.2161 -4.8478 0.2767 -9.9467 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.8061 -4.2876 6.1292 -18.8243 3.2350 -13.7329 -0.0000 0.0000 4.4487 3.5947 6.9427 5.9983 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -9.8602 -3.6602 -7.4483 2.0785 0.0000 0.0000 0.0040 0.7896 25.6468 4.4480 0.0000 0.0000 -7.4103 -2.0729 9.5775 1.7508 0.0000 0.0000 -4.8718 3.5687 1.3736 -2.5286 0.0000 -0.0000 - -0.7203 -0.9121 25.0442 -7.3894 2.3315 160.5878 -0.3389 -1.4406 0.4797 -0.3113 -2.7150 0.0619 0.4879 2.6984 9.4917 -0.1317 1.0218 1.1756 -5.0171 5.7585 -11.8077 4.0366 0.9523 -16.6702 -9.9266 6.2459 -8.3808 -5.0845 2.2228 8.1427 0.0000 0.0000 15.3932 -4.8609 0.4852 -9.8259 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.6321 -4.2451 6.0418 -18.6475 3.2717 -13.6246 -0.0000 0.0000 4.2906 3.5369 6.7128 6.0297 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -10.0794 -3.6207 -7.2580 2.3662 0.0000 0.0000 -0.1291 0.8295 25.2454 4.4693 0.0000 0.0000 -7.5550 -2.0666 9.9789 1.8455 0.0000 0.0000 -4.8662 3.6649 0.7862 -2.4918 0.0000 -0.0000 - -0.7268 -0.9173 25.0417 -7.3286 2.3195 161.0389 -0.2068 -1.5741 0.4390 -0.2831 -2.6398 0.0601 0.5695 2.7202 9.2494 -0.1706 1.0468 1.0928 -5.1263 5.8628 -11.7425 3.9808 0.9293 -16.5462 -9.8730 6.1879 -8.3455 -5.5121 2.2708 7.9755 0.0000 0.0000 15.8502 -4.9155 0.8543 -9.6610 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.3665 -4.1547 5.9364 -18.2815 3.3259 -13.5481 -0.0000 0.0000 4.0893 3.4208 6.2665 6.0040 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -10.1879 -3.5597 -6.5481 2.7026 0.0000 0.0000 -0.4005 1.0561 24.0304 4.5609 0.0000 0.0000 -7.6408 -2.0221 10.1616 1.9909 0.0000 0.0000 -4.8320 3.8078 0.1116 -2.4616 0.0000 -0.0000 - -0.7388 -0.9225 25.0367 -7.1581 2.3121 161.8998 -0.0084 -1.7533 0.3758 -0.2427 -2.5346 0.0489 0.7453 2.7675 8.8047 -0.2065 1.1120 0.9314 -5.2226 6.0201 -11.6917 3.9028 0.7577 -16.3918 -9.7734 6.0303 -8.2467 -5.8801 2.3994 7.6455 0.0000 0.0000 16.4254 -4.9891 1.3744 -9.3531 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.1380 -3.9203 5.7357 -17.8494 3.4020 -13.4927 -0.0000 0.0000 3.8869 3.3049 5.7156 5.8270 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -10.2925 -3.4157 -5.2214 3.2897 0.0000 0.0000 -0.9503 1.5884 21.8063 4.7536 0.0000 0.0000 -7.6337 -1.8717 10.2153 2.0468 0.0000 0.0000 -4.6627 4.0872 -0.7826 -2.3977 0.0000 -0.0000 - -0.7527 -0.9359 25.0311 -6.9950 2.3827 163.0990 0.2120 -1.8729 0.2888 -0.1957 -2.3616 0.0314 0.9099 2.7190 8.1957 -0.2688 1.2147 0.7124 -5.2968 6.1554 -11.6470 3.8674 0.4646 -16.2687 -9.5981 5.6245 -8.0281 -6.1779 2.6590 7.1999 0.0000 0.0000 17.0094 -4.9842 2.1181 -8.9280 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.0253 -3.4167 5.3911 -17.4380 3.4270 -13.3778 -0.0000 0.0000 3.6577 3.1523 5.1743 5.4995 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.8260 -3.1448 -3.9058 4.6863 0.0000 0.0000 -1.8904 2.3029 19.2759 4.9588 0.0000 0.0000 -7.5515 -1.5912 10.2405 1.7866 0.0000 0.0000 -4.3184 4.4892 -1.9796 -2.3062 0.0000 -0.0000 - -0.7563 -0.9649 25.0224 -6.8758 2.5467 164.4678 0.4845 -1.7957 0.1925 -0.0739 -2.1281 0.0071 0.9344 2.5388 7.4520 -0.4271 1.2962 0.4804 -5.4107 6.1320 -11.5528 3.9860 0.1128 -16.1625 -9.3360 5.0213 -7.6909 -6.4322 2.7631 6.7146 0.0000 0.0000 17.6386 -4.8302 2.9674 -8.4728 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.9692 -2.7868 4.8843 -17.0812 3.5709 -12.9963 -0.0000 0.0000 3.3958 2.7379 4.3968 5.0958 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -11.9140 -2.7627 -3.3385 7.0096 0.0000 0.0000 -3.1232 2.9376 17.3227 5.0170 0.0000 0.0000 -7.4027 -1.2157 9.9239 1.1673 0.0000 0.0000 -3.7878 4.8670 -3.0636 -2.2950 0.0000 -0.0000 - -0.7385 -1.0043 25.0084 -6.5476 2.7196 165.9757 1.0302 -1.5261 0.0856 0.1760 -1.8251 -0.0140 0.8803 2.2783 6.5625 -0.6991 1.3292 0.2433 -5.6611 5.8934 -11.3397 4.1808 -0.2718 -15.9514 -8.9163 4.4485 -7.2967 -6.5558 2.3143 6.1534 0.0000 0.0000 18.3297 -4.6520 3.7169 -7.9664 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8202 -2.3298 4.2128 -16.7338 4.1665 -12.2639 -0.0000 0.0000 3.1637 2.0373 3.1349 4.6354 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -12.8971 -2.2959 -3.5208 9.5207 0.0000 0.0000 -4.3340 3.3654 15.9755 4.8995 0.0000 0.0000 -7.0821 -0.8068 9.1660 0.5535 0.0000 0.0000 -3.1316 5.0695 -3.7763 -2.3954 0.0000 -0.0000 - -0.7062 -1.0604 24.9931 -6.0743 2.9414 167.6752 1.7627 -1.1966 -0.0420 0.4607 -1.5109 -0.0317 0.9518 2.1207 5.5583 -0.9996 1.3453 -0.0181 -6.1656 5.4880 -10.8997 4.2263 -0.6476 -15.4832 -8.2741 3.8885 -6.9012 -6.5256 1.3457 5.4859 0.0000 0.0000 18.9866 -4.6148 4.3203 -7.4100 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -7.4620 -2.0671 3.4539 -16.1888 5.1892 -11.4564 -0.0000 0.0000 3.0089 1.5173 1.8861 4.1468 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -13.6036 -1.7503 -3.8249 11.7148 0.0000 0.0000 -5.3256 3.5474 14.6050 4.7957 0.0000 0.0000 -7.0443 -0.3994 8.7386 0.6904 0.0000 0.0000 -2.6620 5.1331 -4.9069 -2.5350 0.0000 -0.0000 - -0.6756 -1.1504 24.9759 -5.8741 3.3125 169.4645 2.3100 -0.9364 -0.1830 0.6390 -1.2378 -0.0489 1.2720 2.1291 4.5351 -1.2353 1.4221 -0.3210 -7.0048 5.0193 -10.0722 4.0562 -0.9555 -14.6515 -7.4547 3.1849 -6.4192 -6.4875 0.1424 4.8208 0.0000 0.0000 19.4021 -4.7531 4.7264 -6.9479 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.8656 -1.7803 2.8294 -15.4880 6.3569 -11.0036 -0.0000 0.0000 2.9453 1.4501 1.4953 3.7797 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -14.6328 -1.1538 -3.7331 13.8074 0.0000 0.0000 -6.1267 3.4270 12.8476 4.8484 0.0000 0.0000 -8.0420 -0.0455 9.4311 2.1886 0.0000 0.0000 -2.8431 5.3225 -7.3564 -2.7001 0.0000 -0.0000 - -0.6512 -1.2733 24.9479 -6.1010 3.6553 171.1333 2.5419 -0.9174 -0.3152 0.6916 -1.0767 -0.0769 1.8081 2.2258 3.6426 -1.3852 1.6222 -0.6649 -8.1735 4.6383 -8.8050 3.8170 -1.2224 -13.4426 -6.6407 2.4569 -5.6484 -6.5642 -1.2508 4.1697 0.0000 0.0000 19.3572 -5.2907 4.7375 -6.4255 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.1465 -1.3395 2.4986 -15.3072 7.6134 -11.0517 -0.0000 0.0000 3.0022 1.1116 1.7376 3.3491 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -16.1489 -0.6871 -3.5551 15.8589 0.0000 0.0000 -6.7643 3.1722 11.1537 4.9165 0.0000 0.0000 -10.2459 -0.0004 10.9228 5.1867 0.0000 0.0000 -3.8733 5.8037 -10.2221 -2.8945 0.0000 -0.0000 - -0.6271 -1.4029 24.9057 -6.4526 3.6424 172.5528 2.6488 -1.3013 -0.3806 0.7139 -1.0924 -0.1179 2.4845 2.3254 3.0044 -1.4792 1.9090 -0.9973 -9.5666 4.5385 -7.2802 3.6130 -1.5308 -11.9523 -6.0503 1.9542 -4.5253 -6.9478 -2.8669 3.2758 0.0000 0.0000 19.0493 -6.6833 4.6275 -5.0611 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.5141 -0.7442 2.3287 -16.0286 9.0714 -11.4299 -0.0000 0.0000 3.1733 -0.3316 1.1476 2.0513 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -17.5010 -0.5880 -3.7690 17.3924 0.0000 0.0000 -7.1605 3.1197 9.9708 4.8206 0.0000 0.0000 -13.1405 -0.5548 12.4560 9.4487 0.0000 0.0000 -5.6784 6.1375 -11.1497 -2.9525 0.0000 -0.0000 - -0.5960 -1.5079 24.8621 -6.5878 3.2090 173.6975 2.8200 -1.9752 -0.3451 0.7552 -1.2517 -0.1596 3.2107 2.3467 2.6182 -1.5378 2.1679 -1.2307 -10.9700 4.7045 -5.7538 3.4146 -1.8147 -10.2894 -5.7097 1.4470 -3.3063 -8.1580 -4.2430 2.0104 0.0000 0.0000 19.6295 -8.7329 5.6810 -2.2914 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -5.0556 -0.1315 2.0449 -16.6188 10.4960 -11.9401 -0.0000 0.0000 3.2741 -2.3239 -0.9938 -0.8251 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.1088 -0.9212 -4.1110 18.0950 0.0000 0.0000 -7.2940 3.2043 9.0306 4.6685 0.0000 0.0000 -16.0296 -1.8230 13.8744 14.3660 0.0000 0.0000 -8.0853 5.4144 -8.9409 -2.6704 0.0000 -0.0000 - -0.5607 -1.5704 24.8349 -6.4920 2.7526 174.4743 3.0003 -2.4521 -0.2698 0.7871 -1.3913 -0.1844 3.8220 2.2363 2.3391 -1.5736 2.2787 -1.2970 -12.1097 4.7783 -4.3286 3.2200 -1.8672 -8.4445 -5.3816 0.4151 -2.3569 -10.5964 -4.6968 0.8689 0.0000 0.0000 22.8130 -10.3889 9.0125 1.5120 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7008 0.2176 1.5694 -15.8156 11.2384 -12.3971 -0.0000 0.0000 3.0828 -3.8479 -3.7987 -4.4909 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -18.1709 -1.3650 -3.9746 18.3375 0.0000 0.0000 -7.3113 3.0152 7.9908 4.6560 0.0000 0.0000 -18.3536 -3.6386 15.2955 18.7146 0.0000 0.0000 -10.1675 3.1714 -5.0432 -2.2136 0.0000 -0.0000 - -0.5379 -1.5832 24.8310 -6.2556 2.7587 174.6715 3.1018 -2.3539 -0.2474 0.7972 -1.3309 -0.1785 4.1595 2.0400 2.0807 -1.6120 2.2062 -1.2195 -12.7913 4.4868 -2.9503 3.1353 -1.6759 -6.3956 -4.8417 -0.9724 -1.7590 -13.8963 -4.3687 0.6283 0.0000 0.0000 29.4406 -10.6536 13.5564 5.4099 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.4264 0.1144 1.0538 -14.2597 10.9090 -12.4076 -0.0000 0.0000 2.6248 -4.7868 -6.2494 -6.9108 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -18.1181 -1.4150 -3.4425 18.6698 0.0000 0.0000 -7.3995 2.5989 7.2598 4.6855 0.0000 0.0000 -19.5633 -5.6696 16.7575 21.0846 0.0000 0.0000 -10.6071 0.1889 -2.1690 -2.1553 0.0000 -0.0000 - -0.5481 -1.5465 24.8403 -5.8812 3.3043 174.1277 3.1308 -1.8734 -0.2685 0.8112 -1.0923 -0.1379 4.2149 1.9543 2.0434 -1.6624 2.0418 -1.0566 -12.9857 3.9989 -1.5962 3.2171 -1.5056 -4.3333 -4.1044 -1.7356 -1.3755 -17.0251 -4.1213 1.4732 -0.0000 0.0000 38.6737 -9.7196 16.7507 8.5654 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.2946 -0.3800 0.6184 -13.7501 9.8128 -11.8098 -0.0000 0.0000 2.1605 -5.6312 -8.1631 -7.3122 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -18.0775 -0.9091 -3.0122 19.2749 0.0000 0.0000 -7.6450 2.3748 7.4586 4.5744 0.0000 0.0000 -19.3570 -7.6957 18.0690 20.9060 0.0000 0.0000 -9.2304 -2.2089 -1.3461 -2.6974 0.0000 -0.0000 - -0.5961 -1.4702 24.8499 -5.3659 3.9853 172.9280 3.1407 -1.5950 -0.2522 0.8333 -0.8295 -0.0748 4.1093 2.0866 2.5772 -1.6977 1.9665 -0.8458 -12.7992 3.6194 -0.3461 3.3322 -1.5380 -2.5815 -3.4604 -1.1345 -1.0522 -19.3578 -4.4088 2.6780 -0.0000 0.0001 49.3015 -9.3789 17.6336 11.0579 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3552 -1.1753 0.3187 -14.5304 8.4906 -11.2669 -0.0000 0.0000 1.8968 -6.2105 -9.9548 -6.6272 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -17.9676 -0.2127 -2.6082 20.0452 0.0000 0.0000 -8.0610 2.0407 8.4179 4.5320 0.0000 0.0000 -18.0704 -9.9019 18.5189 18.9324 0.0000 0.0000 -6.9662 -3.2905 -1.5407 -3.2114 0.0000 -0.0000 - -0.6681 -1.3756 24.8563 -4.8832 4.3963 171.4374 3.1298 -1.7817 -0.1686 0.8429 -0.6871 -0.0001 3.8875 2.3602 3.7016 -1.6947 1.9845 -0.5705 -12.3277 3.4862 0.6832 3.2711 -1.7105 -1.3126 -3.2437 0.6809 -0.8129 -21.1464 -5.0802 3.7824 -0.0000 0.0001 60.8206 -11.1328 17.0791 13.1848 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.6290 -2.3051 0.2751 -15.3009 7.3435 -11.7176 -0.0000 0.0000 2.0587 -5.9466 -11.3483 -5.6909 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -17.8604 0.2686 -1.8805 20.8852 0.0000 0.0000 -8.5854 0.6592 9.5082 4.9520 0.0000 0.0000 -16.5225 -12.7658 17.4341 16.5443 0.0000 0.0000 -4.4265 -3.0545 -2.0017 -3.1839 0.0000 -0.0000 - -0.7532 -1.2751 24.8620 -4.4843 4.5633 170.1342 3.1845 -2.1381 -0.0596 0.8578 -0.6093 0.0685 3.4434 2.5845 5.0734 -1.6672 1.9566 -0.2469 -11.5558 3.4795 1.3847 3.0364 -1.8519 -0.5095 -3.5831 3.2078 -0.7177 -22.6456 -5.9686 5.1899 -0.0000 0.0001 72.5808 -14.0867 16.1725 14.7237 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.1313 -3.9805 0.5292 -15.6944 6.6601 -13.4644 -0.0000 0.0000 2.8838 -5.1519 -11.7945 -4.5688 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -17.7871 0.6278 -1.0150 21.7934 0.0000 0.0000 -9.1400 -1.8830 10.4493 5.7443 0.0000 0.0000 -15.1613 -16.3635 14.9442 14.4874 0.0000 0.0000 -0.8404 -1.9562 -3.1997 -3.0579 0.0000 -0.0000 - -0.8600 -1.1675 24.8614 -4.0761 4.8142 169.3319 3.3359 -2.3073 0.0197 0.9197 -0.4104 0.1466 2.7319 2.7014 6.3923 -1.6472 1.8041 0.1042 -10.4921 3.4637 1.6666 2.9160 -1.8778 -0.1567 -4.3724 6.3242 -0.6608 -23.8611 -7.1027 7.1990 -0.0000 0.0001 83.4286 -16.0539 15.2033 15.4337 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.7230 -6.1673 0.7232 -16.5062 6.1768 -16.0637 -0.0000 0.0000 4.0834 -4.6161 -12.1220 -3.3888 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -17.8330 1.2450 -0.3291 22.9878 0.0000 0.0000 -9.8066 -4.4701 11.1027 6.4182 0.0000 0.0000 -14.1187 -20.1940 11.9243 12.8911 0.0000 0.0000 4.7293 -0.6361 -5.1669 -3.3960 0.0000 -0.0000 - -1.0120 -1.0458 24.8440 -3.5180 5.4801 168.9360 3.5263 -2.1420 0.0559 1.0162 -0.0573 0.2411 1.9839 2.8466 7.6936 -1.6253 1.6090 0.4690 -9.3325 3.5192 1.5640 3.1725 -1.8500 -0.2315 -5.3486 10.0493 -0.4062 -24.9593 -8.3691 9.5477 -0.0000 0.0001 92.4711 -16.7138 13.8672 15.3439 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.0776 -8.3685 0.4664 -17.6467 4.9168 -18.8516 -0.0000 0.0000 4.7632 -4.7031 -13.6527 -2.7199 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -18.1745 2.3911 0.4643 24.8872 0.0000 0.0000 -10.8369 -6.1847 11.1951 6.7513 0.0000 0.0000 -13.3508 -23.6373 9.7586 11.9184 0.0000 0.0000 11.0736 0.2626 -6.7690 -3.9515 0.0000 -0.0000 - -1.2236 -0.9099 24.7973 -2.8069 6.5551 168.6555 3.6454 -1.7382 0.0493 1.0849 0.3205 0.3467 1.5183 3.0975 9.0265 -1.5431 1.5292 0.7802 -8.3179 3.7137 1.3396 3.7506 -1.8487 -0.5677 -6.1664 13.9203 0.0218 -26.2181 -9.4918 12.4159 -0.0000 0.0001 99.1194 -17.4962 12.3747 14.8852 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -5.9938 -10.3414 0.0871 -18.3867 2.3667 -21.5395 -0.0000 0.0000 4.5415 -5.5406 -15.8740 -2.8197 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -18.9240 4.0156 1.5902 27.6452 0.0000 0.0000 -12.3063 -7.2841 10.8946 6.9028 0.0000 0.0000 -12.7005 -26.5257 9.2864 11.7229 0.0000 0.0000 15.3672 0.4423 -7.1078 -4.0922 0.0000 -0.0000 - -1.4899 -0.7614 24.7113 -1.9940 7.6139 168.4542 3.7112 -1.3921 0.0038 1.0999 0.5644 0.4243 1.4025 3.4138 10.1849 -1.3725 1.6189 0.9440 -7.4746 3.9485 1.2649 4.4069 -1.9062 -0.9460 -6.6649 17.2994 0.2738 -27.4956 -10.5615 16.3439 -0.0001 0.0001 102.9750 -18.6279 11.4453 14.6491 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.6402 -12.3346 0.3250 -19.1760 -0.4861 -24.3459 -0.0000 0.0000 4.1275 -6.9105 -17.5612 -2.8833 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -19.8381 5.8538 2.4579 30.8936 0.0000 0.0000 -13.9935 -8.4562 10.8895 7.0716 0.0000 0.0000 -11.9663 -29.0896 9.8388 11.9142 0.0000 0.0000 16.7077 -0.1720 -6.6749 -3.9041 0.0000 -0.0000 - -1.8038 -0.5976 24.5901 -1.1436 8.3684 168.5545 3.7745 -1.2623 -0.0588 1.0869 0.7015 0.4605 1.4662 3.6455 10.9257 -1.1519 1.7924 0.9529 -6.6450 4.1687 1.3285 5.0161 -2.0345 -1.2563 -7.0191 19.8110 0.2234 -28.2603 -11.7955 21.0693 -0.0001 0.0001 104.4240 -18.8910 11.3241 14.6505 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -5.4283 -14.3747 1.2248 -20.7843 -2.3343 -27.5002 -0.0000 0.0000 4.1259 -7.8438 -18.6953 -2.0840 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -20.5892 7.7932 2.5960 34.1481 0.0000 0.0000 -15.6793 -9.9642 11.3925 7.2971 0.0000 0.0000 -11.2324 -31.3512 10.2760 11.9674 0.0000 0.0000 17.1911 -1.0539 -6.4292 -3.9165 0.0000 -0.0000 - -2.1554 -0.4146 24.4519 -0.3420 8.8188 169.0611 3.7879 -1.2546 -0.1169 1.0689 0.7716 0.4643 1.5537 3.7280 11.2577 -0.9306 1.9164 0.9140 -5.7183 4.3598 1.3727 5.6126 -2.1997 -1.4677 -7.5219 21.2566 0.0998 -28.1135 -13.0964 25.6424 -0.0001 0.0001 104.6960 -18.0582 11.5188 14.4758 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -5.6127 -16.1895 2.0475 -22.5921 -3.1614 -30.5219 -0.0000 0.0000 4.3388 -7.6796 -19.5221 -0.9586 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -20.9990 9.6592 2.5106 37.0513 0.0000 0.0000 -17.3130 -11.6029 11.6953 7.5237 0.0000 0.0000 -10.7598 -33.2226 10.3641 11.8696 0.0000 0.0000 18.7281 -1.0995 -6.5917 -4.1084 0.0000 -0.0000 - -2.5434 -0.2174 24.3066 0.3085 9.0174 169.8404 3.6832 -1.3156 -0.1686 1.0422 0.8445 0.4565 1.6284 3.6350 11.2799 -0.7383 1.9392 0.9009 -4.7426 4.4583 1.3969 6.2241 -2.3438 -1.5095 -8.2220 21.6912 0.0566 -27.0965 -14.2529 29.3843 -0.0001 0.0001 104.9928 -17.1234 11.4660 14.2184 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.0040 -17.6355 2.4443 -23.5505 -3.7488 -32.7944 -0.0000 0.0000 4.4589 -6.9252 -19.8277 -0.4503 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -21.1361 11.1916 2.8559 39.4903 0.0000 0.0000 -18.9670 -13.0269 11.1598 7.6875 0.0000 0.0000 -10.6222 -34.6712 10.4634 11.8143 0.0000 0.0000 20.8141 -0.3003 -7.0210 -4.0699 0.0000 -0.0000 - -2.9765 -0.0213 24.1516 0.7989 9.0338 170.7792 3.5171 -1.3916 -0.2099 1.0175 0.8942 0.4304 1.7063 3.4600 11.0318 -0.5780 1.8825 0.8766 -3.8894 4.3360 1.4920 6.8080 -2.4422 -1.3736 -8.9625 21.4654 0.0387 -25.6018 -15.0704 31.9599 -0.0001 0.0001 105.9703 -16.4109 11.0905 14.2444 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.2961 -18.7523 2.6983 -23.7451 -4.3600 -34.3526 -0.0000 0.0000 4.4891 -6.1870 -19.8027 -0.2150 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -21.1465 12.4763 3.5120 41.5643 0.0000 0.0000 -20.6132 -14.1881 10.0380 7.7694 0.0000 0.0000 -10.7941 -35.4938 10.4323 11.9192 0.0000 0.0000 22.1111 0.0126 -7.6856 -3.8457 0.0000 -0.0000 - -3.4695 0.1715 23.9897 1.3167 9.0600 171.7654 3.4265 -1.3616 -0.2263 0.9956 0.8674 0.4027 1.8522 3.3310 10.6107 -0.4125 1.7891 0.8291 -3.2264 4.0052 1.6114 7.3483 -2.5011 -1.1841 -9.5762 21.0143 -0.0109 -24.1148 -15.4067 33.1864 -0.0001 0.0001 107.7472 -15.3024 10.6071 14.3574 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -6.4341 -19.5435 2.8799 -23.7443 -4.8210 -35.3945 -0.0000 0.0000 4.4674 -5.6345 -19.7569 0.2652 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -20.9822 13.9599 4.1273 43.3766 0.0000 0.0000 -22.1291 -15.5339 8.9943 7.8234 0.0000 0.0000 -11.0094 -35.3517 10.0263 12.2140 0.0000 0.0000 22.5279 -0.3978 -8.1525 -3.8006 0.0000 -0.0000 - -4.0435 0.3805 23.8278 1.9288 9.1848 172.5032 3.3191 -1.3276 -0.2306 0.9381 0.7737 0.3891 2.1051 3.2662 10.2684 -0.1919 1.6940 0.8168 -2.5489 3.7294 1.6534 7.8962 -2.5348 -1.0244 -9.9128 20.6597 -0.0747 -22.8812 -15.3962 33.3551 -0.0001 0.0001 109.9163 -13.7524 10.1798 14.1607 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.5094 -20.0372 2.7880 -23.5719 -4.8838 -35.7760 -0.0000 0.0000 4.3599 -5.3645 -19.5004 0.5574 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -20.6157 15.7966 4.8326 44.8459 0.0000 0.0000 -23.4091 -17.3047 8.2779 7.8549 0.0000 0.0000 -10.7014 -34.3437 9.8177 12.5099 0.0000 0.0000 22.5234 -0.0668 -8.0152 -3.8326 0.0000 -0.0000 - -4.7237 0.6211 23.6668 2.5151 9.4007 172.7434 3.0405 -1.4149 -0.2670 0.8154 0.6453 0.3825 2.3564 3.1719 10.0734 0.0676 1.6300 0.8408 -1.6152 3.6805 1.6365 8.4752 -2.5620 -0.8586 -9.9402 20.4812 -0.1939 -21.7245 -15.4118 33.3196 -0.0001 0.0001 111.7964 -12.5013 9.9524 13.8375 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.5629 -20.2301 2.6708 -23.2774 -4.1818 -35.7093 -0.0000 0.0000 4.3399 -5.2723 -19.1002 0.4593 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -20.2032 17.9667 5.7519 45.7929 0.0000 0.0000 -24.2908 -18.9450 7.8956 7.7240 0.0000 0.0000 -9.4845 -32.6865 10.2517 12.3357 0.0000 0.0000 22.3206 1.1400 -8.1064 -3.7073 0.0000 -0.0000 - -5.5163 0.8788 23.4936 2.9117 9.6173 172.5371 2.6312 -1.5800 -0.3286 0.6602 0.4084 0.3609 2.4284 3.0187 9.8701 0.2798 1.5867 0.8310 -0.5194 3.6551 1.6265 9.0858 -2.5777 -0.7433 -9.8703 20.2279 -0.3950 -20.4510 -15.5898 33.6030 -0.0001 0.0001 113.1233 -11.9173 10.0654 13.8979 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.6324 -19.9149 3.0081 -23.1448 -2.8031 -35.8005 -0.0000 0.0000 4.4782 -5.1216 -19.4852 0.5632 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -20.0126 20.4761 6.5815 46.1910 0.0000 0.0000 -24.5745 -20.0188 8.0400 7.3557 0.0000 0.0000 -7.8053 -30.3855 10.5496 11.5568 0.0000 0.0000 23.0333 1.2671 -9.4218 -3.6229 0.0000 -0.0000 - -6.4055 1.1332 23.2781 3.1379 9.6966 171.8012 2.2241 -1.7263 -0.3411 0.5339 -0.0355 0.3250 2.3581 2.7929 9.7333 0.3958 1.4867 0.8285 0.3718 3.4199 1.6026 9.8209 -2.5517 -0.8756 -9.9725 19.5182 -0.4798 -19.3257 -15.7960 33.8214 -0.0001 0.0001 114.3279 -11.7831 10.3556 14.3970 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.7955 -18.8061 3.5277 -22.6101 -1.8713 -35.7648 -0.0000 0.0000 4.4312 -5.0448 -20.8782 0.7692 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -20.2962 23.1580 7.4494 46.3163 0.0000 0.0000 -24.3447 -21.2076 8.8645 6.9134 0.0000 0.0000 -6.1391 -27.7021 10.3324 10.8155 0.0000 0.0000 25.5359 0.5146 -10.6930 -3.6656 0.0000 -0.0000 - -7.3597 1.3779 22.9791 3.3254 9.3381 170.1407 1.9092 -1.9307 -0.2745 0.4321 -0.7239 0.2813 2.4019 2.3495 9.9120 0.4470 1.2384 1.0099 0.7500 2.9473 1.4841 10.8094 -2.5017 -1.3452 -10.2077 18.1345 -0.2789 -18.8414 -16.1158 33.6380 -0.0001 0.0001 115.8383 -11.8942 10.3328 14.9317 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.0704 -16.9383 3.4048 -20.8694 -2.1773 -34.3933 -0.0000 0.0000 4.1305 -5.1559 -21.2942 0.5701 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -21.2733 25.3361 9.2467 46.5416 0.0000 0.0000 -23.9884 -23.1522 9.9766 6.5172 0.0000 0.0000 -4.2172 -25.7378 11.2481 11.1855 0.0000 0.0000 27.1980 3.4281 -9.8321 -3.5334 0.0000 -0.0000 - -8.3406 1.6027 22.5792 3.5523 8.4032 167.6442 1.8100 -2.1315 -0.1559 0.3765 -1.5199 0.2198 2.7050 1.4940 10.1991 0.4262 0.7737 1.4346 0.5536 1.9747 1.1499 12.0090 -2.4522 -2.1666 -10.2741 16.0719 -0.1588 -19.0366 -16.6238 33.7023 -0.0001 0.0001 117.4659 -12.0282 9.7386 15.2871 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.4782 -14.7515 2.5665 -18.9725 -2.2690 -31.5724 -0.0000 0.0000 4.2932 -4.4865 -18.7266 1.2409 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -22.8546 26.5803 12.1755 46.9558 0.0000 0.0000 -23.7662 -25.0154 10.8108 5.8977 0.0000 0.0000 -1.5174 -25.2515 14.2261 13.0005 0.0000 0.0000 22.4602 12.7923 -7.0460 -2.8365 0.0000 -0.0000 - -9.3045 1.7802 22.1351 3.5992 7.3107 165.4099 1.8200 -2.0261 -0.0632 0.3952 -2.0708 0.1464 3.0827 0.3117 10.0393 0.2847 0.0314 1.9924 0.0594 -0.1415 0.4018 13.2823 -2.2476 -3.5747 -10.1098 13.4306 -0.8094 -19.3282 -16.6091 34.8453 -0.0001 0.0001 118.8726 -11.7366 8.9990 15.7307 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.0940 -12.6140 1.7893 -19.5043 -0.2691 -29.1109 -0.0000 0.0000 5.4486 -2.6019 -13.5495 4.1066 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -24.5873 27.4820 14.9539 47.1371 0.0000 0.0000 -23.4805 -25.6778 11.2521 4.8357 0.0000 0.0000 1.6220 -25.2891 17.5808 14.5587 0.0000 0.0000 10.7130 23.7217 -3.8509 0.0718 0.0000 0.0000 - -10.1573 1.9046 21.8365 3.4467 7.2103 164.2926 1.4266 -0.7374 0.0824 0.3571 -2.2211 0.0930 3.5622 -0.8633 9.3349 0.1866 -0.9074 2.5374 -0.3772 -3.5433 -0.7900 14.5121 -1.6903 -5.7373 -10.1189 9.7745 -2.4868 -19.4385 -14.4587 37.1564 -0.0001 0.0001 120.3222 -11.0054 8.6555 16.3833 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.9389 -9.8567 1.6733 -22.7169 2.5587 -28.7479 -0.0000 0.0000 7.0957 -0.9855 -8.5164 7.5080 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -25.6790 29.2534 16.8077 45.9548 0.0000 0.0000 -22.6259 -25.5588 11.2750 3.7109 0.0000 0.0000 4.2671 -23.7231 18.8414 13.4940 0.0000 0.0000 -0.6462 30.2930 -0.8218 3.6797 0.0000 0.0000 - -10.7954 2.0155 21.8415 2.9877 8.2204 163.9034 0.0838 1.3396 0.4112 -0.0145 -2.0677 0.0641 4.3640 -1.8569 8.6313 0.3554 -1.6376 2.9348 -0.3352 -7.1160 -1.8861 15.7979 -0.8481 -8.1877 -10.7589 6.0683 -4.0097 -19.5618 -10.7624 38.8747 -0.0001 0.0001 122.6360 -10.3750 8.3570 16.6566 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.8452 -6.3176 1.8637 -24.8807 3.7679 -29.7046 -0.0000 0.0000 7.7183 0.1554 -5.8476 9.0759 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -25.4825 31.5762 18.0758 42.3787 0.0000 0.0000 -20.9575 -25.8897 10.5595 3.1472 0.0000 0.0000 6.4214 -20.3032 17.4807 9.1249 0.0000 0.0000 -6.1958 31.4433 2.7847 4.6858 0.0000 0.0000 - -11.1924 2.1093 22.0595 1.4560 8.7239 163.7865 -2.0537 2.0678 0.6581 -0.8356 -1.8565 0.0339 5.0562 -2.6472 8.3201 0.6507 -1.6605 3.0111 0.4584 -9.3817 -2.2877 16.9727 -0.1679 -9.9734 -11.5183 4.5871 -4.1511 -19.8752 -8.5738 38.1908 -0.0001 0.0001 125.7067 -10.1446 7.5189 15.9611 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.5108 -3.5376 1.5964 -24.3031 2.7325 -29.5932 -0.0000 0.0000 6.8148 1.0849 -4.9943 8.6815 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -24.2734 32.5342 18.4818 36.8271 0.0000 0.0000 -18.7414 -26.6013 9.0397 3.1406 0.0000 0.0000 7.7857 -17.8514 15.2029 3.4446 0.0000 0.0000 -6.8598 29.4924 6.9034 3.6830 0.0000 0.0000 - -11.4053 2.1379 22.2806 -0.6520 7.8583 163.9355 -3.4536 1.2294 0.5592 -1.4674 -1.9837 -0.0382 4.7895 -3.1933 8.2218 0.6425 -1.1325 2.7633 1.1362 -9.7957 -2.1728 17.3282 -0.0248 -10.6013 -11.7351 5.3227 -3.4365 -21.1429 -8.4038 35.7137 -0.0001 0.0001 127.8747 -10.5417 6.9117 15.0775 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.6434 -2.3345 1.1274 -23.2400 0.6100 -28.2951 -0.0000 0.0000 5.6713 1.4836 -5.0842 8.3103 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -22.5284 31.8552 17.2930 31.0190 0.0000 0.0000 -16.2111 -26.7835 7.9412 3.2276 0.0000 0.0000 7.7414 -18.0458 13.9055 0.0236 0.0000 0.0000 -6.3163 27.8010 9.3509 2.7349 0.0000 0.0000 - -11.5231 2.0981 22.3996 -1.9119 6.5417 164.1398 -3.2215 0.5028 0.4276 -1.3095 -2.2764 -0.1174 3.8170 -3.5514 8.2293 0.2051 -0.7223 2.5050 0.3382 -9.1217 -2.2084 16.7083 -0.2622 -10.6246 -11.7812 6.2455 -3.2219 -23.5889 -7.9165 33.4077 -0.0001 0.0001 127.9286 -11.6754 7.6380 15.1955 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -10.4170 -1.9581 1.2092 -23.2008 -1.5962 -27.8152 -0.0000 0.0000 5.0764 1.0198 -5.3789 8.8634 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -20.7181 31.2111 14.1871 26.5096 0.0000 0.0000 -13.2354 -26.6011 9.2610 3.2605 0.0000 0.0000 7.0197 -19.3319 14.1654 -0.4615 0.0000 -0.0000 -6.1434 27.2090 8.9571 2.3411 0.0000 0.0000 - -11.5809 2.0243 22.4447 -2.4202 5.5739 163.9740 -2.4653 0.4396 0.4696 -0.8668 -2.4387 -0.1375 3.2213 -3.7684 8.5214 -0.2570 -0.6630 2.5099 -1.7575 -8.3588 -2.5907 15.9140 -0.5399 -10.6446 -12.1758 6.0686 -3.8070 -25.8231 -6.3038 32.5819 -0.0001 0.0001 126.6824 -13.0472 9.1109 15.9958 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.4027 -1.5525 1.7545 -23.1805 -3.8640 -28.6362 -0.0000 0.0000 4.6854 0.2405 -5.4404 9.1991 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -19.6810 31.0663 10.2339 23.6892 0.0000 0.0000 -10.0591 -26.6972 12.8501 3.3957 0.0000 0.0000 6.3853 -20.3668 15.0257 0.1677 0.0000 0.0000 -6.0972 26.9394 7.9150 2.0901 0.0000 0.0000 - -11.5843 1.9629 22.4778 -3.1189 4.9610 163.2335 -2.5919 0.4643 0.5517 -0.8832 -2.4355 -0.1243 3.5240 -4.0516 8.9864 -0.3645 -0.6617 2.6625 -3.6534 -7.5927 -2.8560 15.5560 -0.8825 -10.5025 -12.8424 5.3463 -4.2288 -26.5766 -5.2558 32.7753 -0.0001 0.0001 125.9199 -13.7118 9.7149 16.3286 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -10.9426 -0.9435 2.3087 -22.2876 -6.0709 -29.4758 -0.0000 0.0000 4.2978 -0.2786 -5.2152 8.7117 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -19.7932 30.6738 7.4808 21.8480 0.0000 0.0000 -7.3566 -27.0176 16.2405 3.6175 0.0000 0.0000 6.1046 -21.0835 15.5669 0.1959 0.0000 0.0000 -6.1715 26.7388 8.4238 1.8675 0.0000 0.0000 - -11.5558 1.9273 22.5110 -4.1860 4.3144 162.3895 -3.4355 0.1380 0.5473 -1.3483 -2.3592 -0.1266 4.2342 -4.6359 9.1605 -0.2480 -0.4869 2.6832 -4.4526 -6.6700 -2.6842 15.4170 -1.3827 -10.0301 -13.0645 4.6839 -3.9468 -26.3573 -5.3819 33.2019 -0.0001 0.0001 126.0639 -13.4130 9.0771 15.9977 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -11.7062 -0.2778 2.8251 -21.3208 -7.6283 -29.8452 -0.0000 0.0000 4.2190 -0.4714 -4.8556 8.4304 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -20.2799 29.5557 6.7560 20.3228 0.0000 0.0000 -5.8586 -27.2001 17.3431 3.7592 0.0000 0.0000 5.9355 -21.9777 15.6709 -0.2630 0.0000 -0.0000 -6.4885 26.7465 9.7562 1.7810 0.0000 0.0000 - -11.5306 1.9005 22.5296 -4.9752 3.6092 161.9706 -3.9560 -0.1772 0.5251 -1.7040 -2.2904 -0.1586 4.6871 -5.3915 8.9556 -0.2380 -0.2890 2.5486 -4.6317 -5.8133 -2.3913 15.2222 -1.8315 -9.5699 -12.7565 3.9884 -3.5336 -26.1788 -5.5439 33.8018 -0.0001 0.0001 126.1947 -12.8049 8.2540 15.7867 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -12.1534 0.4661 3.4530 -21.1716 -8.3203 -30.5240 -0.0000 0.0000 4.4829 -0.6149 -4.4620 8.8038 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -20.2543 28.3032 7.3054 19.0669 0.0000 0.0000 -5.5585 -27.2755 16.4373 3.8288 0.0000 0.0000 5.6028 -22.9794 15.8941 -0.2095 0.0000 -0.0000 -6.7160 26.8472 10.0480 1.7165 0.0000 0.0000 - -11.5289 1.8794 22.5388 -5.1857 3.1572 161.8579 -4.0063 -0.2016 0.5622 -1.8186 -2.1531 -0.1644 5.0076 -6.0290 8.7336 -0.3257 -0.1960 2.4608 -4.9200 -5.3174 -2.3454 15.1801 -2.0294 -9.4481 -12.5161 3.1221 -3.4918 -26.2961 -5.0283 34.5360 -0.0001 0.0001 125.8017 -12.5652 8.0535 16.1608 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -12.2630 1.2196 3.9826 -21.4233 -8.4367 -31.6515 -0.0000 0.0000 4.7373 -0.7067 -4.1164 8.9529 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -19.7365 27.6640 7.8012 18.0286 0.0000 0.0000 -5.4953 -27.4441 15.4965 3.9174 0.0000 0.0000 5.2978 -23.5664 16.5614 0.2964 0.0000 0.0000 -6.6118 26.9220 9.3035 1.5795 0.0000 0.0000 - -11.5514 1.8782 22.5519 -5.2198 3.1039 161.6983 -4.2042 -0.1428 0.6146 -2.0138 -2.0453 -0.1548 5.5780 -6.2479 8.6744 -0.2950 -0.1491 2.4598 -5.3459 -5.1169 -2.4861 15.4514 -2.0976 -9.5111 -12.6880 2.4625 -3.5427 -26.3162 -4.5848 34.9857 -0.0001 0.0001 125.3453 -12.6385 8.1291 16.6296 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -12.3523 1.6590 4.1023 -21.4115 -8.1924 -32.4000 -0.0000 0.0000 4.8619 -0.5710 -3.8989 8.5441 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -19.2563 27.6931 7.4903 16.9550 0.0000 0.0000 -4.8677 -27.6375 15.7556 3.9863 0.0000 0.0000 5.2748 -23.5705 17.1032 0.4199 0.0000 0.0000 -6.5261 27.0088 8.9913 1.4941 0.0000 0.0000 - -11.5881 1.8987 22.5666 -5.3526 3.2372 161.5591 -4.6295 -0.1336 0.6333 -2.3651 -1.9394 -0.1470 6.2460 -6.3283 8.5002 -0.1558 -0.0851 2.4173 -5.6363 -4.9924 -2.5699 15.7462 -2.1746 -9.5359 -12.9301 2.1676 -3.4443 -26.3471 -4.7130 35.1611 -0.0001 0.0001 125.1570 -12.7828 8.0126 16.7154 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -12.4790 1.7873 3.9497 -21.2199 -7.8215 -32.4605 -0.0000 0.0000 5.0132 -0.2913 -3.8263 8.3119 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -18.8897 27.9743 6.7439 15.8217 0.0000 0.0000 -3.9661 -27.6929 16.4888 3.9754 0.0000 0.0000 5.4364 -23.3067 16.8791 -0.0262 0.0000 -0.0000 -6.7035 27.0824 9.5740 1.5212 0.0000 0.0000 - -11.6261 1.9235 22.5751 -5.5232 3.3687 161.6640 -4.9421 0.0155 0.6459 -2.6442 -1.7444 -0.1426 6.6829 -6.6287 8.0508 -0.1073 -0.0642 2.3019 -5.8362 -4.9932 -2.5886 15.8130 -2.1515 -9.5474 -12.9296 1.7136 -3.4950 -26.8299 -4.7135 35.6473 -0.0001 0.0001 124.9458 -13.1799 7.8883 16.6129 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -12.5152 1.9572 3.8742 -21.0211 -7.7414 -32.3389 -0.0000 0.0000 5.1586 -0.0911 -3.8039 8.4741 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -18.4950 28.2244 6.3831 14.8707 0.0000 0.0000 -3.4916 -27.7288 16.4963 3.9603 0.0000 0.0000 5.4512 -23.0728 16.1770 -0.4971 0.0000 -0.0000 -6.8758 26.9962 10.2388 1.5592 0.0000 0.0000 - -11.6527 1.9459 22.5801 -5.6453 3.4595 161.9188 -5.0513 0.3473 0.6688 -2.7960 -1.3419 -0.1055 6.8949 -7.2645 7.4849 -0.1808 -0.1186 2.2104 -6.0695 -5.1993 -2.6449 15.8252 -1.9853 -9.6131 -12.8426 0.8642 -3.8439 -27.5642 -4.0841 36.5562 -0.0001 0.0001 124.5128 -13.9169 7.9912 16.6406 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -12.4635 2.3002 3.9064 -20.7221 -8.0548 -32.2824 -0.0000 0.0000 5.1444 0.0659 -3.7536 8.4493 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -18.0801 28.3951 6.4731 14.1964 0.0000 0.0000 -3.4452 -27.8688 15.8911 4.0237 0.0000 0.0000 5.3415 -22.9181 15.7262 -0.7752 0.0000 -0.0000 -6.7898 26.8018 10.4533 1.5816 0.0000 0.0000 - -11.6568 1.9687 22.5868 -5.8330 3.4280 162.1231 -5.1903 0.6613 0.6694 -2.9570 -0.8603 -0.0508 7.0603 -8.0338 6.9661 -0.2434 -0.2096 2.1763 -6.2552 -5.5503 -2.7141 15.9812 -1.8179 -9.7010 -12.9066 0.0646 -4.1776 -27.9795 -3.3283 37.2572 -0.0001 0.0001 124.1155 -14.6104 8.1226 16.7579 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -12.3851 2.5716 3.8906 -20.4688 -8.3453 -32.1243 -0.0000 0.0000 5.0726 0.2599 -3.6420 8.1446 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -17.7996 28.3820 6.3516 13.7435 0.0000 0.0000 -3.3616 -27.9554 15.5921 4.1285 0.0000 0.0000 5.2428 -22.9591 15.5877 -1.0098 0.0000 -0.0000 -6.6345 26.7155 10.5075 1.6505 0.0000 0.0000 - -11.6355 1.9879 22.5917 -6.1286 3.1739 162.2317 -5.4170 0.8243 0.6467 -3.1509 -0.4287 0.0051 7.2240 -8.7806 6.5046 -0.2328 -0.3216 2.1731 -6.3237 -5.9499 -2.7512 16.1593 -1.7126 -9.7826 -13.0736 -0.3081 -4.3097 -28.0503 -3.0016 37.3584 -0.0001 0.0001 123.9670 -14.9784 8.0570 16.8361 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -12.2678 2.6312 3.8276 -20.5240 -8.3403 -31.9120 -0.0000 0.0000 5.1446 0.3804 -3.4233 8.0335 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -17.6990 28.0672 5.8469 13.5269 0.0000 0.0000 -3.1706 -27.8703 15.7874 4.2062 0.0000 0.0000 5.1391 -23.3326 15.5102 -1.1528 0.0000 -0.0000 -6.6012 26.7990 10.5836 1.7288 0.0000 0.0000 - -11.5986 1.9978 22.5904 -6.4100 2.7926 162.2129 -5.5812 0.9197 0.6366 -3.3022 -0.1048 0.0506 7.3575 -9.3785 6.1502 -0.2060 -0.4685 2.1936 -6.3445 -6.3720 -2.7625 16.1993 -1.5832 -9.8574 -13.2166 -0.4333 -4.4154 -28.1544 -3.0430 37.2330 -0.0001 0.0001 123.9375 -15.1755 7.8157 16.9273 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -12.1599 2.6225 3.8007 -20.6868 -8.3364 -31.7670 -0.0000 0.0000 5.2476 0.3563 -3.1395 8.1768 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -17.7640 27.5478 5.5137 13.5799 0.0000 0.0000 -3.1344 -27.7609 15.9883 4.2607 0.0000 0.0000 5.0327 -23.8896 15.5789 -1.0772 0.0000 -0.0000 -6.6219 26.8966 10.5691 1.7365 0.0000 0.0000 - -11.5577 2.0012 22.5858 -6.6645 2.4483 161.9556 -5.6920 0.9931 0.6478 -3.4229 0.1811 0.0973 7.4915 -9.8969 5.9829 -0.2029 -0.5847 2.2384 -6.3523 -6.7141 -2.7369 16.1736 -1.4467 -9.8792 -13.3165 -0.5448 -4.5955 -28.3421 -3.1881 37.3220 -0.0001 0.0001 123.8883 -15.3683 7.5041 17.0544 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -12.1971 2.7262 3.8145 -20.5960 -8.6347 -31.5798 -0.0000 0.0000 5.1995 0.3184 -2.9289 8.2065 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -18.0450 26.9685 5.6617 13.7626 0.0000 0.0000 -3.2368 -27.7342 16.0361 4.3093 0.0000 0.0000 4.9918 -24.4098 15.9254 -0.8687 0.0000 -0.0000 -6.6869 26.9445 10.5715 1.6985 0.0000 0.0000 - -11.5195 2.0070 22.5830 -6.9684 2.1545 161.4698 -5.8512 1.0131 0.6570 -3.5693 0.4463 0.1443 7.6451 -10.4811 5.9510 -0.2032 -0.5930 2.2827 -6.3233 -6.8353 -2.6464 16.2062 -1.4199 -9.8326 -13.3600 -0.6019 -4.7045 -28.4094 -3.3089 37.5934 -0.0001 0.0001 123.8431 -15.5078 7.2468 17.1277 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -12.3761 2.9327 3.8717 -20.3072 -9.0721 -31.2544 -0.0000 0.0000 5.0901 0.2916 -2.8001 8.0643 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.4302 26.3756 5.8717 13.7829 0.0000 0.0000 -3.1711 -27.6802 16.2522 4.3153 0.0000 0.0000 5.0654 -24.8657 16.4164 -0.7257 0.0000 -0.0000 -6.8628 27.0536 10.7476 1.7092 0.0000 0.0000 - -11.4875 2.0181 22.5830 -7.3289 1.8180 160.9108 -6.0484 0.9599 0.6583 -3.7452 0.6991 0.1890 7.8207 -11.2117 5.9630 -0.1930 -0.5372 2.3090 -6.3201 -6.7198 -2.5416 16.2891 -1.4887 -9.7829 -13.3244 -0.5407 -4.6739 -28.3941 -3.2861 37.8454 -0.0001 0.0001 123.7996 -15.6373 7.1779 17.1470 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -12.5520 3.1556 4.0252 -20.0701 -9.3580 -30.9447 -0.0000 0.0000 5.0706 0.1682 -2.6238 7.9822 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -18.6452 25.7635 5.7044 13.3957 0.0000 0.0000 -2.7665 -27.5483 16.8001 4.2606 0.0000 0.0000 5.2306 -25.3457 16.8670 -0.7123 0.0000 -0.0000 -7.1041 27.2331 11.0502 1.7652 0.0000 0.0000 - -11.4617 2.0314 22.5847 -7.7204 1.4196 160.3819 -6.2296 0.8679 0.6579 -3.9368 1.0184 0.2456 8.0302 -12.1237 5.9831 -0.1877 -0.4895 2.3580 -6.4160 -6.5109 -2.4862 16.3673 -1.5151 -9.7688 -13.2745 -0.4714 -4.6344 -28.4786 -3.0679 38.0818 -0.0001 0.0001 123.6725 -15.8639 7.2440 17.2251 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.6562 3.4109 4.2529 -19.8900 -9.5615 -30.7467 -0.0000 0.0000 5.0682 -0.0321 -2.3739 7.9938 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.5887 25.1373 5.2734 12.5797 0.0000 0.0000 -2.1199 -27.4738 17.4693 4.2016 0.0000 0.0000 5.4092 -25.8749 17.2809 -0.7479 0.0000 -0.0000 -7.3136 27.3397 11.3759 1.7824 0.0000 0.0000 - -11.4390 2.0444 22.5885 -8.1371 1.0469 159.8819 -6.3867 0.8174 0.6459 -4.1224 1.4549 0.3281 8.2107 -13.1905 5.9922 -0.1939 -0.4603 2.4361 -6.5464 -6.3578 -2.4426 16.4126 -1.4717 -9.7396 -13.3095 -0.4663 -4.6570 -28.6095 -2.8434 38.3357 -0.0001 0.0001 123.4962 -16.0825 7.2523 17.3523 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -12.7400 3.6849 4.4713 -19.6661 -9.8460 -30.5240 -0.0000 0.0000 4.9908 -0.1561 -2.1901 7.9715 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -18.4501 24.5316 4.9283 11.5954 0.0000 0.0000 -1.4346 -27.4971 18.0082 4.1877 0.0000 0.0000 5.5090 -26.3889 17.6900 -0.7173 0.0000 -0.0000 -7.5121 27.3546 11.6998 1.7554 0.0000 0.0000 - -11.4134 2.0564 22.5934 -8.5529 0.7263 159.4037 -6.4984 0.8761 0.6297 -4.2358 1.8683 0.3998 8.2365 -14.2170 5.9483 -0.2069 -0.4740 2.5208 -6.6089 -6.3074 -2.3682 16.3819 -1.4536 -9.6725 -13.3886 -0.4401 -4.6853 -28.6410 -2.8224 38.4807 -0.0001 0.0001 123.4229 -16.1874 7.2008 17.4336 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -12.8021 3.8360 4.6275 -19.4370 -10.1426 -30.1564 -0.0000 0.0000 4.9076 -0.2079 -2.0962 7.9036 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -18.4614 23.9347 4.7787 10.8653 0.0000 0.0000 -0.9106 -27.4409 18.3680 4.1832 0.0000 0.0000 5.5500 -26.8715 18.0662 -0.6288 0.0000 -0.0000 -7.7226 27.4308 11.9870 1.7611 0.0000 0.0000 - -11.3794 2.0657 22.5945 -8.9440 0.3748 158.9452 -6.5444 0.9730 0.6209 -4.2498 2.2143 0.4554 8.0929 -15.1208 5.8487 -0.2164 -0.5571 2.6072 -6.6063 -6.3310 -2.3021 16.2950 -1.4729 -9.6132 -13.3990 -0.3187 -4.6695 -28.6150 -2.9706 38.3942 -0.0001 0.0001 123.4932 -16.2967 7.2211 17.4992 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -12.8083 3.7734 4.7107 -19.2433 -10.3302 -29.6757 -0.0000 0.0000 4.8476 -0.3217 -1.9950 7.8617 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.7032 23.2614 4.8155 10.6515 0.0000 0.0000 -0.6808 -27.2496 18.5714 4.1496 0.0000 0.0000 5.6614 -27.3942 18.3429 -0.6079 0.0000 -0.0000 -7.9166 27.5518 12.3332 1.8299 0.0000 0.0000 - -11.3347 2.0720 22.5909 -9.3172 -0.0651 158.5103 -6.5430 1.0345 0.5980 -4.2177 2.5440 0.5023 7.8837 -15.9677 5.7389 -0.2339 -0.7074 2.7125 -6.5644 -6.3866 -2.2645 16.2641 -1.4362 -9.5772 -13.3444 -0.2014 -4.6255 -28.6614 -3.0990 38.1661 -0.0001 0.0001 123.5636 -16.4496 7.2334 17.6624 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.7824 3.6081 4.7349 -19.0509 -10.4570 -29.1705 -0.0000 0.0000 4.7466 -0.4573 -1.9208 7.8638 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -19.0734 22.4661 5.0848 10.8389 0.0000 0.0000 -0.7333 -27.1208 18.5704 4.1320 0.0000 0.0000 5.8450 -28.0229 18.5701 -0.6075 0.0000 -0.0000 -8.0763 27.5262 12.7577 1.8950 0.0000 0.0000 - -11.2770 2.0765 22.5886 -9.6900 -0.6122 158.1621 -6.5080 1.0904 0.5362 -4.1595 2.9824 0.5573 7.6205 -17.0389 5.5670 -0.2649 -0.8754 2.8257 -6.4717 -6.3991 -2.1870 16.3089 -1.3326 -9.5056 -13.3696 -0.1057 -4.5778 -28.6976 -3.1927 37.9222 -0.0001 0.0001 123.5317 -16.4827 7.0838 17.8804 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.7032 3.4546 4.7608 -18.8345 -10.5762 -28.6821 -0.0000 0.0000 4.6442 -0.5174 -1.9303 7.8891 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -19.3516 21.5542 5.4300 11.0897 0.0000 0.0000 -0.9045 -27.1019 18.3738 4.1709 0.0000 0.0000 5.8973 -28.8279 18.9661 -0.3491 0.0000 -0.0000 -8.1626 27.4486 12.8581 1.9331 0.0000 0.0000 - -11.2078 2.0809 22.5908 -10.0766 -1.2808 157.9265 -6.4498 1.1567 0.4570 -4.0734 3.4427 0.6064 7.3148 -18.2746 5.2944 -0.2809 -1.0690 2.9307 -6.3891 -6.3585 -2.0423 16.2808 -1.2344 -9.3682 -13.5314 0.0798 -4.5389 -28.6197 -3.3273 37.6077 -0.0001 0.0001 123.4844 -16.5207 6.9294 18.0260 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -12.5192 3.1976 4.8031 -18.5465 -10.6053 -28.1562 -0.0000 0.0000 4.6093 -0.5927 -1.9128 7.9190 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -19.4008 20.5538 5.3874 11.1375 0.0000 0.0000 -0.9078 -26.9834 18.3213 4.2024 0.0000 0.0000 5.7879 -29.8360 19.5969 0.1516 0.0000 0.0000 -8.1441 27.6440 12.4513 2.0440 0.0000 0.0000 - -11.1383 2.0857 22.5922 -10.5285 -2.0049 157.7232 -6.4383 1.1251 0.3813 -4.0423 3.8224 0.6434 7.1099 -19.3665 5.0042 -0.2611 -1.2893 3.0394 -6.4043 -6.3848 -1.8960 16.1060 -1.1393 -9.2056 -13.7332 0.3249 -4.4955 -28.5419 -3.4568 37.1413 -0.0001 0.0001 123.5174 -16.8788 6.9472 18.1543 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.3067 2.7860 4.7827 -18.1240 -10.6025 -27.5173 -0.0000 0.0000 4.5401 -0.8027 -1.8074 7.9165 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -19.3405 19.5438 4.7890 10.9424 0.0000 0.0000 -0.5811 -26.7870 18.7372 4.1785 0.0000 0.0000 5.7092 -30.9255 20.0938 0.4941 0.0000 0.0000 -8.1611 28.0817 12.2204 2.2408 0.0000 0.0000 - -11.0824 2.0889 22.5911 -11.0362 -2.5976 157.5320 -6.4772 1.0019 0.2961 -4.0717 4.2901 0.7054 6.9650 -20.3618 4.7137 -0.2466 -1.4721 3.1247 -6.4563 -6.5606 -1.7669 15.8874 -0.9922 -9.0702 -13.8950 0.4444 -4.4265 -28.5876 -3.5207 36.6768 -0.0001 0.0001 123.5406 -17.3977 6.9508 18.4251 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.1821 2.4353 4.6833 -17.6454 -10.7440 -26.8125 -0.0000 0.0000 4.3502 -1.0234 -1.8087 7.8672 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -19.3550 18.6985 4.1473 10.6561 0.0000 0.0000 -0.1473 -26.8113 19.3078 4.1926 0.0000 0.0000 5.5933 -31.8682 20.2412 0.6745 0.0000 0.0000 -8.3414 28.4082 12.4945 2.3686 0.0000 0.0000 - -11.0433 2.0855 22.5928 -11.4373 -2.9701 157.4926 -6.3956 0.9879 0.1913 -3.9790 4.7666 0.7514 6.6356 -21.1833 4.3382 -0.3011 -1.6279 3.1619 -6.4943 -6.9190 -1.6500 15.6327 -0.7732 -8.9995 -14.0299 0.3364 -4.3868 -28.7079 -3.5398 36.3771 -0.0001 0.0001 123.4652 -17.7110 6.8233 18.7623 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.0501 2.1593 4.5642 -17.2535 -10.9227 -26.1856 -0.0000 0.0000 4.1978 -1.1219 -1.9596 7.8038 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -19.3965 18.1338 3.8919 10.4670 0.0000 0.0000 0.0294 -26.9523 19.4424 4.3184 0.0000 0.0000 5.2077 -32.5625 20.4635 1.0804 0.0000 0.0000 -8.3780 28.5552 12.3093 2.3666 0.0000 0.0000 - -11.0176 2.0699 22.5973 -11.6599 -3.2074 157.6401 -6.1070 1.1078 0.1152 -3.6805 4.9849 0.7302 6.1308 -21.5173 3.9068 -0.4125 -1.8412 3.1786 -6.6836 -7.4136 -1.6163 15.2127 -0.5037 -8.9748 -14.1099 0.1189 -4.4488 -28.9009 -3.5130 36.0984 -0.0001 0.0001 123.3631 -17.9344 6.8510 18.9836 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -11.7752 1.6880 4.4036 -16.9311 -10.8301 -25.6376 -0.0000 0.0000 4.1467 -1.2174 -2.0179 7.7547 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -19.4021 17.7908 3.6558 10.4226 0.0000 0.0000 0.0300 -26.7584 19.3247 4.4504 0.0000 0.0000 4.7287 -33.0437 20.9232 1.5110 0.0000 0.0000 -8.0001 28.6445 11.3490 2.3955 0.0000 0.0000 - -11.0128 2.0395 22.5980 -11.8579 -3.2876 157.8082 -5.7577 1.2002 0.0768 -3.3302 5.0036 0.6887 5.7005 -21.4090 3.5730 -0.5451 -2.0687 3.2326 -7.1337 -7.8883 -1.7208 14.6667 -0.2007 -8.9077 -14.0810 -0.1557 -4.5526 -29.2784 -3.3682 35.5707 -0.0001 0.0001 123.2737 -18.0855 7.0885 19.1956 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.4780 1.1917 4.0971 -16.6786 -10.5544 -25.0771 -0.0000 0.0000 3.9523 -1.4002 -2.1419 7.6541 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -19.5605 17.6760 3.1212 10.4324 0.0000 0.0000 0.2539 -26.5318 19.5983 4.5070 0.0000 0.0000 4.4341 -33.2406 20.9400 1.4100 0.0000 0.0000 -7.6394 28.5284 10.9822 2.4900 0.0000 0.0000 - -11.0382 1.9935 22.5974 -12.0477 -3.0681 157.9300 -5.3582 1.3045 0.0278 -2.9635 4.8691 0.6209 5.3476 -20.9792 3.3967 -0.7425 -2.1865 3.2769 -7.6715 -8.2490 -1.8633 14.1312 0.1243 -8.7473 -14.0112 -0.6112 -4.5644 -29.6855 -3.3071 34.6268 -0.0001 0.0001 123.0928 -17.5795 7.0979 19.6857 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.2601 1.1943 3.6278 -16.6190 -10.4206 -24.4435 -0.0000 0.0000 3.4378 -1.6583 -3.1378 7.3015 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -19.9644 17.9374 2.9414 10.5018 0.0000 0.0000 0.6388 -27.2441 20.0527 4.6464 0.0000 0.0000 3.9940 -33.0851 20.4039 1.2805 0.0000 0.0000 -7.7414 28.2338 11.4340 2.4556 0.0000 0.0000 - -11.0880 1.9257 22.6015 -11.9916 -2.5422 158.0187 -4.7097 1.5723 -0.0166 -2.3896 4.0100 0.4354 4.9395 -19.5181 3.3643 -0.9964 -2.2604 3.2592 -8.2656 -8.6305 -1.9893 13.4603 0.5111 -8.5290 -13.8508 -1.2604 -4.4833 -29.7890 -3.8523 32.9368 -0.0001 0.0001 122.8498 -16.5794 6.8679 20.4484 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.8203 1.6735 2.9400 -16.4560 -10.3997 -23.3671 -0.0000 0.0000 2.3979 -2.3604 -5.7370 6.4797 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -20.4991 18.5701 3.6810 10.8325 0.0000 0.0000 0.7648 -28.7048 20.1001 4.9518 0.0000 0.0000 2.9804 -32.6916 20.4782 2.2306 0.0000 0.0000 -7.9590 28.3248 10.8081 2.3312 0.0000 0.0000 - -11.1563 1.8203 22.6000 -11.8650 -1.7693 157.8847 -3.9430 1.7096 -0.0049 -1.8292 2.1799 0.1632 4.7952 -16.3921 3.6049 -1.1779 -2.4052 3.2262 -9.2462 -9.1689 -2.2172 12.5073 1.0749 -8.1907 -13.2456 -1.9594 -4.2943 -29.5523 -5.3435 29.9079 -0.0001 0.0001 122.7000 -16.2014 6.8914 21.0647 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.8188 2.3580 1.8180 -15.6891 -10.2715 -21.2051 -0.0000 0.0000 0.0546 -3.7190 -10.4273 5.0569 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -21.5554 19.3109 4.6908 11.6109 0.0000 0.0000 0.6969 -29.2379 20.0990 5.1488 0.0000 0.0000 1.3972 -32.2669 21.4665 4.2746 0.0000 0.0000 -8.0225 28.8667 8.8653 2.4854 0.0000 0.0000 - -11.2480 1.6693 22.5783 -12.1096 -0.7163 157.5596 -3.3514 1.2973 -0.0504 -1.4783 0.4974 -0.0188 4.9442 -12.7902 4.0331 -1.3049 -2.4420 3.1760 -10.6561 -9.6226 -2.5143 11.6020 1.7829 -7.5128 -12.0417 -2.7722 -3.8250 -28.9928 -7.6837 25.4348 -0.0001 0.0001 122.3609 -16.0461 6.9712 21.0886 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -8.2982 3.8378 0.3451 -15.4210 -9.7872 -18.2951 -0.0000 -0.0000 -4.2188 -4.4185 -17.4798 2.8253 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -23.6167 20.0332 5.4698 12.8325 0.0000 0.0000 0.5954 -28.1571 20.2708 4.9336 0.0000 0.0000 -1.1048 -31.9285 21.7750 7.2272 0.0000 0.0000 -8.6893 28.9014 7.6927 2.9283 0.0000 0.0000 - -11.3462 1.4806 22.5269 -12.3996 0.0690 157.6791 -2.3632 0.2633 -0.3303 -0.8039 -0.4996 -0.1332 4.7410 -9.8841 4.2208 -1.7002 -2.3247 2.9980 -12.0467 -9.4115 -2.6083 10.9228 2.1874 -6.3995 -10.5688 -3.8140 -2.9088 -27.8558 -10.5163 20.0539 -0.0001 0.0001 121.1220 -14.0633 6.5422 20.3230 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.4946 6.2539 -1.0284 -17.6565 -7.6149 -15.7572 -0.0000 -0.0000 -9.7211 -2.8925 -25.5807 -0.2716 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -25.9305 20.4509 7.1063 14.8638 0.0000 0.0000 -0.5941 -27.1602 19.0262 4.4883 0.0000 0.0000 -5.4237 -32.4267 21.1905 12.8403 0.0000 0.0000 -10.0889 28.0248 6.1847 3.1880 0.0000 0.0000 - -11.4200 1.2797 22.3908 -11.6786 -0.6054 158.2834 0.2202 -1.7350 -0.5827 0.6962 -1.2087 -0.2769 3.9664 -7.7342 4.0715 -2.4321 -2.3417 2.7240 -13.2041 -7.6939 -2.3923 9.7026 1.6740 -5.0319 -8.9957 -3.5376 -1.3639 -25.9531 -14.3730 13.5544 -0.0001 0.0001 118.7705 -10.4705 6.4769 19.0476 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.2918 7.7696 -2.1867 -21.3169 -1.5391 -13.2144 -0.0000 -0.0000 -14.8354 -0.1762 -32.7282 -3.6942 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -27.3766 19.6732 10.6099 19.0325 0.0000 0.0000 -4.1156 -27.9598 15.4397 4.3564 0.0000 0.0000 -10.8188 -34.9106 20.1790 22.1908 0.0000 0.0000 -11.4900 26.8423 2.6105 3.2967 0.0000 0.0000 - -11.4800 1.0952 22.0655 -9.5402 -2.2029 158.3610 4.2217 -3.9986 -0.4954 2.2247 -1.8842 -0.4031 3.9734 -6.1206 4.2938 -2.9415 -2.4965 2.5802 -14.8456 -4.6284 -2.0606 7.2269 0.5474 -3.6539 -6.8266 -0.7516 0.8798 -24.4387 -19.3563 6.0014 -0.0001 0.0001 115.3818 -9.0053 8.6549 17.6048 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.9617 6.2130 -3.6337 -24.3070 9.0230 -8.7371 -0.0000 -0.0000 -19.3862 2.4901 -38.0049 -6.4535 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -28.9548 17.9010 14.8112 26.5453 0.0000 0.0000 -9.2595 -29.5602 12.1844 4.4831 0.0000 0.0000 -15.1459 -38.2053 17.6932 32.7190 0.0000 0.0000 -13.0853 26.3086 -0.1704 3.7436 0.0000 0.0000 - -11.5057 0.9220 21.4993 -7.4186 -2.7772 157.2683 7.4720 -4.9563 -0.4173 2.8783 -2.3534 -0.3873 5.6199 -4.8828 5.1540 -2.8026 -2.4473 2.6322 -17.5308 -1.8927 -1.5475 4.3566 -0.0907 -2.2354 -3.8233 1.8219 2.9397 -23.9622 -22.8244 0.3693 -0.0001 0.0001 110.7440 -10.3682 12.4395 15.0649 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2681 3.1143 -5.6120 -26.8212 19.9104 -1.6587 -0.0000 -0.0000 -25.8461 6.1612 -40.0245 -7.8403 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -32.9795 16.1348 19.0008 36.6966 0.0000 0.0000 -14.3027 -29.8380 10.8845 4.3899 0.0000 0.0000 -17.5713 -40.9414 16.5601 41.3104 0.0000 0.0000 -14.8112 27.2794 -2.1792 4.5007 0.0000 0.0000 - -11.3738 0.8099 20.8170 -6.5005 -1.8804 155.9378 8.3245 -4.5831 -0.5935 2.7851 -2.4771 -0.3010 8.0464 -3.8753 5.6979 -2.4176 -2.0772 2.5881 -20.3317 -0.3995 -0.6443 2.9035 0.0625 -0.5944 -0.7968 0.2116 4.0660 -22.6164 -21.9756 -0.7314 -0.0001 0.0001 105.1237 -9.0721 13.4709 9.7128 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 1.4685 3.4796 -7.2605 -28.6045 25.4733 4.9637 -0.0000 -0.0000 -35.1296 12.2237 -40.1785 -8.1489 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -38.6082 14.2854 23.4294 47.0051 0.0000 0.0000 -19.2953 -28.3593 9.3519 3.9353 0.0000 0.0000 -18.1345 -43.4052 18.9515 46.2051 0.0000 0.0000 -16.2073 29.6553 -5.4995 5.1126 0.0000 0.0000 - -10.9468 0.8420 20.3071 -6.2998 -0.8086 156.0707 7.5250 -4.1135 -0.7459 2.4393 -2.2742 -0.2942 9.6261 -3.2808 5.0869 -2.2991 -1.5601 2.1653 -21.4208 0.4108 0.5198 3.4293 0.3295 0.7242 2.0842 -6.3798 4.5666 -19.2140 -17.0711 0.9880 -0.0000 0.0001 98.0782 -2.6647 10.4474 3.9981 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 3.9950 8.3700 -7.2940 -28.4674 27.0740 7.7751 -0.0000 -0.0000 -43.4242 19.3260 -40.7940 -8.2372 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -42.0999 12.2087 26.6909 55.1261 0.0000 0.0000 -24.5716 -26.2918 6.2742 3.6191 0.0000 0.0000 -17.1250 -45.2855 22.1902 46.7295 0.0000 0.0000 -15.5455 32.8165 -9.8182 5.6398 0.0000 0.0000 - -10.2004 1.0280 20.2103 -5.5390 -0.4061 157.6081 6.8400 -3.8676 -0.7650 2.1924 -1.8969 -0.3124 9.4721 -2.8386 4.1721 -2.2003 -1.1339 1.5470 -20.0454 1.5971 1.4892 4.7809 -0.3984 0.8178 4.5706 -12.9013 4.4767 -13.4084 -14.3462 1.2186 -0.0000 0.0001 88.0540 3.4510 9.1632 1.6076 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 5.8104 14.1431 -5.1522 -25.0179 29.6762 6.3827 -0.0000 -0.0000 -44.9556 22.6689 -42.9422 -9.6863 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -41.3873 10.3765 27.6725 59.8945 0.0000 0.0000 -29.1061 -24.3081 2.9435 3.9544 0.0000 0.0000 -14.1674 -45.2560 22.9039 42.6896 0.0000 0.0000 -11.7405 34.8892 -11.3815 5.9243 0.0000 0.0000 - -9.2699 1.2836 20.5230 -4.1765 0.3393 158.9009 6.2700 -3.2785 -0.7690 1.9463 -1.4782 -0.2040 8.4906 -1.4844 4.6230 -1.7899 -0.5604 1.1434 -17.2830 2.7624 1.5349 5.8747 -2.6120 -0.4577 6.6630 -15.0912 3.4806 -6.6336 -18.8682 -0.0912 -0.0000 0.0001 73.3282 1.6189 12.5743 0.7240 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 5.7291 17.9884 -2.1403 -18.7485 32.4732 2.8492 -0.0000 -0.0000 -39.0739 19.6544 -43.8693 -12.7612 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -38.5627 9.4859 26.9738 61.3621 0.0000 0.0000 -31.3589 -22.1642 1.4785 4.5750 0.0000 0.0000 -9.2037 -42.6965 21.6287 35.0043 0.0000 0.0000 -6.0191 33.4654 -7.9977 5.1001 0.0000 0.0000 - -8.3230 1.5073 21.0416 -3.2832 1.8807 160.1949 5.0390 -2.6618 -0.7230 1.4943 -0.9698 -0.0027 7.7270 1.0938 6.2824 -1.2598 0.4376 0.9016 -14.5242 2.3553 0.3842 6.6692 -5.7207 -2.6653 8.3902 -14.2283 2.2616 -1.4605 -28.3146 -1.0313 -0.0000 0.0001 54.8008 -9.4211 16.5068 -0.4735 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 5.3943 20.6572 -0.2149 -12.1830 30.6024 -1.4582 -0.0000 -0.0000 -30.9022 13.8772 -41.4909 -14.9076 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -35.9986 10.1875 24.4241 60.5601 0.0000 0.0000 -31.5262 -19.6458 2.1740 4.8189 0.0000 0.0000 -5.8193 -39.0956 18.7248 27.5864 0.0000 0.0000 0.0035 28.0049 -4.3611 3.0947 0.0000 0.0000 - -7.3842 1.6576 21.5967 -3.0851 2.5330 164.4321 3.6174 -2.4121 -0.4597 1.0019 -0.6344 0.1130 7.4945 3.6180 6.7433 -0.7989 1.3897 0.4753 -12.5985 -0.5139 -1.8282 7.3032 -8.5058 -5.3563 8.4632 -13.1938 1.4062 -0.1909 -38.5855 -5.0469 0.0000 0.0000 36.8483 -20.3833 18.8596 -2.0241 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.8663 22.2744 0.6050 -7.2953 24.8225 -6.1496 -0.0000 -0.0000 -24.7001 9.3401 -39.6633 -15.0343 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -32.4179 11.9153 17.9505 58.2686 0.0000 0.0000 -31.1751 -16.7981 3.2957 4.7285 0.0000 0.0000 -8.6032 -37.2978 12.4590 25.8607 0.0000 0.0000 3.6119 20.9144 -7.1772 0.6257 0.0000 0.0000 - -6.4502 1.7986 22.1233 -2.5560 0.8971 172.8659 3.1008 -2.1086 -0.0888 0.7478 -0.4184 0.0581 7.6014 4.0898 4.7335 -0.3906 1.3650 0.0920 -11.3726 -4.7759 -4.9705 7.4135 -9.9706 -8.1904 7.0560 -13.3424 0.0493 -5.8260 -45.1757 -16.2429 0.0000 0.0000 23.3891 -24.6177 22.3203 -5.5164 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 6.3173 21.5558 1.1788 -3.8955 20.3301 -11.7070 -0.0000 -0.0000 -20.8780 6.3621 -39.5214 -13.9243 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -25.6046 12.6486 7.3774 54.4731 0.0000 0.0000 -30.8958 -14.0620 3.2992 4.7495 0.0000 0.0000 -17.1052 -36.7154 0.5850 29.7721 0.0000 0.0000 3.3901 17.5599 -14.5318 -1.2673 0.0000 -0.0000 - -5.6205 1.9964 22.6021 -1.3525 -1.6707 -177.0929 3.3809 -1.4012 0.0750 0.7134 0.1682 -0.0192 7.2583 2.5617 1.5019 -0.0919 0.1908 0.2279 -10.2348 -9.0743 -8.7339 6.8444 -9.8732 -10.4533 5.5676 -15.2478 -3.7132 -14.1712 -43.8147 -28.0789 0.0000 0.0000 15.4711 -22.9720 25.1403 -11.9141 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.0463 18.2298 0.9501 0.1522 18.7713 -17.6245 -0.0000 -0.0000 -17.5681 4.2123 -37.2369 -12.8417 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -17.4516 10.5473 -2.4595 49.2019 0.0000 0.0000 -30.3151 -11.6869 1.0837 4.8512 0.0000 0.0000 -25.8395 -34.2011 -12.5415 33.8074 0.0000 0.0000 3.1227 20.8299 -20.8593 -1.6232 0.0000 -0.0000 - -4.9993 2.1977 23.0195 -0.8504 -3.2969 -168.3320 3.2911 -0.3860 0.0936 0.6004 1.1563 -0.0646 6.4849 1.0376 -2.5608 0.1387 -1.1467 0.3633 -9.1543 -13.3526 -11.9973 6.3431 -8.3185 -11.1249 3.2327 -17.9997 -9.9535 -17.1516 -37.9271 -31.5078 0.0000 0.0000 13.1356 -19.3007 25.0775 -16.2921 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 5.4257 13.2684 -0.4726 4.8629 17.5506 -21.3941 -0.0000 -0.0000 -13.6315 3.5847 -31.0827 -11.6211 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -11.6878 6.4768 -6.3416 43.1672 0.0000 0.0000 -29.6441 -9.1066 -4.6219 4.7773 0.0000 0.0000 -31.0320 -29.5138 -19.0636 34.6152 0.0000 0.0000 3.5529 26.6448 -25.9646 -1.4420 0.0000 -0.0000 - -4.6807 2.3090 23.3307 -1.6318 -3.8139 -162.4897 2.2184 0.3808 -0.0379 0.2042 1.9738 -0.1552 6.3664 0.1592 -7.5615 0.5618 -1.5955 -0.2727 -8.2654 -15.9946 -13.0777 6.7878 -5.6438 -9.8112 -0.2002 -19.3367 -15.4948 -16.8979 -31.9888 -29.4441 0.0000 0.0000 16.5148 -17.0265 26.3434 -13.3596 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 4.8770 8.2393 -1.2628 7.3417 16.6933 -20.9801 -0.0000 -0.0000 -10.2223 3.9254 -25.6600 -8.7331 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -8.9645 3.0239 -4.3037 37.6311 0.0000 0.0000 -29.0413 -6.2991 -12.3485 4.6764 0.0000 0.0000 -32.0062 -23.4402 -19.5630 32.4373 0.0000 0.0000 1.2253 29.1216 -30.2462 -2.1761 0.0000 -0.0000 - -4.7466 2.2568 23.5360 -3.2063 -3.0254 -163.0650 0.6298 0.4926 -0.3462 -0.5266 1.6781 -0.2847 7.1782 0.0127 -10.2391 1.0075 -0.7909 -1.2480 -7.7681 -14.2992 -11.3449 7.8653 -2.5100 -7.1401 -2.9140 -20.2469 -16.5164 -20.3752 -24.2597 -27.1487 0.0000 0.0000 24.9845 -15.7012 29.5524 -6.0744 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.0550 5.2747 0.0657 3.6187 18.4465 -15.8588 -0.0000 -0.0000 -8.4727 0.8982 -23.3864 -4.0003 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -9.0382 3.0747 0.2250 34.6414 0.0000 0.0000 -28.0271 -5.3141 -15.7444 4.8214 0.0000 0.0000 -28.2119 -17.0945 -20.0590 28.4362 0.0000 0.0000 -6.4330 26.3712 -27.6078 -3.3197 0.0000 -0.0000 - -5.1741 2.0957 23.6591 -4.5829 -0.1381 -173.5860 0.0417 -0.4566 -0.3646 -0.8569 0.1561 -0.3028 7.1301 1.3914 -6.9516 0.7800 1.0111 -1.3804 -7.5306 -7.4507 -7.5284 8.6529 -0.5013 -3.9250 -3.4730 -21.1564 -12.5116 -30.3036 -15.7923 -25.2512 0.0000 0.0000 37.3325 -11.7049 33.5363 -1.2910 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.1737 5.9367 2.1806 -8.7142 20.6554 -4.0188 -0.0000 -0.0000 -10.1761 -7.8170 -22.8948 1.2462 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -12.8200 7.1751 5.8657 35.5185 0.0000 0.0000 -26.1185 -7.8219 -10.1856 4.9674 0.0000 0.0000 -21.2171 -12.1651 -20.5001 24.9885 0.0000 0.0000 -15.5934 19.0837 -15.0240 -3.7991 0.0000 -0.0000 - -5.8233 2.0154 23.7023 -4.1465 6.3915 167.6390 1.2893 -0.4850 -0.0208 0.0030 -1.5127 -0.0056 4.9677 4.5675 1.9895 -0.1535 3.4172 -0.6743 -7.5170 2.3111 -2.7041 8.5683 -1.1821 -0.2114 -2.2964 -19.0917 -6.5213 -43.5214 -14.3703 -24.6269 -0.0000 0.0001 54.5147 -4.2026 38.3526 2.8458 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.8462 9.1868 3.5360 -27.0688 16.3049 14.7225 -0.0000 -0.0000 -18.5870 -19.5359 -21.0710 1.5131 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -21.4604 13.0936 16.1856 38.8928 0.0000 0.0000 -22.8808 -11.8212 0.1607 4.7595 0.0000 0.0000 -13.5711 -7.5759 -8.9189 22.0182 0.0000 0.0000 -18.6168 13.9147 -4.9807 -3.4102 0.0000 -0.0000 - -6.4550 2.2043 23.6851 0.2554 14.1770 146.8149 3.0327 0.8352 0.0262 1.4076 -2.2816 0.4783 2.5273 8.6559 12.4488 -0.9293 6.0882 -0.2588 -9.5018 11.6965 2.9796 7.2901 -4.5296 3.5908 -1.8479 -11.9722 -1.2906 -54.0037 -23.6653 -30.1578 -0.0000 0.0001 76.7907 5.9985 37.6187 6.8455 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.0980 13.4672 5.7976 -42.9179 5.3046 29.8885 -0.0000 -0.0000 -33.6720 -30.9208 -15.8919 -2.4391 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -31.5857 16.6805 30.7447 40.8497 0.0000 0.0000 -19.4746 -14.9123 8.4656 4.5594 0.0000 0.0000 -5.8957 -1.1082 14.3792 16.4617 0.0000 0.0000 -16.1455 15.9356 -6.7257 -2.4977 0.0000 -0.0000 - -6.8364 2.4874 23.5876 5.4877 18.6024 131.0537 3.7412 1.2340 -0.1023 1.8549 -2.1853 0.8385 2.6504 12.1451 19.7957 -0.8828 8.1596 -0.5029 -14.2629 17.8549 9.7093 5.2318 -8.8524 5.0145 -2.3598 -0.7309 3.1776 -59.5316 -37.2590 -40.1631 -0.0000 0.0001 98.1799 18.9592 36.4658 5.9230 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8568 18.8837 9.5328 -55.5272 -3.0144 36.8373 -0.0000 -0.0000 -54.1554 -37.6975 -13.9090 -6.9564 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -38.4917 16.2594 43.2592 41.4486 0.0000 0.0000 -18.1760 -16.4258 11.1319 4.8248 0.0000 0.0000 -1.9651 5.8119 25.5506 11.8740 0.0000 0.0000 -13.9073 17.7943 -9.6032 -1.8698 0.0000 -0.0000 - -6.8198 2.5809 23.4242 8.2597 18.8653 126.0715 3.9628 1.4181 0.3163 1.5034 -1.7339 0.9907 5.1978 13.6030 21.9596 0.0597 8.4122 -0.5893 -17.0282 18.2910 13.4737 3.5644 -12.1400 2.7778 -1.5419 8.6881 5.0804 -56.8143 -45.5635 -42.9736 -0.0001 0.0001 111.4697 29.1134 41.4920 12.3624 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -11.3733 25.5783 13.3533 -66.0493 -0.7943 34.3410 -0.0000 -0.0001 -74.5154 -34.1262 -18.4492 -9.9706 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -38.7304 14.2090 50.1255 43.9148 0.0000 0.0000 -20.4416 -16.1742 7.4122 5.1533 0.0000 0.0000 -1.5773 7.7984 12.9460 13.5047 0.0000 0.0000 -17.0741 14.8194 -4.6870 -1.7692 0.0000 -0.0000 - -6.4676 2.4011 23.2228 7.1298 17.0084 133.9682 3.8979 1.8461 0.3757 1.1506 -0.9244 1.0039 6.4004 12.9382 20.1745 0.7716 6.7993 -0.1776 -13.3886 11.1190 9.5582 3.5016 -13.7150 -1.2963 1.5677 9.2181 2.8839 -48.0719 -39.4489 -37.1526 -0.0001 0.0001 115.2523 39.5727 40.8086 21.6149 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.0074 29.5289 13.2991 -67.2844 12.1156 25.0727 -0.0001 -0.0001 -86.0785 -20.8583 -25.8708 -7.0088 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -34.7354 13.3870 46.8406 48.2700 0.0000 0.0000 -24.3590 -14.4735 2.1790 5.0815 0.0000 0.0000 -4.4421 3.4835 0.8979 21.3292 0.0000 0.0000 -18.8347 15.8094 -10.0585 -2.0693 0.0000 -0.0000 - -5.8047 2.0749 23.0849 3.2773 12.5712 150.3326 4.5363 2.1718 0.2044 1.2779 0.1796 0.8956 4.7022 10.7661 14.7044 0.2159 4.1451 0.1319 -7.3471 -3.0941 1.5860 4.3902 -13.2549 -6.0623 3.2573 2.0978 -1.4717 -42.7630 -25.4543 -30.5382 -0.0001 0.0001 107.1491 46.6258 38.3064 11.2813 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.0142 24.0554 7.9228 -56.0611 25.6985 13.2648 -0.0001 -0.0001 -87.7773 -9.5088 -29.7335 -1.3220 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -28.9881 12.9115 31.5253 51.0455 0.0000 0.0000 -27.0697 -11.5026 -0.3856 5.0442 0.0000 0.0000 -10.8698 -7.3465 2.3198 29.5217 0.0000 0.0000 -11.4995 21.9619 -29.9641 -2.6960 0.0000 -0.0000 - -4.9442 1.8949 23.0954 0.4234 3.5907 169.4150 6.3259 1.1139 0.1560 1.8407 1.2056 0.4666 2.6521 6.4716 5.1853 -0.6813 0.7174 0.3723 -4.0265 -16.4380 -5.3917 5.1113 -10.7554 -10.7275 0.4099 -0.0153 -5.8898 -41.6633 -18.0674 -26.7111 -0.0000 0.0001 85.7113 38.0007 30.0513 -3.3829 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5477 10.8265 2.4559 -39.5750 35.4631 -2.1247 -0.0001 -0.0001 -86.0321 -6.6010 -27.4564 -1.3419 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -20.9844 9.8264 7.6689 50.0210 0.0000 0.0000 -26.9950 -7.8832 -0.5078 5.2337 0.0000 0.0000 -20.3904 -18.8846 -0.3109 35.9286 0.0000 0.0000 -1.9676 22.6919 -43.3591 -3.1510 0.0000 -0.0000 - -4.2878 1.9655 23.3085 1.4768 -4.1200 -172.9516 8.5834 1.1880 -0.3569 2.4150 1.5093 -0.1426 2.0480 1.4598 -4.4409 -0.9808 -2.7632 0.9351 -4.7944 -24.7123 -11.3524 4.5611 -6.5765 -14.6138 -4.9295 4.9481 -7.9697 -50.8068 -14.5027 -27.7482 -0.0000 0.0001 58.7177 10.8053 11.1752 -11.2986 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 2.3727 -1.8744 -0.9316 -22.9596 35.8986 -23.9726 -0.0001 -0.0001 -85.7576 -2.3169 -24.7312 -4.6234 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -13.4427 5.9074 -13.3594 46.9576 0.0000 0.0000 -23.6382 -6.2295 0.4169 4.6940 0.0000 0.0000 -27.1957 -21.1509 -13.3202 36.2174 0.0000 0.0000 -1.6108 21.1168 -39.9290 -3.4593 0.0000 -0.0000 - -3.9924 2.0143 23.5135 1.9154 -7.9834 -159.9190 9.5943 2.1446 -1.0690 2.5144 1.6282 -0.5856 1.9467 -2.4890 -10.9175 -0.8886 -5.6534 1.2293 -7.5709 -28.4164 -15.6070 1.8542 -2.0763 -18.3427 -10.5347 7.2660 -5.8707 -73.1070 -0.6073 -27.7318 -0.0000 0.0000 38.9811 -8.4329 7.2972 -17.5723 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.2293 -10.3185 -2.6937 -14.8632 25.3796 -42.2068 -0.0001 -0.0001 -88.3645 4.0992 -22.8979 -7.6785 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -12.4741 2.6430 -19.8611 46.0394 0.0000 0.0000 -19.5293 -6.9426 -1.2284 3.0130 0.0000 0.0000 -29.6436 -18.3444 -27.4602 31.5860 0.0000 0.0000 -6.3033 19.6162 -30.0631 -4.1982 0.0000 -0.0000 - -4.0014 2.0295 23.5078 1.7136 -9.0629 -151.7074 9.9126 2.5915 -1.3354 2.5444 2.0521 -0.8451 2.1228 -4.7974 -14.9197 -0.6601 -7.3165 0.8251 -9.7609 -28.2346 -17.7433 -1.3341 1.3611 -21.5413 -15.3543 7.7331 -4.2420 -89.8703 8.8635 -27.5248 -0.0000 0.0000 47.8701 -14.2267 17.7781 -17.2478 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.3086 -17.1629 -3.0562 -17.6294 13.4899 -51.4217 -0.0001 -0.0001 -92.4881 4.2451 -19.5187 -12.9234 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -13.8572 -0.0647 -12.0707 46.4351 0.0000 0.0000 -19.2002 -8.5075 -6.3719 1.5819 0.0000 0.0000 -30.6309 -15.4520 -35.8072 28.1517 0.0000 0.0000 -9.4029 19.2312 -25.2705 -4.3375 0.0000 -0.0000 - -4.2863 1.9955 23.3184 1.1505 -6.7212 -149.0573 9.8633 3.5717 -1.5613 2.5834 2.4698 -0.8903 3.1128 -5.7340 -16.0263 -0.4955 -7.7050 0.2841 -10.1466 -23.4400 -17.8801 -1.7122 3.5763 -22.3776 -16.2176 6.0071 -5.9855 -90.4059 4.7640 -29.7188 -0.0000 0.0001 72.2261 -16.9963 21.7957 -9.4501 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.6616 -23.5011 -1.2885 -25.4816 8.6110 -52.5270 -0.0001 -0.0001 -95.1004 5.1583 -17.3103 -18.1918 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -12.9978 -0.9615 1.2758 47.1449 0.0000 0.0000 -23.3168 -8.0767 -13.2940 1.8078 0.0000 0.0000 -31.4396 -12.0095 -33.0639 29.7704 0.0000 0.0000 -8.9208 20.3396 -29.7535 -3.9006 0.0000 -0.0000 - -4.8205 1.8755 23.2040 0.6800 -2.8133 -155.5195 9.3264 3.9033 -1.5512 2.4765 2.3308 -0.7106 4.1391 -5.6131 -12.6941 -0.5585 -6.5877 0.4510 -8.3574 -13.8344 -15.0944 1.1607 5.1988 -19.3712 -13.0090 1.1627 -5.9217 -86.4344 -2.0286 -23.1229 -0.0000 0.0001 93.6176 -0.5944 21.1989 -6.7707 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.8442 -25.5204 3.6397 -31.6031 10.9208 -47.3586 -0.0001 -0.0001 -93.6868 13.1328 -20.6876 -19.8099 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -11.9743 1.3631 12.0305 48.1475 0.0000 0.0000 -25.6325 -6.8182 -15.0446 2.3031 0.0000 0.0000 -29.6632 -10.9268 -22.1643 33.1541 0.0000 0.0000 -8.1303 20.3660 -34.1002 -3.9303 0.0000 -0.0000 - -5.6089 1.6915 23.3446 -0.0571 1.3685 -172.4207 8.6968 2.3606 -1.0315 2.4022 1.2630 -0.3309 3.5819 -3.6389 -4.7946 -1.0395 -3.3808 1.0156 -5.3697 -1.3968 -10.0318 4.1981 5.1502 -13.3647 -8.1962 -2.3915 -0.8920 -77.0011 -4.9607 -9.0985 -0.0001 0.0001 107.3123 20.9560 27.5518 -7.8239 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.6239 -23.1981 9.9863 -34.6221 18.0089 -36.8518 -0.0001 -0.0001 -88.7637 20.8256 -27.0969 -18.9676 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -16.8789 7.0304 20.5372 49.7870 0.0000 0.0000 -22.0095 -9.3996 -6.6402 1.7215 0.0000 0.0000 -23.6508 -12.0899 -5.1632 33.5576 0.0000 0.0000 -10.0148 18.9883 -31.2235 -4.0533 0.0000 -0.0000 - -6.5885 1.6814 23.6351 0.0087 7.0391 164.6855 9.5980 0.3391 -0.5562 2.9073 -0.1298 0.2535 0.9476 0.5726 6.7026 -1.8401 1.2402 0.9076 -3.2873 9.9996 -5.0566 5.8616 1.1683 -7.8378 -5.3829 2.9881 5.2250 -58.4190 -2.8250 0.8322 -0.0001 0.0001 112.7046 29.0597 32.7150 0.1218 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.8576 -21.6024 12.8963 -42.0734 23.0450 -16.4109 -0.0001 -0.0001 -84.2258 14.6718 -33.8136 -20.0344 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -27.9737 12.0610 31.5140 49.7462 0.0000 0.0000 -12.0818 -13.9318 8.0835 0.7643 0.0000 0.0000 -14.5746 -9.4539 14.6239 29.3992 0.0000 0.0000 -12.9804 16.9747 -24.0904 -3.5469 0.0000 -0.0000 - -7.3226 1.9858 23.8676 2.2099 11.1233 143.1528 11.5434 -0.8353 -0.6253 3.4893 -0.8207 0.8298 -1.4604 4.0400 17.8234 -2.2327 5.4657 0.1489 -3.6248 16.0434 -0.4071 6.1654 -5.7024 -5.6041 -0.7642 13.9595 6.2029 -42.4015 2.7081 10.0981 -0.0001 0.0001 108.8007 24.6898 26.4779 4.5101 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.0497 -19.1500 11.7580 -56.9191 14.6685 4.5884 -0.0000 -0.0001 -79.1613 -8.6843 -37.8370 -20.0949 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -36.8451 11.7648 40.9421 45.6584 0.0000 0.0000 -2.4555 -15.9288 19.1851 0.6780 0.0000 0.0000 -6.9240 -3.7680 26.4731 22.5190 0.0000 0.0000 -14.0884 15.8837 -19.9837 -4.0273 0.0000 -0.0000 - -7.5428 2.3955 23.8625 4.6750 12.0190 127.0281 12.0422 -0.6613 -0.9993 3.5792 -0.9043 1.1544 -1.7631 6.1663 24.6665 -1.6796 7.0909 -0.2118 -5.2552 16.5931 3.1127 4.3621 -13.5068 -5.2867 7.4238 26.7297 0.0906 -35.6232 10.0265 14.6499 -0.0001 0.0001 102.2948 15.7921 14.5796 2.7898 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.5572 -13.4975 7.8058 -71.2648 -4.0562 8.8580 -0.0000 -0.0001 -69.6729 -24.1065 -37.0121 -10.9953 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -39.4247 9.0300 44.0532 41.6723 0.0000 0.0000 -1.3542 -16.7036 20.9243 1.1997 0.0000 0.0000 -1.3571 0.5809 19.2938 16.2122 0.0000 0.0000 -15.8236 14.9882 -16.6106 -5.6840 0.0000 -0.0000 - -7.3551 2.7043 23.5339 6.6397 10.2719 118.2262 10.7794 0.8824 -1.1990 3.2279 -0.3333 1.2674 -0.3955 7.2733 25.6058 -0.4147 5.6171 0.3912 -5.3947 11.2524 3.9504 0.4947 -19.3116 -5.0423 13.1927 38.3104 -7.3067 -30.0339 9.0847 7.8690 -0.0000 0.0001 99.4292 7.2166 -6.2058 4.2034 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -16.2748 -8.7476 4.1824 -84.9033 -14.6162 -0.4884 -0.0000 -0.0001 -60.9035 -12.7386 -41.2459 4.8230 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -38.1587 7.0570 40.8694 42.5898 0.0000 0.0000 -8.4539 -16.6075 17.2398 2.6851 0.0000 0.0000 3.9068 2.0461 -2.5405 14.0950 0.0000 0.0000 -21.6238 11.0240 -10.2768 -4.3068 0.0000 -0.0000 - -7.1058 2.8535 23.0246 9.0969 8.1526 117.9477 9.8521 4.4325 -1.3403 2.7030 1.1507 1.2973 1.3292 6.9765 21.2661 0.7527 2.4712 1.3318 -3.9632 1.9710 2.8957 -3.9566 -20.2563 -5.8054 15.1654 44.8508 -11.3881 -28.8309 -2.3892 -5.6529 -0.0000 0.0001 94.1349 3.3861 -23.2318 4.4770 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -24.6868 -8.1085 3.1232 -92.4075 -12.3116 -2.0238 -0.0000 -0.0001 -62.7645 10.8319 -52.4891 13.2021 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -37.5534 9.2510 33.5480 48.5424 0.0000 0.0000 -15.4546 -16.1603 17.4906 4.5101 0.0000 0.0000 7.0590 2.4905 -16.2585 16.5629 0.0000 0.0000 -27.4969 8.8651 -12.1156 -2.5121 0.0000 -0.0000 - -6.9369 2.8286 22.5914 11.2209 7.8101 126.0353 11.1298 8.6526 -1.6100 2.7722 2.5832 1.1579 1.9273 5.6501 13.4080 0.6335 -0.3913 1.6092 -3.4960 -5.8870 0.8792 -6.0674 -16.7404 -7.9333 14.6752 37.5221 -12.5945 -42.3482 -5.2881 -16.4481 -0.0000 0.0001 81.9381 9.5655 -25.5894 11.5718 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -26.7452 -5.2056 2.1216 -90.0709 -9.5174 5.2398 -0.0000 -0.0001 -69.5727 17.0173 -53.7428 5.5050 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -38.0389 16.5021 23.8112 55.2172 0.0000 0.0000 -18.2785 -16.5345 22.1624 4.9323 0.0000 0.0000 5.3091 2.3177 -22.5764 21.9958 0.0000 0.0000 -31.4285 11.3603 -20.6700 -1.2876 0.0000 -0.0000 - -6.6678 2.5147 22.4179 8.3841 9.0176 142.2031 12.6426 9.5224 -2.0118 3.3461 2.8266 0.6269 1.3805 4.2570 2.9531 -0.8621 -1.9298 0.3940 -4.9633 -10.5071 -2.1716 -4.6071 -11.4492 -10.4887 6.0399 22.6652 -8.0560 -58.2457 2.5611 -23.0021 -0.0000 0.0001 70.3928 4.6290 -20.4234 24.6818 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -21.3628 1.0836 -1.2532 -82.5846 -6.7240 13.6550 -0.0000 -0.0001 -74.3279 7.2149 -42.7084 0.8763 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -35.8972 23.8518 9.7761 58.3239 0.0000 0.0000 -20.5182 -16.2451 22.4592 4.5233 0.0000 0.0000 -2.7700 -0.3948 -30.9283 28.6453 0.0000 0.0000 -31.5392 14.8637 -26.1140 0.2032 0.0000 0.0000 - -6.0341 2.0473 22.5660 1.6020 6.9279 162.9256 12.6104 6.7439 -2.1893 4.0482 2.4022 -0.2078 0.8371 2.5656 -9.0978 -2.0578 -2.6250 -1.8373 -6.7121 -13.1641 -5.9131 -2.1338 -6.5037 -12.2089 -6.1913 10.0819 -3.8019 -65.9551 10.9930 -32.6541 -0.0000 0.0001 65.3790 -26.9960 -2.5550 28.8532 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -12.3296 2.8184 -6.0073 -71.5022 2.8654 23.1829 -0.0000 -0.0001 -71.6010 -11.6575 -38.9711 -3.7421 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -28.2611 23.8344 -7.0453 56.5182 0.0000 0.0000 -25.2339 -14.0858 12.7001 4.8758 0.0000 0.0000 -13.2755 -5.4490 -39.8920 32.3958 0.0000 0.0000 -26.9344 17.8535 -26.2750 0.1225 0.0000 0.0000 - -5.2547 1.7750 22.9059 -2.2863 2.8532 -178.4121 12.3446 5.4790 -2.6428 4.2860 2.3721 -0.9666 1.5217 -0.7561 -20.5189 -1.4300 -3.5708 -3.2864 -7.6713 -12.7365 -10.4833 -1.6424 -3.0701 -11.4877 -12.8868 -1.3548 -3.6910 -64.2140 17.7803 -42.7167 -0.0000 0.0001 58.2463 -21.1967 22.9547 13.8720 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -6.2700 -2.7118 -9.0852 -55.4508 24.9225 27.6032 -0.0000 -0.0001 -64.0559 -8.0842 -38.8672 12.6351 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -21.2823 18.0720 -15.9382 52.0328 0.0000 0.0000 -28.1434 -10.5085 0.0928 5.5044 0.0000 0.0000 -21.8213 -8.4558 -38.5312 34.4498 0.0000 0.0000 -19.7262 18.9287 -22.8282 -2.5447 0.0000 -0.0000 - -4.6560 1.7100 23.1350 -4.0893 -0.5056 -164.2888 11.7300 6.1222 -3.3043 3.4831 2.6368 -1.3977 3.2530 -5.3404 -28.0122 0.6212 -4.2394 -3.5281 -8.3866 -9.7546 -14.5707 -2.3305 -0.8264 -8.8692 -11.2904 -14.2184 -7.0134 -48.8425 3.4424 -51.0303 -0.0000 0.0000 46.9432 4.5821 27.8878 -8.1676 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.5366 -10.1269 -12.0423 -30.0011 50.3639 11.1684 -0.0000 -0.0001 -63.3777 3.3330 -31.2214 32.9946 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -18.8503 12.1736 -13.1287 49.1620 0.0000 0.0000 -27.9031 -8.8322 -6.6345 4.0186 0.0000 0.0000 -28.9390 -10.3524 -22.6627 39.0044 0.0000 0.0000 -15.5037 16.0140 -14.1350 -3.6795 0.0000 -0.0000 - -4.3239 1.8837 23.0511 -3.4222 -3.2201 -155.6908 10.8654 5.9437 -3.1096 2.6806 2.7635 -1.5221 5.1169 -8.8033 -30.1793 2.5003 -4.4784 -3.4165 -8.5709 -5.9994 -15.3536 -0.7875 -0.2685 -5.6318 -5.0752 -23.8529 -10.7434 -32.9766 -25.5911 -46.0892 -0.0000 0.0000 48.0376 10.8811 9.8908 -3.1358 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7832 -14.5355 -15.2311 15.5975 57.2496 -36.4361 -0.0000 -0.0001 -73.4094 16.7471 -23.4410 44.9566 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -16.3806 6.5745 -2.2918 48.1904 0.0000 0.0000 -28.2857 -9.2526 -5.4443 1.0932 0.0000 0.0000 -32.1406 -14.7111 -6.6620 43.5711 0.0000 0.0000 -16.5038 12.1794 -9.7076 -0.0183 0.0000 -0.0000 - -4.3402 2.1208 22.7874 -1.8449 -3.4676 -153.5774 10.0932 5.5162 -2.6744 2.3190 2.7669 -1.4361 6.4849 -9.5592 -28.0472 2.8554 -4.3276 -3.3469 -7.9966 -4.5663 -11.9846 3.6906 -1.7532 -1.7690 -0.4953 -26.9776 -10.9244 -22.2491 -43.7494 -31.6048 -0.0000 0.0001 53.8656 26.4121 -4.6676 5.3068 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6320 -14.2500 -16.0926 35.4339 44.5159 -66.2962 -0.0001 -0.0001 -83.5321 35.9060 -13.0127 45.2012 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -12.7999 4.0710 8.2726 47.4556 0.0000 0.0000 -30.8927 -10.1025 -2.4546 0.6606 0.0000 0.0000 -32.0306 -18.5212 2.2738 47.4285 0.0000 0.0000 -18.0925 12.0091 -11.3232 1.1946 0.0000 0.0000 - -4.6702 2.2797 22.6677 -0.7956 -2.1460 -159.0394 9.4474 4.8952 -2.3024 2.0674 2.5247 -1.1791 7.0771 -7.7129 -22.7527 1.8289 -3.8008 -2.8847 -7.4542 -5.9376 -7.0145 8.4984 -5.2023 1.8116 -0.9753 -22.6198 -6.1108 -17.8361 -54.0241 -25.1759 -0.0000 0.0001 61.4903 35.3278 -9.3369 6.5080 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.7860 -11.9866 -14.9236 33.8543 38.5086 -74.2150 -0.0001 -0.0001 -93.1177 38.2771 -7.6400 44.1871 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -10.7305 5.4174 14.5134 46.0584 0.0000 0.0000 -32.1392 -11.4372 1.0434 0.9477 0.0000 0.0000 -29.0778 -20.5970 7.4040 50.1325 0.0000 0.0000 -18.6895 13.5768 -11.8725 1.4200 0.0000 0.0000 - -5.2438 2.4088 22.8903 0.1150 0.1292 -171.6280 9.0217 4.3712 -1.8090 1.9240 2.0415 -0.7295 7.1054 -4.6069 -14.4479 0.5547 -3.2553 -1.5180 -7.9090 -7.4899 -4.2177 9.6164 -9.7133 2.1641 -1.8687 -17.0561 0.5967 -15.9302 -53.9500 -21.6592 -0.0000 0.0001 73.5845 38.0816 -4.6027 11.9347 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.0564 -10.4701 -12.6228 23.0313 40.1860 -68.3001 -0.0001 -0.0001 -102.9306 29.9528 -15.2953 47.4184 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.6838 9.3355 20.5838 43.9305 0.0000 0.0000 -28.0080 -13.6226 9.2262 -0.1397 0.0000 -0.0000 -22.0252 -19.9257 13.2671 50.6031 0.0000 0.0000 -18.9539 13.6325 -6.0987 0.9182 0.0000 0.0000 - -5.8553 2.6127 23.4193 1.5164 2.4669 172.4700 8.8408 4.5043 -1.2877 2.1160 1.6022 -0.1777 7.2112 -2.0285 -5.1452 -0.2200 -2.9481 0.4529 -9.8105 -7.7233 -5.4292 5.3669 -12.6342 -2.5560 -0.2230 -9.6354 4.0051 -8.5760 -46.4091 -8.3248 -0.0000 0.0001 85.6672 37.8212 10.6920 12.9698 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -8.0533 -8.3373 -10.2061 -0.8205 36.5472 -48.1901 -0.0001 -0.0001 -108.4681 26.6871 -28.7840 47.3445 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.7006 12.7455 28.7521 41.3508 0.0000 0.0000 -17.6802 -15.6411 20.8025 -1.8257 0.0000 -0.0000 -13.7704 -16.1836 17.8242 47.9973 0.0000 0.0000 -16.3076 12.6296 0.9622 -0.8652 0.0000 -0.0000 - -6.3123 2.8992 24.0495 3.1135 4.1902 157.6507 8.8851 5.4440 -1.2506 2.4086 1.4691 0.2946 7.2343 -0.0642 1.9816 -0.5050 -2.8262 2.0276 -12.1267 -7.7122 -9.0302 -1.2672 -11.6118 -10.3014 0.8674 -1.3010 3.9160 -4.4316 -31.7755 3.7856 -0.0000 0.0001 96.4299 33.4092 19.2111 12.9853 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.5480 -5.6047 -9.5079 -20.8125 17.7877 -28.1558 -0.0001 -0.0001 -104.7396 26.0643 -46.8025 42.2715 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -21.8374 13.7642 32.2736 41.1415 0.0000 0.0000 -5.0820 -15.2499 28.3043 -2.2213 0.0000 -0.0000 -8.0237 -11.0570 13.8758 43.6737 0.0000 0.0000 -9.3665 10.7517 0.6976 -3.3724 0.0000 -0.0000 - -6.5804 3.2488 24.4787 4.7860 5.3325 144.6956 9.2335 6.0402 -1.4130 2.4613 1.6186 0.6634 5.7302 2.1720 7.1048 -0.5400 -2.0070 2.7702 -11.9310 -7.2941 -12.1293 -7.2445 -8.6065 -17.6380 1.1220 4.9808 4.0184 -7.6422 -12.0389 8.9964 -0.0000 0.0001 102.1836 25.2050 30.5695 22.2482 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.2961 -8.3855 -7.3363 -24.1800 -1.9458 -17.8603 -0.0001 -0.0001 -86.5653 19.9363 -66.8636 22.6633 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -29.3086 12.5383 26.9895 47.3894 0.0000 0.0000 4.1555 -11.8123 24.1112 -1.2779 0.0000 -0.0000 -3.1133 -6.1752 1.9084 38.1439 0.0000 0.0000 -4.4450 6.1538 -6.1530 -3.7408 0.0000 -0.0000 - -6.6364 3.6265 24.4803 6.4352 5.8508 134.8484 9.7345 5.3561 -1.5479 2.4234 1.0042 0.7990 2.6454 4.9403 11.4109 -0.5443 -0.2372 2.6922 -7.2460 -3.3127 -13.1557 -11.9698 -7.0133 -22.5468 1.7632 15.2915 3.9823 -14.3016 0.2749 9.2565 -0.0000 0.0001 100.4523 23.1592 37.3518 36.5566 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 1.1411 -15.4514 -1.9470 -19.9992 -14.4713 -13.9222 -0.0000 -0.0000 -56.3220 35.2693 -71.2749 26.7761 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -34.3817 11.7528 15.2532 55.6011 0.0000 0.0000 4.3840 -9.2190 3.4904 1.0927 0.0000 0.0000 2.0939 -3.5971 -11.7045 31.7214 0.0000 0.0000 -4.3819 3.7599 -12.2581 -3.5904 0.0000 -0.0000 - -6.5533 3.9254 24.1118 6.9263 5.9475 130.3626 9.6873 3.5483 -1.7485 1.6042 1.2158 0.9189 1.1908 4.9982 13.0970 -0.3516 2.0743 1.3161 -1.1794 3.8733 -10.9475 -14.6856 -6.9617 -22.1165 -1.3362 31.3521 5.9517 -18.2602 1.8684 2.5260 -0.0000 0.0001 96.8622 39.2455 30.7303 34.0792 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 10.7648 -22.4526 5.5409 -10.5509 -18.5974 -12.4005 -0.0000 -0.0000 -26.8129 27.3699 -66.1634 39.5424 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -34.3942 13.5352 0.4811 58.1993 0.0000 0.0000 -4.5676 -6.0985 -17.4205 2.6810 0.0000 0.0000 5.2508 -5.4286 -21.3944 25.5889 0.0000 0.0000 -5.6932 4.8159 -20.9565 -6.5146 0.0000 -0.0000 - -6.4889 4.1549 23.5215 6.4761 6.0666 129.7452 8.7738 1.7649 -1.8371 1.0336 0.9346 0.7348 0.9893 5.5211 12.1277 0.5116 3.3045 -1.0575 2.0369 9.2264 -4.3840 -14.6728 -7.1351 -15.7278 -17.3173 45.0660 18.6099 -16.3544 -1.4794 -10.1151 -0.0000 0.0001 91.0198 45.8255 23.5046 23.0316 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 13.7295 -29.5284 8.9762 -25.0196 -8.4858 -13.0939 -0.0000 -0.0000 -11.5902 8.0849 -60.3877 46.0225 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -32.4625 16.9319 -12.3343 58.4627 0.0000 0.0000 -14.0961 -1.7707 -22.5519 2.0785 0.0000 0.0000 6.2383 -9.3242 -23.8337 21.1219 0.0000 0.0000 -8.9828 8.1393 -31.3681 -9.4939 0.0000 -0.0000 - -6.4877 4.3842 22.8981 6.4731 6.1193 129.8347 7.9520 1.2507 -1.5717 0.9514 0.7780 0.6168 1.0418 6.3894 11.3835 1.6269 3.7776 -2.6600 3.1651 7.8077 4.1187 -10.2693 -6.1397 -6.4246 -27.3607 46.4537 25.3187 -22.9160 2.1527 -16.8772 -0.0000 0.0001 77.7929 25.0922 19.0336 20.6046 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2731 -41.4327 -8.1040 -57.9129 -3.9416 10.5937 -0.0000 -0.0000 -28.8797 20.9101 -68.0474 66.0779 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -31.9435 20.1918 -17.3923 61.1135 0.0000 0.0000 -21.1656 -0.5972 -17.3454 1.7664 0.0000 0.0000 7.5431 -11.0575 -23.7413 19.5329 0.0000 0.0000 -15.4222 10.7826 -34.8947 -10.7934 0.0000 -0.0000 - -6.4488 4.5649 22.4957 6.7285 5.9851 131.4915 8.0924 1.7321 -1.0177 1.4985 0.6553 0.6726 0.2498 7.0792 12.1374 1.8711 3.5293 -2.8151 4.6171 1.5083 11.0720 -0.7701 -5.2184 0.6120 -21.4589 40.4648 15.5375 -43.5488 9.1719 -11.5806 -0.0000 0.0001 63.9347 -12.7775 18.5059 26.0843 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -21.3486 -39.7803 -17.8439 -56.3197 0.3300 16.1889 -0.0000 -0.0000 -39.7125 34.0084 -73.7255 74.1762 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -32.3284 21.8978 -16.9634 64.7295 0.0000 0.0000 -24.4688 -1.5886 -15.0672 3.3263 0.0000 0.0000 8.6088 -10.8199 -25.7993 20.4044 0.0000 0.0000 -21.1498 9.8934 -31.8553 -11.1606 0.0000 -0.0000 - -6.2900 4.5695 22.5338 6.2246 6.0202 139.0309 9.4056 2.5247 -0.8116 2.5052 0.9982 0.6958 -1.5211 6.8690 11.0117 0.6038 1.6661 -2.0153 7.0626 -4.0289 13.9404 5.8872 -6.9935 2.8972 -15.5577 34.8337 4.2387 -66.6515 10.8369 -7.7091 -0.0000 0.0001 58.1567 -28.3984 28.7744 27.6451 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -13.3504 -17.4126 -4.4738 -28.7540 -6.6589 -16.4194 -0.0000 -0.0000 -21.3622 8.8822 -74.1529 41.5639 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -30.5243 21.9182 -17.2694 65.6384 0.0000 0.0000 -24.3117 -2.9779 -21.7531 3.9320 0.0000 0.0000 4.7357 -11.8723 -24.6926 24.6024 0.0000 0.0000 -19.1763 10.6905 -33.1386 -11.3645 0.0000 -0.0000 - -5.9595 4.3945 22.9553 4.9609 5.2952 153.8587 11.7750 3.4681 -1.1527 3.2726 1.6278 0.3739 -1.8285 4.8706 3.8752 -0.6678 0.3676 -1.3617 7.2245 -10.4982 12.0319 3.9921 -8.0147 2.1680 -12.7522 29.7317 -4.0890 -68.6873 16.2893 -15.3741 -0.0000 0.0001 49.1414 -15.8291 42.8579 15.5131 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.1716 -13.8214 -5.5852 -1.9358 -9.2621 -11.0697 -0.0000 -0.0000 -24.3495 -0.0589 -48.6379 27.9823 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -25.5070 19.2863 -16.2907 63.7597 0.0000 0.0000 -21.3644 -5.0912 -29.5031 2.9767 0.0000 0.0000 -6.0250 -15.4203 -19.3620 32.6017 0.0000 0.0000 -8.6469 15.2056 -39.1171 -10.5730 0.0000 -0.0000 - -5.5043 4.3021 23.4518 4.3551 3.3121 171.3933 14.8639 3.6455 -1.5662 3.7986 1.7752 -0.2755 -0.8634 1.8957 -7.8601 -0.7718 -1.2844 -1.0304 4.5778 -13.2932 4.3353 -3.8016 -8.3795 0.9021 -6.9502 21.4677 -11.6392 -43.3020 11.3433 -31.3136 0.0000 0.0000 34.8422 -0.7531 37.6511 0.8017 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.9152 -14.9247 -3.4829 -4.4083 2.1907 -11.7395 -0.0000 -0.0000 -27.7015 -5.6224 -26.2496 29.7734 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -19.0220 13.4002 -9.2759 61.7261 0.0000 0.0000 -16.1412 -6.5832 -28.6647 2.5100 0.0000 0.0000 -18.7620 -17.7408 -15.2142 40.7729 0.0000 0.0000 3.0842 19.8594 -38.0494 -6.8542 0.0000 -0.0000 - -5.0923 4.4071 23.7453 3.6324 1.3944 -173.5222 16.5180 3.1961 -1.7251 3.8699 1.6978 -0.9437 0.1978 -1.0265 -19.2939 0.1735 -2.9035 -1.1036 1.3574 -12.9198 -5.7511 -12.0299 -8.2704 -3.0836 2.1583 5.7063 -16.8218 -24.3540 -6.1423 -35.7458 0.0000 0.0000 33.6234 15.6000 19.3419 8.1822 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 8.2254 -15.9819 -1.1155 -22.3142 21.9840 -8.4320 -0.0000 -0.0000 -28.9133 -18.5868 -13.5968 40.4587 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -13.6206 6.3107 3.6279 59.3215 0.0000 0.0000 -12.5673 -5.5896 -21.4527 2.5627 0.0000 0.0000 -28.2873 -17.9819 -7.6938 44.7383 0.0000 0.0000 7.1304 20.3694 -32.7906 -3.5447 0.0000 -0.0000 - -4.8166 4.6691 23.6696 2.3830 -0.6131 -162.9660 16.1174 2.5515 -1.5567 3.6121 1.7997 -1.3603 0.9815 -3.5227 -26.6383 1.1861 -3.3948 -1.5553 -1.2316 -12.0795 -13.6886 -17.2922 -5.4290 -8.4472 10.2337 -7.8165 -15.6283 -20.6834 -22.9573 -31.1358 -0.0000 0.0000 38.9637 35.2839 14.1155 0.5482 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 8.5747 -16.5457 -3.6979 -53.5204 36.4006 18.1902 -0.0000 -0.0000 -35.4010 -47.3130 -28.8150 42.9025 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.9635 -0.3476 22.8742 54.6770 0.0000 0.0000 -14.4982 -4.4607 -14.4952 -0.1093 0.0000 -0.0000 -32.6190 -18.5125 3.1254 44.4745 0.0000 0.0000 5.5101 14.3815 -32.3077 -3.0055 0.0000 -0.0000 - -4.7764 4.8592 23.2527 0.7445 -1.1822 -158.4288 14.6172 2.9251 -1.5152 3.2182 1.8237 -1.4267 2.2306 -4.8123 -27.2875 1.5320 -2.8811 -2.3444 -3.2504 -10.1980 -16.1907 -20.2915 -1.0397 -9.1039 12.0971 -11.3302 -13.1882 -21.8688 -42.7391 -25.9260 -0.0000 0.0000 38.9601 32.3738 0.4712 -2.6664 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.6365 -13.9210 -8.6835 -65.7918 40.4347 37.5814 -0.0000 -0.0000 -48.6399 -59.3004 -46.7371 42.8632 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.5140 -0.1722 40.7201 47.8635 0.0000 0.0000 -22.1949 -4.7179 -8.5111 -2.5119 0.0000 -0.0000 -33.9818 -18.2230 11.0926 44.5944 0.0000 0.0000 0.7676 8.6899 -33.9291 -3.4994 0.0000 -0.0000 - -4.8407 4.8404 22.8242 0.0769 -1.7197 -160.4747 13.4228 2.6658 -1.4012 2.6144 1.5230 -1.1743 5.0995 -4.9027 -21.2289 1.5941 -2.1218 -2.4991 -6.0887 -7.0209 -12.0179 -19.8664 1.2949 -3.3317 8.0820 -12.6159 -9.5380 -23.1222 -55.8055 -24.0550 -0.0000 0.0000 40.5605 20.7325 -10.5729 -1.3003 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 5.2209 -9.6602 -11.3662 -58.4206 49.2551 36.1398 -0.0000 -0.0001 -63.1695 -58.9713 -51.7363 52.4156 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -2.1236 4.7828 42.7301 41.1778 0.0000 0.0000 -27.8355 -7.3912 1.6631 -3.1210 0.0000 -0.0000 -35.1771 -20.1956 14.6615 48.2292 0.0000 0.0000 -4.8357 6.1063 -33.3586 -2.3393 0.0000 -0.0000 - -4.9913 4.7423 22.6207 -0.0668 -1.0723 -167.3987 12.1052 2.7904 -1.2600 2.0233 1.1241 -0.7467 8.6009 -2.8736 -12.4024 1.7899 -1.5487 -1.6557 -8.2176 -4.8155 -4.3126 -11.1884 0.3713 3.4355 5.9679 -12.2486 -3.9793 -8.9966 -61.7442 -7.0842 -0.0000 0.0001 49.6235 24.6867 -13.1279 3.9839 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.7361 -6.1604 -7.5361 -35.4026 58.6412 9.2362 -0.0000 -0.0001 -75.5543 -53.4776 -46.8741 57.0489 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -6.6007 11.7489 31.7867 38.8990 0.0000 0.0000 -27.2977 -12.9168 19.3447 -3.6477 0.0000 -0.0000 -34.4699 -23.6923 20.1029 52.5624 0.0000 0.0000 -7.4068 5.3202 -31.6185 -1.2298 0.0000 -0.0000 - -5.2653 4.7864 22.8109 -0.3707 1.5310 -174.4639 9.5384 4.4862 -1.0906 1.5952 1.2637 -0.2465 10.6296 -0.7375 -5.4022 2.2351 -1.2321 -0.7379 -6.9260 -5.6911 0.4476 2.8319 -2.0489 6.6853 8.1530 -11.7782 0.2216 12.2391 -50.8688 22.6817 -0.0000 0.0001 60.6394 39.9253 -5.0977 -0.1226 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 16.4742 0.7759 1.2561 -13.8953 52.7196 -29.3009 -0.0000 -0.0001 -82.6705 -62.3915 -41.9268 38.6976 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -10.8942 18.1098 26.1940 38.2937 0.0000 0.0000 -21.6114 -15.9469 32.1182 -4.4532 0.0000 -0.0000 -30.6013 -24.1741 27.5333 52.5579 0.0000 0.0000 -5.2437 4.6894 -30.3059 -2.4976 0.0000 -0.0000 - -5.6246 5.0391 23.3814 -0.4957 3.6371 -178.0780 6.4561 5.2530 -0.6696 0.8916 1.3651 0.0311 11.1376 0.8185 -2.2049 2.9531 -1.3729 -0.2413 -2.9019 -8.8420 0.6645 13.8952 -5.7038 5.5717 8.3346 -12.2056 1.8972 12.4246 -33.9728 32.5440 -0.0000 0.0001 68.2726 49.6401 -3.2657 -3.1215 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 15.8026 3.5282 3.4028 -12.9647 46.2899 -33.2278 -0.0001 -0.0001 -87.8815 -76.7108 -17.4694 3.3264 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -10.6026 21.9720 23.2910 33.9738 0.0000 0.0000 -13.7667 -16.4963 34.0377 -5.0247 0.0000 -0.0000 -26.3494 -20.7296 30.2678 47.8381 0.0000 0.0000 -0.8108 3.9474 -27.9039 -4.7078 0.0000 -0.0000 - -5.9455 5.4215 23.9897 -0.0453 4.4233 -179.5399 4.2581 4.7858 -0.1995 0.4322 1.3726 0.1360 10.6448 1.3495 -0.9819 3.3684 -1.6402 0.0458 0.3262 -11.5110 -1.9933 16.4541 -7.9436 0.0050 2.6901 -8.7686 2.5255 10.0759 -29.6473 35.0867 -0.0000 0.0001 73.7941 50.5825 4.2723 -0.1293 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 9.6068 1.6394 2.3804 -20.9448 41.8930 -23.5571 -0.0001 -0.0001 -92.4083 -48.7828 -14.1286 -2.4683 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -6.8528 23.9039 12.9989 29.8049 0.0000 0.0000 -7.0057 -17.0058 27.9967 -3.9586 0.0000 -0.0000 -22.3471 -16.9514 29.0493 42.3619 0.0000 0.0000 2.2346 4.3840 -24.2447 -5.2212 0.0000 -0.0000 - -6.1155 5.8088 24.3622 0.9092 4.8000 177.8032 3.4502 4.0235 0.1129 0.3456 1.2351 0.2754 9.7031 2.0836 1.5698 3.1092 -1.7750 0.7167 -0.5502 -12.1379 -6.6651 12.3921 -6.5300 -8.1983 -2.7008 -2.2449 2.8708 5.5674 -33.2850 36.1300 -0.0000 0.0001 77.7702 42.6879 13.9422 2.1848 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 8.3505 1.7589 1.4750 -36.6342 30.2042 -18.1925 -0.0001 -0.0001 -92.3221 -31.0667 -20.1703 0.7807 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4330 24.5553 -2.8530 30.2427 0.0000 0.0000 -4.7513 -17.0313 19.6656 -0.5557 0.0000 -0.0000 -18.0700 -15.5520 29.0089 38.7249 0.0000 0.0000 3.6367 6.1870 -23.4403 -5.0909 0.0000 -0.0000 - -6.1829 6.1319 24.4432 1.6307 6.0705 172.9358 3.7071 4.1811 0.2043 0.4477 1.1983 0.5912 7.8044 3.2779 6.5426 2.2084 -1.6497 2.0700 -3.7464 -10.3109 -12.0405 4.8760 -4.0989 -16.5155 -4.9502 4.0027 2.8236 -3.3463 -35.6994 34.4260 -0.0000 0.0001 80.3823 36.6023 18.0396 2.2776 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.9425 -1.5627 -1.3166 -50.4630 19.6013 -14.8454 -0.0001 -0.0001 -86.7587 -13.5222 -21.4290 5.2455 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -5.6621 25.2914 -14.1481 33.8101 0.0000 0.0000 -7.7610 -16.2365 8.3889 1.9183 0.0000 0.0000 -14.3646 -14.3513 27.4106 35.8963 0.0000 0.0000 4.7278 8.8271 -26.4773 -6.6821 0.0000 -0.0000 - -6.2543 6.4038 24.2824 2.1553 7.7645 167.1898 4.7460 4.9511 0.1600 0.7424 1.3534 0.9811 5.0414 4.0024 12.1970 0.9040 -1.4262 3.6801 -6.0979 -6.0381 -15.7360 -5.3782 -1.5645 -22.7808 -5.1784 9.0932 1.9590 -14.5665 -34.6030 31.2660 -0.0000 0.0001 81.8054 40.3379 18.3697 1.1105 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 4.1431 -7.1454 -5.2193 -57.2614 9.9508 -12.7479 -0.0000 -0.0001 -74.6788 18.7224 -25.3022 8.8741 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.2274 25.7001 -17.7420 37.2805 0.0000 0.0000 -13.5314 -14.4642 -5.3073 2.9226 0.0000 0.0000 -11.6367 -11.3136 18.3540 33.0177 0.0000 0.0000 2.4515 12.4070 -27.1955 -8.2293 0.0000 -0.0000 - -6.3278 6.6169 24.0024 2.7016 8.7040 162.4598 6.0770 5.3705 0.1186 1.2502 1.5496 1.2355 3.1573 3.9885 16.1082 -0.1427 -1.0193 4.7073 -8.1728 0.2265 -15.9974 -15.8534 1.1280 -24.0866 -5.4028 14.3408 1.2441 -27.3386 -33.7331 26.2369 -0.0000 0.0001 83.9109 43.8482 15.0332 0.5955 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.2532 -11.6566 -8.4376 -58.6475 0.9322 -12.5017 -0.0000 -0.0000 -57.2827 29.5139 -38.7346 10.1529 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -12.8408 25.1948 -14.6212 40.1947 0.0000 0.0000 -18.5200 -12.5297 -15.5157 3.9074 0.0000 0.0000 -9.3396 -8.1458 7.6604 31.4921 0.0000 0.0000 -4.1155 15.3918 -21.7452 -7.5731 0.0000 -0.0000 - -6.2885 6.7260 23.8715 2.7940 9.1689 161.2123 6.9154 5.7830 0.0081 1.6573 1.6172 1.2709 3.1947 4.0897 16.8446 -0.4598 -0.3451 4.5534 -11.2990 6.5981 -13.4198 -22.6423 1.2557 -20.5211 -6.8430 19.2834 2.2500 -42.9363 -34.9836 14.0993 -0.0000 0.0001 88.0764 30.8109 8.1738 2.2762 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.1592 -17.2137 -9.5534 -64.2541 -0.0622 -8.9527 -0.0000 -0.0000 -46.2704 11.5272 -41.6480 5.7997 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -14.0355 24.4577 -10.7746 41.3933 0.0000 0.0000 -20.9791 -12.0915 -20.1458 4.8288 0.0000 0.0000 -7.8597 -7.3549 5.7974 29.8719 0.0000 0.0000 -6.6022 16.4263 -20.3404 -7.0807 0.0000 -0.0000 - -6.0487 6.7177 24.0381 0.5685 8.9744 165.0817 6.1009 5.7678 -0.0880 1.4341 1.7455 1.1512 4.0686 4.3982 14.7420 -0.3838 0.3004 3.6006 -13.7303 9.7107 -10.3353 -22.4561 -0.4748 -15.9067 -7.8676 20.4844 4.0538 -60.3075 -35.1213 -3.7637 -0.0000 0.0001 91.8286 1.9469 3.1145 5.5374 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.6152 -24.6019 -9.5084 -81.8433 6.3727 2.9523 -0.0000 -0.0000 -53.1828 -14.3332 -30.3949 4.5936 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.6163 22.7007 -12.5402 38.6463 0.0000 0.0000 -20.6484 -11.5896 -21.9940 5.1033 0.0000 0.0000 -8.9103 -9.8172 10.3824 26.4346 0.0000 0.0000 -1.5546 15.5985 -28.5372 -7.2638 0.0000 -0.0000 - -5.6582 6.7093 24.3644 -3.7206 6.8971 172.2104 3.7796 4.6391 -0.0253 0.7109 2.1649 0.9854 4.2930 4.2680 11.5802 -0.3679 0.4670 2.6698 -12.9544 9.1860 -8.3158 -15.1856 -1.9956 -12.4423 -6.2334 16.1877 3.9267 -73.1225 -34.6831 -16.8901 -0.0000 0.0001 91.5506 -37.0864 -4.3897 14.6373 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.3497 -25.7648 -8.5614 -94.7948 12.7156 12.5503 -0.0000 -0.0001 -66.3447 -32.7654 -18.4003 2.2939 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.0349 18.2503 -17.1488 32.4024 0.0000 0.0000 -18.1647 -10.0542 -22.8248 4.8743 0.0000 0.0000 -11.8544 -13.2773 11.3398 21.0653 0.0000 0.0000 4.5006 13.1928 -36.2863 -7.0635 0.0000 -0.0000 - -5.2915 6.8463 24.6103 -6.9603 3.5321 178.6353 1.1431 2.9730 0.1149 -0.0973 2.6232 0.8429 4.3072 3.8885 8.5921 -0.2250 0.4228 1.9019 -10.1098 6.8997 -6.4433 -3.0812 -4.1149 -9.2716 -4.3012 9.3696 3.0655 -74.7515 -36.8954 -22.8987 -0.0000 0.0001 87.1042 -76.9699 -24.0579 15.6712 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -6.3471 -19.9204 -7.7839 -93.2871 21.0906 15.6301 -0.0000 -0.0001 -76.1771 -44.6884 2.2841 -7.7587 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -7.1499 13.0093 -16.8668 26.2528 0.0000 0.0000 -15.2863 -9.0152 -21.6002 4.9279 0.0000 0.0000 -13.5626 -15.2422 6.1331 15.9060 0.0000 0.0000 5.6096 13.2493 -32.2267 -6.3295 0.0000 -0.0000 - -5.0689 7.1083 24.6657 -7.8016 1.1076 -176.7864 -1.0687 2.2104 0.1812 -0.9882 2.6297 0.7259 5.3706 3.8336 6.0525 0.3038 0.4162 1.1816 -7.1498 3.7242 -4.1220 9.3772 -6.5906 -5.5878 -3.3496 2.1877 2.7224 -61.0531 -39.6770 -19.6958 -0.0000 0.0001 80.0726 -95.1587 -30.1523 3.9454 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.2468 -10.3734 -4.9939 -78.9730 31.6471 10.8622 -0.0000 -0.0001 -79.5894 -52.0780 21.7869 -13.5971 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -3.7222 10.6287 -11.2310 22.6615 0.0000 0.0000 -13.5943 -9.8492 -17.4777 4.6802 0.0000 0.0000 -14.3275 -15.4669 5.4610 16.2645 0.0000 0.0000 2.2538 14.1338 -22.1749 -5.5301 0.0000 -0.0000 - -4.9669 7.3983 24.4475 -6.4768 -0.1984 -172.5942 -1.7479 2.5002 0.1965 -1.5300 2.1037 0.5877 6.8217 3.9170 4.0575 0.7173 0.1702 0.5879 -4.4246 -0.3697 -2.6059 16.0732 -7.8651 -3.3210 -1.4566 -5.0546 2.6868 -36.6542 -37.6812 -6.9905 -0.0000 0.0001 74.3665 -70.0800 -18.4834 2.7860 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.7724 -0.2513 -1.1510 -53.4759 39.1716 -4.1996 -0.0000 -0.0001 -77.2226 -59.8473 24.6936 -8.0512 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.2295 10.8985 -4.8592 22.0833 0.0000 0.0000 -13.5452 -12.3909 -11.1835 2.5937 0.0000 0.0000 -17.0861 -16.3579 12.7819 25.5790 0.0000 0.0000 -3.3524 13.1972 -16.8896 -3.4132 0.0000 -0.0000 - -4.9275 7.6810 23.8830 -3.1386 -2.0413 -168.6419 -0.1538 1.7385 0.2104 -1.0568 1.5494 0.4446 7.3855 3.4422 2.9055 0.6507 -0.4474 0.3897 -3.6256 -4.2164 -3.1325 14.5272 -7.1917 -4.0251 1.6676 -10.4225 2.3979 -13.7536 -30.4271 5.1526 -0.0000 0.0001 71.5995 -20.4369 -9.5664 -4.0138 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2170 7.0122 0.1572 -23.8395 36.7495 -22.6935 -0.0000 -0.0001 -72.4195 -48.3208 6.6561 0.6870 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.2124 10.4423 0.4630 26.5229 0.0000 0.0000 -15.5645 -15.2606 -3.8401 -1.3376 0.0000 -0.0000 -21.1307 -20.0413 14.4006 39.3571 0.0000 0.0000 -9.9912 11.4754 -13.6222 -0.7043 0.0000 -0.0000 - -5.0202 7.9247 23.2299 0.2351 -2.6059 -166.9212 1.8418 1.1204 0.1953 -0.4146 1.1934 0.3687 8.5381 2.6122 2.8109 0.6297 -1.2220 0.6899 -6.7178 -5.6049 -5.4732 8.4480 -5.0525 -6.1598 4.1259 -13.6141 1.9747 -1.9705 -22.5541 11.1018 -0.0000 0.0001 72.8260 25.4277 -29.0463 -7.8486 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9924 11.8225 -0.8818 -1.7873 25.9839 -33.3769 -0.0000 -0.0001 -67.3846 -7.4211 8.8934 15.0196 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.5369 11.3774 2.2576 34.9313 0.0000 0.0000 -17.5620 -17.6104 4.9987 -5.7097 0.0000 -0.0000 -23.1261 -22.2404 11.9219 49.0597 0.0000 0.0000 -15.2555 10.3681 -12.6804 0.7467 0.0000 0.0000 - -5.2504 8.1558 22.9214 1.6662 -1.8756 -168.9435 2.1174 1.1331 0.1024 -0.5120 0.8659 0.3567 10.8990 2.0061 3.1987 1.2199 -1.7346 1.1037 -11.2796 -5.0433 -7.7452 1.5683 -2.7842 -8.1277 4.4401 -15.0331 1.9118 0.1318 -20.1989 12.1168 -0.0000 0.0001 77.4911 33.5021 -34.1320 -7.2382 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 5.8132 15.7817 -2.0809 9.3096 15.2694 -33.9784 -0.0000 -0.0001 -66.2967 30.0053 29.9747 6.8885 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.0570 14.2979 3.1935 40.4981 0.0000 0.0000 -16.4553 -19.0336 11.8828 -9.7715 0.0000 -0.0000 -21.4880 -22.0283 11.7803 52.1863 0.0000 0.0000 -18.3494 10.8675 -11.7935 1.5552 0.0000 0.0000 - -5.5364 8.4477 23.1999 1.4347 -1.8424 -173.8056 0.8281 0.1741 0.0616 -1.1242 0.3747 0.2686 12.8615 1.8497 3.4164 2.2057 -1.7961 1.0766 -13.8382 -4.8365 -8.8006 -5.1545 -1.2613 -9.8500 3.0296 -14.7450 1.9540 -3.6827 -22.1293 10.1482 -0.0000 0.0001 83.3075 17.5686 -21.4405 -3.7863 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 6.4162 17.8297 -2.4423 12.1405 15.0198 -26.6491 -0.0000 -0.0001 -70.1039 29.1307 25.4639 -0.3563 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.0481 16.0162 5.8444 38.2424 0.0000 0.0000 -10.6977 -19.1738 15.8652 -11.7954 0.0000 -0.0000 -17.4756 -21.1352 14.0284 49.9804 0.0000 0.0000 -17.9736 12.2337 -7.8283 1.3716 0.0000 0.0000 - -5.7648 8.7557 23.8783 -0.0245 -2.5007 179.9326 -0.9116 -1.2637 0.1551 -1.7358 -0.2723 0.1557 13.1233 1.5835 3.8418 2.7395 -1.6044 1.0573 -12.9863 -5.6823 -9.1983 -8.9349 -0.5023 -11.5367 1.9062 -12.6790 1.7907 -9.4077 -21.6990 9.5530 -0.0000 0.0001 89.6698 -0.8434 -19.2692 3.1906 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.9136 17.0716 -1.1373 6.1948 20.3594 -17.1917 -0.0000 -0.0001 -77.2676 11.2232 19.4974 -1.3328 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0848 16.2812 8.4842 32.0053 0.0000 0.0000 -2.0497 -17.6127 18.8014 -9.2367 0.0000 -0.0000 -13.5760 -20.2814 16.4780 44.6861 0.0000 0.0000 -13.6587 12.0383 -3.4713 -0.7390 0.0000 -0.0000 - -5.8535 9.0231 24.6296 -1.2531 -2.7189 172.7761 -2.1336 -1.8805 0.3221 -2.0299 -1.0076 0.1209 12.3456 1.3171 5.4729 2.8259 -1.5914 1.6396 -9.4670 -7.0849 -9.4355 -6.6114 -0.6272 -13.1766 0.3785 -9.2507 1.6934 -16.3506 -17.5079 10.7522 -0.0000 0.0001 94.5521 -1.4420 -24.0477 5.5913 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 2.5095 13.8955 0.0123 -4.9027 20.6306 -9.8680 -0.0001 -0.0001 -84.3930 3.4954 20.3065 -0.4561 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.3913 16.1859 7.8055 31.1363 0.0000 0.0000 4.1319 -14.1030 19.9929 -3.5778 0.0000 -0.0000 -10.1883 -19.3500 15.8683 38.9227 0.0000 0.0000 -5.4681 10.6832 -2.7683 -4.4723 0.0000 -0.0000 - -5.8047 9.2803 25.1937 -0.9010 -1.9592 164.8254 -2.4631 -1.3744 0.5247 -1.8944 -1.4708 0.2319 10.7722 1.6093 8.3922 3.0303 -1.7508 2.6714 -2.9761 -9.5456 -9.3083 -0.3051 -1.3851 -15.0305 -3.5376 -4.6894 1.6748 -21.2645 -13.1180 13.8097 -0.0000 0.0001 94.3640 6.0426 -24.7102 6.4683 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.1875 10.9600 -0.7064 -16.1964 12.0721 -8.8428 -0.0001 -0.0001 -83.9692 10.6886 15.1684 -4.5054 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.9923 16.4199 4.2978 36.4423 0.0000 0.0000 4.5505 -9.6410 15.2559 1.2128 0.0000 0.0000 -7.5115 -17.7878 9.0118 36.7974 0.0000 0.0000 4.6306 10.0982 -5.9823 -7.0423 0.0000 -0.0000 - -5.6539 9.5354 25.3531 -0.0192 -1.0557 156.7087 -2.0898 -0.7404 0.6395 -1.4229 -1.3735 0.4477 7.2914 2.0843 11.8955 2.9881 -1.6331 3.7462 7.3468 -13.3169 -8.4088 4.6748 -2.3160 -17.4856 -7.8380 1.5559 0.8071 -21.4404 -11.5058 18.7396 -0.0000 0.0001 88.0704 5.7904 -16.0339 3.2088 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.7203 5.4121 -2.6923 -23.5040 4.8542 -12.8864 -0.0000 -0.0001 -74.0681 7.6456 -0.1749 -3.9576 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.4919 15.8587 1.6296 39.0241 0.0000 0.0000 1.5833 -5.5810 5.4091 3.4754 0.0000 0.0000 -6.6801 -17.3129 1.8517 40.0761 0.0000 0.0000 9.9514 8.4100 -12.6707 -3.9822 0.0000 -0.0000 - -5.4739 9.7185 25.0609 -0.0506 -0.3068 149.7341 -1.4156 -0.2818 0.5989 -1.0422 -0.7832 0.6594 3.3451 2.1476 14.2897 2.3544 -1.5276 4.1694 16.8813 -15.1773 -7.0301 5.8441 -3.7586 -19.6139 -7.7382 7.1308 -1.1363 -22.5765 -7.7766 26.6203 -0.0000 0.0001 76.9636 8.5611 -2.6285 -0.0048 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.1766 -2.6577 -4.9236 -31.4986 3.0360 -16.3858 -0.0000 -0.0001 -60.8306 -1.7682 -12.2143 -0.6889 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.6745 14.3584 1.5100 36.1480 0.0000 0.0000 -1.1674 -4.3610 -1.4722 3.6485 0.0000 0.0000 -7.2792 -20.0644 0.7380 43.6263 0.0000 0.0000 6.7637 7.8803 -16.0101 -1.8584 0.0000 -0.0000 - -5.3686 9.8133 24.4329 0.0206 0.7760 145.4695 -0.1051 1.0599 0.3997 -0.7128 -0.0099 0.7311 1.1459 2.5332 13.2808 1.7061 -1.6197 3.3916 19.1404 -13.9345 -6.0758 4.0614 -4.5026 -19.9405 -4.3014 9.7030 -1.8838 -29.3054 0.7696 33.1966 -0.0000 0.0001 65.8661 19.8350 5.6613 -5.1513 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -10.2359 -10.3430 -7.3861 -45.0229 2.5059 -17.8600 -0.0000 -0.0000 -47.9253 -5.5044 -24.1892 -0.6977 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -17.5134 14.4648 4.6199 35.5814 0.0000 0.0000 -4.9552 -9.3691 -3.2696 3.4335 0.0000 0.0000 -7.6776 -23.8517 1.8460 40.8250 0.0000 0.0000 0.2417 9.0326 -11.5566 -3.3966 0.0000 -0.0000 - -5.4426 9.9188 23.5943 0.7922 1.5810 143.9324 2.5650 2.4543 -0.1893 -0.0025 0.9874 0.6347 0.2343 3.0886 8.9462 1.0668 -1.4568 1.8779 14.9299 -12.0992 -5.1397 0.2451 -3.3719 -17.9495 -2.2815 11.7132 0.5737 -40.2589 5.6279 33.2019 -0.0000 0.0001 60.1150 28.8540 5.5519 -7.0839 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -14.8947 -17.6278 -11.7148 -60.9733 0.3091 -16.6915 -0.0000 -0.0000 -40.6003 -6.9312 -36.1839 -4.7825 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -21.6232 16.5808 8.3650 43.0865 0.0000 0.0000 -10.1186 -17.0787 -0.9719 3.6119 0.0000 0.0000 -6.7560 -26.4477 0.9057 30.4176 0.0000 0.0000 -1.2705 9.0497 -6.4745 -2.8129 0.0000 -0.0000 - -5.7192 10.1833 22.6005 1.7526 1.4765 142.6175 6.1391 2.3739 -0.9914 1.1615 1.6965 0.4249 -0.6947 2.9892 4.8350 0.0812 -0.9432 0.8675 9.0520 -10.0686 -4.5305 -4.8585 -1.6356 -14.3102 -3.7275 16.3438 3.9886 -51.5886 2.3447 26.6742 -0.0000 0.0001 59.8389 28.3281 7.5975 -7.1193 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.9116 -24.9898 -16.6897 -69.9559 -2.5511 -11.0417 -0.0000 -0.0000 -42.6942 -5.8234 -53.9248 -6.2739 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -27.1944 18.8461 11.6013 53.7459 0.0000 0.0000 -13.7852 -21.3580 3.2076 3.2907 0.0000 0.0000 -5.6823 -28.4492 -4.6754 22.8909 0.0000 0.0000 0.3472 14.1959 -5.6163 -1.6372 0.0000 -0.0000 - -6.0488 10.5607 21.7449 2.9790 0.8288 139.0730 9.3465 2.0220 -1.1797 2.3910 1.3004 0.3466 -1.1481 2.6336 4.2607 -0.8194 -0.5813 0.9275 2.9655 -7.0379 -4.7096 -9.7281 -0.4143 -10.8967 -10.1183 22.8809 5.8129 -59.7158 -6.3286 13.9759 -0.0000 0.0001 65.4637 25.0992 16.5527 -7.1593 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -22.1619 -29.4441 -18.8727 -68.6545 -2.1048 -0.7992 -0.0000 -0.0000 -53.6031 -11.1023 -71.5885 -16.0493 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -31.3491 19.1336 16.9045 60.4558 0.0000 0.0000 -16.1299 -22.8183 5.4478 2.2690 0.0000 0.0000 -5.3603 -29.8409 -7.6863 26.5851 0.0000 0.0000 -2.3523 22.5458 -8.9892 -3.2914 0.0000 -0.0000 - -6.3009 10.9234 21.3580 3.5824 0.1227 134.3716 10.3634 1.3325 -0.8419 3.1141 0.2751 0.3993 -0.1243 2.4343 6.9704 -1.0887 -0.5433 1.4070 -2.4039 -2.3936 -4.8139 -10.1775 -0.5315 -9.1904 -19.4764 28.5022 8.5451 -65.6616 -14.3955 -5.2229 -0.0000 0.0001 76.8073 24.5249 32.5700 0.8603 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -20.8337 -24.6116 -14.9757 -62.7431 4.2591 3.9585 -0.0000 -0.0001 -66.6420 -13.0919 -63.9988 -29.7754 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -32.6448 17.6129 22.5699 61.2151 0.0000 0.0000 -17.2564 -24.3411 6.0033 1.8101 0.0000 0.0000 -3.9691 -30.8400 -3.4373 32.8595 0.0000 0.0000 -5.0086 26.8491 -13.8433 -6.2700 0.0000 -0.0000 - -6.3211 11.1784 21.7443 3.6580 0.0069 132.4312 8.6303 0.4611 -0.4698 2.7202 -0.7998 0.3492 2.3364 2.8796 8.8293 -0.4285 -0.2315 1.2614 -4.4550 0.1664 -3.6445 -5.5878 -1.5971 -8.5138 -21.2617 22.0827 9.8057 -73.7279 -13.7055 -17.8843 -0.0000 0.0001 89.1193 18.8343 46.5555 17.1560 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -14.6392 -9.7650 -8.8039 -53.9756 12.0601 -4.9322 -0.0000 -0.0001 -69.0309 5.6890 -48.7068 -20.5193 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -30.6945 16.9969 24.4583 57.4594 0.0000 0.0000 -15.3223 -24.5213 5.6567 1.8842 0.0000 0.0000 -1.1439 -30.2524 0.5423 30.8163 0.0000 0.0000 -1.6790 25.3700 -15.1440 -8.0209 0.0000 -0.0000 - -6.1031 11.2937 22.7318 2.3995 0.5667 135.9057 4.9330 -0.8085 -0.4989 1.2788 -0.9071 0.1408 4.3314 2.6769 6.7358 0.8648 0.0166 0.6624 -2.8410 0.2144 -2.6854 1.5421 -3.6321 -6.8565 -16.8021 7.7935 9.1063 -81.9699 -9.9307 -26.1425 -0.0000 0.0001 97.4193 16.2514 54.9170 18.4232 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -9.3335 3.2050 -6.8237 -37.9610 18.3614 -15.3136 -0.0000 -0.0000 -53.6081 18.0045 -49.1913 -9.1824 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -27.2187 17.2282 20.0769 52.1808 0.0000 0.0000 -9.5431 -21.4209 3.5207 1.4156 0.0000 0.0000 -1.1723 -28.9557 -0.6532 22.9792 0.0000 0.0000 7.2180 19.5520 -12.4072 -6.0910 0.0000 -0.0000 - -5.7038 11.3181 23.8203 0.6662 0.3405 143.6525 1.6508 -1.1043 -0.6664 -0.1231 -0.1977 -0.1119 5.4334 0.6330 0.8493 1.7592 -0.2914 0.0041 -0.2234 0.3847 -3.0343 9.0511 -5.9829 -3.6209 -11.9258 -6.7055 6.1987 -85.8959 -10.2959 -33.6375 -0.0000 0.0001 95.3797 7.9179 54.0348 11.9514 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -6.8508 8.6543 -7.6985 -23.7640 27.4841 -19.8228 -0.0000 -0.0000 -28.6904 17.3301 -37.3747 8.1363 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -21.9407 16.6038 12.0661 46.8013 0.0000 0.0000 -2.7108 -17.6878 -1.3832 0.8859 0.0000 0.0000 -7.2420 -28.5435 0.1056 23.3213 0.0000 0.0000 12.7039 11.1410 -10.4605 -2.1666 0.0000 -0.0000 - -5.1993 11.3824 24.5717 0.2274 -1.2470 151.9244 0.3678 0.3651 -0.7022 -0.7640 0.5801 -0.3812 6.0527 -2.5702 -6.1871 2.0300 -0.8370 -0.7295 0.3009 -0.0785 -3.6810 14.9293 -6.7271 -0.4247 -10.3345 -17.1712 1.0778 -82.4771 -15.8888 -40.4904 -0.0000 0.0001 87.8481 -20.2202 40.7674 8.7128 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -5.4749 11.7980 -10.5640 -29.6826 37.4179 -5.8464 -0.0000 -0.0000 -17.2276 3.1055 -15.5103 12.2553 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -14.8936 14.5541 5.5841 41.6690 0.0000 0.0000 1.1205 -15.9657 -6.5474 1.0601 0.0000 0.0000 -16.8267 -28.7803 5.0714 36.9669 0.0000 0.0000 7.2424 4.8387 -10.1936 -1.4124 0.0000 -0.0000 - -4.7239 11.5999 24.7437 0.5951 -4.4216 157.2238 0.7884 0.1515 -0.7729 -0.6075 1.3233 -0.5807 5.6025 -4.8233 -10.5171 1.8032 -1.6040 -1.1305 -1.1056 -1.4837 -3.9820 16.0274 -5.5979 0.7507 -9.5210 -19.8835 -2.9625 -77.6727 -20.7578 -48.1590 -0.0000 0.0001 81.7295 -55.7219 36.3215 -8.9544 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.6597 14.0990 -9.6219 -38.3299 44.0989 10.4917 -0.0000 -0.0000 -20.0221 0.3476 -12.6981 14.9112 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.3497 10.5604 4.1346 38.1244 0.0000 0.0000 0.6652 -14.6518 -9.1215 1.6842 0.0000 0.0000 -22.3432 -30.5974 10.4117 51.6741 0.0000 0.0000 -0.1550 5.1693 -11.9624 -4.4201 0.0000 -0.0000 - -4.3473 11.8276 24.4659 0.9240 -6.8990 159.9561 1.4282 -0.4973 -0.8241 -0.4287 1.3957 -0.6370 5.2013 -5.6077 -10.9329 1.3777 -2.5468 -0.9678 -4.0380 -2.5756 -4.1106 10.6385 -4.3895 -0.1777 -7.7227 -19.7671 -3.6151 -72.2781 -25.1073 -53.3780 -0.0000 0.0001 79.8889 -67.9833 44.0698 -14.5029 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.7051 16.8247 -6.7895 -33.7634 48.9787 12.6479 -0.0000 -0.0000 -30.5328 5.1134 -13.6091 15.6384 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.8154 7.2793 6.8782 37.7449 0.0000 0.0000 -2.4896 -13.2628 -9.7618 1.6638 0.0000 0.0000 -22.1346 -31.0336 16.8947 57.3013 0.0000 0.0000 -2.1145 7.3870 -14.7706 -6.5498 0.0000 -0.0000 - -4.0904 11.9238 23.9008 0.7345 -7.9972 162.8309 1.4195 -0.5745 -0.8765 -0.5677 1.0928 -0.6119 6.0189 -6.3243 -9.7034 1.0243 -3.2976 -0.6407 -8.1383 -1.8503 -4.4551 1.1831 -4.0814 -1.7729 -6.4505 -20.6210 -2.6281 -70.3370 -27.8656 -55.2029 -0.0000 0.0001 90.3660 -70.4629 53.4101 -3.1268 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 5.9349 19.4845 -4.5209 -28.5360 49.2511 7.4071 -0.0000 -0.0000 -40.9089 14.3931 -11.1631 14.6371 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3947 5.9574 8.1626 40.8976 0.0000 0.0000 -7.1784 -14.2226 -8.8418 -0.4787 0.0000 -0.0000 -20.4158 -29.1311 20.9853 55.4519 0.0000 0.0000 -6.8349 7.9888 -14.6294 -3.9042 0.0000 -0.0000 - -3.9198 11.8944 23.4010 1.0770 -8.4283 166.5006 1.1779 -0.2026 -0.9394 -0.7306 1.0922 -0.5547 8.1894 -7.2763 -8.9856 1.0793 -3.5700 -0.4914 -11.7813 -1.1796 -5.0592 -8.2368 -4.1869 -3.2285 -7.8503 -21.2113 -1.6832 -70.4200 -29.8630 -52.3221 -0.0000 0.0001 102.1213 -62.7240 50.0225 1.3934 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.9611 18.6276 -3.8669 -31.0062 48.6821 7.5303 -0.0000 -0.0000 -51.3846 20.1412 -10.3734 17.3939 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3380 6.1431 5.9826 44.3368 0.0000 0.0000 -10.8945 -17.9949 -6.7320 -4.0713 0.0000 -0.0000 -19.0867 -27.0243 20.6819 52.0684 0.0000 0.0000 -16.4155 6.9727 -12.6462 1.1879 0.0000 0.0000 - -3.7879 11.7985 23.4480 2.1829 -8.4890 168.3045 1.2688 -0.1308 -0.8653 -0.7567 1.4039 -0.3981 10.3433 -6.9384 -7.8709 1.4548 -3.5207 -0.3373 -13.2072 -2.5531 -5.9309 -12.7696 -4.0285 -4.3925 -10.5638 -19.4763 -0.7597 -70.0501 -33.8902 -47.5620 -0.0001 0.0001 108.1807 -63.1005 41.8624 1.4910 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.6028 15.5484 -5.1911 -35.6016 47.8497 12.5996 -0.0000 -0.0001 -65.1863 23.6841 -18.8666 21.1251 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.6877 6.1145 4.6838 44.9936 0.0000 0.0000 -9.8756 -19.7073 -6.2437 -5.8881 0.0000 -0.0000 -17.1308 -26.7502 20.6121 49.4134 0.0000 0.0000 -18.8548 6.3705 -12.9855 2.7342 0.0000 0.0000 - -3.7028 11.6304 24.1723 2.1260 -7.3345 166.2716 0.9153 -0.3412 -0.5937 -0.9384 1.2742 -0.1976 10.7929 -4.5336 -5.1804 1.6353 -2.9329 -0.0333 -11.9844 -4.3306 -6.2650 -10.2800 -3.9909 -5.5366 -12.0911 -16.0806 1.3752 -68.0373 -41.6137 -43.5743 -0.0001 0.0001 111.2138 -59.7815 38.7060 10.0750 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.1341 12.7677 -5.6781 -38.8541 47.9802 16.0903 -0.0000 -0.0001 -78.8530 25.8157 -26.7209 21.5895 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.0215 5.5667 7.1022 43.2391 0.0000 0.0000 -3.3305 -15.6739 -8.9362 -3.7680 0.0000 -0.0000 -13.8024 -26.0874 24.9545 43.4054 0.0000 0.0000 -8.8183 6.5868 -15.1011 0.2956 0.0000 0.0000 - -3.7185 11.3668 25.1801 0.0987 -4.1955 162.0839 -0.4881 0.0636 -0.2991 -1.3894 0.2513 -0.1151 9.2867 -1.6091 -1.6852 1.2713 -1.3162 0.1530 -8.3636 -4.5321 -5.1797 -3.2901 -4.4618 -6.3539 -14.5325 -13.0818 4.3859 -60.6104 -50.7633 -35.0463 -0.0001 0.0001 110.7964 -33.8583 35.4539 18.5474 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3803 9.5546 -3.3576 -39.2443 53.7079 13.4492 -0.0001 -0.0001 -86.2962 28.5194 -34.5863 20.6064 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.8065 6.2829 9.3627 41.1216 0.0000 0.0000 4.5223 -9.7783 -9.9723 0.9662 0.0000 0.0000 -9.7782 -20.7639 30.4133 30.0237 0.0000 0.0000 4.2804 7.7120 -13.6124 -1.9979 0.0000 -0.0000 - -3.7648 11.0314 25.9261 -2.8331 -1.9967 158.4965 -1.7811 -0.8979 -0.2888 -1.4523 -0.9639 -0.1746 6.0501 0.3043 1.4104 0.5599 0.7201 0.0292 -2.4696 -3.0689 -3.2577 4.8160 -5.2917 -6.2568 -19.8647 -10.7982 6.8736 -38.7508 -55.4848 -10.2354 -0.0001 0.0001 102.2122 -0.6010 31.5746 16.4024 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.0559 7.0410 -1.9063 -30.8673 59.3717 -4.0672 -0.0000 -0.0001 -80.7867 35.9327 -51.3888 13.6585 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -16.2364 5.9901 7.1764 39.5372 0.0000 0.0000 7.4940 -6.3844 -4.4850 3.9149 0.0000 0.0000 -6.0657 -13.7926 28.1579 13.8655 0.0000 0.0000 8.0183 10.9405 -5.9193 -1.9606 0.0000 -0.0000 - -3.7012 10.6230 26.1980 -5.1947 -1.3617 156.3063 -1.9458 -2.0070 -0.4464 -0.9774 -1.4938 -0.1879 2.4869 1.1128 3.2021 -0.1912 1.6525 -0.2434 2.9483 -1.6077 -1.8319 10.8881 -5.9775 -5.6975 -24.9621 -8.2633 8.7310 -10.1781 -46.0731 25.6608 -0.0000 0.0001 82.0310 12.6712 23.6314 11.5354 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -11.5791 5.8671 -6.0702 -17.3177 51.8821 -29.3274 -0.0000 -0.0001 -61.4567 34.9598 -59.1815 -0.1770 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -21.1530 3.3920 2.8913 36.0656 0.0000 0.0000 8.1446 -7.0833 4.6527 4.2309 0.0000 0.0000 -4.0735 -10.1808 21.9184 7.5763 0.0000 0.0000 2.1111 10.9096 1.0851 -1.2080 0.0000 -0.0000 - -3.6104 10.2997 25.9854 -4.9943 0.6949 154.9131 -0.7858 -0.3571 -0.5968 -0.4758 -0.9622 -0.0903 0.5698 1.8570 3.3006 -0.8435 1.6291 -0.5435 3.6121 -1.7295 -1.2946 11.8209 -5.9562 -5.5874 -25.3079 -2.8983 11.0570 -0.1331 -22.4365 49.8483 -0.0000 0.0001 56.6866 9.0044 10.0784 5.5979 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -14.5461 3.2693 -12.8296 -6.2576 26.8924 -49.8622 -0.0000 -0.0000 -34.4415 26.3438 -46.3873 -1.2938 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -22.7023 1.8514 1.8348 30.3216 0.0000 0.0000 9.0491 -8.2785 10.0785 3.9056 0.0000 0.0000 -2.2830 -5.4143 22.9821 10.7535 0.0000 0.0000 -4.2114 7.0708 -0.2035 -2.0621 0.0000 -0.0000 - -3.4971 10.1444 25.2785 -4.3201 2.1578 153.6680 0.7544 1.0047 -0.6294 -0.1216 -0.3793 -0.0371 0.1181 2.5952 2.1145 -1.3978 1.7041 -0.9933 -0.6888 -3.2615 -1.2352 7.4537 -4.5228 -5.7111 -22.2871 7.2731 12.9874 -5.3942 0.5890 60.4109 -0.0000 0.0000 39.7873 4.9694 -7.9015 3.2439 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -17.7628 -5.7435 -17.6540 -1.7335 3.8598 -57.0088 -0.0000 -0.0000 -19.6388 16.6474 -10.8373 -4.8537 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -23.0964 0.1160 3.6159 28.1802 0.0000 0.0000 3.9738 -6.2298 8.9690 4.3439 0.0000 0.0000 0.6191 -0.9560 25.2423 15.1111 0.0000 0.0000 -10.3482 3.2576 1.2484 -2.4278 0.0000 -0.0000 - -3.3713 10.1776 24.5011 -3.5632 2.6229 152.7099 1.7227 1.7855 -0.3751 0.2243 -0.3542 -0.1173 0.7009 3.1491 0.2339 -1.8098 1.7746 -1.4101 -5.4164 -5.2785 -1.3233 0.3125 -2.2971 -5.0407 -18.4130 11.6592 9.0477 -17.7917 7.0543 65.8064 0.0000 0.0000 34.2338 9.3324 -13.8579 3.9595 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -16.9919 -12.6583 -14.4042 -11.1908 3.7036 -61.1649 -0.0000 -0.0000 -21.3927 15.9806 7.5278 -7.9485 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -23.5845 -0.1825 2.3899 31.7603 0.0000 0.0000 -6.3032 -1.7622 8.9967 5.3709 0.0000 0.0000 4.9189 2.7886 23.8628 14.5475 0.0000 0.0000 -16.4648 1.9608 8.3565 -1.1805 0.0000 -0.0000 - -3.2188 10.3251 24.2627 -2.0068 3.1363 152.6390 1.4804 3.4094 0.0173 0.5738 -0.1498 -0.2052 1.8778 3.2717 -1.8630 -1.7015 1.5995 -1.6206 -6.7887 -7.8311 -1.3879 -5.1522 -0.8312 -3.9810 -13.8963 3.1325 3.5275 -30.8118 -9.5579 66.6563 -0.0000 0.0000 43.7958 26.4179 -0.2647 -5.4734 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -15.2834 -13.5700 -7.1051 -20.5716 28.7119 -59.9307 -0.0000 -0.0000 -43.8677 19.2625 -0.7695 6.9143 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -22.8645 2.2436 -1.7145 35.1084 0.0000 0.0000 -11.8957 0.1664 12.9044 5.2779 0.0000 0.0000 8.5865 5.1470 21.2108 11.5397 0.0000 0.0000 -17.4044 2.5743 13.2612 -0.6837 0.0000 -0.0000 - -3.0254 10.3496 24.7797 -0.8556 3.4023 154.0259 0.4175 4.8218 0.1422 0.3118 0.7502 -0.1028 3.0541 3.2669 -3.5696 -0.7302 0.4803 -1.3741 -5.1731 -9.0094 -2.0176 -5.9464 -1.1918 -4.1901 -22.7969 6.7952 1.4331 -28.1448 -45.8010 42.0502 -0.0000 0.0001 74.5737 24.3974 15.6210 1.1716 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -16.7757 -11.1970 -5.5642 -15.1456 43.2703 -52.7156 -0.0000 -0.0001 -67.8355 26.2029 -28.9352 3.1278 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -20.4198 4.0584 -4.9903 32.0158 0.0000 0.0000 -5.6825 -1.1319 15.9944 4.1324 0.0000 0.0000 6.4202 3.4089 21.5659 16.1024 0.0000 0.0000 -10.8724 4.5031 10.4908 -2.6742 0.0000 -0.0000 - -2.8356 10.1651 25.5214 -1.3468 2.3014 156.0975 0.0735 4.2066 -0.3193 -0.1728 1.1479 0.0136 2.3091 3.2667 -3.8637 -0.0993 -0.1490 -1.3268 -1.5773 -8.1655 -3.1601 -2.6543 -2.8487 -5.5193 -23.0129 9.0333 4.4019 -44.9086 -55.0597 -0.0745 -0.0000 0.0001 100.3566 7.8034 33.6958 23.3784 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -17.4060 -9.4640 -8.9497 -13.7115 52.0915 -33.5134 -0.0001 -0.0001 -85.1883 33.1153 -53.9600 -15.5227 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -17.1670 2.5154 -5.1255 23.2789 0.0000 0.0000 7.2209 -6.0750 15.4610 3.5304 0.0000 0.0000 -1.8555 -2.9459 23.6093 29.4689 0.0000 0.0000 -3.2686 4.4303 3.7720 -4.8638 0.0000 -0.0000 - -2.7276 10.0091 25.9523 -1.2842 0.6490 157.0648 0.8934 2.6360 -0.4959 -0.1417 0.9804 -0.0058 1.0249 2.6039 -3.0301 -0.1241 0.2735 -1.2906 0.8289 -5.0889 -4.7392 2.6016 -4.3922 -6.3467 -15.7655 7.0486 6.6311 -69.0998 -46.0330 -36.6828 -0.0001 0.0001 114.6838 -0.9835 56.2692 35.7577 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.1806 -6.2992 -12.0738 -30.5049 55.5780 0.8529 -0.0001 -0.0001 -96.8573 15.1971 -67.6014 -47.1233 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -14.1236 0.9290 -1.5161 18.5782 0.0000 0.0000 11.9532 -12.1684 11.8361 4.1583 0.0000 0.0000 -9.1087 -8.8582 23.8627 40.1205 0.0000 0.0000 -0.9112 4.3852 1.0926 -5.3137 0.0000 -0.0000 - -2.6305 9.9620 26.0482 -0.4980 -1.2095 157.7094 1.5480 0.8698 -0.3012 -0.1882 0.5470 -0.0696 1.2879 1.5927 -2.2170 -0.0698 0.7498 -0.9975 1.2995 -0.7224 -6.2223 7.3445 -4.5690 -6.4283 -7.8350 -1.9127 5.8182 -81.4793 -26.0535 -48.2130 -0.0001 0.0001 117.9125 15.2202 54.8116 17.1819 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.9865 2.9121 -10.1931 -41.8775 45.3547 20.6141 -0.0001 -0.0001 -104.0378 24.5390 -62.7250 -24.4846 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -12.7950 0.3975 3.2877 24.2399 0.0000 0.0000 3.7792 -11.7518 3.5858 4.0813 0.0000 0.0000 -14.0800 -13.6894 22.3344 42.3548 0.0000 0.0000 -0.4872 5.3389 2.2306 -4.5320 0.0000 -0.0000 - -2.5402 10.0817 25.6887 1.1279 -2.2992 158.5454 1.4181 -0.3257 -0.1327 -0.3635 0.1413 -0.1171 2.7603 0.4643 -1.4800 0.1487 1.0039 -0.6151 0.6273 4.5632 -6.8351 10.3770 -3.6988 -6.7265 -2.6905 -12.5168 2.8122 -89.3845 -10.3677 -44.4500 -0.0001 0.0001 114.2811 25.2530 37.0777 10.4939 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.4952 12.1392 -6.9706 -45.9907 31.9330 27.2390 -0.0001 -0.0001 -106.0421 20.1484 -42.4852 -11.1317 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -11.2627 2.0984 7.9096 34.9221 0.0000 0.0000 -4.7483 -5.3523 -5.8632 2.8796 0.0000 0.0000 -16.6167 -16.5629 17.8412 36.2001 0.0000 0.0000 4.8897 5.2740 4.3289 -2.9120 0.0000 -0.0000 - -2.4961 10.2580 24.7078 3.3873 -3.6648 157.9340 2.1030 -2.2252 0.0741 -0.1314 -0.4804 -0.1562 4.1403 -0.0879 0.0963 0.0281 1.4299 -0.3374 -1.2238 8.9430 -6.4882 9.3481 -2.3566 -7.5601 -2.0122 -17.3056 -1.9438 -94.9455 -6.2927 -41.0309 -0.0001 0.0001 111.3202 22.0770 33.4656 10.4857 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.5019 14.7929 -3.9681 -45.5377 22.9515 33.7582 -0.0001 -0.0001 -106.6324 13.8257 -27.1872 -11.1895 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -7.7432 5.6027 12.1844 42.6591 0.0000 0.0000 -8.9576 -4.4713 -8.6803 1.1594 0.0000 0.0000 -17.2048 -20.3855 10.4683 31.0144 0.0000 0.0000 9.9907 7.7500 2.1653 -1.0820 0.0000 -0.0000 - -2.4888 10.1856 23.2914 5.3993 -6.4232 155.3445 5.1135 -4.7642 0.2706 1.1395 -1.5836 -0.1999 4.4880 -0.0239 2.8602 -0.7405 2.2561 0.0113 -4.4902 9.9364 -6.4329 3.5035 -0.8449 -8.0750 -5.8331 -16.3916 -5.4767 -96.6342 -7.3467 -42.3412 -0.0001 0.0001 113.7934 15.0527 45.3109 8.2174 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.1321 12.0119 0.3655 -44.7608 15.9951 41.1249 -0.0001 -0.0001 -112.7480 25.9198 -9.7740 -8.7508 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -5.0994 8.9211 14.3342 46.8741 0.0000 0.0000 -16.3692 -11.4003 -2.4534 0.0639 0.0000 0.0000 -17.9663 -27.8176 4.7211 34.1464 0.0000 0.0000 6.2162 15.3795 -9.6299 1.2366 0.0000 0.0000 - -2.4924 9.6987 22.0974 5.8661 -9.4390 152.9319 8.7764 -6.1488 0.4497 3.2938 -2.3067 -0.1926 3.7370 -0.3158 5.5077 -1.9738 2.4507 0.6143 -8.0762 8.2737 -6.9774 -3.9681 -0.1377 -8.1429 -11.6267 -13.8624 -4.6794 -94.8293 -7.1316 -43.6094 -0.0001 0.0001 120.2444 5.1157 59.2082 14.1451 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.9542 6.6265 4.1507 -51.0741 8.4358 43.9425 -0.0001 -0.0000 -120.8230 32.9277 12.5853 -10.3062 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.6640 10.0614 12.9091 49.0967 0.0000 0.0000 -24.7488 -20.1905 5.5399 1.5247 0.0000 0.0000 -18.7584 -35.8361 3.5870 37.1801 0.0000 0.0000 3.2158 23.5443 -24.7352 4.5387 0.0000 0.0000 - -2.5651 8.8698 21.9165 4.1879 -9.4200 153.1280 9.6422 -4.6454 0.3066 4.5869 -2.2831 -0.1110 3.5768 -1.3251 6.1494 -2.9466 1.3319 1.2947 -11.7819 6.5313 -7.4522 -9.4775 -0.8083 -8.5365 -15.8185 -13.3868 -1.5231 -91.0252 -7.5684 -42.1109 -0.0001 0.0001 125.7134 -0.7572 62.8039 21.8942 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -13.6849 3.3817 3.9930 -57.4420 5.3731 41.3182 -0.0001 -0.0000 -123.8364 27.6822 19.6408 -4.4789 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -8.3523 9.7576 9.5573 47.7007 0.0000 0.0000 -27.9501 -20.8033 7.5167 3.3323 0.0000 0.0000 -19.9885 -37.3606 3.9991 32.2992 0.0000 0.0000 5.2172 25.3419 -28.0473 4.7307 0.0000 0.0000 - -2.8407 8.0567 22.7589 0.7235 -6.3926 154.9324 7.4876 -3.0169 0.0036 3.7339 -1.4823 -0.0869 4.5049 -2.1451 5.6901 -2.9328 0.3966 1.6868 -15.1184 5.4422 -7.5085 -11.7212 -2.5528 -9.5457 -16.0259 -11.9806 0.3476 -87.4324 -11.7440 -38.7258 -0.0001 0.0001 127.5822 -5.9987 62.3220 26.9569 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -15.1459 2.9745 1.5853 -60.7803 7.0527 35.6382 -0.0001 -0.0000 -120.2777 13.7473 17.5985 -4.5495 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -10.3939 10.3921 7.1367 39.2244 0.0000 0.0000 -22.1594 -17.1633 5.9894 3.8118 0.0000 0.0000 -18.2984 -31.8248 5.2718 17.4442 0.0000 0.0000 8.8371 23.0246 -16.7380 1.8309 0.0000 0.0000 - -3.3085 7.4757 23.7276 -4.3251 -4.5354 155.0999 4.7396 -5.8496 0.1202 2.3260 -0.1867 -0.1334 3.1084 -1.8101 6.5873 -2.1541 0.5650 1.9459 -15.0959 4.2660 -7.3517 -11.1246 -5.3641 -10.7470 -14.6632 -4.4437 0.8446 -82.9044 -15.1881 -34.8731 -0.0001 0.0001 123.6437 -1.9151 60.3010 26.9913 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -11.7569 -0.1284 -1.2046 -62.5450 9.2947 27.3766 -0.0001 -0.0001 -107.8640 -9.5384 25.4907 -13.2089 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -10.5019 11.0936 3.8924 24.6375 0.0000 0.0000 -10.0172 -20.0071 8.2881 4.4937 0.0000 0.0000 -15.9506 -27.7935 5.4309 4.3109 0.0000 0.0000 9.8211 21.9376 -4.0160 0.9041 0.0000 0.0000 - -3.7399 6.7975 24.3147 -8.1448 -1.3094 153.7428 3.2062 -4.4090 0.1714 1.5344 -0.6010 0.0024 0.1795 -1.4152 8.4031 -2.1266 0.5726 2.3747 -12.6139 1.2957 -7.1037 -9.0563 -8.8743 -11.3953 -15.9614 4.7287 2.6856 -73.8829 -11.8186 -26.7985 -0.0001 0.0001 110.5295 15.9500 51.8526 18.3995 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.3544 -3.2092 -4.1331 -61.8219 6.4953 12.0918 -0.0001 -0.0001 -86.0721 -21.4650 27.4816 -12.2479 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -11.3582 13.9448 -2.5264 12.7189 0.0000 0.0000 0.3708 -25.5467 15.1046 5.0322 0.0000 0.0000 -17.6299 -25.5576 9.4484 6.0218 0.0000 0.0000 8.1869 22.4813 -6.5530 0.1849 0.0000 0.0000 - -4.0521 6.0370 24.4848 -9.0914 0.4821 151.9223 4.0970 -0.8369 0.1108 1.6581 -1.3744 0.1490 -2.0434 -1.7390 9.4092 -2.6712 0.2239 2.8347 -10.0048 -4.0229 -6.3861 -5.3920 -11.0860 -10.9296 -16.9499 10.9846 5.7488 -60.8057 -3.1421 -13.6354 -0.0000 0.0001 87.8123 21.7956 42.0911 14.1791 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -8.2782 -6.3223 -7.7309 -56.3024 -2.3702 -4.2282 -0.0000 -0.0000 -58.6224 -13.7145 10.5468 -8.5592 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.2379 16.4634 -4.4978 11.7383 0.0000 0.0000 -0.6187 -25.4506 15.0439 5.4477 0.0000 0.0000 -20.7155 -27.0158 10.1655 20.5034 0.0000 0.0000 5.2684 18.2993 -12.3020 -1.2556 0.0000 -0.0000 - -4.3808 5.4347 24.1633 -8.8783 -0.8634 150.3323 5.7621 -0.5425 0.0453 1.9059 -0.9164 0.1312 -2.3757 -2.4102 8.4784 -2.8739 -0.4754 3.3324 -7.6449 -8.6966 -5.9420 -0.9333 -10.0512 -9.1901 -12.1286 18.3696 6.3783 -47.4931 6.7450 -3.2714 -0.0000 0.0001 61.6038 18.3088 30.5735 7.9010 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.4356 -12.5662 -8.9422 -44.2440 -15.7160 -10.3646 -0.0000 -0.0000 -35.9269 17.9385 -2.1554 4.2312 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -13.8177 18.1433 -0.0029 16.7325 0.0000 0.0000 -5.4107 -20.8208 9.0011 5.3255 0.0000 0.0000 -21.4174 -30.7551 5.2291 35.2006 0.0000 0.0000 2.3908 12.0872 -8.2031 -2.1012 0.0000 -0.0000 - -4.6504 4.9044 23.4259 -9.3770 -1.1012 150.8925 5.5858 0.0936 -0.0643 1.2811 -0.6591 0.0641 -1.2945 -2.3289 5.1211 -2.0595 -1.3022 3.3417 -5.8394 -11.6183 -7.3899 -0.4830 -6.1119 -6.8810 -1.9618 21.4701 0.7641 -43.2287 19.1464 6.3846 -0.0000 0.0000 42.2416 16.2767 -1.5251 -0.4917 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.0573 -18.0140 -6.8758 -38.5027 -26.6917 -5.7049 -0.0000 -0.0000 -32.0176 36.7679 -1.2903 9.4977 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -12.9042 21.7752 3.1828 19.4257 0.0000 0.0000 -4.2851 -20.0582 6.5222 4.4175 0.0000 0.0000 -20.2771 -34.6445 5.2916 40.7526 0.0000 0.0000 1.2120 14.3037 -3.6457 -2.9101 0.0000 -0.0000 - -4.8041 4.2728 22.3900 -12.1296 -0.1567 154.0788 3.6688 0.9365 -0.0673 0.2374 -0.5939 -0.0301 -0.4124 -1.9944 0.8992 -0.8039 -1.5127 2.5742 -5.1530 -13.5461 -9.6869 -5.6719 -1.4137 -5.9412 3.5707 13.5548 -4.0253 -55.4627 33.2105 23.3893 0.0000 0.0000 27.3674 11.6934 -20.4648 -2.5894 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.1746 -23.8279 -8.8381 -53.3068 -29.6424 -0.5759 -0.0000 -0.0000 -50.2623 40.8788 3.1013 10.3820 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -11.6073 25.3102 1.3920 18.4217 0.0000 0.0000 -4.2826 -25.7385 5.2820 3.5498 0.0000 0.0000 -22.6035 -39.7481 9.9063 40.0746 0.0000 0.0000 -1.5800 23.1282 -6.5502 -2.5316 0.0000 -0.0000 - -4.9235 3.5387 21.3544 -15.2162 -0.5385 157.3743 3.0012 0.3247 -0.1552 0.0838 -0.1559 -0.1687 0.0161 -2.3151 -1.6209 -0.3230 -1.5184 1.8585 -7.7601 -12.5451 -11.0304 -11.5564 1.4918 -7.2655 -4.1820 7.6838 0.0264 -79.8279 29.8033 36.3158 -0.0000 0.0000 39.2863 24.1975 -11.6749 -15.7261 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.5451 -20.4611 -6.3296 -67.8207 -27.1447 -12.1674 -0.0000 -0.0000 -59.2005 19.6062 -17.1632 3.2002 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -11.5427 25.8700 -0.8550 18.2775 0.0000 0.0000 -12.2412 -32.1217 0.1224 3.9738 0.0000 0.0000 -28.9011 -44.7958 12.3893 39.6931 0.0000 0.0000 -2.7532 31.8810 -14.7191 0.9762 0.0000 0.0000 - -5.0664 2.8250 20.8636 -16.3114 -2.7487 156.8602 5.4897 -1.5770 -0.2202 1.6888 0.0574 -0.2900 0.0063 -3.3098 -0.5292 -1.4440 -1.8024 1.9716 -13.7507 -7.1644 -10.9139 -14.7418 1.6940 -9.8816 -17.5879 12.8932 1.0339 -86.9379 14.7043 24.3184 -0.0000 0.0001 65.8113 14.2361 18.5997 -1.7323 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.8715 -12.5048 -2.8671 -70.9806 -21.7824 -21.6783 -0.0000 -0.0000 -56.3856 1.8681 -48.8851 -19.8697 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -13.9674 23.5871 0.2564 20.1291 0.0000 0.0000 -18.2658 -34.3084 -2.4521 4.7167 0.0000 0.0000 -34.5819 -47.9072 6.8626 42.3149 0.0000 0.0000 -5.5712 35.5520 -14.3078 3.7234 0.0000 0.0000 - -5.1863 2.3059 21.2652 -15.4490 -4.3384 152.9032 8.9567 -2.0622 -0.2974 3.8340 -0.3594 -0.3019 0.0572 -3.5086 2.2764 -3.2684 -2.2809 2.6490 -17.8116 -1.5522 -10.3464 -18.7996 0.3783 -11.7376 -25.7231 26.4144 3.7257 -85.3898 13.0648 -9.7065 -0.0000 0.0001 89.1614 -7.8820 26.5860 17.5914 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.7603 -11.2259 -4.5274 -67.4040 -19.6033 -9.9369 -0.0000 -0.0000 -50.6496 -7.7368 -70.3006 -33.0416 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -16.2086 21.2163 1.3226 19.5135 0.0000 0.0000 -9.8121 -33.5691 3.9194 3.9439 0.0000 0.0000 -31.7134 -48.1159 3.6349 41.6721 0.0000 0.0000 -6.4402 34.2059 -6.5069 2.4136 0.0000 0.0000 - -5.1806 2.0336 22.3754 -13.7591 -3.2051 150.5481 10.0236 0.0445 -0.9082 3.8362 -0.5084 -0.2130 0.7252 -2.0094 1.8380 -3.6435 -2.3805 2.3066 -16.4357 -2.4668 -10.2498 -26.4107 -0.8428 -11.6839 -15.8576 23.2572 3.1012 -84.2283 15.1464 -29.3329 -0.0000 0.0001 85.1002 -16.0761 39.5832 20.3942 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.4092 -13.5039 -6.3492 -62.2963 -14.4122 6.0450 -0.0000 -0.0000 -37.8766 24.5012 -58.5683 8.0714 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -15.7206 21.1900 -2.6191 14.8034 0.0000 0.0000 6.3723 -29.1248 10.6787 3.2022 0.0000 0.0000 -21.2683 -43.8692 8.3664 30.4552 0.0000 0.0000 1.1023 30.6417 -0.8287 -0.1389 0.0000 -0.0000 - -5.2197 1.8048 23.5708 -14.0348 -0.7433 151.4820 8.0465 1.0057 -1.6561 2.4609 0.7826 -0.3456 1.3120 -1.0150 -0.7678 -2.3993 -1.7711 1.3826 -13.6502 -6.6773 -10.2041 -31.1396 -2.3461 -10.6174 -0.2069 12.6826 2.0306 -78.7704 9.0551 -34.1294 -0.0000 0.0001 68.2773 -3.7936 19.4785 -2.9235 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.3455 -11.1367 -6.1133 -52.4363 -6.7637 9.0655 -0.0000 -0.0000 -22.5985 6.8743 -23.7270 0.3805 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -17.6035 21.1908 -8.9733 14.0522 0.0000 0.0000 14.6127 -23.1112 8.6452 4.5116 0.0000 0.0000 -14.3694 -37.7267 17.0686 14.6419 0.0000 0.0000 12.0548 23.1603 -1.1346 0.8542 0.0000 0.0000 - -5.2958 1.3763 24.6181 -15.4260 0.6626 152.8344 6.8601 0.9441 -1.9848 1.4821 1.9228 -0.3262 1.6510 -1.0854 -2.3148 -1.3505 -1.4087 0.6225 -14.5580 -9.0593 -10.3564 -29.3025 -4.3851 -8.9439 9.8565 3.7927 2.5707 -62.2475 -3.9023 -30.7817 -0.0000 0.0001 60.5709 -2.8437 3.8711 -3.2350 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 8.1086 -6.2439 -7.6408 -25.0482 4.7765 6.7421 -0.0000 -0.0000 -19.4570 6.0779 -5.5767 -2.1204 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -24.5650 18.4792 -9.6475 22.7219 0.0000 0.0000 12.2609 -18.2620 1.6142 5.7904 0.0000 0.0000 -16.1003 -33.2045 26.4538 12.7682 0.0000 0.0000 13.2660 13.8373 -4.5041 2.1819 0.0000 0.0000 - -5.3216 0.9174 25.2903 -14.0600 2.1576 152.2534 8.7518 3.2713 -2.3059 1.4462 1.3582 -0.1561 1.1949 -0.4838 -2.1603 -1.1260 -1.3347 0.2845 -17.6567 -10.6291 -10.5414 -23.3372 -5.3284 -6.5033 13.3045 0.4208 4.3368 -43.3746 -19.2095 -27.5656 -0.0000 0.0001 72.8611 20.7240 -7.3794 -7.2141 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 8.7863 -2.2547 -9.3642 -5.8847 15.5561 -1.5031 -0.0000 -0.0000 -31.0562 26.3783 -1.9991 -2.2989 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -30.5336 14.9124 -7.6947 33.7064 0.0000 0.0000 9.0281 -15.3424 1.3108 4.3429 0.0000 0.0000 -19.1825 -29.1517 31.9211 26.6883 0.0000 0.0000 3.6568 7.6276 -3.2862 -0.1119 0.0000 -0.0000 - -5.4417 0.6675 25.2042 -11.8647 2.0798 150.3490 10.8995 3.3651 -2.3855 1.6591 1.1641 -0.1536 0.5539 0.0259 -2.0793 -1.5149 -1.2961 0.0068 -17.6472 -11.2503 -9.1193 -16.5877 -4.9365 -4.3778 12.9497 2.5091 6.2189 -32.2207 -33.0630 -20.9553 -0.0000 0.0001 89.8657 32.6994 -22.9290 -2.0494 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 11.2726 1.4128 -8.6646 -5.1285 28.1568 -11.1067 -0.0000 -0.0000 -43.8081 33.4825 -2.5359 -1.4951 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -31.0324 10.1967 -7.0509 38.8598 0.0000 0.0000 5.9093 -14.7272 5.4406 1.1992 0.0000 0.0000 -18.2705 -25.0171 35.6579 40.1343 0.0000 0.0000 -4.9747 5.4844 0.4152 -2.9644 0.0000 -0.0000 - -5.5561 0.5002 24.6412 -10.9399 2.0626 149.7793 10.5227 2.8976 -2.0687 1.6298 1.0448 -0.2205 1.5100 0.4287 -3.3884 -1.5702 -1.4497 -0.7390 -17.5223 -11.9107 -7.9350 -8.9284 -4.0265 -3.4964 8.7289 1.1175 8.4800 -27.7931 -37.2356 -14.6871 -0.0001 0.0001 107.1564 22.1478 -30.4422 2.4131 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 12.1549 8.1959 -7.7606 -6.3174 36.9548 -16.0066 -0.0000 -0.0000 -60.3656 26.7332 -0.6382 -5.5549 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -28.4776 6.7352 -6.7926 37.6122 0.0000 0.0000 -2.6596 -14.4490 4.4260 -0.2087 0.0000 -0.0000 -15.7829 -19.0864 37.3193 43.0807 0.0000 0.0000 -11.8782 6.8442 5.8861 -3.6168 0.0000 -0.0000 - -5.6821 0.3858 24.1639 -10.3195 2.9188 149.2727 8.5710 3.4327 -1.9042 1.5008 0.9011 -0.2488 4.9458 0.6300 -3.9551 -1.6999 -1.7843 -1.1979 -20.4346 -11.7956 -8.1911 -0.0222 -4.2433 -4.3685 3.0524 -3.7819 8.7099 -28.3449 -35.8742 -9.9467 -0.0001 0.0001 121.0635 1.7799 -23.7099 2.6142 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 10.4586 16.9973 -8.3855 -2.4042 37.0010 -18.5638 -0.0000 -0.0001 -81.6710 20.1228 8.6451 -5.9060 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -26.2031 6.2821 -6.1228 34.5407 0.0000 0.0000 -11.8304 -11.6198 0.0781 1.2581 0.0000 0.0000 -13.3256 -12.4776 35.4899 38.3826 0.0000 0.0000 -20.6630 8.3537 15.6604 -1.5884 0.0000 -0.0000 - -5.7490 0.3117 24.3093 -9.8056 2.7822 147.0439 7.0355 3.7350 -1.6372 1.4662 0.8815 -0.1840 9.1617 0.5970 -2.7416 -2.3499 -2.4175 -0.8999 -23.8120 -10.8603 -8.9694 6.4282 -5.4585 -5.9312 0.6511 -6.9207 6.0846 -31.4026 -37.2496 -5.0864 -0.0001 0.0001 125.2264 -19.8443 -21.4453 8.8637 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 7.8701 20.7926 -8.8370 2.9819 37.0822 -20.2133 -0.0001 -0.0001 -98.9015 12.9714 18.0031 -3.0533 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -24.6171 6.5889 -5.8387 31.3392 0.0000 0.0000 -10.1470 -11.2844 2.1675 2.3994 0.0000 0.0000 -10.7801 -9.9505 33.6849 32.6229 0.0000 0.0000 -22.5711 8.5962 22.5365 -0.7532 0.0000 -0.0000 - -5.6752 0.2559 25.0677 -10.1744 1.4717 145.3292 6.2534 3.4010 -1.3757 1.3008 1.1671 -0.0992 10.6042 -0.0499 -1.7580 -2.0236 -3.2234 -0.3940 -23.6868 -10.4289 -9.5136 7.6968 -5.4695 -6.8868 2.7868 -6.9007 3.7310 -35.4489 -39.0843 -3.6184 -0.0001 0.0001 119.5151 -37.6227 -35.6465 14.5066 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 5.4300 17.3165 -7.2069 4.2038 40.2021 -19.3832 -0.0001 -0.0001 -108.1374 5.4305 24.8367 -4.3758 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -21.6308 6.4366 -7.7336 24.1867 0.0000 0.0000 4.5445 -16.3000 13.8785 1.7720 0.0000 0.0000 -10.1388 -13.9410 35.9379 32.4408 0.0000 0.0000 -11.0575 11.8932 15.7040 -4.0522 0.0000 -0.0000 - -5.5288 0.2479 25.8202 -10.2272 1.3401 146.5114 5.5563 4.2834 -1.3781 0.9359 1.3852 -0.1353 8.7773 -0.9969 -2.8071 -0.6545 -3.4826 -0.3225 -18.5994 -11.0197 -9.5264 4.4124 -3.6397 -7.3305 4.1594 -3.9662 2.2781 -34.7742 -36.1241 -3.2263 -0.0001 0.0001 108.7289 -35.7614 -40.5867 13.6546 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 5.9046 10.1950 -4.5611 -6.9385 39.1269 -13.5009 -0.0001 -0.0001 -110.1869 1.1145 31.8427 -6.3349 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -16.2656 7.6475 -11.5882 12.6877 0.0000 0.0000 21.5780 -19.7237 26.5065 2.0953 0.0000 0.0000 -12.6790 -19.2982 36.8962 36.8368 0.0000 0.0000 6.7061 9.5376 1.3952 -6.2544 0.0000 -0.0000 - -5.4410 0.1813 26.0765 -9.9607 2.1784 148.9453 5.2280 5.2850 -1.1947 0.8001 1.2781 -0.2409 5.4950 -1.1393 -4.4998 -0.0528 -3.0049 -0.5993 -11.0858 -11.1265 -8.8131 -1.4329 -1.8959 -8.4274 1.6186 0.1908 1.8692 -25.6136 -26.3971 -0.1208 -0.0000 0.0001 98.6953 -16.8501 -26.4292 6.2844 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.1966 3.3628 -4.2947 -20.0458 27.6834 -7.5346 -0.0001 -0.0001 -104.9274 1.2269 32.2667 -4.3514 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -12.7320 9.7905 -9.5631 7.0638 0.0000 0.0000 22.2429 -22.4318 24.4551 3.4469 0.0000 0.0000 -17.8270 -22.8586 32.8345 42.2691 0.0000 0.0000 12.3490 5.2698 -2.4099 -4.9744 0.0000 -0.0000 - -5.4333 0.0270 25.8971 -9.3598 2.1916 150.3866 6.5855 4.8682 -1.0724 1.2386 1.0474 -0.2847 1.8609 -0.1795 -4.7159 -0.4768 -2.3382 -0.4515 -4.9379 -10.8798 -8.2797 -9.5434 -1.0032 -10.3210 -2.1246 3.1923 2.8597 -17.3668 -12.7182 1.4408 -0.0000 0.0001 90.6562 26.3263 -22.4883 -3.7648 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 1.9914 -2.3421 -7.6507 -19.1548 9.3819 -6.7021 -0.0001 -0.0001 -95.0078 11.8147 22.7260 -0.2281 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -12.0785 12.0736 -4.1758 10.7999 0.0000 0.0000 11.4786 -20.4490 12.4955 3.9107 0.0000 0.0000 -22.0721 -25.7647 27.1996 44.2691 0.0000 0.0000 7.9907 6.1250 2.9724 -3.5080 0.0000 -0.0000 - -5.4542 -0.1247 25.3284 -8.5080 3.0515 150.8354 8.5729 5.4755 -1.2727 1.5520 1.4780 -0.1787 -1.3418 -0.2130 -4.1123 -1.2738 -1.9487 0.2312 -0.5164 -10.2491 -8.3502 -20.9098 -0.3469 -11.8735 -2.1467 8.8537 4.3792 -23.0823 -6.4793 -4.5768 -0.0000 0.0001 87.3850 57.0846 -25.3792 -5.7545 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.7311 -11.1604 -10.2086 -15.4364 -1.2327 -5.8066 -0.0001 -0.0001 -87.1310 43.3433 18.2729 6.7141 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -13.7404 15.7398 1.4522 18.7944 0.0000 0.0000 4.3677 -17.3232 3.3321 3.0873 0.0000 0.0000 -23.5399 -27.7137 23.5320 38.8399 0.0000 0.0000 6.5362 8.5987 4.1450 -2.6242 0.0000 -0.0000 - -5.4916 -0.1666 24.3289 -8.6971 3.9707 150.8946 9.1772 5.4313 -1.4116 1.3107 1.6999 -0.1378 -2.5707 -0.4189 -3.4709 -1.7108 -1.8516 0.7925 2.0633 -8.5247 -8.4317 -34.1567 0.5148 -12.4825 0.2334 16.9753 6.0009 -44.4732 -2.2802 -16.9140 -0.0000 0.0001 92.7625 52.8334 -19.3347 -12.3186 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.8929 -20.5520 -9.4601 -26.8419 -5.8570 -1.2267 -0.0001 -0.0001 -86.0663 57.2779 23.2751 9.0005 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -16.1115 19.3230 5.8485 26.0186 0.0000 0.0000 -1.1705 -19.4785 -0.2865 1.5023 0.0000 0.0000 -23.0543 -30.0396 18.8580 28.9056 0.0000 0.0000 11.6169 14.4578 -2.7497 -2.1853 0.0000 -0.0000 - -5.5931 -0.0955 23.0407 -9.6022 3.3022 149.7246 9.1570 3.1512 -1.2063 1.0715 1.4094 -0.1512 -2.1388 -0.7839 -1.8310 -1.5725 -1.4553 0.9597 1.0465 -5.3882 -7.8849 -44.0771 1.1963 -12.6940 0.3009 22.9584 7.4877 -68.0169 9.4869 -21.0889 -0.0000 0.0001 98.5570 21.1676 -1.2561 -8.9678 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 3.4168 -26.4920 -9.3235 -48.5207 -12.1256 7.0165 -0.0001 -0.0001 -87.9037 41.7702 14.8068 7.7284 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -18.3020 20.9533 7.4170 31.8783 0.0000 0.0000 -10.5092 -23.7237 -0.0146 1.2777 0.0000 0.0000 -22.7830 -34.0748 10.2819 24.7798 0.0000 0.0000 11.5348 22.9273 -6.9006 -0.0980 0.0000 -0.0000 - -5.7523 0.0354 22.0142 -10.1899 1.2832 146.5877 10.0007 0.2588 -0.8234 1.6171 0.3946 -0.1326 -1.4778 -1.1478 1.2781 -1.5459 -0.8345 1.3195 -4.6014 -2.5933 -7.0368 -46.3702 1.2354 -12.3068 -3.6122 24.2742 9.0824 -86.7498 17.6967 -11.9653 -0.0000 0.0001 97.3170 -18.1967 -3.6815 9.4958 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.6385 -27.0602 -10.9927 -67.7098 -18.1408 6.1957 -0.0001 -0.0001 -83.5012 4.7229 -3.4274 -4.6302 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -19.6321 20.5007 7.4551 34.9316 0.0000 0.0000 -18.5034 -27.7018 3.0868 2.8204 0.0000 0.0000 -23.3135 -38.5677 4.4745 30.4631 0.0000 0.0000 1.5976 29.1472 -4.8460 1.7127 0.0000 0.0000 - -5.9126 0.3057 21.8420 -10.2444 -0.7382 142.5790 11.0414 -1.6791 -0.4549 3.0081 -0.3072 -0.0992 -1.6966 -1.7614 4.4304 -2.1717 -0.9504 1.9858 -11.4894 -0.7478 -6.2793 -41.7477 -0.0579 -11.0656 -9.3769 25.4773 9.1533 -88.1740 14.8411 -14.3243 -0.0000 0.0001 91.7854 -52.1468 -29.2983 16.7395 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.6021 -21.2963 -11.7745 -79.5158 -12.6214 0.5384 -0.0000 -0.0001 -75.5484 -39.7734 15.9014 -21.1198 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -18.9557 18.8961 8.3569 33.0597 0.0000 0.0000 -17.1405 -29.2864 6.7678 3.0209 0.0000 0.0000 -20.7682 -41.1419 5.9686 34.9278 0.0000 0.0000 -4.7773 29.8577 -2.5201 1.5414 0.0000 0.0000 - -5.9563 0.6995 22.6602 -9.6051 -0.1553 139.8276 9.7797 -0.6992 -0.6021 3.4340 -0.1958 -0.0502 -1.9405 -2.0985 4.7485 -2.5798 -2.0001 2.5258 -14.6055 -1.7382 -5.1141 -35.1132 -1.4638 -8.9328 -10.9817 24.1717 8.1244 -73.8560 6.0567 -25.9067 -0.0000 0.0001 79.2574 -73.8039 -42.4075 5.7714 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -11.5317 -13.6377 -10.8666 -81.4529 -3.4844 2.3870 -0.0000 -0.0001 -61.1870 -64.5047 38.7500 -18.1846 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -17.3396 18.6716 10.4165 27.8422 0.0000 0.0000 -7.5845 -25.7791 6.2110 0.8410 0.0000 0.0000 -15.1703 -38.6809 10.4499 30.4001 0.0000 0.0000 1.3100 26.6048 -0.9365 -1.1729 0.0000 -0.0000 - -5.9268 1.1291 23.9041 -8.7613 2.1847 137.8958 6.2411 0.6506 -0.9059 1.8912 0.3518 -0.0005 -1.1118 -1.2606 3.4863 -1.9023 -2.3347 1.9410 -12.5332 -5.3829 -3.5359 -29.0727 -1.7356 -6.7715 -6.5727 16.5326 8.1671 -53.0072 -3.9420 -23.5649 -0.0000 0.0001 64.2768 -54.3707 -8.3237 0.7696 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.9665 -7.2658 -11.1876 -72.3838 -3.8665 4.7296 -0.0000 -0.0000 -42.9419 -64.6334 12.6973 -8.4509 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -17.9097 19.4385 9.2553 25.0849 0.0000 0.0000 4.6307 -18.8328 4.4077 0.5632 0.0000 0.0000 -9.9212 -33.3326 14.3546 21.3767 0.0000 0.0000 14.1574 21.4245 0.9640 -2.2685 0.0000 -0.0000 - -5.8942 1.4669 24.9894 -8.2785 3.4759 135.3330 3.1097 0.1155 -1.1898 0.2034 0.5121 0.0789 -0.2092 0.1942 4.0254 -0.8761 -1.6001 1.0833 -8.3375 -8.2059 -2.8510 -23.5140 -1.4107 -5.6274 -0.9133 10.5087 8.7382 -23.0818 -11.6215 -13.5033 -0.0000 0.0001 51.0707 -21.0124 3.4020 -10.0449 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.3773 -1.7332 -10.6158 -40.1500 -2.1278 6.0543 -0.0000 -0.0000 -28.9994 -24.9068 -4.8612 5.7977 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -20.8525 18.1307 2.6433 26.9189 0.0000 0.0000 12.2690 -11.4537 7.2080 2.8037 0.0000 0.0000 -6.9337 -29.4268 19.4931 17.1633 0.0000 0.0000 21.2288 14.5654 -1.2944 -0.8075 0.0000 -0.0000 - -5.8457 1.7226 25.7279 -7.3442 4.2066 131.9421 1.4061 -0.3921 -1.3323 -0.7771 0.4296 0.2440 0.3421 1.3160 5.8958 -0.4492 -1.2624 0.6885 -5.1197 -7.8111 -3.1284 -18.4204 -1.9984 -5.8258 5.0327 10.7070 7.6270 1.2281 -20.1087 -5.2592 -0.0000 0.0001 54.6997 26.2958 -8.5375 -9.1287 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.9605 1.4824 -8.5491 -2.3763 9.6971 7.7108 -0.0000 -0.0000 -40.5383 5.0416 -7.4042 12.0342 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -23.4105 14.6216 -4.7071 29.2095 0.0000 0.0000 14.4558 -7.2594 12.0974 2.9890 0.0000 0.0000 -4.9283 -24.8604 23.6551 16.6280 0.0000 0.0000 17.8032 9.1373 -7.2408 0.0190 0.0000 0.0000 - -5.7880 2.0152 26.0846 -6.2084 6.0050 128.9126 -0.0519 0.1319 -1.3715 -1.3880 0.3036 0.3779 0.5382 2.2020 7.1018 -0.4351 -0.8533 0.6566 -4.9984 -6.6349 -4.1159 -13.1386 -2.8060 -6.0430 13.1977 9.6839 3.6938 1.6478 -30.2069 -1.3120 -0.0000 0.0001 65.4415 45.7385 -5.7319 1.5198 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.7076 2.5526 -2.1776 10.3506 23.1885 -5.2823 -0.0000 -0.0000 -52.7830 44.2962 -13.5923 9.9732 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -23.3934 10.2083 -10.0587 26.1705 0.0000 0.0000 15.5774 -7.4408 11.8517 0.0822 0.0000 0.0000 -3.6652 -16.8344 21.8685 12.6917 0.0000 0.0000 11.9540 9.6648 -6.4724 -0.2960 0.0000 -0.0000 - -5.7343 2.3477 26.0154 -5.1609 8.2741 126.8148 -1.6199 0.8487 -1.1835 -1.8828 0.2253 0.4013 1.0644 2.6200 6.6166 -0.2868 0.1021 0.6391 -7.7706 -4.7784 -5.0385 -8.4225 -3.3830 -5.9924 20.2452 1.8824 0.8088 -13.9555 -37.8426 -8.3549 -0.0000 0.0001 80.0463 36.6205 -15.7346 5.9124 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 12.6376 9.1108 2.2399 6.3702 33.8425 -16.8526 -0.0000 -0.0000 -58.0669 50.1759 -3.0439 2.9253 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -20.9748 6.9390 -14.5803 19.4546 0.0000 0.0000 12.2654 -7.7567 5.3212 -2.7949 0.0000 -0.0000 -3.2229 -8.0659 18.4251 6.8852 0.0000 0.0000 8.0416 11.3094 5.3416 -1.4679 0.0000 -0.0000 - -5.7249 2.5965 25.6791 -4.2157 8.9256 124.9814 -2.3662 0.5354 -0.7331 -2.1008 -0.1885 0.2697 2.6955 3.1426 4.8599 0.5237 1.4617 0.1785 -12.8037 -2.9504 -4.9598 -5.6161 -2.9247 -5.4289 19.1421 -10.4838 1.8685 -26.5243 -37.7218 -19.4101 -0.0000 0.0001 96.7220 17.5740 -28.6630 -0.6541 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 10.5012 18.8914 0.4241 6.0563 39.2696 -16.5911 -0.0000 -0.0001 -64.2096 17.2242 9.8279 6.8714 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.1745 5.9499 -20.5071 15.4317 0.0000 0.0000 5.6330 -4.6156 2.5827 -1.7295 0.0000 -0.0000 -3.2257 -3.1426 25.1485 5.7322 0.0000 0.0000 3.8799 10.5654 12.4631 -2.0736 0.0000 -0.0000 - -5.7284 2.6722 25.4499 -3.4965 6.9436 122.6077 -2.0425 -0.3203 -0.1822 -2.0262 -1.0996 -0.0146 6.0267 3.9096 2.4318 1.1113 2.3377 -0.6243 -17.6169 -3.2044 -4.4344 -5.3131 -1.0830 -3.6347 11.3178 -22.8381 3.2548 -28.5351 -32.7593 -25.0301 -0.0001 0.0001 111.1054 8.9325 -38.0875 0.3084 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.6635 23.8271 -2.2319 22.4030 41.2205 -17.9353 -0.0000 -0.0001 -70.8308 -0.3786 3.1335 10.1524 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -16.2220 6.0484 -23.8536 16.5325 0.0000 0.0000 2.4060 -2.8653 6.2686 -0.3853 0.0000 -0.0000 -2.5688 -4.3822 34.6676 10.8687 0.0000 0.0000 -0.5206 11.2815 10.5445 -2.2120 0.0000 -0.0000 - -5.7306 2.5896 25.5531 -3.9417 4.2768 119.6443 -1.8779 0.4756 0.0241 -1.9743 -1.1306 -0.2224 9.8131 2.3627 -0.9660 0.3604 0.7155 -0.8717 -19.2417 -4.6078 -3.2674 -6.3296 0.3429 -1.1774 5.1109 -28.5353 2.2507 -25.9181 -30.4782 -22.2054 -0.0001 0.0001 120.8025 10.3595 -41.0701 9.3992 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -10.9087 21.5518 -5.1416 44.3292 39.9713 -34.3403 -0.0000 -0.0001 -74.9457 8.0133 -7.2809 4.9374 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.8076 4.7974 -21.2293 18.1726 0.0000 0.0000 7.2575 -4.4180 9.7871 -1.4707 0.0000 -0.0000 -1.4002 -8.5784 36.0391 15.3702 0.0000 0.0000 -0.7031 13.7990 8.8574 -4.0282 0.0000 -0.0000 - -5.8265 2.5202 25.9405 -4.6850 3.4162 115.9068 -1.3255 3.3956 -0.4562 -1.6564 1.5332 -0.0451 9.7687 -3.2393 -4.7246 -0.0175 -2.5403 -0.4649 -17.8435 -5.5384 -1.6049 -7.7471 -0.0796 1.1738 3.0611 -25.5049 0.8056 -24.6786 -31.3709 -14.8210 -0.0001 0.0001 127.3671 10.0306 -35.3799 9.1351 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.7584 15.6245 -7.5918 47.8349 33.3126 -50.6820 -0.0000 -0.0001 -79.8231 26.4448 -11.7125 4.0046 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -16.2229 3.3273 -16.0461 16.0194 0.0000 0.0000 17.5622 -9.0087 12.9465 -1.6720 0.0000 -0.0000 -0.7563 -10.2210 33.3644 14.5812 0.0000 0.0000 4.5075 15.2331 10.7462 -6.2225 0.0000 -0.0000 - -6.0447 2.5153 26.2657 -4.8288 3.2246 111.5459 0.5950 5.4856 -1.2970 -0.7334 2.5989 -0.1453 6.5507 -5.4566 -7.8198 0.3088 -4.6551 -0.1377 -14.9567 -7.4822 -1.2555 -9.9650 -1.5251 3.1305 1.1361 -17.0298 -0.2088 -25.8825 -33.8248 -8.3202 -0.0001 0.0001 130.6269 3.6092 -27.3002 4.8056 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.7470 7.7206 -10.7700 40.4960 32.2781 -54.4755 -0.0001 -0.0001 -90.4631 20.9834 -9.2222 -2.0900 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -16.8211 3.3932 -11.8317 14.2103 0.0000 0.0000 24.1964 -13.1457 19.8100 1.3686 0.0000 0.0000 -1.7388 -11.6351 32.0298 16.9303 0.0000 0.0000 9.9087 15.1108 10.2014 -6.1100 0.0000 -0.0000 - -6.3268 2.4489 26.2961 -5.1676 2.0091 108.0090 3.4623 5.3200 -1.9179 0.3635 2.0639 -0.3826 3.9613 -4.4459 -9.4819 0.2298 -4.9424 -0.0798 -12.4011 -10.2654 -1.9334 -12.7077 -2.4043 3.6449 -2.9961 -6.1305 -0.6255 -28.8823 -34.4687 -4.1189 -0.0001 0.0001 128.8149 -13.5597 -24.6918 8.3275 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -15.7694 -0.6598 -16.2834 30.9401 32.3797 -48.8958 -0.0001 -0.0001 -100.8020 4.5576 -9.3555 -9.3974 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -18.3344 3.7600 -4.8069 18.1299 0.0000 0.0000 21.0825 -14.3789 24.5191 4.1555 0.0000 0.0000 -5.0649 -16.1985 28.8823 27.2892 0.0000 0.0000 11.2917 11.3311 2.8799 -3.7008 0.0000 -0.0000 - -6.5811 2.3170 25.9224 -5.6436 0.6618 106.8572 6.3427 3.9503 -2.2383 1.3201 1.6580 -0.5677 1.8297 -2.6373 -10.7207 -0.3908 -4.3372 -0.4930 -9.7424 -12.8602 -2.7034 -14.4372 -1.6745 2.4862 -5.5023 4.1644 0.1702 -36.5102 -29.0950 -2.3183 -0.0001 0.0001 120.5048 -33.8563 -30.7941 14.6191 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -20.9955 -8.9369 -22.7100 13.9122 27.4044 -38.8004 -0.0001 -0.0001 -104.3598 1.3497 -17.3999 -10.9182 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -20.1561 3.7490 6.7960 26.2822 0.0000 0.0000 10.8444 -13.0484 19.6156 3.2046 0.0000 0.0000 -10.1703 -21.3770 21.5224 38.2165 0.0000 0.0000 7.0876 5.0045 -4.0211 -1.4126 0.0000 -0.0000 - -6.7258 2.2545 25.1168 -4.3057 0.1023 107.2901 8.5761 4.1063 -2.2962 1.7469 1.6763 -0.6376 0.2198 -1.3340 -12.2530 -1.0523 -3.5169 -1.0599 -6.5217 -14.2166 -3.2990 -15.3740 0.4952 0.8841 -2.8425 11.2041 0.7299 -48.0795 -16.7015 1.0088 -0.0001 0.0001 104.6196 -41.5507 -34.7111 14.2467 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -17.0841 -17.6928 -23.7254 -8.9058 13.9374 -34.2617 -0.0001 -0.0001 -95.1583 10.1893 -28.4413 -10.3558 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -19.9649 6.1087 16.6240 33.2198 0.0000 0.0000 2.2173 -11.4057 12.1334 0.1084 0.0000 0.0000 -14.3450 -23.8093 14.4729 42.7672 0.0000 0.0000 1.7626 3.3338 -1.6648 -0.8590 0.0000 -0.0000 - -6.8353 2.2514 23.9233 -3.1401 0.2199 106.9086 9.5690 4.1148 -2.1060 1.7829 1.6545 -0.5953 -0.5505 -0.8007 -12.4625 -1.3719 -2.6878 -1.1636 -3.5723 -13.0575 -3.2851 -17.7382 3.3083 -0.1348 3.6218 14.5541 -1.3435 -59.2405 -1.1744 10.7902 -0.0000 0.0001 84.9801 -29.6012 -26.1557 6.8674 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6044 -23.5968 -15.2407 -30.4919 -8.1334 -41.8674 -0.0000 -0.0001 -70.9657 20.5449 -45.0176 -13.4401 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -19.7864 9.8284 20.1989 37.2027 0.0000 0.0000 -5.9176 -14.5009 10.3147 -1.4853 0.0000 -0.0000 -15.9590 -26.4943 12.0633 41.5163 0.0000 0.0000 -3.5579 7.3821 6.4068 0.8518 0.0000 0.0000 - -6.9705 2.2166 22.7433 -3.7960 0.1777 104.8458 9.7688 2.5935 -1.7884 2.0509 1.1876 -0.5450 -0.4455 -1.0712 -10.0277 -1.2831 -2.1254 -0.7373 -2.8627 -8.6072 -2.8528 -20.9016 5.5099 -0.4617 3.3085 17.7836 -6.6268 -64.7909 4.7274 20.8221 -0.0000 0.0001 70.9884 11.1812 -12.0505 -0.3324 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.4007 -28.1182 -4.4970 -41.9726 -19.6218 -47.0553 -0.0000 -0.0000 -51.0047 28.0963 -53.0362 -6.7104 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -21.5809 11.6853 18.1827 40.0112 0.0000 0.0000 -15.0389 -20.5201 14.1156 0.1542 0.0000 0.0000 -14.8866 -30.8250 12.8740 39.3243 0.0000 0.0000 -11.8668 14.8839 10.5277 4.4577 0.0000 0.0000 - -7.1154 2.1209 22.2780 -5.0280 0.3572 102.6645 9.4847 1.1266 -1.5899 2.7470 0.4977 -0.5129 0.4970 -1.8640 -6.3892 -0.8174 -2.4687 -0.1679 -5.6240 -1.3901 -2.7881 -20.4530 5.5406 -1.2072 -25.1135 38.4573 -4.0114 -55.5240 -20.5426 2.6928 -0.0000 0.0001 83.8845 61.0427 -11.1669 -11.3779 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.0236 -34.0737 -0.1175 -42.7073 1.0450 -40.1967 -0.0000 -0.0000 -55.1424 27.4752 -52.1526 -4.5639 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -23.6638 11.0560 15.9332 41.1500 0.0000 0.0000 -19.5257 -22.7503 17.0143 1.8514 0.0000 0.0000 -13.1980 -33.4344 12.8469 38.0310 0.0000 0.0000 -17.0598 21.2349 10.0362 6.8536 0.0000 0.0000 - -7.1924 2.0563 22.9089 -5.0102 1.6834 101.7680 8.7007 1.1090 -1.5540 2.8584 0.1099 -0.4577 0.9590 -2.0623 -4.1287 -1.2170 -1.6704 -0.6707 -5.9878 1.1270 -2.2300 -17.4643 5.2395 -2.3972 -62.0088 41.7237 17.5340 -52.0384 -30.6546 -28.5251 -0.0001 0.0001 108.1869 77.3984 -2.0625 -6.9717 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -47.8744 -47.7762 -34.7942 -45.0221 34.2065 17.8478 -0.0001 -0.0001 -91.3025 18.0668 -47.0540 -8.3923 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -23.2346 10.5691 16.6300 36.3574 0.0000 0.0000 -14.0358 -19.7666 17.2000 1.1007 0.0000 0.0000 -11.4967 -31.8077 13.9151 32.9019 0.0000 0.0000 -10.7846 21.5602 9.2180 5.8025 0.0000 0.0000 - -7.1779 2.0994 24.1030 -3.8707 4.1414 101.8310 7.1313 1.4645 -1.6221 2.0736 0.0904 -0.3976 -0.5069 -0.9481 -3.8328 -1.7054 -1.3487 -1.2832 -1.4083 3.5810 -3.3976 -14.8584 2.1404 -3.5147 -62.1644 31.7428 16.4723 -57.5145 -20.0989 -43.6810 -0.0001 0.0001 126.0850 55.3723 20.4005 4.1667 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -33.6445 -36.4052 -25.7795 -58.9661 26.0367 31.8922 -0.0001 -0.0001 -109.6258 9.1951 -55.9045 -8.6262 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -20.3425 12.6486 16.3515 24.8267 0.0000 0.0000 0.0151 -17.5322 18.0042 0.3929 0.0000 0.0000 -8.3949 -27.5934 19.8574 20.7987 0.0000 0.0000 4.8271 19.1840 8.6007 3.3815 0.0000 0.0000 - -7.2086 2.1720 25.0078 -3.3598 7.8694 102.5112 4.5162 1.3075 -2.1348 0.9424 0.3538 -0.3600 -2.7970 -0.1298 -4.0773 -1.8915 -0.4813 -1.5253 3.6870 4.4503 -4.6131 -13.3642 -1.0807 -3.8989 -44.5714 22.1392 8.0657 -69.6701 -3.0237 -51.1988 -0.0001 0.0001 129.6303 32.1130 32.9221 12.0716 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -15.9196 -24.8332 -14.6732 -73.5202 16.8415 38.0512 -0.0001 -0.0001 -113.4942 0.9810 -58.9670 -12.5705 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -18.8411 15.4275 8.0738 14.1246 0.0000 0.0000 11.6967 -16.4761 20.5511 1.2395 0.0000 0.0000 -7.5554 -23.8124 26.6060 9.7313 0.0000 0.0000 16.0702 17.3321 4.5305 2.6967 0.0000 0.0000 - -7.3333 2.1321 25.5324 -3.4595 10.5070 103.2718 2.9357 1.4481 -2.3125 0.2417 0.5477 -0.3009 -3.1879 -0.1207 -4.0322 -1.7997 -0.1046 -1.2320 3.8631 4.1059 -4.8832 -13.9646 -2.9953 -4.4196 -31.2315 13.6208 -0.1609 -73.0297 4.9838 -56.7476 -0.0001 0.0001 119.9734 32.1015 30.7602 7.0233 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4399 -11.6459 -5.6624 -83.8287 11.9874 38.7181 -0.0001 -0.0001 -105.8310 2.4981 -48.7491 -4.9026 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -19.9738 16.1244 -2.9152 13.2398 0.0000 0.0000 12.2546 -14.6623 20.0231 2.9748 0.0000 0.0000 -9.3204 -22.4438 25.5386 7.7396 0.0000 0.0000 14.8696 17.0663 -0.7640 2.3690 0.0000 0.0000 - -7.5053 2.0453 25.7234 -4.1591 10.9424 103.7559 3.3298 1.0228 -2.0493 0.1806 0.9388 -0.2585 -1.7108 -0.4671 -3.5961 -1.6859 -0.2931 -0.9025 -1.0777 2.5742 -4.3668 -15.3487 -3.4328 -4.8388 -25.8793 5.6290 -7.9170 -63.9119 -0.7791 -57.6650 -0.0001 0.0001 106.2694 32.5356 18.7046 0.3753 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.6987 2.1331 -2.3376 -82.8231 8.0948 34.6522 -0.0001 -0.0001 -93.1612 -3.3468 -34.3309 0.7973 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -22.9100 15.2912 -5.2616 21.6525 0.0000 0.0000 7.0100 -14.0564 15.3177 3.9045 0.0000 0.0000 -11.6197 -23.2627 19.3606 12.6111 0.0000 0.0000 8.6916 17.4434 -6.1964 1.2215 0.0000 0.0000 - -7.7063 1.9395 25.4159 -5.1022 10.0403 103.8324 5.1861 0.5488 -1.8019 0.5290 1.0234 -0.2693 -0.1620 -0.7308 -3.1689 -1.9439 -0.4707 -0.7213 -7.3809 -0.0792 -3.9335 -16.1609 -2.8585 -4.1818 -19.5150 0.6858 -11.6884 -51.0834 -14.1595 -56.6592 -0.0000 0.0001 95.3042 31.8450 0.9811 -5.9117 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.2699 8.2350 -2.2242 -70.0154 6.6117 36.7522 -0.0000 -0.0001 -80.2000 -11.4508 -28.2048 4.7269 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -26.5227 13.1364 -1.2849 33.8342 0.0000 0.0000 4.7374 -15.6397 14.5387 1.7871 0.0000 0.0000 -14.4633 -24.8538 14.2573 21.1046 0.0000 0.0000 5.1815 17.4871 -11.4534 -1.0350 0.0000 -0.0000 - -7.9829 1.8057 24.6195 -6.0604 9.0500 103.7304 7.8093 0.4362 -1.7079 1.0217 0.5913 -0.3113 0.4248 -0.8502 -2.8058 -2.2792 -0.4974 -0.6278 -12.2533 -2.5507 -3.6655 -18.4781 -2.2733 -2.9456 -10.4230 -0.5731 -10.7755 -37.4458 -34.4580 -52.8540 -0.0000 0.0001 90.6420 48.2862 -15.1293 -9.1414 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2086 8.9432 -2.0133 -54.7536 15.2468 42.8250 -0.0000 -0.0001 -72.4017 -10.6457 -26.6117 10.0082 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -29.3440 10.3079 2.0140 43.6489 0.0000 0.0000 2.4597 -15.9898 17.0043 -1.9971 0.0000 -0.0000 -18.6397 -26.5059 10.4048 31.4919 0.0000 0.0000 1.7805 17.7788 -12.9949 -2.8437 0.0000 -0.0000 - -8.4059 1.6619 23.5089 -6.6138 9.0653 103.8931 9.9889 0.7094 -1.6410 1.5365 0.1509 -0.2801 1.5606 -0.8791 -1.9024 -2.4787 -0.6758 -0.5161 -17.8876 -3.3991 -3.3838 -20.9509 -1.9703 -2.4066 -6.6167 -1.3483 -9.3210 -22.7709 -52.3268 -41.9355 -0.0000 0.0001 91.0044 52.1816 -18.4626 -4.1613 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8288 10.6256 -1.9659 -46.6612 29.2112 43.8029 -0.0000 -0.0001 -71.9067 -8.7572 -28.0438 10.8054 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -32.3850 8.6717 3.3607 51.0283 0.0000 0.0000 -7.3511 -14.9132 15.1620 -4.0900 0.0000 -0.0000 -25.1686 -27.2872 5.9279 42.9193 0.0000 0.0000 -6.9995 19.1749 -9.5138 -2.1226 0.0000 -0.0000 - -8.8398 1.5632 22.4414 -6.2205 9.4720 104.1281 10.8866 1.2084 -1.4911 2.2943 0.0968 -0.1355 4.6849 -0.5524 -0.2559 -2.8607 -0.9211 -0.2154 -25.2263 -2.9592 -3.2549 -19.8233 -1.2838 -2.4487 -9.8161 -5.2333 -8.2041 -15.1070 -59.0334 -35.4769 -0.0000 0.0001 97.2709 44.3835 -21.4518 4.1014 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.9833 13.8219 -3.3541 -42.1721 41.1135 40.4249 -0.0000 -0.0001 -77.9706 -7.7378 -30.7892 8.1229 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -35.3448 9.5525 3.0012 56.6955 0.0000 0.0000 -19.6039 -13.6649 11.9627 -1.9198 0.0000 -0.0000 -30.4336 -27.3117 3.4563 51.2723 0.0000 0.0000 -18.2238 20.9268 -5.7572 0.9665 0.0000 0.0000 - -8.9974 1.4936 21.9468 -5.2322 8.7376 104.4856 10.3896 1.4964 -1.2046 2.9783 0.1633 0.0207 8.8329 0.3214 1.7963 -3.4928 -0.9297 0.1907 -29.5108 -2.3654 -2.9116 -15.7652 -0.2823 -2.6931 -15.6306 -9.3984 -6.8723 -13.8871 -60.6805 -34.9280 -0.0001 0.0001 107.8743 38.3387 -24.0214 8.4150 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 7.3579 16.5408 -4.6090 -32.3842 50.7547 31.6690 -0.0001 -0.0001 -88.8146 -5.9536 -29.9887 6.3834 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -35.4141 11.2971 2.2286 59.1149 0.0000 0.0000 -25.3365 -14.3788 12.1040 0.9536 0.0000 0.0000 -29.8937 -27.5683 4.3220 52.2670 0.0000 0.0000 -23.7640 22.6379 -5.9705 3.1804 0.0000 0.0000 - -8.7698 1.3730 22.4464 -4.9084 7.4620 106.4927 8.5998 1.2899 -0.8418 2.6221 -0.0268 0.1238 10.7868 0.9787 3.8647 -3.2748 -0.8995 0.6294 -27.4897 -1.8342 -2.5266 -11.3898 0.1357 -3.6329 -20.4250 -9.1064 -5.7640 -4.6650 -62.4979 -25.6675 -0.0001 0.0001 116.4390 37.3767 -21.4893 10.1171 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 6.6441 18.5245 -3.9255 -6.0460 54.9285 8.5821 -0.0001 -0.0001 -100.3853 -3.9177 -25.3056 6.3342 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -31.0257 11.0565 1.6253 55.0980 0.0000 0.0000 -22.2548 -14.9827 11.6072 -0.2153 0.0000 -0.0000 -25.2255 -27.2606 5.6565 45.0461 0.0000 0.0000 -17.9442 22.6086 -9.1549 2.2189 0.0000 0.0000 - -8.2771 1.2581 23.9222 -4.6494 7.3045 111.2795 5.6620 1.6129 -0.5475 1.2694 -0.3370 0.1975 9.9818 1.1881 5.2626 -2.2820 -1.2002 0.9637 -21.3422 -1.5961 -3.1416 -7.3484 -0.4469 -5.3591 -22.5074 -5.3822 -6.0302 12.3850 -58.5932 -6.9506 -0.0001 0.0001 121.5200 34.2293 -16.1769 13.3746 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 5.9940 19.6903 -1.9692 20.9725 44.0419 -16.2837 -0.0001 -0.0001 -110.6828 -1.1463 -21.2683 5.0607 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -23.5729 9.9761 1.4405 43.3527 0.0000 0.0000 -11.1849 -13.8626 6.9063 -3.9623 0.0000 -0.0000 -20.0024 -24.1644 5.1125 30.6140 0.0000 0.0000 -0.4539 20.8384 -10.6910 -0.2505 0.0000 -0.0000 - -7.6804 1.3233 25.7402 -4.4854 7.3983 117.4064 1.9399 0.8421 -0.1160 -0.1152 0.0030 0.2382 8.3773 1.7507 5.4859 -1.0642 -1.3293 0.9804 -13.6840 -2.3120 -4.5652 -3.5706 -1.2148 -7.0399 -23.2599 -0.3253 -6.5455 20.0341 -46.8625 2.8022 -0.0001 0.0001 127.4084 23.7787 -9.0204 14.4455 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 4.4490 17.6177 0.0202 28.6649 26.6279 -23.7785 -0.0001 -0.0000 -121.8951 3.7693 -21.1694 1.3314 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -15.0476 9.9069 1.0698 27.4641 0.0000 0.0000 7.9207 -14.8355 4.9924 -4.9793 0.0000 -0.0000 -13.5336 -20.3254 3.3014 11.4386 0.0000 0.0000 22.6413 22.8622 -7.8337 0.0057 0.0000 0.0000 - -7.1969 1.4539 27.1936 -6.5360 5.9599 122.8492 -1.4931 -3.3106 -0.1205 -1.1933 0.7209 0.2566 6.0444 2.0408 5.0426 0.3518 -0.7575 0.7582 -4.9322 -3.1175 -5.1200 -1.2403 -1.3494 -8.1462 -26.6242 8.5572 -3.5521 19.5134 -35.7918 3.5741 -0.0001 0.0001 130.5127 14.8496 -0.7864 19.4046 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.7152 9.9570 0.9842 25.0637 14.8028 -21.6782 -0.0001 -0.0000 -131.3077 8.3363 -22.9840 -4.0566 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.7384 8.9159 -0.8106 13.7381 0.0000 0.0000 31.0039 -15.4455 12.6724 -0.2454 0.0000 -0.0000 -10.4428 -21.1699 0.0242 1.2053 0.0000 0.0000 34.2710 28.5922 -2.5350 3.0145 0.0000 0.0000 - -6.9337 1.3952 28.1862 -7.6882 4.6732 126.1243 -3.1211 -4.7039 -0.2960 -1.9030 0.4059 0.1700 3.2053 1.3827 4.6766 1.2792 0.0548 0.5878 3.8108 -3.7226 -4.3894 -3.3115 -0.9937 -8.9879 -33.4065 20.1185 3.4001 18.6786 -28.1390 4.8469 -0.0001 0.0001 123.7142 16.4443 8.2380 29.7497 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.7089 1.6302 -0.1721 12.5801 1.4485 -16.2872 -0.0001 -0.0000 -130.5380 11.3807 -31.3370 -13.5906 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.5142 9.7185 -2.1560 8.5774 0.0000 0.0000 43.8088 -11.9212 20.3836 4.0279 0.0000 0.0000 -11.3996 -23.7516 5.2823 2.9146 0.0000 0.0000 34.4514 25.7147 -6.0148 3.2552 0.0000 0.0000 - -6.7701 1.2250 28.6968 -7.8939 3.0763 127.3294 -2.6402 -5.0158 -0.3302 -1.9761 0.2028 0.1054 0.7124 0.5276 5.1083 1.1675 0.1500 0.7567 10.7973 -3.6280 -3.5089 -8.9401 -1.1569 -9.9288 -39.6541 33.9106 12.6083 17.2244 -24.6106 7.5163 -0.0001 0.0001 108.2131 26.7511 15.3964 31.0153 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.0647 -9.8252 -1.1699 1.9639 -10.5906 -13.0467 -0.0001 -0.0001 -115.7606 12.2829 -42.3978 -30.8739 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.2803 12.0762 -3.5003 11.1587 0.0000 0.0000 42.0811 -9.6202 19.4499 4.1398 0.0000 0.0000 -11.9530 -28.0819 11.3343 7.8637 0.0000 0.0000 30.0502 17.5407 -10.5474 2.2334 0.0000 0.0000 - -6.6250 1.1643 28.7503 -6.0759 2.8461 127.6365 -1.9995 -3.4697 -0.5273 -1.9926 0.5494 0.1710 0.0947 0.3019 6.0056 0.7898 -0.5276 1.1803 13.8424 -3.0359 -3.6478 -14.8989 -1.6608 -10.5808 -40.9388 46.1639 20.3829 10.0096 -19.4174 5.5729 -0.0000 0.0001 89.7049 40.0656 13.2969 17.0182 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 5.2142 -21.8878 1.1040 -4.5993 -20.7330 -8.5557 -0.0001 -0.0001 -92.7773 33.3066 -44.1957 -24.0702 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.7226 18.0695 -7.3672 12.8948 0.0000 0.0000 37.0883 -8.0399 14.2127 3.7088 0.0000 0.0000 -10.2189 -30.1226 14.8978 9.9927 0.0000 0.0000 28.6640 12.6941 -11.0900 2.0569 0.0000 0.0000 - -6.4583 1.1556 28.4099 -4.2613 3.6646 128.0535 -2.3633 -1.3154 -0.8476 -2.2277 0.7613 0.2652 0.8976 0.4508 6.5219 0.9632 -0.9544 1.5467 13.4167 -2.6896 -4.3203 -19.4847 -1.5413 -10.6578 -22.7700 49.9629 11.8537 -3.9853 -1.3723 1.7554 -0.0000 0.0001 67.5611 34.7002 12.5500 4.6576 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 9.8492 -30.1007 4.5358 -3.3621 -27.0631 -3.3213 -0.0000 -0.0001 -65.2719 57.8662 -42.3760 6.7972 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.8505 25.3364 -12.7261 11.1640 0.0000 0.0000 36.3794 -6.4232 14.5250 4.4908 0.0000 0.0000 -8.3663 -31.5167 18.7722 10.3495 0.0000 0.0000 30.6805 12.8333 -12.0037 2.7641 0.0000 0.0000 - -6.2835 1.0829 27.7118 -3.9601 4.0060 128.9282 -2.6035 -0.4249 -1.0604 -2.3309 0.5949 0.2788 1.3905 0.5420 6.3910 1.3739 -0.9502 1.4897 11.2593 -1.6771 -4.6668 -21.9011 -1.4834 -10.7192 -6.0213 45.0349 1.8774 -17.8373 16.4518 3.6690 -0.0000 0.0000 39.0678 10.2274 20.8991 4.6265 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 8.9658 -32.4592 4.0099 -2.7020 -29.2829 -3.3712 -0.0000 -0.0000 -28.8417 36.4871 -49.1650 9.4227 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -13.3504 30.7513 -13.7668 8.9765 0.0000 0.0000 37.4109 -7.1143 18.5278 5.0837 0.0000 0.0000 -7.5590 -34.5764 19.7997 10.3217 0.0000 0.0000 32.8045 14.7299 -13.9422 3.7794 0.0000 0.0000 - -6.1039 0.9710 26.6817 -4.1969 3.6368 130.1069 -1.7805 -0.0986 -1.3575 -2.0367 0.4759 0.2180 1.1691 0.5028 5.6456 1.2093 -0.8675 1.3005 8.2409 -1.0240 -4.6470 -22.0449 -1.7883 -10.8751 -22.8584 48.7724 15.0055 -47.0408 4.4865 4.2509 0.0000 0.0000 32.9101 -8.4214 38.1416 3.2125 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.6039 -33.5481 -8.6688 -36.8134 -26.3023 -13.4637 -0.0000 -0.0000 -11.5681 -9.6151 -36.0073 -1.5335 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -14.9017 34.1679 -10.4794 7.6275 0.0000 0.0000 38.2997 -9.0965 20.1737 5.6504 0.0000 0.0000 -7.3852 -37.6575 17.2608 9.4928 0.0000 0.0000 36.1539 13.9275 -16.1735 4.5303 0.0000 0.0000 - -5.8959 0.8965 25.3238 -4.0044 2.9426 131.2069 0.1300 0.3810 -1.9006 -1.2129 0.6233 0.1377 0.1359 0.4202 4.5923 0.0612 -0.9635 0.8358 6.0028 -0.8020 -4.8175 -21.3007 -2.5050 -11.0216 -71.5812 50.8913 49.0080 -68.5020 -10.7813 -25.4379 -0.0000 0.0001 53.7162 -7.8320 37.2557 5.4624 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -16.5483 -33.2910 -19.2188 -76.6721 -19.9706 -24.8336 -0.0000 -0.0000 -15.6001 -4.2111 -31.7411 6.2826 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -16.4672 36.1004 -8.8990 7.6774 0.0000 0.0000 40.8886 -9.9036 20.5221 6.2480 0.0000 0.0000 -6.8548 -38.8551 14.8478 8.5773 0.0000 0.0000 39.9272 11.7248 -17.1237 4.6288 0.0000 0.0000 - -5.6839 0.8280 23.6437 -3.2946 1.6161 132.0286 2.1993 0.6234 -2.2590 -0.5208 0.8294 0.1147 -0.2534 0.5529 3.7400 -0.5470 -1.0610 0.7338 4.9814 -1.3768 -5.7853 -20.6754 -2.3354 -11.5574 -89.3852 49.4200 56.8384 -67.2617 -13.8081 -34.5829 -0.0000 0.0001 58.9834 -6.2116 38.8029 3.4485 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -18.1553 -30.5701 -13.7061 -79.5386 -21.0583 -35.4211 -0.0000 -0.0000 -4.5679 -8.6813 -32.0516 8.6464 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -17.7261 37.0104 -9.0757 10.7560 0.0000 0.0000 41.8583 -13.3196 21.3175 4.7856 0.0000 0.0000 -5.1647 -39.2181 14.3960 10.2152 0.0000 0.0000 36.8930 14.7595 -14.4349 2.7260 0.0000 0.0000 - -5.5097 0.6581 21.7626 -2.6893 -0.5791 132.7638 3.8983 -0.1477 -1.9273 -0.1928 0.7558 0.1137 -0.2229 0.7010 4.0891 0.5849 -1.3856 0.8697 5.5929 0.1267 -7.1448 -19.6602 -2.2317 -14.0491 -86.8210 57.5575 51.7551 -62.5993 -13.9984 -32.0502 -0.0000 0.0001 58.0046 -1.2790 32.5927 -0.3846 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -14.9712 -26.3202 -1.2293 -62.7167 -28.0611 -34.9925 -0.0000 0.0000 0.1945 -16.7148 -25.1014 9.2694 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -19.6110 37.3582 -5.3223 19.8213 0.0000 0.0000 32.4342 -24.4899 19.9970 1.6817 0.0000 0.0000 -3.7263 -41.2585 12.0830 16.1923 0.0000 0.0000 19.9953 25.1081 -6.2385 0.8689 0.0000 0.0000 - -5.2522 0.3029 19.9257 -2.4320 -3.2649 133.6937 4.6820 -0.7408 -1.3873 0.1707 0.5736 0.0977 -0.3530 0.6513 4.7524 2.3845 -1.1589 1.2069 7.4295 -0.6440 -8.0978 -15.7829 -1.2678 -16.7085 -47.4176 57.5407 12.8621 -62.4422 -7.7342 -13.0720 -0.0000 0.0001 52.3076 -3.4041 25.9825 1.6161 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -15.7251 -23.9924 3.9919 -45.1661 -31.7281 -27.3940 -0.0000 -0.0000 -3.1140 -14.3183 -27.2986 5.0372 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -22.8393 37.0557 0.0991 33.9219 0.0000 0.0000 11.3168 -36.1965 14.5428 2.0836 0.0000 0.0000 -4.4047 -45.8482 6.6947 23.8693 0.0000 0.0000 -2.7804 35.5991 4.4057 4.0204 0.0000 0.0000 - -4.7935 -0.1811 18.6366 -1.7570 -5.7344 134.4120 5.2211 0.2491 -1.2036 1.0946 0.9217 0.0876 -1.1508 0.8256 4.0021 2.8040 -0.4129 0.9105 9.6073 -5.3808 -7.2719 -9.7707 0.3831 -17.4671 -23.5566 30.5009 -11.9143 -67.7672 -0.6769 19.8754 0.0000 0.0000 35.3718 -17.2307 20.9039 11.0182 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -17.6421 -24.6031 4.8294 -40.8705 -26.7710 -25.0087 -0.0000 -0.0000 -4.4374 -15.7822 -30.5777 2.5642 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -26.4153 36.5187 3.5616 47.2674 0.0000 0.0000 -7.0909 -40.1499 9.7151 4.9074 0.0000 0.0000 -5.4084 -50.9176 2.3028 28.2628 0.0000 0.0000 -13.2735 42.6987 8.6947 7.1530 0.0000 0.0000 - -4.2146 -0.6427 18.0327 -0.0147 -7.7537 134.9403 6.0021 2.3485 -1.4906 2.4673 2.2749 0.0652 -1.7476 1.5248 1.0812 2.5198 -2.2702 1.2168 9.4282 -5.8428 -7.4357 -2.9159 -0.3356 -15.4871 -29.1098 40.5940 -8.8709 -63.1183 -14.4065 -5.3847 -0.0000 0.0000 40.6893 -17.2131 12.6316 12.1522 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -19.0323 -26.6904 5.3818 -35.2145 -16.9590 -17.0182 -0.0000 -0.0000 -4.1063 -18.8473 -26.4226 3.6748 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -28.9953 36.4981 5.0831 57.0663 0.0000 0.0000 -13.2547 -39.4413 11.3979 5.9298 0.0000 0.0000 -2.9318 -53.9717 2.0713 27.3844 0.0000 0.0000 -9.9911 45.9233 6.0125 7.0401 0.0000 0.0000 - -3.7814 -0.9892 17.8833 1.5691 -8.5954 136.0643 6.2034 3.6597 -2.0469 2.6209 3.3145 0.0374 -1.2358 2.2313 -1.1062 1.6950 -2.7195 0.9695 10.4859 -6.0788 -7.1230 0.1326 -0.4792 -13.3685 -25.9093 35.6940 -5.2421 -54.1817 -12.0338 -7.4580 0.0000 0.0000 31.4509 -21.6393 8.1092 13.4561 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -17.0137 -26.9240 6.5649 -29.4385 -6.3981 -10.0507 -0.0000 -0.0000 -1.1124 -18.5104 -18.5662 7.5785 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -29.5074 37.6839 3.8639 61.7630 0.0000 0.0000 -12.4589 -38.1035 15.9686 5.2423 0.0000 0.0000 1.2661 -54.4533 4.0408 22.7062 0.0000 0.0000 -5.3196 45.0543 4.0633 5.9365 0.0000 0.0000 - -3.6710 -1.2463 17.8967 1.9044 -7.9733 137.6354 4.8808 3.2056 -2.2513 1.6407 3.3140 0.0867 -0.2491 2.5052 0.1934 1.9130 -1.9937 0.4391 12.1282 -3.9424 -7.5817 -1.4488 -1.4765 -13.6773 -22.3853 33.8660 -3.3708 -45.5613 -10.0411 -7.9459 0.0000 0.0000 23.7829 -28.1552 5.7763 13.3996 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -14.9100 -20.3283 5.6686 -28.0671 3.0831 -8.9800 -0.0000 0.0000 2.0909 -18.1637 -16.2547 9.1066 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -29.2986 39.4765 1.3202 62.7503 0.0000 0.0000 -12.3401 -37.6030 17.9085 4.6473 0.0000 0.0000 2.3747 -53.8631 4.9874 18.1869 0.0000 0.0000 -4.2951 43.0180 3.9891 5.5510 0.0000 0.0000 - -3.8199 -1.4549 17.9618 1.8715 -6.5635 138.6580 2.8916 1.9810 -1.9491 0.5559 2.7685 0.2073 0.9566 3.3843 2.3498 2.9077 -0.5514 0.0219 13.4713 -3.1785 -7.4499 -5.3946 -1.8430 -15.2103 -21.6308 31.8289 -1.8344 -42.0195 -8.7286 -7.5560 0.0000 0.0000 19.3500 -32.8306 4.5213 12.5406 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -13.6966 -12.9602 3.8004 -27.1250 10.5679 -11.2239 -0.0000 0.0000 4.3102 -21.0606 -16.8584 7.8644 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -30.2021 40.5300 1.0067 62.4924 0.0000 0.0000 -14.0258 -37.3642 16.2194 4.7616 0.0000 0.0000 0.5896 -52.8572 5.6540 16.2354 0.0000 0.0000 -2.8363 41.9700 1.5548 4.7427 0.0000 0.0000 - -4.0655 -1.6059 18.0096 2.7529 -5.3440 138.8297 2.1262 1.2611 -1.6768 0.0785 2.2623 0.2907 2.1432 4.5691 3.4544 3.3607 0.8404 -0.2883 13.2581 -3.9243 -6.9791 -8.2327 -1.5829 -15.6797 -21.5132 28.4130 -0.8376 -40.1716 -8.0542 -4.3314 0.0000 0.0000 16.5881 -31.9373 4.5351 12.3674 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -12.9100 -9.1422 2.3384 -24.1196 15.0719 -12.9511 -0.0000 0.0000 4.8205 -23.5492 -15.2457 5.5927 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -31.9442 40.7111 4.0287 62.4582 0.0000 0.0000 -15.5490 -37.0348 13.3939 4.6498 0.0000 0.0000 -0.6868 -51.5560 8.3338 16.3382 0.0000 0.0000 0.4672 41.8882 -3.6754 3.0032 0.0000 0.0000 - -4.2656 -1.6823 18.0077 4.2144 -4.7884 138.8022 2.6147 1.1226 -1.6580 0.1617 2.0609 0.3035 2.8618 5.1825 3.6692 3.0216 1.5015 -0.5257 11.9705 -4.4322 -6.6836 -8.5521 -1.4882 -15.3181 -19.6778 26.5574 -1.8266 -36.8827 -9.5770 0.5855 0.0000 0.0000 15.0599 -28.3665 5.7116 13.2781 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.7557 -8.2011 1.4482 -21.4880 17.4166 -13.8090 -0.0000 0.0000 5.1271 -22.4007 -13.2805 4.2106 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -32.6798 40.9062 7.1724 62.5921 0.0000 0.0000 -16.9694 -37.1472 11.4196 3.9310 0.0000 0.0000 -0.1026 -50.5654 12.4964 16.6347 0.0000 0.0000 2.5085 42.1873 -7.9894 1.7143 0.0000 0.0000 - -4.3453 -1.6871 18.0260 5.0252 -4.5743 138.9837 2.6631 0.8934 -1.6247 0.2184 1.9788 0.2954 3.1050 5.4857 3.5782 2.6440 1.6078 -0.6418 11.1600 -4.9499 -6.3704 -7.4834 -1.3028 -14.7307 -17.9058 26.0589 -3.1800 -33.6832 -12.1012 4.8912 0.0000 0.0000 14.5650 -26.9095 6.8148 13.8202 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.4892 -8.3369 0.9403 -19.7238 18.5674 -15.3847 -0.0000 0.0000 5.9033 -19.8583 -12.3614 3.7272 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -32.1533 41.6899 7.4953 62.2831 0.0000 0.0000 -18.4295 -37.4394 10.8830 3.3545 0.0000 0.0000 1.0724 -50.0815 15.6222 16.1274 0.0000 0.0000 1.8254 42.6794 -9.1799 1.2249 0.0000 0.0000 - -4.3148 -1.6321 18.1169 4.9194 -4.3566 139.0447 1.7107 0.2838 -1.4776 0.0447 1.8069 0.3050 3.0219 5.9519 3.6340 2.5778 1.6516 -0.6058 10.9583 -5.8856 -5.9544 -6.3619 -0.7757 -13.9179 -17.6675 25.2443 -2.7868 -32.4651 -13.7251 6.8317 0.0000 0.0000 14.6521 -26.8103 6.5758 13.6697 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -9.9693 -9.1125 0.9576 -17.3344 18.9512 -18.0362 -0.0000 0.0000 6.0308 -17.8733 -12.1224 3.2068 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -31.4555 42.6977 5.5548 61.3896 0.0000 0.0000 -17.9491 -37.4909 12.1895 3.3141 0.0000 0.0000 2.0103 -49.6767 16.6396 15.0603 0.0000 0.0000 0.5647 42.4091 -8.4070 0.4858 0.0000 0.0000 - -4.2485 -1.5336 18.2209 4.6434 -4.2171 138.6620 0.8508 -0.4429 -1.3812 -0.1013 1.5316 0.3163 2.7608 6.2731 3.9939 2.5370 1.8096 -0.4707 10.1935 -6.4752 -5.6046 -5.5835 -0.1283 -12.9373 -17.3520 24.1012 -1.1648 -32.9443 -13.2767 6.7620 0.0000 0.0000 15.5834 -26.1629 5.9495 13.4311 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.9737 -10.2395 1.6374 -14.5798 18.4129 -20.8854 -0.0000 0.0000 5.5982 -16.6555 -11.9378 2.4052 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -31.1451 43.4927 3.6122 60.2702 0.0000 0.0000 -14.8611 -37.3181 14.7768 3.5202 0.0000 0.0000 3.3099 -49.0191 16.4030 13.7682 0.0000 0.0000 0.7314 41.2962 -7.2797 -0.1427 0.0000 -0.0000 - -4.2168 -1.4096 18.2617 4.6833 -4.1117 137.9741 0.6591 -0.9900 -1.3718 -0.0769 1.2396 0.3059 2.6226 6.0866 4.5163 2.3306 1.9451 -0.3102 8.3921 -5.9590 -5.4518 -5.1717 0.3357 -11.9881 -16.1147 23.8118 -0.2368 -33.3171 -11.8404 6.8642 0.0000 0.0000 17.2389 -25.3796 6.0945 13.6584 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.9297 -11.0473 2.3038 -12.8065 17.1128 -22.6071 -0.0000 0.0000 5.5491 -16.2540 -11.4882 2.0481 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -31.2464 44.2562 2.7697 59.2958 0.0000 0.0000 -11.2924 -37.1117 17.1880 3.8830 0.0000 0.0000 5.0868 -48.2359 16.4501 12.4516 0.0000 0.0000 2.4085 40.7040 -6.7259 0.6836 0.0000 0.0000 - -4.2298 -1.2713 18.2561 4.8464 -3.6325 137.1511 0.4983 -1.3580 -1.3432 -0.0737 0.9413 0.2988 2.7029 5.9249 4.9371 2.1461 2.0495 -0.2115 6.3831 -5.1426 -5.2598 -5.0944 0.7426 -11.0774 -15.0138 23.8857 -0.5974 -33.4161 -10.9999 8.4929 0.0000 0.0000 18.7172 -25.3037 6.7384 14.0525 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.8733 -11.5452 2.5570 -11.9554 15.6518 -22.8810 -0.0000 0.0000 5.7670 -16.1144 -10.7679 2.4337 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -32.0745 45.2833 2.8057 58.5796 0.0000 0.0000 -8.9084 -36.9245 18.9132 4.3485 0.0000 0.0000 6.5751 -47.4458 17.9159 11.4953 0.0000 0.0000 4.7910 41.3555 -7.3832 2.5541 0.0000 0.0000 - -4.2602 -1.1306 18.2601 4.8335 -2.5287 136.0642 -0.1221 -1.6427 -1.2827 -0.2282 0.6186 0.3166 2.7010 6.2791 5.3131 2.0551 2.2598 -0.1869 4.9888 -5.0539 -4.9038 -5.1477 1.2354 -10.1728 -14.5556 22.8559 -1.3754 -33.8032 -10.3726 11.5376 0.0000 0.0000 19.3446 -25.3552 7.0264 14.2767 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.9042 -11.6893 2.8675 -11.3066 13.7972 -22.6304 -0.0000 0.0000 5.6882 -15.4141 -9.8694 3.0788 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -34.1049 46.4131 3.5141 58.0255 0.0000 0.0000 -7.1247 -36.6280 20.5790 4.6546 0.0000 0.0000 7.5201 -46.4503 20.7084 11.0164 0.0000 0.0000 6.9659 42.5468 -8.7757 3.8719 0.0000 0.0000 - -4.2839 -1.0075 18.2820 4.4858 -1.0414 134.5701 -1.0179 -1.9707 -1.2494 -0.5029 0.2397 0.3550 2.3394 6.9215 6.0580 1.9518 2.5364 -0.1461 4.2973 -5.3832 -4.4872 -5.1387 1.6335 -9.5331 -14.2944 20.9133 -2.0026 -34.1731 -9.1103 14.9937 0.0000 0.0000 19.3071 -24.9877 7.0329 14.4061 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.9011 -10.8118 3.6624 -11.0698 11.1358 -22.9215 -0.0000 0.0000 5.7103 -14.2953 -8.9553 3.6126 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -37.1924 47.2347 4.6236 57.4898 0.0000 0.0000 -5.0719 -36.1704 22.6485 4.7034 0.0000 0.0000 8.4732 -45.1572 23.6131 10.4043 0.0000 0.0000 7.8516 43.5657 -9.0282 4.0666 0.0000 0.0000 - -4.2817 -0.9094 18.3024 3.8075 0.4038 132.8192 -1.9673 -2.5026 -1.2138 -0.8389 -0.2908 0.3906 1.7338 7.5320 7.3436 1.8678 2.8153 -0.0572 4.0743 -5.4192 -4.0648 -5.1867 1.8219 -9.3307 -14.0789 19.1955 -2.7622 -34.0311 -7.5303 18.3137 0.0000 0.0000 18.9037 -24.7576 7.1035 14.5186 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.9573 -8.8862 4.7358 -11.6004 8.2407 -24.0005 -0.0000 0.0000 6.3938 -13.4009 -7.8353 4.1245 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -40.5005 47.6843 5.3277 56.9391 0.0000 0.0000 -2.9010 -35.5774 25.0770 4.6869 0.0000 0.0000 9.8740 -43.7642 25.4709 9.0033 0.0000 0.0000 7.0130 44.4097 -6.9015 3.8538 0.0000 0.0000 - -4.2403 -0.8230 18.3157 3.0143 1.6175 131.2356 -2.9362 -3.2411 -1.1090 -1.1958 -1.0733 0.3864 1.1463 8.2828 8.7926 1.9078 3.1750 -0.0238 4.0717 -5.2842 -3.6419 -5.4122 2.0025 -9.3183 -14.0560 17.7644 -3.8036 -33.7091 -6.1290 21.6064 0.0000 0.0000 18.0878 -25.1017 6.9776 14.5199 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -10.3170 -6.9386 5.6895 -12.1922 5.8076 -25.1907 -0.0000 0.0000 7.1843 -12.6950 -6.0651 4.6949 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -43.2899 48.1026 5.1104 56.5071 0.0000 0.0000 -0.9652 -34.9031 27.6986 4.7107 0.0000 0.0000 11.4609 -42.5137 26.2820 7.0306 0.0000 0.0000 5.3304 45.0333 -3.4949 3.8253 0.0000 0.0000 - -4.1674 -0.7445 18.3163 2.3093 2.5757 130.3031 -3.8093 -4.0036 -0.9914 -1.4870 -1.9787 0.3308 0.6397 9.2782 9.8786 1.9997 3.6208 -0.1070 4.0239 -5.4413 -3.2988 -5.6633 2.3677 -9.2517 -13.9138 15.9135 -4.7314 -33.8737 -4.2200 24.7099 0.0000 0.0000 17.0256 -25.6805 6.3634 14.3825 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.8494 -5.6589 6.4580 -12.1561 3.6834 -25.9586 -0.0000 0.0000 7.3920 -11.8140 -3.6165 5.3019 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -45.2111 48.6324 4.3710 56.3899 0.0000 0.0000 0.4890 -34.3620 29.9580 4.6637 0.0000 0.0000 12.5704 -41.6578 26.9491 5.2401 0.0000 0.0000 4.3741 45.3941 -1.2852 3.7623 0.0000 0.0000 - -4.0875 -0.6787 18.2854 1.9565 3.2924 130.1436 -4.3198 -4.4434 -0.9208 -1.6376 -2.6043 0.2755 0.2218 10.0683 10.4448 1.9972 3.9498 -0.2162 3.7815 -5.6860 -3.1452 -5.7970 2.7421 -9.2305 -13.4617 14.0332 -5.2811 -34.5524 -1.5616 26.9698 0.0000 0.0000 16.2230 -26.1388 5.6039 14.1891 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.2957 -4.7719 7.0395 -11.7911 1.6973 -26.3951 -0.0000 0.0000 7.2442 -10.6681 -1.0550 6.0644 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -46.3556 49.2363 4.1527 56.7040 0.0000 0.0000 1.0557 -34.2841 31.0993 4.5356 0.0000 0.0000 13.0459 -41.1187 27.6850 3.9794 0.0000 0.0000 4.5510 45.8596 -0.9226 3.4031 0.0000 0.0000 - -4.0126 -0.6300 18.2161 1.9082 3.8288 130.3703 -4.5219 -4.5581 -0.8669 -1.6682 -2.9018 0.2500 -0.0975 10.4950 10.7827 1.9241 4.0566 -0.2615 3.4501 -5.6946 -3.1469 -5.9164 2.9171 -9.3813 -13.0507 12.9009 -5.7164 -35.3328 0.8289 28.4028 0.0000 0.0000 15.7312 -26.6154 5.1039 14.0029 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.6103 -3.8761 7.4112 -11.5556 -0.0312 -26.8023 -0.0000 0.0000 7.2501 -9.4009 1.3898 7.0287 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -47.2241 49.6774 4.9407 57.4314 0.0000 0.0000 0.5631 -34.6810 30.9735 4.4729 0.0000 0.0000 13.2342 -40.7798 28.2241 3.0854 0.0000 0.0000 5.2290 46.7060 -1.2618 2.9914 0.0000 0.0000 - -3.9366 -0.5916 18.1313 1.9630 4.2469 130.4828 -4.6421 -4.6253 -0.7950 -1.6578 -3.1910 0.2329 -0.3656 10.9386 11.1904 1.8967 4.1260 -0.2801 3.1836 -5.7166 -3.1291 -6.0785 2.9939 -9.5811 -12.9909 12.3704 -6.1446 -36.1265 2.0887 29.4886 0.0000 0.0000 15.3780 -27.2280 4.9351 13.9163 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.9888 -3.2469 7.6003 -11.1768 -1.3402 -26.9604 -0.0000 0.0000 7.2791 -8.1248 3.6308 7.8774 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -48.2185 49.8307 6.3121 58.3738 0.0000 0.0000 -0.3597 -35.1662 30.3775 4.4861 0.0000 0.0000 13.5645 -40.5173 28.5369 2.3349 0.0000 0.0000 5.6733 47.6448 -1.1843 2.8430 0.0000 0.0000 - -3.8568 -0.5596 18.0570 1.9462 4.5557 130.3184 -4.7807 -4.7940 -0.7368 -1.6455 -3.6307 0.1952 -0.6364 11.5165 11.6879 1.9154 4.3044 -0.3195 2.9967 -5.9523 -3.0195 -6.1331 3.0971 -9.6871 -13.0606 11.8316 -6.3800 -37.0621 2.5889 30.4458 0.0000 0.0000 15.2964 -27.9555 5.1036 14.0786 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.5249 -3.0320 7.6924 -10.5667 -2.2487 -26.5791 -0.0000 0.0000 7.1549 -7.0109 5.4750 8.2615 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -49.2997 49.7772 7.5130 59.2587 0.0000 0.0000 -0.8880 -35.4524 30.1930 4.4369 0.0000 0.0000 14.0709 -40.3246 28.8431 1.7810 0.0000 0.0000 5.6041 48.1786 -0.5702 2.9295 0.0000 0.0000 - -3.7820 -0.5389 17.9993 1.7914 4.7562 129.9721 -4.8965 -5.0308 -0.7185 -1.6327 -4.0180 0.1606 -0.9071 11.8675 12.1718 1.9094 4.5166 -0.3463 2.8722 -6.1362 -2.8838 -6.0072 3.1483 -9.7392 -12.9744 11.2000 -6.4514 -38.0636 2.9171 31.2951 0.0000 0.0000 15.5798 -28.7297 5.5704 14.4462 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -13.0839 -2.8326 7.7697 -10.2469 -2.8428 -25.8904 -0.0000 0.0000 7.1504 -6.2430 7.0264 8.2048 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -50.2831 49.6466 8.1741 59.9438 0.0000 0.0000 -0.8808 -35.5380 30.5848 4.3009 0.0000 0.0000 14.5303 -40.2832 29.2128 1.5739 0.0000 0.0000 5.1633 48.2686 0.2287 3.0330 0.0000 0.0000 - -3.7214 -0.5294 17.9549 1.5902 4.9026 129.4947 -4.9412 -5.2611 -0.7155 -1.5992 -4.2879 0.1413 -1.1832 11.9795 12.6504 1.8765 4.6584 -0.3240 2.8194 -6.1309 -2.7631 -5.8458 3.0910 -9.7885 -12.7841 10.7095 -6.5337 -38.9276 3.0779 32.0876 0.0000 0.0000 15.9046 -29.3553 6.1402 14.7426 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -13.4819 -2.4573 7.8771 -10.2742 -3.2648 -25.1995 -0.0000 0.0000 7.3592 -5.7162 8.4259 7.8695 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -51.2247 49.5122 8.4957 60.4489 0.0000 0.0000 -0.6161 -35.4732 31.2818 4.1869 0.0000 0.0000 14.8840 -40.3241 29.4813 1.6778 0.0000 0.0000 4.4809 48.2345 1.1590 3.0573 0.0000 0.0000 - -3.6787 -0.5237 17.9220 1.4684 5.0805 128.9221 -4.9507 -5.4435 -0.7148 -1.5500 -4.5488 0.1260 -1.4205 12.1612 13.1266 1.8679 4.7661 -0.2946 2.7745 -6.1560 -2.6381 -5.7632 3.0144 -9.7861 -12.6446 10.4127 -6.6051 -39.5127 2.9910 32.7448 0.0000 0.0000 15.9745 -29.5840 6.6429 14.8282 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.6790 -2.1696 8.0122 -10.0872 -3.6492 -24.4455 -0.0000 0.0000 7.4517 -5.2398 9.2583 7.3838 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -52.2704 49.4248 8.7998 60.8299 0.0000 0.0000 -0.2063 -35.2674 32.0885 4.1414 0.0000 0.0000 15.1878 -40.2657 29.6182 1.9034 0.0000 0.0000 3.7006 48.2276 2.1466 3.0609 0.0000 0.0000 - -3.6535 -0.5185 17.8984 1.4309 5.2669 128.3874 -4.9553 -5.5983 -0.7198 -1.5207 -4.7813 0.1120 -1.5252 12.4242 13.4895 1.8883 4.8800 -0.2869 2.6926 -6.2849 -2.5282 -5.7004 2.9829 -9.7261 -12.5375 10.1904 -6.5879 -39.8034 2.9605 33.1848 0.0000 0.0000 15.8910 -29.4561 7.0049 14.8120 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -13.7935 -2.0216 8.1405 -9.6847 -3.9855 -23.6305 -0.0000 0.0000 7.3123 -4.8923 9.1930 7.0585 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -53.2564 49.3931 9.0954 61.0935 0.0000 0.0000 0.2866 -34.9962 32.8583 4.1227 0.0000 0.0000 15.4707 -40.1059 29.7355 2.0812 0.0000 0.0000 2.9947 48.2310 2.9722 3.0846 0.0000 0.0000 - -3.6431 -0.5163 17.8802 1.3970 5.4419 128.0201 -4.9927 -5.7023 -0.7131 -1.5118 -4.9538 0.1016 -1.5206 12.6105 13.7056 1.9163 4.9664 -0.2853 2.6474 -6.3983 -2.4640 -5.5647 3.0021 -9.7104 -12.4847 9.9105 -6.6039 -39.8739 3.1728 33.5715 0.0000 0.0000 15.8724 -29.2753 7.1870 14.8098 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -14.0112 -1.7777 8.2595 -9.6313 -4.1757 -23.1136 -0.0000 0.0000 7.2061 -4.8280 8.7915 7.1054 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -54.0090 49.3979 9.3056 61.2559 0.0000 0.0000 0.6507 -34.7923 33.4037 4.1107 0.0000 0.0000 15.6340 -39.9667 29.8577 2.1738 0.0000 0.0000 2.4994 48.2877 3.5032 3.0959 0.0000 0.0000 - -3.6396 -0.5204 17.8651 1.3037 5.5501 127.8316 -5.0094 -5.7900 -0.6829 -1.4874 -5.2017 0.0724 -1.5604 12.8575 13.8919 1.9320 4.9920 -0.2788 2.6931 -6.5467 -2.4339 -5.3400 3.1055 -9.7965 -12.5748 9.4339 -6.7895 -39.8879 3.4933 34.1076 0.0000 0.0000 15.9327 -29.1429 7.1848 14.7861 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -14.3829 -1.4274 8.3632 -9.9499 -4.2866 -23.0474 -0.0000 0.0000 7.1951 -4.9692 8.8378 7.2701 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -54.4412 49.3382 9.4038 61.3807 0.0000 0.0000 0.7037 -34.7079 33.5958 4.1167 0.0000 0.0000 15.6710 -39.9763 29.9779 2.2250 0.0000 0.0000 2.2806 48.4429 3.7463 3.0800 0.0000 0.0000 - -3.6372 -0.5329 17.8494 1.1569 5.6446 127.7657 -5.0244 -5.8573 -0.6326 -1.4232 -5.4964 0.0387 -1.6759 13.2288 14.0448 1.9286 4.9944 -0.2791 2.6988 -6.8883 -2.4105 -5.0666 3.3089 -9.9207 -12.8150 8.7575 -7.0497 -39.9381 3.8220 34.6552 0.0000 0.0000 16.0293 -28.9192 7.1399 14.7241 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -14.7629 -1.2031 8.4438 -10.1409 -4.5058 -23.1485 -0.0000 0.0000 7.1086 -5.1322 9.2443 7.2192 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -54.7564 49.1808 9.5371 61.5561 0.0000 0.0000 0.5096 -34.7025 33.4834 4.1258 0.0000 0.0000 15.5783 -40.0907 30.1057 2.2533 0.0000 0.0000 2.3055 48.6324 3.7570 3.0711 0.0000 0.0000 - -3.6332 -0.5545 17.8293 0.9810 5.7274 127.8113 -5.0259 -5.8663 -0.6010 -1.3626 -5.7109 0.0111 -1.7501 13.5747 14.0577 1.8956 4.9668 -0.2814 2.5262 -7.3412 -2.4065 -4.8302 3.5170 -10.0068 -13.0613 8.0608 -7.2226 -40.0410 4.2158 34.9442 0.0000 0.0000 16.1764 -28.6464 7.1696 14.6811 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -14.9879 -1.1468 8.4547 -10.0802 -4.9303 -23.0857 -0.0000 0.0000 6.9465 -5.2607 9.4130 7.0245 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -55.0208 48.9776 9.7208 61.8165 0.0000 0.0000 0.2200 -34.7596 33.2046 4.1150 0.0000 0.0000 15.4179 -40.2716 30.2387 2.2133 0.0000 0.0000 2.4933 48.8123 3.6095 3.0827 0.0000 0.0000 - -3.6277 -0.5840 17.8045 0.7833 5.8004 127.9142 -5.0148 -5.8061 -0.5864 -1.3230 -5.7582 0.0007 -1.7423 13.7143 13.9223 1.8350 4.8906 -0.2732 2.2128 -7.6841 -2.4363 -4.7377 3.6411 -10.0630 -13.2604 7.5586 -7.2838 -40.1593 4.5778 34.9006 0.0000 0.0000 16.3679 -28.5340 7.2110 14.6633 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -15.0788 -1.0883 8.3936 -10.0666 -5.4757 -22.8431 -0.0000 0.0000 6.8388 -5.4027 9.2296 6.9292 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -55.2934 48.7864 9.9043 62.1404 0.0000 0.0000 -0.0261 -34.8593 32.9453 4.0911 0.0000 0.0000 15.2512 -40.4921 30.3322 2.0939 0.0000 0.0000 2.7134 49.0209 3.4836 3.0797 0.0000 0.0000 - -3.6218 -0.6162 17.7802 0.5749 5.8713 127.9467 -4.9664 -5.7292 -0.5786 -1.2615 -5.7761 -0.0074 -1.7810 13.7524 13.8304 1.7592 4.8121 -0.2542 1.8779 -7.8463 -2.4984 -4.8098 3.7070 -10.1283 -13.4532 7.3163 -7.2979 -40.2542 4.7098 34.6171 0.0000 0.0000 16.5324 -28.5749 7.1630 14.6199 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -15.1675 -0.9700 8.2857 -10.1879 -6.0141 -22.4813 -0.0000 0.0000 6.7007 -5.6202 9.0785 6.9280 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -55.6627 48.6117 10.0407 62.4657 0.0000 0.0000 -0.0802 -34.9098 32.9008 4.0669 0.0000 0.0000 15.1486 -40.7025 30.4006 1.9531 0.0000 0.0000 2.8459 49.2385 3.5354 3.0340 0.0000 0.0000 - -3.6200 -0.6478 17.7610 0.3354 5.9783 127.8164 -4.9032 -5.7368 -0.5781 -1.1633 -5.8421 -0.0066 -1.9254 13.8104 13.9011 1.6803 4.8109 -0.2366 1.5560 -7.8787 -2.5828 -4.9484 3.7710 -10.1970 -13.6036 7.2370 -7.2894 -40.2958 4.6772 34.2013 0.0000 0.0000 16.6293 -28.5900 7.0742 14.5472 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -15.3171 -0.8816 8.1703 -10.3029 -6.4225 -21.9994 -0.0000 0.0000 6.4209 -5.9428 9.1394 6.8973 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -56.2097 48.4126 10.1036 62.7262 0.0000 0.0000 0.1234 -34.8181 33.1210 4.0409 0.0000 0.0000 15.0863 -40.8729 30.5240 1.8868 0.0000 0.0000 2.8288 49.3780 3.7616 2.9772 0.0000 0.0000 - -3.6254 -0.6755 17.7490 0.1260 6.1076 127.5718 -4.8199 -5.7857 -0.5882 -1.0608 -5.9192 -0.0083 -2.0837 13.8336 14.0650 1.6012 4.8610 -0.2252 1.2606 -7.7342 -2.6713 -5.0354 3.7907 -10.2247 -13.6501 7.2674 -7.2499 -40.2458 4.6526 33.7532 0.0000 0.0000 16.6970 -28.5110 7.0331 14.4966 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -15.4690 -0.7896 8.0764 -10.4158 -6.6208 -21.4538 -0.0000 0.0000 6.1501 -6.3074 9.2990 6.8926 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -56.8197 48.2369 10.0994 62.8738 0.0000 0.0000 0.4885 -34.6137 33.4900 4.0134 0.0000 0.0000 15.0352 -40.9718 30.6605 1.9343 0.0000 0.0000 2.6563 49.4095 4.0930 2.9655 0.0000 0.0000 - -3.6371 -0.6987 17.7461 -0.0341 6.2098 127.3402 -4.7312 -5.8303 -0.6046 -0.9855 -5.9516 -0.0106 -2.1758 13.7500 14.1900 1.5382 4.8949 -0.2199 1.0451 -7.4229 -2.7291 -5.0276 3.7240 -10.1907 -13.6612 7.3865 -7.1919 -40.0826 4.6271 33.3329 0.0000 0.0000 16.8186 -28.4056 7.0166 14.4668 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.5931 -0.6646 8.0286 -10.5706 -6.5182 -21.0223 -0.0000 0.0000 6.1058 -6.4990 9.4361 6.9669 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -57.2823 48.1160 10.0032 62.9001 0.0000 0.0000 0.8512 -34.4030 33.8358 3.9987 0.0000 0.0000 14.9482 -41.0482 30.7745 2.0748 0.0000 0.0000 2.4834 49.3830 4.3502 3.0332 0.0000 0.0000 - -3.6530 -0.7179 17.7523 -0.1794 6.2901 127.1985 -4.6900 -5.8802 -0.6090 -0.9275 -5.9660 -0.0119 -2.2241 13.6484 14.2449 1.4981 4.9095 -0.2255 0.9476 -7.1395 -2.7276 -4.9418 3.6362 -10.1227 -13.7202 7.5012 -7.0978 -39.8727 4.5486 32.9190 0.0000 0.0000 16.9915 -28.3156 6.9587 14.4268 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -15.6720 -0.5896 8.0348 -10.7011 -6.1216 -20.8193 -0.0000 0.0000 6.2471 -6.4166 9.5482 6.9877 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -57.5475 48.0265 9.8393 62.8308 0.0000 0.0000 1.1364 -34.2464 34.0613 4.0012 0.0000 0.0000 14.7815 -41.1347 30.8990 2.2317 0.0000 0.0000 2.4820 49.3204 4.3843 3.1452 0.0000 0.0000 - -3.6720 -0.7317 17.7640 -0.2877 6.3509 127.1563 -4.6566 -5.9268 -0.6132 -0.9076 -5.9684 -0.0093 -2.2341 13.5764 14.2660 1.4782 4.9365 -0.2394 0.9211 -7.0306 -2.6935 -4.8099 3.6075 -10.0491 -13.7792 7.5863 -6.9511 -39.7149 4.4414 32.4551 0.0000 0.0000 17.1103 -28.2633 6.9020 14.3859 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -15.6744 -0.6211 8.0395 -10.7593 -5.5633 -20.7555 -0.0000 0.0000 6.3816 -6.2244 9.6297 6.8707 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -57.6394 47.9651 9.6812 62.7002 0.0000 0.0000 1.3258 -34.1500 34.1386 4.0043 0.0000 0.0000 14.5992 -41.1856 30.9798 2.2945 0.0000 0.0000 2.6043 49.2294 4.3062 3.1975 0.0000 0.0000 - -3.6949 -0.7428 17.7759 -0.3517 6.4240 127.1876 -4.6374 -5.9193 -0.6259 -0.9097 -5.9057 -0.0022 -2.2025 13.4750 14.2295 1.4683 4.9373 -0.2361 0.8971 -7.0569 -2.6463 -4.6851 3.6391 -9.9840 -13.7517 7.6812 -6.7987 -39.6434 4.3500 32.0385 0.0000 0.0000 17.0371 -28.2904 6.8635 14.3591 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -15.5949 -0.6687 8.0054 -10.8138 -5.0593 -20.7080 -0.0000 0.0000 6.4417 -6.1044 9.6700 6.7646 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -57.6720 47.9220 9.6138 62.5586 0.0000 0.0000 1.3838 -34.1121 34.0418 3.9909 0.0000 0.0000 14.4104 -41.1764 30.9590 2.2440 0.0000 0.0000 2.7486 49.1817 4.2482 3.1269 0.0000 0.0000 - -3.7192 -0.7560 17.7856 -0.4044 6.5080 127.2569 -4.6261 -5.8506 -0.6284 -0.9394 -5.7894 0.0041 -2.1319 13.3351 14.1228 1.4542 4.8843 -0.2239 0.8626 -7.1263 -2.5969 -4.6114 3.6711 -9.9306 -13.6732 7.7953 -6.7267 -39.5780 4.2522 31.8295 0.0000 0.0000 16.7629 -28.3633 6.7535 14.3131 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -15.4922 -0.6419 7.9430 -10.8893 -4.7880 -20.6460 -0.0000 0.0000 6.4543 -6.0174 9.6962 6.7884 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -57.7070 47.8663 9.6279 62.4450 0.0000 0.0000 1.3266 -34.1243 33.8132 3.9719 0.0000 0.0000 14.2056 -41.1602 30.8611 2.1455 0.0000 0.0000 2.8797 49.2355 4.2419 3.0280 0.0000 0.0000 - -3.7414 -0.7745 17.7928 -0.5070 6.6005 127.3414 -4.6274 -5.8220 -0.6273 -0.9544 -5.7179 0.0121 -2.1306 13.3037 14.0468 1.4417 4.8562 -0.2201 0.8219 -7.2789 -2.5850 -4.5617 3.6958 -9.9305 -13.6279 7.8350 -6.7788 -39.4512 4.1631 31.8057 0.0000 0.0000 16.4686 -28.3633 6.5360 14.2293 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -15.4314 -0.6426 7.8473 -10.9315 -4.7385 -20.6121 -0.0000 0.0000 6.4173 -5.8929 9.7206 6.8289 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -57.7744 47.7872 9.6231 62.3714 0.0000 0.0000 1.2578 -34.1472 33.5923 3.9759 0.0000 0.0000 13.9374 -41.2141 30.8147 2.0942 0.0000 0.0000 3.0689 49.3344 4.1496 3.0493 0.0000 0.0000 - -3.7584 -0.7962 17.7961 -0.6659 6.6619 127.3857 -4.6041 -5.9164 -0.6135 -0.9272 -5.7627 0.0103 -2.2561 13.4529 14.1321 1.4363 4.9384 -0.2395 0.7770 -7.5251 -2.6521 -4.4831 3.7408 -10.0114 -13.5930 7.7520 -6.8714 -39.3410 4.1698 31.7757 0.0000 0.0000 16.3572 -28.2667 6.3251 14.1613 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -15.4047 -0.7844 7.7022 -10.9444 -4.7890 -20.6222 -0.0000 0.0000 6.3388 -5.8433 9.7695 6.7477 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -57.8469 47.6804 9.5110 62.3285 0.0000 0.0000 1.2563 -34.1366 33.5097 4.0072 0.0000 0.0000 13.7119 -41.3435 30.8217 2.0765 0.0000 0.0000 3.1942 49.4078 4.1145 3.1691 0.0000 0.0000 - -3.7694 -0.8183 17.7932 -0.8263 6.6944 127.3867 -4.5647 -6.0169 -0.6120 -0.8825 -5.7895 0.0176 -2.4176 13.5446 14.2746 1.4263 5.0353 -0.2429 0.7473 -7.6810 -2.7475 -4.4100 3.7976 -10.1205 -13.4915 7.6687 -6.8625 -39.3763 4.2871 31.6464 0.0000 0.0000 16.4634 -28.2258 6.2196 14.1617 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -15.3644 -0.9362 7.5663 -10.9625 -4.9227 -20.6396 -0.0000 0.0000 6.2826 -5.9576 9.8957 6.5891 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -57.9450 47.6085 9.3154 62.3381 0.0000 0.0000 1.3009 -34.0850 33.5926 4.0299 0.0000 0.0000 13.5669 -41.4958 30.8679 2.0709 0.0000 0.0000 3.2743 49.4648 4.1166 3.2183 0.0000 0.0000 - -3.7724 -0.8396 17.7838 -0.9273 6.6821 127.3474 -4.5161 -5.9453 -0.6244 -0.8673 -5.6774 0.0293 -2.4814 13.3161 14.3028 1.3976 4.9960 -0.2076 0.7771 -7.5497 -2.7545 -4.4264 3.8216 -10.1593 -13.3289 7.7911 -6.6847 -39.5320 4.3713 31.4709 0.0000 0.0000 16.6746 -28.3598 6.1899 14.2156 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -15.2955 -0.9148 7.5540 -10.9469 -5.1622 -20.6168 -0.0000 0.0000 6.2753 -6.0641 10.0225 6.4940 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -58.0611 47.5641 9.1613 62.4340 0.0000 0.0000 1.3158 -34.0204 33.7440 4.0178 0.0000 0.0000 13.5442 -41.6344 30.9595 2.0755 0.0000 0.0000 3.3577 49.5223 4.1057 3.1620 0.0000 0.0000 - -3.7665 -0.8629 17.7701 -1.0220 6.6277 127.2652 -4.4956 -5.7893 -0.6401 -0.8763 -5.4566 0.0453 -2.4654 12.8684 14.2236 1.3654 4.8517 -0.1427 0.8865 -7.2198 -2.6611 -4.5225 3.8059 -10.0886 -13.1586 8.1103 -6.4552 -39.6568 4.3228 31.3589 0.0000 0.0000 16.8458 -28.5801 6.1726 14.2723 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.2269 -0.7720 7.6216 -10.8792 -5.4502 -20.5116 -0.0000 0.0000 6.2595 -5.9850 9.9842 6.5399 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -58.1908 47.4190 9.1367 62.6187 0.0000 0.0000 1.2415 -33.9699 33.8054 3.9987 0.0000 0.0000 13.6003 -41.8082 31.1515 2.1260 0.0000 0.0000 3.4684 49.5199 4.0321 3.1420 0.0000 0.0000 - -3.7558 -0.8874 17.7546 -1.1316 6.5710 127.1470 -4.4817 -5.7330 -0.6595 -0.8977 -5.2933 0.0640 -2.4816 12.5614 14.2352 1.3634 4.8081 -0.0999 1.0397 -6.9892 -2.5680 -4.5671 3.8037 -9.9653 -12.9943 8.4032 -6.3334 -39.6956 4.1807 31.3378 0.0000 0.0000 16.9150 -28.7021 6.1616 14.3079 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -15.1824 -0.7490 7.5934 -10.8575 -5.6469 -20.3394 -0.0000 0.0000 6.2051 -5.7783 9.7719 6.7696 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -58.3606 47.1653 9.2477 62.8477 0.0000 0.0000 1.1178 -33.9373 33.7670 4.0139 0.0000 0.0000 13.6660 -42.0008 31.3538 2.2282 0.0000 0.0000 3.5021 49.4134 4.0130 3.2277 0.0000 0.0000 - -3.7452 -0.9108 17.7389 -1.2592 6.5522 127.0196 -4.4706 -5.8490 -0.6689 -0.9067 -5.2795 0.0789 -2.5863 12.6073 14.4191 1.3914 4.9365 -0.1072 1.1879 -6.9990 -2.5350 -4.4802 3.8452 -9.8549 -12.8203 8.4979 -6.3435 -39.7609 4.0301 31.3649 0.0000 0.0000 16.9401 -28.6971 6.1427 14.3209 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -15.1573 -0.9287 7.4088 -10.9551 -5.7119 -20.1864 -0.0000 0.0000 6.1757 -5.5630 9.5859 7.1954 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -58.5943 46.9313 9.3445 63.0677 0.0000 0.0000 1.0688 -33.8985 33.8007 4.0497 0.0000 0.0000 13.6860 -42.1822 31.4865 2.3481 0.0000 0.0000 3.4422 49.2962 4.0976 3.3098 0.0000 0.0000 - -3.7364 -0.9294 17.7247 -1.3742 6.5501 126.9374 -4.4603 -6.0011 -0.6754 -0.8989 -5.3543 0.0835 -2.7057 12.8283 14.6323 1.4157 5.1101 -0.1444 1.3256 -7.0790 -2.5105 -4.3369 3.8715 -9.7638 -12.6603 8.4498 -6.3764 -39.9156 3.9202 31.3789 0.0000 0.0000 17.0582 -28.6478 6.0712 14.2991 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -15.1431 -1.1225 7.2400 -11.1121 -5.7248 -20.1686 -0.0000 0.0000 6.2245 -5.3150 9.5363 7.7471 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -58.8107 46.8641 9.2655 63.2425 0.0000 0.0000 1.1855 -33.8393 34.0572 4.0526 0.0000 0.0000 13.6699 -42.3422 31.5783 2.4450 0.0000 0.0000 3.4243 49.2717 4.1459 3.3056 0.0000 0.0000 - -3.7271 -0.9423 17.7135 -1.4634 6.4904 126.9301 -4.4292 -6.1001 -0.6902 -0.8772 -5.3645 0.0881 -2.7619 12.9119 14.7185 1.4130 5.2136 -0.1810 1.4865 -7.0092 -2.4470 -4.2459 3.8102 -9.6747 -12.5438 8.3833 -6.3434 -39.9834 3.9908 31.3484 0.0000 0.0000 17.3345 -28.5407 5.9492 14.2320 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.1504 -1.1290 7.2503 -11.2640 -5.7409 -20.3326 -0.0000 0.0000 6.3141 -5.0073 9.5058 8.2942 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -58.8549 46.9072 9.0291 63.3727 0.0000 0.0000 1.3511 -33.7814 34.3824 4.0099 0.0000 0.0000 13.6682 -42.5260 31.6816 2.5319 0.0000 0.0000 3.5187 49.3081 4.0525 3.2925 0.0000 0.0000 - -3.7169 -0.9536 17.7032 -1.5351 6.3876 127.0191 -4.3775 -6.1277 -0.7250 -0.8303 -5.3262 0.0934 -2.7909 12.8655 14.7013 1.3808 5.2464 -0.2065 1.6524 -6.7968 -2.3890 -4.1786 3.6770 -9.6029 -12.4690 8.3402 -6.2684 -39.7470 4.3854 31.2480 0.0000 0.0000 17.6800 -28.2615 5.8733 14.1202 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -15.1913 -0.9791 7.3447 -11.4107 -5.7364 -20.5640 -0.0000 0.0000 6.3597 -4.7317 9.3942 8.7540 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -58.7449 46.9120 8.8585 63.5222 0.0000 0.0000 1.3071 -33.7699 34.4350 3.9715 0.0000 0.0000 13.5687 -42.7744 31.7378 2.7142 0.0000 0.0000 3.7076 49.3104 3.7887 3.3558 0.0000 0.0000 - -3.7035 -0.9699 17.6860 -1.5786 6.2562 127.2086 -4.2653 -6.1293 -0.7656 -0.7443 -5.1853 0.1061 -2.8366 12.7288 14.6361 1.3128 5.2635 -0.2239 1.7242 -6.5643 -2.3920 -4.0310 3.5402 -9.5594 -12.4308 8.3466 -6.1676 -39.2815 5.0437 31.0220 0.0000 0.0000 17.9149 -27.8630 5.9082 13.9551 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -15.2092 -0.8205 7.3776 -11.5541 -5.6830 -20.7576 -0.0000 0.0000 6.3595 -4.5269 9.2851 9.1126 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -58.5892 46.8497 8.8684 63.8076 0.0000 0.0000 0.9566 -33.8074 34.1492 3.9774 0.0000 0.0000 13.3169 -43.1122 31.6789 3.0438 0.0000 0.0000 3.9718 49.3003 3.3816 3.4576 0.0000 0.0000 - -3.6813 -0.9937 17.6540 -1.5495 6.1310 127.4762 -4.0778 -6.0521 -0.7997 -0.6333 -4.9647 0.1329 -2.8913 12.5854 14.5353 1.2121 5.2654 -0.2310 1.6089 -6.3900 -2.4405 -3.8033 3.4365 -9.5106 -12.4579 8.4301 -6.0623 -38.9188 5.6503 30.6989 0.0000 0.0000 17.9082 -27.6135 5.9884 13.7476 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -15.1468 -0.7460 7.3514 -11.6481 -5.6034 -20.9169 -0.0000 0.0000 6.3523 -4.3063 9.2734 9.3872 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -58.5554 46.8920 8.9969 64.3054 0.0000 0.0000 0.5186 -33.8507 33.8836 3.9994 0.0000 0.0000 13.0076 -43.4595 31.5560 3.3909 0.0000 0.0000 4.3494 49.3475 2.8595 3.5263 0.0000 0.0000 - -3.6441 -1.0284 17.6060 -1.6149 6.0065 127.7282 -3.9152 -6.0065 -0.8173 -0.5329 -4.8096 0.1539 -2.9661 12.5524 14.4725 1.1096 5.2627 -0.2294 1.3497 -6.3176 -2.4629 -3.6285 3.3832 -9.4181 -12.5834 8.4845 -5.9960 -38.8394 6.0425 30.4346 0.0000 0.0000 17.7200 -27.6529 5.9931 13.5264 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -15.0360 -0.7110 7.3889 -11.7227 -5.5840 -21.1646 -0.0000 0.0000 6.3714 -4.0588 9.3290 9.5869 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -58.6750 46.9647 8.9979 64.9845 0.0000 0.0000 0.1826 -33.8649 33.8790 3.9837 0.0000 0.0000 12.8168 -43.8856 31.5586 3.5639 0.0000 0.0000 4.7773 49.4578 2.3825 3.5567 0.0000 0.0000 - -3.5939 -1.0686 17.5468 -1.8203 5.9455 127.8563 -3.8684 -6.0170 -0.8089 -0.4497 -4.8393 0.1530 -3.1247 12.7113 14.5394 1.0393 5.2953 -0.2377 1.0866 -6.3622 -2.4156 -3.5852 3.4006 -9.2742 -12.7639 8.3403 -6.0200 -38.8780 6.3818 30.3868 0.0000 0.0000 17.5461 -27.8074 5.8849 13.3573 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -14.9926 -0.6339 7.5233 -11.8450 -5.7012 -21.4957 -0.0000 0.0000 6.3945 -3.9130 9.4158 9.7550 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -59.0275 46.9514 8.9579 65.7563 0.0000 0.0000 -0.0590 -33.8603 34.0657 3.9238 0.0000 0.0000 12.8281 -44.3114 31.6406 3.4876 0.0000 0.0000 4.9725 49.5826 2.3134 3.5824 0.0000 0.0000 - -3.5384 -1.1072 17.4808 -2.1049 5.9749 127.8750 -3.9066 -6.0887 -0.7911 -0.3785 -5.0437 0.1382 -3.4064 13.1035 14.7152 0.9924 5.3694 -0.2715 0.8847 -6.5146 -2.3147 -3.6095 3.4985 -9.0982 -12.9068 7.9217 -6.1460 -38.8135 6.8796 30.5718 0.0000 0.0000 17.5332 -27.8345 5.7231 13.2796 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.0848 -0.5164 7.6553 -11.9788 -5.9666 -21.7237 -0.0000 0.0000 6.4054 -3.8902 9.5508 9.9450 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -59.5926 46.8390 9.0200 66.5625 0.0000 0.0000 -0.3127 -33.8600 34.2587 3.8654 0.0000 0.0000 12.9288 -44.6970 31.7767 3.3110 0.0000 0.0000 4.9854 49.7396 2.5055 3.6059 0.0000 0.0000 - -3.4846 -1.1377 17.4112 -2.3123 6.0902 127.8462 -3.9462 -6.1578 -0.7662 -0.2796 -5.3103 0.1240 -3.7735 13.6781 14.9141 0.9423 5.4682 -0.3358 0.6984 -6.7111 -2.2190 -3.5908 3.6437 -8.9271 -12.9725 7.3484 -6.3272 -38.6658 7.4774 30.8616 0.0000 0.0000 17.6449 -27.7284 5.5730 13.2614 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -15.2670 -0.4391 7.7256 -12.0204 -6.2727 -21.7284 -0.0000 0.0000 6.4300 -3.8180 9.6773 10.1653 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -60.3390 46.7858 9.2765 67.3758 0.0000 0.0000 -0.5393 -33.8554 34.4854 3.8369 0.0000 0.0000 13.0240 -44.9621 31.9423 3.1759 0.0000 0.0000 4.9840 49.9905 2.6774 3.6062 0.0000 0.0000 - -3.4345 -1.1579 17.3447 -2.3784 6.2109 127.7991 -3.9188 -6.2155 -0.7387 -0.1554 -5.5569 0.1145 -4.1464 14.3043 15.1100 0.8933 5.5715 -0.4161 0.5160 -6.8384 -2.1779 -3.4958 3.7779 -8.8190 -13.0006 6.8422 -6.4967 -38.5684 7.9426 31.1147 0.0000 0.0000 17.7348 -27.6449 5.4526 13.2412 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.4575 -0.3994 7.7837 -11.9799 -6.4796 -21.6124 -0.0000 0.0000 6.4825 -3.6018 9.6799 10.3663 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -61.0996 46.8704 9.6134 68.1305 0.0000 0.0000 -0.6465 -33.8199 34.8395 3.8103 0.0000 0.0000 13.1752 -45.0917 32.1389 3.0763 0.0000 0.0000 5.0181 50.2861 2.7577 3.5754 0.0000 0.0000 - -3.3885 -1.1700 17.2898 -2.4120 6.3006 127.7287 -3.8976 -6.2802 -0.7161 -0.0458 -5.7821 0.1055 -4.4591 14.8163 15.3305 0.8630 5.6552 -0.4739 0.4104 -6.8058 -2.1960 -3.3695 3.8770 -8.7945 -13.0404 6.5631 -6.6166 -38.5438 8.1548 31.2492 0.0000 0.0000 17.7417 -27.6494 5.3630 13.1942 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.6328 -0.2816 7.8846 -11.9686 -6.5120 -21.5445 -0.0000 0.0000 6.5450 -3.3751 9.5800 10.4720 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -61.7309 46.9813 9.8608 68.7533 0.0000 0.0000 -0.6780 -33.7457 35.2388 3.7658 0.0000 0.0000 13.3733 -45.1675 32.3334 2.9902 0.0000 0.0000 4.9906 50.4743 2.8793 3.5300 0.0000 0.0000 - -3.3441 -1.1738 17.2482 -2.4756 6.3474 127.6607 -3.9157 -6.3447 -0.7013 0.0240 -5.9690 0.0964 -4.7087 15.1282 15.5616 0.8560 5.6933 -0.4943 0.4068 -6.6471 -2.2114 -3.2595 3.9629 -8.7856 -13.0886 6.4996 -6.6669 -38.5301 8.2131 31.2280 0.0000 0.0000 17.7190 -27.6860 5.3241 13.1322 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -15.7819 -0.0466 8.0243 -12.0226 -6.3689 -21.5379 -0.0000 0.0000 6.6038 -3.2952 9.5276 10.4597 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -62.1510 47.0609 9.9552 69.2355 0.0000 0.0000 -0.7233 -33.6573 35.5819 3.7430 0.0000 0.0000 13.5453 -45.2631 32.4699 2.9687 0.0000 0.0000 4.8685 50.4876 3.0742 3.5115 0.0000 0.0000 - -3.2995 -1.1685 17.2146 -2.5499 6.3697 127.6222 -3.9491 -6.4061 -0.6876 0.0559 -6.1019 0.0912 -4.9034 15.3192 15.7662 0.8535 5.7132 -0.4979 0.4143 -6.5225 -2.1688 -3.1965 4.0559 -8.6972 -13.1205 6.4876 -6.6803 -38.5161 8.2636 31.1056 0.0000 0.0000 17.6858 -27.7054 5.3346 13.0757 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.8685 0.1733 8.1462 -12.0751 -6.1159 -21.4820 -0.0000 0.0000 6.6771 -3.3201 9.5879 10.3819 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -62.4271 47.1637 9.9558 69.6294 0.0000 0.0000 -0.7562 -33.5786 35.9133 3.7921 0.0000 0.0000 13.6382 -45.3925 32.5801 3.0642 0.0000 0.0000 4.7555 50.4272 3.1950 3.5414 0.0000 0.0000 - -3.2595 -1.1574 17.1858 -2.6055 6.3941 127.5977 -3.9811 -6.4800 -0.6731 0.0785 -6.2228 0.0857 -5.0592 15.5443 15.9552 0.8516 5.7589 -0.5104 0.3509 -6.5450 -2.0906 -3.1875 4.1392 -8.5373 -13.1474 6.4197 -6.7252 -38.5105 8.3117 30.9837 0.0000 0.0000 17.6234 -27.7125 5.3710 13.0322 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -15.8965 0.2284 8.1865 -12.0614 -5.8609 -21.3140 -0.0000 0.0000 6.7532 -3.3161 9.6585 10.3274 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -62.6654 47.3124 9.9427 69.9483 0.0000 0.0000 -0.6969 -33.5170 36.2905 3.8880 0.0000 0.0000 13.6910 -45.5083 32.7175 3.2094 0.0000 0.0000 4.7062 50.4144 3.1951 3.5831 0.0000 0.0000 diff --git a/ink-theater/mocap/jumping.bvh b/ink-theater/mocap/jumping.bvh deleted file mode 100644 index 6251ae2e..00000000 --- a/ink-theater/mocap/jumping.bvh +++ /dev/null @@ -1,821 +0,0 @@ -HIERARCHY -ROOT Hips -{ - OFFSET 0.00 0.00 0.00 - CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation - JOINT Spine - { - OFFSET 0.00000 1.15266 1.72900 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine1 - { - OFFSET 0.00000 0.40032 2.27031 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine2 - { - OFFSET 0.00000 0.20092 2.29656 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine3 - { - OFFSET 0.00000 0.00000 2.30533 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Neck - { - OFFSET 0.00000 -0.86449 6.05149 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Head - { - OFFSET 0.00000 -0.55043 3.12167 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 0.00000 3.73175 - } - } - } - JOINT RightShoulder - { - OFFSET -0.78828 -1.31380 4.25672 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightArm - { - OFFSET -3.91513 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightForeArm - { - OFFSET -6.91491 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHand - { - OFFSET -6.09622 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHandEnd - { - OFFSET -1.74995 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET -1.74995 0.00000 0.00000 - } - } - JOINT RightHandThumb1 - { - OFFSET -0.69998 -1.16663 -0.46665 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET -1.69032 -0.45292 0.00000 - } - } - } - } - } - } - JOINT LeftShoulder - { - OFFSET 0.78828 -1.31380 4.25672 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftArm - { - OFFSET 3.91513 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftForeArm - { - OFFSET 6.91491 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHand - { - OFFSET 6.09622 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHandEnd - { - OFFSET 1.74995 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 1.74995 0.00000 0.00000 - } - } - JOINT LeftHandThumb1 - { - OFFSET 0.69998 -1.16663 -0.46665 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET 1.69032 -0.45292 0.00000 - } - } - } - } - } - } - } - } - } - } - JOINT RightUpLeg - { - OFFSET -2.33857 0.00000 -0.68318 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightLeg - { - OFFSET 0.00000 0.00000 -10.74496 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightFoot - { - OFFSET 0.00000 0.00000 -10.93085 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightToeBase - { - OFFSET 0.00000 -4.08727 -1.48765 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.89187 -0.00000 - } - } - } - } - } - JOINT LeftUpLeg - { - OFFSET 2.33857 0.00000 -0.68318 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftLeg - { - OFFSET 0.00000 0.00000 -10.74496 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftFoot - { - OFFSET 0.00000 0.00000 -10.93085 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftToeBase - { - OFFSET 0.00000 -4.08727 -1.48765 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.89187 -0.00000 - } - } - } - } - } -} -MOTION -Frames: 654 -Frame Time: 0.008342 - -2.6667 -46.1459 24.8591 -3.3894 -0.7577 172.9817 3.0564 -1.3343 -0.0156 1.3956 -2.3032 -0.1102 3.7761 2.8114 6.2463 -1.7022 2.7768 0.1329 -4.2926 3.4912 -11.4373 8.9789 -6.4566 -17.4581 -4.7166 -5.8142 1.1002 -7.1072 -4.7080 -5.0437 0.0000 0.0000 16.0299 -1.5805 6.2085 -1.1248 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.5531 8.0120 3.9455 10.2476 2.5345 -6.9587 -0.0000 -0.0000 -3.5180 8.2491 -1.4083 5.3677 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7527 -2.4702 1.2082 7.4163 0.0000 0.0000 -5.4369 -0.5991 5.2967 7.0646 0.0000 0.0000 -6.3154 -3.3604 8.6966 10.2903 0.0000 0.0000 -9.5589 0.1516 1.4032 -1.0166 0.0000 -0.0000 - -2.6679 -46.1456 24.8598 -3.3918 -0.7742 172.9793 3.0571 -1.3402 -0.0136 1.3958 -2.3125 -0.1121 3.7762 2.8247 6.2498 -1.7011 2.7735 0.1349 -4.2875 3.4872 -11.4426 8.9728 -6.4551 -17.4649 -4.7189 -5.8234 1.0943 -7.0917 -4.7012 -5.0384 0.0000 0.0000 16.0288 -1.5381 6.2177 -1.1170 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.5553 8.0175 3.9472 10.2353 2.5283 -6.9590 -0.0000 -0.0000 -3.5088 8.2545 -1.4105 5.3509 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.7583 -2.4854 1.2115 7.4091 0.0000 0.0000 -5.4279 -0.6951 5.2661 7.0759 0.0000 0.0000 -6.3170 -3.3778 8.7304 10.2958 0.0000 0.0000 -9.5617 0.1515 1.3711 -1.0160 0.0000 -0.0000 - -2.6693 -46.1453 24.8605 -3.3959 -0.7974 172.9791 3.0586 -1.3514 -0.0137 1.3946 -2.3154 -0.1125 3.7763 2.8328 6.2538 -1.6996 2.7715 0.1355 -4.2811 3.4816 -11.4485 8.9658 -6.4530 -17.4737 -4.7221 -5.8347 1.0881 -7.0722 -4.6942 -5.0323 0.0000 0.0000 16.0264 -1.4851 6.2302 -1.1088 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.5598 8.0238 3.9504 10.2226 2.5198 -6.9601 -0.0000 -0.0000 -3.4961 8.2595 -1.4175 5.3267 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.7632 -2.5078 1.2046 7.3905 0.0000 0.0000 -5.4092 -0.8034 5.2280 7.0830 0.0000 0.0000 -6.3213 -3.4015 8.7602 10.3046 0.0000 0.0000 -9.5666 0.1559 1.3408 -1.0211 0.0000 -0.0000 - -2.6709 -46.1449 24.8614 -3.4029 -0.8253 172.9792 3.0583 -1.3650 -0.0148 1.3922 -2.3171 -0.1108 3.7788 2.8414 6.2581 -1.6988 2.7692 0.1365 -4.2736 3.4761 -11.4576 8.9588 -6.4512 -17.4833 -4.7251 -5.8496 1.0791 -7.0494 -4.6844 -5.0238 0.0000 0.0000 16.0230 -1.4252 6.2438 -1.1013 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -7.5643 8.0350 3.9537 10.2077 2.5041 -6.9627 -0.0000 -0.0000 -3.4807 8.2641 -1.4264 5.2957 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.7689 -2.5361 1.1895 7.3602 0.0000 0.0000 -5.3802 -0.9185 5.1809 7.0855 0.0000 0.0000 -6.3285 -3.4297 8.7867 10.3149 0.0000 0.0000 -9.5725 0.1652 1.3138 -1.0325 0.0000 -0.0000 - -2.6728 -46.1444 24.8624 -3.4101 -0.8558 172.9769 3.0580 -1.3790 -0.0123 1.3927 -2.3184 -0.1121 3.7775 2.8518 6.2647 -1.6968 2.7666 0.1370 -4.2658 3.4692 -11.4657 8.9519 -6.4493 -17.4951 -4.7298 -5.8673 1.0713 -7.0227 -4.6744 -5.0166 0.0000 0.0000 16.0188 -1.3589 6.2590 -1.0918 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.5728 8.0440 3.9598 10.1927 2.4892 -6.9669 -0.0000 -0.0000 -3.4648 8.2682 -1.4412 5.2603 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.7743 -2.5682 1.1687 7.3208 0.0000 0.0000 -5.3416 -1.0340 5.1246 7.0796 0.0000 0.0000 -6.3310 -3.4592 8.8116 10.3179 0.0000 0.0000 -9.5761 0.1793 1.2917 -1.0503 0.0000 -0.0000 - -2.6749 -46.1438 24.8634 -3.4185 -0.8889 172.9751 3.0577 -1.3934 -0.0116 1.3925 -2.3200 -0.1114 3.7774 2.8640 6.2713 -1.6956 2.7640 0.1383 -4.2573 3.4627 -11.4760 8.9463 -6.4481 -17.5071 -4.7352 -5.8867 1.0617 -6.9945 -4.6643 -5.0095 0.0000 0.0000 16.0150 -1.2897 6.2745 -1.0834 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.5821 8.0556 3.9652 10.1764 2.4694 -6.9706 -0.0000 -0.0000 -3.4486 8.2720 -1.4588 5.2203 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7779 -2.6041 1.1364 7.2680 0.0000 0.0000 -5.2919 -1.1427 5.0619 7.0656 0.0000 0.0000 -6.3340 -3.4902 8.8277 10.3205 0.0000 0.0000 -9.5800 0.1975 1.2781 -1.0744 0.0000 -0.0000 - -2.6771 -46.1432 24.8645 -3.4276 -0.9230 172.9728 3.0575 -1.4071 -0.0105 1.3926 -2.3219 -0.1106 3.7771 2.8780 6.2783 -1.6949 2.7614 0.1398 -4.2492 3.4566 -11.4864 8.9426 -6.4477 -17.5186 -4.7412 -5.9072 1.0516 -6.9662 -4.6551 -5.0030 0.0000 0.0000 16.0116 -1.2199 6.2894 -1.0756 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.5939 8.0669 3.9706 10.1596 2.4484 -6.9732 -0.0000 -0.0000 -3.4345 8.2748 -1.4808 5.1779 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.7803 -2.6424 1.0944 7.2036 0.0000 0.0000 -5.2317 -1.2379 4.9937 7.0423 0.0000 0.0000 -6.3357 -3.5210 8.8361 10.3197 0.0000 0.0000 -9.5830 0.2191 1.2735 -1.1034 0.0000 -0.0000 - -2.6794 -46.1426 24.8656 -3.4369 -0.9572 172.9693 3.0576 -1.4204 -0.0091 1.3937 -2.3240 -0.1093 3.7757 2.8939 6.2862 -1.6946 2.7595 0.1415 -4.2420 3.4508 -11.4971 8.9414 -6.4477 -17.5293 -4.7488 -5.9293 1.0408 -6.9376 -4.6460 -4.9987 0.0000 0.0000 16.0107 -1.1517 6.3017 -1.0691 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.6070 8.0780 3.9757 10.1415 2.4253 -6.9749 -0.0000 -0.0000 -3.4238 8.2763 -1.5049 5.1367 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7807 -2.6828 1.0454 7.1283 0.0000 0.0000 -5.1613 -1.3133 4.9194 7.0089 0.0000 0.0000 -6.3361 -3.5511 8.8379 10.3164 0.0000 0.0000 -9.5855 0.2428 1.2770 -1.1355 0.0000 -0.0000 - -2.6817 -46.1419 24.8666 -3.4462 -0.9902 172.9652 3.0580 -1.4318 -0.0076 1.3951 -2.3262 -0.1081 3.7745 2.9114 6.2939 -1.6951 2.7574 0.1431 -4.2361 3.4464 -11.5061 8.9428 -6.4490 -17.5381 -4.7555 -5.9509 1.0305 -6.9123 -4.6389 -4.9947 0.0000 0.0000 16.0101 -1.0877 6.3123 -1.0619 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.6230 8.0865 3.9802 10.1236 2.4048 -6.9728 -0.0000 -0.0000 -3.4179 8.2774 -1.5332 5.0968 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7792 -2.7235 0.9886 7.0439 0.0000 0.0000 -5.0825 -1.3648 4.8421 6.9650 0.0000 0.0000 -6.3347 -3.5789 8.8319 10.3099 0.0000 0.0000 -9.5872 0.2668 1.2892 -1.1700 0.0000 -0.0000 - -2.6840 -46.1411 24.8675 -3.4548 -1.0212 172.9600 3.0592 -1.4414 -0.0058 1.3971 -2.3287 -0.1067 3.7733 2.9304 6.3019 -1.6959 2.7560 0.1447 -4.2319 3.4433 -11.5139 8.9467 -6.4518 -17.5447 -4.7630 -5.9720 1.0201 -6.8898 -4.6331 -4.9932 0.0000 0.0000 16.0133 -1.0288 6.3186 -1.0557 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.6398 8.0933 3.9844 10.1040 2.3853 -6.9687 -0.0000 -0.0000 -3.4177 8.2762 -1.5619 5.0608 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -4.7755 -2.7637 0.9276 6.9522 0.0000 0.0000 -4.9965 -1.3897 4.7616 6.9110 0.0000 0.0000 -6.3316 -3.6039 8.8209 10.3012 0.0000 0.0000 -9.5883 0.2897 1.3078 -1.2043 0.0000 -0.0000 - -2.6863 -46.1404 24.8684 -3.4623 -1.0494 172.9536 3.0616 -1.4490 -0.0038 1.3999 -2.3314 -0.1052 3.7715 2.9505 6.3102 -1.6973 2.7554 0.1459 -4.2295 3.4411 -11.5198 8.9531 -6.4548 -17.5486 -4.7691 -5.9923 1.0106 -6.8716 -4.6289 -4.9932 0.0000 0.0000 16.0188 -0.9752 6.3233 -1.0506 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.6571 8.0973 3.9873 10.0841 2.3684 -6.9612 -0.0000 -0.0000 -3.4224 8.2723 -1.5924 5.0299 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7696 -2.8027 0.8640 6.8557 0.0000 0.0000 -4.9053 -1.3872 4.6792 6.8481 0.0000 0.0000 -6.3271 -3.6259 8.8074 10.2915 0.0000 0.0000 -9.5892 0.3099 1.3300 -1.2359 0.0000 -0.0000 - -2.6884 -46.1394 24.8692 -3.4648 -1.0763 172.9474 3.0697 -1.4553 -0.0032 1.3997 -2.3356 -0.1020 3.7728 2.9736 6.3151 -1.6994 2.7540 0.1489 -4.2290 3.4406 -11.5235 8.9613 -6.4591 -17.5497 -4.7746 -6.0095 1.0019 -6.8573 -4.6280 -4.9959 0.0000 0.0000 16.0278 -0.9271 6.3260 -1.0467 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.6736 8.0982 3.9899 10.0632 2.3552 -6.9526 -0.0000 -0.0000 -3.4313 8.2650 -1.6222 5.0035 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.7557 -2.8408 0.7971 6.7530 0.0000 0.0000 -4.8093 -1.3590 4.5972 6.7763 0.0000 0.0000 -6.3170 -3.6456 8.7902 10.2814 0.0000 0.0000 -9.5907 0.3261 1.3552 -1.2649 0.0000 -0.0000 - -2.6906 -46.1385 24.8699 -3.4651 -1.0989 172.9390 3.0784 -1.4586 -0.0010 1.4039 -2.3386 -0.1003 3.7705 2.9954 6.3233 -1.7009 2.7543 0.1494 -4.2301 3.4411 -11.5247 8.9701 -6.4644 -17.5482 -4.7778 -6.0259 0.9941 -6.8478 -4.6275 -4.9993 0.0000 0.0000 16.0392 -0.8852 6.3253 -1.0416 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.6893 8.0958 3.9905 10.0412 2.3466 -6.9397 -0.0000 -0.0000 -3.4447 8.2544 -1.6518 4.9814 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7409 -2.8755 0.7332 6.6519 0.0000 0.0000 -4.7130 -1.3083 4.5140 6.6985 0.0000 0.0000 -6.3047 -3.6612 8.7793 10.2707 0.0000 0.0000 -9.5917 0.3375 1.3762 -1.2889 0.0000 -0.0000 - -2.6926 -46.1376 24.8705 -3.4638 -1.1193 172.9300 3.0887 -1.4605 0.0008 1.4078 -2.3422 -0.0988 3.7692 3.0180 6.3314 -1.7020 2.7550 0.1498 -4.2325 3.4428 -11.5240 8.9778 -6.4707 -17.5446 -4.7794 -6.0398 0.9873 -6.8423 -4.6289 -5.0041 0.0000 0.0000 16.0534 -0.8487 6.3251 -1.0390 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7035 8.0901 3.9908 10.0191 2.3431 -6.9269 -0.0000 -0.0000 -3.4597 8.2389 -1.6801 4.9647 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7249 -2.9085 0.6709 6.5515 0.0000 0.0000 -4.6163 -1.2399 4.4310 6.6156 0.0000 0.0000 -6.2922 -3.6749 8.7704 10.2623 0.0000 0.0000 -9.5936 0.3435 1.3950 -1.3078 0.0000 -0.0000 - -2.6948 -46.1369 24.8710 -3.4682 -1.1334 172.9180 3.0918 -1.4589 0.0051 1.4127 -2.3428 -0.0990 3.7693 3.0368 6.3427 -1.7027 2.7580 0.1476 -4.2371 3.4451 -11.5211 8.9840 -6.4772 -17.5395 -4.7792 -6.0531 0.9821 -6.8402 -4.6299 -5.0098 0.0000 0.0000 16.0692 -0.8162 6.3252 -1.0370 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.7164 8.0839 3.9899 9.9953 2.3422 -6.9120 -0.0000 -0.0000 -3.4759 8.2179 -1.7070 4.9516 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.7202 -2.9363 0.6135 6.4597 0.0000 0.0000 -4.5234 -1.1590 4.3483 6.5306 0.0000 0.0000 -6.2871 -3.6834 8.7702 10.2543 0.0000 0.0000 -9.5938 0.3435 1.4078 -1.3206 0.0000 -0.0000 - -2.6968 -46.1360 24.8715 -3.4652 -1.1519 172.9089 3.1046 -1.4599 0.0054 1.4132 -2.3489 -0.0961 3.7721 3.0625 6.3480 -1.7032 2.7580 0.1490 -4.2419 3.4480 -11.5177 8.9871 -6.4843 -17.5339 -4.7772 -6.0626 0.9779 -6.8401 -4.6341 -5.0171 0.0000 0.0000 16.0865 -0.7870 6.3271 -1.0359 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.7246 8.0749 3.9894 9.9699 2.3456 -6.9013 -0.0000 -0.0000 -3.4889 8.1911 -1.7310 4.9402 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7040 -2.9679 0.5540 6.3632 0.0000 0.0000 -4.4280 -1.0718 4.2671 6.4435 0.0000 0.0000 -6.2775 -3.6966 8.7717 10.2537 0.0000 0.0000 -9.5984 0.3398 1.4147 -1.3290 0.0000 -0.0000 - -2.6990 -46.1353 24.8719 -3.4685 -1.1636 172.8959 3.1083 -1.4571 0.0100 1.4162 -2.3491 -0.0961 3.7757 3.0808 6.3579 -1.7023 2.7608 0.1458 -4.2481 3.4515 -11.5120 8.9862 -6.4916 -17.5287 -4.7735 -6.0720 0.9759 -6.8418 -4.6369 -5.0230 0.0000 0.0000 16.1032 -0.7615 6.3313 -1.0363 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.7320 8.0677 3.9894 9.9443 2.3500 -6.8901 -0.0000 -0.0000 -3.5004 8.1602 -1.7540 4.9312 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.7011 -2.9934 0.5009 6.2772 0.0000 0.0000 -4.3385 -0.9835 4.1857 6.3574 0.0000 0.0000 -6.2742 -3.7038 8.7828 10.2505 0.0000 0.0000 -9.5998 0.3313 1.4157 -1.3324 0.0000 -0.0000 - -2.7010 -46.1347 24.8724 -3.4708 -1.1787 172.8842 3.1141 -1.4570 0.0120 1.4169 -2.3527 -0.0945 3.7820 3.1029 6.3658 -1.7011 2.7625 0.1447 -4.2541 3.4551 -11.5079 8.9808 -6.4991 -17.5243 -4.7689 -6.0795 0.9747 -6.8439 -4.6409 -5.0309 0.0000 0.0000 16.1208 -0.7382 6.3380 -1.0394 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7354 8.0601 3.9887 9.9161 2.3570 -6.8831 -0.0000 -0.0000 -3.5063 8.1233 -1.7755 4.9226 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.6962 -3.0223 0.4468 6.1903 0.0000 0.0000 -4.2483 -0.8992 4.1050 6.2723 0.0000 0.0000 -6.2728 -3.7156 8.7980 10.2538 0.0000 0.0000 -9.6046 0.3211 1.4099 -1.3329 0.0000 -0.0000 - -2.7032 -46.1340 24.8729 -3.4723 -1.1955 172.8733 3.1212 -1.4581 0.0133 1.4160 -2.3571 -0.0932 3.7898 3.1257 6.3726 -1.6990 2.7639 0.1437 -4.2596 3.4581 -11.5032 8.9713 -6.5066 -17.5220 -4.7628 -6.0856 0.9753 -6.8454 -4.6462 -5.0376 0.0000 0.0000 16.1362 -0.7186 6.3489 -1.0442 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.7368 8.0534 3.9895 9.8873 2.3643 -6.8793 -0.0000 -0.0000 -3.5080 8.0826 -1.7953 4.9151 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.6910 -3.0526 0.3929 6.1041 0.0000 0.0000 -4.1587 -0.8223 4.0238 6.1895 0.0000 0.0000 -6.2718 -3.7293 8.8165 10.2595 0.0000 0.0000 -9.6104 0.3101 1.3997 -1.3316 0.0000 -0.0000 - -2.7054 -46.1332 24.8735 -3.4752 -1.2122 172.8607 3.1251 -1.4598 0.0170 1.4161 -2.3605 -0.0923 3.7994 3.1468 6.3810 -1.6959 2.7661 0.1408 -4.2649 3.4614 -11.5006 8.9576 -6.5136 -17.5215 -4.7566 -6.0918 0.9766 -6.8468 -4.6506 -5.0438 0.0000 0.0000 16.1505 -0.7001 6.3613 -1.0509 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.7363 8.0492 3.9906 9.8552 2.3717 -6.8786 -0.0000 -0.0000 -3.5045 8.0397 -1.8157 4.9063 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.6884 -3.0829 0.3409 6.0188 0.0000 0.0000 -4.0700 -0.7551 3.9417 6.1102 0.0000 0.0000 -6.2706 -3.7432 8.8386 10.2628 0.0000 0.0000 -9.6151 0.2992 1.3873 -1.3281 0.0000 -0.0000 - -2.7076 -46.1323 24.8741 -3.4785 -1.2315 172.8490 3.1288 -1.4638 0.0195 1.4155 -2.3649 -0.0915 3.8100 3.1688 6.3886 -1.6924 2.7684 0.1384 -4.2693 3.4644 -11.4993 8.9405 -6.5201 -17.5233 -4.7500 -6.0976 0.9793 -6.8468 -4.6557 -5.0493 0.0000 0.0000 16.1626 -0.6860 6.3760 -1.0596 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -7.7344 8.0477 3.9935 9.8218 2.3775 -6.8818 -0.0000 -0.0000 -3.4965 7.9958 -1.8360 4.8986 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6858 -3.1159 0.2877 5.9318 0.0000 0.0000 -3.9805 -0.6985 3.8585 6.0333 0.0000 0.0000 -6.2704 -3.7599 8.8602 10.2675 0.0000 0.0000 -9.6209 0.2901 1.3742 -1.3254 0.0000 -0.0000 - -2.7098 -46.1314 24.8748 -3.4818 -1.2528 172.8386 3.1347 -1.4689 0.0216 1.4119 -2.3703 -0.0900 3.8212 3.1917 6.3940 -1.6879 2.7689 0.1368 -4.2726 3.4691 -11.4999 8.9218 -6.5263 -17.5274 -4.7432 -6.1034 0.9822 -6.8455 -4.6595 -5.0533 0.0000 0.0000 16.1731 -0.6751 6.3909 -1.0708 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.7322 8.0502 3.9980 9.7862 2.3814 -6.8886 -0.0000 -0.0000 -3.4847 7.9514 -1.8581 4.8915 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6820 -3.1507 0.2342 5.8419 0.0000 0.0000 -3.8901 -0.6518 3.7729 5.9595 0.0000 0.0000 -6.2706 -3.7782 8.8773 10.2736 0.0000 0.0000 -9.6278 0.2834 1.3643 -1.3225 0.0000 -0.0000 - -2.7122 -46.1303 24.8756 -3.4868 -1.2739 172.8262 3.1351 -1.4755 0.0248 1.4116 -2.3753 -0.0895 3.8340 3.2132 6.4016 -1.6841 2.7731 0.1342 -4.2750 3.4728 -11.5027 8.9021 -6.5317 -17.5330 -4.7377 -6.1101 0.9862 -6.8433 -4.6641 -5.0568 0.0000 0.0000 16.1814 -0.6674 6.4060 -1.0814 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7302 8.0560 4.0038 9.7480 2.3819 -6.8974 -0.0000 -0.0000 -3.4707 7.9092 -1.8795 4.8849 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6803 -3.1854 0.1816 5.7517 0.0000 0.0000 -3.7997 -0.6144 3.6873 5.8881 0.0000 0.0000 -6.2687 -3.7962 8.8969 10.2730 0.0000 0.0000 -9.6323 0.2798 1.3544 -1.3211 0.0000 -0.0000 - -2.7145 -46.1291 24.8764 -3.4924 -1.2967 172.8150 3.1362 -1.4838 0.0271 1.4105 -2.3813 -0.0888 3.8459 3.2357 6.4082 -1.6799 2.7770 0.1319 -4.2765 3.4778 -11.5070 8.8836 -6.5361 -17.5402 -4.7327 -6.1178 0.9902 -6.8406 -4.6671 -5.0586 0.0000 0.0000 16.1885 -0.6635 6.4197 -1.0920 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.7296 8.0653 4.0110 9.7082 2.3807 -6.9073 -0.0000 -0.0000 -3.4561 7.8702 -1.9037 4.8805 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.6773 -3.2214 0.1297 5.6589 0.0000 0.0000 -3.7086 -0.5839 3.6001 5.8189 0.0000 0.0000 -6.2671 -3.8155 8.9112 10.2727 0.0000 0.0000 -9.6378 0.2796 1.3490 -1.3205 0.0000 -0.0000 - -2.7170 -46.1277 24.8772 -3.4981 -1.3198 172.8050 3.1383 -1.4925 0.0290 1.4063 -2.3887 -0.0875 3.8595 3.2595 6.4124 -1.6761 2.7801 0.1300 -4.2767 3.4853 -11.5127 8.8676 -6.5400 -17.5475 -4.7274 -6.1266 0.9940 -6.8383 -4.6684 -5.0577 0.0000 0.0000 16.1938 -0.6618 6.4310 -1.1009 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7327 8.0766 4.0184 9.6682 2.3803 -6.9153 -0.0000 -0.0000 -3.4435 7.8357 -1.9326 4.8785 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6723 -3.2572 0.0803 5.5642 0.0000 0.0000 -3.6178 -0.5584 3.5113 5.7514 0.0000 0.0000 -6.2647 -3.8340 8.9165 10.2709 0.0000 0.0000 -9.6431 0.2820 1.3518 -1.3208 0.0000 -0.0000 - -2.7195 -46.1261 24.8781 -3.5046 -1.3413 172.7938 3.1376 -1.5013 0.0317 1.4053 -2.3960 -0.0870 3.8711 3.2820 6.4181 -1.6724 2.7857 0.1272 -4.2762 3.4938 -11.5191 8.8558 -6.5425 -17.5547 -4.7239 -6.1374 0.9973 -6.8359 -4.6677 -5.0552 0.0000 0.0000 16.1995 -0.6617 6.4401 -1.1078 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7377 8.0917 4.0269 9.6272 2.3767 -6.9232 -0.0000 -0.0000 -3.4324 7.8058 -1.9623 4.8781 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6676 -3.2907 0.0353 5.4715 0.0000 0.0000 -3.5297 -0.5362 3.4240 5.6860 0.0000 0.0000 -6.2603 -3.8507 8.9241 10.2643 0.0000 0.0000 -9.6470 0.2871 1.3545 -1.3218 0.0000 -0.0000 - -2.7221 -46.1242 24.8789 -3.5113 -1.3612 172.7828 3.1369 -1.5100 0.0336 1.4039 -2.4042 -0.0863 3.8818 3.3050 6.4233 -1.6690 2.7925 0.1249 -4.2743 3.5047 -11.5271 8.8483 -6.5438 -17.5600 -4.7203 -6.1500 1.0000 -6.8344 -4.6648 -5.0508 0.0000 0.0000 16.2044 -0.6616 6.4471 -1.1090 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7448 8.1089 4.0354 9.5864 2.3730 -6.9297 -0.0000 -0.0000 -3.4241 7.7821 -1.9940 4.8800 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.6618 -3.3213 -0.0046 5.3816 0.0000 0.0000 -3.4454 -0.5157 3.3387 5.6227 0.0000 0.0000 -6.2549 -3.8651 8.9293 10.2557 0.0000 0.0000 -9.6503 0.2939 1.3601 -1.3228 0.0000 -0.0000 - -2.7249 -46.1221 24.8796 -3.5184 -1.3789 172.7716 3.1346 -1.5177 0.0361 1.4033 -2.4126 -0.0861 3.8919 3.3273 6.4286 -1.6661 2.8000 0.1217 -4.2716 3.5183 -11.5341 8.8461 -6.5443 -17.5638 -4.7164 -6.1648 1.0018 -6.8342 -4.6581 -5.0430 0.0000 0.0000 16.2093 -0.6599 6.4526 -1.1060 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.7552 8.1283 4.0442 9.5470 2.3694 -6.9337 -0.0000 -0.0000 -3.4195 7.7636 -2.0266 4.8837 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.6557 -3.3480 -0.0376 5.2969 0.0000 0.0000 -3.3668 -0.4961 3.2569 5.5623 0.0000 0.0000 -6.2488 -3.8770 8.9359 10.2452 0.0000 0.0000 -9.6530 0.3019 1.3653 -1.3235 0.0000 -0.0000 - -2.7279 -46.1198 24.8802 -3.5266 -1.3925 172.7592 3.1307 -1.5236 0.0396 1.4031 -2.4198 -0.0863 3.9003 3.3469 6.4339 -1.6629 2.8092 0.1182 -4.2681 3.5346 -11.5404 8.8489 -6.5437 -17.5655 -4.7121 -6.1816 1.0017 -6.8354 -4.6482 -5.0309 0.0000 0.0000 16.2136 -0.6547 6.4584 -1.0971 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7676 8.1504 4.0521 9.5101 2.3654 -6.9340 -0.0000 -0.0000 -3.4193 7.7489 -2.0587 4.8891 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6513 -3.3688 -0.0621 5.2212 0.0000 0.0000 -3.2966 -0.4769 3.1807 5.5056 0.0000 0.0000 -6.2425 -3.8846 8.9478 10.2320 0.0000 0.0000 -9.6542 0.3099 1.3673 -1.3236 0.0000 -0.0000 - -2.7310 -46.1172 24.8808 -3.5347 -1.4042 172.7476 3.1263 -1.5289 0.0409 1.4016 -2.4281 -0.0857 3.9102 3.3678 6.4393 -1.6608 2.8177 0.1150 -4.2634 3.5540 -11.5463 8.8564 -6.5422 -17.5640 -4.7074 -6.2007 1.0012 -6.8377 -4.6331 -5.0181 0.0000 0.0000 16.2196 -0.6454 6.4640 -1.0836 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.7819 8.1716 4.0591 9.4768 2.3660 -6.9340 -0.0000 -0.0000 -3.4205 7.7396 -2.0926 4.8937 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.6460 -3.3851 -0.0799 5.1536 0.0000 0.0000 -3.2348 -0.4585 3.1122 5.4537 0.0000 0.0000 -6.2369 -3.8899 8.9599 10.2206 0.0000 0.0000 -9.6563 0.3169 1.3689 -1.3218 0.0000 -0.0000 - -2.7343 -46.1145 24.8812 -3.5430 -1.4134 172.7360 3.1213 -1.5333 0.0424 1.4005 -2.4368 -0.0857 3.9184 3.3885 6.4448 -1.6581 2.8269 0.1112 -4.2580 3.5748 -11.5500 8.8677 -6.5397 -17.5601 -4.7023 -6.2214 1.0001 -6.8411 -4.6153 -5.0024 0.0000 0.0000 16.2254 -0.6296 6.4723 -1.0646 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.7966 8.1924 4.0668 9.4477 2.3686 -6.9343 -0.0000 -0.0000 -3.4231 7.7333 -2.1235 4.8993 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6408 -3.3960 -0.0932 5.0960 0.0000 0.0000 -3.1829 -0.4416 3.0558 5.4076 0.0000 0.0000 -6.2321 -3.8924 8.9756 10.2104 0.0000 0.0000 -9.6588 0.3221 1.3673 -1.3187 0.0000 -0.0000 - -2.7378 -46.1115 24.8816 -3.5513 -1.4194 172.7231 3.1162 -1.5357 0.0438 1.3975 -2.4438 -0.0853 3.9278 3.4061 6.4506 -1.6554 2.8359 0.1082 -4.2521 3.5982 -11.5526 8.8812 -6.5368 -17.5539 -4.6964 -6.2418 0.9967 -6.8451 -4.5952 -4.9829 0.0000 0.0000 16.2302 -0.6078 6.4845 -1.0408 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8124 8.2134 4.0708 9.4245 2.3755 -6.9306 -0.0000 -0.0000 -3.4284 7.7301 -2.1530 4.9038 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6366 -3.4015 -0.0932 5.0508 0.0000 0.0000 -3.1423 -0.4265 3.0044 5.3685 0.0000 0.0000 -6.2274 -3.8920 8.9997 10.2010 0.0000 0.0000 -9.6614 0.3254 1.3591 -1.3138 0.0000 -0.0000 - -2.7415 -46.1084 24.8818 -3.5597 -1.4239 172.7114 3.1095 -1.5372 0.0439 1.3964 -2.4527 -0.0858 3.9349 3.4263 6.4580 -1.6518 2.8433 0.1044 -4.2453 3.6224 -11.5540 8.8961 -6.5333 -17.5444 -4.6902 -6.2626 0.9939 -6.8495 -4.5731 -4.9638 0.0000 0.0000 16.2366 -0.5783 6.5011 -1.0161 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8266 8.2326 4.0748 9.4058 2.3864 -6.9295 -0.0000 -0.0000 -3.4316 7.7276 -2.1793 4.9061 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.6319 -3.4024 -0.0912 5.0144 0.0000 0.0000 -3.1114 -0.4140 2.9671 5.3368 0.0000 0.0000 -6.2245 -3.8897 9.0269 10.1946 0.0000 0.0000 -9.6651 0.3259 1.3467 -1.3071 0.0000 -0.0000 - -2.7454 -46.1052 24.8820 -3.5673 -1.4264 172.6976 3.1051 -1.5378 0.0446 1.3918 -2.4578 -0.0846 3.9437 3.4409 6.4644 -1.6476 2.8518 0.1023 -4.2386 3.6473 -11.5528 8.9104 -6.5295 -17.5354 -4.6852 -6.2808 0.9889 -6.8522 -4.5522 -4.9419 0.0000 0.0000 16.2405 -0.5433 6.5234 -0.9877 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8404 8.2505 4.0758 9.3929 2.4019 -6.9268 -0.0000 -0.0000 -3.4364 7.7260 -2.2029 4.9092 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6286 -3.3991 -0.0774 4.9911 0.0000 0.0000 -3.0915 -0.4047 2.9359 5.3131 0.0000 0.0000 -6.2215 -3.8855 9.0603 10.1899 0.0000 0.0000 -9.6695 0.3235 1.3302 -1.2989 0.0000 -0.0000 - -2.7495 -46.1019 24.8821 -3.5760 -1.4261 172.6843 3.0967 -1.5366 0.0445 1.3901 -2.4656 -0.0857 3.9520 3.4609 6.4735 -1.6432 2.8578 0.0979 -4.2320 3.6701 -11.5482 8.9236 -6.5249 -17.5251 -4.6790 -6.3007 0.9877 -6.8548 -4.5284 -4.9221 0.0000 0.0000 16.2451 -0.5035 6.5481 -0.9612 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8497 8.2671 4.0807 9.3828 2.4181 -6.9314 -0.0000 -0.0000 -3.4362 7.7244 -2.2211 4.9096 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6260 -3.3903 -0.0719 4.9748 0.0000 0.0000 -3.0801 -0.3987 2.9266 5.2970 0.0000 0.0000 -6.2205 -3.8780 9.0960 10.1867 0.0000 0.0000 -9.6740 0.3174 1.3112 -1.2883 0.0000 -0.0000 - -2.7537 -46.0987 24.8821 -3.5882 -1.4220 172.6677 3.0850 -1.5309 0.0461 1.3876 -2.4774 -0.0873 3.9607 3.4838 6.4845 -1.6383 2.8626 0.0946 -4.2261 3.6920 -11.5442 8.9341 -6.5217 -17.5132 -4.6744 -6.3178 0.9858 -6.8568 -4.5068 -4.9033 0.0000 0.0000 16.2494 -0.4612 6.5760 -0.9367 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8569 8.2828 4.0828 9.3767 2.4373 -6.9361 -0.0000 -0.0000 -3.4350 7.7227 -2.2356 4.9100 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.6310 -3.3766 -0.0584 4.9706 0.0000 0.0000 -3.0783 -0.3954 2.9239 5.2883 0.0000 0.0000 -6.2234 -3.8668 9.1350 10.1839 0.0000 0.0000 -9.6776 0.3078 1.2921 -1.2764 0.0000 -0.0000 - -2.7582 -46.0960 24.8821 -3.6117 -1.4151 172.6492 3.0635 -1.5247 0.0470 1.3825 -2.4866 -0.0888 3.9723 3.5052 6.4957 -1.6335 2.8670 0.0932 -4.2223 3.7115 -11.5385 8.9411 -6.5186 -17.5018 -4.6713 -6.3342 0.9858 -6.8573 -4.4852 -4.8874 0.0000 0.0000 16.2538 -0.4179 6.6041 -0.9164 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8622 8.2988 4.0849 9.3726 2.4563 -6.9434 -0.0000 -0.0000 -3.4314 7.7211 -2.2467 4.9100 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6529 -3.3603 -0.0413 4.9777 0.0000 0.0000 -3.0834 -0.3942 2.9276 5.2857 0.0000 0.0000 -6.2416 -3.8542 9.1761 10.1857 0.0000 0.0000 -9.6816 0.2949 1.2722 -1.2631 0.0000 -0.0000 - -2.7625 -46.0928 24.8821 -3.6213 -1.4119 172.6318 3.0561 -1.5233 0.0460 1.3777 -2.4868 -0.0875 3.9831 3.5194 6.5066 -1.6279 2.8712 0.0903 -4.2192 3.7282 -11.5310 8.9459 -6.5161 -17.4908 -4.6700 -6.3419 0.9866 -6.8563 -4.4733 -4.8734 0.0000 0.0000 16.2581 -0.3756 6.6333 -0.9019 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8628 8.3101 4.0900 9.3689 2.4799 -6.9577 -0.0000 -0.0000 -3.4240 7.7195 -2.2566 4.9100 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6551 -3.3454 -0.0304 4.9804 0.0000 0.0000 -3.0892 -0.3956 2.9423 5.2871 0.0000 0.0000 -6.2441 -3.8432 9.2128 10.1882 0.0000 0.0000 -9.6878 0.2802 1.2551 -1.2498 0.0000 -0.0000 - -2.7668 -46.0895 24.8821 -3.6298 -1.4093 172.6120 3.0496 -1.5218 0.0460 1.3730 -2.4878 -0.0866 3.9951 3.5344 6.5170 -1.6227 2.8749 0.0893 -4.2176 3.7412 -11.5226 8.9478 -6.5148 -17.4799 -4.6679 -6.3474 0.9898 -6.8558 -4.4638 -4.8619 0.0000 0.0000 16.2608 -0.3372 6.6587 -0.8908 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8617 8.3202 4.0931 9.3651 2.5041 -6.9687 -0.0000 -0.0000 -3.4185 7.7200 -2.2649 4.9124 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.6568 -3.3309 -0.0191 4.9852 0.0000 0.0000 -3.0963 -0.3985 2.9614 5.2910 0.0000 0.0000 -6.2444 -3.8324 9.2480 10.1901 0.0000 0.0000 -9.6939 0.2639 1.2415 -1.2363 0.0000 -0.0000 - -2.7711 -46.0863 24.8822 -3.6398 -1.4041 172.5902 3.0415 -1.5178 0.0464 1.3690 -2.4899 -0.0866 4.0082 3.5517 6.5288 -1.6176 2.8782 0.0882 -4.2191 3.7497 -11.5131 8.9477 -6.5143 -17.4693 -4.6690 -6.3480 0.9947 -6.8545 -4.4610 -4.8540 0.0000 0.0000 16.2645 -0.3042 6.6802 -0.8859 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.8589 8.3279 4.0991 9.3596 2.5285 -6.9839 -0.0000 -0.0000 -3.4113 7.7209 -2.2738 4.9163 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6624 -3.3139 -0.0105 4.9929 0.0000 0.0000 -3.1052 -0.4015 2.9855 5.2963 0.0000 0.0000 -6.2455 -3.8184 9.2794 10.1901 0.0000 0.0000 -9.6979 0.2458 1.2336 -1.2237 0.0000 -0.0000 - -2.7754 -46.0832 24.8822 -3.6501 -1.3996 172.5667 3.0342 -1.5147 0.0472 1.3654 -2.4915 -0.0860 4.0213 3.5691 6.5405 -1.6134 2.8815 0.0876 -4.2224 3.7548 -11.5028 8.9452 -6.5152 -17.4598 -4.6704 -6.3459 1.0021 -6.8537 -4.4616 -4.8507 0.0000 0.0000 16.2697 -0.2776 6.6949 -0.8874 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8535 8.3365 4.1053 9.3505 2.5493 -6.9988 -0.0000 -0.0000 -3.4044 7.7219 -2.2832 4.9210 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6690 -3.2984 -0.0040 5.0002 0.0000 0.0000 -3.1126 -0.4045 3.0113 5.3010 0.0000 0.0000 -6.2472 -3.8051 9.3056 10.1911 0.0000 0.0000 -9.7017 0.2274 1.2317 -1.2126 0.0000 -0.0000 - -2.7797 -46.0806 24.8823 -3.6715 -1.3925 172.5406 3.0176 -1.5095 0.0489 1.3614 -2.4962 -0.0856 4.0354 3.5895 6.5517 -1.6103 2.8850 0.0875 -4.2287 3.7553 -11.4916 8.9414 -6.5173 -17.4506 -4.6721 -6.3451 1.0119 -6.8540 -4.4615 -4.8504 0.0000 0.0000 16.2756 -0.2596 6.7013 -0.8928 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8472 8.3482 4.1118 9.3376 2.5632 -7.0110 -0.0000 -0.0000 -3.3999 7.7242 -2.2926 4.9271 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6925 -3.2828 0.0033 5.0128 0.0000 0.0000 -3.1200 -0.4068 3.0354 5.3040 0.0000 0.0000 -6.2629 -3.7909 9.3285 10.1945 0.0000 0.0000 -9.7040 0.2090 1.2349 -1.2042 0.0000 -0.0000 - -2.7837 -46.0774 24.8824 -3.6793 -1.3906 172.5161 3.0148 -1.5110 0.0488 1.3588 -2.4938 -0.0852 4.0483 3.6067 6.5640 -1.6073 2.8881 0.0866 -4.2369 3.7529 -11.4801 8.9381 -6.5204 -17.4413 -4.6741 -6.3393 1.0230 -6.8553 -4.4677 -4.8529 0.0000 0.0000 16.2831 -0.2485 6.7010 -0.9016 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8394 8.3559 4.1216 9.3201 2.5783 -7.0258 -0.0000 -0.0000 -3.3960 7.7288 -2.3061 4.9342 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6957 -3.2712 0.0043 5.0150 0.0000 0.0000 -3.1216 -0.4095 3.0612 5.3039 0.0000 0.0000 -6.2622 -3.7801 9.3453 10.1968 0.0000 0.0000 -9.7069 0.1930 1.2424 -1.1993 0.0000 -0.0000 - -2.7874 -46.0743 24.8825 -3.6857 -1.3906 172.4908 3.0135 -1.5114 0.0489 1.3574 -2.4935 -0.0833 4.0623 3.6213 6.5731 -1.6056 2.8935 0.0869 -4.2473 3.7477 -11.4684 8.9359 -6.5248 -17.4322 -4.6769 -6.3293 1.0344 -6.8582 -4.4800 -4.8564 0.0000 0.0000 16.2908 -0.2424 6.6980 -0.9134 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8348 8.3609 4.1302 9.3015 2.5942 -7.0361 -0.0000 -0.0000 -3.3946 7.7351 -2.3252 4.9410 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.6979 -3.2627 0.0068 5.0167 0.0000 0.0000 -3.1209 -0.4125 3.0827 5.3005 0.0000 0.0000 -6.2593 -3.7715 9.3565 10.1988 0.0000 0.0000 -9.7093 0.1797 1.2555 -1.1989 0.0000 -0.0000 - -2.7912 -46.0711 24.8827 -3.6930 -1.3877 172.4638 3.0120 -1.5105 0.0499 1.3568 -2.4944 -0.0834 4.0747 3.6402 6.5844 -1.6045 2.8981 0.0865 -4.2586 3.7402 -11.4566 8.9339 -6.5298 -17.4236 -4.6767 -6.3250 1.0465 -6.8632 -4.4855 -4.8597 0.0000 0.0000 16.2994 -0.2439 6.6885 -0.9259 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8286 8.3701 4.1400 9.2780 2.6011 -7.0444 -0.0000 -0.0000 -3.3957 7.7404 -2.3452 4.9476 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7024 -3.2517 0.0096 5.0188 0.0000 0.0000 -3.1201 -0.4156 3.1030 5.2945 0.0000 0.0000 -6.2561 -3.7598 9.3675 10.1974 0.0000 0.0000 -9.7081 0.1690 1.2708 -1.2030 0.0000 -0.0000 - -2.7948 -46.0678 24.8828 -3.6994 -1.3876 172.4376 3.0120 -1.5112 0.0503 1.3564 -2.4947 -0.0821 4.0878 3.6565 6.5934 -1.6044 2.9035 0.0863 -4.2714 3.7321 -11.4452 8.9334 -6.5356 -17.4145 -4.6768 -6.3191 1.0591 -6.8696 -4.4933 -4.8636 0.0000 0.0000 16.3084 -0.2480 6.6788 -0.9371 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.8242 8.3783 4.1515 9.2524 2.6067 -7.0530 -0.0000 -0.0000 -3.3971 7.7463 -2.3690 4.9515 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7051 -3.2441 0.0126 5.0189 0.0000 0.0000 -3.1171 -0.4201 3.1205 5.2859 0.0000 0.0000 -6.2524 -3.7516 9.3752 10.1977 0.0000 0.0000 -9.7072 0.1624 1.2880 -1.2120 0.0000 -0.0000 - -2.7983 -46.0646 24.8830 -3.7059 -1.3871 172.4115 3.0123 -1.5116 0.0509 1.3570 -2.4957 -0.0815 4.0995 3.6733 6.6026 -1.6050 2.9093 0.0860 -4.2842 3.7230 -11.4347 8.9337 -6.5415 -17.4063 -4.6746 -6.3178 1.0704 -6.8777 -4.4961 -4.8650 0.0000 0.0000 16.3170 -0.2547 6.6697 -0.9467 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8215 8.3870 4.1622 9.2259 2.6087 -7.0582 -0.0000 -0.0000 -3.4008 7.7511 -2.3953 4.9536 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.7080 -3.2365 0.0172 5.0191 0.0000 0.0000 -3.1141 -0.4260 3.1356 5.2758 0.0000 0.0000 -6.2484 -3.7435 9.3830 10.1967 0.0000 0.0000 -9.7049 0.1599 1.3053 -1.2255 0.0000 -0.0000 - -2.8017 -46.0612 24.8831 -3.7124 -1.3869 172.3863 3.0130 -1.5118 0.0515 1.3580 -2.4970 -0.0810 4.1105 3.6895 6.6109 -1.6061 2.9152 0.0856 -4.2967 3.7145 -11.4250 8.9348 -6.5475 -17.3986 -4.6704 -6.3202 1.0807 -6.8867 -4.4944 -4.8635 0.0000 0.0000 16.3248 -0.2612 6.6644 -0.9533 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8203 8.3962 4.1731 9.1994 2.6076 -7.0622 -0.0000 -0.0000 -3.4051 7.7548 -2.4234 4.9528 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7103 -3.2293 0.0236 5.0191 0.0000 0.0000 -3.1115 -0.4338 3.1487 5.2656 0.0000 0.0000 -6.2440 -3.7362 9.3909 10.1952 0.0000 0.0000 -9.7020 0.1616 1.3218 -1.2434 0.0000 -0.0000 - -2.8051 -46.0579 24.8832 -3.7189 -1.3869 172.3621 3.0137 -1.5116 0.0520 1.3593 -2.4987 -0.0806 4.1203 3.7050 6.6185 -1.6076 2.9210 0.0852 -4.3082 3.7071 -11.4171 8.9363 -6.5534 -17.3916 -4.6648 -6.3265 1.0894 -6.8958 -4.4881 -4.8591 0.0000 0.0000 16.3320 -0.2669 6.6647 -0.9561 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8210 8.4055 4.1835 9.1742 2.6046 -7.0654 -0.0000 -0.0000 -3.4096 7.7568 -2.4526 4.9494 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7120 -3.2223 0.0312 5.0188 0.0000 0.0000 -3.1099 -0.4435 3.1608 5.2558 0.0000 0.0000 -6.2395 -3.7294 9.3995 10.1928 0.0000 0.0000 -9.6988 0.1671 1.3370 -1.2637 0.0000 -0.0000 - -2.8084 -46.0545 24.8834 -3.7265 -1.3846 172.3380 3.0124 -1.5094 0.0537 1.3628 -2.5030 -0.0816 4.1277 3.7237 6.6271 -1.6093 2.9265 0.0844 -4.3183 3.7004 -11.4110 8.9375 -6.5583 -17.3865 -4.6585 -6.3374 1.0969 -6.9047 -4.4772 -4.8529 0.0000 0.0000 16.3388 -0.2681 6.6731 -0.9554 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8231 8.4140 4.1937 9.1508 2.5997 -7.0694 -0.0000 -0.0000 -3.4126 7.7543 -2.4817 4.9433 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7150 -3.2127 0.0408 5.0197 0.0000 0.0000 -3.1110 -0.4548 3.1731 5.2485 0.0000 0.0000 -6.2347 -3.7203 9.4093 10.1870 0.0000 0.0000 -9.6941 0.1751 1.3518 -1.2855 0.0000 -0.0000 - -2.8116 -46.0511 24.8835 -3.7330 -1.3859 172.3178 3.0142 -1.5084 0.0530 1.3630 -2.5037 -0.0802 4.1358 3.7342 6.6317 -1.6113 2.9318 0.0842 -4.3271 3.6969 -11.4065 8.9390 -6.5622 -17.3825 -4.6509 -6.3508 1.1013 -6.9124 -4.4616 -4.8404 0.0000 0.0000 16.3436 -0.2671 6.6883 -0.9493 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.8276 8.4235 4.2030 9.1302 2.5937 -7.0709 -0.0000 -0.0000 -3.4166 7.7497 -2.5113 4.9350 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7145 -3.2068 0.0502 5.0182 0.0000 0.0000 -3.1118 -0.4675 3.1834 5.2432 0.0000 0.0000 -6.2301 -3.7155 9.4179 10.1837 0.0000 0.0000 -9.6923 0.1864 1.3638 -1.3069 0.0000 -0.0000 - -2.8148 -46.0476 24.8837 -3.7404 -1.3832 172.2968 3.0123 -1.5053 0.0543 1.3673 -2.5068 -0.0805 4.1408 3.7501 6.6384 -1.6136 2.9363 0.0831 -4.3337 3.6943 -11.4050 8.9398 -6.5651 -17.3799 -4.6439 -6.3680 1.1052 -6.9187 -4.4423 -4.8291 0.0000 0.0000 16.3501 -0.2592 6.7105 -0.9405 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8318 8.4314 4.2123 9.1125 2.5864 -7.0758 -0.0000 -0.0000 -3.4169 7.7410 -2.5383 4.9246 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.7150 -3.1964 0.0600 5.0171 0.0000 0.0000 -3.1155 -0.4806 3.1965 5.2410 0.0000 0.0000 -6.2240 -3.7059 9.4275 10.1745 0.0000 0.0000 -9.6885 0.1977 1.3769 -1.3258 0.0000 -0.0000 - -2.8179 -46.0442 24.8838 -3.7474 -1.3834 172.2797 3.0136 -1.5031 0.0538 1.3674 -2.5073 -0.0795 4.1465 3.7598 6.6418 -1.6159 2.9404 0.0824 -4.3384 3.6943 -11.4054 8.9393 -6.5671 -17.3790 -4.6359 -6.3884 1.1058 -6.9222 -4.4186 -4.8109 0.0000 0.0000 16.3539 -0.2479 6.7389 -0.9261 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8386 8.4392 4.2201 9.0986 2.5787 -7.0773 -0.0000 -0.0000 -3.4197 7.7290 -2.5636 4.9167 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.7132 -3.1892 0.0695 5.0140 0.0000 0.0000 -3.1189 -0.4937 3.2072 5.2420 0.0000 0.0000 -6.2184 -3.6997 9.4349 10.1669 0.0000 0.0000 -9.6876 0.2099 1.3884 -1.3413 0.0000 -0.0000 - -2.8210 -46.0408 24.8840 -3.7540 -1.3790 172.2627 3.0119 -1.4964 0.0545 1.3731 -2.5097 -0.0801 4.1476 3.7727 6.6459 -1.6180 2.9422 0.0813 -4.3420 3.6965 -11.4072 8.9386 -6.5681 -17.3797 -4.6321 -6.4063 1.1087 -6.9231 -4.3969 -4.7992 0.0000 0.0000 16.3635 -0.2293 6.7714 -0.9114 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8462 8.4441 4.2301 9.0875 2.5731 -7.0839 -0.0000 -0.0000 -3.4178 7.7140 -2.5890 4.9080 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7118 -3.1766 0.0775 5.0119 0.0000 0.0000 -3.1254 -0.5053 3.2206 5.2463 0.0000 0.0000 -6.2102 -3.6875 9.4422 10.1535 0.0000 0.0000 -9.6848 0.2196 1.4012 -1.3511 0.0000 -0.0000 - -2.8241 -46.0375 24.8842 -3.7607 -1.3761 172.2477 3.0117 -1.4912 0.0543 1.3753 -2.5105 -0.0799 4.1501 3.7832 6.6480 -1.6203 2.9446 0.0798 -4.3446 3.6991 -11.4095 8.9372 -6.5674 -17.3825 -4.6264 -6.4285 1.1083 -6.9222 -4.3705 -4.7800 0.0000 0.0000 16.3701 -0.2082 6.8036 -0.8914 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8551 8.4486 4.2386 9.0799 2.5654 -7.0865 -0.0000 -0.0000 -3.4181 7.6966 -2.6115 4.9027 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.7089 -3.1660 0.0844 5.0072 0.0000 0.0000 -3.1305 -0.5158 3.2330 5.2519 0.0000 0.0000 -6.2019 -3.6767 9.4481 10.1396 0.0000 0.0000 -9.6837 0.2273 1.4133 -1.3548 0.0000 -0.0000 - -2.8271 -46.0342 24.8844 -3.7662 -1.3716 172.2332 3.0118 -1.4844 0.0550 1.3792 -2.5120 -0.0796 4.1509 3.7933 6.6494 -1.6230 2.9475 0.0784 -4.3459 3.7023 -11.4149 8.9357 -6.5654 -17.3855 -4.6224 -6.4491 1.1066 -6.9199 -4.3459 -4.7628 0.0000 0.0000 16.3803 -0.1825 6.8340 -0.8707 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8613 8.4537 4.2459 9.0719 2.5545 -7.0895 -0.0000 -0.0000 -3.4168 7.6764 -2.6313 4.8990 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7056 -3.1537 0.0914 5.0033 0.0000 0.0000 -3.1365 -0.5242 3.2444 5.2589 0.0000 0.0000 -6.1918 -3.6635 9.4506 10.1236 0.0000 0.0000 -9.6827 0.2312 1.4286 -1.3519 0.0000 -0.0000 - -2.8300 -46.0310 24.8846 -3.7708 -1.3669 172.2200 3.0128 -1.4768 0.0552 1.3831 -2.5129 -0.0794 4.1511 3.8026 6.6499 -1.6255 2.9490 0.0768 -4.3474 3.7068 -11.4203 8.9345 -6.5632 -17.3895 -4.6205 -6.4683 1.1045 -6.9152 -4.3218 -4.7463 0.0000 0.0000 16.3936 -0.1544 6.8592 -0.8499 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.8688 8.4573 4.2540 9.0665 2.5439 -7.0926 -0.0000 -0.0000 -3.4146 7.6554 -2.6513 4.8976 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7015 -3.1414 0.0970 4.9989 0.0000 0.0000 -3.1417 -0.5308 3.2551 5.2656 0.0000 0.0000 -6.1807 -3.6496 9.4524 10.1071 0.0000 0.0000 -9.6820 0.2310 1.4433 -1.3427 0.0000 -0.0000 - -2.8329 -46.0278 24.8849 -3.7741 -1.3621 172.2075 3.0148 -1.4692 0.0554 1.3869 -2.5136 -0.0793 4.1517 3.8115 6.6495 -1.6284 2.9510 0.0751 -4.3489 3.7107 -11.4260 8.9340 -6.5598 -17.3939 -4.6190 -6.4871 1.1009 -6.9099 -4.2978 -4.7287 0.0000 0.0000 16.4090 -0.1248 6.8766 -0.8294 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8745 8.4618 4.2621 9.0613 2.5290 -7.0952 -0.0000 -0.0000 -3.4118 7.6337 -2.6693 4.8991 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6967 -3.1290 0.1021 4.9950 0.0000 0.0000 -3.1462 -0.5357 3.2641 5.2711 0.0000 0.0000 -6.1685 -3.6351 9.4531 10.0905 0.0000 0.0000 -9.6815 0.2263 1.4580 -1.3282 0.0000 -0.0000 - -2.8357 -46.0246 24.8852 -3.7762 -1.3575 172.1953 3.0178 -1.4613 0.0554 1.3909 -2.5140 -0.0791 4.1521 3.8195 6.6485 -1.6306 2.9520 0.0734 -4.3515 3.7154 -11.4314 8.9348 -6.5564 -17.3980 -4.6198 -6.5014 1.0980 -6.9049 -4.2774 -4.7149 0.0000 0.0000 16.4286 -0.0940 6.8857 -0.8102 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8810 8.4638 4.2707 9.0560 2.5158 -7.0978 -0.0000 -0.0000 -3.4086 7.6147 -2.6890 4.9043 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.6917 -3.1171 0.1067 4.9923 0.0000 0.0000 -3.1499 -0.5393 3.2719 5.2748 0.0000 0.0000 -6.1560 -3.6208 9.4541 10.0760 0.0000 0.0000 -9.6815 0.2172 1.4715 -1.3096 0.0000 -0.0000 - -2.8383 -46.0216 24.8854 -3.7772 -1.3535 172.1834 3.0216 -1.4540 0.0554 1.3946 -2.5142 -0.0790 4.1536 3.8270 6.6472 -1.6331 2.9529 0.0715 -4.3547 3.7193 -11.4361 8.9364 -6.5528 -17.4018 -4.6201 -6.5137 1.0945 -6.9019 -4.2585 -4.7019 0.0000 0.0000 16.4506 -0.0635 6.8855 -0.7944 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8854 8.4662 4.2797 9.0494 2.4998 -7.1003 -0.0000 -0.0000 -3.4048 7.5980 -2.7096 4.9119 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6868 -3.1061 0.1113 4.9912 0.0000 0.0000 -3.1526 -0.5424 3.2780 5.2757 0.0000 0.0000 -6.1440 -3.6076 9.4558 10.0643 0.0000 0.0000 -9.6818 0.2039 1.4832 -1.2887 0.0000 -0.0000 - -2.8409 -46.0186 24.8856 -3.7777 -1.3507 172.1715 3.0258 -1.4477 0.0551 1.3982 -2.5141 -0.0788 4.1564 3.8337 6.6456 -1.6358 2.9538 0.0699 -4.3587 3.7229 -11.4398 8.9393 -6.5494 -17.4049 -4.6211 -6.5233 1.0911 -6.9009 -4.2419 -4.6908 0.0000 0.0000 16.4746 -0.0337 6.8768 -0.7809 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.8890 8.4683 4.2892 9.0414 2.4821 -7.1034 -0.0000 -0.0000 -3.3999 7.5842 -2.7314 4.9209 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.6829 -3.0967 0.1162 4.9922 0.0000 0.0000 -3.1546 -0.5453 3.2829 5.2741 0.0000 0.0000 -6.1338 -3.5962 9.4599 10.0576 0.0000 0.0000 -9.6827 0.1870 1.4914 -1.2677 0.0000 -0.0000 - -2.8433 -46.0157 24.8858 -3.7772 -1.3482 172.1594 3.0305 -1.4413 0.0550 1.4016 -2.5141 -0.0790 4.1602 3.8401 6.6442 -1.6377 2.9543 0.0682 -4.3634 3.7258 -11.4420 8.9433 -6.5464 -17.4069 -4.6213 -6.5309 1.0882 -6.9023 -4.2262 -4.6809 0.0000 0.0000 16.4991 -0.0077 6.8609 -0.7710 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8921 8.4702 4.3002 9.0323 2.4628 -7.1074 -0.0000 -0.0000 -3.3946 7.5736 -2.7545 4.9319 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6795 -3.0876 0.1222 4.9962 0.0000 0.0000 -3.1570 -0.5485 3.2866 5.2705 0.0000 0.0000 -6.1243 -3.5858 9.4676 10.0545 0.0000 0.0000 -9.6834 0.1671 1.4954 -1.2478 0.0000 -0.0000 - -2.8456 -46.0130 24.8859 -3.7775 -1.3488 172.1470 3.0343 -1.4376 0.0540 1.4043 -2.5137 -0.0787 4.1663 3.8448 6.6439 -1.6400 2.9549 0.0673 -4.3682 3.7285 -11.4437 8.9476 -6.5440 -17.4085 -4.6199 -6.5370 1.0826 -6.9076 -4.2111 -4.6689 0.0000 0.0000 16.5215 0.0168 6.8407 -0.7637 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8904 8.4776 4.3116 9.0195 2.4348 -7.1138 -0.0000 -0.0000 -3.3879 7.5656 -2.7753 4.9430 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6780 -3.0825 0.1296 5.0020 0.0000 0.0000 -3.1583 -0.5528 3.2889 5.2646 0.0000 0.0000 -6.1199 -3.5800 9.4752 10.0601 0.0000 0.0000 -9.6866 0.1448 1.4985 -1.2310 0.0000 -0.0000 - -2.8479 -46.0102 24.8859 -3.7744 -1.3474 172.1323 3.0412 -1.4321 0.0547 1.4064 -2.5139 -0.0789 4.1726 3.8512 6.6445 -1.6412 2.9550 0.0665 -4.3728 3.7300 -11.4429 8.9523 -6.5417 -17.4100 -4.6182 -6.5420 1.0792 -6.9150 -4.1965 -4.6604 0.0000 0.0000 16.5436 0.0367 6.8176 -0.7609 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.8875 8.4838 4.3263 9.0048 2.4062 -7.1250 -0.0000 -0.0000 -3.3790 7.5614 -2.7969 4.9551 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.6757 -3.0748 0.1397 5.0125 0.0000 0.0000 -3.1628 -0.5574 3.2916 5.2585 0.0000 0.0000 -6.1126 -3.5723 9.4891 10.0675 0.0000 0.0000 -9.6884 0.1202 1.4977 -1.2171 0.0000 -0.0000 - -2.8499 -46.0075 24.8859 -3.7744 -1.3498 172.1180 3.0411 -1.4296 0.0540 1.4097 -2.5138 -0.0780 4.1841 3.8543 6.6456 -1.6431 2.9562 0.0671 -4.3767 3.7318 -11.4443 8.9564 -6.5402 -17.4088 -4.6155 -6.5453 1.0732 -6.9258 -4.1833 -4.6499 0.0000 0.0000 16.5612 0.0533 6.7957 -0.7595 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8858 8.4911 4.3374 8.9902 2.3766 -7.1324 -0.0000 -0.0000 -3.3726 7.5595 -2.8200 4.9673 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.6746 -3.0720 0.1483 5.0202 0.0000 0.0000 -3.1647 -0.5634 3.2960 5.2521 0.0000 0.0000 -6.1112 -3.5704 9.5029 10.0812 0.0000 0.0000 -9.6923 0.0948 1.4955 -1.2082 0.0000 -0.0000 - -2.8519 -46.0050 24.8858 -3.7722 -1.3526 172.1017 3.0458 -1.4272 0.0541 1.4117 -2.5131 -0.0781 4.1928 3.8579 6.6492 -1.6434 2.9551 0.0682 -4.3795 3.7334 -11.4421 8.9600 -6.5391 -17.4097 -4.6107 -6.5488 1.0682 -6.9389 -4.1681 -4.6407 0.0000 0.0000 16.5762 0.0638 6.7752 -0.7608 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8792 8.5016 4.3551 8.9712 2.3416 -7.1507 -0.0000 -0.0000 -3.3625 7.5599 -2.8384 4.9804 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6735 -3.0695 0.1597 5.0321 0.0000 0.0000 -3.1695 -0.5695 3.3005 5.2471 0.0000 0.0000 -6.1114 -3.5698 9.5208 10.1027 0.0000 0.0000 -9.6986 0.0687 1.4910 -1.2027 0.0000 -0.0000 - -2.8538 -46.0026 24.8856 -3.7708 -1.3559 172.0842 3.0470 -1.4256 0.0544 1.4136 -2.5128 -0.0774 4.2054 3.8610 6.6536 -1.6448 2.9550 0.0702 -4.3796 3.7347 -11.4424 8.9617 -6.5387 -17.4076 -4.6048 -6.5523 1.0625 -6.9533 -4.1536 -4.6303 0.0000 0.0000 16.5856 0.0710 6.7606 -0.7621 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8723 8.5132 4.3719 8.9523 2.3047 -7.1685 -0.0000 -0.0000 -3.3536 7.5606 -2.8553 4.9924 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6723 -3.0679 0.1710 5.0425 0.0000 0.0000 -3.1744 -0.5758 3.3074 5.2441 0.0000 0.0000 -6.1123 -3.5701 9.5362 10.1250 0.0000 0.0000 -9.7052 0.0420 1.4905 -1.2005 0.0000 -0.0000 - -2.8554 -46.0003 24.8854 -3.7682 -1.3623 172.0662 3.0523 -1.4261 0.0549 1.4118 -2.5127 -0.0772 4.2183 3.8628 6.6606 -1.6453 2.9552 0.0726 -4.3782 3.7351 -11.4425 8.9624 -6.5380 -17.4063 -4.5996 -6.5549 1.0569 -6.9671 -4.1403 -4.6225 0.0000 0.0000 16.5928 0.0738 6.7516 -0.7650 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8640 8.5249 4.3907 8.9313 2.2667 -7.1916 -0.0000 -0.0000 -3.3439 7.5614 -2.8690 5.0042 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6694 -3.0700 0.1823 5.0520 0.0000 0.0000 -3.1793 -0.5818 3.3152 5.2433 0.0000 0.0000 -6.1164 -3.5749 9.5521 10.1563 0.0000 0.0000 -9.7166 0.0164 1.4900 -1.2008 0.0000 -0.0000 - -2.8570 -45.9982 24.8852 -3.7666 -1.3679 172.0466 3.0537 -1.4258 0.0545 1.4126 -2.5118 -0.0769 4.2303 3.8641 6.6685 -1.6450 2.9532 0.0765 -4.3749 3.7368 -11.4411 8.9619 -6.5378 -17.4056 -4.5934 -6.5580 1.0520 -6.9801 -4.1253 -4.6130 0.0000 0.0000 16.5945 0.0718 6.7492 -0.7655 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8587 8.5368 4.4119 8.9123 2.2302 -7.2149 -0.0000 -0.0000 -3.3379 7.5620 -2.8801 5.0184 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6665 -3.0716 0.1925 5.0590 0.0000 0.0000 -3.1844 -0.5871 3.3264 5.2453 0.0000 0.0000 -6.1209 -3.5789 9.5643 10.1861 0.0000 0.0000 -9.7279 -0.0092 1.4953 -1.2013 0.0000 -0.0000 - -2.8585 -45.9962 24.8849 -3.7654 -1.3737 172.0259 3.0535 -1.4262 0.0558 1.4135 -2.5114 -0.0756 4.2440 3.8653 6.6774 -1.6455 2.9526 0.0808 -4.3691 3.7370 -11.4431 8.9598 -6.5371 -17.4039 -4.5889 -6.5628 1.0447 -6.9907 -4.1097 -4.6050 0.0000 0.0000 16.5959 0.0659 6.7523 -0.7663 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8493 8.5515 4.4332 8.8896 2.1885 -7.2425 -0.0000 -0.0000 -3.3303 7.5582 -2.8829 5.0283 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6630 -3.0738 0.2015 5.0638 0.0000 0.0000 -3.1893 -0.5912 3.3400 5.2501 0.0000 0.0000 -6.1260 -3.5830 9.5695 10.2164 0.0000 0.0000 -9.7407 -0.0337 1.5092 -1.2023 0.0000 -0.0000 - -2.8599 -45.9944 24.8847 -3.7645 -1.3792 172.0041 3.0527 -1.4259 0.0565 1.4146 -2.5109 -0.0747 4.2565 3.8661 6.6871 -1.6456 2.9506 0.0859 -4.3619 3.7375 -11.4434 8.9570 -6.5365 -17.4031 -4.5843 -6.5684 1.0388 -6.9985 -4.0931 -4.5961 0.0000 0.0000 16.5939 0.0575 6.7604 -0.7638 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8435 8.5656 4.4572 8.8690 2.1488 -7.2696 -0.0000 -0.0000 -3.3268 7.5522 -2.8815 5.0394 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6590 -3.0760 0.2093 5.0659 0.0000 0.0000 -3.1937 -0.5944 3.3557 5.2564 0.0000 0.0000 -6.1310 -3.5863 9.5691 10.2451 0.0000 0.0000 -9.7543 -0.0570 1.5305 -1.2019 0.0000 -0.0000 - -2.8613 -45.9927 24.8844 -3.7638 -1.3832 171.9817 3.0515 -1.4239 0.0566 1.4162 -2.5103 -0.0742 4.2667 3.8669 6.6974 -1.6448 2.9470 0.0922 -4.3538 3.7383 -11.4441 8.9542 -6.5355 -17.4022 -4.5816 -6.5738 1.0334 -7.0024 -4.0766 -4.5886 0.0000 0.0000 16.5921 0.0443 6.7727 -0.7588 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8420 8.5767 4.4821 8.8510 2.1147 -7.2954 -0.0000 -0.0000 -3.3264 7.5454 -2.8797 5.0510 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6550 -3.0770 0.2160 5.0665 0.0000 0.0000 -3.1981 -0.5964 3.3727 5.2644 0.0000 0.0000 -6.1348 -3.5876 9.5642 10.2699 0.0000 0.0000 -9.7671 -0.0781 1.5578 -1.2002 0.0000 -0.0000 - -2.8626 -45.9913 24.8842 -3.7629 -1.3881 171.9589 3.0498 -1.4227 0.0578 1.4176 -2.5107 -0.0732 4.2787 3.8672 6.7078 -1.6455 2.9454 0.0980 -4.3442 3.7369 -11.4460 8.9514 -6.5342 -17.4010 -4.5809 -6.5813 1.0270 -7.0028 -4.0598 -4.5816 0.0000 0.0000 16.5920 0.0303 6.7866 -0.7531 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8391 8.5891 4.5070 8.8316 2.0771 -7.3210 -0.0000 -0.0000 -3.3273 7.5344 -2.8696 5.0601 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6496 -3.0791 0.2205 5.0637 0.0000 0.0000 -3.2005 -0.5980 3.3914 5.2725 0.0000 0.0000 -6.1387 -3.5895 9.5516 10.2942 0.0000 0.0000 -9.7813 -0.0964 1.5932 -1.1968 0.0000 -0.0000 - -2.8638 -45.9899 24.8840 -3.7619 -1.3928 171.9362 3.0481 -1.4211 0.0592 1.4195 -2.5117 -0.0722 4.2903 3.8674 6.7177 -1.6466 2.9441 0.1036 -4.3342 3.7339 -11.4480 8.9503 -6.5325 -17.4000 -4.5816 -6.5903 1.0204 -7.0006 -4.0424 -4.5746 0.0000 0.0000 16.5937 0.0128 6.8016 -0.7462 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8377 8.6011 4.5325 8.8126 2.0400 -7.3446 -0.0000 -0.0000 -3.3303 7.5195 -2.8551 5.0678 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.6433 -3.0812 0.2238 5.0588 0.0000 0.0000 -3.2014 -0.5996 3.4107 5.2799 0.0000 0.0000 -6.1414 -3.5906 9.5328 10.3154 0.0000 0.0000 -9.7953 -0.1115 1.6348 -1.1923 0.0000 -0.0000 - -2.8650 -45.9887 24.8839 -3.7604 -1.3969 171.9139 3.0466 -1.4185 0.0601 1.4218 -2.5131 -0.0716 4.3008 3.8674 6.7270 -1.6478 2.9424 0.1092 -4.3241 3.7301 -11.4496 8.9503 -6.5306 -17.3989 -4.5838 -6.6006 1.0141 -6.9955 -4.0243 -4.5674 0.0000 0.0000 16.5978 -0.0062 6.8158 -0.7400 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8396 8.6114 4.5581 8.7955 2.0055 -7.3654 -0.0000 -0.0000 -3.3350 7.5032 -2.8382 5.0735 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6365 -3.0827 0.2258 5.0526 0.0000 0.0000 -3.2011 -0.6015 3.4300 5.2858 0.0000 0.0000 -6.1425 -3.5907 9.5102 10.3329 0.0000 0.0000 -9.8083 -0.1228 1.6799 -1.1872 0.0000 -0.0000 - -2.8662 -45.9876 24.8838 -3.7578 -1.4009 171.8923 3.0460 -1.4151 0.0609 1.4245 -2.5152 -0.0711 4.3109 3.8673 6.7357 -1.6493 2.9406 0.1144 -4.3141 3.7246 -11.4505 8.9519 -6.5286 -17.3984 -4.5858 -6.6126 1.0080 -6.9904 -4.0053 -4.5597 0.0000 0.0000 16.6040 -0.0271 6.8288 -0.7347 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.8428 8.6209 4.5834 8.7788 1.9723 -7.3835 -0.0000 -0.0000 -3.3413 7.4852 -2.8194 5.0773 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6284 -3.0839 0.2270 5.0456 0.0000 0.0000 -3.1996 -0.6042 3.4490 5.2893 0.0000 0.0000 -6.1413 -3.5901 9.4849 10.3469 0.0000 0.0000 -9.8200 -0.1300 1.7267 -1.1824 0.0000 -0.0000 - -2.8672 -45.9862 24.8837 -3.7479 -1.4062 171.8725 3.0517 -1.4110 0.0608 1.4286 -2.5191 -0.0712 4.3197 3.8675 6.7452 -1.6509 2.9389 0.1186 -4.3037 3.7175 -11.4522 8.9566 -6.5272 -17.3976 -4.5892 -6.6251 1.0014 -6.9850 -3.9864 -4.5523 0.0000 0.0000 16.6138 -0.0510 6.8400 -0.7322 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8468 8.6284 4.6072 8.7623 1.9420 -7.3991 -0.0000 -0.0000 -3.3473 7.4670 -2.8003 5.0788 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6102 -3.0853 0.2262 5.0347 0.0000 0.0000 -3.1959 -0.6080 3.4681 5.2903 0.0000 0.0000 -6.1302 -3.5898 9.4586 10.3564 0.0000 0.0000 -9.8308 -0.1327 1.7724 -1.1791 0.0000 -0.0000 - -2.8683 -45.9845 24.8837 -3.7275 -1.4102 171.8534 3.0659 -1.4041 0.0615 1.4337 -2.5228 -0.0717 4.3288 3.8669 6.7529 -1.6528 2.9377 0.1219 -4.2935 3.7086 -11.4523 8.9637 -6.5255 -17.3979 -4.5922 -6.6359 0.9956 -6.9819 -3.9714 -4.5438 0.0000 0.0000 16.6241 -0.0765 6.8520 -0.7324 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8522 8.6323 4.6314 8.7468 1.9161 -7.4135 -0.0000 -0.0000 -3.3520 7.4498 -2.7833 5.0775 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -4.5799 -3.0834 0.2252 5.0225 0.0000 0.0000 -3.1927 -0.6126 3.4875 5.2890 0.0000 0.0000 -6.1033 -3.5857 9.4354 10.3570 0.0000 0.0000 -9.8381 -0.1315 1.8148 -1.1777 0.0000 -0.0000 - -2.8695 -45.9838 24.8835 -3.7273 -1.4116 171.8328 3.0632 -1.4006 0.0630 1.4359 -2.5232 -0.0694 4.3385 3.8671 6.7571 -1.6544 2.9350 0.1278 -4.2852 3.6992 -11.4547 8.9718 -6.5244 -17.3980 -4.5977 -6.6515 0.9878 -6.9804 -3.9517 -4.5350 0.0000 0.0000 16.6373 -0.1061 6.8621 -0.7385 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.8623 8.6391 4.6494 8.7329 1.8893 -7.4204 -0.0000 -0.0000 -3.3581 7.4342 -2.7691 5.0761 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.5791 -3.0824 0.2300 5.0216 0.0000 0.0000 -3.1911 -0.6178 3.5015 5.2855 0.0000 0.0000 -6.1028 -3.5836 9.4183 10.3631 0.0000 0.0000 -9.8453 -0.1275 1.8511 -1.1785 0.0000 -0.0000 - -2.8706 -45.9832 24.8834 -3.7262 -1.4132 171.8147 3.0610 -1.3961 0.0640 1.4385 -2.5249 -0.0691 4.3484 3.8671 6.7616 -1.6565 2.9326 0.1325 -4.2770 3.6879 -11.4558 8.9813 -6.5235 -17.3996 -4.5997 -6.6695 0.9808 -6.9852 -3.9308 -4.5233 0.0000 0.0000 16.6484 -0.1396 6.8721 -0.7478 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.8699 8.6470 4.6698 8.7173 1.8609 -7.4311 -0.0000 -0.0000 -3.3599 7.4190 -2.7566 5.0723 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.5774 -3.0811 0.2319 5.0210 0.0000 0.0000 -3.1894 -0.6233 3.5165 5.2804 0.0000 0.0000 -6.1020 -3.5815 9.4020 10.3695 0.0000 0.0000 -9.8523 -0.1213 1.8839 -1.1814 0.0000 -0.0000 - -2.8716 -45.9819 24.8833 -3.7088 -1.4170 171.7989 3.0735 -1.3862 0.0651 1.4422 -2.5362 -0.0725 4.3571 3.8699 6.7720 -1.6581 2.9314 0.1322 -4.2673 3.6747 -11.4564 8.9930 -6.5231 -17.4024 -4.6004 -6.6846 0.9753 -6.9940 -3.9149 -4.5116 0.0000 0.0000 16.6582 -0.1780 6.8858 -0.7607 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.8767 8.6521 4.6878 8.7021 1.8364 -7.4385 -0.0000 -0.0000 -3.3607 7.4055 -2.7494 5.0682 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.5538 -3.0796 0.2327 5.0142 0.0000 0.0000 -3.1868 -0.6288 3.5316 5.2743 0.0000 0.0000 -6.0799 -3.5795 9.3912 10.3704 0.0000 0.0000 -9.8586 -0.1128 1.9092 -1.1863 0.0000 -0.0000 - -2.8728 -45.9815 24.8831 -3.7077 -1.4181 171.7828 3.0706 -1.3841 0.0644 1.4451 -2.5350 -0.0703 4.3664 3.8700 6.7750 -1.6591 2.9276 0.1382 -4.2591 3.6621 -11.4597 9.0042 -6.5233 -17.4061 -4.6032 -6.7009 0.9689 -7.0062 -3.8984 -4.5016 0.0000 0.0000 16.6679 -0.2226 6.9018 -0.7770 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.8868 8.6570 4.7024 8.6886 1.8158 -7.4465 -0.0000 -0.0000 -3.3578 7.3954 -2.7511 5.0636 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.5534 -3.0778 0.2345 5.0154 0.0000 0.0000 -3.1860 -0.6335 3.5457 5.2685 0.0000 0.0000 -6.0790 -3.5782 9.3885 10.3758 0.0000 0.0000 -9.8651 -0.1046 1.9261 -1.1925 0.0000 -0.0000 - -2.8739 -45.9805 24.8830 -3.6912 -1.4194 171.7671 3.0842 -1.3785 0.0661 1.4452 -2.5352 -0.0712 4.3763 3.8683 6.7803 -1.6601 2.9244 0.1420 -4.2494 3.6497 -11.4623 9.0168 -6.5240 -17.4112 -4.6014 -6.7146 0.9630 -7.0241 -3.8854 -4.4882 0.0000 0.0000 16.6724 -0.2726 6.9222 -0.7943 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8916 8.6644 4.7200 8.6729 1.7926 -7.4594 -0.0000 -0.0000 -3.3513 7.3840 -2.7547 5.0585 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.5348 -3.0738 0.2380 5.0148 0.0000 0.0000 -3.1872 -0.6372 3.5589 5.2634 0.0000 0.0000 -6.0579 -3.5743 9.3888 10.3756 0.0000 0.0000 -9.8708 -0.0971 1.9407 -1.1986 0.0000 -0.0000 - -2.8749 -45.9803 24.8828 -3.6901 -1.4204 171.7527 3.0804 -1.3765 0.0656 1.4494 -2.5357 -0.0687 4.3849 3.8690 6.7847 -1.6606 2.9211 0.1460 -4.2392 3.6359 -11.4673 9.0271 -6.5247 -17.4177 -4.6006 -6.7312 0.9585 -7.0450 -3.8713 -4.4789 0.0000 0.0000 16.6764 -0.3294 6.9447 -0.8112 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.9007 8.6699 4.7286 8.6609 1.7750 -7.4621 -0.0000 -0.0000 -3.3477 7.3742 -2.7680 5.0560 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.5342 -3.0721 0.2381 5.0152 0.0000 0.0000 -3.1871 -0.6393 3.5737 5.2593 0.0000 0.0000 -6.0577 -3.5737 9.3941 10.3822 0.0000 0.0000 -9.8788 -0.0911 1.9486 -1.2042 0.0000 -0.0000 - -2.8760 -45.9802 24.8825 -3.6858 -1.4212 171.7397 3.0826 -1.3731 0.0656 1.4521 -2.5377 -0.0700 4.3908 3.8704 6.7914 -1.6599 2.9163 0.1501 -4.2289 3.6235 -11.4727 9.0378 -6.5259 -17.4252 -4.5969 -6.7458 0.9533 -7.0686 -3.8597 -4.4660 0.0000 0.0000 16.6761 -0.3942 6.9716 -0.8259 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.9056 8.6785 4.7416 8.6474 1.7549 -7.4722 -0.0000 -0.0000 -3.3395 7.3621 -2.7832 5.0525 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.5312 -3.0697 0.2369 5.0173 0.0000 0.0000 -3.1890 -0.6399 3.5886 5.2569 0.0000 0.0000 -6.0553 -3.5725 9.4018 10.3909 0.0000 0.0000 -9.8882 -0.0872 1.9532 -1.2079 0.0000 -0.0000 - -2.8771 -45.9802 24.8823 -3.6824 -1.4216 171.7264 3.0824 -1.3710 0.0658 1.4539 -2.5388 -0.0693 4.4006 3.8720 6.7974 -1.6599 2.9124 0.1536 -4.2183 3.6104 -11.4789 9.0473 -6.5269 -17.4339 -4.5938 -6.7603 0.9498 -7.0925 -3.8499 -4.4556 0.0000 0.0000 16.6739 -0.4640 7.0015 -0.8356 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.9110 8.6860 4.7508 8.6355 1.7382 -7.4775 -0.0000 -0.0000 -3.3337 7.3505 -2.8029 5.0526 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.5283 -3.0672 0.2365 5.0171 0.0000 0.0000 -3.1904 -0.6393 3.6028 5.2564 0.0000 0.0000 -6.0528 -3.5709 9.4098 10.3973 0.0000 0.0000 -9.8973 -0.0856 1.9583 -1.2102 0.0000 -0.0000 - -2.8781 -45.9801 24.8821 -3.6719 -1.4216 171.7140 3.0897 -1.3677 0.0659 1.4544 -2.5412 -0.0702 4.4104 3.8741 6.8053 -1.6590 2.9084 0.1564 -4.2068 3.5978 -11.4847 9.0555 -6.5281 -17.4441 -4.5895 -6.7721 0.9476 -7.1160 -3.8438 -4.4465 0.0000 0.0000 16.6705 -0.5408 7.0342 -0.8389 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.9155 8.6923 4.7588 8.6250 1.7250 -7.4801 -0.0000 -0.0000 -3.3298 7.3356 -2.8244 5.0520 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.5159 -3.0633 0.2351 5.0136 0.0000 0.0000 -3.1918 -0.6379 3.6173 5.2575 0.0000 0.0000 -6.0405 -3.5672 9.4155 10.3995 0.0000 0.0000 -9.9055 -0.0860 1.9660 -1.2106 0.0000 -0.0000 - -2.8792 -45.9805 24.8820 -3.6702 -1.4220 171.7010 3.0871 -1.3670 0.0664 1.4576 -2.5415 -0.0679 4.4204 3.8741 6.8101 -1.6580 2.9042 0.1610 -4.1966 3.5868 -11.4937 9.0630 -6.5295 -17.4532 -4.5861 -6.7848 0.9451 -7.1379 -3.8360 -4.4396 0.0000 0.0000 16.6689 -0.6221 7.0654 -0.8371 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.9193 8.6991 4.7668 8.6142 1.7144 -7.4851 -0.0000 -0.0000 -3.3242 7.3193 -2.8478 5.0511 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.5144 -3.0615 0.2346 5.0111 0.0000 0.0000 -3.1921 -0.6365 3.6305 5.2596 0.0000 0.0000 -6.0401 -3.5658 9.4226 10.4053 0.0000 0.0000 -9.9150 -0.0873 1.9725 -1.2099 0.0000 -0.0000 - -2.8802 -45.9805 24.8819 -3.6561 -1.4220 171.6900 3.0975 -1.3644 0.0661 1.4586 -2.5413 -0.0683 4.4313 3.8732 6.8177 -1.6562 2.8990 0.1644 -4.1863 3.5775 -11.5025 9.0702 -6.5314 -17.4624 -4.5810 -6.7950 0.9425 -7.1574 -3.8300 -4.4320 0.0000 0.0000 16.6673 -0.7072 7.0960 -0.8278 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.9215 8.7058 4.7748 8.6040 1.7068 -7.4881 -0.0000 -0.0000 -3.3207 7.3018 -2.8692 5.0502 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.4957 -3.0569 0.2297 5.0018 0.0000 0.0000 -3.1915 -0.6356 3.6465 5.2625 0.0000 0.0000 -6.0230 -3.5608 9.4232 10.4044 0.0000 0.0000 -9.9221 -0.0892 1.9847 -1.2084 0.0000 -0.0000 - -2.8813 -45.9812 24.8818 -3.6526 -1.4223 171.6797 3.0983 -1.3639 0.0660 1.4598 -2.5416 -0.0687 4.4432 3.8727 6.8229 -1.6544 2.8941 0.1700 -4.1782 3.5674 -11.5112 9.0762 -6.5324 -17.4730 -4.5764 -6.8075 0.9383 -7.1752 -3.8222 -4.4234 0.0000 0.0000 16.6674 -0.7930 7.1243 -0.8122 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.9212 8.7147 4.7842 8.5908 1.6976 -7.4933 -0.0000 -0.0000 -3.3173 7.2823 -2.8853 5.0493 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4904 -3.0545 0.2247 4.9946 0.0000 0.0000 -3.1895 -0.6360 3.6609 5.2654 0.0000 0.0000 -6.0213 -3.5584 9.4220 10.4088 0.0000 0.0000 -9.9300 -0.0902 1.9973 -1.2074 0.0000 -0.0000 - -2.8822 -45.9814 24.8818 -3.6382 -1.4230 171.6699 3.1069 -1.3614 0.0661 1.4622 -2.5416 -0.0667 4.4584 3.8692 6.8274 -1.6526 2.8905 0.1720 -4.1710 3.5568 -11.5188 9.0816 -6.5332 -17.4830 -4.5732 -6.8167 0.9377 -7.1900 -3.8186 -4.4198 0.0000 0.0000 16.6724 -0.8776 7.1511 -0.7919 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -7.9258 8.7158 4.7903 8.5803 1.7012 -7.4892 -0.0000 -0.0000 -3.3190 7.2656 -2.9014 5.0481 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.4706 -3.0508 0.2224 4.9827 0.0000 0.0000 -3.1863 -0.6381 3.6724 5.2679 0.0000 0.0000 -6.0026 -3.5540 9.4207 10.4031 0.0000 0.0000 -9.9338 -0.0888 2.0100 -1.2085 0.0000 -0.0000 - -2.8832 -45.9825 24.8818 -3.6374 -1.4237 171.6608 3.1054 -1.3602 0.0669 1.4637 -2.5428 -0.0669 4.4725 3.8675 6.8305 -1.6497 2.8846 0.1770 -4.1668 3.5472 -11.5271 9.0864 -6.5347 -17.4926 -4.5687 -6.8309 0.9335 -7.2035 -3.8078 -4.4115 0.0000 0.0000 16.6787 -0.9609 7.1730 -0.7674 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.9264 8.7244 4.7992 8.5646 1.6983 -7.4898 -0.0000 -0.0000 -3.3186 7.2487 -2.9094 5.0452 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4692 -3.0494 0.2223 4.9757 0.0000 0.0000 -3.1820 -0.6423 3.6801 5.2694 0.0000 0.0000 -6.0035 -3.5524 9.4165 10.4037 0.0000 0.0000 -9.9376 -0.0851 2.0238 -1.2118 0.0000 -0.0000 - -2.8843 -45.9835 24.8819 -3.6355 -1.4238 171.6552 3.1041 -1.3571 0.0654 1.4597 -2.5439 -0.0689 4.4961 3.8625 6.8335 -1.6480 2.8794 0.1833 -4.1649 3.5381 -11.5360 9.0905 -6.5360 -17.5019 -4.5647 -6.8445 0.9272 -7.2156 -3.7971 -4.4013 0.0000 0.0000 16.6873 -1.0397 7.1921 -0.7398 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.9272 8.7340 4.8078 8.5460 1.6974 -7.4902 -0.0000 -0.0000 -3.3182 7.2338 -2.9108 5.0409 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.4635 -3.0465 0.2135 4.9623 0.0000 0.0000 -3.1748 -0.6486 3.6935 5.2698 0.0000 0.0000 -6.0026 -3.5492 9.4059 10.4009 0.0000 0.0000 -9.9384 -0.0793 2.0407 -1.2176 0.0000 -0.0000 - -2.8853 -45.9846 24.8819 -3.6342 -1.4246 171.6488 3.1018 -1.3539 0.0667 1.4603 -2.5449 -0.0687 4.5161 3.8580 6.8348 -1.6448 2.8722 0.1868 -4.1645 3.5279 -11.5431 9.0943 -6.5373 -17.5118 -4.5596 -6.8599 0.9228 -7.2282 -3.7840 -4.3927 0.0000 0.0000 16.6992 -1.1134 7.2086 -0.7117 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.9300 8.7398 4.8146 8.5253 1.7046 -7.4866 -0.0000 -0.0000 -3.3186 7.2239 -2.9110 5.0355 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.4613 -3.0448 0.2142 4.9537 0.0000 0.0000 -3.1683 -0.6564 3.6982 5.2689 0.0000 0.0000 -6.0023 -3.5477 9.4022 10.3974 0.0000 0.0000 -9.9377 -0.0699 2.0510 -1.2260 0.0000 -0.0000 - -2.8863 -45.9859 24.8820 -3.6330 -1.4253 171.6450 3.1001 -1.3506 0.0662 1.4594 -2.5459 -0.0690 4.5379 3.8522 6.8354 -1.6408 2.8660 0.1911 -4.1657 3.5155 -11.5505 9.0968 -6.5378 -17.5217 -4.5568 -6.8737 0.9183 -7.2405 -3.7746 -4.3852 0.0000 0.0000 16.7135 -1.1779 7.2260 -0.6843 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.9328 8.7454 4.8209 8.5006 1.7142 -7.4827 -0.0000 -0.0000 -3.3188 7.2177 -2.9072 5.0300 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4590 -3.0428 0.2126 4.9441 0.0000 0.0000 -3.1605 -0.6655 3.7029 5.2668 0.0000 0.0000 -6.0021 -3.5462 9.3992 10.3920 0.0000 0.0000 -9.9348 -0.0587 2.0581 -1.2363 0.0000 -0.0000 - -2.8874 -45.9871 24.8820 -3.6319 -1.4260 171.6430 3.0981 -1.3460 0.0660 1.4567 -2.5466 -0.0697 4.5639 3.8445 6.8350 -1.6371 2.8589 0.1959 -4.1679 3.5033 -11.5582 9.0991 -6.5383 -17.5316 -4.5518 -6.8885 0.9127 -7.2547 -3.7631 -4.3757 0.0000 0.0000 16.7283 -1.2370 7.2427 -0.6589 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.9350 8.7524 4.8261 8.4723 1.7263 -7.4792 -0.0000 -0.0000 -3.3171 7.2147 -2.9019 5.0242 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4564 -3.0406 0.2095 4.9334 0.0000 0.0000 -3.1518 -0.6750 3.7079 5.2639 0.0000 0.0000 -6.0017 -3.5446 9.3977 10.3851 0.0000 0.0000 -9.9305 -0.0468 2.0622 -1.2469 0.0000 -0.0000 - -2.8885 -45.9885 24.8821 -3.6308 -1.4268 171.6426 3.0961 -1.3409 0.0656 1.4537 -2.5468 -0.0702 4.5909 3.8355 6.8340 -1.6330 2.8512 0.2008 -4.1700 3.4901 -11.5658 9.0999 -6.5386 -17.5420 -4.5471 -6.9017 0.9073 -7.2705 -3.7544 -4.3666 0.0000 0.0000 16.7429 -1.2879 7.2616 -0.6350 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.9364 8.7605 4.8299 8.4401 1.7406 -7.4759 -0.0000 -0.0000 -3.3141 7.2136 -2.8963 5.0175 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4543 -3.0383 0.2060 4.9232 0.0000 0.0000 -3.1429 -0.6842 3.7121 5.2605 0.0000 0.0000 -6.0012 -3.5430 9.3987 10.3773 0.0000 0.0000 -9.9252 -0.0356 2.0624 -1.2566 0.0000 -0.0000 - -2.8896 -45.9899 24.8822 -3.6298 -1.4274 171.6437 3.0945 -1.3356 0.0652 1.4504 -2.5464 -0.0706 4.6185 3.8254 6.8326 -1.6285 2.8430 0.2060 -4.1722 3.4760 -11.5741 9.1001 -6.5387 -17.5524 -4.5422 -6.9136 0.9023 -7.2872 -3.7483 -4.3579 0.0000 0.0000 16.7566 -1.3305 7.2835 -0.6136 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.9367 8.7699 4.8325 8.4056 1.7568 -7.4730 -0.0000 -0.0000 -3.3102 7.2142 -2.8921 5.0111 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4527 -3.0357 0.2015 4.9134 0.0000 0.0000 -3.1340 -0.6926 3.7162 5.2569 0.0000 0.0000 -6.0008 -3.5413 9.4027 10.3690 0.0000 0.0000 -9.9197 -0.0267 2.0587 -1.2638 0.0000 -0.0000 - -2.8907 -45.9914 24.8823 -3.6289 -1.4278 171.6458 3.0934 -1.3305 0.0646 1.4470 -2.5454 -0.0708 4.6460 3.8146 6.8309 -1.6237 2.8348 0.2114 -4.1735 3.4614 -11.5828 9.0995 -6.5387 -17.5627 -4.5377 -6.9235 0.8982 -7.3044 -3.7459 -4.3504 0.0000 0.0000 16.7686 -1.3679 7.3089 -0.5931 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.9358 8.7811 4.8339 8.3698 1.7738 -7.4702 -0.0000 -0.0000 -3.3061 7.2136 -2.8903 5.0051 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4517 -3.0329 0.1959 4.9042 0.0000 0.0000 -3.1254 -0.6995 3.7205 5.2535 0.0000 0.0000 -6.0006 -3.5392 9.4082 10.3608 0.0000 0.0000 -9.9144 -0.0216 2.0528 -1.2669 0.0000 -0.0000 - -2.8919 -45.9930 24.8824 -3.6281 -1.4278 171.6489 3.0930 -1.3256 0.0641 1.4426 -2.5435 -0.0709 4.6737 3.8027 6.8290 -1.6189 2.8265 0.2173 -4.1734 3.4460 -11.5919 9.0981 -6.5382 -17.5732 -4.5328 -6.9322 0.8948 -7.3212 -3.7463 -4.3434 0.0000 0.0000 16.7780 -1.4004 7.3368 -0.5732 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.9336 8.7936 4.8340 8.3345 1.7923 -7.4676 -0.0000 -0.0000 -3.3020 7.2097 -2.8935 4.9984 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4510 -3.0295 0.1886 4.8951 0.0000 0.0000 -3.1171 -0.7048 3.7257 5.2509 0.0000 0.0000 -6.0006 -3.5364 9.4160 10.3524 0.0000 0.0000 -9.9095 -0.0211 2.0442 -1.2658 0.0000 -0.0000 - -2.8931 -45.9946 24.8824 -3.6275 -1.4274 171.6525 3.0934 -1.3215 0.0635 1.4386 -2.5410 -0.0708 4.6997 3.7908 6.8275 -1.6138 2.8183 0.2234 -4.1712 3.4306 -11.6010 9.0960 -6.5376 -17.5834 -4.5282 -6.9392 0.8926 -7.3365 -3.7500 -4.3379 0.0000 0.0000 16.7854 -1.4313 7.3661 -0.5525 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.9295 8.8075 4.8335 8.3007 1.8117 -7.4655 -0.0000 -0.0000 -3.2987 7.2018 -2.9009 4.9916 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.4508 -3.0258 0.1803 4.8864 0.0000 0.0000 -3.1094 -0.7086 3.7312 5.2490 0.0000 0.0000 -6.0010 -3.5330 9.4241 10.3447 0.0000 0.0000 -9.9053 -0.0258 2.0350 -1.2600 0.0000 -0.0000 - -2.8945 -45.9963 24.8826 -3.6271 -1.4257 171.6562 3.0942 -1.3177 0.0625 1.4327 -2.5349 -0.0694 4.7277 3.7740 6.8253 -1.6098 2.8113 0.2301 -4.1664 3.4168 -11.6104 9.0929 -6.5371 -17.5930 -4.5233 -6.9422 0.8904 -7.3500 -3.7589 -4.3319 0.0000 0.0000 16.7901 -1.4624 7.3965 -0.5298 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -7.9217 8.8274 4.8326 8.2683 1.8273 -7.4633 -0.0000 -0.0000 -3.2971 7.1879 -2.9106 4.9844 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4515 -3.0204 0.1702 4.8783 0.0000 0.0000 -3.1028 -0.7111 3.7385 5.2484 0.0000 0.0000 -6.0016 -3.5272 9.4288 10.3366 0.0000 0.0000 -9.9010 -0.0359 2.0294 -1.2505 0.0000 -0.0000 - -2.8958 -45.9981 24.8827 -3.6266 -1.4256 171.6598 3.0964 -1.3167 0.0625 1.4318 -2.5335 -0.0699 4.7466 3.7656 6.8255 -1.6039 2.8033 0.2355 -4.1600 3.4005 -11.6190 9.0910 -6.5358 -17.6016 -4.5198 -6.9498 0.8917 -7.3583 -3.7647 -4.3302 0.0000 0.0000 16.7946 -1.4934 7.4210 -0.5054 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.9169 8.8388 4.8332 8.2429 1.8530 -7.4628 -0.0000 -0.0000 -3.2974 7.1703 -2.9291 4.9763 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4520 -3.0170 0.1625 4.8706 0.0000 0.0000 -3.0961 -0.7129 3.7429 5.2483 0.0000 0.0000 -6.0031 -3.5238 9.4380 10.3313 0.0000 0.0000 -9.8986 -0.0487 2.0186 -1.2387 0.0000 -0.0000 - -2.8972 -45.9998 24.8828 -3.6265 -1.4248 171.6635 3.0988 -1.3164 0.0618 1.4288 -2.5314 -0.0700 4.7676 3.7554 6.8258 -1.5993 2.7964 0.2417 -4.1515 3.3866 -11.6277 9.0897 -6.5349 -17.6089 -4.5175 -6.9541 0.8914 -7.3629 -3.7746 -4.3266 0.0000 0.0000 16.7970 -1.5270 7.4429 -0.4784 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.9095 8.8560 4.8343 8.2212 1.8736 -7.4621 -0.0000 -0.0000 -3.3005 7.1460 -2.9464 4.9676 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4525 -3.0126 0.1529 4.8623 0.0000 0.0000 -3.0898 -0.7146 3.7490 5.2489 0.0000 0.0000 -6.0056 -3.5190 9.4415 10.3269 0.0000 0.0000 -9.8961 -0.0646 2.0128 -1.2267 0.0000 -0.0000 - -2.8986 -46.0016 24.8829 -3.6264 -1.4240 171.6667 3.1017 -1.3176 0.0613 1.4268 -2.5294 -0.0699 4.7865 3.7451 6.8264 -1.5951 2.7905 0.2475 -4.1407 3.3738 -11.6354 9.0893 -6.5343 -17.6148 -4.5155 -6.9589 0.8915 -7.3638 -3.7842 -4.3230 0.0000 0.0000 16.7990 -1.5629 7.4571 -0.4494 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.9010 8.8736 4.8374 8.2032 1.8950 -7.4627 -0.0000 -0.0000 -3.3059 7.1187 -2.9651 4.9580 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4531 -3.0081 0.1451 4.8545 0.0000 0.0000 -3.0842 -0.7169 3.7535 5.2502 0.0000 0.0000 -6.0086 -3.5140 9.4427 10.3236 0.0000 0.0000 -9.8934 -0.0810 2.0089 -1.2166 0.0000 -0.0000 - -2.9001 -46.0033 24.8830 -3.6261 -1.4235 171.6695 3.1049 -1.3200 0.0609 1.4257 -2.5282 -0.0699 4.8034 3.7354 6.8276 -1.5910 2.7853 0.2529 -4.1281 3.3627 -11.6422 9.0903 -6.5341 -17.6193 -4.5139 -6.9648 0.8915 -7.3615 -3.7921 -4.3186 0.0000 0.0000 16.8015 -1.6018 7.4620 -0.4191 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8935 8.8905 4.8430 8.1894 1.9184 -7.4648 -0.0000 -0.0000 -3.3134 7.0910 -2.9835 4.9471 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4535 -3.0040 0.1402 4.8472 0.0000 0.0000 -3.0790 -0.7201 3.7556 5.2518 0.0000 0.0000 -6.0123 -3.5093 9.4417 10.3219 0.0000 0.0000 -9.8905 -0.0960 2.0062 -1.2103 0.0000 -0.0000 - -2.9017 -46.0048 24.8831 -3.6263 -1.4229 171.6719 3.1070 -1.3244 0.0600 1.4244 -2.5263 -0.0688 4.8219 3.7236 6.8295 -1.5882 2.7833 0.2574 -4.1138 3.3526 -11.6484 9.0932 -6.5341 -17.6227 -4.5141 -6.9698 0.8885 -7.3572 -3.8020 -4.3109 0.0000 0.0000 16.8034 -1.6413 7.4602 -0.3881 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8836 8.9123 4.8507 8.1762 1.9353 -7.4683 -0.0000 -0.0000 -3.3215 7.0613 -2.9961 4.9360 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4545 -2.9996 0.1354 4.8406 0.0000 0.0000 -3.0748 -0.7247 3.7577 5.2535 0.0000 0.0000 -6.0171 -3.5045 9.4375 10.3212 0.0000 0.0000 -9.8869 -0.1083 2.0058 -1.2092 0.0000 -0.0000 - -2.9032 -46.0063 24.8831 -3.6259 -1.4233 171.6744 3.1096 -1.3295 0.0599 1.4248 -2.5266 -0.0692 4.8366 3.7139 6.8312 -1.5848 2.7803 0.2617 -4.0981 3.3445 -11.6533 9.0980 -6.5346 -17.6245 -4.5137 -6.9783 0.8864 -7.3523 -3.8062 -4.3030 0.0000 0.0000 16.8079 -1.6824 7.4476 -0.3592 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8783 8.9289 4.8615 8.1654 1.9604 -7.4738 -0.0000 -0.0000 -3.3294 7.0398 -3.0082 4.9257 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4545 -2.9961 0.1361 4.8345 0.0000 0.0000 -3.0710 -0.7302 3.7544 5.2551 0.0000 0.0000 -6.0223 -3.5011 9.4340 10.3228 0.0000 0.0000 -9.8834 -0.1161 2.0034 -1.2141 0.0000 -0.0000 - -2.9047 -46.0075 24.8831 -3.6248 -1.4242 171.6769 3.1117 -1.3343 0.0604 1.4268 -2.5288 -0.0700 4.8497 3.7060 6.8325 -1.5815 2.7752 0.2656 -4.0808 3.3391 -11.6568 9.1047 -6.5361 -17.6256 -4.5120 -6.9891 0.8846 -7.3489 -3.8049 -4.2941 0.0000 0.0000 16.8140 -1.7222 7.4251 -0.3334 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8783 8.9428 4.8747 8.1574 1.9911 -7.4802 -0.0000 -0.0000 -3.3363 7.0225 -3.0203 4.9163 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4538 -2.9933 0.1419 4.8294 0.0000 0.0000 -3.0682 -0.7363 3.7463 5.2568 0.0000 0.0000 -6.0270 -3.4988 9.4319 10.3256 0.0000 0.0000 -9.8797 -0.1189 1.9990 -1.2242 0.0000 -0.0000 - -2.9063 -46.0086 24.8831 -3.6236 -1.4254 171.6809 3.1140 -1.3413 0.0599 1.4271 -2.5311 -0.0704 4.8645 3.6965 6.8340 -1.5791 2.7748 0.2688 -4.0622 3.3329 -11.6614 9.1128 -6.5373 -17.6260 -4.5129 -6.9989 0.8779 -7.3473 -3.8075 -4.2814 0.0000 0.0000 16.8213 -1.7577 7.4015 -0.3119 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.8755 8.9609 4.8892 8.1453 2.0144 -7.4903 -0.0000 -0.0000 -3.3387 7.0109 -3.0233 4.9074 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4527 -2.9903 0.1452 4.8249 0.0000 0.0000 -3.0664 -0.7428 3.7393 5.2584 0.0000 0.0000 -6.0330 -3.4966 9.4273 10.3311 0.0000 0.0000 -9.8765 -0.1181 1.9952 -1.2378 0.0000 -0.0000 - -2.9079 -46.0095 24.8830 -3.6223 -1.4269 171.6860 3.1159 -1.3483 0.0584 1.4264 -2.5322 -0.0708 4.8795 3.6844 6.8353 -1.5755 2.7737 0.2712 -4.0433 3.3290 -11.6643 9.1227 -6.5394 -17.6268 -4.5125 -7.0092 0.8712 -7.3506 -3.8075 -4.2664 0.0000 0.0000 16.8281 -1.7899 7.3770 -0.2911 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.8771 8.9784 4.9063 8.1309 2.0406 -7.5012 -0.0000 -0.0000 -3.3393 7.0074 -3.0247 4.9021 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.4515 -2.9876 0.1503 4.8215 0.0000 0.0000 -3.0656 -0.7487 3.7298 5.2597 0.0000 0.0000 -6.0399 -3.4952 9.4241 10.3391 0.0000 0.0000 -9.8747 -0.1142 1.9892 -1.2524 0.0000 -0.0000 - -2.9094 -46.0101 24.8829 -3.6204 -1.4284 171.6916 3.1149 -1.3543 0.0585 1.4287 -2.5356 -0.0721 4.8940 3.6757 6.8347 -1.5732 2.7693 0.2735 -4.0222 3.3272 -11.6673 9.1327 -6.5421 -17.6275 -4.5092 -7.0218 0.8665 -7.3592 -3.8027 -4.2531 0.0000 0.0000 16.8373 -1.8176 7.3538 -0.2747 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -7.8827 8.9932 4.9230 8.1149 2.0729 -7.5110 -0.0000 -0.0000 -3.3352 7.0123 -3.0277 4.8980 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4503 -2.9850 0.1591 4.8205 0.0000 0.0000 -3.0666 -0.7532 3.7161 5.2612 0.0000 0.0000 -6.0449 -3.4939 9.4254 10.3458 0.0000 0.0000 -9.8733 -0.1086 1.9793 -1.2655 0.0000 -0.0000 - -2.9110 -46.0107 24.8827 -3.6180 -1.4299 171.7001 3.1171 -1.3613 0.0570 1.4275 -2.5370 -0.0724 4.9080 3.6622 6.8339 -1.5694 2.7693 0.2750 -4.0010 3.3240 -11.6716 9.1438 -6.5449 -17.6289 -4.5082 -7.0315 0.8576 -7.3710 -3.8044 -4.2374 0.0000 0.0000 16.8471 -1.8382 7.3420 -0.2612 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8858 9.0112 4.9406 8.0943 2.0992 -7.5242 -0.0000 -0.0000 -3.3260 7.0177 -3.0260 4.8955 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.4490 -2.9820 0.1627 4.8206 0.0000 0.0000 -3.0689 -0.7559 3.7049 5.2628 0.0000 0.0000 -6.0521 -3.4926 9.4255 10.3577 0.0000 0.0000 -9.8752 -0.1042 1.9690 -1.2732 0.0000 -0.0000 - -2.9126 -46.0110 24.8825 -3.6156 -1.4311 171.7092 3.1148 -1.3672 0.0568 1.4294 -2.5404 -0.0741 4.9230 3.6527 6.8313 -1.5667 2.7651 0.2765 -3.9790 3.3222 -11.6761 9.1555 -6.5482 -17.6310 -4.5044 -7.0432 0.8521 -7.3876 -3.8018 -4.2254 0.0000 0.0000 16.8581 -1.8564 7.3391 -0.2475 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8918 9.0273 4.9566 8.0730 2.1306 -7.5342 -0.0000 -0.0000 -3.3136 7.0268 -3.0292 4.8947 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4480 -2.9788 0.1676 4.8226 0.0000 0.0000 -3.0724 -0.7566 3.6918 5.2645 0.0000 0.0000 -6.0567 -3.4907 9.4296 10.3665 0.0000 0.0000 -9.8779 -0.1023 1.9559 -1.2741 0.0000 -0.0000 - -2.9142 -46.0113 24.8823 -3.6127 -1.4318 171.7207 3.1145 -1.3727 0.0559 1.4298 -2.5429 -0.0754 4.9369 3.6413 6.8278 -1.5630 2.7623 0.2777 -3.9573 3.3196 -11.6816 9.1664 -6.5515 -17.6344 -4.5020 -7.0523 0.8456 -7.4056 -3.8039 -4.2147 0.0000 0.0000 16.8695 -1.8708 7.3519 -0.2309 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.8961 9.0450 4.9722 8.0510 2.1592 -7.5446 -0.0000 -0.0000 -3.2986 7.0319 -3.0328 4.8953 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.4472 -2.9747 0.1673 4.8265 0.0000 0.0000 -3.0774 -0.7551 3.6812 5.2667 0.0000 0.0000 -6.0620 -3.4878 9.4334 10.3776 0.0000 0.0000 -9.8832 -0.1050 1.9423 -1.2652 0.0000 -0.0000 - -2.9158 -46.0115 24.8821 -3.6097 -1.4320 171.7340 3.1145 -1.3777 0.0546 1.4296 -2.5446 -0.0766 4.9508 3.6288 6.8231 -1.5593 2.7592 0.2786 -3.9359 3.3168 -11.6878 9.1769 -6.5552 -17.6386 -4.4995 -7.0603 0.8401 -7.4238 -3.8080 -4.2074 0.0000 0.0000 16.8817 -1.8848 7.3812 -0.2104 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.8984 9.0634 4.9865 8.0301 2.1871 -7.5530 -0.0000 -0.0000 -3.2824 7.0312 -3.0390 4.8955 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4467 -2.9700 0.1626 4.8317 0.0000 0.0000 -3.0833 -0.7518 3.6730 5.2692 0.0000 0.0000 -6.0669 -3.4839 9.4369 10.3888 0.0000 0.0000 -9.8905 -0.1134 1.9288 -1.2466 0.0000 -0.0000 - -2.9175 -46.0117 24.8819 -3.6067 -1.4314 171.7488 3.1154 -1.3821 0.0531 1.4286 -2.5450 -0.0773 4.9647 3.6147 6.8170 -1.5554 2.7561 0.2795 -3.9156 3.3139 -11.6949 9.1871 -6.5591 -17.6437 -4.4981 -7.0664 0.8356 -7.4402 -3.8146 -4.2046 0.0000 0.0000 16.8951 -1.8989 7.4263 -0.1846 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8979 9.0827 4.9995 8.0114 2.2137 -7.5594 -0.0000 -0.0000 -3.2667 7.0228 -3.0468 4.8952 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.4469 -2.9641 0.1530 4.8383 0.0000 0.0000 -3.0901 -0.7474 3.6679 5.2721 0.0000 0.0000 -6.0716 -3.4785 9.4388 10.3999 0.0000 0.0000 -9.8991 -0.1278 1.9163 -1.2191 0.0000 -0.0000 - -2.9192 -46.0118 24.8818 -3.6038 -1.4294 171.7651 3.1171 -1.3856 0.0509 1.4255 -2.5421 -0.0770 4.9798 3.5969 6.8095 -1.5513 2.7529 0.2800 -3.8972 3.3115 -11.7032 9.1970 -6.5633 -17.6484 -4.4979 -7.0702 0.8320 -7.4535 -3.8235 -4.2055 0.0000 0.0000 16.9079 -1.9164 7.4858 -0.1489 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8946 9.1034 5.0117 7.9961 2.2386 -7.5628 -0.0000 -0.0000 -3.2542 7.0054 -3.0560 4.8941 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.4481 -2.9566 0.1388 4.8467 0.0000 0.0000 -3.0980 -0.7425 3.6654 5.2756 0.0000 0.0000 -6.0761 -3.4710 9.4385 10.4095 0.0000 0.0000 -9.9076 -0.1474 1.9049 -1.1850 0.0000 -0.0000 - -2.9208 -46.0120 24.8817 -3.6014 -1.4267 171.7821 3.1186 -1.3886 0.0488 1.4231 -2.5381 -0.0771 4.9954 3.5784 6.8016 -1.5483 2.7493 0.2809 -3.8807 3.3080 -11.7085 9.2057 -6.5678 -17.6570 -4.4989 -7.0740 0.8293 -7.4616 -3.8320 -4.2111 0.0000 0.0000 16.9218 -1.9397 7.5562 -0.1055 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -7.8895 9.1239 5.0236 7.9871 2.2630 -7.5640 -0.0000 -0.0000 -3.2453 6.9777 -3.0673 4.8908 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4503 -2.9483 0.1215 4.8558 0.0000 0.0000 -3.1061 -0.7381 3.6651 5.2794 0.0000 0.0000 -6.0804 -3.4624 9.4356 10.4173 0.0000 0.0000 -9.9154 -0.1710 1.8951 -1.1474 0.0000 -0.0000 - -2.9224 -46.0122 24.8817 -3.5990 -1.4261 171.7991 3.1191 -1.3929 0.0487 1.4248 -2.5400 -0.0792 5.0089 3.5671 6.7947 -1.5453 2.7456 0.2820 -3.8669 3.3016 -11.7164 9.2138 -6.5716 -17.6644 -4.5021 -7.0799 0.8271 -7.4650 -3.8392 -4.2225 0.0000 0.0000 16.9366 -1.9677 7.6316 -0.0539 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8810 9.1409 5.0342 7.9816 2.2881 -7.5646 -0.0000 -0.0000 -3.2405 6.9442 -3.0763 4.8859 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -4.4512 -2.9421 0.1033 4.8633 0.0000 0.0000 -3.1123 -0.7356 3.6653 5.2829 0.0000 0.0000 -6.0842 -3.4559 9.4311 10.4246 0.0000 0.0000 -9.9232 -0.1955 1.8854 -1.1105 0.0000 -0.0000 - -2.9240 -46.0123 24.8817 -3.5965 -1.4245 171.8175 3.1220 -1.3959 0.0470 1.4241 -2.5398 -0.0801 5.0234 3.5525 6.7874 -1.5423 2.7412 0.2831 -3.8563 3.2963 -11.7239 9.2216 -6.5761 -17.6717 -4.5071 -7.0832 0.8239 -7.4636 -3.8470 -4.2357 0.0000 0.0000 16.9496 -2.0015 7.7096 0.0058 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8711 9.1592 5.0454 7.9795 2.3118 -7.5641 -0.0000 -0.0000 -3.2407 6.9056 -3.0829 4.8792 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4525 -2.9347 0.0829 4.8714 0.0000 0.0000 -3.1191 -0.7352 3.6662 5.2869 0.0000 0.0000 -6.0888 -3.4481 9.4224 10.4318 0.0000 0.0000 -9.9290 -0.2198 1.8768 -1.0774 0.0000 -0.0000 - -2.9256 -46.0125 24.8817 -3.5942 -1.4236 171.8358 3.1253 -1.3993 0.0459 1.4244 -2.5401 -0.0814 5.0384 3.5387 6.7808 -1.5400 2.7371 0.2846 -3.8485 3.2893 -11.7303 9.2288 -6.5797 -17.6802 -4.5138 -7.0876 0.8199 -7.4589 -3.8526 -4.2517 0.0000 0.0000 16.9616 -2.0382 7.7840 0.0693 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8605 9.1756 5.0571 7.9792 2.3358 -7.5643 -0.0000 -0.0000 -3.2456 6.8672 -3.0863 4.8722 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.4536 -2.9281 0.0639 4.8787 0.0000 0.0000 -3.1252 -0.7371 3.6658 5.2908 0.0000 0.0000 -6.0935 -3.4412 9.4116 10.4383 0.0000 0.0000 -9.9329 -0.2409 1.8684 -1.0517 0.0000 -0.0000 - -2.9271 -46.0127 24.8818 -3.5919 -1.4234 171.8541 3.1292 -1.4029 0.0451 1.4252 -2.5408 -0.0825 5.0539 3.5249 6.7752 -1.5381 2.7325 0.2865 -3.8434 3.2821 -11.7369 9.2352 -6.5837 -17.6884 -4.5219 -7.0918 0.8141 -7.4530 -3.8559 -4.2692 0.0000 0.0000 16.9716 -2.0764 7.8507 0.1346 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8503 9.1908 5.0693 7.9779 2.3607 -7.5667 -0.0000 -0.0000 -3.2528 6.8339 -3.0857 4.8648 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4542 -2.9222 0.0475 4.8855 0.0000 0.0000 -3.1308 -0.7416 3.6630 5.2947 0.0000 0.0000 -6.0988 -3.4353 9.3993 10.4451 0.0000 0.0000 -9.9351 -0.2577 1.8594 -1.0349 0.0000 -0.0000 - -2.9286 -46.0128 24.8818 -3.5897 -1.4233 171.8737 3.1350 -1.4065 0.0433 1.4241 -2.5392 -0.0829 5.0708 3.5076 6.7696 -1.5364 2.7283 0.2884 -3.8405 3.2745 -11.7425 9.2407 -6.5877 -17.6967 -4.5307 -7.0943 0.8065 -7.4483 -3.8594 -4.2849 0.0000 0.0000 16.9769 -2.1123 7.9092 0.1983 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8415 9.2066 5.0827 7.9734 2.3843 -7.5705 -0.0000 -0.0000 -3.2624 6.8082 -3.0801 4.8583 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4551 -2.9165 0.0330 4.8922 0.0000 0.0000 -3.1368 -0.7479 3.6573 5.2985 0.0000 0.0000 -6.1055 -3.4300 9.3851 10.4532 0.0000 0.0000 -9.9355 -0.2689 1.8498 -1.0276 0.0000 -0.0000 - -2.9300 -46.0129 24.8819 -3.5874 -1.4245 171.8926 3.1399 -1.4105 0.0429 1.4263 -2.5401 -0.0843 5.0867 3.4940 6.7655 -1.5351 2.7228 0.2914 -3.8390 3.2650 -11.7478 9.2449 -6.5897 -17.7059 -4.5389 -7.0994 0.7983 -7.4470 -3.8576 -4.3030 0.0000 0.0000 16.9808 -2.1437 7.9539 0.2549 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.8352 9.2186 5.0965 7.9633 2.4119 -7.5789 -0.0000 -0.0000 -3.2717 6.7945 -3.0747 4.8556 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.4553 -2.9126 0.0244 4.8981 0.0000 0.0000 -3.1420 -0.7557 3.6467 5.3018 0.0000 0.0000 -6.1120 -3.4266 9.3722 10.4615 0.0000 0.0000 -9.9351 -0.2740 1.8385 -1.0293 0.0000 -0.0000 - -2.9314 -46.0131 24.8819 -3.5856 -1.4265 171.9130 3.1477 -1.4151 0.0410 1.4245 -2.5372 -0.0837 5.1047 3.4739 6.7620 -1.5340 2.7183 0.2943 -3.8377 3.2566 -11.7540 9.2477 -6.5921 -17.7143 -4.5478 -7.0992 0.7862 -7.4513 -3.8602 -4.3169 0.0000 0.0000 16.9789 -2.1659 7.9921 0.3037 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.8290 9.2355 5.1095 7.9443 2.4349 -7.5894 -0.0000 -0.0000 -3.2800 6.7919 -3.0650 4.8547 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4563 -2.9097 0.0179 4.9044 0.0000 0.0000 -3.1473 -0.7640 3.6329 5.3045 0.0000 0.0000 -6.1215 -3.4248 9.3594 10.4740 0.0000 0.0000 -9.9354 -0.2742 1.8259 -1.0374 0.0000 -0.0000 - -2.9326 -46.0134 24.8819 -3.5868 -1.4300 171.9336 3.1524 -1.4222 0.0397 1.4230 -2.5305 -0.0829 5.1234 3.4511 6.7577 -1.5331 2.7134 0.2980 -3.8363 3.2463 -11.7589 9.2483 -6.5934 -17.7234 -4.5541 -7.1021 0.7763 -7.4633 -3.8576 -4.3326 0.0000 0.0000 16.9754 -2.1798 8.0186 0.3408 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8251 9.2500 5.1240 7.9183 2.4614 -7.6055 -0.0000 -0.0000 -3.2859 6.8014 -3.0624 4.8587 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.4608 -2.9094 0.0165 4.9110 0.0000 0.0000 -3.1518 -0.7718 3.6137 5.3061 0.0000 0.0000 -6.1352 -3.4257 9.3489 10.4887 0.0000 0.0000 -9.9367 -0.2702 1.8114 -1.0492 0.0000 -0.0000 - -2.9339 -46.0137 24.8819 -3.5865 -1.4330 171.9552 3.1609 -1.4258 0.0376 1.4222 -2.5295 -0.0827 5.1383 3.4322 6.7552 -1.5316 2.7062 0.3024 -3.8327 3.2377 -11.7657 9.2469 -6.5945 -17.7313 -4.5596 -7.0989 0.7619 -7.4821 -3.8620 -4.3434 0.0000 0.0000 16.9682 -2.1821 8.0455 0.3656 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.8188 9.2709 5.1352 7.8834 2.4827 -7.6221 -0.0000 -0.0000 -3.2900 6.8191 -3.0623 4.8650 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.4652 -2.9083 0.0162 4.9202 0.0000 0.0000 -3.1579 -0.7783 3.5925 5.3071 0.0000 0.0000 -6.1485 -3.4260 9.3391 10.5058 0.0000 0.0000 -9.9393 -0.2644 1.7973 -1.0610 0.0000 -0.0000 - -2.9352 -46.0140 24.8818 -3.5884 -1.4353 171.9764 3.1637 -1.4310 0.0378 1.4255 -2.5274 -0.0836 5.1531 3.4155 6.7507 -1.5307 2.6991 0.3056 -3.8270 3.2254 -11.7702 9.2421 -6.5937 -17.7392 -4.5606 -7.1010 0.7524 -7.5084 -3.8627 -4.3549 0.0000 0.0000 16.9601 -2.1765 8.0707 0.3801 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -7.8104 9.2905 5.1484 7.8423 2.5055 -7.6425 -0.0000 -0.0000 -3.2931 6.8401 -3.0737 4.8752 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.4723 -2.9072 0.0192 4.9299 0.0000 0.0000 -3.1634 -0.7831 3.5684 5.3070 0.0000 0.0000 -6.1617 -3.4259 9.3342 10.5193 0.0000 0.0000 -9.9413 -0.2584 1.7811 -1.0703 0.0000 -0.0000 - -2.9365 -46.0141 24.8818 -3.5863 -1.4372 171.9980 3.1718 -1.4322 0.0370 1.4290 -2.5289 -0.0852 5.1642 3.4003 6.7476 -1.5285 2.6884 0.3104 -3.8173 3.2170 -11.7768 9.2355 -6.5931 -17.7454 -4.5585 -7.1009 0.7435 -7.5406 -3.8645 -4.3678 0.0000 0.0000 16.9553 -2.1668 8.1009 0.3839 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.7955 9.3146 5.1596 7.7980 2.5294 -7.6661 -0.0000 -0.0000 -3.2955 6.8608 -3.1007 4.8869 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4753 -2.9050 0.0213 4.9402 0.0000 0.0000 -3.1691 -0.7859 3.5450 5.3057 0.0000 0.0000 -6.1686 -3.4241 9.3288 10.5298 0.0000 0.0000 -9.9436 -0.2536 1.7681 -1.0754 0.0000 -0.0000 - -2.9379 -46.0150 24.8817 -3.5994 -1.4373 172.0196 3.1695 -1.4368 0.0348 1.4257 -2.5142 -0.0825 5.1791 3.3665 6.7402 -1.5264 2.6796 0.3154 -3.8057 3.2129 -11.7825 9.2251 -6.5922 -17.7500 -4.5544 -7.1006 0.7373 -7.5766 -3.8670 -4.3804 0.0000 0.0000 16.9548 -2.1538 8.1420 0.3810 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.7734 9.3490 5.1719 7.7545 2.5490 -7.6917 -0.0000 -0.0000 -3.3005 6.8724 -3.1431 4.8988 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.5008 -2.9034 0.0231 4.9596 0.0000 0.0000 -3.1757 -0.7866 3.5208 5.3030 0.0000 0.0000 -6.1960 -3.4232 9.3257 10.5464 0.0000 0.0000 -9.9476 -0.2510 1.7543 -1.0753 0.0000 -0.0000 - -2.9393 -46.0153 24.8817 -3.5980 -1.4378 172.0416 3.1801 -1.4337 0.0338 1.4263 -2.5166 -0.0843 5.1886 3.3469 6.7329 -1.5235 2.6664 0.3207 -3.7894 3.2107 -11.7883 9.2141 -6.5909 -17.7520 -4.5456 -7.1010 0.7329 -7.6147 -3.8723 -4.3935 0.0000 0.0000 16.9610 -2.1433 8.1986 0.3770 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.7368 9.3872 5.1831 7.7132 2.5704 -7.7176 -0.0000 -0.0000 -3.3126 6.8731 -3.2040 4.9119 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.5077 -2.8998 0.0218 4.9750 0.0000 0.0000 -3.1812 -0.7862 3.4996 5.2998 0.0000 0.0000 -6.2010 -3.4192 9.3206 10.5520 0.0000 0.0000 -9.9489 -0.2500 1.7446 -1.0718 0.0000 -0.0000 - -2.9410 -46.0160 24.8818 -3.6066 -1.4334 172.0612 3.1826 -1.4316 0.0338 1.4220 -2.4997 -0.0822 5.2025 3.3047 6.7201 -1.5206 2.6572 0.3253 -3.7706 3.2136 -11.7905 9.1998 -6.5891 -17.7529 -4.5342 -7.1045 0.7333 -7.6532 -3.8765 -4.4083 0.0000 0.0000 16.9793 -2.1388 8.2734 0.3720 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.6882 9.4361 5.1984 7.6808 2.5906 -7.7459 -0.0000 -0.0000 -3.3338 6.8553 -3.2834 4.9239 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.5311 -2.8921 0.0198 4.9991 0.0000 0.0000 -3.1887 -0.7848 3.4809 5.2959 0.0000 0.0000 -6.2154 -3.4107 9.3165 10.5527 0.0000 0.0000 -9.9460 -0.2510 1.7368 -1.0665 0.0000 -0.0000 - -2.9428 -46.0167 24.8820 -3.6140 -1.4299 172.0811 3.1865 -1.4253 0.0322 1.4199 -2.4943 -0.0826 5.2121 3.2713 6.7065 -1.5169 2.6426 0.3308 -3.7486 3.2223 -11.7919 9.1853 -6.5871 -17.7504 -4.5182 -7.1127 0.7362 -7.6916 -3.8789 -4.4246 0.0000 0.0000 17.0109 -2.1453 8.3681 0.3732 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.6235 9.4923 5.2159 7.6586 2.6155 -7.7770 -0.0000 -0.0000 -3.3660 6.8220 -3.3821 4.9334 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.5531 -2.8849 0.0139 5.0231 0.0000 0.0000 -3.1944 -0.7840 3.4655 5.2912 0.0000 0.0000 -6.2267 -3.4027 9.3112 10.5493 0.0000 0.0000 -9.9406 -0.2511 1.7292 -1.0631 0.0000 -0.0000 - -2.9446 -46.0174 24.8822 -3.6227 -1.4263 172.1012 3.1888 -1.4194 0.0293 1.4186 -2.4853 -0.0839 5.2209 3.2328 6.6916 -1.5124 2.6262 0.3344 -3.7247 3.2369 -11.7903 9.1702 -6.5841 -17.7448 -4.4971 -7.1286 0.7425 -7.7298 -3.8774 -4.4418 0.0000 0.0000 17.0589 -2.1638 8.4834 0.3821 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.5439 9.5562 5.2390 7.6488 2.6481 -7.8123 -0.0000 -0.0000 -3.4117 6.7735 -3.4983 4.9417 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.5766 -2.8770 0.0039 5.0478 0.0000 0.0000 -3.1988 -0.7844 3.4540 5.2862 0.0000 0.0000 -6.2370 -3.3940 9.3037 10.5406 0.0000 0.0000 -9.9309 -0.2488 1.7216 -1.0656 0.0000 -0.0000 - -2.9468 -46.0184 24.8825 -3.6369 -1.4194 172.1186 3.1871 -1.4108 0.0279 1.4138 -2.4703 -0.0827 5.2326 3.1820 6.6725 -1.5075 2.6105 0.3371 -3.6994 3.2605 -11.7866 9.1560 -6.5812 -17.7357 -4.4714 -7.1529 0.7510 -7.7688 -3.8704 -4.4595 0.0000 0.0000 17.1242 -2.1947 8.6184 0.4033 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.4497 9.6308 5.2674 7.6511 2.6900 -7.8532 -0.0000 -0.0000 -3.4695 6.7158 -3.6298 4.9463 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6101 -2.8660 -0.0044 5.0784 0.0000 0.0000 -3.2047 -0.7863 3.4434 5.2819 0.0000 0.0000 -6.2516 -3.3823 9.2967 10.5261 0.0000 0.0000 -9.9148 -0.2435 1.7135 -1.0760 0.0000 -0.0000 - -2.9489 -46.0188 24.8828 -3.6401 -1.4170 172.1379 3.1964 -1.3982 0.0240 1.4093 -2.4670 -0.0860 5.2426 3.1361 6.6506 -1.5017 2.5891 0.3439 -3.6721 3.2937 -11.7811 9.1437 -6.5775 -17.7236 -4.4414 -7.1803 0.7597 -7.8098 -3.8658 -4.4785 0.0000 0.0000 17.2091 -2.2332 8.7763 0.4351 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.3414 9.7151 5.3005 7.6634 2.7461 -7.8999 -0.0000 -0.0000 -3.5415 6.6529 -3.7719 4.9508 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.6268 -2.8573 -0.0175 5.1022 0.0000 0.0000 -3.2074 -0.7911 3.4363 5.2778 0.0000 0.0000 -6.2517 -3.3734 9.2872 10.5073 0.0000 0.0000 -9.8961 -0.2327 1.7027 -1.0967 0.0000 -0.0000 - -2.9516 -46.0201 24.8832 -3.6631 -1.4068 172.1529 3.1866 -1.3861 0.0225 1.4010 -2.4414 -0.0854 5.2587 3.0633 6.6260 -1.4957 2.5721 0.3453 -3.6463 3.3355 -11.7704 9.1330 -6.5719 -17.7086 -4.4045 -7.2226 0.7716 -7.8579 -3.8509 -4.4954 0.0000 0.0000 17.3114 -2.2773 8.9515 0.4793 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -7.2269 9.8133 5.3440 7.6835 2.8161 -7.9553 -0.0000 -0.0000 -3.6243 6.5923 -3.9220 4.9559 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6742 -2.8428 -0.0239 5.1398 0.0000 0.0000 -3.2155 -0.7971 3.4265 5.2755 0.0000 0.0000 -6.2743 -3.3587 9.2805 10.4861 0.0000 0.0000 -9.8701 -0.2190 1.6900 -1.1271 0.0000 -0.0000 - -2.9542 -46.0207 24.8836 -3.6730 -1.4011 172.1699 3.1900 -1.3717 0.0189 1.3929 -2.4272 -0.0855 5.2734 2.9987 6.5963 -1.4891 2.5479 0.3492 -3.6185 3.3855 -11.7576 9.1253 -6.5645 -17.6908 -4.3578 -7.2746 0.7822 -7.9144 -3.8337 -4.5087 0.0000 0.0000 17.4300 -2.3201 9.1456 0.5335 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.1051 9.9202 5.3931 7.7068 2.9083 -8.0192 -0.0000 -0.0000 -3.7157 6.5421 -4.0762 4.9628 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7021 -2.8307 -0.0297 5.1701 0.0000 0.0000 -3.2217 -0.8056 3.4150 5.2739 0.0000 0.0000 -6.2806 -3.3467 9.2733 10.4626 0.0000 0.0000 -9.8433 -0.2012 1.6736 -1.1652 0.0000 -0.0000 - -2.9570 -46.0211 24.8840 -3.6784 -1.3984 172.1881 3.1976 -1.3562 0.0143 1.3856 -2.4177 -0.0883 5.2874 2.9332 6.5658 -1.4819 2.5210 0.3550 -3.5901 3.4433 -11.7444 9.1213 -6.5549 -17.6701 -4.3057 -7.3331 0.7924 -7.9812 -3.8202 -4.5246 0.0000 0.0000 17.5672 -2.3527 9.3588 0.5950 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.9789 10.0384 5.4477 7.7274 3.0236 -8.0956 -0.0000 -0.0000 -3.8095 6.5069 -4.2301 4.9716 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.7232 -2.8204 -0.0346 5.1972 0.0000 0.0000 -3.2274 -0.8156 3.4021 5.2733 0.0000 0.0000 -6.2834 -3.3370 9.2667 10.4419 0.0000 0.0000 -9.8179 -0.1823 1.6534 -1.2068 0.0000 -0.0000 - -2.9604 -46.0227 24.8842 -3.7098 -1.3900 172.2040 3.1820 -1.3424 0.0111 1.3739 -2.3930 -0.0879 5.3067 2.8489 6.5323 -1.4745 2.4965 0.3569 -3.5644 3.5073 -11.7268 9.1196 -6.5422 -17.6468 -4.2458 -7.4073 0.8041 -8.0602 -3.8015 -4.5362 0.0000 0.0000 17.7172 -2.3724 9.5890 0.6610 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.8582 10.1735 5.5105 7.7425 3.1586 -8.1810 -0.0000 -0.0000 -3.9047 6.4888 -4.3800 4.9848 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.7820 -2.8077 -0.0314 5.2387 0.0000 0.0000 -3.2388 -0.8255 3.3827 5.2747 0.0000 0.0000 -6.3210 -3.3252 9.2640 10.4312 0.0000 0.0000 -9.7937 -0.1678 1.6312 -1.2457 0.0000 -0.0000 - -2.9636 -46.0230 24.8845 -3.7119 -1.3877 172.2240 3.1940 -1.3256 0.0054 1.3658 -2.3797 -0.0907 5.3206 2.7747 6.4970 -1.4659 2.4629 0.3624 -3.5345 3.5782 -11.7084 9.1215 -6.5277 -17.6212 -4.1730 -7.4880 0.8152 -8.1497 -3.7880 -4.5471 0.0000 0.0000 17.8789 -2.3728 9.8363 0.7292 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.7377 10.3183 5.5764 7.7477 3.3239 -8.2788 -0.0000 -0.0000 -3.9937 6.4892 -4.5259 5.0013 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.8001 -2.7966 -0.0278 5.2673 0.0000 0.0000 -3.2487 -0.8355 3.3599 5.2765 0.0000 0.0000 -6.3229 -3.3143 9.2615 10.4173 0.0000 0.0000 -9.7738 -0.1584 1.6067 -1.2764 0.0000 -0.0000 - -2.9674 -46.0246 24.8846 -3.7419 -1.3801 172.2418 3.1816 -1.3130 0.0014 1.3531 -2.3487 -0.0900 5.3390 2.6810 6.4586 -1.4574 2.4338 0.3650 -3.5072 3.6513 -11.6862 9.1249 -6.5099 -17.5924 -4.0933 -7.5826 0.8288 -8.2488 -3.7765 -4.5567 0.0000 0.0000 18.0499 -2.3521 10.1010 0.7958 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.6261 10.4822 5.6473 7.7400 3.5088 -8.3847 -0.0000 -0.0000 -4.0761 6.5028 -4.6625 5.0209 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.8591 -2.7838 -0.0168 5.3112 0.0000 0.0000 -3.2641 -0.8438 3.3309 5.2800 0.0000 0.0000 -6.3641 -3.3015 9.2622 10.4183 0.0000 0.0000 -9.7597 -0.1615 1.5835 -1.2921 0.0000 -0.0000 - -2.9712 -46.0250 24.8848 -3.7419 -1.3783 172.2625 3.1976 -1.2976 -0.0040 1.3455 -2.3342 -0.0923 5.3505 2.6036 6.4209 -1.4480 2.3983 0.3695 -3.4758 3.7248 -11.6630 9.1307 -6.4896 -17.5602 -4.0048 -7.6828 0.8429 -8.3490 -3.7778 -4.5699 0.0000 0.0000 18.2314 -2.3108 10.3828 0.8583 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.5170 10.6554 5.7186 7.7193 3.7231 -8.5008 -0.0000 -0.0000 -4.1485 6.5191 -4.7915 5.0433 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.8770 -2.7724 -0.0068 5.3423 0.0000 0.0000 -3.2775 -0.8511 3.3009 5.2827 0.0000 0.0000 -6.3689 -3.2889 9.2608 10.4172 0.0000 0.0000 -9.7526 -0.1765 1.5640 -1.2902 0.0000 -0.0000 - -2.9755 -46.0269 24.8847 -3.7703 -1.3716 172.2811 3.1896 -1.2860 -0.0081 1.3333 -2.3033 -0.0916 5.3655 2.5096 6.3818 -1.4382 2.3652 0.3721 -3.4465 3.7995 -11.6344 9.1366 -6.4671 -17.5237 -3.9092 -7.7955 0.8595 -8.4472 -3.7846 -4.5824 0.0000 0.0000 18.4179 -2.2543 10.6791 0.9173 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.4159 10.8517 5.7911 7.6830 3.9538 -8.6217 -0.0000 -0.0000 -4.2104 6.5316 -4.9104 5.0648 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.9366 -2.7598 0.0083 5.3894 0.0000 0.0000 -3.2954 -0.8560 3.2661 5.2860 0.0000 0.0000 -6.4137 -3.2745 9.2601 10.4316 0.0000 0.0000 -9.7525 -0.2081 1.5491 -1.2674 0.0000 -0.0000 - -2.9799 -46.0285 24.8846 -3.7869 -1.3656 172.2989 3.1938 -1.2759 -0.0127 1.3227 -2.2692 -0.0898 5.3775 2.4150 6.3426 -1.4277 2.3309 0.3745 -3.4154 3.8713 -11.5997 9.1425 -6.4434 -17.4816 -3.8064 -7.9181 0.8831 -8.5344 -3.8005 -4.6044 0.0000 0.0000 18.6153 -2.1888 10.9846 0.9676 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -6.3183 11.0597 5.8661 7.6342 4.2112 -8.7528 -0.0000 -0.0000 -4.2601 6.5298 -5.0231 5.0845 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.9827 -2.7459 0.0239 5.4350 0.0000 0.0000 -3.3136 -0.8594 3.2316 5.2890 0.0000 0.0000 -6.4446 -3.2577 9.2581 10.4462 0.0000 0.0000 -9.7571 -0.2544 1.5406 -1.2255 0.0000 -0.0000 - -2.9845 -46.0303 24.8845 -3.8045 -1.3611 172.3171 3.1986 -1.2646 -0.0198 1.3131 -2.2496 -0.0917 5.3864 2.3365 6.3076 -1.4162 2.2937 0.3795 -3.3843 3.9374 -11.5590 9.1481 -6.4181 -17.4326 -3.6991 -8.0497 0.9081 -8.6031 -3.8308 -4.6329 0.0000 0.0000 18.8204 -2.1240 11.2987 1.0141 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -6.2197 11.2811 5.9401 7.5713 4.4912 -8.8941 -0.0000 -0.0000 -4.2973 6.5036 -5.1312 5.0991 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.0314 -2.7336 0.0385 5.4828 0.0000 0.0000 -3.3307 -0.8619 3.1967 5.2913 0.0000 0.0000 -6.4794 -3.2416 9.2515 10.4662 0.0000 0.0000 -9.7665 -0.3132 1.5382 -1.1682 0.0000 -0.0000 - -2.9893 -46.0320 24.8844 -3.8132 -1.3567 172.3309 3.2122 -1.2548 -0.0234 1.3038 -2.2273 -0.0923 5.3954 2.2562 6.2745 -1.4038 2.2588 0.3823 -3.3523 3.9983 -11.5077 9.1527 -6.3936 -17.3744 -3.5863 -8.1894 0.9365 -8.6484 -3.8760 -4.6678 0.0000 0.0000 19.0336 -2.0659 11.6161 1.0559 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.1162 11.5205 6.0114 7.4933 4.7881 -9.0390 -0.0000 -0.0000 -4.3286 6.4450 -5.2320 5.1083 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -5.0715 -2.7197 0.0531 5.5312 0.0000 0.0000 -3.3470 -0.8644 3.1659 5.2928 0.0000 0.0000 -6.5028 -3.2231 9.2424 10.4834 0.0000 0.0000 -9.7763 -0.3806 1.5439 -1.1018 0.0000 -0.0000 - -2.9942 -46.0339 24.8844 -3.8218 -1.3536 172.3418 3.2262 -1.2455 -0.0292 1.2948 -2.2123 -0.0938 5.4044 2.1854 6.2473 -1.3898 2.2226 0.3860 -3.3211 4.0522 -11.4435 9.1563 -6.3687 -17.3053 -3.4670 -8.3407 0.9692 -8.6652 -3.9318 -4.7124 0.0000 0.0000 19.2580 -2.0290 11.9305 1.0953 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.0067 11.7734 6.0814 7.4005 5.1085 -9.1931 -0.0000 -0.0000 -4.3540 6.3532 -5.3347 5.1123 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.1136 -2.7069 0.0670 5.5826 0.0000 0.0000 -3.3615 -0.8674 3.1381 5.2933 0.0000 0.0000 -6.5271 -3.2056 9.2296 10.5015 0.0000 0.0000 -9.7855 -0.4510 1.5549 -1.0350 0.0000 -0.0000 - -2.9993 -46.0369 24.8843 -3.8488 -1.3475 172.3458 3.2222 -1.2390 -0.0337 1.2830 -2.1939 -0.0944 5.4194 2.1124 6.2278 -1.3744 2.1908 0.3868 -3.2933 4.0980 -11.3633 9.1587 -6.3441 -17.2226 -3.3429 -8.5074 1.0072 -8.6529 -3.9951 -4.7680 0.0000 0.0000 19.4966 -2.0155 12.2356 1.1319 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -5.8924 12.0380 6.1518 7.2902 5.4560 -9.3591 -0.0000 -0.0000 -4.3750 6.2314 -5.4445 5.1118 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.1848 -2.6938 0.0839 5.6473 0.0000 0.0000 -3.3768 -0.8717 3.1130 5.2934 0.0000 0.0000 -6.5756 -3.1884 9.2163 10.5243 0.0000 0.0000 -9.7914 -0.5196 1.5694 -0.9751 0.0000 -0.0000 - -3.0046 -46.0399 24.8842 -3.8680 -1.3404 172.3430 3.2238 -1.2314 -0.0359 1.2687 -2.1738 -0.0950 5.4404 2.0377 6.2107 -1.3572 2.1580 0.3932 -3.2661 4.1423 -11.2675 9.1614 -6.3215 -17.1223 -3.2113 -8.6765 1.0457 -8.6141 -4.0781 -4.8341 0.0000 0.0000 19.7526 -2.0260 12.5352 1.1665 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.7624 12.3234 6.2197 7.1544 5.8257 -9.5387 -0.0000 -0.0000 -4.3946 6.0808 -5.5623 5.1069 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.2502 -2.6783 0.1036 5.7157 0.0000 0.0000 -3.3920 -0.8781 3.0922 5.2929 0.0000 0.0000 -6.6124 -3.1690 9.2030 10.5392 0.0000 0.0000 -9.7899 -0.5802 1.5867 -0.9298 0.0000 -0.0000 - -3.0098 -46.0431 24.8842 -3.8884 -1.3366 172.3350 3.2213 -1.2260 -0.0397 1.2537 -2.1652 -0.0950 5.4675 1.9752 6.2023 -1.3374 2.1259 0.4001 -3.2408 4.1780 -11.1525 9.1649 -6.2983 -17.0034 -3.0679 -8.8614 1.0861 -8.5522 -4.1703 -4.9113 0.0000 0.0000 20.0305 -2.0616 12.8239 1.1997 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.6230 12.6135 6.2821 6.9902 6.2372 -9.7287 -0.0000 -0.0000 -4.4190 5.9203 -5.7024 5.1062 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.3198 -2.6667 0.1251 5.7882 0.0000 0.0000 -3.4050 -0.8875 3.0745 5.2910 0.0000 0.0000 -6.6531 -3.1552 9.1915 10.5572 0.0000 0.0000 -9.7852 -0.6276 1.6013 -0.9046 0.0000 -0.0000 - -3.0152 -46.0468 24.8842 -3.9108 -1.3322 172.3205 3.2128 -1.2214 -0.0419 1.2356 -2.1564 -0.0963 5.5046 1.9128 6.2024 -1.3146 2.0939 0.4062 -3.2176 4.2094 -11.0143 9.1706 -6.2746 -16.8626 -2.9074 -9.0544 1.1301 -8.4788 -4.2808 -4.9993 0.0000 0.0000 20.3357 -2.1112 13.1116 1.2284 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.4713 12.9145 6.3450 6.7873 6.6911 -9.9363 -0.0000 -0.0000 -4.4481 5.7611 -5.8711 5.1118 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.3973 -2.6552 0.1526 5.8696 0.0000 0.0000 -3.4195 -0.8997 3.0572 5.2886 0.0000 0.0000 -6.6970 -3.1427 9.1850 10.5752 0.0000 0.0000 -9.7751 -0.6600 1.6120 -0.9011 0.0000 -0.0000 - -3.0206 -46.0510 24.8842 -3.9390 -1.3281 172.2994 3.1940 -1.2182 -0.0429 1.2143 -2.1514 -0.0980 5.5530 1.8535 6.2120 -1.2888 2.0628 0.4141 -3.1960 4.2374 -10.8566 9.1799 -6.2491 -16.6963 -2.7283 -9.2583 1.1749 -8.3995 -4.4082 -5.1008 0.0000 0.0000 20.6775 -2.1656 13.4052 1.2507 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.3084 13.2238 6.4011 6.5412 7.1974 -10.1565 -0.0000 -0.0000 -4.4880 5.6183 -6.0819 5.1318 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.4882 -2.6454 0.1876 5.9615 0.0000 0.0000 -3.4358 -0.9144 3.0390 5.2849 0.0000 0.0000 -6.7515 -3.1338 9.1870 10.5991 0.0000 0.0000 -9.7630 -0.6774 1.6163 -0.9170 0.0000 -0.0000 - -3.0261 -46.0554 24.8841 -3.9610 -1.3239 172.2742 3.1754 -1.2162 -0.0439 1.1907 -2.1442 -0.0985 5.6126 1.7922 6.2278 -1.2595 2.0310 0.4230 -3.1745 4.2638 -10.6755 9.1935 -6.2212 -16.5038 -2.5242 -9.4686 1.2222 -8.3255 -4.5608 -5.2155 0.0000 0.0000 21.0634 -2.2089 13.7199 1.2659 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.1345 13.5381 6.4535 6.2427 7.7679 -10.3894 -0.0000 -0.0000 -4.5453 5.5069 -6.3451 5.1695 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.5778 -2.6352 0.2309 6.0623 0.0000 0.0000 -3.4562 -0.9312 3.0169 5.2798 0.0000 0.0000 -6.8004 -3.1258 9.1994 10.6250 0.0000 0.0000 -9.7496 -0.6818 1.6125 -0.9472 0.0000 -0.0000 - -3.0316 -46.0606 24.8839 -3.9884 -1.3196 172.2443 3.1470 -1.2154 -0.0424 1.1635 -2.1387 -0.0992 5.6834 1.7329 6.2493 -1.2264 1.9954 0.4345 -3.1530 4.2922 -10.4741 9.2127 -6.1899 -16.2830 -2.2923 -9.6830 1.2704 -8.2645 -4.7439 -5.3463 0.0000 0.0000 21.5066 -2.2235 14.0751 1.2672 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.9488 13.8612 6.4990 5.8902 8.4075 -10.6325 -0.0000 -0.0000 -4.6258 5.4349 -6.6757 5.2304 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.6822 -2.6268 0.2839 6.1769 0.0000 0.0000 -3.4811 -0.9495 2.9892 5.2727 0.0000 0.0000 -6.8623 -3.1208 9.2211 10.6634 0.0000 0.0000 -9.7408 -0.6784 1.6037 -0.9837 0.0000 -0.0000 - -3.0371 -46.0664 24.8835 -4.0141 -1.3161 172.2151 3.1159 -1.2169 -0.0422 1.1342 -2.1332 -0.0992 5.7640 1.6744 6.2733 -1.1901 1.9595 0.4474 -3.1292 4.3186 -10.2530 9.2372 -6.1530 -16.0306 -2.0259 -9.9079 1.3226 -8.2220 -4.9586 -5.4925 0.0000 0.0000 22.0164 -2.1993 14.4880 1.2566 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.7621 14.1754 6.5323 5.4911 9.1415 -10.8643 -0.0000 -0.0000 -4.7507 5.4131 -7.0941 5.3239 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.7928 -2.6200 0.3463 6.3048 0.0000 0.0000 -3.5120 -0.9684 2.9505 5.2635 0.0000 0.0000 -6.9288 -3.1184 9.2545 10.7141 0.0000 0.0000 -9.7392 -0.6719 1.5851 -1.0175 0.0000 -0.0000 - -3.0428 -46.0724 24.8830 -4.0292 -1.3122 172.1851 3.0905 -1.2207 -0.0398 1.1037 -2.1205 -0.0975 5.8534 1.6094 6.3013 -1.1505 1.9227 0.4598 -3.1024 4.3472 -10.0134 9.2677 -6.1091 -15.7503 -1.7276 -10.1317 1.3773 -8.1976 -5.2213 -5.6621 0.0000 0.0000 22.6125 -2.1190 14.9832 1.2283 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.5616 14.4883 6.5582 5.0462 9.9672 -11.0978 -0.0000 -0.0000 -4.9206 5.4317 -7.6058 5.4429 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -5.8996 -2.6122 0.4188 6.4447 0.0000 0.0000 -3.5496 -0.9876 2.9021 5.2514 0.0000 0.0000 -6.9882 -3.1147 9.2958 10.7740 0.0000 0.0000 -9.7460 -0.6697 1.5648 -1.0392 0.0000 -0.0000 - -3.0483 -46.0796 24.8822 -4.0517 -1.3106 172.1600 3.0578 -1.2257 -0.0384 1.0722 -2.1179 -0.0965 5.9478 1.5565 6.3282 -1.1085 1.8783 0.4754 -3.0724 4.3795 -9.7597 9.3022 -6.0598 -15.4403 -1.3983 -10.3572 1.4329 -8.1879 -5.5366 -5.8556 0.0000 0.0000 23.3100 -1.9771 15.5774 1.1814 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.3528 14.7943 6.5707 4.5730 10.8947 -11.3140 -0.0000 -0.0000 -5.1583 5.4852 -8.2233 5.5906 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.0249 -2.6093 0.4994 6.6017 0.0000 0.0000 -3.5927 -1.0062 2.8386 5.2361 0.0000 0.0000 -7.0688 -3.1165 9.3420 10.8578 0.0000 0.0000 -9.7675 -0.6765 1.5397 -1.0425 0.0000 -0.0000 - -3.0539 -46.0880 24.8812 -4.0772 -1.3079 172.1401 3.0234 -1.2320 -0.0373 1.0395 -2.1106 -0.0964 6.0458 1.5001 6.3528 -1.0637 1.8311 0.4922 -3.0395 4.4150 -9.4917 9.3391 -6.0038 -15.1031 -1.0408 -10.5802 1.4922 -8.1840 -5.9151 -6.0777 0.0000 0.0000 24.1250 -1.7722 16.2841 1.1174 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1394 15.0823 6.5752 4.0936 11.9392 -11.5096 -0.0000 -0.0000 -5.4797 5.5608 -8.9559 5.7626 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.1657 -2.6068 0.5891 6.7781 0.0000 0.0000 -3.6435 -1.0238 2.7590 5.2183 0.0000 0.0000 -7.1630 -3.1177 9.3874 10.9586 0.0000 0.0000 -9.8007 -0.6973 1.5162 -1.0234 0.0000 -0.0000 - -3.0596 -46.0978 24.8799 -4.1111 -1.3046 172.1269 2.9847 -1.2387 -0.0363 1.0056 -2.1056 -0.0978 6.1460 1.4473 6.3770 -1.0174 1.7804 0.5077 -3.0040 4.4536 -9.2131 9.3763 -5.9423 -14.7421 -0.6618 -10.8008 1.5527 -8.1725 -6.3632 -6.3327 0.0000 0.0000 25.0757 -1.5105 17.1067 1.0375 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.9188 15.3470 6.5689 3.6334 13.1038 -11.6798 -0.0000 -0.0000 -5.8998 5.6382 -9.8025 5.9507 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.3293 -2.6062 0.6878 6.9757 0.0000 0.0000 -3.7010 -1.0403 2.6616 5.1979 0.0000 0.0000 -7.2794 -3.1201 9.4280 11.0795 0.0000 0.0000 -9.8456 -0.7337 1.4952 -0.9832 0.0000 -0.0000 - -3.0652 -46.1087 24.8784 -4.1456 -1.3005 172.1217 2.9497 -1.2471 -0.0347 0.9741 -2.0920 -0.0953 6.2448 1.3877 6.3891 -0.9702 1.7257 0.5276 -2.9654 4.4993 -8.9304 9.4108 -5.8777 -14.3586 -0.2706 -11.0084 1.6086 -8.1353 -6.8979 -6.6212 0.0000 0.0000 26.1761 -1.2019 18.0429 0.9449 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6850 15.5867 6.5548 3.2213 14.3882 -11.8308 -0.0000 -0.0000 -6.4301 5.6949 -10.7536 6.1453 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.5049 -2.6061 0.7933 7.1911 0.0000 0.0000 -3.7647 -1.0553 2.5477 5.1761 0.0000 0.0000 -7.4064 -3.1212 9.4565 11.2134 0.0000 0.0000 -9.8985 -0.7848 1.4801 -0.9256 0.0000 -0.0000 - -3.0709 -46.1208 24.8766 -4.1827 -1.2932 172.1243 2.9206 -1.2530 -0.0337 0.9412 -2.0759 -0.0947 6.3426 1.3252 6.4047 -0.9216 1.6729 0.5397 -2.9266 4.5448 -8.6391 9.4398 -5.8105 -13.9622 0.1265 -11.2071 1.6602 -8.0545 -7.5231 -6.9420 0.0000 0.0000 27.4362 -0.8652 19.0746 0.8452 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.4473 15.7797 6.5362 2.8933 15.8082 -11.9634 -0.0000 -0.0000 -7.0803 5.7171 -11.7991 6.3338 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -6.6967 -2.6040 0.9080 7.4273 0.0000 0.0000 -3.8356 -1.0687 2.4155 5.1543 0.0000 0.0000 -7.5458 -3.1185 9.4694 11.3563 0.0000 0.0000 -9.9541 -0.8475 1.4715 -0.8601 0.0000 -0.0000 - -3.0763 -46.1334 24.8746 -4.2090 -1.2901 172.1391 2.9077 -1.2607 -0.0339 0.9132 -2.0598 -0.0905 6.4360 1.2652 6.4021 -0.8734 1.6156 0.5590 -2.8851 4.5930 -8.3466 9.4600 -5.7442 -13.5556 0.5231 -11.3910 1.7063 -7.9118 -8.2472 -7.2988 0.0000 0.0000 28.8646 -0.5222 20.1755 0.7455 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2021 15.9271 6.5073 2.6802 17.3538 -12.0809 -0.0000 -0.0000 -7.8538 5.6846 -12.9114 6.5006 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.8814 -2.6059 1.0278 7.6710 0.0000 0.0000 -3.9078 -1.0811 2.2657 5.1326 0.0000 0.0000 -7.6806 -3.1181 9.4613 11.5038 0.0000 0.0000 -10.0111 -0.9153 1.4659 -0.7972 0.0000 -0.0000 - -3.0817 -46.1479 24.8724 -4.2536 -1.2860 172.1645 2.8887 -1.2654 -0.0337 0.8844 -2.0474 -0.0914 6.5269 1.2064 6.3987 -0.8246 1.5587 0.5751 -2.8472 4.6415 -8.0538 9.4689 -5.6810 -13.1452 0.9048 -11.5555 1.7385 -7.6880 -9.0825 -7.6796 0.0000 0.0000 30.4591 -0.1943 21.3095 0.6553 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -2.9487 16.0285 6.4829 2.6154 19.0117 -12.2265 -0.0000 -0.0000 -8.7315 5.5832 -14.0566 6.6328 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.0991 -2.6109 1.1550 7.9344 0.0000 0.0000 -3.9842 -1.0919 2.0968 5.1129 0.0000 0.0000 -7.8503 -3.1199 9.4307 11.6662 0.0000 0.0000 -10.0677 -0.9834 1.4610 -0.7469 0.0000 -0.0000 - -3.0869 -46.1635 24.8699 -4.3028 -1.2810 172.2009 2.8748 -1.2706 -0.0356 0.8554 -2.0281 -0.0889 6.6179 1.1411 6.3894 -0.7756 1.5078 0.5870 -2.8126 4.6840 -7.7622 9.4639 -5.6213 -12.7379 1.2722 -11.7035 1.7560 -7.3690 -10.0290 -8.0731 0.0000 0.0000 32.2104 0.0921 22.4321 0.5846 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.7002 16.0674 6.4577 2.7296 20.7875 -12.4061 -0.0000 -0.0000 -9.7036 5.4152 -15.2014 6.7207 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.3299 -2.6168 1.2895 8.2103 0.0000 0.0000 -4.0644 -1.1006 1.9102 5.0967 0.0000 0.0000 -8.0348 -3.1211 9.3741 11.8335 0.0000 0.0000 -10.1193 -1.0466 1.4579 -0.7198 0.0000 -0.0000 - -3.0917 -46.1809 24.8671 -4.3759 -1.2770 172.2485 2.8502 -1.2752 -0.0370 0.8238 -2.0128 -0.0878 6.7098 1.0785 6.3742 -0.7272 1.4590 0.5986 -2.7832 4.7218 -7.4751 9.4437 -5.5693 -12.3395 1.6153 -11.8276 1.7520 -6.9412 -11.0973 -8.4652 0.0000 0.0000 34.1035 0.3188 23.4986 0.5429 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.4518 16.0578 6.4378 3.0477 22.6482 -12.6704 -0.0000 -0.0000 -10.7308 5.1754 -16.3017 6.7545 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.5962 -2.6289 1.4314 8.5005 0.0000 0.0000 -4.1469 -1.1072 1.7049 5.0840 0.0000 0.0000 -8.2620 -3.1286 9.2972 12.0188 0.0000 0.0000 -10.1703 -1.1008 1.4469 -0.7196 0.0000 -0.0000 - -3.0962 -46.1982 24.8642 -4.4315 -1.2779 172.3099 2.8483 -1.2799 -0.0402 0.7984 -1.9959 -0.0886 6.7967 1.0135 6.3537 -0.6770 1.4162 0.6088 -2.7564 4.7500 -7.1915 9.4089 -5.5250 -11.9556 1.9429 -11.9274 1.7346 -6.4038 -12.2869 -8.8460 0.0000 0.0000 36.1207 0.4730 24.4591 0.5316 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.2039 16.0036 6.4303 3.5907 24.5685 -13.0612 -0.0000 -0.0000 -11.7760 4.8708 -17.3175 6.7342 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.8396 -2.6446 1.5764 8.7847 0.0000 0.0000 -4.2297 -1.1110 1.4850 5.0757 0.0000 0.0000 -8.4757 -3.1385 9.1988 12.2053 0.0000 0.0000 -10.2192 -1.1450 1.4290 -0.7467 0.0000 -0.0000 - -3.1000 -46.2163 24.8610 -4.4918 -1.2823 172.3831 2.8515 -1.2823 -0.0420 0.7714 -1.9875 -0.0906 6.8836 0.9569 6.3300 -0.6258 1.3751 0.6179 -2.7323 4.7692 -6.9180 9.3588 -5.4902 -11.5911 2.2488 -11.9974 1.6952 -5.7526 -13.6039 -9.1926 -0.0000 0.0000 38.2322 0.5538 25.2707 0.5500 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.9615 15.9063 6.4262 4.3684 26.5325 -13.6100 -0.0000 -0.0000 -12.7944 4.5196 -18.2174 6.6635 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.0885 -2.6664 1.7263 9.0693 0.0000 0.0000 -4.3145 -1.1108 1.2499 5.0714 0.0000 0.0000 -8.7069 -3.1541 9.0846 12.4072 0.0000 0.0000 -10.2730 -1.1815 1.4013 -0.7960 0.0000 -0.0000 - -3.1032 -46.2353 24.8574 -4.5665 -1.2932 172.4695 2.8476 -1.2954 -0.0460 0.7470 -1.9654 -0.0891 6.9706 0.8890 6.2993 -0.5741 1.3444 0.6242 -2.7114 4.7744 -6.6518 9.2950 -5.4639 -11.2482 2.5422 -12.0402 1.6397 -4.9936 -15.0450 -9.4774 -0.0000 0.0000 40.3994 0.5641 25.9002 0.5937 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.7293 15.7823 6.4384 5.3903 28.4972 -14.3622 -0.0000 -0.0000 -13.7410 4.1370 -18.9712 6.5554 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.3515 -2.6987 1.8793 9.3513 0.0000 0.0000 -4.3992 -1.1073 0.9988 5.0701 0.0000 0.0000 -8.9711 -3.1805 8.9594 12.6373 0.0000 0.0000 -10.3412 -1.2163 1.3602 -0.8562 0.0000 -0.0000 - -3.1056 -46.2549 24.8534 -4.6435 -1.3123 172.5678 2.8508 -1.3121 -0.0498 0.7196 -1.9479 -0.0892 7.0578 0.8283 6.2662 -0.5214 1.3161 0.6295 -2.6904 4.7676 -6.3984 9.2196 -5.4466 -10.9285 2.8239 -12.0506 1.5711 -4.1348 -16.6093 -9.6870 -0.0000 0.0000 42.5901 0.5222 26.3157 0.6457 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.5135 15.6330 6.4575 6.6492 30.4474 -15.3313 -0.0000 -0.0000 -14.5770 3.7546 -19.5619 6.4271 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -8.6109 -2.7418 2.0344 9.6236 0.0000 0.0000 -4.4836 -1.0995 0.7342 5.0706 0.0000 0.0000 -9.2529 -3.2172 8.8277 12.8968 0.0000 0.0000 -10.4308 -1.2572 1.3082 -0.9125 0.0000 -0.0000 - -3.1068 -46.2751 24.8490 -4.7279 -1.3448 172.6797 2.8519 -1.3425 -0.0567 0.6998 -1.9263 -0.0879 7.1376 0.7684 6.2292 -0.4678 1.2931 0.6341 -2.6672 4.7475 -6.1581 9.1358 -5.4370 -10.6336 3.0992 -12.0331 1.4927 -3.1859 -18.2868 -9.7973 -0.0000 0.0000 44.7632 0.4531 26.5049 0.6864 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.3156 15.4767 6.4806 8.1310 32.3411 -16.5257 -0.0000 -0.0000 -15.2733 3.3866 -19.9801 6.2924 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -8.8687 -2.8015 2.1871 9.8807 0.0000 0.0000 -4.5642 -1.0879 0.4572 5.0713 0.0000 0.0000 -9.5620 -3.2707 8.6892 13.1986 0.0000 0.0000 -10.5531 -1.3128 1.2483 -0.9494 0.0000 -0.0000 - -3.1071 -46.2949 24.8443 -4.7978 -1.3859 172.7981 2.8735 -1.3765 -0.0612 0.6797 -1.9125 -0.0846 7.2152 0.7214 6.1878 -0.4144 1.2767 0.6325 -2.6408 4.7063 -5.9273 9.0470 -5.4306 -10.3628 3.3775 -11.9918 1.4123 -2.1613 -20.0678 -9.7827 -0.0000 0.0000 46.8754 0.3880 26.4685 0.6933 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.1427 15.3007 6.5172 9.8181 34.1765 -17.9518 -0.0000 -0.0000 -15.8043 3.0645 -20.2296 6.1710 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -9.1002 -2.8705 2.3436 10.1212 0.0000 0.0000 -4.6452 -1.0726 0.1698 5.0714 0.0000 0.0000 -9.8654 -3.3317 8.5549 13.5304 0.0000 0.0000 -10.7087 -1.3924 1.1839 -0.9521 0.0000 -0.0000 - -3.1061 -46.3147 24.8390 -4.8648 -1.4393 172.9216 2.9052 -1.4201 -0.0616 0.6657 -1.8952 -0.0895 7.2817 0.6747 6.1507 -0.3616 1.2623 0.6328 -2.6073 4.6597 -5.7171 8.9566 -5.4301 -10.1104 3.6566 -11.9226 1.3246 -1.0716 -21.9394 -9.6282 -0.0000 0.0000 48.8938 0.3646 26.2216 0.6364 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.9856 15.1398 6.5453 11.6660 35.9102 -19.5672 -0.0000 -0.0000 -16.1768 2.8004 -20.3197 6.0834 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.3187 -2.9548 2.5045 10.3463 0.0000 0.0000 -4.7238 -1.0550 -0.1294 5.0688 0.0000 0.0000 -10.1810 -3.4061 8.4218 13.9052 0.0000 0.0000 -10.9059 -1.5016 1.1220 -0.9113 0.0000 -0.0000 - -3.1036 -46.3345 24.8332 -4.9246 -1.5096 173.0484 2.9545 -1.4758 -0.0653 0.6562 -1.8826 -0.0886 7.3338 0.6400 6.1051 -0.3102 1.2491 0.6335 -2.5667 4.5990 -5.5166 8.8672 -5.4307 -9.8783 3.9415 -11.8425 1.2450 0.0715 -23.8746 -9.3264 -0.0000 0.0001 50.7848 0.4089 25.7981 0.5065 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.8508 14.9864 6.5741 13.6431 37.5395 -21.3406 -0.0000 -0.0000 -16.3967 2.6085 -20.2724 6.0336 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -9.5155 -3.0587 2.6659 10.5491 0.0000 0.0000 -4.7959 -1.0355 -0.4359 5.0626 0.0000 0.0000 -10.5032 -3.4980 8.2861 14.3245 0.0000 0.0000 -11.1473 -1.6409 1.0684 -0.8261 0.0000 -0.0000 - -3.0997 -46.3544 24.8268 -4.9849 -1.5954 173.1720 3.0122 -1.5452 -0.0682 0.6570 -1.8666 -0.0877 7.3691 0.6064 6.0620 -0.2636 1.2401 0.6311 -2.5177 4.5302 -5.3303 8.7809 -5.4317 -9.6597 4.2299 -11.7619 1.1721 1.2612 -25.8442 -8.8708 -0.0000 0.0001 52.5264 0.5481 25.2419 0.2875 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.7421 14.8450 6.5888 15.6925 39.0696 -23.1889 -0.0000 -0.0000 -16.5055 2.5066 -20.1175 6.0344 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.7031 -3.1827 2.8345 10.7363 0.0000 0.0000 -4.8621 -1.0162 -0.7507 5.0529 0.0000 0.0000 -10.8403 -3.6077 8.1484 14.7883 0.0000 0.0000 -11.4307 -1.8068 1.0276 -0.7056 0.0000 -0.0000 - -3.0946 -46.3749 24.8197 -5.0587 -1.6899 173.2840 3.0679 -1.6218 -0.0666 0.6700 -1.8457 -0.0890 7.3811 0.5702 6.0237 -0.2205 1.2337 0.6279 -2.4639 4.4604 -5.1588 8.7014 -5.4322 -9.4489 4.5114 -11.6940 1.1061 2.4949 -27.8153 -8.2687 -0.0000 0.0001 54.1089 0.8012 24.6047 -0.0224 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6634 14.7195 6.5852 17.7651 40.5100 -25.0380 -0.0000 -0.0000 -16.5488 2.5043 -19.8911 6.0882 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -9.9036 -3.3226 3.0162 10.9196 0.0000 0.0000 -4.9252 -0.9980 -1.0715 5.0400 0.0000 0.0000 -11.2047 -3.7297 8.0061 15.2900 0.0000 0.0000 -11.7469 -1.9902 1.0068 -0.5672 0.0000 -0.0000 - -3.0878 -46.3940 24.8123 -5.0973 -1.8026 173.3817 3.1761 -1.7031 -0.0671 0.6851 -1.8341 -0.0857 7.3749 0.5434 5.9868 -0.1845 1.2263 0.6228 -2.4046 4.3894 -4.9912 8.6301 -5.4308 -9.2474 4.7896 -11.6450 1.0466 3.7675 -29.7675 -7.5217 -0.0000 0.0001 55.5237 1.1820 23.9565 -0.4110 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5858 14.6107 6.5893 19.8433 41.8489 -26.8937 -0.0000 -0.0000 -16.5504 2.5854 -19.6454 6.1857 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -10.0503 -3.4822 3.2117 11.0786 0.0000 0.0000 -4.9791 -0.9813 -1.3947 5.0247 0.0000 0.0000 -11.5303 -3.8685 7.8606 15.8084 0.0000 0.0000 -12.0874 -2.1717 1.0008 -0.4420 0.0000 -0.0000 - -3.0798 -46.4136 24.8044 -5.1520 -1.9232 173.4570 3.2846 -1.7874 -0.0646 0.7155 -1.8202 -0.0834 7.3407 0.5128 5.9559 -0.1575 1.2186 0.6209 -2.3427 4.3272 -4.8366 8.5666 -5.4275 -9.0436 5.0523 -11.6346 0.9915 5.0736 -31.6596 -6.6631 -0.0000 0.0001 56.7859 1.6935 23.3490 -0.8650 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.5289 14.5132 6.5772 21.8716 43.1300 -28.6304 -0.0000 -0.0000 -16.5892 2.7687 -19.4244 6.3274 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -10.2157 -3.6582 3.4239 11.2387 0.0000 0.0000 -5.0280 -0.9671 -1.7166 5.0083 0.0000 0.0000 -11.8809 -4.0209 7.7056 16.3488 0.0000 0.0000 -12.4393 -2.3328 1.0135 -0.3624 0.0000 -0.0000 - -3.0707 -46.4327 24.7961 -5.2007 -2.0521 173.5060 3.4168 -1.8699 -0.0621 0.7566 -1.8113 -0.0817 7.2829 0.4828 5.9308 -0.1401 1.2101 0.6231 -2.2825 4.2746 -4.6829 8.5112 -5.4208 -8.8410 5.2972 -11.6706 0.9391 6.4074 -33.4706 -5.7172 -0.0000 0.0001 57.9120 2.3375 22.8398 -1.3653 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.4800 14.4228 6.5677 23.8357 44.3607 -30.2290 -0.0000 -0.0000 -16.7127 3.0491 -19.2747 6.5121 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -10.3715 -3.8482 3.6521 11.3939 0.0000 0.0000 -5.0710 -0.9552 -2.0306 4.9926 0.0000 0.0000 -12.2234 -4.1853 7.5426 16.8928 0.0000 0.0000 -12.7893 -2.4495 1.0380 -0.3674 0.0000 -0.0000 - -3.0606 -46.4524 24.7873 -5.2704 -2.1846 173.5233 3.5502 -1.9479 -0.0591 0.8074 -1.7976 -0.0779 7.2029 0.4384 5.9180 -0.1342 1.2012 0.6277 -2.2286 4.2396 -4.5362 8.4624 -5.4108 -8.6305 5.5101 -11.7605 0.8792 7.7666 -35.1765 -4.7220 -0.0000 0.0001 58.9306 3.1061 22.4595 -1.8911 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.4381 14.3289 6.5664 25.7343 45.5652 -31.6709 -0.0000 -0.0000 -16.9545 3.4211 -19.2399 6.7250 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.5566 -4.0520 3.9000 11.5593 0.0000 0.0000 -5.1102 -0.9452 -2.3356 4.9793 0.0000 0.0000 -12.5909 -4.3630 7.3755 17.4400 0.0000 0.0000 -13.1261 -2.4984 1.0647 -0.4921 0.0000 -0.0000 - -3.0500 -46.4718 24.7783 -5.3490 -2.3126 173.5066 3.6994 -2.0121 -0.0532 0.8643 -1.7772 -0.0713 7.0977 0.3774 5.9138 -0.1356 1.1876 0.6366 -2.1839 4.2269 -4.3899 8.4184 -5.3975 -8.4138 5.6940 -11.9066 0.8095 9.1355 -36.7646 -3.7186 -0.0000 0.0001 59.8718 3.9897 22.2380 -2.4243 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3924 14.2282 6.5799 27.5661 46.7524 -32.9459 -0.0000 -0.0000 -17.3458 3.8753 -19.3503 6.9600 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -10.7570 -4.2586 4.1607 11.7341 0.0000 0.0000 -5.1484 -0.9348 -2.6200 4.9698 0.0000 0.0000 -12.9604 -4.5441 7.2094 17.9683 0.0000 0.0000 -13.4341 -2.4599 1.0852 -0.7680 0.0000 -0.0000 - -3.0387 -46.4904 24.7693 -5.4231 -2.4445 173.4620 3.8706 -2.0594 -0.0495 0.9295 -1.7847 -0.0730 6.9812 0.3299 5.9252 -0.1503 1.1698 0.6532 -2.1521 4.2288 -4.2452 8.3781 -5.3772 -8.1889 5.8427 -12.1024 0.7173 10.5102 -38.2426 -2.7338 -0.0000 0.0001 60.7581 4.9711 22.1864 -2.9439 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3467 14.0914 6.6125 29.3482 47.9527 -34.0592 -0.0000 -0.0000 -17.9029 4.4066 -19.6160 7.2108 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -10.9514 -4.4736 4.4253 11.9094 0.0000 0.0000 -5.1825 -0.9232 -2.8806 4.9642 0.0000 0.0000 -13.3170 -4.7365 7.0417 18.4765 0.0000 0.0000 -13.7125 -2.3184 1.0899 -1.2143 0.0000 -0.0000 - -3.0277 -46.5093 24.7602 -5.5271 -2.5627 173.3851 4.0350 -2.0849 -0.0460 0.9992 -1.7836 -0.0726 6.8477 0.2595 5.9471 -0.1708 1.1462 0.6760 -2.1381 4.2550 -4.0987 8.3379 -5.3507 -7.9549 5.9578 -12.3393 0.6017 11.8776 -39.6067 -1.8051 -0.0000 0.0001 61.6146 6.0246 22.3014 -3.4315 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.2941 13.9280 6.6802 31.0995 49.1541 -35.0426 -0.0000 -0.0000 -18.6170 4.9947 -20.0329 7.4694 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -11.1907 -4.6827 4.6896 12.1052 0.0000 0.0000 -5.2202 -0.9086 -3.1084 4.9630 0.0000 0.0000 -13.6978 -4.9280 6.8905 18.9576 0.0000 0.0000 -13.9516 -2.0695 1.0657 -1.8363 0.0000 -0.0000 - -3.0168 -46.5278 24.7511 -5.6444 -2.6723 173.2859 4.2043 -2.0982 -0.0444 1.0695 -1.7642 -0.0651 6.7104 0.1593 5.9722 -0.1987 1.1196 0.7060 -2.1414 4.3012 -3.9531 8.2949 -5.3161 -7.7122 6.0448 -12.6049 0.4514 13.2321 -40.8681 -0.9476 -0.0000 0.0001 62.4555 7.1206 22.5697 -3.8755 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -0.2332 13.7246 6.7710 32.8311 50.3707 -35.9040 -0.0000 -0.0000 -19.4731 5.6186 -20.5859 7.7221 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -11.4479 -4.8866 4.9393 12.3086 0.0000 0.0000 -5.2586 -0.8898 -3.2988 4.9653 0.0000 0.0000 -14.0812 -5.1216 6.7598 19.4063 0.0000 0.0000 -14.1541 -1.7152 1.0023 -2.6244 0.0000 -0.0000 - -3.0064 -46.5461 24.7422 -5.7875 -2.7701 173.1710 4.3647 -2.0900 -0.0450 1.1396 -1.7527 -0.0604 6.5704 0.0541 6.0050 -0.2311 1.0847 0.7429 -2.1631 4.3635 -3.8103 8.2462 -5.2718 -7.4603 6.1117 -12.8811 0.2631 14.5677 -42.0456 -0.1703 -0.0000 0.0001 63.2831 8.2224 22.9691 -4.2600 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.1671 13.4762 6.8831 34.5584 51.6039 -36.6641 -0.0000 -0.0000 -20.4416 6.2541 -21.2405 7.9609 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -11.7376 -5.0813 5.1632 12.5209 0.0000 0.0000 -5.2987 -0.8661 -3.4478 4.9697 0.0000 0.0000 -14.4817 -5.3156 6.6578 19.8240 0.0000 0.0000 -14.3236 -1.2685 0.8928 -3.5522 0.0000 -0.0000 - -2.9967 -46.5640 24.7336 -5.9512 -2.8544 173.0497 4.5165 -2.0652 -0.0476 1.2078 -1.7387 -0.0556 6.4348 -0.0626 6.0377 -0.2660 1.0442 0.7860 -2.2031 4.4352 -3.6690 8.1891 -5.2162 -7.2036 6.1694 -13.1493 0.0340 15.8839 -43.1566 0.5325 -0.0000 0.0001 64.0887 9.2899 23.4729 -4.5722 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0918 13.1764 7.0139 36.3044 52.8474 -37.3681 -0.0000 -0.0000 -21.4701 6.8631 -21.9593 8.1690 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -12.0505 -5.2616 5.3493 12.7359 0.0000 0.0000 -5.3403 -0.8378 -3.5525 4.9743 0.0000 0.0000 -14.8902 -5.5059 6.5911 20.2061 0.0000 0.0000 -14.4643 -0.7516 0.7342 -4.5797 0.0000 -0.0000 - -2.9880 -46.5813 24.7253 -6.1331 -2.9247 172.9323 4.6586 -2.0255 -0.0506 1.2723 -1.7206 -0.0504 6.3092 -0.1891 6.0645 -0.3021 0.9946 0.8314 -2.2594 4.5143 -3.5299 8.1218 -5.1496 -6.9436 6.2354 -13.3912 -0.2329 17.1808 -44.2140 1.1738 -0.0000 0.0001 64.8590 10.2823 24.0499 -4.8064 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0003 12.8332 7.1576 38.0777 54.0829 -38.0465 -0.0000 -0.0000 -22.5079 7.4071 -22.7051 8.3373 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -12.3802 -5.4233 5.4874 12.9471 0.0000 0.0000 -5.3823 -0.8060 -3.6128 4.9775 0.0000 0.0000 -15.3022 -5.6893 6.5624 20.5518 0.0000 0.0000 -14.5827 -0.1932 0.5283 -5.6562 0.0000 -0.0000 - -2.9805 -46.5980 24.7176 -6.3335 -2.9821 172.8294 4.7892 -1.9777 -0.0566 1.3313 -1.6989 -0.0457 6.1957 -0.3205 6.0806 -0.3372 0.9406 0.8799 -2.3293 4.5901 -3.3951 8.0415 -5.0710 -6.6832 6.3237 -13.5884 -0.5336 18.4628 -45.2392 1.7755 -0.0000 0.0001 65.5652 11.1625 24.6677 -4.9538 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.1056 12.4411 7.3060 39.8949 55.3036 -38.7329 -0.0000 -0.0000 -23.4940 7.8452 -23.4411 8.4439 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -12.7235 -5.5645 5.5709 13.1473 0.0000 0.0000 -5.4222 -0.7731 -3.6332 4.9777 0.0000 0.0000 -15.7178 -5.8643 6.5751 20.8623 0.0000 0.0000 -14.6853 0.3744 0.2763 -6.7277 0.0000 -0.0000 - -2.9742 -46.6140 24.7106 -6.5505 -3.0275 172.7501 4.9082 -1.9260 -0.0653 1.3838 -1.6733 -0.0416 6.0968 -0.4522 6.0813 -0.3679 0.8830 0.9287 -2.4134 4.6554 -3.2636 7.9479 -4.9807 -6.4284 6.4397 -13.7289 -0.8656 19.7433 -46.2406 2.3631 -0.0000 0.0001 66.1800 11.8986 25.2913 -5.0159 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.2233 12.0053 7.4552 41.7612 56.4926 -39.4502 -0.0000 -0.0000 -24.3808 8.1455 -24.1295 8.4839 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -13.0743 -5.6832 5.5963 13.3296 0.0000 0.0000 -5.4575 -0.7421 -3.6193 4.9737 0.0000 0.0000 -16.1338 -6.0280 6.6271 21.1389 0.0000 0.0000 -14.7777 0.9194 -0.0150 -7.7407 0.0000 -0.0000 - -2.9692 -46.6292 24.7045 -6.7787 -3.0640 172.7027 5.0194 -1.8758 -0.0754 1.4299 -1.6445 -0.0387 6.0154 -0.5800 6.0616 -0.3963 0.8210 0.9743 -2.5068 4.7074 -3.1415 7.8409 -4.8810 -6.1758 6.6090 -13.8060 -1.2157 21.0211 -47.2188 2.9617 -0.0000 0.0001 66.6755 12.4693 25.8972 -5.0046 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.3586 11.5369 7.5918 43.6590 57.6383 -40.1952 -0.0000 -0.0000 -25.1285 8.2802 -24.7454 8.4482 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -13.4224 -5.7793 5.5640 13.4859 0.0000 0.0000 -5.4844 -0.7165 -3.5794 4.9653 0.0000 0.0000 -16.5444 -6.1788 6.7116 21.3829 0.0000 0.0000 -14.8638 1.4124 -0.3356 -8.6505 0.0000 -0.0000 - -2.9656 -46.6446 24.6991 -7.0395 -3.0866 172.6893 5.1028 -1.8281 -0.0859 1.4695 -1.6158 -0.0366 5.9502 -0.6972 6.0175 -0.4200 0.7596 1.0165 -2.6115 4.7378 -3.0236 7.7201 -4.7748 -5.9362 6.8237 -13.8147 -1.5830 22.3177 -48.1794 3.6004 -0.0000 0.0001 67.0161 12.8616 26.4593 -4.9221 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.5036 11.0446 7.7108 45.5720 58.7266 -40.9568 -0.0000 -0.0000 -25.7117 8.2340 -25.2615 8.3350 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.7968 -5.8505 5.4827 13.6234 0.0000 0.0000 -5.5033 -0.6994 -3.5250 4.9534 0.0000 0.0000 -16.9762 -6.3115 6.8231 21.5992 0.0000 0.0000 -14.9431 1.8310 -0.6747 -9.4226 0.0000 -0.0000 - -2.9633 -46.6583 24.6951 -7.2787 -3.1057 172.7171 5.2137 -1.7902 -0.0981 1.5032 -1.5790 -0.0375 5.9005 -0.8094 5.9535 -0.4413 0.7037 1.0426 -2.7230 4.7387 -2.9023 7.5866 -4.6617 -5.7131 7.1116 -13.7670 -1.9411 23.6183 -49.1056 4.2828 -0.0000 0.0001 67.1871 13.0750 26.9662 -4.7967 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.7123 10.5453 7.8513 47.5225 59.6769 -41.8485 -0.0000 -0.0000 -26.0757 7.9744 -25.6868 8.1425 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -14.1235 -5.8981 5.3582 13.7188 0.0000 0.0000 -5.5081 -0.6931 -3.4641 4.9388 0.0000 0.0000 -17.3606 -6.4245 6.9503 21.7733 0.0000 0.0000 -15.0143 2.1630 -1.0210 -10.0387 0.0000 -0.0000 - -2.9621 -46.6720 24.6921 -7.5332 -3.1233 172.7841 5.3187 -1.7687 -0.1142 1.5333 -1.5440 -0.0372 5.8626 -0.9038 5.8624 -0.4609 0.6511 1.0686 -2.8411 4.7140 -2.7934 7.4424 -4.5478 -5.5052 7.4531 -13.6645 -2.3037 24.9420 -49.9946 5.0264 -0.0000 0.0001 67.1642 13.1160 27.4040 -4.6361 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.9190 10.0474 7.9423 49.3882 60.5821 -42.6351 -0.0000 -0.0000 -26.2860 7.5575 -25.9716 7.8865 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -14.4508 -5.9310 5.2025 13.7833 0.0000 0.0000 -5.4971 -0.6994 -3.4106 4.9232 0.0000 0.0000 -17.7501 -6.5242 7.0820 21.9233 0.0000 0.0000 -15.0760 2.4056 -1.3673 -10.4938 0.0000 -0.0000 - -2.9622 -46.6861 24.6901 -7.8037 -3.1306 172.8836 5.4192 -1.7533 -0.1288 1.5615 -1.5103 -0.0391 5.8359 -0.9827 5.7517 -0.4811 0.6045 1.0819 -2.9681 4.6619 -2.6876 7.2895 -4.4352 -5.3156 7.8512 -13.5216 -2.6540 26.2793 -50.8281 5.8266 -0.0000 0.0001 66.9403 12.9978 27.7710 -4.4617 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 1.1657 9.5675 8.0296 51.1902 61.3675 -43.4146 -0.0000 -0.0000 -26.3139 6.9733 -26.1347 7.5711 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -14.7873 -5.9426 5.0325 13.8290 0.0000 0.0000 -5.4751 -0.7181 -3.3716 4.9088 0.0000 0.0000 -18.1426 -6.5991 7.2102 22.0396 0.0000 0.0000 -15.1163 2.5624 -1.7001 -10.7970 0.0000 -0.0000 - -2.9636 -46.7006 24.6891 -8.0803 -3.1293 173.0104 5.5281 -1.7407 -0.1422 1.5897 -1.4873 -0.0469 5.8180 -1.0387 5.6354 -0.5037 0.5662 1.0773 -3.1050 4.5819 -2.5856 7.1305 -4.3264 -5.1445 8.2921 -13.3527 -2.9905 27.6249 -51.5954 6.6689 -0.0000 0.0001 66.5188 12.7417 28.0607 -4.2950 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.4464 9.1124 8.1137 52.8919 62.0380 -44.1388 -0.0000 -0.0000 -26.1908 6.2655 -26.1729 7.2195 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -15.1241 -5.9358 4.8593 13.8588 0.0000 0.0000 -5.4432 -0.7471 -3.3519 4.8975 0.0000 0.0000 -18.5278 -6.6491 7.3264 22.1199 0.0000 0.0000 -15.1271 2.6470 -2.0122 -10.9676 0.0000 -0.0000 - -2.9663 -46.7163 24.6888 -8.3725 -3.1197 173.1551 5.6424 -1.7464 -0.1587 1.6230 -1.4379 -0.0406 5.7992 -1.1019 5.4848 -0.5299 0.5394 1.0832 -3.2509 4.4814 -2.4928 6.9669 -4.2232 -4.9925 8.7647 -13.1641 -3.3178 28.9695 -52.2920 7.5397 -0.0000 0.0001 65.9020 12.3647 28.2844 -4.1381 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 1.7686 8.6995 8.1896 54.4557 62.5880 -44.7672 -0.0000 -0.0000 -25.9549 5.4773 -26.1050 6.8581 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.4809 -5.9155 4.6983 13.8871 0.0000 0.0000 -5.4042 -0.7853 -3.3580 4.8893 0.0000 0.0000 -18.9213 -6.6767 7.4241 22.1690 0.0000 0.0000 -15.1005 2.6774 -2.2985 -11.0329 0.0000 -0.0000 - -2.9700 -46.7328 24.6891 -8.6574 -3.1012 173.3109 5.7864 -1.7405 -0.1738 1.6627 -1.4252 -0.0497 5.7787 -1.1226 5.3538 -0.5613 0.5168 1.0720 -3.4073 4.3615 -2.4010 6.8006 -4.1283 -4.8641 9.2530 -12.9753 -3.6311 30.2903 -52.9101 8.3978 -0.0000 0.0001 65.1152 11.8864 28.4460 -3.9986 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 2.1274 8.3283 8.2605 55.8636 63.0288 -45.2660 -0.0000 -0.0000 -25.6508 4.6671 -25.9508 6.5184 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -15.8347 -5.8810 4.5533 13.9185 0.0000 0.0000 -5.3632 -0.8271 -3.3847 4.8848 0.0000 0.0000 -19.2957 -6.6796 7.5011 22.1815 0.0000 0.0000 -15.0283 2.6746 -2.5564 -11.0232 0.0000 -0.0000 - -2.9748 -46.7511 24.6898 -8.9473 -3.0759 173.4704 5.9520 -1.7390 -0.1932 1.7111 -1.4077 -0.0627 5.7538 -1.1377 5.2376 -0.5987 0.5057 1.0502 -3.5763 4.2248 -2.3129 6.6332 -4.0385 -4.7526 9.7485 -12.7898 -3.9266 31.5657 -53.4576 9.2160 -0.0000 0.0001 64.1805 11.3300 28.5585 -3.8825 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.5312 7.9850 8.3524 57.1788 63.3426 -45.7242 -0.0000 -0.0000 -25.2820 3.8642 -25.7503 6.2047 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -16.2089 -5.8386 4.4260 13.9684 0.0000 0.0000 -5.3234 -0.8697 -3.4290 4.8824 0.0000 0.0000 -19.6734 -6.6643 7.5538 22.1683 0.0000 0.0000 -14.9070 2.6580 -2.7866 -10.9696 0.0000 -0.0000 - -2.9805 -46.7714 24.6903 -9.2329 -3.0421 173.6263 6.1509 -1.7347 -0.2136 1.7684 -1.3965 -0.0763 5.7243 -1.1372 5.1334 -0.6441 0.5004 1.0257 -3.7566 4.0783 -2.2305 6.4642 -3.9544 -4.6590 10.2375 -12.6158 -4.2117 32.7728 -53.9408 9.9580 -0.0000 0.0001 63.1321 10.7147 28.6346 -3.7871 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9740 7.6648 8.4480 58.4020 63.5569 -46.1196 -0.0000 -0.0000 -24.8925 3.1212 -25.5368 5.9408 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -16.6010 -5.7874 4.3144 14.0492 0.0000 0.0000 -5.2915 -0.9099 -3.4818 4.8794 0.0000 0.0000 -20.0463 -6.6299 7.5838 22.1326 0.0000 0.0000 -14.7346 2.6423 -2.9886 -10.8981 0.0000 -0.0000 - -2.9874 -46.7946 24.6905 -9.5250 -2.9924 173.7687 6.3734 -1.7247 -0.2374 1.8411 -1.3736 -0.0781 5.6830 -1.1371 5.0282 -0.6974 0.4962 1.0160 -3.9470 3.9352 -2.1641 6.2925 -3.8766 -4.5725 10.7128 -12.4482 -4.4927 33.8911 -54.3783 10.5975 -0.0000 0.0001 62.0018 10.0600 28.6929 -3.7058 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.4528 7.3618 8.5433 59.5620 63.6862 -46.4753 -0.0000 -0.0000 -24.5073 2.4753 -25.3451 5.7383 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -17.0369 -5.7240 4.2180 14.1837 0.0000 0.0000 -5.2755 -0.9462 -3.5341 4.8735 0.0000 0.0000 -20.4308 -6.5740 7.5997 22.0811 0.0000 0.0000 -14.5115 2.6363 -3.1641 -10.8286 0.0000 -0.0000 - -2.9953 -46.8214 24.6897 -9.8271 -2.9280 173.8945 6.6182 -1.7016 -0.2641 1.9254 -1.3580 -0.0894 5.6326 -1.1253 4.9638 -0.7557 0.4969 0.9966 -4.1483 3.7885 -2.0994 6.1150 -3.7990 -4.5007 11.1705 -12.2903 -4.7575 34.8926 -54.7923 11.0978 -0.0000 0.0001 60.8266 9.3818 28.7538 -3.6245 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 3.9634 7.0447 8.6489 60.7308 63.7455 -46.8704 -0.0000 -0.0000 -24.1289 1.9473 -25.2028 5.5941 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -17.5269 -5.6502 4.1245 14.3827 0.0000 0.0000 -5.2788 -0.9782 -3.5729 4.8613 0.0000 0.0000 -20.8374 -6.5015 7.6067 22.0267 0.0000 0.0000 -14.2455 2.6440 -3.3174 -10.7733 0.0000 -0.0000 - -3.0042 -46.8514 24.6879 -10.1229 -2.8492 174.0034 6.9014 -1.6677 -0.2938 2.0208 -1.3378 -0.0935 5.5746 -1.1069 4.9034 -0.8208 0.4895 0.9984 -4.3572 3.6545 -2.0517 5.9295 -3.7241 -4.4328 11.6136 -12.1322 -5.0269 35.7757 -55.1959 11.4663 -0.0000 0.0001 59.6384 8.6928 28.8440 -3.5323 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 4.5093 6.7096 8.7459 61.9268 63.7544 -47.3226 -0.0000 -0.0000 -23.7716 1.5473 -25.1334 5.5045 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -18.0561 -5.5638 4.0235 14.6506 0.0000 0.0000 -5.3048 -1.0072 -3.5880 4.8399 0.0000 0.0000 -21.2502 -6.4128 7.6107 21.9750 0.0000 0.0000 -13.9461 2.6638 -3.4517 -10.7368 0.0000 -0.0000 - -3.0143 -46.8849 24.6849 -10.4078 -2.7491 174.0917 7.2240 -1.6131 -0.3280 2.1290 -1.3143 -0.0946 5.5099 -1.0847 4.8626 -0.8889 0.4790 1.0078 -4.5736 3.5289 -2.0125 5.7314 -3.6471 -4.3686 12.0529 -11.9703 -5.2898 36.5242 -55.6073 11.6938 -0.0000 0.0001 58.4677 8.0048 28.9905 -3.4117 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 5.0992 6.3301 8.8524 63.2224 63.7080 -47.9364 -0.0000 -0.0000 -23.4146 1.2589 -25.1506 5.4464 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.6257 -5.4567 3.9073 14.9973 0.0000 0.0000 -5.3579 -1.0364 -3.5665 4.8082 0.0000 0.0000 -21.6640 -6.3030 7.6252 21.9288 0.0000 0.0000 -13.6229 2.6888 -3.5700 -10.7188 0.0000 -0.0000 - -3.0255 -46.9222 24.6801 -10.6861 -2.6305 174.1621 7.5826 -1.5407 -0.3660 2.2474 -1.2860 -0.0944 5.4395 -1.0597 4.8394 -0.9580 0.4609 1.0252 -4.7947 3.4160 -1.9848 5.5156 -3.5672 -4.3034 12.4917 -11.7963 -5.5493 37.1395 -56.0406 11.7842 -0.0000 0.0001 57.3443 7.3239 29.2127 -3.2462 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 5.7254 5.8961 8.9553 64.6223 63.6356 -48.7092 -0.0000 -0.0000 -23.0638 1.0734 -25.2476 5.4033 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -19.2431 -5.3310 3.7688 15.4264 0.0000 0.0000 -5.4377 -1.0705 -3.5056 4.7654 0.0000 0.0000 -22.0906 -6.1784 7.6563 21.9034 0.0000 0.0000 -13.2902 2.7127 -3.6791 -10.7122 0.0000 -0.0000 - -3.0376 -46.9636 24.6735 -10.9571 -2.4953 174.2179 7.9759 -1.4524 -0.4088 2.3738 -1.2521 -0.0919 5.3685 -1.0326 4.8270 -1.0268 0.4358 1.0506 -5.0197 3.3143 -1.9679 5.2776 -3.4833 -4.2335 12.9423 -11.6042 -5.8067 37.6334 -56.4999 11.7636 -0.0000 0.0001 56.2884 6.6525 29.5319 -3.0186 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 6.3914 5.3961 9.0569 66.1429 63.5422 -49.6725 -0.0000 -0.0000 -22.7104 0.9577 -25.4132 5.3491 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -19.9067 -5.1865 3.6027 15.9363 0.0000 0.0000 -5.5421 -1.1146 -3.4033 4.7128 0.0000 0.0000 -22.5331 -6.0429 7.7108 21.9082 0.0000 0.0000 -12.9610 2.7293 -3.7865 -10.7102 0.0000 -0.0000 - -3.0506 -47.0089 24.6648 -11.2208 -2.3457 174.2627 8.4019 -1.3505 -0.4572 2.5054 -1.2124 -0.0883 5.3002 -1.0040 4.8213 -1.0913 0.4039 1.0824 -5.2492 3.2226 -1.9540 5.0128 -3.3969 -4.1630 13.4123 -11.3885 -6.0624 38.0265 -56.9844 11.6612 -0.0000 0.0001 55.3177 5.9896 29.9616 -2.7136 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.0959 4.8281 9.1560 67.7707 63.4370 -50.8177 -0.0000 -0.0000 -22.3569 0.8787 -25.6282 5.2648 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -20.6148 -5.0240 3.4101 16.5238 0.0000 0.0000 -5.6689 -1.1729 -3.2631 4.6535 0.0000 0.0000 -22.9951 -5.9010 7.7951 21.9525 0.0000 0.0000 -12.6465 2.7355 -3.9004 -10.7061 0.0000 -0.0000 - -3.0642 -47.0582 24.6538 -11.4774 -2.1867 174.3013 8.8596 -1.2394 -0.5120 2.6405 -1.1665 -0.0814 5.2388 -0.9759 4.8136 -1.1509 0.3657 1.1182 -5.4842 3.1382 -1.9452 4.7179 -3.3063 -4.0852 13.9103 -11.1459 -6.3184 38.3489 -57.4841 11.5172 -0.0000 0.0001 54.4450 5.3301 30.5050 -2.3208 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.8432 4.1974 9.2599 69.4883 63.3113 -52.1389 -0.0000 -0.0000 -22.0019 0.7893 -25.8771 5.1263 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -21.3628 -4.8470 3.1955 17.1806 0.0000 0.0000 -5.8136 -1.2484 -3.0933 4.5913 0.0000 0.0000 -23.4806 -5.7596 7.9132 22.0450 0.0000 0.0000 -12.3558 2.7318 -4.0308 -10.6948 0.0000 -0.0000 - -3.0783 -47.1116 24.6404 -11.7282 -2.0228 174.3367 9.3458 -1.1244 -0.5732 2.7770 -1.1167 -0.0746 5.1909 -0.9462 4.8012 -1.2057 0.3249 1.1558 -5.7263 3.0590 -1.9387 4.3903 -3.2155 -3.9989 14.4434 -10.8734 -6.5761 38.6416 -57.9877 11.3841 -0.0000 0.0001 53.6740 4.6695 31.1614 -1.8311 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 8.6296 3.5156 9.3657 71.2458 63.1742 -53.5784 -0.0000 -0.0000 -21.6646 0.6578 -26.1414 4.9272 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -22.1480 -4.6598 2.9663 17.8992 0.0000 0.0000 -5.9722 -1.3424 -2.9026 4.5310 0.0000 0.0000 -23.9945 -5.6264 8.0708 22.1933 0.0000 0.0000 -12.0951 2.7225 -4.1901 -10.6722 0.0000 -0.0000 - -3.0927 -47.1689 24.6244 -11.9753 -1.8601 174.3733 9.8583 -1.0096 -0.6388 2.9121 -1.0650 -0.0690 5.1611 -0.9157 4.7787 -1.2539 0.2826 1.1902 -5.9801 2.9812 -1.9282 4.0287 -3.1256 -3.9056 15.0121 -10.5732 -6.8355 38.9425 -58.4764 11.3012 -0.0000 0.0001 53.0117 4.0023 31.9153 -1.2427 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 9.4427 2.7942 9.4755 73.0106 63.0331 -55.0903 -0.0000 -0.0000 -21.3579 0.4523 -26.4079 4.6567 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -22.9662 -4.4686 2.7305 18.6685 0.0000 0.0000 -6.1406 -1.4521 -2.7022 4.4772 0.0000 0.0000 -24.5427 -5.5095 8.2692 22.4035 0.0000 0.0000 -11.8676 2.7155 -4.3893 -10.6392 0.0000 -0.0000 - -3.1071 -47.2303 24.6056 -12.2228 -1.7026 174.4119 10.3927 -0.8993 -0.7096 3.0453 -1.0136 -0.0650 5.1530 -0.8847 4.7434 -1.2955 0.2428 1.2210 -6.2511 2.9033 -1.9101 3.6337 -3.0395 -3.8065 15.6094 -10.2428 -7.1008 39.2985 -58.9379 11.3149 -0.0000 0.0001 52.4563 3.3335 32.7423 -0.5621 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.2793 2.0633 9.5879 74.7072 62.8929 -56.5819 -0.0000 -0.0000 -21.1207 0.1602 -26.6771 4.3365 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -23.8165 -4.2789 2.4974 19.4798 0.0000 0.0000 -6.3163 -1.5728 -2.5013 4.4342 0.0000 0.0000 -25.1318 -5.4167 8.5150 22.6813 0.0000 0.0000 -11.6744 2.7194 -4.6419 -10.5951 0.0000 -0.0000 - -3.1213 -47.2957 24.5839 -12.4739 -1.5592 174.4555 10.9456 -0.8012 -0.7864 3.1760 -0.9613 -0.0544 5.1722 -0.8582 4.6836 -1.3321 0.2086 1.2446 -6.5444 2.8224 -1.8842 3.2069 -2.9582 -3.6950 16.2337 -9.8883 -7.3614 39.7278 -59.3582 11.4384 -0.0000 0.0001 52.0086 2.6628 33.6161 0.2121 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 11.1286 1.3360 9.7073 76.3218 62.7540 -58.0279 -0.0000 -0.0000 -20.9574 -0.2417 -26.9624 3.9549 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -24.6950 -4.1007 2.2697 20.3201 0.0000 0.0000 -6.4950 -1.6971 -2.3067 4.4031 0.0000 0.0000 -25.7693 -5.3597 8.8096 23.0334 0.0000 0.0000 -11.5162 2.7421 -4.9605 -10.5392 0.0000 -0.0000 - -3.1350 -47.3650 24.5591 -12.7252 -1.4330 174.5021 11.5214 -0.7159 -0.8629 3.3039 -0.9196 -0.0550 5.2197 -0.8230 4.6152 -1.3626 0.1780 1.2596 -6.8681 2.7386 -1.8449 2.7522 -2.8843 -3.5780 16.8773 -9.5056 -7.6296 40.2796 -59.7246 11.7272 -0.0000 0.0001 51.6575 2.0063 34.5084 1.0595 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 11.9760 0.6377 9.8238 77.8006 62.6374 -59.3444 -0.0000 -0.0000 -20.9078 -0.7386 -27.2771 3.5454 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -25.5937 -3.9383 2.0489 21.1820 0.0000 0.0000 -6.6771 -1.8152 -2.1189 4.3848 0.0000 0.0000 -26.4524 -5.3445 9.1581 23.4632 0.0000 0.0000 -11.3926 2.7883 -5.3526 -10.4696 0.0000 -0.0000 - -3.1477 -47.4387 24.5308 -12.9936 -1.3384 174.5544 12.1037 -0.6589 -0.9424 3.4318 -0.8840 -0.0530 5.2951 -0.7893 4.5280 -1.3874 0.1588 1.2631 -7.2270 2.6473 -1.7927 2.2729 -2.8173 -3.4504 17.5294 -9.1023 -7.8874 40.9394 -60.0393 12.1499 -0.0000 0.0001 51.4032 1.3840 35.3843 1.9694 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 12.8185 -0.0147 9.9359 79.1220 62.5474 -60.4990 -0.0000 -0.0000 -20.9898 -1.3271 -27.6553 3.1205 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -26.5232 -3.8070 1.8252 22.0525 0.0000 0.0000 -6.8568 -1.9170 -1.9391 4.3766 0.0000 0.0000 -27.2074 -5.3899 9.5583 23.9857 0.0000 0.0000 -11.3066 2.8585 -5.8286 -10.3811 0.0000 -0.0000 - -3.1595 -47.5162 24.4990 -13.2649 -1.2710 174.6068 12.7072 -0.6229 -1.0185 3.5564 -0.8564 -0.0550 5.4041 -0.7527 4.4261 -1.4091 0.1450 1.2610 -7.6258 2.5542 -1.7230 1.7729 -2.7582 -3.3202 18.1812 -8.6777 -8.1426 41.7141 -60.2964 12.7119 -0.0000 0.0001 51.2366 0.8214 36.2175 2.9239 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 13.6297 -0.6031 10.0202 80.2697 62.5238 -61.4363 -0.0000 -0.0000 -21.2241 -1.9784 -28.1192 2.6846 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -27.4663 -3.7018 1.5923 22.9281 0.0000 0.0000 -7.0383 -1.9929 -1.7553 4.3760 0.0000 0.0000 -28.0133 -5.4926 10.0182 24.5948 0.0000 0.0000 -11.2570 2.9442 -6.3865 -10.2634 0.0000 -0.0000 - -3.1701 -47.5980 24.4634 -13.5515 -1.2420 174.6594 13.3203 -0.6210 -1.0868 3.6821 -0.8384 -0.0751 5.5400 -0.7113 4.3378 -1.4243 0.1410 1.2371 -8.0704 2.4557 -1.6420 1.2586 -2.7058 -3.1783 18.8288 -8.2350 -8.3863 42.5924 -60.4998 13.4025 -0.0000 0.0001 51.1471 0.3404 36.9888 3.9065 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 14.4170 -1.1227 10.0833 81.2515 62.5503 -62.1769 -0.0000 -0.0000 -21.6119 -2.6862 -28.7062 2.2436 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -28.4315 -3.6331 1.3353 23.8003 0.0000 0.0000 -7.2175 -2.0368 -1.5632 4.3765 0.0000 0.0000 -28.8893 -5.6666 10.5318 25.3034 0.0000 0.0000 -11.2497 3.0312 -7.0238 -10.1038 0.0000 -0.0000 - -3.1795 -47.6842 24.4237 -13.8663 -1.2469 174.7062 13.9268 -0.6448 -1.1517 3.8098 -0.8280 -0.0787 5.7073 -0.6735 4.2208 -1.4387 0.1458 1.2156 -8.5583 2.3533 -1.5447 0.7308 -2.6575 -3.0332 19.4561 -7.7861 -8.6019 43.5018 -60.6661 14.1212 -0.0000 0.0001 51.1425 -0.0184 37.6683 4.8946 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 15.1680 -1.5645 10.1045 82.0593 62.6618 -62.6924 -0.0000 -0.0000 -22.1665 -3.4180 -29.4339 1.7965 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -29.4347 -3.5974 1.0456 24.6713 0.0000 0.0000 -7.3956 -2.0450 -1.3531 4.3748 0.0000 0.0000 -29.8477 -5.9108 11.0991 26.1120 0.0000 0.0000 -11.2879 3.0994 -7.7282 -9.8871 0.0000 -0.0000 - -3.1874 -47.7744 24.3799 -14.1973 -1.2929 174.7452 14.5431 -0.7017 -1.2075 3.9378 -0.8281 -0.0782 5.8964 -0.6313 4.0967 -1.4459 0.1573 1.1913 -9.0904 2.2490 -1.4419 0.1940 -2.6131 -2.8775 20.0599 -7.3295 -8.7879 44.4272 -60.8084 14.8602 -0.0000 0.0001 51.2026 -0.2359 38.2530 5.8759 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 15.8817 -1.9275 10.0740 82.6977 62.8654 -62.9901 -0.0000 -0.0000 -22.8892 -4.1524 -30.3204 1.3318 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -30.4565 -3.5979 0.7094 25.5318 0.0000 0.0000 -7.5700 -2.0187 -1.1174 4.3655 0.0000 0.0000 -30.8723 -6.2313 11.7111 27.0208 0.0000 0.0000 -11.3799 3.1257 -8.4849 -9.5973 0.0000 -0.0000 - -3.1930 -47.8676 24.3319 -14.5283 -1.4004 174.7789 15.1849 -0.8094 -1.2486 4.0647 -0.8381 -0.0821 6.1115 -0.5805 3.9760 -1.4516 0.1689 1.1693 -9.6613 2.1452 -1.3355 -0.3516 -2.5707 -2.7169 20.6453 -6.8744 -8.9524 45.3487 -60.9236 15.6122 -0.0000 0.0001 51.3155 -0.3004 38.7536 6.8310 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 16.5728 -2.2187 9.9946 83.1792 63.1442 -63.1132 -0.0000 -0.0000 -23.7615 -4.8843 -31.3711 0.8262 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -31.4689 -3.6491 0.3105 26.3680 0.0000 0.0000 -7.7366 -1.9627 -0.8573 4.3465 0.0000 0.0000 -31.9471 -6.6446 12.3436 28.0383 0.0000 0.0000 -11.5409 3.0907 -9.2761 -9.2218 0.0000 -0.0000 - -3.1971 -47.9645 24.2797 -14.8874 -1.5436 174.7948 15.8226 -0.9404 -1.2729 4.1942 -0.8554 -0.0908 6.3398 -0.5331 3.8810 -1.4518 0.1895 1.1307 -10.2649 2.0390 -1.2211 -0.9049 -2.5282 -2.5523 21.2015 -6.4311 -9.0645 46.1953 -61.0365 16.2871 -0.0000 0.0001 51.4780 -0.1974 39.1703 7.7451 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 17.2345 -2.4400 9.8625 83.5039 63.5179 -63.0581 -0.0000 -0.0000 -24.7818 -5.5979 -32.5738 0.2558 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -32.5144 -3.7309 -0.1372 27.1980 0.0000 0.0000 -7.8994 -1.8895 -0.5692 4.3184 0.0000 0.0000 -33.0922 -7.1282 12.9960 29.1474 0.0000 0.0000 -11.7698 2.9695 -10.0725 -8.7479 0.0000 -0.0000 - -3.2008 -48.0655 24.2228 -15.3088 -1.6941 174.7812 16.4152 -1.0718 -1.2806 4.3240 -0.8764 -0.0998 6.5876 -0.4844 3.8038 -1.4499 0.2117 1.0916 -10.8965 1.9385 -1.1055 -1.4664 -2.4870 -2.3857 21.7234 -6.0025 -9.1391 46.9683 -61.1429 16.8971 -0.0000 0.0001 51.6732 0.0674 39.5252 8.6009 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 17.8596 -2.5955 9.6707 83.6698 63.9927 -62.8267 -0.0000 -0.0000 -25.9474 -6.2827 -33.8985 -0.3978 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -33.6452 -3.8224 -0.6115 28.0465 0.0000 0.0000 -8.0643 -1.8165 -0.2547 4.2840 0.0000 0.0000 -34.3351 -7.6563 13.6637 30.3328 0.0000 0.0000 -12.0666 2.7445 -10.8415 -8.1694 0.0000 -0.0000 - -3.2019 -48.1681 24.1619 -15.7354 -1.9045 174.7509 17.0295 -1.2471 -1.2692 4.4501 -0.9030 -0.1042 6.8431 -0.4322 3.7350 -1.4439 0.2312 1.0648 -11.5446 1.8436 -0.9955 -2.0382 -2.4468 -2.2185 22.2158 -5.5977 -9.1737 47.6562 -61.2451 17.4435 -0.0000 0.0001 51.8802 0.4717 39.8480 9.3909 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 18.4746 -2.7030 9.4391 83.6972 64.5155 -62.4967 -0.0000 -0.0000 -27.2152 -6.9730 -35.3264 -1.1703 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -34.7706 -3.9668 -1.1246 28.8751 0.0000 0.0000 -8.2201 -1.7557 0.0611 4.2486 0.0000 0.0000 -35.6177 -8.2696 14.2988 31.6045 0.0000 0.0000 -12.4492 2.4223 -11.5767 -7.4886 0.0000 -0.0000 - -3.2015 -48.2725 24.0968 -16.1963 -2.1448 174.6933 17.6300 -1.4378 -1.2390 4.5735 -0.9311 -0.1075 7.1083 -0.3804 3.6872 -1.4370 0.2482 1.0439 -12.2039 1.7571 -0.8867 -2.6198 -2.4088 -2.0565 22.6739 -5.2234 -9.1627 48.2480 -61.3403 17.9189 -0.0000 0.0001 52.0870 0.9867 40.1660 10.1059 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 19.0695 -2.7699 9.1750 83.5945 65.0757 -62.0821 -0.0000 -0.0000 -28.5684 -7.6850 -36.8121 -2.0828 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -35.9368 -4.1451 -1.6407 29.7091 0.0000 0.0000 -8.3746 -1.7255 0.3661 4.2212 0.0000 0.0000 -36.9602 -8.9387 14.8962 32.9392 0.0000 0.0000 -12.9079 2.0063 -12.2539 -6.7146 0.0000 -0.0000 - -3.1994 -48.3778 24.0278 -16.6896 -2.4162 174.6072 18.2213 -1.6448 -1.1911 4.6916 -0.9601 -0.1094 7.3759 -0.3293 3.6625 -1.4281 0.2647 1.0316 -12.8691 1.6809 -0.7839 -3.2110 -2.3763 -1.8991 23.0898 -4.8814 -9.1067 48.7619 -61.4239 18.3472 -0.0000 0.0001 52.2725 1.5760 40.5044 10.7400 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 19.6360 -2.8088 8.8903 83.3797 65.6461 -61.6142 -0.0000 -0.0000 -29.9799 -8.4391 -38.3145 -3.1417 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -37.1406 -4.3647 -2.1347 30.5510 0.0000 0.0000 -8.5303 -1.7408 0.6373 4.2099 0.0000 0.0000 -38.3559 -9.6606 15.4368 34.3255 0.0000 0.0000 -13.4369 1.5147 -12.8649 -5.8624 0.0000 -0.0000 - -3.1962 -48.4832 23.9547 -17.2207 -2.7005 174.4894 18.7937 -1.8492 -1.1285 4.8049 -0.9869 -0.1101 7.6475 -0.2814 3.6617 -1.4203 0.2779 1.0270 -13.5384 1.6177 -0.6810 -3.8088 -2.3486 -1.7540 23.4580 -4.5741 -9.0037 49.2066 -61.4866 18.7411 -0.0000 0.0001 52.4268 2.1948 40.8836 11.2908 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 20.1589 -2.8301 8.5998 83.0868 66.1927 -61.1363 -0.0000 -0.0000 -31.4139 -9.2651 -39.7906 -4.3497 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -38.3957 -4.6179 -2.5712 31.4169 0.0000 0.0000 -8.6962 -1.8126 0.8556 4.2235 0.0000 0.0000 -39.8021 -10.4140 15.9140 35.7433 0.0000 0.0000 -14.0211 0.9724 -13.4028 -4.9567 0.0000 -0.0000 - -3.1917 -48.5877 23.8776 -17.7863 -2.9957 174.3418 19.3502 -2.0499 -1.0536 4.9126 -1.0105 -0.1095 7.9207 -0.2370 3.6835 -1.4145 0.2894 1.0304 -14.2129 1.5696 -0.5796 -4.4089 -2.3291 -1.6210 23.7742 -4.3011 -8.8526 49.6037 -61.5223 19.1288 -0.0000 0.0001 52.5363 2.7993 41.3195 11.7630 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 20.6176 -2.8446 8.3110 82.7516 66.6857 -60.6818 -0.0000 -0.0000 -32.8389 -10.1838 -41.2045 -5.6911 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -39.6996 -4.9107 -2.9255 32.3127 0.0000 0.0000 -8.8799 -1.9459 0.9990 4.2679 0.0000 0.0000 -41.2929 -11.1925 16.3160 37.1825 0.0000 0.0000 -14.6460 0.4109 -13.8726 -4.0293 0.0000 -0.0000 - -3.1864 -48.6904 23.7965 -18.3836 -3.2933 174.1669 19.8913 -2.2402 -0.9704 5.0155 -1.0303 -0.1078 8.1950 -0.1962 3.7258 -1.4123 0.3006 1.0407 -14.8971 1.5384 -0.4775 -5.0035 -2.3201 -1.5024 24.0332 -4.0600 -8.6508 49.9710 -61.5285 19.5312 -0.0000 0.0001 52.5932 3.3472 41.8172 12.1664 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 20.9899 -2.8607 8.0298 82.4130 67.0967 -60.2834 -0.0000 -0.0000 -34.2217 -11.2086 -42.5268 -7.1339 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -41.0528 -5.2429 -3.1751 33.2486 0.0000 0.0000 -9.0925 -2.1390 1.0514 4.3458 0.0000 0.0000 -42.8224 -11.9833 16.6386 38.6322 0.0000 0.0000 -15.2944 -0.1374 -14.2827 -3.1183 0.0000 -0.0000 - -3.1803 -48.7903 23.7112 -19.0068 -3.5849 173.9700 20.4175 -2.4129 -0.8818 5.1147 -1.0454 -0.1056 8.4743 -0.1596 3.7853 -1.4167 0.3088 1.0552 -15.5983 1.5290 -0.3669 -5.5836 -2.3227 -1.4064 24.2309 -3.8452 -8.3983 50.3218 -61.5058 19.9621 -0.0000 0.0001 52.5985 3.7987 42.3731 12.5172 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 21.2529 -2.8817 7.7528 82.1055 67.4058 -59.9635 -0.0000 -0.0000 -35.5324 -12.3406 -43.7386 -8.6324 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -42.4533 -5.6119 -3.3074 34.2354 0.0000 0.0000 -9.3470 -2.3833 1.0033 4.4548 0.0000 0.0000 -44.3834 -12.7734 16.8807 40.0853 0.0000 0.0000 -15.9497 -0.6427 -14.6445 -2.2643 0.0000 -0.0000 - -3.1738 -48.8864 23.6213 -19.6481 -3.8587 173.7567 20.9328 -2.5642 -0.7937 5.2123 -1.0542 -0.1013 8.7569 -0.1255 3.8546 -1.4275 0.3215 1.0746 -16.3258 1.5373 -0.2522 -6.1387 -2.3349 -1.3295 24.3673 -3.6520 -8.0937 50.6640 -61.4661 20.4368 -0.0000 0.0001 52.5484 4.1288 42.9786 12.8353 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 21.3868 -2.9097 7.4700 81.8401 67.6040 -59.7124 -0.0000 -0.0000 -36.7549 -13.5636 -44.8268 -10.1241 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -43.8977 -6.0098 -3.3172 35.2848 0.0000 0.0000 -9.6562 -2.6648 0.8542 4.5874 0.0000 0.0000 -45.9658 -13.5475 17.0501 41.5357 0.0000 0.0000 -16.5971 -1.0817 -14.9715 -1.5082 0.0000 -0.0000 - -3.1658 -48.9768 23.5269 -20.2711 -4.1458 173.5440 21.4705 -2.7211 -0.6969 5.3101 -1.0594 -0.0967 9.0479 -0.0924 3.9289 -1.4474 0.3335 1.0917 -17.0887 1.5657 -0.1279 -6.6578 -2.3555 -1.2769 24.4436 -3.4771 -7.7351 50.9838 -61.4216 20.9390 -0.0000 0.0001 52.4596 4.3219 43.6169 13.1350 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 21.3809 -2.9467 7.1704 81.6333 67.6873 -59.5381 -0.0000 -0.0000 -37.8643 -14.8582 -45.7842 -11.5549 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -45.3349 -6.4557 -3.2376 36.3853 0.0000 0.0000 -10.0275 -2.9603 0.6045 4.7336 0.0000 0.0000 -47.5414 -14.3232 17.1280 42.9964 0.0000 0.0000 -17.2342 -1.4332 -15.2861 -0.8859 0.0000 -0.0000 - -3.1594 -49.0627 23.4267 -20.9223 -4.3652 173.3277 21.9664 -2.8233 -0.6116 5.4121 -1.0581 -0.0910 9.3503 -0.0586 4.0000 -1.4758 0.3486 1.1044 -17.8986 1.6168 0.0062 -7.1307 -2.3848 -1.2458 24.4657 -3.3143 -7.3212 51.2489 -61.3958 21.4450 -0.0000 0.0001 52.3433 4.3731 44.2665 13.4381 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 21.2247 -2.9838 6.8363 81.4625 67.6691 -59.3988 -0.0000 -0.0000 -38.8559 -16.1925 -46.6030 -12.8707 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -46.8480 -6.8809 -3.0495 37.5858 0.0000 0.0000 -10.4755 -3.2564 0.2871 4.8773 0.0000 0.0000 -49.1427 -15.0291 17.1696 44.4419 0.0000 0.0000 -17.8390 -1.7020 -15.5781 -0.4202 0.0000 -0.0000 - -3.1536 -49.1421 23.3209 -21.5575 -4.5439 173.1254 22.4615 -2.8990 -0.5305 5.5192 -1.0520 -0.0844 9.6680 -0.0218 4.0600 -1.5140 0.3666 1.1092 -18.7612 1.6883 0.1503 -7.5502 -2.4188 -1.2386 24.4315 -3.1587 -6.8540 51.4345 -61.4160 21.9287 -0.0000 0.0001 52.2127 4.2944 44.9114 13.7522 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 20.9272 -3.0134 6.4476 81.2827 67.5679 -59.2459 -0.0000 -0.0000 -39.7301 -17.5356 -47.2811 -14.0297 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -48.3762 -7.2924 -2.8016 38.8715 0.0000 0.0000 -10.9994 -3.5283 -0.0792 5.0041 0.0000 0.0000 -50.7288 -15.6806 17.1688 45.8850 0.0000 0.0000 -18.4174 -1.8855 -15.8642 -0.1215 0.0000 -0.0000 - -3.1490 -49.2148 23.2090 -22.1737 -4.6708 172.9463 22.9504 -2.9475 -0.4550 5.6328 -1.0419 -0.0771 10.0009 0.0215 4.1022 -1.5600 0.3906 1.1036 -19.6784 1.7771 0.3003 -7.9131 -2.4554 -1.2537 24.3488 -3.0080 -6.3296 51.4831 -61.5207 22.3431 -0.0000 0.0001 52.0764 4.0944 45.5331 14.0986 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 20.5083 -3.0237 5.9829 81.0211 67.4113 -59.0098 -0.0000 -0.0000 -40.4971 -18.8600 -47.8168 -15.0107 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -49.9191 -7.6660 -2.5272 40.2472 0.0000 0.0000 -11.5955 -3.7583 -0.4629 5.1001 0.0000 0.0000 -52.2943 -16.2645 17.1441 47.3267 0.0000 0.0000 -18.9699 -1.9956 -16.1477 0.0176 0.0000 0.0000 - -3.1459 -49.2801 23.0909 -22.7633 -4.7416 172.7997 23.4306 -2.9726 -0.3829 5.7535 -1.0280 -0.0698 10.3548 0.0730 4.1210 -1.6147 0.4190 1.0838 -20.6491 1.8810 0.4569 -8.2189 -2.4905 -1.2940 24.2179 -2.8630 -5.7517 51.3317 -61.7374 22.6303 -0.0000 0.0001 51.9464 3.7966 46.1162 14.4752 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 19.9875 -3.0012 5.4285 80.6007 67.2313 -58.6205 -0.0000 -0.0000 -41.1687 -20.1458 -48.2025 -15.8221 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -51.4676 -7.9793 -2.2641 41.7111 0.0000 0.0000 -12.2548 -3.9334 -0.8302 5.1551 0.0000 0.0000 -53.8291 -16.7737 17.1103 48.7695 0.0000 0.0000 -19.5019 -2.0496 -16.4289 0.0212 0.0000 0.0000 - -3.1445 -49.3379 22.9664 -23.3233 -4.7533 172.6919 23.8995 -2.9793 -0.3121 5.8800 -1.0109 -0.0628 10.7304 0.1349 4.1117 -1.6764 0.4532 1.0485 -21.6656 1.9972 0.6150 -8.4731 -2.5236 -1.3583 24.0370 -2.7254 -5.1199 50.9092 -62.0954 22.7253 -0.0000 0.0001 51.8227 3.4197 46.6508 14.8821 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 19.3971 -2.9305 4.7750 79.9204 67.0590 -57.9968 -0.0000 -0.0000 -41.7614 -21.3821 -48.4390 -16.4934 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -53.0155 -8.2105 -2.0464 43.2580 0.0000 0.0000 -12.9642 -4.0468 -1.1490 5.1640 0.0000 0.0000 -55.3259 -17.2051 17.0836 50.2150 0.0000 0.0000 -20.0207 -2.0685 -16.7070 -0.0735 0.0000 -0.0000 - -3.1451 -49.3879 22.8357 -23.8537 -4.7044 172.6261 24.3517 -2.9723 -0.2403 6.0119 -0.9922 -0.0557 11.1250 0.2090 4.0710 -1.7434 0.4944 0.9977 -22.7140 2.1194 0.7689 -8.6849 -2.5522 -1.4449 23.8026 -2.6025 -4.4307 50.1246 -62.6155 22.5417 -0.0000 0.0001 51.6997 2.9796 47.1292 15.3115 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 18.7727 -2.7976 4.0200 78.8740 66.9212 -57.0590 -0.0000 -0.0000 -42.2902 -22.5727 -48.5323 -17.0794 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -54.5593 -8.3409 -1.9008 44.8795 0.0000 0.0000 -13.7085 -4.0992 -1.3913 5.1279 0.0000 0.0000 -56.7804 -17.5600 17.0790 51.6644 0.0000 0.0000 -20.5353 -2.0737 -16.9811 -0.2233 0.0000 -0.0000 - -3.1480 -49.4303 22.6991 -24.3618 -4.5914 172.6022 24.7746 -2.9529 -0.1671 6.1470 -0.9720 -0.0490 11.5391 0.2954 3.9993 -1.8158 0.5427 0.9327 -23.7767 2.2450 0.9158 -8.8662 -2.5783 -1.5553 23.5062 -2.5024 -3.6835 48.8815 -63.3005 21.9865 -0.0000 0.0001 51.5634 2.4788 47.5478 15.7536 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 18.1497 -2.5879 3.1686 77.3476 66.8350 -55.7256 -0.0000 -0.0000 -42.7674 -23.7306 -48.5013 -17.6462 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -56.1030 -8.3535 -1.8427 46.5668 0.0000 0.0000 -14.4735 -4.0978 -1.5342 5.0541 0.0000 0.0000 -58.1944 -17.8407 17.1120 53.1168 0.0000 0.0000 -21.0540 -2.0845 -17.2496 -0.3851 0.0000 -0.0000 - -3.1531 -49.4650 22.5570 -24.8538 -4.4174 172.6177 25.1612 -2.9256 -0.0910 6.2817 -0.9508 -0.0435 11.9697 0.3943 3.9001 -1.8920 0.5980 0.8559 -24.8337 2.3663 1.0461 -9.0339 -2.5956 -1.6865 23.1394 -2.4398 -2.8765 47.0647 -64.1313 20.9481 -0.0000 0.0001 51.3925 1.9110 47.9008 16.1911 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 17.5597 -2.2921 2.2351 75.2377 66.7975 -53.9285 -0.0000 -0.0000 -43.1967 -24.8689 -48.3779 -18.2602 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -57.6465 -8.2407 -1.8791 48.3076 0.0000 0.0000 -15.2475 -4.0537 -1.5640 4.9551 0.0000 0.0000 -59.5693 -18.0573 17.1924 54.5726 0.0000 0.0000 -21.5860 -2.1139 -17.5140 -0.5150 0.0000 -0.0000 - -3.1605 -49.4921 22.4100 -25.3374 -4.1843 172.6665 25.5004 -2.8883 -0.0133 6.4189 -0.9302 -0.0393 12.4082 0.5038 3.7788 -1.9717 0.6606 0.7714 -25.8637 2.4805 1.1585 -9.1989 -2.6094 -1.8390 22.6908 -2.4304 -2.0050 44.5435 -65.0658 19.2955 -0.0000 0.0001 51.1607 1.2522 48.1881 16.6120 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 17.0301 -1.9060 1.2383 72.4568 66.7904 -51.6181 -0.0000 -0.0000 -43.5719 -26.0130 -48.2003 -18.9840 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -59.1921 -8.0012 -2.0043 50.0906 0.0000 0.0000 -16.0227 -3.9812 -1.4750 4.8458 0.0000 0.0000 -60.9074 -18.2220 17.3298 56.0308 0.0000 0.0000 -22.1386 -2.1679 -17.7776 -0.5920 0.0000 -0.0000 - -3.1697 -49.5113 22.2586 -25.8187 -3.9022 172.7421 25.7876 -2.8455 0.0650 6.5525 -0.9094 -0.0347 12.8562 0.6224 3.6404 -2.0578 0.7281 0.6840 -26.8475 2.5829 1.2478 -9.3746 -2.6185 -2.0090 22.1468 -2.4934 -1.0693 41.1843 -66.0285 16.8938 -0.0000 0.0001 50.8399 0.4882 48.4010 16.9856 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 16.5740 -1.4267 0.2023 68.9470 66.7718 -48.7642 -0.0000 -0.0000 -43.8817 -27.1714 -48.0105 -19.8501 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -60.7376 -7.6447 -2.2086 51.9025 0.0000 0.0000 -16.7961 -3.8935 -1.2704 4.7439 0.0000 0.0000 -62.2120 -18.3532 17.5245 57.4928 0.0000 0.0000 -22.7187 -2.2436 -18.0467 -0.5960 0.0000 -0.0000 - -3.1804 -49.5224 22.1036 -26.3018 -3.5793 172.8362 26.0203 -2.7960 0.1402 6.6810 -0.8892 -0.0309 13.3072 0.7495 3.4956 -2.1499 0.7995 0.5988 -27.7718 2.6687 1.3110 -9.5682 -2.6219 -2.1943 21.4989 -2.6499 -0.0673 36.8743 -66.9151 13.6341 -0.0000 0.0001 50.3969 -0.4152 48.5369 17.2934 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 16.1990 -0.8582 -0.8456 64.7077 66.6768 -45.3974 -0.0000 -0.0000 -44.0991 -28.3561 -47.8522 -20.8772 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -62.2794 -7.1862 -2.4732 53.7323 0.0000 0.0000 -17.5698 -3.8019 -0.9605 4.6657 0.0000 0.0000 -63.4835 -18.4679 17.7765 58.9587 0.0000 0.0000 -23.3310 -2.3308 -18.3283 -0.5283 0.0000 -0.0000 - -3.1919 -49.5251 21.9457 -26.7854 -3.2288 172.9399 26.1986 -2.7384 0.2082 6.8113 -0.8696 -0.0278 13.7534 0.8801 3.3541 -2.2528 0.8740 0.5218 -28.6241 2.7350 1.3392 -9.7846 -2.6203 -2.3820 20.7475 -2.9174 1.0021 31.5774 -67.5957 9.4909 -0.0000 0.0001 49.7963 -1.4804 48.5951 17.5098 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 15.9017 -0.2067 -1.8822 59.8170 66.4293 -41.6146 -0.0000 -0.0000 -44.1897 -29.5847 -47.7595 -22.0709 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -63.8073 -6.6503 -2.7778 55.5681 0.0000 0.0000 -18.3491 -3.7132 -0.5624 4.6230 0.0000 0.0000 -64.7182 -18.5871 18.0806 60.4300 0.0000 0.0000 -23.9789 -2.4133 -18.6310 -0.3994 0.0000 -0.0000 - -3.2038 -49.5188 21.7855 -27.2625 -2.8630 173.0450 26.3353 -2.6674 0.2675 6.9447 -0.8515 -0.0248 14.1804 1.0105 3.2265 -2.3644 0.9441 0.4552 -29.4017 2.7835 1.3409 -10.0231 -2.6111 -2.5742 19.8913 -3.3114 2.1319 25.4114 -67.9233 4.5911 -0.0000 0.0001 49.0082 -2.7141 48.5742 17.6043 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 15.6666 0.5159 -2.8856 54.4538 65.9549 -37.6096 -0.0000 -0.0000 -44.1011 -30.8652 -47.7481 -23.4174 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -65.3053 -6.0639 -3.1007 57.3995 0.0000 0.0000 -19.1429 -3.6291 -0.0967 4.6228 0.0000 0.0000 -65.9062 -18.7277 18.4296 61.9070 0.0000 0.0000 -24.6641 -2.4728 -18.9608 -0.2320 0.0000 -0.0000 - -3.2150 -49.5031 21.6238 -27.7266 -2.5045 173.1421 26.4377 -2.5917 0.3166 7.0861 -0.8330 -0.0208 14.5852 1.1365 3.1190 -2.4904 1.0131 0.4054 -30.1067 2.8116 1.3033 -10.2782 -2.5980 -2.7493 18.9450 -3.8446 3.3123 18.7123 -67.7636 -0.7020 -0.0000 0.0000 47.9985 -4.1073 48.4827 17.5465 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 15.4726 1.3006 -3.8380 48.8423 65.1893 -33.6024 -0.0000 -0.0000 -43.7957 -32.1945 -47.8269 -24.8729 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -66.7551 -5.4644 -3.4294 59.2139 0.0000 0.0000 -19.9597 -3.5461 0.4100 4.6645 0.0000 0.0000 -67.0427 -18.9128 18.8045 63.3942 0.0000 0.0000 -25.3875 -2.4901 -19.3233 -0.0573 0.0000 -0.0000 - -3.2247 -49.4774 21.4613 -28.1653 -2.1736 173.2246 26.5240 -2.5107 0.3592 7.2393 -0.8154 -0.0164 14.9553 1.2523 3.0410 -2.6316 1.0692 0.3724 -30.7470 2.8260 1.2453 -10.5417 -2.5717 -2.9157 17.9243 -4.5204 4.5235 11.9736 -67.0238 -5.8737 -0.0000 0.0000 46.7491 -5.6281 48.3265 17.3105 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 15.2992 2.1386 -4.7310 43.2586 64.0913 -29.8685 -0.0000 -0.0000 -43.2177 -33.5682 -47.9895 -26.3916 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -68.1329 -4.8856 -3.7551 60.9995 0.0000 0.0000 -20.8082 -3.4563 0.9316 4.7412 0.0000 0.0000 -68.1168 -19.1581 19.1854 64.8933 0.0000 0.0000 -26.1472 -2.4495 -19.7192 0.0893 0.0000 0.0000 - -3.2326 -49.4411 21.2985 -28.5629 -1.8760 173.2859 26.6120 -2.4205 0.3903 7.4081 -0.7971 -0.0101 15.2853 1.3533 2.9933 -2.7922 1.1154 0.3593 -31.3339 2.8286 1.1553 -10.8032 -2.5377 -3.0488 16.8659 -5.3396 5.7473 5.7265 -65.6755 -10.3503 -0.0000 0.0000 45.2447 -7.2316 48.1273 16.8778 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 15.1228 3.0140 -5.5617 37.9413 62.6558 -26.6259 -0.0000 -0.0000 -42.3295 -34.9646 -48.2158 -27.9047 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -69.4153 -4.3507 -4.0621 62.7497 0.0000 0.0000 -21.6954 -3.3522 1.4463 4.8390 0.0000 0.0000 -69.1081 -19.4670 19.5653 66.4007 0.0000 0.0000 -26.9396 -2.3430 -20.1420 0.1727 0.0000 0.0000 - -3.2381 -49.3943 21.1363 -28.9093 -1.6294 173.3211 26.7171 -2.3253 0.4161 7.5960 -0.7775 -0.0019 15.5655 1.4324 2.9782 -2.9728 1.1433 0.3663 -31.8820 2.8295 1.0509 -11.0516 -2.4891 -3.1546 15.8033 -6.2880 6.9556 0.3399 -63.7586 -13.7291 -0.0000 0.0000 43.4906 -8.8513 47.8983 16.2433 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 14.9284 3.9162 -6.3392 33.0652 60.8984 -24.0285 -0.0000 -0.0000 -41.0974 -36.3556 -48.4810 -29.3394 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -70.5814 -3.8864 -4.3523 64.4533 0.0000 0.0000 -22.6220 -3.2236 1.9316 4.9401 0.0000 0.0000 -70.0090 -19.8471 19.9217 67.9153 0.0000 0.0000 -27.7587 -2.1673 -20.5836 0.1637 0.0000 0.0000 - -3.2412 -49.3367 20.9754 -29.1956 -1.4378 173.3273 26.8517 -2.2243 0.4368 7.8041 -0.7572 0.0084 15.7901 1.4857 2.9942 -3.1745 1.1521 0.3915 -32.4059 2.8375 0.9388 -11.2771 -2.4289 -3.2275 14.7809 -7.3439 8.1261 -4.0453 -61.3571 -15.8288 -0.0000 0.0000 41.5091 -10.4188 47.6609 15.4197 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 14.7065 4.8281 -7.0776 28.7180 58.8563 -22.1336 -0.0000 -0.0000 -39.5069 -37.7006 -48.7494 -30.6159 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -71.6162 -3.5052 -4.6230 66.1031 0.0000 0.0000 -23.5838 -3.0644 2.3726 5.0255 0.0000 0.0000 -70.8087 -20.2936 20.2443 69.4303 0.0000 0.0000 -28.5964 -1.9275 -21.0300 0.0437 0.0000 0.0000 - -3.2425 -49.2687 20.8166 -29.4107 -1.2932 173.3041 27.0316 -2.1104 0.4474 8.0309 -0.7347 0.0219 15.9528 1.5086 3.0385 -3.3960 1.1412 0.4318 -32.9199 2.8612 0.8278 -11.4713 -2.3565 -3.2661 13.8390 -8.4727 9.2402 -7.4931 -58.5770 -16.6819 -0.0000 0.0000 39.3478 -11.8641 47.4337 14.4367 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 14.4547 5.7315 -7.7947 24.9154 56.5717 -20.9236 -0.0000 -0.0000 -37.5629 -38.9503 -48.9812 -31.6553 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -72.5065 -3.2060 -4.8669 67.6955 0.0000 0.0000 -24.5721 -2.8729 2.7630 5.0788 0.0000 0.0000 -71.4893 -20.7916 20.5348 70.9344 0.0000 0.0000 -29.4446 -1.6355 -21.4646 -0.1912 0.0000 -0.0000 - -3.2425 -49.1908 20.6607 -29.5565 -1.1965 173.2510 27.2571 -1.9911 0.4536 8.2733 -0.7055 0.0398 16.0541 1.4954 3.1042 -3.6367 1.1131 0.4842 -33.4334 2.9070 0.7253 -11.6299 -2.2719 -3.2720 13.0212 -9.6300 10.2876 -10.1808 -55.5267 -16.4370 0.0000 0.0000 37.0776 -13.1296 47.2457 13.3400 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 14.1774 6.5967 -8.5219 21.6087 54.1011 -20.3099 -0.0000 -0.0000 -35.2923 -40.0526 -49.1269 -32.3930 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -73.2513 -2.9880 -5.0898 69.2232 0.0000 0.0000 -25.5705 -2.6510 3.1005 5.0890 0.0000 0.0000 -72.0525 -21.3325 20.7847 72.4185 0.0000 0.0000 -30.2945 -1.3064 -21.8732 -0.5297 0.0000 -0.0000 - -3.2417 -49.1038 20.5084 -29.6413 -1.1455 173.1676 27.5252 -1.8687 0.4608 8.5267 -0.6771 0.0558 16.0878 1.4523 3.1876 -3.8908 1.0668 0.5477 -33.9553 2.9840 0.6428 -11.7500 -2.1778 -3.2529 12.3481 -10.7574 11.2599 -12.3233 -52.3168 -15.3034 0.0000 0.0000 34.7932 -14.1646 47.1226 12.1865 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 13.8849 7.4051 -9.2825 18.7220 51.4803 -20.1773 -0.0000 -0.0000 -32.7524 -40.9599 -49.1432 -32.7785 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -73.8596 -2.8441 -5.2990 70.6809 0.0000 0.0000 -26.5595 -2.4060 3.3899 5.0537 0.0000 0.0000 -72.5078 -21.9070 20.9889 73.8736 0.0000 0.0000 -31.1380 -0.9564 -22.2443 -0.9477 0.0000 -0.0000 - -3.2406 -49.0089 20.3605 -29.6778 -1.1376 173.0545 27.8264 -1.7512 0.4741 8.7827 -0.6546 0.0673 16.0563 1.3873 3.2860 -4.1540 1.0078 0.6153 -34.4879 3.0923 0.5908 -11.8326 -2.0754 -3.2193 11.8285 -11.7930 12.1657 -14.1280 -49.0520 -13.5054 0.0000 0.0000 32.6085 -14.9425 47.1009 11.0447 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 13.5869 8.1254 -10.1013 16.1562 48.7550 -20.3849 -0.0000 -0.0000 -30.0257 -41.6338 -48.9884 -32.7902 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -74.3462 -2.7612 -5.5048 72.0643 0.0000 0.0000 -27.5189 -2.1498 3.6435 4.9794 0.0000 0.0000 -72.8704 -22.5066 21.1436 75.2913 0.0000 0.0000 -31.9686 -0.6014 -22.5716 -1.4113 0.0000 -0.0000 - -3.2398 -48.9070 20.2175 -29.6784 -1.1766 172.9103 28.1500 -1.6537 0.5005 9.0371 -0.6379 0.0789 15.9595 1.3033 3.3939 -4.4207 0.9436 0.6814 -35.0296 3.2297 0.5718 -11.8815 -1.9679 -3.1764 11.4487 -12.6681 13.0111 -15.7549 -45.8394 -11.2406 0.0000 0.0000 30.6418 -15.4588 47.2197 9.9886 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 13.2897 8.7268 -10.9973 13.8041 45.9709 -20.7873 -0.0000 -0.0000 -27.2180 -42.0586 -48.6363 -32.4472 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -74.7248 -2.7277 -5.7251 73.3690 0.0000 0.0000 -28.4312 -1.8969 3.8784 4.8810 0.0000 0.0000 -73.1583 -23.1310 21.2410 76.6665 0.0000 0.0000 -32.7830 -0.2526 -22.8564 -1.8832 0.0000 -0.0000 - -3.2403 -48.7991 20.0801 -29.6530 -1.2489 172.7348 28.4889 -1.5787 0.5386 9.2764 -0.6229 0.0953 15.8044 1.2028 3.5039 -4.6864 0.8826 0.7413 -35.5742 3.3885 0.5939 -11.9011 -1.8551 -3.1371 11.1696 -13.3182 13.8109 -17.3153 -42.7762 -8.6973 0.0000 0.0000 29.0142 -15.7339 47.5122 9.0949 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 12.9800 9.1740 -11.9897 11.5462 43.1952 -21.2154 -0.0000 -0.0000 -24.4603 -42.2287 -48.0825 -31.8057 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -75.0128 -2.7186 -5.9637 74.5983 0.0000 0.0000 -29.2859 -1.6655 4.1212 4.7796 0.0000 0.0000 -73.3785 -23.7709 21.2949 77.9913 0.0000 0.0000 -33.5812 0.0812 -23.1038 -2.3258 0.0000 -0.0000 - -3.2431 -48.6863 19.9484 -29.6276 -1.3381 172.5270 28.8144 -1.5242 0.5846 9.4951 -0.6171 0.1105 15.5934 1.1006 3.6186 -4.9455 0.8344 0.7926 -36.1139 3.5594 0.6510 -11.8962 -1.7408 -3.1021 10.9431 -13.6839 14.5656 -18.8615 -39.9557 -6.0043 0.0000 0.0000 27.8158 -15.8213 47.9962 8.4523 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 12.6501 9.4446 -13.0756 9.2827 40.4719 -21.5509 -0.0000 -0.0000 -21.8845 -42.1842 -47.3721 -30.9670 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -75.2469 -2.7078 -6.2246 75.7583 0.0000 0.0000 -30.0767 -1.4738 4.4021 4.6984 0.0000 0.0000 -73.5562 -24.4191 21.3214 79.2604 0.0000 0.0000 -34.3645 0.3953 -23.3226 -2.7069 0.0000 -0.0000 - -3.2484 -48.5692 19.8225 -29.6081 -1.4507 172.2829 29.1205 -1.5027 0.6472 9.6864 -0.6207 0.1252 15.3324 1.0048 3.7349 -5.1946 0.8045 0.8330 -36.6378 3.7307 0.7461 -11.8713 -1.6261 -3.0801 10.7135 -13.7277 15.2762 -20.4038 -37.4399 -3.2592 0.0000 0.0000 27.1101 -15.7923 48.6614 8.1376 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 12.2851 9.5191 -14.2359 6.9302 37.8471 -21.7162 -0.0000 -0.0000 -19.6060 -41.9897 -46.5846 -30.0630 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -75.4336 -2.6838 -6.5294 76.8510 0.0000 0.0000 -30.8084 -1.3321 4.7475 4.6602 0.0000 0.0000 -73.7023 -25.0873 21.3196 80.4780 0.0000 0.0000 -35.1399 0.6942 -23.5318 -3.0019 0.0000 -0.0000 - -3.2569 -48.4482 19.7022 -29.6116 -1.5681 172.0029 29.3826 -1.5074 0.7169 9.8471 -0.6364 0.1382 15.0293 0.9260 3.8569 -5.4316 0.7997 0.8596 -37.1357 3.8913 0.8707 -11.8291 -1.5118 -3.0693 10.4253 -13.4355 15.9378 -21.9311 -35.2605 -0.5266 0.0000 0.0000 26.9178 -15.7202 49.4495 8.2106 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 11.8697 9.3933 -15.4429 4.4263 35.3462 -21.6762 -0.0000 -0.0000 -17.7190 -41.7327 -45.8315 -29.2332 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -75.5988 -2.6197 -6.8798 77.8869 0.0000 0.0000 -31.4924 -1.2498 5.1881 4.6814 0.0000 0.0000 -73.8284 -25.7697 21.3145 81.6428 0.0000 0.0000 -35.9153 0.9809 -23.7457 -3.1953 0.0000 -0.0000 - -3.2683 -48.3227 19.5872 -29.6247 -1.6951 171.6851 29.6116 -1.5426 0.7975 9.9733 -0.6638 0.1504 14.6906 0.8706 3.9842 -5.6543 0.8222 0.8713 -37.5984 4.0309 1.0213 -11.7704 -1.3986 -3.0697 10.0351 -12.8231 16.5506 -23.4253 -33.4089 2.1598 0.0000 0.0000 27.2189 -15.6518 50.2638 8.6784 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 11.3899 9.0727 -16.6570 1.7341 32.9817 -21.4450 -0.0000 -0.0000 -16.2841 -41.5058 -45.2295 -28.6024 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -75.7252 -2.5061 -7.2921 78.8718 0.0000 0.0000 -32.1496 -1.2261 5.7454 4.7714 0.0000 0.0000 -73.9179 -26.4780 21.3154 82.7617 0.0000 0.0000 -36.7039 1.2642 -23.9840 -3.2833 0.0000 -0.0000 - -3.2827 -48.1925 19.4771 -29.6631 -1.8244 171.3325 29.7800 -1.6070 0.8833 10.0680 -0.7013 0.1606 14.3275 0.8433 4.1178 -5.8625 0.8704 0.8690 -38.0224 4.1434 1.1940 -11.6934 -1.2864 -3.0776 9.5155 -11.9278 17.1197 -24.8770 -31.8484 4.7926 0.0000 0.0000 27.9530 -15.5847 50.9840 9.4792 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.8324 8.5848 -17.8410 -1.1653 30.7429 -21.0591 -0.0000 -0.0000 -15.3422 -41.3921 -44.8812 -28.2570 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -75.8279 -2.3286 -7.7743 79.8125 0.0000 0.0000 -32.7999 -1.2561 6.4356 4.9269 0.0000 0.0000 -73.9827 -27.2120 21.3377 83.8386 0.0000 0.0000 -37.5141 1.5485 -24.2578 -3.2735 0.0000 -0.0000 - -3.2993 -48.0555 19.3717 -29.6771 -1.9586 170.9499 29.9311 -1.6908 0.9680 10.1311 -0.7474 0.1689 13.9503 0.8407 4.2624 -6.0556 0.9392 0.8576 -38.4073 4.2311 1.3848 -11.5928 -1.1742 -3.0890 8.8441 -10.7931 17.6459 -26.2902 -30.5414 7.3755 0.0000 0.0000 29.0355 -15.4425 51.4976 10.4623 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 10.1882 7.9581 -18.9665 -4.2806 28.6244 -20.5760 -0.0000 -0.0000 -14.9081 -41.4528 -44.8447 -28.2454 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -75.8455 -2.0805 -8.3297 80.7157 0.0000 0.0000 -33.4730 -1.3303 7.2647 5.1339 0.0000 0.0000 -73.9561 -27.9767 21.4026 84.8785 0.0000 0.0000 -38.3610 1.8401 -24.5785 -3.1849 0.0000 -0.0000 - -3.3173 -47.9124 19.2704 -29.7366 -2.0974 170.5462 29.9802 -1.8095 1.0564 10.1730 -0.8007 0.1730 13.5693 0.8700 4.4121 -6.2331 1.0241 0.8339 -38.7619 4.2859 1.5822 -11.4662 -1.0637 -3.0854 8.0256 -9.5141 18.1642 -27.6649 -29.3945 9.9274 0.0000 0.0000 30.3793 -15.1087 51.7505 11.3984 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 9.4600 7.2359 -20.0069 -7.6162 26.5991 -20.0584 -0.0000 -0.0000 -14.9893 -41.7107 -45.1313 -28.5557 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -75.8423 -1.7604 -8.9721 81.5776 0.0000 0.0000 -34.1765 -1.4357 8.2242 5.3657 0.0000 0.0000 -73.9177 -28.7665 21.5013 85.8834 0.0000 0.0000 -39.2380 2.1335 -24.9405 -3.0483 0.0000 -0.0000 - -3.3358 -47.7593 19.1735 -29.7540 -2.2384 170.1330 30.0107 -1.9407 1.1344 10.1922 -0.8560 0.1764 13.1961 0.9184 4.5672 -6.3947 1.1169 0.8057 -39.0955 4.3131 1.7906 -11.3067 -0.9483 -3.0671 7.0557 -8.1413 18.6822 -29.0239 -28.3823 12.4585 0.0000 0.0000 31.8951 -14.4636 51.7365 12.0855 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 8.6424 6.4365 -20.9523 -11.1764 24.6929 -19.5656 -0.0000 -0.0000 -15.5757 -42.1446 -45.6922 -29.1417 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -75.7125 -1.3654 -9.6829 82.4027 0.0000 0.0000 -34.9358 -1.5626 9.2996 5.5885 0.0000 0.0000 -73.7462 -29.5753 21.6686 86.8508 0.0000 0.0000 -40.1540 2.4289 -25.3417 -2.8983 0.0000 -0.0000 - -3.3542 -47.5950 19.0815 -29.7449 -2.3691 169.7267 29.9964 -2.0734 1.1946 10.1921 -0.9144 0.1739 12.8450 0.9835 4.7256 -6.5415 1.2083 0.7725 -39.4241 4.3129 2.0098 -11.1123 -0.8257 -3.0236 5.9484 -6.7425 19.2286 -30.3922 -27.4650 14.9709 0.0000 0.0000 33.5196 -13.4408 51.5114 12.3762 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 7.7415 5.5853 -21.7953 -14.9556 22.9229 -19.1555 -0.0000 -0.0000 -16.6520 -42.6832 -46.4444 -29.8960 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -75.4627 -0.8927 -10.4445 83.1872 0.0000 0.0000 -35.7518 -1.7036 10.4650 5.7649 0.0000 0.0000 -73.4426 -30.3813 21.9196 87.7715 0.0000 0.0000 -41.0968 2.7145 -25.7644 -2.7714 0.0000 -0.0000 - -3.3709 -47.4178 18.9951 -29.7132 -2.4975 169.3409 29.9306 -2.2135 1.2385 10.1743 -0.9666 0.1736 12.5277 1.0508 4.8743 -6.6744 1.2936 0.7389 -39.7640 4.2833 2.2383 -10.8845 -0.6913 -2.9455 4.7094 -5.3755 19.8208 -31.7953 -26.6407 17.4505 0.0000 0.0000 35.2175 -12.0289 51.1488 12.2271 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.7619 4.6888 -22.5388 -18.9330 21.3307 -18.8703 -0.0000 -0.0000 -18.1981 -43.2173 -47.2899 -30.6718 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -75.0798 -0.3573 -11.2496 83.9180 0.0000 0.0000 -36.6170 -1.8523 11.6838 5.8597 0.0000 0.0000 -73.0049 -31.1756 22.2460 88.6382 0.0000 0.0000 -42.0480 2.9813 -26.1917 -2.6998 0.0000 -0.0000 - -3.3850 -47.2258 18.9160 -29.6585 -2.6189 168.9913 29.8164 -2.3536 1.2666 10.1396 -1.0195 0.1667 12.2431 1.1199 5.0159 -6.7917 1.3711 0.7058 -40.1280 4.2253 2.4692 -10.6294 -0.5433 -2.8241 3.3413 -4.0759 20.4689 -33.2629 -25.9470 19.8492 0.0000 0.0000 36.9996 -10.2466 50.7189 11.6568 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.7337 3.7407 -23.1874 -23.0609 19.9523 -18.7702 -0.0000 -0.0000 -20.1613 -43.6434 -48.1311 -31.3128 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -74.5522 0.2312 -12.0749 84.5827 0.0000 0.0000 -37.5155 -2.0061 12.9174 5.8487 0.0000 0.0000 -72.4198 -31.9376 22.6505 89.4362 0.0000 0.0000 -42.9846 3.2165 -26.6034 -2.7013 0.0000 -0.0000 - -3.3954 -47.0174 18.8459 -29.5918 -2.7362 168.6904 29.6501 -2.4953 1.2844 10.0849 -1.0714 0.1547 11.9937 1.1813 5.1426 -6.8949 1.4413 0.6753 -40.5250 4.1347 2.7029 -10.3598 -0.3768 -2.6583 1.8488 -2.8628 21.1726 -34.8123 -25.4472 22.1225 -0.0000 0.0000 38.8909 -8.1362 50.2611 10.7437 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 4.6786 2.7277 -23.7445 -27.2672 18.8320 -18.8863 -0.0000 -0.0000 -22.4860 -43.8831 -48.8906 -31.6839 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -73.8801 0.8546 -12.9032 85.1630 0.0000 0.0000 -38.4222 -2.1646 14.1268 5.7216 0.0000 0.0000 -71.6948 -32.6538 23.1200 90.1510 0.0000 0.0000 -43.8783 3.4106 -26.9832 -2.7816 0.0000 -0.0000 - -3.4013 -46.7911 18.7871 -29.5307 -2.8453 168.4492 29.4191 -2.6370 1.2952 10.0085 -1.1185 0.1409 11.7828 1.2252 5.2455 -6.9893 1.4983 0.6442 -40.9590 4.0156 2.9523 -10.0922 -0.1947 -2.4563 0.2529 -1.7373 21.9213 -36.4451 -25.2024 24.2476 -0.0000 0.0000 40.9164 -5.7531 49.7829 9.5858 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 3.6210 1.6411 -24.2039 -31.4592 18.0031 -19.2366 -0.0000 -0.0000 -25.1034 -43.9090 -49.5091 -31.7004 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -73.0764 1.4987 -13.7127 85.6418 0.0000 0.0000 -39.3072 -2.3304 15.2790 5.4847 0.0000 0.0000 -70.8450 -33.3072 23.6443 90.7651 0.0000 0.0000 -44.6988 3.5568 -27.3193 -2.9308 0.0000 -0.0000 - -3.4023 -46.5457 18.7420 -29.4948 -2.9415 168.2751 29.1175 -2.7779 1.3025 9.9081 -1.1649 0.1225 11.5978 1.2507 5.3259 -7.0778 1.5460 0.6115 -41.4254 3.8676 3.2153 -9.8464 0.0037 -2.2226 -1.4337 -0.6968 22.6881 -38.1369 -25.2718 26.2022 -0.0000 0.0000 43.1009 -3.1535 49.2450 8.2789 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.5962 0.4765 -24.5636 -35.5323 17.4617 -19.8285 -0.0000 -0.0000 -27.9406 -43.7773 -49.9573 -31.3534 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -72.1609 2.1484 -14.4827 86.0028 0.0000 0.0000 -40.1391 -2.5071 16.3479 5.1595 0.0000 0.0000 -69.8913 -33.8846 24.2110 91.2619 0.0000 0.0000 -45.4169 3.6543 -27.6082 -3.1259 0.0000 -0.0000 - -3.3983 -46.2802 18.7130 -29.5032 -3.0231 168.1709 28.7420 -2.9198 1.3103 9.7805 -1.2096 0.1024 11.4245 1.2517 5.3831 -7.1649 1.5872 0.5763 -41.9132 3.6974 3.4939 -9.6427 0.2113 -1.9675 -3.1836 0.2632 23.4370 -39.8361 -25.6720 28.0040 -0.0000 0.0000 45.4339 -0.4170 48.5878 6.9211 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.6308 -0.7598 -24.8213 -39.3855 17.1813 -20.6438 -0.0000 -0.0000 -30.9352 -43.6009 -50.2282 -30.6998 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -71.1562 2.7879 -15.1979 86.2317 0.0000 0.0000 -40.8896 -2.6983 17.3161 4.7789 0.0000 0.0000 -68.8586 -34.3803 24.8047 91.6280 0.0000 0.0000 -46.0071 3.7108 -27.8557 -3.3366 0.0000 -0.0000 - -3.3882 -45.9928 18.7023 -29.5520 -3.1143 168.1322 28.3172 -3.0778 1.3386 9.6269 -1.2599 0.0820 11.2414 1.2318 5.4202 -7.2561 1.6253 0.5332 -42.4051 3.5097 3.7892 -9.4989 0.4211 -1.7049 -4.9667 1.1474 24.1302 -41.4726 -26.3781 29.6890 -0.0000 0.0000 47.8718 2.3635 47.7496 5.5966 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.7461 -2.0559 -24.9680 -42.9339 17.1157 -21.6566 -0.0000 -0.0000 -34.0326 -43.5179 -50.3354 -29.8397 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -70.0506 3.3850 -15.8651 86.3113 0.0000 0.0000 -41.5399 -2.9035 18.1733 4.3807 0.0000 0.0000 -67.7567 -34.8150 25.3907 91.8587 0.0000 0.0000 -46.4512 3.7493 -28.0821 -3.5306 0.0000 -0.0000 - -3.3740 -45.6837 18.7115 -29.6841 -3.1670 168.1621 27.8055 -3.2232 1.3535 9.4477 -1.3070 0.0623 11.0259 1.1838 5.4433 -7.3573 1.6530 0.4930 -42.8823 3.3251 4.1035 -9.4288 0.6255 -1.4485 -6.7337 1.9674 24.7191 -42.9701 -27.3165 31.3407 -0.0000 0.0001 50.3159 5.0995 46.7011 4.3725 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0487 -3.3610 -25.0113 -46.0985 17.1727 -22.8324 -0.0000 -0.0000 -37.1983 -43.6664 -50.3157 -28.8759 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -68.9191 3.9604 -16.4416 86.2484 0.0000 0.0000 -42.0720 -3.1305 18.9262 3.9996 0.0000 0.0000 -66.6177 -35.1528 26.0033 91.9355 0.0000 0.0000 -46.7351 3.7827 -28.2989 -3.6769 0.0000 -0.0000 - -3.3565 -45.3522 18.7420 -29.9105 -3.1785 168.2570 27.2026 -3.3669 1.3587 9.2559 -1.3486 0.0420 10.7507 1.1144 5.4635 -7.4745 1.6895 0.4327 -43.3233 3.1272 4.4297 -9.4389 0.8204 -1.2081 -8.4246 2.6833 25.1800 -44.2471 -28.3366 33.0705 -0.0000 0.0001 52.6393 7.7032 45.4542 3.2825 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7411 -4.6735 -24.9171 -48.8546 17.3042 -24.1452 -0.0000 -0.0000 -40.3880 -44.1230 -50.2137 -27.9009 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -67.7818 4.5100 -16.9243 86.0425 0.0000 0.0000 -42.4818 -3.3805 19.5843 3.6590 0.0000 0.0000 -65.4563 -35.3934 26.6388 91.8531 0.0000 0.0000 -46.8555 3.8383 -28.5288 -3.7556 0.0000 -0.0000 - -3.3323 -44.9947 18.7950 -30.1407 -3.2372 168.3948 26.6298 -3.5396 1.3935 9.0546 -1.4028 0.0249 10.3844 1.0345 5.4839 -7.6106 1.7194 0.3684 -43.7003 2.9350 4.7562 -9.5291 1.0013 -0.9919 -10.0185 3.3239 25.4763 -45.2528 -29.3533 34.9164 -0.0000 0.0001 54.7328 10.1609 44.0493 2.3140 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.3423 -5.9423 -24.7028 -51.1751 17.4112 -25.5524 -0.0000 -0.0000 -43.5682 -44.9129 -50.0863 -26.9601 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -66.5048 4.9611 -17.3709 85.6699 0.0000 0.0000 -42.7844 -3.6412 20.1503 3.3697 0.0000 0.0000 -64.1950 -35.6228 27.2375 91.6270 0.0000 0.0000 -46.8231 3.9718 -28.8186 -3.7614 0.0000 -0.0000 - -3.3061 -44.6129 18.8703 -30.4475 -3.2441 168.5813 25.9897 -3.6845 1.3909 8.8571 -1.4514 0.0071 9.9085 0.9373 5.5176 -7.7675 1.7408 0.2997 -43.9968 2.7547 5.0834 -9.6924 1.1619 -0.8082 -11.4537 3.8903 25.5978 -45.9719 -30.2111 36.9516 -0.0000 0.0001 56.4683 12.4494 42.5825 1.4493 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.8525 -7.1307 -24.3558 -53.0813 17.4220 -27.0220 -0.0000 -0.0000 -46.6953 -45.9914 -49.9838 -26.0698 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -65.2185 5.3813 -17.7141 85.1595 0.0000 0.0000 -42.9759 -3.9223 20.6501 3.1159 0.0000 0.0000 -62.8721 -35.7583 27.8906 91.2306 0.0000 0.0000 -46.6422 4.1841 -29.1653 -3.7100 0.0000 -0.0000 - -3.2752 -44.2033 18.9681 -30.7324 -3.2775 168.7975 25.3939 -3.8405 1.3896 8.6729 -1.5021 -0.0075 9.3030 0.8349 5.5636 -7.9463 1.7583 0.2254 -44.1860 2.5691 5.3762 -9.9159 1.3133 -0.6464 -12.6914 4.3571 25.5428 -46.4086 -30.7544 39.1985 -0.0000 0.0001 57.7538 14.5687 41.1481 0.6474 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -2.2840 -8.2381 -23.8827 -54.6227 17.2931 -28.5008 -0.0000 -0.0000 -49.7121 -47.2529 -49.9430 -25.2268 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -63.7783 5.7117 -18.0096 84.4883 0.0000 0.0000 -43.0728 -4.2135 21.0901 2.8626 0.0000 0.0000 -61.3879 -35.8693 28.5582 90.6726 0.0000 0.0000 -46.3305 4.5154 -29.5994 -3.6414 0.0000 -0.0000 - -3.2402 -43.7647 19.0880 -30.9732 -3.3333 169.0358 24.8501 -3.9981 1.3770 8.5103 -1.5493 -0.0200 8.5626 0.7268 5.6225 -8.1437 1.7654 0.1505 -44.2495 2.3756 5.6219 -10.1818 1.4590 -0.5046 -13.6957 4.7361 25.3299 -46.6269 -30.8567 41.6140 -0.0000 0.0001 58.5390 16.5164 39.8429 -0.1190 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.6479 -9.2600 -23.2952 -55.8704 16.9890 -29.9227 -0.0000 -0.0000 -52.5604 -48.5521 -49.9828 -24.4070 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -62.1591 5.9525 -18.2579 83.6502 0.0000 0.0000 -43.0724 -4.5132 21.4818 2.5507 0.0000 0.0000 -59.6998 -35.9493 29.2637 89.9395 0.0000 0.0000 -45.8947 4.9717 -30.1212 -3.6223 0.0000 -0.0000 - -3.2022 -43.2960 19.2295 -31.1454 -3.3969 169.2899 24.3587 -4.1423 1.3408 8.3734 -1.5894 -0.0316 7.6966 0.6148 5.6919 -8.3545 1.7626 0.0783 -44.1711 2.1625 5.7919 -10.4693 1.6074 -0.3681 -14.4508 5.0322 24.9929 -46.7146 -30.4143 44.0957 -0.0000 0.0001 58.8265 18.2980 38.7314 -0.8785 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.9563 -10.2168 -22.6170 -56.9116 16.5019 -31.2056 -0.0000 -0.0000 -55.1785 -49.7290 -50.1011 -23.5906 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -60.3359 6.1128 -18.4510 82.6355 0.0000 0.0000 -42.9581 -4.8222 21.8332 2.1049 0.0000 0.0000 -57.7576 -35.9764 30.0384 89.0094 0.0000 0.0000 -45.3322 5.5432 -30.7170 -3.7391 0.0000 -0.0000 - -3.1600 -42.7952 19.3921 -31.2004 -3.5008 169.5496 23.9486 -4.2885 1.2952 8.2589 -1.6163 -0.0399 6.7302 0.4918 5.7589 -8.5702 1.7444 0.0168 -43.9371 1.9251 5.8745 -10.7558 1.7669 -0.2351 -14.9653 5.2798 24.5753 -46.7778 -29.3949 46.4793 -0.0000 0.0001 58.6772 19.9303 37.8429 -1.6518 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2181 -11.1375 -21.8831 -57.8336 15.8386 -32.2571 -0.0000 -0.0000 -57.5085 -50.6272 -50.2812 -22.7611 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -58.2329 6.1631 -18.6129 81.4107 0.0000 0.0000 -42.6975 -5.1352 22.1414 1.4456 0.0000 0.0000 -55.5071 -35.9672 30.8669 87.8641 0.0000 0.0000 -44.6266 6.2151 -31.3714 -4.0870 0.0000 -0.0000 - -3.1170 -42.2618 19.5756 -31.1457 -3.5708 169.8167 23.5660 -4.3829 1.2042 8.1602 -1.6295 -0.0513 5.7007 0.3673 5.8179 -8.7778 1.7029 -0.0299 -43.5454 1.6623 5.8522 -11.0178 1.9432 -0.0934 -15.2593 5.5160 24.1230 -46.9062 -27.8220 48.5971 -0.0000 0.0001 58.1953 21.4398 37.1737 -2.4613 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.4577 -12.0683 -21.1350 -58.7081 15.0470 -32.9601 -0.0000 -0.0000 -59.5191 -51.0903 -50.5027 -21.9017 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -55.8863 6.1647 -18.6906 79.9679 0.0000 0.0000 -42.2318 -5.4625 22.4148 0.4971 0.0000 0.0000 -52.9213 -35.8303 31.8137 86.4535 0.0000 0.0000 -43.7444 6.9345 -32.0390 -4.7531 0.0000 -0.0000 - -3.0726 -41.6947 19.7804 -30.9647 -3.6229 170.0842 23.1959 -4.4405 1.0879 8.0689 -1.6269 -0.0610 4.6594 0.2405 5.8494 -8.9669 1.6395 -0.0565 -42.9973 1.3781 5.7153 -11.2297 2.1347 0.0543 -15.4156 5.8017 23.6538 -47.1207 -25.8850 50.2584 -0.0000 0.0001 57.5431 22.8929 36.6620 -3.3173 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.6786 -13.0526 -20.4208 -59.5869 14.1682 -33.2364 -0.0000 -0.0001 -61.1700 -50.9992 -50.7505 -21.0138 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -53.2651 6.1018 -18.6937 78.2642 0.0000 0.0000 -41.4876 -5.7968 22.6443 -0.7930 0.0000 -0.0000 -49.9997 -35.5555 32.8445 84.7455 0.0000 0.0000 -42.6340 7.6548 -32.6867 -5.8031 0.0000 -0.0000 - -3.0268 -41.0925 20.0072 -30.6515 -3.6556 170.3482 22.8252 -4.4613 0.9544 7.9489 -1.6001 -0.0730 3.6618 0.0966 5.8425 -9.1197 1.5555 -0.0564 -42.2956 1.0812 5.4725 -11.3737 2.3398 0.1965 -15.4310 6.1401 23.2068 -47.4362 -23.6875 51.4000 -0.0000 0.0001 56.8441 24.3053 36.2847 -4.2284 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.8746 -14.1054 -19.7870 -60.4905 13.2297 -33.0383 -0.0000 -0.0001 -62.4385 -50.2950 -51.0199 -20.1194 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -50.3616 5.9752 -18.6163 76.2585 0.0000 0.0000 -40.3763 -6.1327 22.8247 -2.4469 0.0000 -0.0000 -46.7569 -35.1161 33.9299 82.7010 0.0000 0.0000 -41.2288 8.3198 -33.2824 -7.2682 0.0000 -0.0000 - -2.9802 -40.4550 20.2572 -30.2315 -3.6515 170.6066 22.3811 -4.4383 0.8066 7.8006 -1.5545 -0.0843 2.7716 -0.0592 5.7894 -9.2293 1.4470 -0.0272 -41.4600 0.7986 5.1295 -11.4268 2.5436 0.3218 -15.3592 6.5738 22.7625 -47.8080 -21.5208 51.9731 -0.0000 0.0001 56.2332 25.7299 35.9999 -5.1795 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.0501 -15.2272 -19.2667 -61.4116 12.2885 -32.3526 -0.0000 -0.0001 -63.3120 -48.9581 -51.3191 -19.2533 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -47.2135 5.8000 -18.4417 73.9158 0.0000 0.0000 -38.8013 -6.4620 22.9545 -4.4507 0.0000 -0.0000 -43.2533 -34.4712 35.0327 80.2795 0.0000 0.0000 -39.4520 8.8652 -33.7943 -9.1409 0.0000 -0.0000 - -2.9322 -39.7823 20.5316 -29.7353 -3.6277 170.8572 21.8294 -4.3929 0.6654 7.6031 -1.4969 -0.0959 2.0185 -0.2259 5.6847 -9.2777 1.3180 0.0345 -40.5078 0.5517 4.7074 -11.3704 2.7299 0.4031 -15.2331 7.0899 22.3003 -48.1757 -19.6494 52.0048 -0.0000 0.0001 55.8035 27.1948 35.7914 -6.1557 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.1959 -16.3869 -18.8830 -62.3202 11.3743 -31.2238 -0.0000 -0.0001 -63.7850 -47.0524 -51.6679 -18.4746 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -43.8564 5.5593 -18.1729 71.1960 0.0000 0.0000 -36.6669 -6.7658 23.0269 -6.7521 0.0000 -0.0000 -39.5820 -33.6205 36.0733 77.4576 0.0000 0.0000 -37.2213 9.2337 -34.2036 -11.3774 0.0000 -0.0000 - -2.8833 -39.0747 20.8319 -29.2019 -3.5693 171.1000 21.1210 -4.3207 0.5332 7.3446 -1.4322 -0.1085 1.4332 -0.4025 5.5339 -9.2580 1.1751 0.1264 -39.4586 0.3578 4.2126 -11.1925 2.8834 0.4332 -15.0252 7.6275 21.7908 -48.5212 -18.2449 51.6189 -0.0000 0.0001 55.5659 28.6694 35.6932 -7.1210 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.3067 -17.5219 -18.6412 -63.1702 10.5158 -29.7460 -0.0000 -0.0001 -63.8603 -44.7055 -52.0901 -17.8509 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -40.3538 5.2691 -17.7901 68.0810 0.0000 0.0000 -33.8918 -7.0248 23.0439 -9.2623 0.0000 -0.0000 -35.8363 -32.5386 36.9939 74.2121 0.0000 0.0000 -34.4559 9.3744 -34.4955 -13.9025 0.0000 -0.0000 - -2.8328 -38.3335 21.1591 -28.6722 -3.4972 171.3357 20.2282 -4.2442 0.4255 7.0203 -1.3645 -0.1186 1.0149 -0.5939 5.3420 -9.1627 1.0241 0.2442 -38.3305 0.2357 3.6670 -10.8842 2.9844 0.3925 -14.7289 8.1184 21.2021 -48.8306 -17.4605 50.9440 -0.0000 0.0001 55.5037 30.1500 35.7525 -8.0683 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.3866 -18.5479 -18.5331 -63.9056 9.7402 -28.0429 -0.0000 -0.0001 -63.5576 -42.1035 -52.5982 -17.4513 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -36.7619 4.9093 -17.2922 64.5541 0.0000 0.0000 -30.4137 -7.2096 22.9995 -11.8589 0.0000 -0.0000 -32.1244 -31.2499 37.7080 70.5462 0.0000 0.0000 -31.0820 9.2561 -34.6673 -16.6133 0.0000 -0.0000 - -2.7800 -37.5603 21.5137 -28.1820 -3.4276 171.5658 19.1347 -4.1833 0.3470 6.6271 -1.2966 -0.1234 0.7583 -0.8017 5.1218 -8.9918 0.8765 0.3803 -37.1381 0.1883 3.0880 -10.4448 3.0184 0.2713 -14.3383 8.4735 20.5077 -49.1066 -17.3759 50.1162 -0.0000 0.0001 55.5747 31.6135 36.0131 -8.9978 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4541 -19.3773 -18.5412 -64.4630 9.0735 -26.2520 -0.0000 -0.0001 -62.9117 -39.4336 -53.1937 -17.3133 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -33.1372 4.4646 -16.6685 60.6171 0.0000 0.0000 -26.2006 -7.2910 22.8851 -14.3830 0.0000 -0.0000 -28.5365 -29.7853 38.1420 66.4789 0.0000 0.0000 -27.0443 8.8671 -34.7170 -19.3705 0.0000 -0.0000 - -2.7241 -36.7575 21.8950 -27.7572 -3.3873 171.7940 17.8459 -4.1606 0.2991 6.1721 -1.2387 -0.1272 0.6334 -1.0194 4.8951 -8.7470 0.7336 0.5265 -35.8894 0.2176 2.4980 -9.8812 2.9740 0.0607 -13.8655 8.6227 19.6956 -49.3565 -18.0266 49.2351 -0.0000 0.0001 55.7400 33.0631 36.4977 -9.9444 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.5342 -19.9284 -18.6377 -64.7860 8.5500 -24.4963 -0.0000 -0.0001 -61.9790 -36.8569 -53.8464 -17.4339 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -29.5236 3.9100 -15.9068 56.2852 0.0000 0.0000 -21.2543 -7.2438 22.6833 -16.6410 0.0000 -0.0000 -25.1417 -28.1979 38.2273 62.0523 0.0000 0.0000 -22.3132 8.2220 -34.6422 -21.9851 0.0000 -0.0000 - -2.6654 -35.9286 22.3009 -27.4099 -3.3722 172.0184 16.3805 -4.1659 0.2665 5.6640 -1.1990 -0.1313 0.6101 -1.2502 4.6841 -8.4376 0.6107 0.6762 -34.5864 0.3057 1.9106 -9.2076 2.8476 -0.2323 -13.3595 8.5222 18.7737 -49.5761 -19.4273 48.3298 -0.0000 0.0001 55.9868 34.5217 37.1795 -10.9521 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6523 -20.1472 -18.7927 -64.8226 8.1887 -22.8744 -0.0000 -0.0001 -60.8219 -34.4629 -54.5234 -17.7518 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -25.9671 3.2583 -14.9718 51.6076 0.0000 0.0000 -15.6177 -7.0635 22.3768 -18.4011 0.0000 -0.0000 -21.9726 -26.5116 37.9253 57.3192 0.0000 0.0000 -16.8945 7.3622 -34.4244 -24.2072 0.0000 -0.0000 - -2.6037 -35.0783 22.7276 -27.1544 -3.4016 172.2371 14.7624 -4.2207 0.2377 5.1231 -1.1540 -0.1255 0.6389 -1.5132 4.4899 -8.0705 0.5063 0.8295 -33.2212 0.4424 1.3377 -8.4462 2.6340 -0.5898 -12.9265 8.2013 17.7663 -49.7443 -21.6247 47.3183 -0.0000 0.0001 56.3553 36.0441 37.9558 -12.0722 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.8425 -19.9917 -18.9740 -64.5213 8.0080 -21.4583 -0.0000 -0.0000 -59.4985 -32.2545 -55.1623 -18.1539 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -22.5097 2.5029 -13.8395 46.6485 0.0000 0.0000 -9.3727 -6.7690 21.9399 -19.4079 0.0000 -0.0000 -19.0629 -24.7892 37.1925 52.3693 0.0000 0.0000 -10.8415 6.3682 -34.0424 -25.7145 0.0000 -0.0000 - -2.5410 -34.2129 23.1695 -26.9880 -3.4462 172.4381 13.0305 -4.2784 0.1993 4.5722 -1.1364 -0.1284 0.6686 -1.7836 4.3483 -7.6579 0.4180 0.9705 -31.7801 0.6066 0.8035 -7.6226 2.3351 -1.0010 -12.6807 7.7298 16.7245 -49.8631 -24.6169 46.0371 -0.0000 0.0001 56.9098 37.6662 38.6559 -13.3307 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.1190 -19.4463 -19.1380 -63.8386 8.0006 -20.3096 -0.0000 -0.0000 -58.0370 -30.1765 -55.7032 -18.5032 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -19.2030 1.7067 -12.4787 41.5270 0.0000 0.0000 -2.6529 -6.4176 21.3708 -19.4207 0.0000 -0.0000 -16.4119 -23.0402 36.0202 47.3014 0.0000 0.0000 -4.2603 5.3573 -33.4600 -26.1452 0.0000 -0.0000 - -2.4774 -33.3400 23.6196 -26.8926 -3.5219 172.6098 11.2512 -4.3507 0.1447 4.0276 -1.1292 -0.1310 0.6568 -2.0686 4.2506 -7.2152 0.3390 1.1052 -30.2430 0.7774 0.3137 -6.7667 1.9577 -1.4370 -12.7724 7.2540 15.7129 -49.9688 -28.3935 44.1863 -0.0000 0.0001 57.7548 39.4065 39.0462 -14.7040 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.4935 -18.5349 -19.2492 -62.7427 8.1480 -19.4543 -0.0000 -0.0000 -56.4439 -28.1335 -56.0814 -18.6577 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -16.0802 0.8944 -10.8972 36.3855 0.0000 0.0000 4.3636 -6.0916 20.6771 -18.2848 0.0000 -0.0000 -14.0146 -21.3444 34.4056 42.2750 0.0000 0.0000 2.6702 4.4852 -32.6696 -25.2014 0.0000 -0.0000 - -2.4152 -32.4708 24.0714 -26.8898 -3.5940 172.7273 9.4634 -4.4049 0.0738 3.5034 -1.1258 -0.1364 0.5572 -2.3673 4.2042 -6.7595 0.2650 1.2257 -28.6004 0.9293 -0.1118 -5.9110 1.5163 -1.8786 -13.2827 6.8895 14.8203 -50.1879 -32.7551 41.4772 -0.0000 0.0001 58.9349 41.1840 38.9167 -16.1007 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.9632 -17.2911 -19.2634 -61.2129 8.4112 -18.9246 -0.0000 -0.0000 -54.6998 -26.0215 -56.2437 -18.4930 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -13.2748 0.1539 -9.1358 31.4605 0.0000 0.0000 11.4376 -5.8824 19.9165 -16.0402 0.0000 -0.0000 -11.9292 -19.7385 32.3848 37.4899 0.0000 0.0000 9.7049 3.9187 -31.6758 -22.8148 0.0000 -0.0000 - -2.3549 -31.6169 24.5208 -26.9927 -3.6619 172.7658 7.7191 -4.4359 0.0005 3.0115 -1.1282 -0.1433 0.3473 -2.6736 4.2028 -6.3111 0.1913 1.3312 -26.8708 1.0382 -0.4698 -5.0889 1.0301 -2.2951 -14.2478 6.7015 14.1299 -50.6974 -37.3649 37.6706 -0.0000 0.0001 60.4220 42.8569 38.1432 -17.3758 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -6.5111 -15.7440 -19.1357 -59.2446 8.7222 -18.7791 -0.0000 -0.0000 -52.7656 -23.7765 -56.1506 -17.9381 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.9324 -0.4712 -7.3007 27.0288 0.0000 0.0000 18.2901 -5.8528 19.1759 -12.9767 0.0000 -0.0000 -10.2357 -18.3179 30.0551 33.2109 0.0000 0.0000 16.5394 3.7988 -30.5597 -19.3144 0.0000 -0.0000 - -2.2954 -30.7894 24.9676 -27.2108 -3.7507 172.7072 6.0691 -4.4567 -0.0607 2.5658 -1.1420 -0.1515 0.0291 -2.9884 4.2370 -5.8896 0.1190 1.4181 -25.1090 1.0716 -0.7526 -4.3396 0.5305 -2.6603 -15.5235 6.5494 13.6884 -51.6163 -41.6397 32.9271 -0.0000 0.0001 62.0016 44.2349 36.7999 -18.3980 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.1058 -13.8969 -18.8125 -56.8451 8.9825 -19.1131 -0.0000 -0.0000 -50.6072 -21.3790 -55.7877 -16.9720 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.2025 -0.9890 -5.5528 23.3677 0.0000 0.0000 24.6445 -6.0151 18.5556 -9.5789 0.0000 -0.0000 -9.0418 -17.2119 27.6140 29.7333 0.0000 0.0000 22.8584 4.1808 -29.4920 -15.3780 0.0000 -0.0000 - -2.2356 -29.9933 25.4149 -27.4590 -3.8710 172.5492 4.6267 -4.4540 -0.1025 2.1877 -1.1737 -0.1613 -0.3756 -3.3224 4.2944 -5.5041 0.0590 1.4801 -23.3935 0.9970 -0.9592 -3.7077 0.0554 -2.9465 -16.8181 6.1456 13.4455 -52.7726 -44.9945 27.9481 -0.0000 0.0001 63.3492 45.2000 35.1301 -19.1384 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.7130 -11.7264 -18.2423 -54.0329 9.0703 -20.0374 -0.0000 -0.0000 -48.2062 -18.8829 -55.1600 -15.6523 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -8.1063 -1.4045 -4.0853 20.6908 0.0000 0.0000 30.2686 -6.3231 18.1569 -6.3492 0.0000 -0.0000 -8.3399 -16.4847 25.3626 27.2675 0.0000 0.0000 28.4203 5.0002 -28.6878 -11.7292 0.0000 -0.0000 - -2.1746 -29.2300 25.8658 -27.6272 -4.0421 172.3061 3.4997 -4.4160 -0.1259 1.9063 -1.2282 -0.1733 -0.8283 -3.6965 4.3594 -5.1567 0.0226 1.5145 -21.8020 0.7950 -1.0807 -3.2363 -0.3572 -3.1453 -17.9071 5.2755 13.2811 -53.6579 -47.1877 23.6411 -0.0000 0.0001 64.2181 45.7471 33.4066 -19.6240 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -8.3145 -9.2192 -17.3988 -50.8460 8.8550 -21.6042 -0.0000 -0.0000 -45.5699 -16.3885 -54.2785 -14.0823 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -7.5874 -1.7461 -3.0754 19.1066 0.0000 0.0000 35.0178 -6.6938 18.0307 -3.6220 0.0000 -0.0000 -8.0803 -16.1704 23.6134 25.9356 0.0000 0.0000 33.0963 6.0963 -28.3296 -8.8292 0.0000 -0.0000 - -2.1127 -28.5072 26.3223 -27.7712 -4.2547 171.9878 2.6273 -4.3286 -0.1359 1.7434 -1.3059 -0.1895 -1.2908 -4.1350 4.4192 -4.8466 0.0262 1.5229 -20.3991 0.4548 -1.1194 -2.9602 -0.6715 -3.2489 -18.6524 3.8428 13.0815 -53.6999 -48.2448 20.8074 -0.0000 0.0001 64.4690 45.9257 31.8665 -19.9071 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.9075 -6.4056 -16.2923 -47.3598 8.2183 -23.7618 -0.0000 -0.0000 -42.7365 -14.0522 -53.1582 -12.4208 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.7713 -2.0356 -2.6169 18.7033 0.0000 0.0000 38.8133 -7.0524 18.1468 -1.5219 0.0000 -0.0000 -8.4031 -16.2778 22.5670 25.8236 0.0000 0.0000 36.8586 7.2834 -28.4786 -6.8080 0.0000 -0.0000 - -2.0508 -27.8282 26.7802 -27.8426 -4.5062 171.6159 2.0501 -4.1857 -0.1382 1.7110 -1.3862 -0.2079 -1.7391 -4.6610 4.4587 -4.5727 0.0693 1.5159 -19.2021 0.0021 -1.0767 -2.8836 -0.8697 -3.2697 -19.1351 2.0403 12.8389 -52.6831 -48.4215 19.4820 -0.0000 0.0001 64.1521 45.7966 30.6217 -19.9991 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -9.5025 -3.4169 -14.9984 -43.6964 7.1170 -26.2737 -0.0000 -0.0000 -39.7889 -12.0280 -51.8091 -10.8217 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.6128 -2.2700 -2.7174 19.4664 0.0000 0.0000 41.6271 -7.3415 18.4211 -0.0127 0.0000 -0.0000 -9.2766 -16.7916 22.2797 26.9118 0.0000 0.0000 39.7461 8.4142 -29.0824 -5.5732 0.0000 -0.0000 - -1.9909 -27.1983 27.2308 -27.8429 -4.7772 171.2085 1.7757 -3.9959 -0.1329 1.7929 -1.4643 -0.2217 -2.1569 -5.2406 4.4717 -4.3473 0.1608 1.4952 -18.1793 -0.5605 -0.9706 -2.9911 -0.9383 -3.2208 -19.3136 0.0015 12.5823 -50.6487 -47.8159 19.6082 -0.0000 0.0001 63.2601 45.3848 29.7806 -19.9438 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -10.0939 -0.5073 -13.6339 -40.0212 5.6613 -28.7835 -0.0000 -0.0000 -36.8495 -10.3887 -50.2712 -9.4000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -10.1016 -2.4211 -3.2742 21.3357 0.0000 0.0000 43.4579 -7.5458 18.7239 1.0187 0.0000 0.0000 -10.6981 -17.6756 22.6059 29.1254 0.0000 0.0000 41.8115 9.4313 -29.9700 -4.9327 0.0000 -0.0000 - -1.9363 -26.6236 27.6630 -27.8425 -5.0207 170.7753 1.7323 -3.7867 -0.1083 1.9744 -1.5066 -0.2369 -2.5372 -5.8184 4.4607 -4.1851 0.2833 1.4668 -17.2823 -1.1840 -0.8212 -3.2400 -0.8991 -3.1239 -19.2731 -2.0015 12.3925 -47.9055 -46.6136 20.6372 -0.0000 0.0001 61.8931 44.7295 29.3452 -19.7455 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -10.6451 2.0665 -12.3382 -36.4821 4.0619 -30.9408 -0.0000 -0.0000 -34.0516 -9.1296 -48.6203 -8.2061 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -12.2778 -2.4421 -4.0881 24.1914 0.0000 0.0000 44.3361 -7.6936 18.9123 1.7036 0.0000 0.0000 -12.7144 -18.8506 23.2531 32.3217 0.0000 0.0000 43.1065 10.3621 -30.9141 -4.6815 0.0000 -0.0000 - -1.8902 -26.1026 28.0657 -27.8469 -5.1807 170.3398 1.8867 -3.5845 -0.0711 2.2107 -1.5289 -0.2448 -2.8384 -6.2341 4.4194 -4.0985 0.3945 1.4403 -16.4663 -1.8217 -0.6567 -3.5716 -0.7942 -3.0023 -19.0674 -3.7603 12.3202 -44.7713 -45.0001 22.0704 -0.0000 0.0001 60.1418 43.8889 29.2859 -19.4150 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -11.0618 4.1031 -11.2310 -33.1893 2.5512 -32.5413 -0.0000 -0.0000 -31.4790 -8.2043 -46.9607 -7.2423 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -15.0389 -2.2841 -4.9274 27.7764 0.0000 0.0000 44.3546 -7.8277 18.8768 2.1492 0.0000 0.0000 -15.2486 -20.1717 23.9113 36.2330 0.0000 0.0000 43.7076 11.2605 -31.7224 -4.6467 0.0000 -0.0000 - -1.8550 -25.6250 28.4323 -27.7724 -5.2116 169.9349 2.2482 -3.4099 -0.0276 2.4779 -1.5361 -0.2447 -3.0092 -6.3510 4.3456 -4.0896 0.4592 1.4214 -15.7008 -2.4260 -0.5081 -3.9338 -0.6774 -2.8768 -18.6810 -5.2002 12.3756 -41.4441 -43.0925 23.6665 -0.0000 0.0001 58.0645 42.9151 29.5614 -18.9943 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.2530 5.5162 -10.4003 -30.1884 1.3189 -33.5260 -0.0000 -0.0000 -29.1732 -7.5390 -45.3936 -6.4882 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -18.1327 -1.9157 -5.5967 31.7337 0.0000 0.0000 43.6662 -7.9515 18.5752 2.4208 0.0000 0.0000 -18.0868 -21.4496 24.3545 40.5030 0.0000 0.0000 43.7285 12.1641 -32.2843 -4.7134 0.0000 -0.0000 - -1.8307 -25.1770 28.7621 -27.5294 -5.1019 169.5943 2.8287 -3.2642 0.0122 2.7574 -1.5292 -0.2412 -3.0049 -6.1296 4.2423 -4.1394 0.4650 1.4055 -14.9891 -2.9439 -0.3941 -4.2830 -0.6036 -2.7662 -18.1115 -6.3087 12.5511 -38.0349 -40.9907 25.2915 -0.0000 0.0001 55.7268 41.8554 30.1156 -18.5252 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.1691 6.3392 -9.8733 -27.4711 0.4771 -33.9454 -0.0000 -0.0000 -27.1541 -7.0557 -43.9949 -5.9029 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -21.2933 -1.3568 -5.9675 35.6989 0.0000 0.0000 42.4587 -8.0220 18.0179 2.5453 0.0000 0.0000 -21.0128 -22.5322 24.4779 44.7949 0.0000 0.0000 43.3063 13.0484 -32.5819 -4.8289 0.0000 -0.0000 - -1.8150 -24.7458 29.0596 -27.0684 -4.8829 169.3400 3.6348 -3.1367 0.0389 3.0322 -1.5102 -0.2358 -2.8146 -5.6341 4.1092 -4.2172 0.4238 1.3886 -14.3411 -3.3304 -0.3243 -4.5942 -0.6104 -2.6872 -17.3586 -7.1183 12.8323 -34.6038 -38.7542 26.8798 -0.0000 0.0001 53.1947 40.7325 30.8873 -18.0505 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.8114 6.6833 -9.6313 -24.9939 0.0680 -33.9021 -0.0000 -0.0000 -25.4267 -6.6903 -42.8045 -5.4523 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -24.3234 -0.6830 -5.9887 39.3722 0.0000 0.0000 40.9233 -7.9590 17.2450 2.5289 0.0000 0.0000 -23.8819 -23.3520 24.2600 48.8547 0.0000 0.0000 42.5860 13.8372 -32.6603 -4.9801 0.0000 -0.0000 - -1.8040 -24.3232 29.3311 -26.4146 -4.6128 169.1757 4.6407 -3.0272 0.0471 3.2887 -1.4792 -0.2308 -2.4676 -4.9850 3.9538 -4.2900 0.3649 1.3631 -13.7588 -3.5642 -0.2943 -4.8539 -0.7150 -2.6549 -16.4150 -7.6900 13.2073 -31.2012 -36.4108 28.3898 -0.0000 0.0001 50.5293 39.5427 31.8136 -17.6123 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -10.2315 6.6763 -9.6258 -22.6830 0.0954 -33.5059 -0.0000 -0.0000 -23.9843 -6.3984 -41.8335 -5.1216 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -27.1427 -0.0023 -5.6739 42.5459 0.0000 0.0000 39.2387 -7.6747 16.3091 2.3819 0.0000 0.0000 -26.6660 -23.9218 23.7088 52.5235 0.0000 0.0000 41.7072 14.4371 -32.5933 -5.1720 0.0000 -0.0000 - -1.7947 -23.9043 29.5825 -25.6271 -4.3365 169.0897 5.8061 -2.9314 0.0422 3.5193 -1.4357 -0.2249 -2.0128 -4.2967 3.7887 -4.3339 0.3168 1.3211 -13.2294 -3.6473 -0.2988 -5.0605 -0.9164 -2.6790 -15.3239 -8.0643 13.6694 -27.8715 -34.0277 29.7060 -0.0000 0.0000 47.8149 38.2708 32.8226 -17.2285 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.5119 6.4388 -9.8168 -20.4501 0.5327 -32.8423 -0.0000 -0.0000 -22.8152 -6.1557 -41.0706 -4.9123 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -29.7448 0.6018 -5.0733 45.1022 0.0000 0.0000 37.5583 -7.1006 15.2743 2.1355 0.0000 0.0000 -29.3890 -24.2732 22.8532 55.7005 0.0000 0.0000 40.7951 14.7692 -32.4589 -5.4095 0.0000 -0.0000 - -1.7849 -23.4862 29.8179 -24.7769 -4.0869 169.0605 7.0844 -2.8505 0.0268 3.7217 -1.3837 -0.2185 -1.5015 -3.6429 3.6344 -4.3339 0.2967 1.2630 -12.7359 -3.6075 -0.3268 -5.2138 -1.1983 -2.7638 -14.1333 -8.2869 14.2111 -24.6485 -31.6864 30.7203 -0.0000 0.0000 45.1308 36.8877 33.8445 -16.8898 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -8.7424 6.0668 -10.1564 -18.2134 1.3487 -32.0006 -0.0000 -0.0000 -21.8901 -5.9570 -40.4814 -4.8346 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -32.1563 1.0725 -4.2543 46.9837 0.0000 0.0000 36.0112 -6.2179 14.2073 1.8470 0.0000 0.0000 -32.0886 -24.4469 21.7383 58.3229 0.0000 0.0000 39.9505 14.7848 -32.3343 -5.6840 0.0000 -0.0000 - -1.7731 -23.0671 30.0392 -23.9243 -3.8850 169.0641 8.4310 -2.7861 0.0071 3.8988 -1.3262 -0.2110 -0.9729 -3.0631 3.5075 -4.2862 0.3096 1.1916 -12.2579 -3.4798 -0.3636 -5.3149 -1.5426 -2.9059 -12.9210 -8.3828 14.8279 -21.5537 -29.5289 31.3047 -0.0000 0.0000 42.5664 35.3836 34.8010 -16.5593 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.0053 5.6425 -10.6112 -15.9042 2.4894 -31.0449 -0.0000 -0.0000 -21.1787 -5.8155 -40.0206 -4.8996 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -34.4047 1.3825 -3.2922 48.1749 0.0000 0.0000 34.6991 -5.0723 13.1699 1.5898 0.0000 0.0000 -34.7834 -24.4833 20.4242 60.3505 0.0000 0.0000 39.2396 14.4720 -32.2878 -5.9686 0.0000 -0.0000 - -1.7580 -22.6448 30.2464 -23.1050 -3.7482 169.0779 9.8144 -2.7416 -0.0115 4.0586 -1.2689 -0.2020 -0.4522 -2.5671 3.4228 -4.1940 0.3531 1.1122 -11.7780 -3.3053 -0.3965 -5.3645 -1.9287 -3.0922 -11.7501 -8.3804 15.5125 -18.6078 -27.7023 31.3701 -0.0000 0.0000 40.2015 33.7638 35.6208 -16.1830 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -7.3502 5.2342 -11.1531 -13.4867 3.8852 -30.0345 -0.0000 -0.0000 -20.6414 -5.7648 -39.6397 -5.1260 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -36.4967 1.5249 -2.2666 48.6862 0.0000 0.0000 33.6933 -3.7756 12.2080 1.4345 0.0000 0.0000 -37.4538 -24.4262 18.9838 61.7572 0.0000 0.0000 38.6925 13.8575 -32.3748 -6.2206 0.0000 -0.0000 - -1.7391 -22.2174 30.4376 -22.3377 -3.6815 169.0802 11.2044 -2.7124 -0.0297 4.2134 -1.2156 -0.1922 0.0523 -2.1491 3.3914 -4.0649 0.4191 1.0354 -11.2896 -3.1197 -0.4146 -5.3573 -2.3376 -3.3027 -10.6598 -8.3057 16.2505 -15.8392 -26.3385 30.8772 0.0000 0.0000 38.1040 32.0591 36.2457 -15.7163 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -6.7764 4.9060 -11.7339 -10.9653 5.4450 -29.0553 -0.0000 -0.0000 -20.2236 -5.8379 -39.2938 -5.5085 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -38.4329 1.5168 -1.2555 48.5534 0.0000 0.0000 33.0343 -2.4839 11.3472 1.4255 0.0000 0.0000 -40.0519 -24.3131 17.5031 62.5275 0.0000 0.0000 38.3061 13.0089 -32.6249 -6.3890 0.0000 -0.0000 - -1.7156 -21.7815 30.6100 -21.6110 -3.6927 169.0541 12.5945 -2.6961 -0.0440 4.3756 -1.1645 -0.1805 0.5402 -1.7995 3.4173 -3.9056 0.4954 0.9687 -10.7920 -2.9457 -0.4141 -5.2899 -2.7561 -3.5103 -9.6854 -8.1784 17.0245 -13.2873 -25.5537 29.8019 0.0000 0.0000 36.3422 30.3355 36.6327 -15.1220 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -6.2613 4.7039 -12.3137 -8.3719 7.0933 -28.1591 -0.0000 -0.0000 -19.8911 -6.0560 -38.9670 -6.0305 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -40.1854 1.3820 -0.3410 47.8237 0.0000 0.0000 32.7349 -1.3645 10.5880 1.5671 0.0000 0.0000 -42.4927 -24.1879 16.0718 62.6561 0.0000 0.0000 38.0571 12.0267 -33.0409 -6.4315 0.0000 -0.0000 - -1.6876 -21.3342 30.7601 -20.9058 -3.7764 168.9861 13.9746 -2.6796 -0.0587 4.5602 -1.1154 -0.1683 1.0205 -1.5043 3.5029 -3.7249 0.5712 0.9214 -10.2927 -2.7951 -0.3940 -5.1592 -3.1746 -3.6850 -8.8023 -8.0279 17.8040 -11.0153 -25.3791 28.1948 0.0000 0.0000 34.9427 28.6782 36.7807 -14.3960 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.7373 4.6639 -12.8291 -5.7644 8.7444 -27.4211 -0.0000 -0.0000 -19.5979 -6.4553 -38.6610 -6.6850 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -41.7321 1.1576 0.4001 46.5621 0.0000 0.0000 32.7818 -0.5596 9.9145 1.8231 0.0000 0.0000 -44.6871 -24.0842 14.7834 62.1507 0.0000 0.0000 37.9132 11.0318 -33.5909 -6.3286 0.0000 -0.0000 - -1.6552 -20.8722 30.8842 -20.1914 -3.9230 168.8680 15.3481 -2.6491 -0.0752 4.7777 -1.0628 -0.1542 1.5008 -1.2523 3.6435 -3.5243 0.6364 0.8998 -9.8118 -2.6734 -0.3562 -4.9589 -3.5777 -3.8042 -7.9809 -7.8798 18.5473 -9.0760 -25.7901 26.1208 0.0000 0.0000 33.9247 27.1760 36.7164 -13.5618 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.1361 4.7962 -13.2233 -3.2109 10.3481 -26.8897 -0.0000 -0.0000 -19.3281 -7.0165 -38.4087 -7.4060 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -43.0445 0.8817 0.8961 44.8407 0.0000 0.0000 33.1396 -0.1607 9.3012 2.1304 0.0000 0.0000 -46.5444 -24.0291 13.7274 61.0331 0.0000 0.0000 37.8444 10.1405 -34.2143 -6.0897 0.0000 -0.0000 - -1.6189 -20.3928 30.9787 -19.4407 -4.1189 168.6995 16.7159 -2.5891 -0.0980 5.0334 -1.0026 -0.1409 1.9901 -1.0298 3.8301 -3.3041 0.6739 0.9032 -9.3679 -2.5649 -0.2956 -4.6929 -3.9665 -3.8505 -7.1495 -7.7577 19.2087 -7.5094 -26.6871 23.6999 0.0000 0.0000 33.2643 25.9117 36.5097 -12.6750 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.4009 5.0899 -13.4414 -0.7810 11.8940 -26.5870 -0.0000 -0.0000 -19.0778 -7.7189 -38.2481 -8.1568 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -44.1033 0.5889 1.0829 42.7397 0.0000 0.0000 33.7516 -0.2006 8.7242 2.4202 0.0000 0.0000 -47.9989 -24.0389 12.9789 59.3443 0.0000 0.0000 37.8263 9.4410 -34.8315 -5.7553 0.0000 -0.0000 - -1.5795 -19.8941 31.0404 -18.6381 -4.3419 168.4862 18.0650 -2.4911 -0.1379 5.3275 -0.9318 -0.1279 2.5100 -0.8228 4.0541 -3.0710 0.6942 0.9342 -8.9812 -2.4795 -0.2196 -4.3665 -4.3229 -3.8142 -6.2529 -7.6957 19.7234 -6.3043 -27.9478 21.0685 0.0000 0.0000 32.9146 24.9295 36.2545 -11.7778 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.4696 5.5103 -13.4603 1.4641 13.3746 -26.5231 -0.0000 -0.0000 -18.8435 -8.5494 -38.2267 -8.9010 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -44.9068 0.3123 0.9128 40.3455 0.0000 0.0000 34.5431 -0.6559 8.1723 2.6378 0.0000 0.0000 -49.0180 -24.1106 12.5988 57.1418 0.0000 0.0000 37.8377 8.9802 -35.3564 -5.3832 0.0000 -0.0000 - -1.5374 -19.3751 31.0666 -17.7743 -4.5790 168.2428 19.3877 -2.3501 -0.1998 5.6554 -0.8515 -0.1160 3.0698 -0.6221 4.3042 -2.8258 0.6928 0.9866 -8.6674 -2.4005 -0.1375 -3.9916 -4.6451 -3.6892 -5.2288 -7.7097 20.0332 -5.4071 -29.4354 18.3870 0.0000 0.0000 32.8112 24.2589 36.0560 -10.9379 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.3128 6.0274 -13.2696 3.4863 14.8132 -26.6946 -0.0000 -0.0000 -18.6244 -9.4854 -38.3787 -9.6117 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -45.4575 0.0704 0.3490 37.7447 0.0000 0.0000 35.4262 -1.4557 7.6487 2.7574 0.0000 0.0000 -49.6025 -24.2321 12.6158 54.5018 0.0000 0.0000 37.8565 8.7625 -35.7154 -5.0295 0.0000 -0.0000 - -1.4936 -18.8364 31.0550 -16.8605 -4.8085 167.9901 20.6668 -2.1615 -0.2890 6.0064 -0.7548 -0.1073 3.6635 -0.4281 4.5574 -2.5628 0.6604 1.0508 -8.4356 -2.3098 -0.0315 -3.5856 -4.9304 -3.4940 -4.0235 -7.7982 20.1099 -4.7304 -31.0392 15.8129 0.0000 0.0000 32.8794 23.8807 36.0202 -10.2082 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.9372 6.6195 -12.8710 5.2744 16.2492 -27.0753 -0.0000 -0.0000 -18.4284 -10.5001 -38.7124 -10.2662 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -45.7879 -0.1184 -0.6222 35.0307 0.0000 0.0000 36.3080 -2.4895 7.1773 2.7861 0.0000 0.0000 -49.7967 -24.3692 13.0341 51.5116 0.0000 0.0000 37.8618 8.7648 -35.8526 -4.7355 0.0000 -0.0000 - -1.4488 -18.2791 31.0042 -15.9190 -5.0151 167.7509 21.8727 -1.9379 -0.4148 6.3658 -0.6503 -0.1009 4.3064 -0.2296 4.8058 -2.2898 0.6181 1.1194 -8.2865 -2.2156 0.0815 -3.1685 -5.1709 -3.2361 -2.6328 -7.9826 19.9230 -4.1555 -32.6857 13.4793 0.0000 0.0000 33.0456 23.7509 36.2109 -9.6198 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.6486 7.2484 -12.3068 6.8390 17.7140 -27.6387 -0.0000 -0.0000 -18.2479 -11.5792 -39.2263 -10.8516 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -45.9433 -0.2481 -1.9891 32.2951 0.0000 0.0000 37.1037 -3.6216 6.7946 2.7631 0.0000 0.0000 -49.6737 -24.4833 13.8265 48.2647 0.0000 0.0000 37.8376 8.9574 -35.7397 -4.5152 0.0000 -0.0000 - -1.4037 -17.7058 30.9132 -14.9832 -5.1785 167.5480 22.9769 -1.6854 -0.5800 6.7176 -0.5420 -0.0978 4.9900 -0.0269 5.0323 -2.0045 0.5699 1.1800 -8.2123 -2.1124 0.2113 -2.7627 -5.3649 -2.9427 -1.0548 -8.2611 19.4851 -3.5738 -34.3294 11.4922 0.0000 0.0000 33.2360 23.7974 36.6601 -9.1910 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.3898 7.9004 -11.6186 8.2280 19.2431 -28.3432 -0.0000 -0.0000 -18.0792 -12.7126 -39.8924 -11.3701 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -45.9906 -0.3137 -3.7041 29.6295 0.0000 0.0000 37.7511 -4.7088 6.5456 2.7461 0.0000 0.0000 -49.3279 -24.5274 14.9436 44.8509 0.0000 0.0000 37.7810 9.3213 -35.3699 -4.3545 0.0000 -0.0000 - -1.3585 -17.1190 30.7818 -14.0787 -5.3032 167.4014 23.9633 -1.4290 -0.7780 7.0466 -0.4345 -0.0977 5.7105 0.1762 5.2225 -1.7097 0.5210 1.2241 -8.1962 -1.9948 0.3593 -2.3872 -5.5155 -2.6377 0.6815 -8.6304 18.8291 -2.8950 -35.9530 9.9080 0.0000 0.0000 33.3897 23.9318 37.3468 -8.9167 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 4.2135 8.5616 -10.8553 9.5097 20.8678 -29.1490 -0.0000 -0.0000 -17.9125 -13.8869 -40.6608 -11.8271 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -45.9817 -0.3320 -5.6886 27.1072 0.0000 0.0000 38.2241 -5.6305 6.4639 2.7951 0.0000 0.0000 -48.8529 -24.4783 16.3038 41.3564 0.0000 0.0000 37.7078 9.8563 -34.7628 -4.2205 0.0000 -0.0000 - -1.3130 -16.5216 30.6102 -13.2248 -5.3988 167.3256 24.8245 -1.2259 -0.9996 7.3515 -0.4322 -0.1324 6.4405 0.5710 5.3921 -1.4043 0.4772 1.2280 -8.2262 -1.9940 0.5609 -2.0514 -5.5495 -2.3850 2.5353 -9.1655 18.0064 -2.0563 -37.5260 8.7472 0.0000 0.0000 33.4589 24.0414 38.1924 -8.7530 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 5.9953 9.1406 -10.0414 10.7804 22.6500 -30.0262 -0.0000 -0.0000 -17.7382 -15.0555 -41.4808 -12.2232 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -45.9623 -0.3225 -7.8221 24.7835 0.0000 0.0000 38.5373 -6.3140 6.5648 2.9520 0.0000 0.0000 -48.3303 -24.3221 17.8117 37.8521 0.0000 0.0000 37.6564 10.5901 -33.9498 -4.0767 0.0000 -0.0000 - -1.2670 -15.9156 30.3989 -12.4352 -5.4741 167.3165 25.5442 -1.0011 -1.2149 7.5919 -0.2501 -0.1080 7.2367 0.5708 5.4657 -1.0998 0.4489 1.2338 -8.2447 -1.7167 0.7037 -1.7704 -5.6932 -2.0820 4.4295 -9.5897 17.0562 -1.0690 -39.1641 7.9461 0.0000 0.0000 33.4190 24.0903 39.1146 -8.6995 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 7.7907 9.8588 -9.2849 12.0605 24.4553 -30.9473 -0.0000 -0.0000 -17.5154 -16.3142 -42.2370 -12.6096 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -45.9738 -0.3079 -9.9435 22.6974 0.0000 0.0000 38.7371 -6.7415 6.8366 3.2398 0.0000 0.0000 -47.8202 -24.0659 19.3856 34.3959 0.0000 0.0000 37.6785 11.5615 -32.9729 -3.8914 0.0000 -0.0000 - -1.2203 -15.3023 30.1487 -11.6935 -5.5585 167.3736 26.1425 -0.8736 -1.4092 7.8003 -0.1799 -0.1201 8.0318 0.7515 5.5135 -0.7881 0.4295 1.1938 -8.2531 -1.5454 0.8940 -1.5324 -5.7405 -1.8675 6.3175 -10.1257 16.0422 0.0737 -40.7877 7.4689 0.0000 0.0000 33.2641 23.9428 39.9584 -8.6331 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 9.4072 10.4647 -8.5353 13.4664 26.4091 -31.9286 -0.0000 -0.0000 -17.2350 -17.5548 -42.9047 -12.9814 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -46.0103 -0.3114 -11.8873 20.8598 0.0000 0.0000 38.8997 -6.9570 7.2351 3.6365 0.0000 0.0000 -47.3405 -23.7290 20.9269 31.0316 0.0000 0.0000 37.8358 12.8177 -31.8749 -3.6685 0.0000 -0.0000 - -1.1722 -14.6815 29.8602 -10.9692 -5.6779 167.4784 26.6337 -0.8281 -1.5522 7.9709 -0.1205 -0.1378 8.8421 0.9131 5.5122 -0.4714 0.4226 1.1289 -8.2134 -1.3654 1.0833 -1.3251 -5.7484 -1.6997 8.1398 -10.6455 15.0009 1.3082 -42.4590 7.2247 0.0000 0.0000 33.0047 23.5523 40.6240 -8.4918 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 10.8495 11.0211 -7.8163 15.0227 28.4328 -32.9934 -0.0000 -0.0000 -16.8640 -18.7773 -43.3953 -13.3588 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -46.0475 -0.3574 -13.4892 19.2699 0.0000 0.0000 39.1058 -7.0307 7.6979 4.1078 0.0000 0.0000 -46.8770 -23.3502 22.3665 27.8014 0.0000 0.0000 38.1750 14.3790 -30.7042 -3.4334 0.0000 -0.0000 - -1.1221 -14.0519 29.5336 -10.2184 -5.8588 167.6102 27.0388 -0.8742 -1.6200 8.1146 -0.0690 -0.1650 9.6647 1.0548 5.4678 -0.1464 0.4299 1.0433 -8.1012 -1.1779 1.2663 -1.1293 -5.7312 -1.5810 9.8558 -11.1024 13.9588 2.5668 -44.2037 7.1416 0.0000 0.0000 32.6589 22.8844 41.0301 -8.1967 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 12.1040 11.5128 -7.1117 16.7492 30.4766 -34.1828 -0.0000 -0.0000 -16.3832 -19.9702 -43.6769 -13.7606 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -46.0393 -0.4662 -14.6167 17.9201 0.0000 0.0000 39.4309 -7.0412 8.1557 4.6002 0.0000 0.0000 -46.3924 -22.9754 23.6526 24.7534 0.0000 0.0000 38.7191 16.2207 -29.5090 -3.2375 0.0000 -0.0000 - -1.0692 -13.4118 29.1693 -9.3890 -6.1256 167.7500 27.3849 -1.0125 -1.5952 8.2425 -0.0153 -0.2015 10.4951 1.1696 5.3838 0.1922 0.4438 0.9485 -7.9001 -0.9895 1.4351 -0.9202 -5.6869 -1.5068 11.4314 -11.4596 12.9203 3.7938 -46.0230 7.1610 0.0000 0.0000 32.2573 21.9522 41.1459 -7.7026 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 13.1677 11.9256 -6.3972 18.6523 32.4900 -35.5495 -0.0000 -0.0000 -15.7721 -21.0901 -43.7129 -14.1807 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -45.9254 -0.6549 -15.1901 16.8015 0.0000 0.0000 39.9314 -7.0517 8.5499 5.0544 0.0000 0.0000 -45.8401 -22.6557 24.7511 21.9516 0.0000 0.0000 39.4562 18.2609 -28.3394 -3.1401 0.0000 -0.0000 - -1.0124 -12.7588 28.7682 -8.4218 -6.4984 167.8896 27.7062 -1.2370 -1.4739 8.3717 0.0435 -0.2466 11.3262 1.2555 5.2682 0.5479 0.4622 0.8551 -7.6003 -0.8093 1.5661 -0.6701 -5.6214 -1.4518 12.8553 -11.6846 11.8854 4.9398 -47.9097 7.2499 0.0000 0.0000 31.8219 20.7901 40.9997 -6.9890 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 14.0592 12.2448 -5.6568 20.7206 34.4053 -37.1334 -0.0000 -0.0000 -15.0250 -22.1303 -43.5229 -14.6299 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -45.6337 -0.9336 -15.1883 15.9084 0.0000 0.0000 40.6341 -7.1041 8.8430 5.4160 0.0000 0.0000 -45.1666 -22.4384 25.6536 19.4731 0.0000 0.0000 40.3459 20.3574 -27.2507 -3.1940 0.0000 -0.0000 - -0.9524 -12.0917 28.3316 -7.2745 -6.9428 168.0217 28.0321 -1.4976 -1.2795 8.5003 0.1116 -0.2981 12.1532 1.3146 5.1246 0.9239 0.4802 0.7706 -7.2046 -0.6540 1.6633 -0.3607 -5.5351 -1.4106 14.1121 -11.7689 10.8446 6.0000 -49.8247 7.4162 0.0000 0.0000 31.3701 19.4743 40.6663 -6.0861 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 14.7827 12.4632 -4.8633 22.9263 36.1618 -38.9513 -0.0000 -0.0000 -14.1543 -23.0525 -43.1374 -15.0867 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -45.1355 -1.2717 -14.6137 15.2656 0.0000 0.0000 41.5235 -7.2182 9.0288 5.6397 0.0000 0.0000 -44.3218 -22.3229 26.4063 17.3813 0.0000 0.0000 41.3288 22.3298 -26.2869 -3.4232 0.0000 -0.0000 - -0.8877 -11.4111 27.8609 -5.9583 -7.4633 168.1643 28.3573 -1.7900 -1.0354 8.6335 0.1877 -0.3524 12.9584 1.3472 4.9601 1.3226 0.4914 0.7030 -6.7248 -0.5338 1.7142 0.0249 -5.4407 -1.3600 15.1951 -11.7152 9.7866 6.9939 -51.7169 7.6894 0.0000 0.0000 30.9170 18.0790 40.2493 -5.0464 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 15.3472 12.5706 -4.0130 25.2273 37.7019 -40.9880 -0.0000 -0.0000 -13.1810 -23.8504 -42.6171 -15.5447 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -44.4360 -1.6658 -13.5745 14.8843 0.0000 0.0000 42.5517 -7.3897 9.1190 5.7014 0.0000 0.0000 -43.3463 -22.3357 27.0142 15.7666 0.0000 0.0000 42.3371 23.9812 -25.5031 -3.8218 0.0000 -0.0000 - -0.8187 -10.7195 27.3584 -4.4942 -8.0170 168.3281 28.6866 -2.0698 -0.7833 8.7613 0.2650 -0.4018 13.7231 1.3587 4.7809 1.7412 0.4945 0.6566 -6.1834 -0.4485 1.6936 0.4926 -5.3595 -1.2625 16.0956 -11.5353 8.7113 7.9639 -53.5265 8.1180 0.0000 0.0000 30.4677 16.6780 39.8679 -3.9347 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 15.7597 12.5629 -3.1217 27.5518 38.9754 -43.1832 -0.0000 -0.0000 -12.1405 -24.5397 -42.0342 -15.9964 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -43.5772 -2.0798 -12.1874 14.8044 0.0000 0.0000 43.6253 -7.5991 9.1489 5.5944 0.0000 0.0000 -42.2703 -22.4566 27.5220 14.6830 0.0000 0.0000 43.2982 25.1383 -24.9347 -4.3435 0.0000 -0.0000 - -0.7458 -10.0214 26.8272 -2.9381 -8.5591 168.5192 29.0146 -2.2929 -0.5620 8.8680 0.3414 -0.4397 14.4238 1.3536 4.5903 2.1661 0.4861 0.6352 -5.6035 -0.4544 1.6649 1.0230 -5.2452 -1.1676 16.8025 -11.2569 7.6264 8.9405 -55.1852 8.7419 0.0000 0.0000 30.0240 15.3285 39.5967 -2.8067 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 16.0174 12.4475 -2.2221 29.8117 39.9450 -45.4304 -0.0000 -0.0000 -11.0747 -25.1345 -41.4933 -16.4385 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -42.6443 -2.4815 -10.6054 15.0775 0.0000 0.0000 44.6143 -7.8119 9.1621 5.3349 0.0000 0.0000 -41.1690 -22.6621 27.9490 14.1778 0.0000 0.0000 44.1192 25.6688 -24.5920 -4.9065 0.0000 -0.0000 - -0.6705 -9.3233 26.2707 -1.3646 -9.0287 168.7246 29.3369 -2.4033 -0.4026 8.9311 0.4079 -0.4579 15.0377 1.3380 4.3978 2.5834 0.4646 0.6376 -5.0272 -0.5095 1.5866 1.6042 -5.1571 -1.0187 17.3010 -10.9111 6.5584 9.9589 -56.6176 9.5859 0.0000 0.0000 29.5996 14.0618 39.5334 -1.7267 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 16.1149 12.2429 -1.3686 31.8743 40.6047 -47.5828 -0.0000 -0.0000 -10.0325 -25.6682 -41.0472 -16.8691 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -41.7597 -2.8329 -8.9764 15.7778 0.0000 0.0000 45.3578 -7.9836 9.2004 4.9531 0.0000 0.0000 -40.1363 -22.9169 28.2951 14.2879 0.0000 0.0000 44.6742 25.5070 -24.4409 -5.4166 0.0000 -0.0000 - -0.5914 -8.6332 25.6930 0.1360 -9.4450 168.9481 29.6587 -2.4197 -0.3088 8.9295 0.4535 -0.4510 15.5452 1.3223 4.2101 2.9669 0.4292 0.6586 -4.4917 -0.6300 1.4828 2.2054 -5.0867 -0.8266 17.5823 -10.5513 5.5501 10.9839 -57.7487 10.6101 0.0000 0.0000 29.2128 12.9086 39.7114 -0.7420 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 16.0468 11.9668 -0.6281 33.6060 40.9691 -49.4757 -0.0000 -0.0000 -9.0586 -26.1752 -40.7612 -17.2953 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -41.0349 -3.1504 -7.5048 16.9574 0.0000 0.0000 45.6869 -8.0619 9.2826 4.4993 0.0000 0.0000 -39.3379 -23.2522 28.4381 15.1022 0.0000 0.0000 44.7932 24.6554 -24.4229 -5.7828 0.0000 -0.0000 - -0.5111 -7.9593 25.0979 1.5034 -9.7437 169.1493 30.0147 -2.2701 -0.2915 8.8380 0.4600 -0.4196 15.9209 1.3224 4.0336 3.2946 0.3818 0.6961 -4.0392 -0.8049 1.3699 2.7942 -5.0402 -0.5949 17.6317 -10.2107 4.6541 11.9237 -58.5360 11.7162 0.0000 0.0000 28.8815 11.8833 40.1280 0.1209 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 15.8092 11.6614 -0.0717 34.8640 41.0669 -50.9339 -0.0000 -0.0000 -8.2011 -26.6758 -40.6762 -17.7152 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -40.6107 -3.3922 -6.2667 18.7352 0.0000 0.0000 45.4155 -8.0091 9.4228 4.0193 0.0000 0.0000 -38.8784 -23.6301 28.3070 16.6843 0.0000 0.0000 44.2701 23.1841 -24.4227 -5.9167 0.0000 -0.0000 - -0.4298 -7.3107 24.4856 2.5975 -9.9369 169.3036 30.3369 -1.9941 -0.3415 8.6520 0.4590 -0.3506 16.1598 1.3116 3.8755 3.5355 0.3280 0.7329 -3.6986 -1.0250 1.2636 3.3409 -5.0177 -0.3282 17.4646 -9.9444 3.9399 12.6329 -58.9252 12.7381 0.0000 0.0000 28.6549 11.0031 40.7627 0.8284 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 15.4072 11.3564 0.2488 35.5484 40.9457 -51.8364 -0.0000 -0.0000 -7.4835 -27.1815 -40.7991 -18.1410 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -40.7001 -3.5700 -5.3615 21.2280 0.0000 0.0000 44.3762 -7.8004 9.6072 3.5727 0.0000 0.0000 -39.0372 -24.0855 27.7173 19.1966 0.0000 0.0000 42.8803 21.1950 -24.3261 -5.7500 0.0000 -0.0000 - -0.3488 -6.6915 23.8551 3.3860 -10.0404 169.3851 30.6383 -1.6003 -0.4408 8.3801 0.4158 -0.2633 16.2434 1.3253 3.7401 3.6717 0.2698 0.7720 -3.4861 -1.2748 1.2017 3.8260 -5.0185 -0.0633 17.0989 -9.7705 3.4536 12.9782 -58.9228 13.5242 0.0000 0.0000 28.5658 10.2806 41.5571 1.3775 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 14.8650 11.0879 0.2984 35.5910 40.6403 -52.0912 -0.0000 -0.0000 -6.9408 -27.6816 -41.1281 -18.5682 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -41.4122 -3.6868 -4.8041 24.5630 0.0000 0.0000 42.4185 -7.4339 9.8187 3.2177 0.0000 0.0000 -39.9710 -24.6316 26.5514 22.7900 0.0000 0.0000 40.4336 18.7889 -24.0418 -5.2285 0.0000 -0.0000 - -0.2673 -6.1009 23.2019 3.8565 -10.1473 169.3886 30.8938 -1.1992 -0.5480 8.0607 0.3618 -0.1611 16.1656 1.3406 3.6365 3.6946 0.2121 0.8039 -3.3935 -1.5245 1.1743 4.2476 -5.0380 0.2085 16.5846 -9.6902 3.2258 12.8648 -58.5473 13.9484 0.0000 0.0000 28.6686 9.7486 42.4364 1.7453 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 14.2257 10.8729 0.0774 35.0035 40.1791 -51.7059 -0.0000 -0.0000 -6.5794 -28.1629 -41.6415 -19.0026 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -42.7991 -3.7959 -4.6133 28.8232 0.0000 0.0000 39.4451 -6.9287 10.0288 3.0212 0.0000 0.0000 -41.8353 -25.3252 24.7296 27.6079 0.0000 0.0000 36.8254 16.0040 -23.5509 -4.3068 0.0000 -0.0000 - -0.1860 -5.5317 22.5211 4.0898 -10.3237 169.3029 31.1056 -0.8527 -0.6233 7.7637 0.2790 -0.0741 15.9196 1.3894 3.5783 3.6093 0.1597 0.8307 -3.3969 -1.7569 1.2056 4.6113 -5.0578 0.4514 15.9757 -9.6746 3.2621 12.2865 -57.8538 13.9752 0.0000 0.0000 28.9899 9.4146 43.3248 1.9538 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 13.5456 10.7200 -0.3866 33.8386 39.5716 -50.7360 -0.0000 -0.0000 -6.4081 -28.5951 -42.3170 -19.4403 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -44.7920 -3.9234 -4.7455 34.0360 0.0000 0.0000 35.4327 -6.3107 10.2239 3.0474 0.0000 0.0000 -44.5777 -26.1637 22.3498 33.6249 0.0000 0.0000 32.1073 12.8403 -22.9061 -2.9733 0.0000 -0.0000 - -0.1062 -4.9729 21.8129 4.2681 -10.6032 169.1430 31.3455 -0.6073 -0.6579 7.5580 0.2429 0.0080 15.5319 1.4144 3.5753 3.4251 0.1200 0.8435 -3.4733 -1.9417 1.2958 4.9254 -5.0690 0.6509 15.3297 -9.6981 3.5634 11.2869 -56.8738 13.6173 0.0000 0.0000 29.5638 9.2814 44.1682 2.0035 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 12.8688 10.6246 -1.0470 32.1971 38.8194 -49.3172 -0.0000 -0.0000 -6.3985 -28.9531 -43.1117 -19.8883 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -47.1540 -4.0505 -5.1298 40.1041 0.0000 0.0000 30.4723 -5.6079 10.4096 3.3398 0.0000 0.0000 -47.9032 -27.0782 19.6102 40.6057 0.0000 0.0000 26.5025 9.3640 -22.1978 -1.3107 0.0000 -0.0000 - -0.0296 -4.4173 21.0844 4.5519 -10.9720 168.9392 31.6834 -0.4288 -0.6672 7.4967 0.2185 0.0636 15.0382 1.4519 3.6449 3.1572 0.0889 0.8484 -3.6137 -2.0647 1.4308 5.1944 -5.0648 0.7998 14.6743 -9.7327 4.1152 9.9448 -55.6619 12.9495 0.0000 0.0000 30.3808 9.3484 44.9409 1.9161 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 12.2243 10.5722 -1.8718 30.1666 37.9132 -47.5811 -0.0000 -0.0000 -6.5269 -29.2247 -44.0025 -20.3524 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -49.6207 -4.1282 -5.6700 46.8081 0.0000 0.0000 24.7870 -4.8584 10.5966 3.8989 0.0000 0.0000 -51.4540 -27.9654 16.7112 48.1862 0.0000 0.0000 20.3598 5.7790 -21.4927 0.4947 0.0000 0.0000 - 0.0431 -3.8646 20.3492 5.0565 -11.4168 168.7382 32.2007 -0.2923 -0.6781 7.5907 0.2101 0.0987 14.4916 1.4893 3.7978 2.8158 0.0640 0.8483 -3.8178 -2.1249 1.6002 5.4175 -5.0306 0.8814 14.0177 -9.7551 4.8991 8.3529 -54.2641 12.0736 0.0000 0.0000 31.4180 9.6049 45.6512 1.7084 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 11.6214 10.5337 -2.8329 27.8350 36.8480 -45.6838 -0.0000 -0.0000 -6.7582 -29.4099 -44.9716 -20.8380 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -51.9441 -4.1213 -6.2822 53.8531 0.0000 0.0000 18.6948 -4.1111 10.7895 4.6649 0.0000 0.0000 -54.9178 -28.7465 13.7798 55.9979 0.0000 0.0000 14.0660 2.3827 -20.8108 2.2172 0.0000 0.0000 - 0.1109 -3.3224 19.6215 5.7423 -11.9084 168.5637 32.8675 -0.1797 -0.7132 7.8238 0.2133 0.1210 13.9386 1.5231 4.0388 2.4144 0.0472 0.8469 -4.0854 -2.1361 1.7934 5.5959 -4.9544 0.8833 13.3591 -9.7458 5.8883 6.6017 -52.7257 11.1096 0.0000 0.0000 32.6376 10.0253 46.3449 1.4080 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 11.0616 10.4587 -3.8973 25.2866 35.6300 -43.7969 -0.0000 -0.0000 -7.0524 -29.5228 -46.0091 -21.3496 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -54.0647 -4.0153 -6.9021 60.9633 0.0000 0.0000 12.5532 -3.4107 10.9879 5.5301 0.0000 0.0000 -58.1987 -29.3725 10.8745 63.7447 0.0000 0.0000 7.9826 -0.5469 -20.1242 3.6759 0.0000 0.0000 - 0.1748 -2.7999 18.9170 6.5678 -12.4669 168.4331 33.6793 -0.0975 -0.7574 8.1622 0.2125 0.1361 13.4206 1.5506 4.3712 1.9659 0.0290 0.8507 -4.4070 -2.0941 1.9767 5.7386 -4.8376 0.8195 12.6942 -9.6667 7.0304 4.7685 -51.1019 10.1761 0.0000 0.0000 34.0066 10.6127 47.0685 1.0125 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 10.5487 10.2945 -5.0330 22.5941 34.2816 -42.0919 -0.0000 -0.0000 -7.3679 -29.5957 -47.1112 -21.9013 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -55.9394 -3.8454 -7.5157 67.9021 0.0000 0.0000 6.6917 -2.7823 11.1807 6.3673 0.0000 0.0000 -61.2623 -29.8576 7.9922 71.2176 0.0000 0.0000 2.3928 -2.8283 -19.4127 4.7685 0.0000 0.0000 - 0.2351 -2.3061 18.2489 7.4595 -13.1002 168.3455 34.5947 -0.0523 -0.7906 8.5705 0.1956 0.1470 12.9653 1.5757 4.7890 1.4866 0.0076 0.8659 -4.7584 -2.0254 2.1573 5.8559 -4.6610 0.6677 12.0253 -9.4832 8.2669 2.8999 -49.4475 9.3721 0.0000 0.0000 35.4872 11.3698 47.8583 0.5283 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 10.0916 9.9840 -6.1947 19.8136 32.8366 -40.7200 -0.0000 -0.0000 -7.6682 -29.6580 -48.2772 -22.5006 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -57.5973 -3.6468 -8.1253 74.5011 0.0000 0.0000 1.3782 -2.2261 11.3596 7.0654 0.0000 0.0000 -64.1400 -30.2252 5.1207 78.2689 0.0000 0.0000 -2.5072 -4.3895 -18.6723 5.4636 0.0000 0.0000 - 0.2903 -1.8488 17.6262 8.3056 -13.7678 168.2836 35.5110 -0.0302 -0.8087 9.0174 0.1639 0.1605 12.5944 1.5911 5.2801 1.0015 -0.0198 0.8953 -5.1246 -1.8849 2.2529 5.9762 -4.4817 0.5147 11.3433 -9.1594 9.5318 1.0370 -47.8043 8.7703 0.0000 0.0000 37.0613 12.2719 48.7347 -0.0385 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 9.7010 9.4875 -7.3286 16.9713 31.3416 -39.8055 -0.0000 -0.0000 -7.9248 -29.7660 -49.4838 -23.1653 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -59.1468 -3.4200 -8.7172 80.6565 0.0000 0.0000 -3.1924 -1.7298 11.5281 7.5439 0.0000 0.0000 -66.9065 -30.4720 2.2817 84.7897 0.0000 0.0000 -6.5994 -5.2464 -17.9121 5.7736 0.0000 0.0000 - 0.3405 -1.4305 17.0571 9.0782 -14.4625 168.2424 36.4019 -0.0307 -0.7983 9.4718 0.1188 0.1775 12.3251 1.5989 5.8231 0.5257 -0.0511 0.9430 -5.4640 -1.7344 2.3235 6.1071 -4.2509 0.2943 10.6513 -8.6721 10.7618 -0.8328 -46.2227 8.4053 -0.0000 0.0000 38.6936 13.3183 49.6576 -0.6660 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 9.3862 8.7816 -8.3794 14.0811 29.8317 -39.4110 -0.0000 -0.0000 -8.1168 -29.9010 -50.7023 -23.8644 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -60.6000 -3.1832 -9.2961 86.2869 0.0000 0.0000 -6.9127 -1.2747 11.6835 7.7641 0.0000 0.0000 -69.5532 -30.6223 -0.5119 90.7046 0.0000 0.0000 -9.8463 -5.4645 -17.1811 5.7350 0.0000 0.0000 - 0.3848 -1.0516 16.5465 9.7513 -15.1552 168.2149 37.2283 -0.0433 -0.7553 9.9189 0.0627 0.1997 12.1498 1.5979 6.3944 0.0878 -0.0840 1.0081 -5.7590 -1.5656 2.3351 6.2722 -4.0045 0.0524 9.9339 -8.0091 11.8929 -2.7111 -44.7449 8.2904 -0.0000 0.0000 40.3611 14.4670 50.5566 -1.3181 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 9.1461 7.8646 -9.2954 11.1442 28.3472 -39.5544 -0.0000 -0.0000 -8.2381 -30.0595 -51.8780 -24.5708 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -61.9760 -2.9363 -9.8512 91.3422 0.0000 0.0000 -9.7509 -0.8509 11.8274 7.7217 0.0000 0.0000 -72.0610 -30.6869 -3.2207 95.9618 0.0000 0.0000 -12.2683 -5.1427 -16.5340 5.3992 0.0000 0.0000 - 0.4222 -0.7100 16.0966 10.3030 -15.8057 168.1962 37.9498 -0.0543 -0.6877 10.3237 0.0008 0.2262 12.0906 1.5903 6.9666 -0.2999 -0.1190 1.0910 -5.9935 -1.3942 2.2888 6.4837 -3.7520 -0.2021 9.1789 -7.1754 12.8732 -4.6015 -43.4032 8.4214 -0.0000 0.0000 42.0349 15.6447 51.3406 -1.9356 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 8.9693 6.7619 -10.0456 8.1567 26.9195 -40.1869 -0.0000 -0.0000 -8.2981 -30.1913 -52.9514 -25.2252 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -63.2890 -2.6702 -10.3624 95.7965 0.0000 0.0000 -11.7475 -0.4570 11.9613 7.4430 0.0000 0.0000 -74.3996 -30.6716 -5.7862 100.5339 0.0000 0.0000 -13.9334 -4.4010 -16.0221 4.8286 0.0000 0.0000 - 0.4522 -0.4024 15.7072 10.7228 -16.3795 168.1855 38.5377 -0.0568 -0.6056 10.6772 -0.0560 0.2586 12.1294 1.5750 7.5119 -0.6181 -0.1607 1.1866 -6.1633 -1.2344 2.1863 6.7494 -3.5062 -0.4572 8.3742 -6.1881 13.6620 -6.5017 -42.2322 8.7804 -0.0000 0.0000 43.6847 16.7672 51.9186 -2.4589 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 8.8172 5.5115 -10.6149 5.1368 25.5897 -41.2120 -0.0000 -0.0000 -8.3186 -30.2264 -53.8581 -25.7708 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -64.5351 -2.3787 -10.8096 99.6428 0.0000 0.0000 -13.0046 -0.0999 12.0856 6.9757 0.0000 0.0000 -76.5308 -30.5862 -8.1459 104.4205 0.0000 0.0000 -14.9474 -3.3743 -15.6842 4.0957 0.0000 0.0000 - 0.4745 -0.1249 15.3762 10.9978 -16.8484 168.1834 38.9761 -0.0473 -0.5146 10.9610 -0.1112 0.2864 12.2481 1.5569 8.0051 -0.8554 -0.2050 1.3005 -6.2742 -1.1028 2.0220 7.0710 -3.2794 -0.6979 7.5083 -5.0757 14.2224 -8.4012 -41.2781 9.3424 -0.0000 0.0000 45.2739 17.7472 52.2214 -2.8212 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 8.6452 4.1600 -11.0282 2.1150 24.3878 -42.4775 -0.0000 -0.0000 -8.3486 -30.0892 -54.5689 -26.1465 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -65.7077 -2.0588 -11.1771 102.8932 0.0000 0.0000 -13.6740 0.2100 12.2001 6.3837 0.0000 0.0000 -78.4295 -30.4418 -10.2420 107.6482 0.0000 0.0000 -15.4431 -2.2046 -15.5371 3.2804 0.0000 0.0000 - 0.4896 0.1269 15.0999 11.1212 -17.1949 168.1837 39.2587 -0.0212 -0.4254 11.1630 -0.1568 0.3223 12.4245 1.5283 8.4297 -1.0069 -0.2511 1.4145 -6.3375 -1.0107 1.8116 7.4389 -3.0839 -0.9186 6.5721 -3.8667 14.5590 -10.2856 -40.5855 10.0434 -0.0000 0.0000 46.7839 18.5177 52.2237 -2.9839 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 8.4165 2.7662 -11.3042 -0.8523 23.3110 -43.8503 -0.0000 -0.0000 -8.4238 -29.7400 -55.0685 -26.3190 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -66.7926 -1.7212 -11.4513 105.5803 0.0000 0.0000 -13.9398 0.4634 12.3045 5.7381 0.0000 0.0000 -80.0788 -30.2622 -12.0265 110.2696 0.0000 0.0000 -15.5732 -1.0279 -15.5762 2.4641 0.0000 0.0000 - 0.4977 0.3572 14.8735 11.0835 -17.4079 168.1944 39.3799 0.0093 -0.3471 11.2770 -0.1864 0.3575 12.6398 1.4970 8.7686 -1.0820 -0.3137 1.5342 -6.3677 -0.9560 1.5626 7.8388 -2.9292 -1.1163 5.5917 -2.6026 14.6655 -12.1201 -40.1605 10.8634 -0.0000 0.0000 48.1941 19.0521 51.9657 -2.9642 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 8.0771 1.3775 -11.4959 -3.6965 22.3850 -45.1763 -0.0000 -0.0000 -8.5832 -29.1659 -55.3697 -26.3176 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -67.7806 -1.3609 -11.6290 107.7571 0.0000 0.0000 -14.0004 0.6558 12.4045 5.1085 0.0000 0.0000 -81.4868 -30.0495 -13.4691 112.3585 0.0000 0.0000 -15.4920 0.0379 -15.7686 1.7208 0.0000 0.0000 - 0.5000 0.5697 14.6918 10.8835 -17.4961 168.2127 39.3547 0.0377 -0.2739 11.3094 -0.2075 0.3856 12.8501 1.4619 9.0204 -1.0833 -0.3811 1.6564 -6.3838 -0.9466 1.2750 8.2539 -2.8188 -1.2793 4.5814 -1.3263 14.5577 -13.8814 -40.0249 11.7358 -0.0000 0.0001 49.5069 19.3793 51.5039 -2.8006 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 7.6242 0.0391 -11.6434 -6.3563 21.5684 -46.3573 -0.0000 -0.0000 -8.8511 -28.4083 -55.5173 -26.1711 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -68.6597 -0.9934 -11.7168 109.4880 0.0000 0.0000 -14.0392 0.7887 12.5016 4.5536 0.0000 0.0000 -82.6773 -29.8222 -14.5720 114.0036 0.0000 0.0000 -15.3439 0.9114 -16.0719 1.1056 0.0000 0.0000 - 0.4969 0.7686 14.5498 10.5560 -17.4580 168.2473 39.2237 0.0750 -0.2187 11.2655 -0.2172 0.4092 13.0349 1.4208 9.1863 -1.0305 -0.4628 1.7739 -6.3977 -0.9717 0.9709 8.6633 -2.7515 -1.4147 3.5844 -0.0743 14.2747 -15.5525 -40.1529 12.5969 -0.0000 0.0001 50.7421 19.5576 50.9301 -2.5684 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 7.0663 -1.1946 -11.7713 -8.7783 20.8196 -47.3407 -0.0000 -0.0000 -9.2181 -27.5437 -55.5466 -25.9647 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -69.3965 -0.6162 -11.7043 110.8519 0.0000 0.0000 -14.2117 0.8680 12.6041 4.1152 0.0000 0.0000 -83.6360 -29.5867 -15.3247 115.2949 0.0000 0.0000 -15.2530 1.5529 -16.4307 0.6491 0.0000 0.0000 - 0.4898 0.9569 14.4428 10.1105 -17.3165 168.2981 39.0054 0.1113 -0.1773 11.1640 -0.2189 0.4261 13.1653 1.3732 9.2744 -0.9389 -0.5512 1.8846 -6.4213 -1.0270 0.6591 9.0490 -2.7237 -1.5220 2.6393 1.1095 13.8557 -17.1217 -40.5092 13.3815 -0.0000 0.0001 51.9292 19.6665 50.3278 -2.3346 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 6.4421 -2.2806 -11.8973 -10.9324 20.0748 -48.1089 -0.0000 -0.0000 -9.6691 -26.6655 -55.5085 -25.7648 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -69.9926 -0.2396 -11.6085 111.9236 0.0000 0.0000 -14.6173 0.9039 12.7114 3.8142 0.0000 0.0000 -84.4069 -29.3525 -15.7711 116.3216 0.0000 0.0000 -15.2985 1.9648 -16.7976 0.3534 0.0000 0.0000 - 0.4794 1.1376 14.3668 9.5721 -17.0877 168.3685 38.7201 0.1470 -0.1561 11.0278 -0.2119 0.4383 13.2320 1.3196 9.2979 -0.8318 -0.6479 1.9824 -6.4595 -1.1003 0.3580 9.3972 -2.7284 -1.6090 1.7911 2.1897 13.3546 -18.5898 -41.0275 14.0245 -0.0000 0.0001 53.1048 19.7788 49.7719 -2.1595 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.7937 -3.1851 -12.0265 -12.8056 19.2954 -48.6701 -0.0000 -0.0000 -10.1739 -25.8605 -55.4465 -25.6466 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -70.4477 0.1367 -11.4374 112.7744 0.0000 0.0000 -15.2990 0.9076 12.8223 3.6502 0.0000 0.0000 -85.0144 -29.1229 -15.9501 117.1584 0.0000 0.0000 -15.5163 2.1825 -17.1307 0.1963 0.0000 0.0000 - 0.4675 1.3126 14.3193 8.9799 -16.8169 168.4623 38.4137 0.1681 -0.1399 10.8732 -0.2033 0.4444 13.2232 1.2587 9.2716 -0.7238 -0.7410 2.0675 -6.5146 -1.1860 0.0735 9.7012 -2.7576 -1.6795 1.0658 3.1321 12.8165 -19.9583 -41.6457 14.4668 -0.0000 0.0001 54.3043 19.9675 49.2977 -2.0817 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.1705 -3.9008 -12.1569 -14.4042 18.4639 -49.0471 -0.0000 -0.0000 -10.7084 -25.1993 -55.4070 -25.6487 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -70.7463 0.4962 -11.2256 113.4548 0.0000 0.0000 -16.2397 0.8914 12.9254 3.6020 0.0000 0.0000 -85.4821 -28.9117 -15.9420 117.8625 0.0000 0.0000 -15.8961 2.2639 -17.4096 0.1368 0.0000 0.0000 - 0.4551 1.4833 14.2985 8.3637 -16.5274 168.5809 38.1089 0.1759 -0.1294 10.7158 -0.2010 0.4434 13.1482 1.1972 9.2143 -0.6337 -0.8322 2.1358 -6.5821 -1.2721 -0.1790 9.9604 -2.8017 -1.7447 0.4905 3.9154 12.2941 -21.2352 -42.2821 14.6665 -0.0000 0.0001 55.5511 20.2806 48.9255 -2.1238 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 4.6040 -4.4273 -12.2803 -15.7447 17.6039 -49.2597 -0.0000 -0.0000 -11.2512 -24.7259 -55.4192 -25.8097 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -70.8966 0.8370 -10.9895 114.0051 0.0000 0.0000 -17.3715 0.8661 13.0116 3.6330 0.0000 0.0000 -85.8264 -28.7230 -15.8000 118.4679 0.0000 0.0000 -16.3898 2.2711 -17.6198 0.1231 0.0000 0.0000 - 0.4430 1.6506 14.3040 7.7570 -16.2477 168.7227 37.8352 0.1636 -0.1204 10.5685 -0.2022 0.4396 13.0131 1.1301 9.1394 -0.5701 -0.9139 2.1887 -6.6563 -1.3512 -0.3964 10.1823 -2.8541 -1.8091 0.0673 4.5300 11.8288 -22.4276 -42.8774 14.5885 -0.0000 0.0001 56.8551 20.7444 48.6395 -2.2803 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 4.1266 -4.7840 -12.3847 -16.8584 16.7571 -49.3298 -0.0000 -0.0000 -11.7945 -24.4464 -55.5090 -26.1206 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -70.9024 1.1500 -10.7506 114.4457 0.0000 0.0000 -18.5890 0.8414 13.0702 3.6949 0.0000 0.0000 -86.0531 -28.5662 -15.5800 118.9871 0.0000 0.0000 -16.9243 2.2615 -17.7615 0.1012 0.0000 0.0000 - 0.4318 1.8143 14.3355 7.1639 -15.9957 168.8795 37.5882 0.1287 -0.1088 10.4389 -0.2150 0.4331 12.8337 1.0658 9.0640 -0.5387 -0.9871 2.2243 -6.7276 -1.4159 -0.5756 10.3774 -2.9099 -1.8799 -0.2011 4.9662 11.4521 -23.5331 -43.3610 14.2337 -0.0000 0.0001 58.2084 21.3583 48.4173 -2.5351 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 3.7571 -4.9995 -12.4592 -17.7835 15.9907 -49.2739 -0.0000 -0.0000 -12.3348 -24.3473 -55.6852 -26.5718 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -70.8007 1.4286 -10.5277 114.7831 0.0000 0.0000 -19.7647 0.8248 13.0935 3.7359 0.0000 0.0000 -86.1902 -28.4452 -15.3272 119.4149 0.0000 0.0000 -17.4115 2.2778 -17.8422 0.0242 0.0000 0.0000 - 0.4218 1.9743 14.3942 6.6091 -15.7870 169.0477 37.3813 0.0703 -0.0903 10.3305 -0.2486 0.4190 12.6330 1.0155 8.9986 -0.5416 -1.0468 2.2487 -6.7874 -1.4680 -0.7186 10.5615 -2.9648 -1.9611 -0.3322 5.2290 11.1815 -24.5489 -43.7032 13.6116 -0.0000 0.0001 59.5834 22.0984 48.2205 -2.8440 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 3.5126 -5.1093 -12.4916 -18.5660 15.3694 -49.1039 -0.0000 -0.0000 -12.8858 -24.3883 -55.9449 -27.1237 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -70.5983 1.6656 -10.3341 115.0091 0.0000 0.0000 -20.7751 0.8202 13.0795 3.7097 0.0000 0.0000 -86.2252 -28.3673 -15.0699 119.7307 0.0000 0.0000 -17.7713 2.3472 -17.8784 -0.1447 0.0000 -0.0000 - 0.4125 2.1303 14.4806 6.0885 -15.6104 169.2155 37.2001 -0.0081 -0.0748 10.2375 -0.2715 0.4137 12.4319 0.9514 8.9429 -0.5727 -1.0893 2.2620 -6.8259 -1.5030 -0.8319 10.7491 -3.0189 -2.0493 -0.3249 5.3203 11.0179 -25.4601 -43.8630 12.7852 -0.0000 0.0001 60.9354 22.9194 48.0308 -3.1694 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.4007 -5.1322 -12.4680 -19.2512 14.9514 -48.8340 -0.0000 -0.0000 -13.4666 -24.5028 -56.2704 -27.7244 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -70.3361 1.8622 -10.1611 115.1113 0.0000 0.0000 -21.5080 0.8244 13.0348 3.5798 0.0000 0.0000 -86.1576 -28.3322 -14.8005 119.9050 0.0000 0.0000 -17.9364 2.4756 -17.8835 -0.4249 0.0000 -0.0000 - 0.4048 2.2821 14.5964 5.6162 -15.4929 169.3774 37.0457 -0.1135 -0.0424 10.1682 -0.3034 0.4130 12.2425 0.8924 8.9036 -0.6244 -1.1175 2.2658 -6.8360 -1.5254 -0.9214 10.9558 -3.0750 -2.1449 -0.2046 5.2573 10.9543 -26.2551 -43.8520 11.7927 -0.0000 0.0001 62.2214 23.7647 47.8240 -3.4534 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.4067 -5.1011 -12.3858 -19.8774 14.8122 -48.4526 -0.0000 -0.0000 -14.1187 -24.6017 -56.6404 -28.3206 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -70.0055 1.9959 -10.0371 115.0600 0.0000 0.0000 -21.8833 0.8331 12.9609 3.3266 0.0000 0.0000 -85.9795 -28.3541 -14.5545 119.9099 0.0000 0.0000 -17.8634 2.6592 -17.8883 -0.8162 0.0000 -0.0000 - 0.3979 2.4299 14.7422 5.1893 -15.4215 169.5306 36.9120 -0.2399 0.0053 10.1026 -0.3447 0.4095 12.0851 0.8507 8.8811 -0.6833 -1.1415 2.2656 -6.8156 -1.5407 -0.9957 11.1910 -3.1315 -2.2481 0.0240 5.0517 10.9590 -26.9115 -43.6804 10.7232 -0.0000 0.0001 63.3903 24.5764 47.5989 -3.6684 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 3.5426 -5.0198 -12.2407 -20.4848 14.9505 -47.9745 -0.0000 -0.0000 -14.8664 -24.6146 -57.0286 -28.8463 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -69.6196 2.0714 -9.9536 114.8336 0.0000 0.0000 -21.8559 0.8337 12.8722 2.9510 0.0000 0.0000 -85.6742 -28.4259 -14.3098 119.7176 0.0000 0.0000 -17.5366 2.8764 -17.9066 -1.3082 0.0000 -0.0000 - 0.3897 2.5729 14.9169 4.7669 -15.3329 169.6640 36.7304 -0.3513 0.0345 10.0494 -0.3823 0.4095 11.9752 0.8166 8.8691 -0.7463 -1.1593 2.2622 -6.7616 -1.5534 -1.0618 11.4594 -3.1932 -2.3545 0.3452 4.7213 11.0078 -27.4196 -43.3805 9.6338 -0.0000 0.0001 64.4002 25.2950 47.3595 -3.7733 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 3.7802 -4.8905 -12.0416 -21.0916 15.3898 -47.3793 -0.0000 -0.0000 -15.7568 -24.4564 -57.4055 -29.2608 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -69.2438 2.1207 -9.8562 114.4271 0.0000 0.0000 -21.4139 0.8072 12.7925 2.4684 0.0000 0.0000 -85.2411 -28.5210 -13.9813 119.3063 0.0000 0.0000 -16.9665 3.0932 -17.9313 -1.8684 0.0000 -0.0000 - 0.3786 2.7127 15.1211 4.4089 -15.1975 169.7938 36.5625 -0.4181 0.0273 9.9924 -0.4135 0.4124 11.9141 0.7923 8.8625 -0.8022 -1.1756 2.2573 -6.6778 -1.5724 -1.1259 11.7630 -3.2616 -2.4636 0.7393 4.2907 11.0667 -27.7734 -43.0075 8.5730 -0.0000 0.0001 65.2222 25.8787 47.1131 -3.7535 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 4.1196 -4.6995 -11.7940 -21.7094 16.0747 -46.6767 -0.0000 -0.0000 -16.8091 -24.0880 -57.7405 -29.5255 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -68.8062 2.1645 -9.7076 113.8296 0.0000 0.0000 -20.5953 0.7374 12.7420 1.9120 0.0000 0.0000 -84.5695 -28.6267 -13.5019 118.6609 0.0000 0.0000 -16.2006 3.2816 -17.9622 -2.4631 0.0000 -0.0000 - 0.3673 2.8490 15.3531 4.0595 -15.0675 169.9003 36.3515 -0.4852 0.0365 9.9391 -0.4360 0.4193 11.9022 0.7784 8.8486 -0.8418 -1.1963 2.2544 -6.5727 -1.6083 -1.1989 12.0961 -3.3361 -2.5702 1.1788 3.7797 11.1102 -27.9744 -42.6166 7.5582 -0.0000 0.0001 65.8475 26.3039 46.8648 -3.6091 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 4.5134 -4.4615 -11.5238 -22.3299 17.0125 -45.8182 -0.0000 -0.0000 -18.0774 -23.4520 -58.0261 -29.6185 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -68.3239 2.1538 -9.5703 113.0210 0.0000 0.0000 -19.4519 0.6237 12.7077 1.3263 0.0000 0.0000 -83.7542 -28.7623 -12.9570 117.7964 0.0000 0.0000 -15.2795 3.4257 -18.0241 -3.0582 0.0000 -0.0000 - 0.3538 2.9828 15.6111 3.7363 -14.8989 169.9933 36.1130 -0.5231 0.0366 9.8821 -0.4452 0.4288 11.9431 0.7762 8.8231 -0.8658 -1.2216 2.2532 -6.4566 -1.6703 -1.2854 12.4496 -3.4136 -2.6741 1.6362 3.2104 11.1175 -28.0340 -42.2627 6.5918 -0.0000 0.0001 66.2783 26.5549 46.6188 -3.3467 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.9382 -4.1679 -11.2480 -22.9349 18.1386 -44.7972 -0.0000 -0.0000 -19.5697 -22.5472 -58.2394 -29.5403 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -67.7691 2.1198 -9.3969 112.0161 0.0000 0.0000 -18.0682 0.4587 12.7016 0.7601 0.0000 0.0000 -82.7393 -28.9009 -12.2763 116.7217 0.0000 0.0000 -14.2717 3.5080 -18.0987 -3.6225 0.0000 -0.0000 - 0.3378 3.1147 15.8920 3.4279 -14.6790 170.0749 35.8394 -0.5267 0.0267 9.8223 -0.4386 0.4401 12.0271 0.7852 8.7835 -0.8725 -1.2551 2.2533 -6.3416 -1.7618 -1.3920 12.8111 -3.4929 -2.7745 2.0850 2.6038 11.0721 -27.9684 -41.9914 5.6592 -0.0000 0.0001 66.5317 26.6307 46.3727 -2.9856 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 5.3619 -3.8159 -10.9923 -23.4964 19.3937 -43.5977 -0.0000 -0.0000 -21.2892 -21.4043 -58.3730 -29.3175 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -67.1369 2.0726 -9.1757 110.8354 0.0000 0.0000 -16.5353 0.2452 12.7188 0.2603 0.0000 0.0000 -81.5348 -29.0244 -11.4485 115.4611 0.0000 0.0000 -13.2390 3.5245 -18.1749 -4.1346 0.0000 -0.0000 - 0.3190 3.2456 16.1927 3.1369 -14.3979 170.1503 35.5415 -0.4898 0.0034 9.7625 -0.4149 0.4517 12.1401 0.8049 8.7284 -0.8632 -1.2989 2.2556 -6.2404 -1.8842 -1.5190 13.1666 -3.5692 -2.8748 2.5004 1.9791 10.9698 -27.8023 -41.8375 4.7271 -0.0000 0.0001 66.6356 26.5421 46.1209 -2.5462 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.7778 -3.3880 -10.7686 -23.9837 20.6773 -42.2461 -0.0000 -0.0000 -23.2016 -20.0968 -58.4190 -28.9878 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -66.4117 2.0234 -8.8949 109.5078 0.0000 0.0000 -14.9475 -0.0079 12.7460 -0.1331 0.0000 -0.0000 -80.1414 -29.1155 -10.4673 114.0424 0.0000 0.0000 -12.2374 3.4825 -18.2407 -4.5838 0.0000 -0.0000 - 0.2975 3.3758 16.5096 2.8613 -14.0546 170.2242 35.2280 -0.4119 -0.0318 9.7061 -0.3744 0.4636 12.2665 0.8331 8.6596 -0.8408 -1.3557 2.2591 -6.1634 -2.0335 -1.6669 13.5023 -3.6380 -2.9786 2.8667 1.3505 10.8132 -27.5649 -41.8137 3.7589 -0.0000 0.0001 66.6242 26.3112 45.8551 -2.0578 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 6.1514 -2.8956 -10.5939 -24.3614 21.9577 -40.7392 -0.0000 -0.0000 -25.2820 -18.6773 -58.3851 -28.5917 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -65.5885 1.9800 -8.5529 108.0681 0.0000 0.0000 -13.3917 -0.2880 12.7597 -0.3909 0.0000 -0.0000 -78.5785 -29.1588 -9.3449 112.4961 0.0000 0.0000 -11.3083 3.3976 -18.2866 -4.9693 0.0000 -0.0000 - 0.2735 3.5059 16.8393 2.6037 -13.6526 170.3022 34.9093 -0.2995 -0.0811 9.6550 -0.3199 0.4754 12.4055 0.8725 8.5817 -0.8173 -1.4172 2.2645 -6.1189 -2.2134 -1.8362 13.8058 -3.6923 -3.0905 3.1760 0.7204 10.6083 -27.2879 -41.9192 2.7220 -0.0000 0.0001 66.5291 25.9570 45.5700 -1.5396 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 6.4837 -2.3504 -10.4693 -24.6049 23.1788 -39.1200 -0.0000 -0.0000 -27.4680 -17.2381 -58.2882 -28.1802 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -64.6644 1.9490 -8.1529 106.5516 0.0000 0.0000 -11.9424 -0.5795 12.7290 -0.4989 0.0000 -0.0000 -76.8664 -29.1417 -8.1006 110.8494 0.0000 0.0000 -10.4769 3.2900 -18.3053 -5.2982 0.0000 -0.0000 - 0.2474 3.6360 17.1781 2.3592 -13.2025 170.3867 34.5973 -0.1590 -0.1397 9.6131 -0.2546 0.4872 12.5374 0.9194 8.5021 -0.7963 -1.4855 2.2714 -6.1118 -2.4116 -2.0263 14.0680 -3.7271 -3.2145 3.4347 0.0920 10.3634 -26.9987 -42.1308 1.5977 -0.0000 0.0001 66.3811 25.5118 45.2627 -1.0215 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 6.7609 -1.7620 -10.3922 -24.6912 24.3310 -37.4216 -0.0000 -0.0000 -29.7032 -15.8432 -58.1467 -27.7922 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -63.6514 1.9320 -7.7088 104.9894 0.0000 0.0000 -10.6554 -0.8662 12.6178 -0.4585 0.0000 -0.0000 -75.0423 -29.0576 -6.7668 109.1252 0.0000 0.0000 -9.7483 3.1794 -18.2936 -5.5844 0.0000 -0.0000 - 0.2200 3.7656 17.5230 2.1209 -12.7217 170.4782 34.3002 -0.0030 -0.2027 9.5828 -0.1828 0.4994 12.6516 0.9713 8.4286 -0.7852 -1.5583 2.2807 -6.1418 -2.6144 -2.2340 14.2827 -3.7440 -3.3541 3.6577 -0.5383 10.0872 -26.7194 -42.4161 0.3846 -0.0000 0.0001 66.2029 25.0033 44.9405 -0.5235 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 6.9868 -1.1441 -10.3496 -24.6090 25.4133 -35.6920 -0.0000 -0.0000 -31.9220 -14.5445 -57.9872 -27.4516 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -62.5679 1.9237 -7.2435 103.4033 0.0000 0.0000 -9.5679 -1.1315 12.3881 -0.2852 0.0000 -0.0000 -73.1494 -28.9077 -5.3830 107.3393 0.0000 0.0000 -9.1115 3.0827 -18.2534 -5.8411 0.0000 -0.0000 - 0.1917 3.8941 17.8714 1.8801 -12.2237 170.5747 34.0252 0.1602 -0.2676 9.5631 -0.1093 0.5117 12.7392 1.0255 8.3703 -0.7899 -1.6329 2.2925 -6.2063 -2.8124 -2.4515 14.4487 -3.7371 -3.5164 3.8673 -1.1776 9.7869 -26.4610 -42.7351 -0.8964 -0.0000 0.0001 66.0062 24.4576 44.6125 -0.0629 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 7.1702 -0.5104 -10.3201 -24.3527 26.4406 -33.9865 -0.0000 -0.0000 -34.0599 -13.3982 -57.8311 -27.1825 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -61.4398 1.9192 -6.7797 101.8050 0.0000 0.0000 -8.6988 -1.3574 12.0079 -0.0053 0.0000 -0.0000 -71.2270 -28.6967 -3.9806 105.4992 0.0000 0.0000 -8.5422 3.0109 -18.1883 -6.0867 0.0000 -0.0000 - 0.1630 4.0204 18.2209 1.6238 -11.7238 170.6708 33.7739 0.3210 -0.3309 9.5518 -0.0385 0.5245 12.7940 1.0782 8.3348 -0.8153 -1.7060 2.3074 -6.2986 -2.9887 -2.6758 14.5672 -3.7122 -3.6993 4.0880 -1.8338 9.4675 -26.2243 -43.0493 -2.2077 -0.0000 0.0001 65.7947 23.9018 44.2974 0.3494 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 7.3260 0.1253 -10.2785 -23.9267 27.4386 -32.3577 -0.0000 -0.0000 -36.0575 -12.4126 -57.7001 -26.9790 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -60.2997 1.9090 -6.3458 100.1929 0.0000 0.0000 -8.0497 -1.5247 11.4541 0.3504 0.0000 0.0000 -69.3166 -28.4356 -2.5897 103.6060 0.0000 0.0000 -8.0078 2.9685 -18.1053 -6.3312 0.0000 -0.0000 - 0.1347 4.1434 18.5698 1.3306 -11.2434 170.7579 33.5376 0.4641 -0.3845 9.5455 0.0246 0.5380 12.8133 1.1275 8.3272 -0.8639 -1.7726 2.3267 -6.4122 -3.1368 -2.9009 14.6431 -3.6649 -3.9040 4.3411 -2.5173 9.1317 -25.9956 -43.3264 -3.4958 -0.0000 0.0001 65.5631 23.3524 44.0115 0.7106 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 7.4673 0.7461 -10.2010 -23.3387 28.4386 -30.8497 -0.0000 -0.0000 -37.8689 -11.6032 -57.6062 -26.8416 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -59.1862 1.8756 -5.9797 98.5510 0.0000 0.0000 -7.6062 -1.6110 10.7153 0.7501 0.0000 0.0000 -67.4679 -28.1440 -1.2447 101.6584 0.0000 0.0000 -7.4719 2.9540 -18.0158 -6.5834 0.0000 -0.0000 - 0.1071 4.2618 18.9167 0.9840 -10.7932 170.8275 33.3104 0.5862 -0.4269 9.5387 0.0786 0.5519 12.7943 1.1673 8.3513 -0.9345 -1.8340 2.3505 -6.5379 -3.2391 -3.1186 14.6842 -3.6030 -4.1252 4.6457 -3.2280 8.7827 -25.7577 -43.5465 -4.7035 -0.0000 0.0001 65.3004 22.8313 43.7720 1.0175 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 7.6076 1.3500 -10.0649 -22.5971 29.4598 -29.5000 -0.0000 -0.0000 -39.4597 -10.9526 -57.5460 -26.7473 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -58.1342 1.8088 -5.7118 96.8544 0.0000 0.0000 -7.3420 -1.5919 9.7998 1.1645 0.0000 0.0000 -65.7125 -27.8381 0.0392 99.6514 0.0000 0.0000 -6.9013 2.9619 -17.9295 -6.8453 0.0000 -0.0000 - 0.0805 4.3747 19.2603 0.5668 -10.3820 170.8700 33.0798 0.6842 -0.4549 9.5250 0.1207 0.5644 12.7408 1.1951 8.4097 -1.0258 -1.8892 2.3777 -6.6675 -3.2847 -3.3191 14.6997 -3.5319 -4.3601 5.0081 -3.9679 8.4251 -25.4845 -43.6971 -5.7790 -0.0000 0.0001 64.9950 22.3432 43.5852 1.2774 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 7.7622 1.9349 -9.8540 -21.7143 30.5116 -28.3388 -0.0000 -0.0000 -40.8035 -10.4435 -57.5129 -26.6824 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -57.1757 1.6996 -5.5720 95.0701 0.0000 0.0000 -7.2204 -1.4436 8.7347 1.5740 0.0000 0.0000 -64.0779 -27.5349 1.2523 97.5818 0.0000 0.0000 -6.2695 2.9831 -17.8556 -7.1129 0.0000 -0.0000 - 0.0550 4.4810 19.5999 0.0618 -10.0130 170.8748 32.8297 0.7564 -0.4667 9.4995 0.1491 0.5761 12.6570 1.2109 8.4987 -1.1338 -1.9306 2.4082 -6.7962 -3.2784 -3.5013 14.7009 -3.4480 -4.5993 5.4285 -4.7406 8.0616 -25.1531 -43.7787 -6.6780 -0.0000 0.0001 64.6314 21.8943 43.4518 1.4988 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.9094 2.4691 -9.5778 -20.7043 31.6341 -27.3215 -0.0000 -0.0000 -41.9140 -10.0237 -57.4829 -26.6223 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -56.3386 1.5422 -5.5849 93.1610 0.0000 0.0000 -7.1950 -1.1468 7.5655 1.9638 0.0000 0.0000 -62.5853 -27.2494 2.3943 95.4495 0.0000 0.0000 -5.5599 3.0083 -17.8016 -7.3775 0.0000 -0.0000 - 0.0306 4.5804 19.9344 -0.5399 -9.6835 170.8361 32.5480 0.8055 -0.4658 9.4569 0.1684 0.5900 12.5492 1.2105 8.6080 -1.2531 -1.9611 2.4435 -6.9191 -3.2121 -3.6559 14.6979 -3.3567 -4.8355 5.9018 -5.5377 7.6990 -24.7467 -43.8002 -7.3714 -0.0000 0.0001 64.1964 21.4817 43.3675 1.6897 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 8.0579 2.9685 -9.2381 -19.5777 32.7981 -26.4536 -0.0000 -0.0000 -42.7857 -9.6588 -57.4348 -26.5510 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -55.6343 1.3412 -5.7702 91.0893 0.0000 0.0000 -7.2156 -0.6918 6.3557 2.3267 0.0000 0.0000 -61.2419 -26.9890 3.4714 93.2590 0.0000 0.0000 -4.7682 3.0290 -17.7712 -7.6263 0.0000 -0.0000 - 0.0074 4.6728 20.2630 -1.2450 -9.3915 170.7492 32.2211 0.8325 -0.4511 9.3944 0.1793 0.6035 12.4234 1.1951 8.7325 -1.3774 -1.9800 2.4814 -7.0344 -3.0869 -3.7795 14.7011 -3.2587 -5.0602 6.4118 -6.3525 7.3436 -24.2519 -43.7756 -7.8495 -0.0000 0.0001 63.6806 21.0992 43.3186 1.8596 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 8.2048 3.4374 -8.8495 -18.3484 33.9811 -25.7143 -0.0000 -0.0000 -43.4243 -9.3138 -57.3483 -26.4639 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -55.0635 1.1014 -6.1448 88.8188 0.0000 0.0000 -7.2277 -0.0834 5.1793 2.6591 0.0000 0.0000 -60.0537 -26.7613 4.4894 91.0217 0.0000 0.0000 -3.9010 3.0391 -17.7668 -7.8465 0.0000 -0.0000 - -0.0145 4.7582 20.5845 -2.0686 -9.1348 170.6108 31.8219 0.8328 -0.4216 9.3119 0.1860 0.6189 12.2875 1.1659 8.8572 -1.5010 -1.9874 2.5233 -7.1409 -2.9049 -3.8681 14.7188 -3.1553 -5.2649 6.9424 -7.1745 7.0062 -23.6680 -43.7234 -8.1214 -0.0000 0.0001 63.0770 20.7375 43.2912 2.0153 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 8.3405 3.8816 -8.4360 -17.0296 35.1526 -25.0653 -0.0000 -0.0000 -43.8444 -8.9492 -57.2101 -26.3559 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -54.6269 0.8281 -6.7236 86.3200 0.0000 0.0000 -7.1762 0.6548 4.1141 2.9570 0.0000 0.0000 -59.0398 -26.5734 5.4492 88.7577 0.0000 0.0000 -2.9736 3.0353 -17.7884 -8.0270 0.0000 -0.0000 - -0.0366 4.8381 20.8981 -2.9667 -8.8674 170.4261 31.3763 0.8486 -0.3973 9.2073 0.1879 0.6272 12.1492 1.1271 8.9879 -1.6192 -1.9844 2.5548 -7.2390 -2.6688 -3.9116 14.7584 -3.0432 -5.4487 7.4704 -7.9886 6.7008 -22.9965 -43.6619 -8.2137 -0.0000 0.0001 62.3855 20.3846 43.2669 2.1621 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 8.4705 4.3210 -8.0096 -15.6336 36.2660 -24.5035 -0.0000 -0.0000 -44.0420 -8.5530 -57.0234 -26.2422 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -54.2685 0.5687 -7.4733 83.5851 0.0000 0.0000 -7.0196 1.4797 3.2486 3.2140 0.0000 0.0000 -58.1254 -26.3944 6.4107 86.4769 0.0000 0.0000 -2.0153 3.0174 -17.8243 -8.1618 0.0000 -0.0000 - -0.0572 4.9147 21.2033 -3.8992 -8.6189 170.2065 30.9109 0.8513 -0.3630 9.0846 0.1877 0.6328 12.0140 1.0823 9.1049 -1.7270 -1.9683 2.5802 -7.3285 -2.3834 -3.9170 14.8259 -2.9271 -5.5988 7.9779 -8.7836 6.4325 -22.2483 -43.6166 -8.1575 -0.0000 0.0001 61.6039 20.0314 43.2344 2.3023 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 8.5803 4.7513 -7.6007 -14.1706 37.2968 -23.9880 -0.0000 -0.0000 -44.0287 -8.0979 -56.8002 -26.1264 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -53.9046 0.3093 -8.4182 80.5991 0.0000 0.0000 -6.7183 2.3369 2.6408 3.4207 0.0000 0.0000 -57.2807 -26.2491 7.3506 84.2098 0.0000 0.0000 -1.0573 2.9887 -17.8847 -8.2507 0.0000 -0.0000 - -0.0771 4.9882 21.4977 -4.8894 -8.3582 169.9594 30.3775 0.8495 -0.3312 8.9510 0.1891 0.6362 11.8880 1.0356 9.1967 -1.8212 -1.9385 2.5973 -7.4093 -2.0544 -3.8834 14.9248 -2.8038 -5.7131 8.4473 -9.5485 6.2086 -21.4307 -43.6051 -7.9865 -0.0000 0.0001 60.7356 19.6604 43.1882 2.4398 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 8.6662 5.1780 -7.2256 -12.6467 38.2178 -23.5107 -0.0000 -0.0000 -43.7993 -7.5771 -56.5639 -26.0186 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -53.5482 0.0795 -9.5379 77.3874 0.0000 0.0000 -6.2381 3.1638 2.3408 3.5637 0.0000 0.0000 -56.5345 -26.1138 8.2873 81.9824 0.0000 0.0000 -0.1238 2.9512 -17.9593 -8.2996 0.0000 -0.0000 - -0.0959 5.0615 21.7805 -5.8751 -8.0768 169.7068 29.8166 0.8522 -0.3083 8.8112 0.1900 0.6353 11.7755 0.9919 9.2623 -1.8997 -1.9000 2.6001 -7.4792 -1.6835 -3.8067 15.0572 -2.6719 -5.7985 8.8616 -10.2664 6.0296 -20.5501 -43.6491 -7.7374 -0.0000 0.0001 59.7867 19.2674 43.1214 2.5698 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 8.7244 5.6039 -6.8989 -11.0637 39.0150 -23.0734 -0.0000 -0.0000 -43.3431 -7.0067 -56.3492 -25.9367 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -53.1145 -0.1019 -10.8114 73.9874 0.0000 0.0000 -5.5651 3.9028 2.3726 3.6302 0.0000 0.0000 -55.8179 -25.9746 9.2369 79.8140 0.0000 0.0000 0.7562 2.9102 -18.0492 -8.3202 0.0000 -0.0000 - -0.1135 5.1366 22.0502 -6.8256 -7.7653 169.4678 29.2387 0.8579 -0.3022 8.6722 0.1916 0.6320 11.6773 0.9555 9.2900 -1.9609 -1.8468 2.5895 -7.5348 -1.2765 -3.6946 15.2237 -2.5368 -5.8474 9.2148 -10.9304 5.8980 -19.6185 -43.7669 -7.4409 -0.0000 0.0001 58.7610 18.8411 43.0399 2.6943 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 8.7641 6.0269 -6.6170 -9.4089 39.6709 -22.7171 -0.0000 -0.0000 -42.6381 -6.4077 -56.1948 -25.8834 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -52.5670 -0.2215 -12.2121 70.4595 0.0000 0.0000 -4.6926 4.5103 2.7286 3.6107 0.0000 0.0000 -55.1034 -25.8166 10.2074 77.7218 0.0000 0.0000 1.5650 2.8704 -18.1552 -8.3282 0.0000 -0.0000 - -0.1293 5.2162 22.3063 -7.6773 -7.4264 169.2650 28.6920 0.8675 -0.3162 8.5382 0.1917 0.6270 11.5931 0.9294 9.2771 -2.0050 -1.7789 2.5639 -7.5707 -0.8371 -3.5526 15.4237 -2.4003 -5.8601 9.5033 -11.5332 5.8098 -18.6386 -43.9725 -7.1187 -0.0000 0.0001 57.6655 18.3793 42.9490 2.8101 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 8.7938 6.4416 -6.3725 -7.6657 40.1839 -22.4921 -0.0000 -0.0000 -41.6598 -5.8254 -56.1316 -25.8658 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -51.8421 -0.2736 -13.7078 66.8778 0.0000 0.0000 -3.6318 4.9644 3.3724 3.5018 0.0000 0.0000 -54.3244 -25.6302 11.2041 75.7138 0.0000 0.0000 2.2923 2.8379 -18.2845 -8.3423 0.0000 -0.0000 - -0.1429 5.2998 22.5468 -8.4705 -7.0557 169.1085 28.1208 0.8726 -0.3512 8.4164 0.1884 0.6184 11.5219 0.9160 9.2269 -2.0326 -1.6989 2.5215 -7.5810 -0.3688 -3.3795 15.6533 -2.2650 -5.8465 9.7278 -12.0691 5.7575 -17.6102 -44.2738 -6.7813 -0.0000 0.0001 56.5061 17.8762 42.8556 2.9175 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 8.8173 6.8426 -6.1582 -5.8120 40.5616 -22.4436 -0.0000 -0.0000 -40.3926 -5.3019 -56.1783 -25.8787 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -51.0099 -0.2608 -15.2626 63.3325 0.0000 0.0000 -2.3969 5.2646 4.2351 3.3086 0.0000 0.0000 -53.5448 -25.4060 12.2087 73.8001 0.0000 0.0000 2.9504 2.8184 -18.4383 -8.3792 0.0000 -0.0000 - -0.1551 5.3896 22.7722 -9.1360 -6.6325 169.0102 27.5889 0.8999 -0.4189 8.3041 0.1790 0.6083 11.4605 0.9175 9.1404 -2.0460 -1.6003 2.4614 -7.5603 0.1206 -3.1823 15.9079 -2.1363 -5.8075 9.8942 -12.5418 5.7335 -16.5304 -44.6715 -6.4289 -0.0000 0.0001 55.2873 17.3315 42.7649 3.0178 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 8.8470 7.2181 -5.9555 -3.8206 40.8120 -22.6386 -0.0000 -0.0000 -38.8193 -4.9034 -56.3380 -25.9224 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -50.0370 -0.1605 -16.8006 59.9221 0.0000 0.0000 -1.0368 5.4308 5.2432 3.0454 0.0000 0.0000 -52.6748 -25.1132 13.2506 71.9621 0.0000 0.0000 3.5536 2.8219 -18.6159 -8.4536 0.0000 -0.0000 - -0.1642 5.4855 22.9829 -9.6761 -6.1981 168.9714 27.1012 0.9194 -0.4961 8.2006 0.1639 0.5968 11.4045 0.9302 9.0187 -2.0473 -1.4895 2.3887 -7.5039 0.6337 -2.9669 16.1816 -2.0234 -5.7448 10.0121 -12.9523 5.7259 -15.3909 -45.1599 -6.0499 -0.0000 0.0001 54.0162 16.7479 42.6809 3.1102 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 8.8946 7.5694 -5.7472 -1.6666 40.9369 -23.1358 -0.0000 -0.0000 -36.9347 -4.7012 -56.5904 -25.9967 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -48.9486 -0.0130 -18.2877 56.7135 0.0000 0.0000 0.3973 5.4957 6.2963 2.7330 0.0000 0.0000 -51.7361 -24.7820 14.2830 70.1984 0.0000 0.0000 4.1329 2.8604 -18.8303 -8.5741 0.0000 -0.0000 - -0.1705 5.5867 23.1796 -10.1042 -5.7510 168.9853 26.6517 0.9352 -0.5776 8.1021 0.1430 0.5842 11.3504 0.9522 8.8669 -2.0394 -1.3665 2.3052 -7.4104 1.1645 -2.7414 16.4659 -1.9302 -5.6595 10.0924 -13.3089 5.7243 -14.1815 -45.7245 -5.6254 -0.0000 0.0001 52.6994 16.1249 42.6038 3.1989 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 8.9681 7.8955 -5.5163 0.6671 40.9385 -23.9766 -0.0000 -0.0000 -34.7489 -4.7574 -56.8927 -26.0987 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -47.7990 0.1757 -19.6540 53.7729 0.0000 0.0000 1.8377 5.4930 7.3060 2.3961 0.0000 0.0000 -50.7452 -24.4071 15.2930 68.4933 0.0000 0.0000 4.7284 2.9498 -19.0763 -8.7407 0.0000 -0.0000 - -0.1738 5.6921 23.3633 -10.4399 -5.3053 169.0411 26.2333 0.9379 -0.6519 8.0049 0.1144 0.5703 11.2951 0.9838 8.6936 -2.0260 -1.2276 2.2109 -7.2823 1.7005 -2.5064 16.7517 -1.8593 -5.5620 10.1443 -13.6237 5.7180 -12.8930 -46.3493 -5.1332 -0.0000 0.0001 51.3416 15.4660 42.5273 3.2926 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 9.0711 8.1947 -5.2529 3.1801 40.8172 -25.1671 -0.0000 -0.0000 -32.2959 -5.1193 -57.1850 -26.2221 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -46.6356 0.3848 -20.8418 51.1348 0.0000 0.0000 3.2139 5.4511 8.1944 2.0592 0.0000 0.0000 -49.7302 -23.9983 16.2492 66.8361 0.0000 0.0000 5.3829 3.1096 -19.3478 -8.9438 0.0000 -0.0000 - -0.1745 5.8006 23.5355 -10.6995 -4.8688 169.1273 25.8431 0.9282 -0.7110 7.9044 0.0826 0.5556 11.2361 1.0181 8.5014 -2.0099 -1.0808 2.1126 -7.1250 2.2426 -2.2725 17.0291 -1.8168 -5.4493 10.1779 -13.9064 5.6969 -11.5146 -47.0085 -4.5510 -0.0000 0.0001 49.9561 14.7782 42.4439 3.3914 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 9.2074 8.4797 -4.9477 5.8539 40.5687 -26.6926 -0.0000 -0.0000 -29.6226 -5.8205 -57.3968 -26.3718 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -45.4937 0.5994 -21.7992 48.8091 0.0000 0.0000 4.4582 5.3892 8.9080 1.7440 0.0000 0.0000 -48.7135 -23.5593 17.1218 65.2187 0.0000 0.0000 6.1360 3.3629 -19.6311 -9.1642 0.0000 -0.0000 - -0.1726 5.9111 23.6974 -10.9011 -4.4504 169.2332 25.4755 0.9035 -0.7508 7.7987 0.0490 0.5402 11.1715 1.0535 8.2965 -1.9941 -0.9265 2.0123 -6.9476 2.7795 -2.0432 17.2878 -1.8038 -5.3281 10.2006 -14.1703 5.6534 -10.0437 -47.6793 -3.8631 -0.0000 0.0000 48.5548 14.0681 42.3441 3.5013 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 9.3727 8.7548 -4.6017 8.6400 40.2026 -28.4838 -0.0000 -0.0000 -26.8049 -6.8441 -57.4582 -26.5358 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -44.3977 0.8037 -22.4945 46.7783 0.0000 0.0000 5.5182 5.3174 9.4194 1.4664 0.0000 0.0000 -47.7219 -23.0946 17.8745 63.6422 0.0000 0.0000 7.0195 3.7353 -19.9072 -9.3749 0.0000 -0.0000 - -0.1685 6.0227 23.8503 -11.0588 -4.0530 169.3504 25.1249 0.8671 -0.7721 7.6877 0.0157 0.5244 11.1007 1.0879 8.0842 -1.9812 -0.7684 1.9127 -6.7622 3.2997 -1.8251 17.5187 -1.8157 -5.2049 10.2178 -14.4256 5.5811 -8.4839 -48.3397 -3.0641 -0.0000 0.0000 47.1545 13.3437 42.2181 3.6250 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 9.5584 9.0257 -4.2244 11.4619 39.7462 -30.4320 -0.0000 -0.0000 -23.9377 -8.1324 -57.3154 -26.6970 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -43.3593 0.9880 -22.9173 45.0065 0.0000 0.0000 6.3613 5.2405 9.7292 1.2364 0.0000 0.0000 -46.7789 -22.6033 18.4720 62.1163 0.0000 0.0000 8.0508 4.2536 -20.1520 -9.5426 0.0000 -0.0000 - -0.1628 6.1348 23.9949 -11.1806 -3.6744 169.4725 24.7896 0.8265 -0.7810 7.5732 -0.0144 0.5087 11.0228 1.1202 7.8682 -1.9733 -0.6098 1.8164 -6.5818 3.7975 -1.6258 17.7123 -1.8529 -5.0816 10.2331 -14.6797 5.4771 -6.8497 -48.9739 -2.1614 -0.0000 0.0000 45.7740 12.6154 42.0629 3.7650 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 9.7498 9.2946 -3.8321 14.2222 39.2527 -32.3943 -0.0000 -0.0000 -21.1322 -9.5858 -56.9435 -26.8291 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -42.3766 1.1490 -23.0800 43.4462 0.0000 0.0000 6.9783 5.1613 9.8623 1.0571 0.0000 0.0000 -45.9006 -22.0800 18.8831 60.6582 0.0000 0.0000 9.2309 4.9441 -20.3388 -9.6354 0.0000 -0.0000 - -0.1558 6.2470 24.1316 -11.2726 -3.3070 169.5945 24.4665 0.7932 -0.7854 7.4585 -0.0393 0.4934 10.9384 1.1511 7.6519 -1.9727 -0.4545 1.7237 -6.4213 4.2613 -1.4470 17.8604 -1.9081 -4.9718 10.2469 -14.9384 5.3413 -5.1656 -49.5693 -1.1783 -0.0000 0.0000 44.4350 11.8938 41.8785 3.9184 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 9.9351 9.5599 -3.4415 16.8213 38.7930 -34.2347 -0.0000 -0.0000 -18.4934 -11.0899 -56.3633 -26.9145 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -41.4434 1.2903 -23.0158 42.0467 0.0000 0.0000 7.3822 5.0831 9.8606 0.9273 0.0000 0.0000 -45.1008 -21.5165 19.0836 59.2908 0.0000 0.0000 10.5418 5.8298 -20.4420 -9.6241 0.0000 -0.0000 - -0.1482 6.3588 24.2608 -11.3388 -2.9417 169.7123 24.1540 0.7781 -0.7933 7.3470 -0.0564 0.4790 10.8478 1.1824 7.4367 -1.9806 -0.3051 1.6353 -6.2946 4.6856 -1.2956 17.9564 -1.9769 -4.8809 10.2595 -15.2025 5.1772 -3.4656 -50.1221 -0.1479 -0.0000 0.0000 43.1573 11.1902 41.6718 4.0813 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 10.1026 9.8200 -3.0668 19.1743 38.4401 -35.8362 -0.0000 -0.0000 -16.1121 -12.5308 -55.6342 -26.9408 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -40.5503 1.4191 -22.7738 40.7596 0.0000 0.0000 7.6057 5.0089 9.7747 0.8411 0.0000 0.0000 -44.3885 -20.9060 19.0595 58.0394 0.0000 0.0000 11.9467 6.9269 -20.4418 -9.4880 0.0000 -0.0000 - -0.1403 6.4698 24.3825 -11.3835 -2.5704 169.8220 23.8502 0.7901 -0.8093 7.2423 -0.0637 0.4657 10.7520 1.2165 7.2233 -1.9985 -0.1652 1.5512 -6.2149 5.0667 -1.1769 17.9945 -2.0523 -4.8183 10.2690 -15.4693 4.9905 -1.7899 -50.6353 0.8864 -0.0000 0.0000 41.9600 10.5111 41.4565 4.2478 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 10.2466 10.0743 -2.7183 21.2247 38.2502 -37.1255 -0.0000 -0.0000 -14.0470 -13.8266 -54.8436 -26.9168 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -39.6893 1.5435 -22.4119 39.5432 0.0000 0.0000 7.6948 4.9407 9.6557 0.7899 0.0000 0.0000 -43.7700 -20.2461 18.8096 56.9273 0.0000 0.0000 13.3925 8.2401 -20.3275 -9.2176 0.0000 -0.0000 - -0.1326 6.5794 24.4968 -11.4093 -2.1862 169.9201 23.5548 0.8348 -0.8363 7.1466 -0.0608 0.4534 10.6531 1.2583 7.0136 -2.0276 -0.0335 1.4682 -6.1936 5.3964 -1.0932 17.9703 -2.1244 -4.7973 10.2732 -15.7345 4.7902 -0.1786 -51.1192 1.8812 -0.0000 0.0000 40.8559 9.8594 41.2473 4.4134 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 10.3709 10.3233 -2.3959 22.9520 38.2398 -38.0822 -0.0000 -0.0000 -12.3208 -14.9347 -54.0882 -26.8630 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -38.8546 1.6728 -21.9873 38.3672 0.0000 0.0000 7.7026 4.8778 9.5480 0.7628 0.0000 0.0000 -43.2451 -19.5381 18.3512 55.9692 0.0000 0.0000 14.8146 9.7584 -20.0994 -8.8154 0.0000 -0.0000 - -0.1252 6.6872 24.6037 -11.4217 -1.7871 170.0046 23.2667 0.9109 -0.8718 7.0614 -0.0458 0.4422 10.5526 1.3105 6.8043 -2.0682 0.0907 1.3865 -6.2389 5.6740 -1.0522 17.8808 -2.1884 -4.8225 10.2715 -15.9953 4.5871 1.3339 -51.5827 2.7982 -0.0000 0.0000 39.8545 9.2371 41.0619 4.5692 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 10.4773 10.5650 -2.0971 24.3654 38.4035 -38.7183 -0.0000 -0.0000 -10.9254 -15.8414 -53.4442 -26.8044 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -38.0447 1.8117 -21.5514 37.2112 0.0000 0.0000 7.6828 4.8170 9.4833 0.7486 0.0000 0.0000 -42.8118 -18.7909 17.7168 55.1694 0.0000 0.0000 16.1436 11.4508 -19.7692 -8.2957 0.0000 -0.0000 - -0.1183 6.7926 24.7036 -11.4245 -1.3739 170.0751 22.9870 1.0158 -0.9123 6.9859 -0.0187 0.4315 10.4527 1.3755 6.5954 -2.1201 0.2069 1.3041 -6.3561 5.9001 -1.0553 17.7243 -2.2390 -4.9052 10.2615 -16.2434 4.3904 2.7237 -52.0394 3.6098 -0.0000 0.0000 38.9577 8.6431 40.9138 4.7081 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 10.5728 10.8042 -1.8199 25.4914 38.7046 -39.0680 -0.0000 -0.0000 -9.8327 -16.5554 -52.9638 -26.7620 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -37.2606 1.9635 -21.1432 36.0662 0.0000 0.0000 7.6829 4.7533 9.4774 0.7360 0.0000 0.0000 -42.4615 -18.0166 16.9549 54.5156 0.0000 0.0000 17.3135 13.2664 -19.3566 -7.6813 0.0000 -0.0000 - -0.1117 6.8948 24.7967 -11.4276 -0.9540 170.1348 22.7127 1.1384 -0.9513 6.9187 0.0196 0.4219 10.3545 1.4544 6.3848 -2.1821 0.3160 1.2196 -6.5462 6.0759 -1.1049 17.5005 -2.2709 -5.0550 10.2415 -16.4746 4.2086 3.9808 -52.4983 4.3020 0.0000 0.0000 38.1627 8.0762 40.8113 4.8218 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 10.6561 11.0393 -1.5678 26.3666 39.1095 -39.1663 -0.0000 -0.0000 -9.0059 -17.0898 -52.6652 -26.7470 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -36.5095 2.1240 -20.7885 34.9302 0.0000 0.0000 7.7412 4.6819 9.5277 0.7163 0.0000 0.0000 -42.1903 -17.2341 16.1186 53.9813 0.0000 0.0000 18.2703 15.1374 -18.8861 -7.0002 0.0000 -0.0000 - -0.1056 6.9933 24.8837 -11.4364 -0.5319 170.1881 22.4435 1.2691 -0.9842 6.8569 0.0675 0.4125 10.2621 1.5489 6.1700 -2.2537 0.4227 1.1314 -6.8073 6.2015 -1.2040 17.2104 -2.2817 -5.2754 10.2127 -16.6888 4.0515 5.1097 -52.9621 4.8790 0.0000 0.0000 37.4594 7.5335 40.7580 4.9036 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 10.7303 11.2681 -1.3378 27.0371 39.5704 -39.0697 -0.0000 -0.0000 -8.3950 -17.4691 -52.5368 -26.7601 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -35.7970 2.2918 -20.4946 33.8097 0.0000 0.0000 7.8812 4.5985 9.6176 0.6828 0.0000 0.0000 -41.9843 -16.4570 15.2674 53.5209 0.0000 0.0000 18.9783 16.9871 -18.3814 -6.2817 0.0000 -0.0000 - -0.0997 7.0878 24.9653 -11.4601 -0.1156 170.2418 22.1754 1.3984 -1.0073 6.7969 0.1194 0.4016 10.1780 1.6596 5.9498 -2.3330 0.5266 1.0398 -7.1342 6.2848 -1.3544 16.8573 -2.2724 -5.5685 10.1748 -16.8825 3.9231 6.1313 -53.4305 5.3613 0.0000 0.0000 36.8339 7.0147 40.7498 4.9477 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 10.7943 11.4943 -1.1339 27.5431 40.0475 -38.8210 -0.0000 -0.0000 -7.9542 -17.7182 -52.5469 -26.7946 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -35.1316 2.4612 -20.2559 32.7133 0.0000 0.0000 8.1116 4.5012 9.7183 0.6333 0.0000 0.0000 -41.8330 -15.6998 14.4517 53.0774 0.0000 0.0000 19.4245 18.7392 -17.8646 -5.5538 0.0000 -0.0000 - -0.0943 7.1777 25.0422 -11.5077 0.2856 170.3037 21.9047 1.5145 -1.0196 6.7346 0.1746 0.3910 10.1029 1.7808 5.7229 -2.4170 0.6295 0.9444 -7.5183 6.3326 -1.5547 16.4452 -2.2439 -5.9361 10.1270 -17.0537 3.8259 7.0772 -53.8993 5.7807 0.0000 0.0000 36.2686 6.5218 40.7737 4.9522 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 10.8479 11.7201 -0.9595 27.9229 40.5081 -38.4643 -0.0000 -0.0000 -7.6380 -17.8654 -52.6514 -26.8386 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -34.5209 2.6241 -20.0558 31.6495 0.0000 0.0000 8.4275 4.3891 9.7939 0.5691 0.0000 0.0000 -41.7259 -14.9743 13.7089 52.5866 0.0000 0.0000 19.6199 20.3260 -17.3558 -4.8415 0.0000 -0.0000 - -0.0894 7.2630 25.1151 -11.5837 0.6688 170.3788 21.6280 1.6143 -1.0231 6.6660 0.2291 0.3809 10.0396 1.9096 5.4893 -2.5033 0.7326 0.8450 -7.9491 6.3513 -1.8053 15.9802 -2.1979 -6.3733 10.0711 -17.2065 3.7606 7.9901 -54.3525 6.1816 0.0000 0.0000 35.7469 6.0572 40.8149 4.9160 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 10.8908 11.9459 -0.8142 28.2146 40.9281 -38.0468 -0.0000 -0.0000 -7.4023 -17.9428 -52.8018 -26.8793 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -33.9695 2.7788 -19.8667 30.6290 0.0000 0.0000 8.8098 4.2618 9.8109 0.4949 0.0000 0.0000 -41.6436 -14.2823 13.0667 51.9784 0.0000 0.0000 19.5980 21.6964 -16.8727 -4.1668 0.0000 -0.0000 - -0.0853 7.3441 25.1846 -11.6934 1.0230 170.4719 21.3386 1.6895 -1.0188 6.5897 0.2786 0.3691 9.9888 2.0422 5.2503 -2.5886 0.8334 0.7439 -8.4152 6.3522 -2.1020 15.4698 -2.1397 -6.8746 10.0051 -17.3374 3.7234 8.9158 -54.7805 6.6109 0.0000 0.0000 35.2511 5.6263 40.8516 4.8448 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 10.9222 12.1751 -0.6972 28.4496 41.2942 -37.6059 -0.0000 -0.0000 -7.2128 -17.9804 -52.9543 -26.9027 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -33.4775 2.9148 -19.6653 29.6545 0.0000 0.0000 9.2329 4.1195 9.7410 0.4180 0.0000 0.0000 -41.5702 -13.6297 12.5305 51.1906 0.0000 0.0000 19.4112 22.8179 -16.4356 -3.5489 0.0000 -0.0000 - -0.0824 7.4214 25.2509 -11.8359 1.3456 170.5810 21.0323 1.7427 -1.0114 6.5033 0.3203 0.3559 9.9522 2.1724 5.0091 -2.6698 0.9309 0.6430 -8.9040 6.3435 -2.4402 14.9224 -2.0714 -7.4324 9.9284 -17.4460 3.7100 9.8973 -55.1681 7.1131 0.0000 0.0000 34.7675 5.2328 40.8625 4.7483 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 10.9410 12.4098 -0.6072 28.6523 41.6054 -37.1699 -0.0000 -0.0000 -7.0441 -18.0088 -53.0765 -26.9014 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -33.0420 3.0287 -19.4244 28.7302 0.0000 0.0000 9.6658 3.9617 9.5681 0.3463 0.0000 0.0000 -41.4793 -13.0135 12.1002 50.1670 0.0000 0.0000 19.1247 23.6769 -16.0650 -3.0047 0.0000 -0.0000 - -0.0808 7.4960 25.3139 -12.0076 1.6285 170.6997 20.7051 1.7732 -1.0028 6.4069 0.3531 0.3422 9.9306 2.2940 4.7699 -2.7443 1.0233 0.5444 -9.4025 6.3321 -2.8161 14.3472 -1.9960 -8.0353 9.8419 -17.5378 3.7134 10.9708 -55.4932 7.7248 0.0000 0.0000 34.2909 4.8803 40.8313 4.6359 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.9440 12.6441 -0.5411 28.8492 41.8760 -36.7670 -0.0000 -0.0000 -6.8754 -18.0569 -53.1455 -26.8741 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -32.6533 3.1110 -19.1266 27.8534 0.0000 0.0000 10.0795 3.7887 9.2890 0.2867 0.0000 0.0000 -41.3433 -12.4353 11.7609 48.8686 0.0000 0.0000 18.8090 24.2770 -15.7835 -2.5485 0.0000 -0.0000 - -0.0809 7.5689 25.3734 -12.1994 1.8684 170.8152 20.3551 1.7864 -0.9975 6.3017 0.3759 0.3273 9.9237 2.4027 4.5394 -2.8093 1.1082 0.4514 -9.8992 6.3239 -3.2212 13.7539 -1.9148 -8.6726 9.7445 -17.6090 3.7274 12.1545 -55.7470 8.4669 0.0000 0.0000 33.8151 4.5699 40.7436 4.5264 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 10.9276 12.8781 -0.4934 29.0527 42.1240 -36.4051 -0.0000 -0.0000 -6.7026 -18.1432 -53.1574 -26.8219 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -32.2988 3.1559 -18.7609 27.0213 0.0000 0.0000 10.4486 3.6017 8.9165 0.2446 0.0000 0.0000 -41.1291 -11.8936 11.4942 47.2739 0.0000 0.0000 18.5305 24.6350 -15.6095 -2.1913 0.0000 -0.0000 - -0.0832 7.6417 25.4288 -12.3974 2.0620 170.9090 19.9831 1.7885 -0.9971 6.1904 0.3889 0.3118 9.9313 2.4966 4.3247 -2.8634 1.1824 0.3653 -10.3835 6.3224 -3.6474 13.1522 -1.8289 -9.3313 9.6393 -17.6613 3.7471 13.4485 -55.9166 9.3436 0.0000 0.0000 33.3420 4.2978 40.5965 4.4372 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 10.8852 13.1067 -0.4558 29.2752 42.3767 -36.0897 -0.0000 -0.0000 -6.5258 -18.2802 -53.1180 -26.7531 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -31.9607 3.1572 -18.3262 26.2298 0.0000 0.0000 10.7551 3.4036 8.4762 0.2221 0.0000 0.0000 -40.8019 -11.3895 11.2763 45.3843 0.0000 0.0000 18.3406 24.7768 -15.5544 -1.9390 0.0000 -0.0000 - -0.0876 7.7157 25.4794 -12.5851 2.2005 170.9588 19.5938 1.7812 -0.9995 6.0760 0.3940 0.2960 9.9515 2.5715 4.1335 -2.9054 1.2450 0.2905 -10.8459 6.3274 -4.0880 12.5519 -1.7361 -9.9996 9.5254 -17.6973 3.7647 14.8292 -55.9952 10.3320 0.0000 0.0000 32.8802 4.0612 40.3929 4.3823 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 10.8129 13.3217 -0.4230 29.5264 42.6632 -35.8233 -0.0000 -0.0000 -6.3486 -18.4759 -53.0438 -26.6818 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -31.6164 3.1008 -17.8310 25.4700 0.0000 0.0000 10.9912 3.1982 7.9998 0.2185 0.0000 0.0000 -40.3325 -10.9333 11.0759 43.2299 0.0000 0.0000 18.2670 24.7323 -15.6199 -1.7922 0.0000 -0.0000 - -0.0940 7.7926 25.5244 -12.7433 2.2766 170.9403 19.1959 1.7672 -1.0021 5.9617 0.3927 0.2800 9.9810 2.6265 3.9740 -2.9348 1.2943 0.2301 -11.2785 6.3397 -4.5354 11.9614 -1.6368 -10.6647 9.4037 -17.7158 3.7756 16.2529 -55.9864 11.3927 0.0000 0.0000 32.4376 3.8518 40.1446 4.3777 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.7068 13.5189 -0.3868 29.8086 43.0083 -35.5991 -0.0000 -0.0000 -6.1808 -18.7257 -52.9579 -26.6210 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -31.2414 2.9743 -17.2893 24.7341 0.0000 0.0000 11.1573 2.9900 7.5233 0.2306 0.0000 0.0000 -39.6976 -10.5372 10.8609 40.8666 0.0000 0.0000 18.3064 24.5307 -15.7925 -1.7465 0.0000 -0.0000 - -0.1020 7.8734 25.5628 -12.8558 2.2791 170.8320 18.7974 1.7428 -1.0012 5.8520 0.3838 0.2660 10.0165 2.6671 3.8509 -2.9533 1.3278 0.1848 -11.6750 6.3548 -4.9805 11.3890 -1.5297 -11.3166 9.2783 -17.7202 3.7794 17.6583 -55.8977 12.4688 0.0000 0.0000 32.0269 3.6596 39.8714 4.4308 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 10.5605 13.6893 -0.3401 30.1227 43.4399 -35.4055 -0.0000 -0.0000 -6.0341 -19.0143 -52.8823 -26.5830 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -30.8132 2.7612 -16.7207 24.0127 0.0000 0.0000 11.2615 2.7835 7.0795 0.2543 0.0000 0.0000 -38.8904 -10.2197 10.5947 38.3783 0.0000 0.0000 18.4220 24.1981 -16.0447 -1.7931 0.0000 -0.0000 - -0.1111 7.9589 25.5942 -12.9061 2.2025 170.6163 18.4133 1.7051 -0.9935 5.7469 0.3771 0.2523 10.0535 2.6876 3.7724 -2.9625 1.3470 0.1555 -12.0316 6.3695 -5.4171 10.8409 -1.4140 -11.9460 9.1522 -17.7130 3.7726 18.9816 -55.7431 13.5045 0.0000 0.0000 31.6571 3.4719 39.5965 4.5450 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.3799 13.8311 -0.2739 30.4711 43.9624 -35.2473 -0.0000 -0.0000 -5.9105 -19.3314 -52.8363 -26.5800 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -30.3101 2.4522 -16.1420 23.2986 0.0000 0.0000 11.3161 2.5827 6.6953 0.2848 0.0000 0.0000 -37.9126 -9.9950 10.2483 35.8645 0.0000 0.0000 18.5479 23.7542 -16.3351 -1.9225 0.0000 -0.0000 - -0.1219 8.0489 25.6182 -12.9046 2.0687 170.2780 18.0337 1.6741 -0.9805 5.6469 0.3711 0.2387 10.0838 2.6935 3.7406 -2.9635 1.3516 0.1431 -12.3476 6.3815 -5.8391 10.3215 -1.2909 -12.5451 9.0230 -17.6973 3.7543 20.1533 -55.5446 14.4335 0.0000 0.0000 31.3380 3.2786 39.3379 4.7177 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 10.1639 13.9451 -0.1849 30.8481 44.5806 -35.1116 -0.0000 -0.0000 -5.8167 -19.6517 -52.8302 -26.6154 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -29.7560 2.0636 -15.5533 22.6041 0.0000 0.0000 11.3304 2.3909 6.3908 0.3185 0.0000 0.0000 -36.8013 -9.8558 9.8151 33.4259 0.0000 0.0000 18.6012 23.2089 -16.6081 -2.1211 0.0000 -0.0000 - -0.1337 8.1424 25.6347 -12.8620 1.8796 169.8168 17.6499 1.6492 -0.9646 5.5552 0.3658 0.2298 10.1082 2.6837 3.7517 -2.9653 1.3459 0.1461 -12.6206 6.3844 -6.2403 9.8326 -1.1618 -13.1092 8.9033 -17.6795 3.7354 21.1042 -55.3246 15.1973 0.0000 0.0000 31.0769 3.0665 39.1186 4.9403 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 9.9210 14.0322 -0.0765 31.2383 45.2925 -34.9794 -0.0000 -0.0000 -5.7582 -19.9522 -52.8701 -26.6890 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -29.1607 1.5953 -14.9639 21.9285 0.0000 0.0000 11.3175 2.2110 6.1697 0.3539 0.0000 0.0000 -35.6042 -9.8090 9.2873 31.1719 0.0000 0.0000 18.4903 22.5656 -16.8172 -2.3760 0.0000 -0.0000 - -0.1463 8.2388 25.6444 -12.7843 1.6452 169.2405 17.2748 1.6310 -0.9485 5.4601 0.3610 0.2208 10.1176 2.6703 3.8031 -2.9659 1.3241 0.1643 -12.8562 6.3769 -6.6183 9.3746 -1.0313 -13.6346 8.7834 -17.6684 3.7086 21.8002 -55.1025 15.7623 0.0000 0.0000 30.8755 2.8284 38.9490 5.2010 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 9.6584 14.1014 0.0548 31.6395 46.0708 -34.8549 -0.0000 -0.0000 -5.7279 -20.2147 -52.9458 -26.7916 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -28.5289 1.0590 -14.3778 21.2702 0.0000 0.0000 11.2862 2.0469 6.0275 0.3922 0.0000 0.0000 -34.3593 -9.8505 8.6885 29.1871 0.0000 0.0000 18.1381 21.8159 -16.9321 -2.6723 0.0000 -0.0000 - -0.1587 8.3376 25.6482 -12.6607 1.3641 168.5656 16.9287 1.6153 -0.9382 5.3663 0.3652 0.2185 10.1074 2.6377 3.8836 -2.9713 1.2941 0.1956 -13.0573 6.3546 -6.9692 8.9466 -0.9014 -14.1216 8.6707 -17.6686 3.6818 22.2039 -54.9004 16.0991 0.0000 0.0000 30.7339 2.5633 38.8336 5.4804 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 9.3884 14.1624 0.2011 32.0317 46.8943 -34.7203 -0.0000 -0.0000 -5.7241 -20.4223 -53.0444 -26.9122 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -27.8373 0.4605 -13.8004 20.6172 0.0000 0.0000 11.2420 1.9036 5.9490 0.4376 0.0000 0.0000 -33.0802 -9.9786 8.0617 27.5293 0.0000 0.0000 17.4903 20.9488 -16.9462 -2.9926 0.0000 -0.0000 - -0.1718 8.4368 25.6468 -12.5259 1.0757 167.8044 16.5854 1.6320 -0.9337 5.2713 0.3617 0.2149 10.0728 2.6018 3.9895 -2.9837 1.2532 0.2336 -13.2289 6.3198 -7.2934 8.5443 -0.7790 -14.5677 8.5642 -17.6889 3.6553 22.3101 -54.7249 16.2017 0.0000 0.0000 30.6519 2.2738 38.7726 5.7557 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 9.1224 14.2267 0.3581 32.4090 47.7309 -34.5790 -0.0000 -0.0000 -5.7339 -20.5685 -53.1425 -27.0343 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -27.1399 -0.1611 -13.2100 19.9918 0.0000 0.0000 11.1742 1.7857 5.9151 0.4975 0.0000 0.0000 -31.8185 -10.1593 7.4905 26.2076 0.0000 0.0000 16.5326 19.9461 -16.8629 -3.3093 0.0000 -0.0000 - -0.1849 8.5357 25.6411 -12.3846 0.7740 166.9834 16.2528 1.6610 -0.9344 5.1734 0.3610 0.2133 10.0120 2.5535 4.1026 -3.0051 1.2057 0.2766 -13.3765 6.2691 -7.5904 8.1642 -0.6681 -14.9754 8.4681 -17.7337 3.6316 22.1342 -54.5821 16.0878 0.0000 0.0000 30.6218 1.9670 38.7626 6.0055 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 8.8756 14.3009 0.5210 32.7674 48.5476 -34.4413 -0.0000 -0.0000 -5.7441 -20.6565 -53.2181 -27.1406 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -26.4272 -0.8048 -12.6094 19.3793 0.0000 0.0000 11.0785 1.6989 5.8983 0.5814 0.0000 0.0000 -30.5891 -10.3915 7.0436 25.2101 0.0000 0.0000 15.2822 18.8037 -16.7188 -3.5977 0.0000 -0.0000 - -0.1977 8.6334 25.6318 -12.2457 0.4681 166.1251 15.9296 1.7002 -0.9388 5.0724 0.3654 0.2136 9.9241 2.4893 4.2093 -3.0370 1.1497 0.3219 -13.5048 6.2086 -7.8601 7.8016 -0.5751 -15.3468 8.3815 -17.7991 3.6082 21.7126 -54.4747 15.7909 0.0000 0.0000 30.6331 1.6573 38.7937 6.2103 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 8.6572 14.4027 0.6790 33.0888 49.3156 -34.2911 -0.0000 -0.0000 -5.7536 -20.6879 -53.2586 -27.2105 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -25.7044 -1.4566 -11.9912 18.7750 0.0000 0.0000 10.9424 1.6487 5.8738 0.6994 0.0000 0.0000 -29.3989 -10.6607 6.7935 24.4849 0.0000 0.0000 13.7887 17.5326 -16.5527 -3.8321 0.0000 -0.0000 - -0.2101 8.7293 25.6194 -12.1197 0.1591 165.2559 15.6126 1.7381 -0.9404 4.9691 0.3755 0.2135 9.8075 2.4091 4.2937 -3.0776 1.0863 0.3656 -13.6206 6.1364 -8.1048 7.4528 -0.5025 -15.6857 8.3073 -17.8873 3.5828 21.1023 -54.3928 15.3641 0.0000 0.0000 30.6749 1.3587 38.8583 6.3502 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 8.4737 14.5302 0.8281 33.3820 50.0133 -34.1492 -0.0000 -0.0000 -5.7485 -20.6796 -53.2456 -27.2295 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -24.9724 -2.1098 -11.3560 18.1654 0.0000 0.0000 10.7565 1.6390 5.8197 0.8612 0.0000 0.0000 -28.2536 -10.9590 6.7842 23.9635 0.0000 0.0000 12.1217 16.1681 -16.4022 -3.9934 0.0000 -0.0000 - -0.2216 8.8227 25.6047 -12.0184 -0.1522 164.4026 15.2963 1.7647 -0.9359 4.8633 0.3889 0.2101 9.6646 2.3136 4.3468 -3.1271 1.0160 0.4015 -13.7285 6.0534 -8.3276 7.1133 -0.4528 -15.9951 8.2497 -17.9951 3.5547 20.3677 -54.3279 14.8673 0.0000 0.0000 30.7321 1.0843 38.9486 6.4160 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 8.3273 14.6849 0.9565 33.6412 50.6289 -34.0109 -0.0000 -0.0000 -5.7272 -20.6504 -53.1748 -27.1902 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -24.2329 -2.7594 -10.7102 17.5318 0.0000 0.0000 10.5165 1.6720 5.7205 1.0737 0.0000 0.0000 -27.1603 -11.2799 7.0279 23.5714 0.0000 0.0000 10.3606 14.7670 -16.2937 -4.0714 0.0000 -0.0000 - -0.2321 8.9129 25.5880 -11.9520 -0.4616 163.5913 14.9725 1.7712 -0.9234 4.7564 0.4062 0.2014 9.4996 2.2046 4.3589 -3.1832 0.9397 0.4226 -13.8374 5.9572 -8.5307 6.7803 -0.4254 -16.2790 8.1945 -18.1215 3.5268 19.5633 -54.2785 14.3267 0.0000 0.0000 30.7997 0.8573 39.0432 6.4023 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 8.2074 14.8628 1.0632 33.8703 51.1565 -33.8779 -0.0000 -0.0000 -5.6911 -20.6136 -53.0466 -27.0841 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -23.4870 -3.3972 -10.0663 16.8529 0.0000 0.0000 10.2244 1.7468 5.5703 1.3402 0.0000 0.0000 -26.1259 -11.6128 7.5055 23.2367 0.0000 0.0000 8.5858 13.3981 -16.2382 -4.0654 0.0000 -0.0000 - -0.2417 8.9996 25.5701 -11.9289 -0.7617 162.8447 14.6336 1.7533 -0.9035 4.6467 0.4303 0.1884 9.3208 2.0819 4.3191 -3.2454 0.8579 0.4281 -13.9537 5.8468 -8.7183 6.4511 -0.4190 -16.5416 8.1445 -18.2648 3.5019 18.7524 -54.2338 13.7946 0.0000 0.0000 30.8648 0.6831 39.1355 6.3151 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 8.1109 15.0592 1.1413 34.0727 51.5909 -33.7569 -0.0000 -0.0000 -5.6399 -20.5957 -52.8716 -26.9184 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -22.7367 -4.0122 -9.4413 16.1071 0.0000 0.0000 9.8897 1.8586 5.3724 1.6581 0.0000 0.0000 -25.1609 -11.9444 8.1737 22.9023 0.0000 0.0000 6.8707 12.1302 -16.2331 -3.9824 0.0000 -0.0000 - -0.2506 9.0822 25.5515 -11.9534 -1.0408 162.1801 14.2727 1.7125 -0.8784 4.5320 0.4636 0.1733 9.1381 1.9478 4.2198 -3.3123 0.7706 0.4185 -14.0861 5.7217 -8.8952 6.1250 -0.4295 -16.7869 8.0951 -18.4228 3.4796 17.9927 -54.1865 13.3129 0.0000 0.0000 30.9164 0.5628 39.2157 6.1693 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 8.0269 15.2681 1.1880 34.2544 51.9312 -33.6545 -0.0000 -0.0000 -5.5757 -20.6166 -52.6660 -26.7044 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -21.9851 -4.5900 -8.8540 15.2759 0.0000 0.0000 9.5279 1.9988 5.1390 2.0194 0.0000 0.0000 -24.2763 -12.2570 8.9739 22.5280 0.0000 0.0000 5.2768 11.0199 -16.2657 -3.8349 0.0000 -0.0000 - -0.2590 9.1606 25.5326 -12.0309 -1.2855 161.6090 13.8816 1.6543 -0.8506 4.4102 0.5035 0.1556 8.9581 1.8089 4.0634 -3.3805 0.6806 0.3921 -14.2422 5.5800 -9.0681 5.8010 -0.4532 -17.0166 8.0412 -18.5946 3.4553 17.3386 -54.1308 12.9248 0.0000 0.0000 30.9410 0.4894 39.2765 5.9884 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 7.9400 15.4799 1.2065 34.4252 52.1809 -33.5793 -0.0000 -0.0000 -5.5025 -20.6864 -52.4468 -26.4560 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -21.2403 -5.1168 -8.3236 14.3460 0.0000 0.0000 9.1595 2.1545 4.8867 2.4103 0.0000 0.0000 -23.4887 -12.5334 9.8407 22.0950 0.0000 0.0000 3.8490 10.1039 -16.3184 -3.6376 0.0000 -0.0000 - -0.2674 9.2353 25.5138 -12.1394 -1.4847 161.1336 13.4720 1.5909 -0.8221 4.2818 0.5516 0.1391 8.7907 1.6708 3.8498 -3.4493 0.5884 0.3549 -14.4289 5.4213 -9.2416 5.4820 -0.4825 -17.2356 7.9807 -18.7798 3.4325 16.8135 -54.0630 12.6379 0.0000 0.0000 30.9350 0.4518 39.3141 5.7979 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 7.8324 15.6868 1.1913 34.5809 52.3542 -33.5157 -0.0000 -0.0000 -5.4313 -20.8027 -52.2351 -26.1889 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -20.4842 -5.5744 -7.8640 13.3092 0.0000 0.0000 8.8037 2.3099 4.6380 2.8135 0.0000 0.0000 -22.7804 -12.7508 10.7148 21.5927 0.0000 0.0000 2.6145 9.3961 -16.3705 -3.4056 0.0000 -0.0000 - -0.2761 9.3068 25.4954 -12.2701 -1.6289 160.7508 13.0432 1.5329 -0.7960 4.1476 0.6037 0.1238 8.6436 1.5434 3.5938 -3.5179 0.4956 0.3070 -14.6494 5.2472 -9.4199 5.1692 -0.5133 -17.4461 7.9116 -18.9774 3.4126 16.4316 -53.9825 12.4553 0.0000 0.0000 30.8953 0.4368 39.3262 5.6233 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 7.6963 15.8829 1.1494 34.7315 52.4512 -33.4796 -0.0000 -0.0000 -5.3642 -20.9631 -52.0493 -25.9191 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -19.7168 -5.9521 -7.4858 12.1676 0.0000 0.0000 8.4797 2.4471 4.4122 3.2084 0.0000 0.0000 -22.1512 -12.8949 11.5406 21.0318 0.0000 0.0000 1.5795 8.8890 -16.4033 -3.1532 0.0000 -0.0000 - -0.2855 9.3745 25.4768 -12.4334 -1.7094 160.4512 12.5798 1.4844 -0.7729 4.0056 0.6573 0.1086 8.5210 1.4340 3.3146 -3.5849 0.4074 0.2488 -14.9050 5.0568 -9.6062 4.8653 -0.5399 -17.6509 7.8338 -19.1874 3.3998 16.1880 -53.8907 12.3625 0.0000 0.0000 30.8234 0.4295 39.3139 5.4875 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 7.5210 16.0566 1.0866 34.8851 52.4832 -33.4789 -0.0000 -0.0000 -5.3047 -21.1508 -51.8999 -25.6580 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -18.9664 -6.2478 -7.1916 10.9385 0.0000 0.0000 8.2037 2.5476 4.2210 3.5749 0.0000 0.0000 -21.6270 -12.9624 12.2703 20.4439 0.0000 0.0000 0.7294 8.5575 -16.4021 -2.8931 0.0000 -0.0000 - -0.2963 9.4387 25.4580 -12.6185 -1.7096 160.2131 12.0807 1.4651 -0.7526 3.8580 0.7107 0.0983 8.4272 1.3494 3.0256 -3.6514 0.3234 0.1906 -15.1956 4.8588 -9.8032 4.5734 -0.5585 -17.8521 7.7488 -19.4063 3.3925 16.0730 -53.7869 12.3475 0.0000 0.0000 30.7200 0.4146 39.2816 5.4075 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 7.3003 16.2114 1.0004 35.0313 52.4578 -33.4978 -0.0000 -0.0000 -5.2627 -21.3406 -51.7948 -25.4125 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -18.2492 -6.4474 -6.9647 9.6576 0.0000 0.0000 7.9766 2.5956 4.0725 3.8955 0.0000 0.0000 -21.1976 -12.9363 12.8782 19.8462 0.0000 0.0000 0.0393 8.3638 -16.3452 -2.6347 0.0000 -0.0000 - -0.3072 9.5027 25.4391 -12.7428 -1.6695 160.0264 11.6280 1.4671 -0.7377 3.7092 0.7611 0.0886 8.3592 1.2950 2.7562 -3.7159 0.2486 0.1311 -15.5139 4.6571 -10.0130 4.2961 -0.5694 -18.0492 7.6607 -19.6311 3.3911 16.0678 -53.6767 12.3909 0.0000 0.0000 30.5882 0.3810 39.2328 5.3938 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 7.0357 16.3394 0.8982 35.1773 52.3829 -33.5465 -0.0000 -0.0000 -5.2410 -21.5039 -51.7287 -25.1807 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -17.4624 -6.5656 -6.8077 8.3207 0.0000 0.0000 7.8047 2.5817 3.9781 4.1571 0.0000 0.0000 -20.7572 -12.8285 13.3399 19.2555 0.0000 0.0000 -0.5361 8.2736 -16.2234 -2.3877 0.0000 -0.0000 - -0.3196 9.5648 25.4194 -12.8421 -1.5664 159.8617 11.1814 1.5003 -0.7269 3.5598 0.8099 0.0889 8.3148 1.2723 2.5129 -3.7807 0.1830 0.0837 -15.8562 4.4620 -10.2370 4.0356 -0.5695 -18.2401 7.5729 -19.8591 3.3958 16.1481 -53.5581 12.4724 0.0000 0.0000 30.4321 0.3182 39.1746 5.4469 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.7340 16.4486 0.7797 35.3161 52.2590 -33.6221 -0.0000 -0.0000 -5.2415 -21.6177 -51.6890 -24.9600 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -16.6893 -6.5970 -6.6862 6.9965 0.0000 0.0000 7.6715 2.5004 3.9274 4.3523 0.0000 0.0000 -20.3506 -12.6355 13.6535 18.6997 0.0000 0.0000 -1.0385 8.2409 -16.0192 -2.1547 0.0000 -0.0000 - -0.3346 9.6228 25.3982 -12.9654 -1.3798 159.6890 10.6916 1.5712 -0.7128 3.4095 0.8490 0.0858 8.2895 1.2882 2.3342 -3.8474 0.1305 0.0384 -16.2178 4.2815 -10.4648 3.7910 -0.5631 -18.4272 7.4887 -20.0906 3.4137 16.2845 -53.4283 12.5675 0.0000 0.0000 30.2563 0.2215 39.1071 5.5590 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.4132 16.5511 0.6551 35.4515 52.0688 -33.7463 -0.0000 -0.0000 -5.2580 -21.6730 -51.6559 -24.7418 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -16.0308 -6.5430 -6.5605 5.7623 0.0000 0.0000 7.5514 2.3545 3.9019 4.4821 0.0000 0.0000 -20.0373 -12.3624 13.8291 18.2051 0.0000 0.0000 -1.5090 8.2229 -15.7198 -1.9333 0.0000 -0.0000 - -0.3502 9.6812 25.3760 -13.0021 -1.1823 159.5053 10.2803 1.6492 -0.7053 3.2644 0.8817 0.0895 8.2738 1.3392 2.2164 -3.9158 0.0921 0.0090 -16.5851 4.1213 -10.7005 3.5652 -0.5498 -18.6027 7.4150 -20.3189 3.4376 16.4652 -53.2927 12.6770 0.0000 0.0000 30.0617 0.0868 39.0338 5.7177 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 6.0730 16.6422 0.5148 35.5643 51.8424 -33.8762 -0.0000 -0.0000 -5.3080 -21.6320 -51.6027 -24.5051 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -15.3351 -6.4351 -6.4484 4.6045 0.0000 0.0000 7.4346 2.1565 3.9184 4.5520 0.0000 0.0000 -19.6663 -12.0407 13.8710 17.7693 0.0000 0.0000 -1.9960 8.1990 -15.3270 -1.7245 0.0000 -0.0000 - -0.3684 9.7365 25.3522 -13.0253 -0.9342 159.2767 9.8709 1.7485 -0.6942 3.1265 0.9077 0.1023 8.2615 1.4220 2.1590 -3.9881 0.0670 -0.0004 -16.9567 3.9913 -10.9292 3.3563 -0.5317 -18.7677 7.3521 -20.5457 3.4730 16.6682 -53.1400 12.7876 0.0000 0.0000 29.8525 -0.0857 38.9510 5.9019 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 5.7445 16.7481 0.3717 35.6620 51.5421 -34.0494 -0.0000 -0.0000 -5.3763 -21.5119 -51.5029 -24.2373 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -14.7445 -6.2626 -6.3027 3.6177 0.0000 0.0000 7.2786 1.9232 3.9582 4.5761 0.0000 0.0000 -19.3201 -11.6631 13.8153 17.3911 0.0000 0.0000 -2.5161 8.1370 -14.8290 -1.5193 0.0000 -0.0000 - -0.3888 9.7897 25.3272 -13.0127 -0.6631 158.9958 9.4939 1.8542 -0.6808 2.9972 0.9256 0.1189 8.2466 1.5324 2.1686 -4.0650 0.0549 0.0061 -17.3225 3.8978 -11.1437 3.1627 -0.5134 -18.9148 7.3031 -20.7681 3.5217 16.8807 -52.9686 12.8972 0.0000 0.0000 29.6323 -0.2919 38.8537 6.0888 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.4392 16.8785 0.2234 35.7303 51.1728 -34.2415 -0.0000 -0.0000 -5.4707 -21.3117 -51.3330 -23.9202 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -14.2365 -6.0434 -6.1324 2.8228 0.0000 0.0000 7.0608 1.6761 4.0333 4.5709 0.0000 0.0000 -18.9604 -11.2489 13.6841 17.0602 0.0000 0.0000 -3.0863 8.0252 -14.2298 -1.3130 0.0000 -0.0000 - -0.4119 9.8400 25.3010 -12.9819 -0.3728 158.6552 9.1357 1.9585 -0.6637 2.8784 0.9390 0.1400 8.2234 1.6595 2.2349 -4.1462 0.0566 0.0264 -17.6779 3.8421 -11.3323 2.9836 -0.4968 -19.0390 7.2677 -20.9862 3.5864 17.0947 -52.7725 13.0085 0.0000 0.0000 29.4049 -0.5269 38.7346 6.2551 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.1754 17.0449 0.0789 35.7720 50.7208 -34.4632 -0.0000 -0.0000 -5.5861 -21.0524 -51.0734 -23.5410 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -13.8463 -5.7876 -5.9411 2.2512 0.0000 0.0000 6.7580 1.4366 4.1525 4.5550 0.0000 0.0000 -18.6017 -10.8089 13.5030 16.7643 0.0000 0.0000 -3.7058 7.8571 -13.5338 -1.1006 0.0000 -0.0000 - -0.4365 9.8889 25.2742 -12.8897 -0.0980 158.2619 8.8445 2.0522 -0.6474 2.7733 0.9425 0.1601 8.1884 1.8003 2.3501 -4.2318 0.0669 0.0555 -18.0126 3.8257 -11.4873 2.8183 -0.4837 -19.1345 7.2460 -21.1946 3.6677 17.3028 -52.5545 13.1211 0.0000 0.0000 29.1779 -0.7806 38.5859 6.3778 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.9562 17.2510 -0.0716 35.7665 50.2068 -34.6686 -0.0000 -0.0000 -5.7376 -20.7432 -50.7182 -23.0894 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -13.5080 -5.5128 -5.7572 1.8877 0.0000 0.0000 6.3639 1.2223 4.3371 4.5457 0.0000 0.0000 -18.1811 -10.3577 13.2867 16.4808 0.0000 0.0000 -4.3681 7.6404 -12.7511 -0.8821 0.0000 -0.0000 - -0.4633 9.9357 25.2470 -12.7615 0.1695 157.8186 8.5951 2.1370 -0.6305 2.6802 0.9403 0.1793 8.1412 1.9442 2.4920 -4.3194 0.0850 0.0892 -18.3258 3.8423 -11.5977 2.6670 -0.4739 -19.1962 7.2348 -21.3956 3.7681 17.5021 -52.3101 13.2408 0.0000 0.0000 28.9565 -1.0451 38.3995 6.4399 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 4.7990 17.5013 -0.2114 35.7316 49.6106 -34.8922 -0.0000 -0.0000 -5.9104 -20.4275 -50.2652 -22.5693 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -13.2582 -5.2208 -5.5834 1.7415 0.0000 0.0000 5.8720 1.0454 4.5882 4.5582 0.0000 0.0000 -17.7272 -9.8956 13.0528 16.1930 0.0000 0.0000 -5.0502 7.3809 -11.8905 -0.6583 0.0000 -0.0000 - -0.4917 9.9802 25.2199 -12.5995 0.4234 157.3381 8.3827 2.2146 -0.6159 2.6014 0.9355 0.1972 8.0841 2.0771 2.6405 -4.4081 0.1067 0.1227 -18.6142 3.8891 -11.6564 2.5302 -0.4677 -19.2207 7.2298 -21.5853 3.8882 17.6846 -52.0433 13.3631 0.0000 0.0000 28.7508 -1.3088 38.1691 6.4279 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 4.7064 17.7989 -0.3437 35.6583 48.9405 -35.1127 -0.0000 -0.0000 -6.1081 -20.1330 -49.7286 -21.9896 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -13.0878 -4.9190 -5.4297 1.7926 0.0000 0.0000 5.2913 0.9111 4.9042 4.6026 0.0000 0.0000 -17.2428 -9.4284 12.8084 15.8903 0.0000 0.0000 -5.7291 7.0919 -10.9673 -0.4347 0.0000 -0.0000 - -0.5215 10.0229 25.1932 -12.4049 0.6625 156.8352 8.2030 2.2888 -0.6051 2.5355 0.9327 0.2123 8.0208 2.1876 2.7759 -4.4943 0.1294 0.1495 -18.8783 3.9575 -11.6592 2.4101 -0.4633 -19.2047 7.2220 -21.7613 4.0252 17.8459 -51.7618 13.4862 0.0000 0.0000 28.5684 -1.5626 37.8897 6.3380 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.6801 18.1399 -0.4600 35.5564 48.1956 -35.3415 -0.0000 -0.0000 -6.3224 -19.8909 -49.1260 -21.3682 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -12.9828 -4.6097 -5.2978 2.0108 0.0000 0.0000 4.6398 0.8181 5.2738 4.6835 0.0000 0.0000 -16.7309 -8.9569 12.5569 15.5639 0.0000 0.0000 -6.3794 6.7871 -9.9986 -0.2190 0.0000 -0.0000 - -0.5519 10.0637 25.1675 -12.1804 0.8812 156.3286 8.0528 2.3619 -0.5996 2.4787 0.9256 0.2223 7.9584 2.2768 2.8773 -4.5760 0.1508 0.1666 -19.1172 4.0337 -11.6083 2.3080 -0.4582 -19.1466 7.2129 -21.9312 4.1796 17.9734 -51.4660 13.6017 0.0000 0.0000 28.4217 -1.8000 37.5670 6.1695 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 4.7093 18.5082 -0.5662 35.4245 47.4006 -35.5610 -0.0000 -0.0000 -6.5529 -19.7168 -48.4814 -20.7293 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -12.9225 -4.2996 -5.1885 2.3554 0.0000 0.0000 3.9445 0.7601 5.6787 4.7997 0.0000 0.0000 -16.1992 -8.4886 12.2993 15.2182 0.0000 0.0000 -6.9811 6.4809 -9.0101 -0.0207 0.0000 -0.0000 - -0.5822 10.1038 25.1433 -11.9065 1.0728 155.8328 7.9460 2.4429 -0.5992 2.4291 0.9128 0.2269 7.9039 2.3412 2.9333 -4.6494 0.1663 0.1658 -19.3327 4.1111 -11.5071 2.2259 -0.4505 -19.0467 7.1954 -22.0898 4.3468 18.0574 -51.1712 13.7001 0.0000 0.0000 28.3172 -2.0160 37.2048 5.9346 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 4.7874 18.8965 -0.6637 35.2654 46.5667 -35.7694 -0.0000 -0.0000 -6.7932 -19.6217 -47.8219 -20.0995 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -12.8574 -3.9877 -5.0898 2.7772 0.0000 0.0000 3.2348 0.7270 6.0930 4.9450 0.0000 0.0000 -15.6229 -8.0221 12.0401 14.8475 0.0000 0.0000 -7.5154 6.1843 -8.0268 0.1520 0.0000 0.0000 - -0.6121 10.1413 25.1209 -11.6398 1.2473 155.3661 7.8229 2.5159 -0.6051 2.3867 0.9202 0.2260 7.8658 2.3548 2.9274 -4.7135 0.1813 0.1562 -19.5313 4.1766 -11.3619 2.1659 -0.4367 -18.9114 7.1660 -22.2485 4.5205 18.0850 -50.8763 13.7678 0.0000 0.0000 28.2680 -2.2058 36.8145 5.6384 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 4.9110 19.2901 -0.7481 35.1004 45.6920 -36.0021 -0.0000 -0.0000 -7.0228 -19.6169 -47.1710 -19.5048 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -12.8342 -3.6889 -5.0001 3.2472 0.0000 0.0000 2.5433 0.7097 6.4925 5.1100 0.0000 0.0000 -15.0859 -7.5782 11.7783 14.4923 0.0000 0.0000 -7.9788 5.9064 -7.0808 0.2906 0.0000 0.0000 - -0.6401 10.1780 25.1009 -11.3438 1.3878 154.9381 7.7193 2.5982 -0.6165 2.3513 0.9027 0.2184 7.8452 2.3634 2.8625 -4.7641 0.1790 0.1240 -19.7138 4.2261 -11.1814 2.1292 -0.4178 -18.7427 7.1189 -22.3984 4.6991 18.0427 -50.6066 13.7873 0.0000 0.0000 28.2761 -2.3671 36.4061 5.3058 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 5.0728 19.6794 -0.8190 34.9345 44.7852 -36.2649 -0.0000 -0.0000 -7.2309 -19.6965 -46.5483 -18.9726 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -12.7769 -3.4056 -4.9058 3.7111 0.0000 0.0000 1.8996 0.6971 6.8522 5.2825 0.0000 0.0000 -14.5387 -7.1605 11.5303 14.1522 0.0000 0.0000 -8.3666 5.6530 -6.2072 0.3911 0.0000 0.0000 - -0.6661 10.2132 25.0836 -11.0379 1.4945 154.5560 7.6210 2.6737 -0.6323 2.3098 0.8943 0.2070 7.8552 2.3330 2.7372 -4.8008 0.1733 0.0786 -19.8836 4.2511 -10.9807 2.1147 -0.3918 -18.5475 7.0579 -22.5476 4.8723 17.9289 -50.3606 13.7604 0.0000 0.0000 28.3423 -2.5064 35.9991 4.9556 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.2477 20.0462 -0.8939 34.7670 43.8816 -36.5349 -0.0000 -0.0000 -7.4192 -19.8294 -45.9684 -18.5184 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -12.6893 -3.1467 -4.7966 4.1421 0.0000 0.0000 1.3267 0.6802 7.1508 5.4505 0.0000 0.0000 -14.0086 -6.7809 11.3012 13.8508 0.0000 0.0000 -8.6848 5.4258 -5.4285 0.4514 0.0000 0.0000 - -0.6893 10.2468 25.0691 -10.7323 1.5659 154.2207 7.5179 2.7404 -0.6501 2.2643 0.8852 0.1919 7.8949 2.2793 2.5601 -4.8226 0.1596 0.0216 -20.0434 4.2485 -10.7712 2.1211 -0.3597 -18.3336 6.9832 -22.6952 5.0363 17.7387 -50.1482 13.6781 0.0000 0.0000 28.4657 -2.6263 35.6089 4.6080 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 5.4313 20.3797 -0.9736 34.6132 42.9825 -36.8365 -0.0000 -0.0000 -7.5721 -19.9999 -45.4360 -18.1557 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -12.5675 -2.9199 -4.6604 4.5187 0.0000 0.0000 0.8406 0.6523 7.3717 5.6032 0.0000 0.0000 -13.5091 -6.4506 11.1083 13.6070 0.0000 0.0000 -8.9439 5.2238 -4.7696 0.4731 0.0000 0.0000 - -0.7097 10.2781 25.0573 -10.4407 1.6017 153.9296 7.4022 2.7921 -0.6687 2.2114 0.8719 0.1743 7.9635 2.2096 2.3440 -4.8285 0.1414 -0.0424 -20.1946 4.2141 -10.5674 2.1451 -0.3219 -18.1088 6.8966 -22.8419 5.1828 17.4805 -49.9741 13.5466 0.0000 0.0000 28.6388 -2.7340 35.2510 4.2839 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 5.6065 20.6617 -1.0686 34.4838 42.1116 -37.1705 -0.0000 -0.0000 -7.6851 -20.1774 -44.9468 -17.8893 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -12.4173 -2.7332 -4.4864 4.8295 0.0000 0.0000 0.4495 0.6083 7.5046 5.7320 0.0000 0.0000 -13.0577 -6.1795 10.9615 13.4388 0.0000 0.0000 -9.1592 5.0436 -4.2417 0.4615 0.0000 0.0000 - -0.7272 10.3072 25.0481 -10.1666 1.6052 153.6721 7.2688 2.8291 -0.6851 2.1529 0.8572 0.1537 8.0614 2.1279 2.1075 -4.8219 0.1161 -0.1107 -20.3355 4.1524 -10.3775 2.1815 -0.2829 -17.8802 6.8106 -22.9836 5.3147 17.1622 -49.8366 13.3735 0.0000 0.0000 28.8530 -2.8393 34.9443 4.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.7744 20.8932 -1.1813 34.3860 41.2629 -37.5496 -0.0000 -0.0000 -7.7530 -20.3430 -44.4967 -17.7147 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.2419 -2.5870 -4.2629 5.0739 0.0000 0.0000 0.1505 0.5456 7.5476 5.8319 0.0000 0.0000 -12.6550 -5.9687 10.8780 13.3486 0.0000 0.0000 -9.3433 4.8797 -3.8493 0.4252 0.0000 0.0000 - -0.7421 10.3337 25.0411 -9.9127 1.5793 153.4350 7.1215 2.8492 -0.6959 2.0870 0.8461 0.1337 8.1795 2.0328 1.8643 -4.8005 0.0877 -0.1758 -20.4666 4.0655 -10.2109 2.2261 -0.2438 -17.6555 6.7203 -23.1112 5.4240 16.8030 -49.7445 13.1684 0.0000 0.0000 29.0945 -2.9465 34.6918 3.7724 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 5.9342 21.0647 -1.3139 34.3380 40.4361 -37.9998 -0.0000 -0.0000 -7.7636 -20.4853 -44.0675 -17.6278 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.0470 -2.4808 -3.9817 5.2563 0.0000 0.0000 -0.0650 0.4629 7.5070 5.9010 0.0000 0.0000 -12.2999 -5.8164 10.8622 13.3340 0.0000 0.0000 -9.5100 4.7256 -3.5784 0.3749 0.0000 0.0000 - -0.7549 10.3571 25.0357 -9.6907 1.5313 153.2057 6.9522 2.8518 -0.7020 2.0136 0.8369 0.1161 8.3134 1.9307 1.6316 -4.7674 0.0568 -0.2331 -20.5859 3.9580 -10.0737 2.2730 -0.2086 -17.4394 6.6320 -23.2191 5.5096 16.4263 -49.6940 12.9527 0.0000 0.0000 29.3472 -3.0653 34.5012 3.6122 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.0857 21.1757 -1.4695 34.3464 39.6274 -38.5267 -0.0000 -0.0000 -7.7181 -20.5905 -43.6446 -17.6116 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -11.8541 -2.4142 -3.6430 5.3896 0.0000 0.0000 -0.2105 0.3612 7.3966 5.9409 0.0000 0.0000 -12.0041 -5.7211 10.9120 13.3928 0.0000 0.0000 -9.6732 4.5757 -3.4073 0.3224 0.0000 0.0000 - -0.7660 10.3767 25.0314 -9.5116 1.4683 152.9712 6.7545 2.8356 -0.7043 1.9321 0.8326 0.1053 8.4567 1.8217 1.4206 -4.7250 0.0244 -0.2779 -20.6914 3.8347 -9.9690 2.3163 -0.1799 -17.2349 6.5515 -23.3028 5.5724 16.0563 -49.6782 12.7466 0.0000 0.0000 29.5964 -3.2048 34.3737 3.5243 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.2389 21.2285 -1.6448 34.4210 38.8179 -39.1524 -0.0000 -0.0000 -7.6098 -20.6634 -43.2101 -17.6512 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -11.6857 -2.3859 -3.2549 5.4880 0.0000 0.0000 -0.3013 0.2430 7.2397 5.9556 0.0000 0.0000 -11.7789 -5.6798 11.0190 13.5196 0.0000 0.0000 -9.8450 4.4259 -3.3069 0.2790 0.0000 0.0000 - -0.7754 10.3942 25.0278 -9.3364 1.3831 152.7155 6.5658 2.8119 -0.7002 1.8474 0.8258 0.0945 8.6022 1.7157 1.2503 -4.6754 -0.0134 -0.3062 -20.7780 3.7069 -9.8951 2.3515 -0.1609 -17.0470 6.4800 -23.3493 5.6078 15.7195 -49.6975 12.5742 0.0000 0.0000 29.8257 -3.3697 34.3052 3.5097 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.3707 21.2240 -1.8610 34.5499 38.0455 -39.8158 -0.0000 -0.0000 -7.4740 -20.6746 -42.7583 -17.7184 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -11.4991 -2.3847 -2.8294 5.5525 0.0000 0.0000 -0.3558 0.1122 7.0675 5.9520 0.0000 0.0000 -11.5606 -5.6747 11.1701 13.6762 0.0000 0.0000 -10.0273 4.2741 -3.2368 0.2541 0.0000 0.0000 - -0.7843 10.4081 25.0242 -9.1951 1.2908 152.4317 6.3624 2.7736 -0.6919 1.7582 0.8212 0.0905 8.7435 1.6116 1.1182 -4.6208 -0.0479 -0.3135 -20.8463 3.5699 -9.8561 2.3740 -0.1507 -16.8702 6.4206 -23.3714 5.6185 15.4362 -49.7317 12.4515 0.0000 0.0000 30.0257 -3.5666 34.2868 3.5610 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 6.4878 21.1610 -2.1062 34.7448 37.2873 -40.5404 -0.0000 -0.0000 -7.3049 -20.6420 -42.2746 -17.7995 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -11.3421 -2.4101 -2.3889 5.6014 0.0000 0.0000 -0.3868 -0.0263 6.9111 5.9366 0.0000 0.0000 -11.3892 -5.7037 11.3455 13.8649 0.0000 0.0000 -10.2282 4.1190 -3.1640 0.2544 0.0000 0.0000 - -0.7933 10.4185 25.0201 -9.0861 1.2048 152.1094 6.1402 2.7412 -0.6794 1.6667 0.8078 0.0829 8.8808 1.5164 1.0454 -4.5650 -0.0914 -0.3109 -20.8989 3.4411 -9.8358 2.3833 -0.1528 -16.7063 6.3665 -23.3531 5.6126 15.2115 -49.7856 12.3757 0.0000 0.0000 30.1887 -3.7927 34.2994 3.6711 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.6216 21.0788 -2.3616 34.9964 36.4743 -41.3472 -0.0000 -0.0000 -7.0984 -20.5993 -41.7553 -17.8755 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -11.2276 -2.4490 -1.9546 5.6488 0.0000 0.0000 -0.4102 -0.1667 6.8045 5.9180 0.0000 0.0000 -11.2581 -5.7486 11.5286 14.0621 0.0000 0.0000 -10.4440 3.9595 -3.0541 0.2823 0.0000 0.0000 - -0.8025 10.4269 25.0157 -8.9787 1.1195 151.7443 5.9293 2.7103 -0.6623 1.5756 0.8013 0.0825 9.0085 1.4185 1.0121 -4.5080 -0.1309 -0.2904 -20.9346 3.3120 -9.8348 2.3786 -0.1605 -16.5496 6.3261 -23.3138 5.5908 15.0589 -49.8336 12.3649 0.0000 0.0000 30.3099 -4.0532 34.3327 3.8251 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.7340 20.9656 -2.6373 35.2946 35.6589 -42.1676 -0.0000 -0.0000 -6.8926 -20.5261 -41.2069 -17.9312 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -11.1181 -2.4910 -1.5488 5.6877 0.0000 0.0000 -0.4329 -0.3043 6.7755 5.9019 0.0000 0.0000 -11.1200 -5.7923 11.6979 14.2393 0.0000 0.0000 -10.6693 3.7954 -2.8764 0.3379 0.0000 0.0000 - -0.8123 10.4333 25.0105 -8.8713 1.0406 151.3361 5.7277 2.6909 -0.6417 1.4855 0.7920 0.0849 9.1298 1.3271 1.0180 -4.4528 -0.1764 -0.2559 -20.9562 3.1931 -9.8417 2.3624 -0.1754 -16.3976 6.2938 -23.2555 5.5587 14.9689 -49.8690 12.4044 0.0000 0.0000 30.3934 -4.3417 34.3670 4.0050 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.8437 20.8486 -2.9212 35.6253 34.7996 -43.0035 -0.0000 -0.0000 -6.6871 -20.4522 -40.6359 -17.9615 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -11.0153 -2.5295 -1.1946 5.7191 0.0000 0.0000 -0.4587 -0.4347 6.8473 5.8933 0.0000 0.0000 -10.9709 -5.8242 11.8353 14.3854 0.0000 0.0000 -10.8997 3.6263 -2.6112 0.4156 0.0000 0.0000 - -0.8229 10.4382 25.0048 -8.7614 0.9704 150.8908 5.5370 2.6814 -0.6193 1.3967 0.7862 0.0938 9.2455 1.2339 1.0490 -4.3995 -0.2212 -0.2119 -20.9685 3.0801 -9.8487 2.3386 -0.1923 -16.2451 6.2627 -23.1919 5.5196 14.9327 -49.8826 12.4831 0.0000 0.0000 30.4410 -4.6520 34.3813 4.1966 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.9435 20.7415 -3.1997 35.9709 33.8895 -43.8253 -0.0000 -0.0000 -6.5002 -20.3819 -40.0566 -17.9576 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.9151 -2.5600 -0.9088 5.7392 0.0000 0.0000 -0.4866 -0.5550 7.0295 5.8948 0.0000 0.0000 -10.8072 -5.8372 11.9274 14.4941 0.0000 0.0000 -11.1300 3.4515 -2.2528 0.5080 0.0000 0.0000 - -0.8342 10.4420 24.9984 -8.6499 0.9082 150.4154 5.3536 2.6874 -0.5919 1.3083 0.7525 0.0961 9.3615 1.1786 1.0888 -4.3508 -0.2829 -0.1464 -20.9737 2.9787 -9.8543 2.3116 -0.2094 -16.0883 6.2324 -23.1400 5.4746 14.9256 -49.8597 12.5760 0.0000 0.0000 30.4651 -4.9772 34.3636 4.3793 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 7.0285 20.6570 -3.4833 36.3064 32.9432 -44.5881 -0.0000 -0.0000 -6.3493 -20.3161 -39.4894 -17.9229 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.8127 -2.5830 -0.6989 5.7390 0.0000 0.0000 -0.5105 -0.6637 7.3198 5.9064 0.0000 0.0000 -10.6290 -5.8305 11.9658 14.5648 0.0000 0.0000 -11.3564 3.2705 -1.8042 0.6059 0.0000 0.0000 - -0.8461 10.4454 24.9918 -8.5266 0.8514 149.9194 5.1844 2.6998 -0.5660 1.2228 0.7470 0.1037 9.4784 1.0897 1.1470 -4.3055 -0.3360 -0.0939 -20.9772 2.8831 -9.8410 2.2873 -0.2220 -15.9240 6.2105 -23.1120 5.4421 14.9246 -49.7889 12.6650 0.0000 0.0000 30.4731 -5.3124 34.3044 4.5385 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.1121 20.6174 -3.7368 36.6137 31.9264 -45.3023 -0.0000 -0.0000 -6.2270 -20.2747 -38.9472 -17.8620 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.6912 -2.5944 -0.5655 5.7109 0.0000 0.0000 -0.5266 -0.7608 7.7074 5.9269 0.0000 0.0000 -10.4227 -5.7990 11.9493 14.5935 0.0000 0.0000 -11.5723 3.0813 -1.2772 0.7002 0.0000 0.0000 - -0.8579 10.4490 24.9852 -8.3859 0.7903 149.4152 5.0361 2.7237 -0.5418 1.1401 0.7285 0.1094 9.5994 1.0123 1.2013 -4.2639 -0.3961 -0.0415 -20.9803 2.7962 -9.8118 2.2709 -0.2292 -15.7485 6.1912 -23.1210 5.4173 14.9044 -49.6681 12.7248 0.0000 0.0000 30.4744 -5.6490 34.1957 4.6618 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 7.1827 20.6269 -3.9722 36.8685 30.8760 -45.9203 -0.0000 -0.0000 -6.1526 -20.2403 -38.4523 -17.7783 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -10.5311 -2.5994 -0.5029 5.6412 0.0000 0.0000 -0.5261 -0.8473 8.1708 5.9533 0.0000 0.0000 -10.1783 -5.7488 11.8810 14.5828 0.0000 0.0000 -11.7750 2.8848 -0.6931 0.7816 0.0000 0.0000 - -0.8697 10.4527 24.9788 -8.2389 0.7307 148.9115 4.8948 2.7534 -0.5180 1.0583 0.7173 0.1147 9.7293 0.9259 1.2433 -4.2268 -0.4596 0.0041 -20.9877 2.7170 -9.7589 2.2669 -0.2288 -15.5628 6.1774 -23.1777 5.4081 14.8398 -49.4918 12.7343 0.0000 0.0000 30.4768 -5.9809 34.0359 4.7399 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.2466 20.6990 -4.1813 37.0481 29.7944 -46.4311 -0.0000 -0.0000 -6.1265 -20.2124 -38.0191 -17.6757 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.3455 -2.5978 -0.4916 5.5309 0.0000 0.0000 -0.5054 -0.9251 8.6803 5.9821 0.0000 0.0000 -9.9120 -5.6820 11.7728 14.5384 0.0000 0.0000 -11.9599 2.6806 -0.0759 0.8439 0.0000 0.0000 - -0.8802 10.4584 24.9732 -8.0527 0.6474 148.4194 4.7976 2.7851 -0.4964 0.9807 0.7118 0.1158 9.8633 0.8303 1.2709 -4.1915 -0.5239 0.0399 -20.9962 2.6439 -9.6842 2.2784 -0.2200 -15.3661 6.1743 -23.2897 5.4158 14.7132 -49.2609 12.6784 0.0000 0.0000 30.4878 -6.3038 33.8301 4.7657 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 7.3065 20.8316 -4.3672 37.1375 28.7098 -46.8222 -0.0000 -0.0000 -6.1518 -20.1785 -37.6609 -17.5589 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -10.0749 -2.5937 -0.5143 5.3584 0.0000 0.0000 -0.4571 -0.9969 9.2060 6.0094 0.0000 0.0000 -9.5713 -5.6039 11.6405 14.4497 0.0000 0.0000 -12.1232 2.4732 0.5453 0.8824 0.0000 0.0000 - -0.8912 10.4629 24.9680 -7.9016 0.5894 147.9420 4.6627 2.8205 -0.4741 0.8990 0.7070 0.1220 10.0113 0.7353 1.2661 -4.1605 -0.5911 0.0723 -21.0157 2.5755 -9.5950 2.3062 -0.2034 -15.1568 6.1784 -23.4696 5.4287 14.5337 -48.9632 12.5803 0.0000 0.0000 30.4982 -6.6237 33.5854 4.7430 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 7.3428 21.0159 -4.5432 37.1309 27.6707 -47.0763 -0.0000 -0.0000 -6.2289 -20.1197 -37.3777 -17.4321 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.8404 -2.5846 -0.5372 5.1633 0.0000 0.0000 -0.3873 -1.0647 9.7111 6.0325 0.0000 0.0000 -9.2713 -5.5168 11.5023 14.3457 0.0000 0.0000 -12.2624 2.2614 1.1486 0.8972 0.0000 0.0000 - -0.9010 10.4683 24.9638 -7.7422 0.5236 147.4869 4.5396 2.8584 -0.4552 0.8176 0.7073 0.1251 10.1658 0.6296 1.2369 -4.1314 -0.6614 0.0975 -21.0383 2.5158 -9.4855 2.3490 -0.1818 -14.9399 6.1976 -23.7045 5.4676 14.2712 -48.6206 12.3988 0.0000 0.0000 30.5221 -6.9283 33.3104 4.6662 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 7.3718 21.2555 -4.7071 37.0190 26.6850 -47.2027 -0.0000 -0.0000 -6.3537 -20.0316 -37.1726 -17.2936 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -9.5669 -2.5759 -0.5449 4.9222 0.0000 0.0000 -0.2903 -1.1314 10.1729 6.0487 0.0000 0.0000 -8.9429 -5.4286 11.3797 14.2109 0.0000 0.0000 -12.3760 2.0546 1.7062 0.8888 0.0000 0.0000 - -0.9101 10.4738 24.9607 -7.5930 0.4639 147.0577 4.4075 2.9003 -0.4393 0.7365 0.7145 0.1251 10.3261 0.5094 1.1947 -4.1038 -0.7276 0.1025 -21.0665 2.4591 -9.3595 2.4052 -0.1557 -14.7164 6.2274 -23.9924 5.5248 13.9510 -48.2361 12.1635 0.0000 0.0000 30.5502 -7.2217 33.0154 4.5428 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.3930 21.5348 -4.8569 36.8087 25.7708 -47.2248 -0.0000 -0.0000 -6.5122 -19.9116 -37.0315 -17.1429 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.2882 -2.5657 -0.5174 4.6506 0.0000 0.0000 -0.1711 -1.1986 10.5693 6.0573 0.0000 0.0000 -8.6149 -5.3402 11.2865 14.0494 0.0000 0.0000 -12.4610 1.8580 2.2037 0.8619 0.0000 0.0000 - -0.9185 10.4791 24.9586 -7.4566 0.4128 146.6538 4.2659 2.9437 -0.4253 0.6527 0.7310 0.1263 10.4909 0.3795 1.1222 -4.0772 -0.7977 0.1089 -21.0969 2.4124 -9.2243 2.4704 -0.1298 -14.4898 6.2726 -24.3162 5.5934 13.5923 -47.8224 11.9019 0.0000 0.0000 30.5738 -7.5070 32.7168 4.3803 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 7.4087 21.8396 -5.0124 36.5064 24.9567 -47.1512 -0.0000 -0.0000 -6.6981 -19.7560 -36.9445 -16.9792 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -9.0143 -2.5534 -0.4407 4.3589 0.0000 0.0000 -0.0341 -1.2678 10.8892 6.0582 0.0000 0.0000 -8.2928 -5.2540 11.2387 13.8617 0.0000 0.0000 -12.5172 1.6787 2.6296 0.8219 0.0000 0.0000 - -0.9265 10.4841 24.9576 -7.3327 0.3759 146.2732 4.1135 2.9945 -0.4141 0.5658 0.7537 0.1268 10.6582 0.2413 1.0301 -4.0503 -0.8678 0.1113 -21.1282 2.3726 -9.0821 2.5397 -0.1056 -14.2624 6.3292 -24.6604 5.6745 13.2141 -47.3968 11.6287 0.0000 0.0000 30.5883 -7.7821 32.4238 4.1868 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 7.4166 22.1512 -5.1717 36.1311 24.2537 -47.0118 -0.0000 -0.0000 -6.8966 -19.5645 -36.8926 -16.7995 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.7546 -2.5338 -0.3101 4.0584 0.0000 0.0000 0.1138 -1.3394 11.1323 6.0528 0.0000 0.0000 -7.9776 -5.1656 11.2429 13.6415 0.0000 0.0000 -12.5411 1.5219 2.9843 0.7754 0.0000 0.0000 - -0.9344 10.4883 24.9576 -7.2274 0.3573 145.9114 3.9446 3.0499 -0.4053 0.4794 0.7887 0.1259 10.8220 0.0898 0.9327 -4.0221 -0.9345 0.1045 -21.1585 2.3398 -8.9352 2.6077 -0.0874 -14.0369 6.4043 -25.0091 5.7644 12.8502 -46.9672 11.3864 0.0000 0.0000 30.5844 -8.0538 32.1543 3.9709 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 7.4228 22.4529 -5.3316 35.7031 23.6540 -46.8466 -0.0000 -0.0000 -7.0850 -19.3530 -36.8534 -16.6075 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -8.5265 -2.5075 -0.1265 3.7645 0.0000 0.0000 0.2670 -1.4138 11.3058 6.0428 0.0000 0.0000 -7.6810 -5.0776 11.3060 13.3934 0.0000 0.0000 -12.5350 1.3930 3.2680 0.7285 0.0000 0.0000 - -0.9423 10.4914 24.9584 -7.1413 0.3595 145.5669 3.7567 3.1122 -0.4030 0.3955 0.8250 0.1305 10.9804 -0.0619 0.8205 -3.9915 -1.0001 0.0990 -21.1863 2.3124 -8.7891 2.6694 -0.0749 -13.8153 6.4872 -25.3428 5.8574 12.5202 -46.5566 11.1861 0.0000 0.0000 30.5598 -8.3162 31.9112 3.7418 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 7.4249 22.7257 -5.4963 35.2462 23.1603 -46.6811 -0.0000 -0.0000 -7.2517 -19.1240 -36.8116 -16.3993 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -8.3373 -2.4725 0.0926 3.4853 0.0000 0.0000 0.4209 -1.4895 11.4299 6.0301 0.0000 0.0000 -7.4071 -4.9875 11.4188 13.1180 0.0000 0.0000 -12.4994 1.2940 3.4940 0.6863 0.0000 0.0000 - -0.9503 10.4942 24.9600 -7.0517 0.3741 145.2307 3.5752 3.1852 -0.3985 0.3080 0.8678 0.1289 11.1355 -0.2180 0.7134 -3.9577 -1.0622 0.0885 -21.2067 2.2931 -8.6425 2.7201 -0.0720 -13.6008 6.5819 -25.6393 5.9547 12.2421 -46.1823 11.0470 0.0000 0.0000 30.5139 -8.5684 31.7045 3.5066 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 7.4213 22.9522 -5.6655 34.7868 22.7718 -46.5444 -0.0000 -0.0000 -7.3810 -18.8855 -36.7532 -16.1806 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -8.1661 -2.4234 0.3396 3.2301 0.0000 0.0000 0.5674 -1.5656 11.5231 6.0173 0.0000 0.0000 -7.1221 -4.8872 11.5796 12.8012 0.0000 0.0000 -12.4314 1.2255 3.6756 0.6520 0.0000 0.0000 - -0.9588 10.4960 24.9622 -6.9708 0.4089 144.9004 3.3845 3.2621 -0.3921 0.2191 0.9246 0.1271 11.2876 -0.3833 0.6046 -3.9191 -1.1151 0.0773 -21.2223 2.2761 -8.4989 2.7568 -0.0763 -13.3915 6.6783 -25.8854 6.0546 12.0285 -45.8621 10.9751 0.0000 0.0000 30.4461 -8.8056 31.5313 3.2779 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 7.4074 23.1225 -5.8295 34.3496 22.4675 -46.4623 -0.0000 -0.0000 -7.4621 -18.6487 -36.6661 -15.9519 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.0363 -2.3608 0.5888 3.0105 0.0000 0.0000 0.7034 -1.6402 11.6131 6.0060 0.0000 0.0000 -6.8482 -4.7762 11.7744 12.4533 0.0000 0.0000 -12.3349 1.1843 3.8280 0.6274 0.0000 0.0000 - -0.9671 10.4980 24.9648 -6.8711 0.4428 144.5744 3.2135 3.3482 -0.3920 0.1356 0.9610 0.1280 11.4316 -0.5239 0.5008 -3.8747 -1.1624 0.0670 -21.2278 2.2617 -8.3618 2.7782 -0.0886 -13.1920 6.7727 -26.0720 6.1401 11.9000 -45.6039 10.9927 0.0000 0.0000 30.3583 -9.0250 31.3961 3.0598 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.3934 23.2239 -5.9943 33.9540 22.2300 -46.4570 -0.0000 -0.0000 -7.4848 -18.4208 -36.5443 -15.7192 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -7.9052 -2.2863 0.8198 2.8193 0.0000 0.0000 0.8282 -1.7113 11.7211 5.9974 0.0000 0.0000 -6.5427 -4.6516 11.9763 12.0667 0.0000 0.0000 -12.2122 1.1655 3.9783 0.6117 0.0000 0.0000 - -0.9767 10.4986 24.9675 -6.7867 0.5030 144.2462 3.0215 3.4318 -0.3855 0.0494 1.0249 0.1288 11.5777 -0.6829 0.4026 -3.8245 -1.2000 0.0553 -21.2299 2.2539 -8.2250 2.7837 -0.1088 -13.0003 6.8536 -26.1894 6.2284 11.8346 -45.4192 11.0568 0.0000 0.0000 30.2685 -9.2129 31.2855 2.8539 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 7.3623 23.2668 -6.1474 33.6199 22.0402 -46.5332 -0.0000 -0.0000 -7.4461 -18.2036 -36.3816 -15.4883 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -7.8345 -2.1982 1.0187 2.6784 0.0000 0.0000 0.9369 -1.7768 11.8665 5.9919 0.0000 0.0000 -6.2642 -4.5117 12.1831 11.6621 0.0000 0.0000 -12.0681 1.1610 4.1321 0.6038 0.0000 0.0000 - -0.9854 10.5005 24.9705 -6.6627 0.5412 143.9201 2.8694 3.5184 -0.3807 -0.0291 1.0585 0.1289 11.7202 -0.8059 0.3068 -3.7667 -1.2285 0.0449 -21.2207 2.2419 -8.0937 2.7753 -0.1327 -12.8176 6.9339 -26.2395 6.3023 11.8531 -45.3063 11.2122 0.0000 0.0000 30.1661 -9.3793 31.2077 2.6757 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.3261 23.2380 -6.2887 33.3579 21.8787 -46.7024 -0.0000 -0.0000 -7.3495 -17.9958 -36.1833 -15.2601 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.7254 -2.1035 1.1644 2.5586 0.0000 0.0000 1.0351 -1.8352 12.0637 5.9893 0.0000 0.0000 -5.9209 -4.3592 12.3706 11.2218 0.0000 0.0000 -11.9065 1.1665 4.3058 0.5991 0.0000 0.0000 - -0.9944 10.5024 24.9734 -6.5308 0.5809 143.5923 2.7193 3.5981 -0.3725 -0.1055 1.0973 0.1280 11.8676 -0.9251 0.2213 -3.7026 -1.2452 0.0306 -21.2064 2.2315 -7.9634 2.7551 -0.1594 -12.6433 6.9982 -26.2272 6.3722 11.9273 -45.2620 11.4056 0.0000 0.0000 30.0743 -9.5095 31.1458 2.5195 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 7.2748 23.1554 -6.4142 33.1744 21.7274 -46.9551 -0.0000 -0.0000 -7.1993 -17.7951 -35.9501 -15.0428 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -7.6318 -2.0018 1.2594 2.4771 0.0000 0.0000 1.1187 -1.8855 12.3130 5.9892 0.0000 0.0000 -5.5671 -4.1932 12.5274 10.7673 0.0000 0.0000 -11.7339 1.1714 4.5114 0.5951 0.0000 0.0000 - -1.0030 10.5052 24.9761 -6.3800 0.6065 143.2660 2.5847 3.6682 -0.3630 -0.1773 1.1243 0.1268 12.0193 -1.0237 0.1409 -3.6317 -1.2521 0.0144 -21.1856 2.2204 -7.8351 2.7266 -0.1873 -12.4761 7.0495 -26.1625 6.4350 12.0485 -45.2772 11.6332 0.0000 0.0000 29.9956 -9.6040 31.0957 2.3890 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 7.2100 23.0257 -6.5232 33.0699 21.5715 -47.2811 -0.0000 -0.0000 -7.0078 -17.5939 -35.6895 -14.8396 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.5263 -1.8992 1.3021 2.4224 0.0000 0.0000 1.1903 -1.9270 12.6099 5.9906 0.0000 0.0000 -5.1834 -4.0192 12.6408 10.3027 0.0000 0.0000 -11.5571 1.1701 4.7548 0.5881 0.0000 0.0000 - -1.0111 10.5088 24.9786 -6.2134 0.6165 142.9426 2.4623 3.7252 -0.3510 -0.2446 1.1435 0.1250 12.1776 -1.1058 0.0668 -3.5550 -1.2490 -0.0069 -21.1600 2.2078 -7.7075 2.6939 -0.2132 -12.3150 7.0880 -26.0579 6.4913 12.2035 -45.3381 11.8816 0.0000 0.0000 29.9333 -9.6655 31.0510 2.2882 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.1298 22.8630 -6.6149 33.0383 21.4009 -47.6624 -0.0000 -0.0000 -6.7905 -17.3808 -35.4126 -14.6498 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.4085 -1.7982 1.3070 2.3918 0.0000 0.0000 1.2496 -1.9603 12.9375 5.9929 0.0000 0.0000 -4.7745 -3.8402 12.7058 9.8359 0.0000 0.0000 -11.3817 1.1572 5.0378 0.5756 0.0000 0.0000 - -1.0186 10.5136 24.9808 -6.0309 0.6112 142.6227 2.3547 3.7667 -0.3345 -0.3145 1.1702 0.1212 12.3466 -1.1909 0.0022 -3.4744 -1.2304 -0.0341 -21.1289 2.1955 -7.5767 2.6595 -0.2362 -12.1618 7.1179 -25.9278 6.5461 12.3711 -45.4281 12.1282 0.0000 0.0000 29.8934 -9.6930 31.0052 2.2099 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 7.0397 22.6828 -6.6947 33.0668 21.2095 -48.0766 -0.0000 -0.0000 -6.5626 -17.1510 -35.1314 -14.4797 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.2777 -1.6981 1.2834 2.3858 0.0000 0.0000 1.2931 -1.9857 13.2856 5.9960 0.0000 0.0000 -4.3412 -3.6559 12.7229 9.3698 0.0000 0.0000 -11.2102 1.1288 5.3587 0.5567 0.0000 0.0000 - -1.0246 10.5196 24.9827 -5.8365 0.5777 142.3154 2.2619 3.7918 -0.3194 -0.3738 1.1714 0.1166 12.5155 -1.2436 -0.0664 -3.3900 -1.2105 -0.0592 -21.0911 2.1827 -7.4495 2.6273 -0.2545 -12.0127 7.1420 -25.7899 6.5901 12.5487 -45.5282 12.3780 0.0000 0.0000 29.8679 -9.6980 30.9575 2.1599 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 6.9481 22.4943 -6.7683 33.1412 20.9932 -48.5062 -0.0000 -0.0000 -6.3401 -16.8976 -34.8592 -14.3241 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.1191 -1.6117 1.2455 2.3880 0.0000 0.0000 1.3285 -2.0052 13.6296 5.9982 0.0000 0.0000 -3.8874 -3.4839 12.6987 8.9226 0.0000 0.0000 -11.0541 1.0883 5.7009 0.5301 0.0000 0.0000 - -1.0297 10.5264 24.9842 -5.6398 0.5278 142.0206 2.1749 3.8004 -0.3035 -0.4295 1.1695 0.1118 12.6867 -1.2892 -0.1356 -3.3035 -1.1854 -0.0855 -21.0495 2.1720 -7.3223 2.6001 -0.2683 -11.8668 7.1574 -25.6579 6.6272 12.7210 -45.6228 12.6094 0.0000 0.0000 29.8594 -9.6790 30.9004 2.1246 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.8480 22.3155 -6.8325 33.2508 20.7561 -48.9283 -0.0000 -0.0000 -6.1408 -16.6130 -34.6062 -14.1816 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -6.9510 -1.5352 1.2151 2.4022 0.0000 0.0000 1.3518 -2.0204 13.9490 6.0001 0.0000 0.0000 -3.4319 -3.3215 12.6400 8.4987 0.0000 0.0000 -10.9135 1.0355 6.0595 0.4977 0.0000 0.0000 - -1.0334 10.5340 24.9854 -5.4409 0.4604 141.7422 2.0972 3.7946 -0.2876 -0.4809 1.1671 0.1069 12.8561 -1.3321 -0.2061 -3.2168 -1.1579 -0.1137 -21.0015 2.1636 -7.1951 2.5784 -0.2770 -11.7239 7.1710 -25.5433 6.6619 12.8765 -45.6979 12.8135 0.0000 0.0000 29.8600 -9.6495 30.8337 2.1071 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.7524 22.1528 -6.8956 33.3784 20.5048 -49.3292 -0.0000 -0.0000 -5.9729 -16.3010 -34.3840 -14.0533 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.7676 -1.4693 1.2069 2.4202 0.0000 0.0000 1.3643 -2.0337 14.2265 6.0015 0.0000 0.0000 -2.9764 -3.1719 12.5571 8.1020 0.0000 0.0000 -10.7900 0.9744 6.4225 0.4618 0.0000 0.0000 - -1.0359 10.5421 24.9862 -5.2451 0.3760 141.4840 2.0301 3.7739 -0.2722 -0.5292 1.1627 0.0997 13.0176 -1.3702 -0.2790 -3.1299 -1.1300 -0.1446 -20.9476 2.1543 -7.0688 2.5630 -0.2803 -11.5826 7.1827 -25.4577 6.6964 13.0091 -45.7439 12.9821 0.0000 0.0000 29.8644 -9.6131 30.7541 2.0989 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.6596 22.0093 -6.9560 33.5141 20.2520 -49.6979 -0.0000 -0.0000 -5.8461 -15.9654 -34.1989 -13.9363 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.5709 -1.4174 1.2318 2.4367 0.0000 0.0000 1.3688 -2.0472 14.4486 6.0023 0.0000 0.0000 -2.5302 -3.0415 12.4664 7.7395 0.0000 0.0000 -10.6861 0.9114 6.7714 0.4245 0.0000 0.0000 - -1.0378 10.5495 24.9868 -5.0736 0.2963 141.2469 1.9479 3.7465 -0.2586 -0.5770 1.1654 0.0964 13.1768 -1.4177 -0.3570 -3.0494 -1.1075 -0.1740 -20.8894 2.1529 -6.9447 2.5530 -0.2801 -11.4435 7.1915 -25.4053 6.7237 13.1251 -45.7462 13.1251 0.0000 0.0000 29.8632 -9.5843 30.6639 2.0935 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.5822 21.9001 -7.0259 33.6409 19.9986 -50.0210 -0.0000 -0.0000 -5.7657 -15.6148 -34.0560 -13.8295 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.3980 -1.3762 1.2974 2.4566 0.0000 0.0000 1.3653 -2.0623 14.6083 6.0030 0.0000 0.0000 -2.1351 -2.9293 12.3751 7.4248 0.0000 0.0000 -10.6029 0.8497 7.1002 0.3896 0.0000 0.0000 - -1.0392 10.5558 24.9871 -4.9307 0.2235 141.0334 1.8534 3.7136 -0.2466 -0.6255 1.1690 0.0910 13.3245 -1.4658 -0.4383 -2.9717 -1.0913 -0.2044 -20.8294 2.1513 -6.8238 2.5473 -0.2753 -11.3046 7.1969 -25.3931 6.7532 13.2155 -45.7049 13.2283 0.0000 0.0000 29.8529 -9.5649 30.5596 2.0849 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 6.5108 21.8164 -7.0974 33.7598 19.7643 -50.3021 -0.0000 -0.0000 -5.7300 -15.2560 -33.9526 -13.7322 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -6.2519 -1.3474 1.4033 2.4751 0.0000 0.0000 1.3580 -2.0805 14.7049 6.0032 0.0000 0.0000 -1.7983 -2.8395 12.3030 7.1596 0.0000 0.0000 -10.5400 0.7959 7.3879 0.3589 0.0000 0.0000 - -1.0397 10.5617 24.9872 -4.7967 0.1472 140.8440 1.7684 3.6796 -0.2376 -0.6717 1.1820 0.0876 13.4565 -1.5263 -0.5253 -2.8983 -1.0815 -0.2320 -20.7642 2.1528 -6.7071 2.5451 -0.2675 -11.1678 7.2017 -25.4128 6.7781 13.2938 -45.6227 13.3115 0.0000 0.0000 29.8234 -9.5657 30.4460 2.0705 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.4553 21.7543 -7.1740 33.8660 19.5573 -50.5498 -0.0000 -0.0000 -5.7331 -14.9023 -33.8860 -13.6441 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.1003 -1.3268 1.5441 2.4776 0.0000 0.0000 1.3504 -2.1023 14.7446 6.0031 0.0000 0.0000 -1.4884 -2.7665 12.2516 6.9299 0.0000 0.0000 -10.4914 0.7535 7.6337 0.3346 0.0000 0.0000 - -1.0395 10.5669 24.9872 -4.6747 0.0733 140.6784 1.6923 3.6481 -0.2311 -0.7191 1.2076 0.0858 13.5718 -1.6020 -0.6175 -2.8279 -1.0800 -0.2554 -20.6970 2.1578 -6.5967 2.5453 -0.2576 -11.0324 7.2041 -25.4591 6.7965 13.3660 -45.5036 13.3825 0.0000 0.0000 29.7715 -9.5893 30.3240 2.0427 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.4120 21.7092 -7.2548 33.9612 19.3887 -50.7712 -0.0000 -0.0000 -5.7674 -14.5646 -33.8498 -13.5676 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -5.9501 -1.3116 1.7109 2.4634 0.0000 0.0000 1.3451 -2.1275 14.7372 6.0024 0.0000 0.0000 -1.2115 -2.7080 12.2259 6.7333 0.0000 0.0000 -10.4536 0.7239 7.8328 0.3179 0.0000 0.0000 - -1.0398 10.5698 24.9871 -4.5963 0.0261 140.5338 1.5831 3.6225 -0.2251 -0.7647 1.2373 0.0850 13.6784 -1.6881 -0.7059 -2.7665 -1.0854 -0.2845 -20.6316 2.1623 -6.4909 2.5439 -0.2459 -10.9004 7.2012 -25.5352 6.8202 13.4230 -45.3499 13.4227 0.0000 0.0000 29.7028 -9.6359 30.1912 1.9978 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.3843 21.6845 -7.3392 34.0387 19.2512 -50.9648 -0.0000 -0.0000 -5.8303 -14.2513 -33.8370 -13.4967 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.8532 -1.3045 1.8916 2.4434 0.0000 0.0000 1.3462 -2.1559 14.6971 6.0001 0.0000 0.0000 -1.0202 -2.6683 12.2360 6.5848 0.0000 0.0000 -10.4295 0.7073 7.9764 0.3089 0.0000 0.0000 - -1.0395 10.5720 24.9869 -4.5221 -0.0210 140.4095 1.4889 3.6054 -0.2219 -0.8091 1.2678 0.0849 13.7689 -1.7757 -0.8001 -2.7078 -1.1027 -0.3036 -20.5664 2.1688 -6.3922 2.5423 -0.2333 -10.7750 7.1966 -25.6214 6.8368 13.4824 -45.1778 13.4627 0.0000 0.0000 29.6099 -9.7111 30.0542 1.9411 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.3650 21.6617 -7.4242 34.1130 19.1635 -51.1557 -0.0000 -0.0000 -5.9042 -13.9675 -33.8367 -13.4369 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.7466 -1.2998 2.0722 2.4001 0.0000 0.0000 1.3558 -2.1860 14.6394 5.9965 0.0000 0.0000 -0.8443 -2.6377 12.2703 6.4525 0.0000 0.0000 -10.4079 0.7019 8.0765 0.3069 0.0000 0.0000 - -1.0392 10.5730 24.9867 -4.4623 -0.0579 140.3012 1.3974 3.5957 -0.2191 -0.8549 1.3048 0.0855 13.8451 -1.8744 -0.8854 -2.6512 -1.1233 -0.3250 -20.5036 2.1750 -6.3045 2.5379 -0.2203 -10.6534 7.1902 -25.7138 6.8516 13.5396 -44.9952 13.4955 0.0000 0.0000 29.4994 -9.8100 29.9115 1.8711 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 6.3569 21.6407 -7.5097 34.1821 19.1185 -51.3467 -0.0000 -0.0000 -5.9823 -13.7210 -33.8417 -13.3878 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -5.6511 -1.2965 2.2413 2.3409 0.0000 0.0000 1.3749 -2.2169 14.5787 5.9911 0.0000 0.0000 -0.6993 -2.6141 12.3265 6.3365 0.0000 0.0000 -10.3876 0.7035 8.1376 0.3109 0.0000 0.0000 - -1.0388 10.5734 24.9864 -4.4078 -0.0888 140.2040 1.3097 3.5961 -0.2154 -0.8949 1.3413 0.0872 13.9084 -1.9746 -0.9702 -2.5958 -1.1508 -0.3360 -20.4452 2.1829 -6.2247 2.5315 -0.2076 -10.5421 7.1786 -25.8019 6.8608 13.5984 -44.8133 13.5236 0.0000 0.0000 29.3777 -9.9289 29.7648 1.7913 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 6.3549 21.6188 -7.5913 34.2527 19.1138 -51.5495 -0.0000 -0.0000 -6.0557 -13.5105 -33.8413 -13.3452 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.5568 -1.2915 2.3917 2.2679 0.0000 0.0000 1.4021 -2.2472 14.5269 5.9840 0.0000 0.0000 -0.5628 -2.5910 12.3956 6.2167 0.0000 0.0000 -10.3608 0.7078 8.1727 0.3189 0.0000 0.0000 - -1.0389 10.5722 24.9862 -4.3794 -0.1022 140.1180 1.2058 3.6032 -0.2127 -0.9432 1.3606 0.0898 13.9761 -2.0553 -1.0509 -2.5434 -1.1873 -0.3440 -20.3951 2.1888 -6.1533 2.5217 -0.1953 -10.4413 7.1711 -25.8801 6.8744 13.6513 -44.6413 13.5502 0.0000 0.0000 29.2456 -10.0672 29.6191 1.7101 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 6.3501 21.5906 -7.6691 34.3285 19.1526 -51.7628 -0.0000 -0.0000 -6.1188 -13.3310 -33.8278 -13.3131 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.4954 -1.2898 2.5063 2.1906 0.0000 0.0000 1.4398 -2.2758 14.4989 5.9746 0.0000 0.0000 -0.4701 -2.5747 12.4718 6.1112 0.0000 0.0000 -10.3353 0.7109 8.1852 0.3291 0.0000 0.0000 - -1.0381 10.5717 24.9860 -4.3352 -0.1293 140.0373 1.1285 3.6091 -0.2085 -0.9872 1.3958 0.0925 14.0348 -2.1546 -1.1113 -2.4892 -1.2166 -0.3537 -20.3466 2.1941 -6.0888 2.5102 -0.1835 -10.3541 7.1658 -25.9373 6.8863 13.7049 -44.4914 13.5765 0.0000 0.0000 29.1116 -10.2167 29.4754 1.6340 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.3508 21.5567 -7.7368 34.4103 19.2229 -51.9975 -0.0000 -0.0000 -6.1683 -13.1825 -33.7954 -13.2808 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -5.4014 -1.2877 2.5879 2.0984 0.0000 0.0000 1.4845 -2.3013 14.4977 5.9641 0.0000 0.0000 -0.3396 -2.5553 12.5393 5.9796 0.0000 0.0000 -10.2992 0.7100 8.1974 0.3391 0.0000 0.0000 - -1.0374 10.5712 24.9858 -4.2956 -0.1517 139.9582 1.0493 3.6196 -0.2013 -1.0316 1.4192 0.0950 14.0943 -2.2406 -1.1587 -2.4345 -1.2478 -0.3589 -20.3035 2.2011 -6.0347 2.4968 -0.1730 -10.2796 7.1648 -25.9769 6.8974 13.7535 -44.3596 13.5981 0.0000 0.0000 28.9863 -10.3707 29.3361 1.5596 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 6.3493 21.5206 -7.7972 34.5004 19.3231 -52.2489 -0.0000 -0.0000 -6.1984 -13.0601 -33.7343 -13.2559 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.3163 -1.2844 2.6363 2.0105 0.0000 0.0000 1.5310 -2.3232 14.5268 5.9534 0.0000 0.0000 -0.2062 -2.5318 12.5939 5.8303 0.0000 0.0000 -10.2549 0.7010 8.2169 0.3481 0.0000 0.0000 - -1.0363 10.5709 24.9856 -4.2559 -0.1743 139.8778 0.9692 3.6292 -0.1908 -1.0713 1.4262 0.1007 14.1531 -2.3016 -1.2000 -2.3783 -1.2815 -0.3547 -20.2628 2.2083 -5.9913 2.4817 -0.1639 -10.2199 7.1687 -25.9973 6.9088 13.7942 -44.2537 13.6124 0.0000 0.0000 28.8691 -10.5259 29.2036 1.5042 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 6.3519 21.4849 -7.8570 34.5923 19.4466 -52.5042 -0.0000 -0.0000 -6.2182 -12.9593 -33.6446 -13.2282 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.2351 -1.2810 2.6565 1.9328 0.0000 0.0000 1.5750 -2.3409 14.5835 5.9436 0.0000 0.0000 -0.0584 -2.5037 12.6305 5.6573 0.0000 0.0000 -10.2017 0.6838 8.2524 0.3545 0.0000 0.0000 - -1.0345 10.5714 24.9855 -4.2116 -0.2065 139.8007 0.9009 3.6347 -0.1806 -1.1150 1.4318 0.1023 14.2153 -2.3641 -1.2178 -2.3191 -1.3047 -0.3572 -20.2257 2.2116 -5.9504 2.4682 -0.1544 -10.1752 7.1823 -25.9930 6.9263 13.8316 -44.1776 13.6288 0.0000 0.0000 28.7599 -10.6789 29.0802 1.4712 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.3378 21.4501 -7.8904 34.6988 19.5951 -52.7736 -0.0000 -0.0000 -6.2236 -12.8673 -33.5123 -13.1976 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.1443 -1.2816 2.6450 1.8619 0.0000 0.0000 1.6166 -2.3543 14.6666 5.9353 0.0000 0.0000 0.1112 -2.4761 12.6385 5.4666 0.0000 0.0000 -10.1448 0.6597 8.3106 0.3579 0.0000 0.0000 - -1.0335 10.5711 24.9853 -4.1962 -0.2086 139.7199 0.7939 3.6415 -0.1656 -1.1692 1.4426 0.1016 14.2931 -2.4335 -1.2131 -2.2620 -1.3212 -0.3522 -20.1925 2.2250 -5.9220 2.4535 -0.1479 -10.1448 7.1984 -25.9753 6.9343 13.8681 -44.1129 13.6481 0.0000 0.0000 28.6614 -10.8273 28.9664 1.4595 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.3380 21.4414 -7.9356 34.7923 19.7426 -53.0213 -0.0000 -0.0000 -6.2261 -12.7995 -33.3446 -13.1642 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.1176 -1.2781 2.6178 1.8270 0.0000 0.0000 1.6449 -2.3636 14.7679 5.9303 0.0000 0.0000 0.2397 -2.4411 12.6262 5.2687 0.0000 0.0000 -10.0821 0.6274 8.3916 0.3592 0.0000 0.0000 - -1.0306 10.5729 24.9851 -4.1533 -0.2435 139.6431 0.7191 3.6359 -0.1511 -1.2106 1.4387 0.1063 14.3627 -2.4757 -1.2057 -2.2027 -1.3384 -0.3457 -20.1509 2.2361 -5.9002 2.4420 -0.1423 -10.1278 7.2182 -25.9367 6.9413 13.9014 -44.0830 13.6606 0.0000 0.0000 28.5770 -10.9599 28.8631 1.4696 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3343 21.4362 -7.9666 34.8911 19.9122 -53.2620 -0.0000 -0.0000 -6.2281 -12.7419 -33.1350 -13.1250 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -5.0422 -1.2820 2.5790 1.7961 0.0000 0.0000 1.6652 -2.3693 14.8758 5.9290 0.0000 0.0000 0.4287 -2.4104 12.5855 5.0491 0.0000 0.0000 -10.0180 0.5953 8.4982 0.3572 0.0000 0.0000 - -1.0273 10.5750 24.9850 -4.1182 -0.2701 139.5685 0.6350 3.6293 -0.1334 -1.2577 1.4372 0.1086 14.4361 -2.5215 -1.1850 -2.1423 -1.3464 -0.3384 -20.1071 2.2482 -5.8844 2.4328 -0.1366 -10.1226 7.2450 -25.8875 6.9495 13.9307 -44.0687 13.6715 0.0000 0.0000 28.5023 -11.0833 28.7702 1.5015 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3275 21.4482 -7.9908 34.9879 20.0951 -53.4802 -0.0000 -0.0000 -6.2328 -12.6998 -32.8826 -13.0830 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.9896 -1.2849 2.5370 1.7894 0.0000 0.0000 1.6714 -2.3719 14.9849 5.9318 0.0000 0.0000 0.6067 -2.3777 12.5241 4.8284 0.0000 0.0000 -9.9533 0.5626 8.6257 0.3540 0.0000 0.0000 - -1.0237 10.5773 24.9848 -4.0937 -0.2891 139.5050 0.5389 3.6212 -0.1159 -1.3067 1.4314 0.1090 14.5116 -2.5599 -1.1588 -2.0835 -1.3538 -0.3311 -20.0586 2.2630 -5.8743 2.4269 -0.1320 -10.1280 7.2745 -25.8330 6.9522 13.9635 -44.0643 13.6878 0.0000 0.0000 28.4340 -11.1959 28.6882 1.5487 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 6.3266 21.4835 -8.0102 35.0773 20.2775 -53.6704 -0.0000 -0.0000 -6.2402 -12.6864 -32.5874 -13.0469 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.9602 -1.2893 2.4958 1.8053 0.0000 0.0000 1.6636 -2.3723 15.0829 5.9388 0.0000 0.0000 0.7628 -2.3488 12.4454 4.6214 0.0000 0.0000 -9.8932 0.5339 8.7624 0.3498 0.0000 0.0000 - -1.0198 10.5792 24.9846 -4.0858 -0.2974 139.4554 0.4277 3.6094 -0.1028 -1.3600 1.4222 0.1087 14.5891 -2.5898 -1.1303 -2.0269 -1.3587 -0.3235 -20.0046 2.2764 -5.8696 2.4238 -0.1273 -10.1424 7.3033 -25.7754 6.9558 13.9898 -44.0757 13.6962 0.0000 0.0000 28.3703 -11.2962 28.6117 1.6077 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 6.3239 21.5395 -8.0275 35.1595 20.4709 -53.8156 -0.0000 -0.0000 -6.2664 -12.6924 -32.2570 -13.0071 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.9597 -1.2972 2.4584 1.8397 0.0000 0.0000 1.6453 -2.3713 15.1641 5.9490 0.0000 0.0000 0.8768 -2.3293 12.3603 4.4515 0.0000 0.0000 -9.8468 0.5124 8.8947 0.3458 0.0000 0.0000 - -1.0140 10.5826 24.9845 -4.0547 -0.3308 139.4238 0.3445 3.5907 -0.0896 -1.4003 1.4170 0.1124 14.6534 -2.6181 -1.1110 -1.9708 -1.3640 -0.3162 -19.9374 2.2894 -5.8702 2.4258 -0.1229 -10.1641 7.3287 -25.7076 6.9494 14.0221 -44.1092 13.7106 0.0000 0.0000 28.3090 -11.3840 28.5404 1.6677 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.3322 21.6037 -8.0404 35.2381 20.6709 -53.9360 -0.0000 -0.0000 -6.2992 -12.7361 -31.8933 -12.9739 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.9137 -1.3095 2.4335 1.8679 0.0000 0.0000 1.6198 -2.3692 15.2170 5.9616 0.0000 0.0000 1.0220 -2.3185 12.2728 4.2935 0.0000 0.0000 -9.8069 0.5024 9.0162 0.3413 0.0000 0.0000 - -1.0085 10.5853 24.9844 -4.0426 -0.3398 139.4110 0.2401 3.5784 -0.0753 -1.4454 1.4173 0.1111 14.7179 -2.6506 -1.0915 -1.9183 -1.3664 -0.3141 -19.8669 2.3011 -5.8771 2.4311 -0.1179 -10.1887 7.3482 -25.6463 6.9397 14.0525 -44.1450 13.7218 0.0000 0.0000 28.2500 -11.4669 28.4694 1.7210 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3409 21.6895 -8.0483 35.3130 20.8661 -54.0171 -0.0000 -0.0000 -6.3414 -12.8135 -31.4998 -12.9520 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.9074 -1.3157 2.4209 1.9118 0.0000 0.0000 1.5828 -2.3667 15.2412 5.9757 0.0000 0.0000 1.1060 -2.3092 12.1888 4.1835 0.0000 0.0000 -9.7788 0.4987 9.1181 0.3393 0.0000 0.0000 - -1.0016 10.5887 24.9843 -4.0150 -0.3677 139.4235 0.1604 3.5597 -0.0666 -1.4818 1.4233 0.1120 14.7701 -2.6813 -1.0813 -1.8674 -1.3707 -0.3143 -19.7856 2.3103 -5.8877 2.4412 -0.1126 -10.2192 7.3601 -25.5797 6.9212 14.0846 -44.1999 13.7355 0.0000 0.0000 28.1892 -11.5451 28.3970 1.7648 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 6.3564 21.7795 -8.0531 35.3887 21.0654 -54.0691 -0.0000 -0.0000 -6.3940 -12.9250 -31.0863 -12.9366 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.8624 -1.3265 2.4186 1.9405 0.0000 0.0000 1.5452 -2.3639 15.2320 5.9890 0.0000 0.0000 1.1965 -2.3127 12.1195 4.1094 0.0000 0.0000 -9.7645 0.5069 9.1828 0.3382 0.0000 0.0000 - -0.9943 10.5916 24.9843 -3.9966 -0.3897 139.4634 0.0780 3.5456 -0.0632 -1.5207 1.4238 0.1145 14.8199 -2.7080 -1.0869 -1.8188 -1.3767 -0.3135 -19.7012 2.3165 -5.9027 2.4550 -0.1070 -10.2543 7.3635 -25.5161 6.8969 14.1111 -44.2640 13.7450 0.0000 0.0000 28.1304 -11.6213 28.3190 1.7859 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3777 21.8770 -8.0549 35.4667 21.2529 -54.0953 -0.0000 -0.0000 -6.4495 -13.0713 -30.6556 -12.9346 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.8224 -1.3387 2.4203 1.9605 0.0000 0.0000 1.5084 -2.3607 15.1933 5.9999 0.0000 0.0000 1.2434 -2.3276 12.0666 4.0911 0.0000 0.0000 -9.7679 0.5225 9.2044 0.3388 0.0000 0.0000 - -0.9863 10.5946 24.9844 -3.9706 -0.4194 139.5272 0.0094 3.5272 -0.0623 -1.5520 1.4335 0.1169 14.8608 -2.7359 -1.0990 -1.7733 -1.3823 -0.3174 -19.6108 2.3177 -5.9229 2.4717 -0.1009 -10.2925 7.3592 -25.4524 6.8680 14.1332 -44.3408 13.7523 0.0000 0.0000 28.0685 -11.7048 28.2347 1.7960 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 6.3996 21.9729 -8.0517 35.5552 21.4348 -54.1022 -0.0000 -0.0000 -6.5037 -13.2432 -30.2157 -12.9501 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7601 -1.3517 2.4302 1.9656 0.0000 0.0000 1.4731 -2.3567 15.1239 6.0074 0.0000 0.0000 1.2792 -2.3512 12.0322 4.1131 0.0000 0.0000 -9.7838 0.5434 9.1836 0.3412 0.0000 0.0000 - -0.9781 10.5975 24.9844 -3.9407 -0.4495 139.6128 -0.0495 3.5124 -0.0628 -1.5816 1.4404 0.1165 14.8955 -2.7573 -1.1173 -1.7276 -1.3894 -0.3238 -19.5200 2.3157 -5.9455 2.4922 -0.0945 -10.3366 7.3466 -25.3895 6.8342 14.1484 -44.4264 13.7545 0.0000 0.0000 28.0104 -11.7936 28.1426 1.7817 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.4225 22.0671 -8.0411 35.6568 21.5994 -54.0985 -0.0000 -0.0000 -6.5539 -13.4305 -29.7701 -12.9753 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6864 -1.3617 2.4462 1.9603 0.0000 0.0000 1.4370 -2.3515 15.0279 6.0113 0.0000 0.0000 1.2984 -2.3782 12.0132 4.1705 0.0000 0.0000 -9.8092 0.5650 9.1243 0.3461 0.0000 0.0000 - -0.9695 10.6001 24.9845 -3.9123 -0.4808 139.7179 -0.1072 3.4931 -0.0644 -1.6083 1.4482 0.1183 14.9320 -2.7743 -1.1398 -1.6855 -1.3939 -0.3340 -19.4290 2.3083 -5.9741 2.5147 -0.0878 -10.3861 7.3282 -25.3268 6.7957 14.1572 -44.5214 13.7572 0.0000 0.0000 27.9507 -11.8934 28.0438 1.7532 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.4498 22.1528 -8.0313 35.7709 21.7465 -54.0835 -0.0000 -0.0000 -6.6009 -13.6214 -29.3278 -13.0083 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6057 -1.3732 2.4614 1.9440 0.0000 0.0000 1.4036 -2.3446 14.9135 6.0105 0.0000 0.0000 1.2980 -2.4130 12.0124 4.2626 0.0000 0.0000 -9.8457 0.5861 9.0250 0.3529 0.0000 0.0000 - -0.9602 10.6035 24.9845 -3.8640 -0.5307 139.8371 -0.1359 3.4697 -0.0668 -1.6280 1.4544 0.1178 14.9585 -2.7820 -1.1611 -1.6416 -1.3988 -0.3437 -19.3361 2.2983 -6.0057 2.5401 -0.0815 -10.4440 7.3114 -25.2614 6.7562 14.1566 -44.6237 13.7551 0.0000 0.0000 27.8964 -12.0036 27.9422 1.7114 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 6.4780 22.2260 -8.0154 35.9059 21.8758 -54.0726 -0.0000 -0.0000 -6.6373 -13.8036 -28.8897 -13.0466 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4844 -1.3855 2.4764 1.9116 0.0000 0.0000 1.3717 -2.3352 14.7853 6.0054 0.0000 0.0000 1.3227 -2.4510 12.0156 4.3642 0.0000 0.0000 -9.8862 0.6039 8.9056 0.3616 0.0000 0.0000 - -0.9519 10.6055 24.9844 -3.8420 -0.5593 139.9676 -0.1905 3.4441 -0.0714 -1.6558 1.4570 0.1197 14.9946 -2.7843 -1.1796 -1.5985 -1.3990 -0.3538 -19.2527 2.2850 -6.0454 2.5667 -0.0757 -10.5061 7.2941 -25.2032 6.7185 14.1485 -44.7194 13.7523 0.0000 0.0000 27.8418 -12.1300 27.8387 1.6693 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.4981 22.2940 -7.9967 36.0601 21.9809 -54.0577 -0.0000 -0.0000 -6.6624 -13.9618 -28.4565 -13.0906 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.4056 -1.3980 2.4817 1.8887 0.0000 0.0000 1.3387 -2.3237 14.6546 5.9963 0.0000 0.0000 1.2941 -2.4932 12.0347 4.4940 0.0000 0.0000 -9.9346 0.6167 8.7557 0.3725 0.0000 0.0000 - -0.9432 10.6080 24.9843 -3.8117 -0.5953 140.1020 -0.2359 3.4150 -0.0730 -1.6794 1.4541 0.1203 15.0321 -2.7758 -1.1881 -1.5566 -1.3983 -0.3627 -19.1704 2.2734 -6.0889 2.5950 -0.0717 -10.5793 7.2793 -25.1423 6.6801 14.1355 -44.8160 13.7479 0.0000 0.0000 27.7905 -12.2653 27.7392 1.6302 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.5208 22.3537 -7.9782 36.2309 22.0625 -54.0436 -0.0000 -0.0000 -6.6821 -14.0844 -28.0331 -13.1269 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.3143 -1.4104 2.4833 1.8677 0.0000 0.0000 1.3014 -2.3091 14.5230 5.9849 0.0000 0.0000 1.2819 -2.5341 12.0437 4.6174 0.0000 0.0000 -9.9819 0.6234 8.6101 0.3855 0.0000 0.0000 - -0.9344 10.6109 24.9842 -3.7745 -0.6382 140.2382 -0.2702 3.3816 -0.0730 -1.7015 1.4465 0.1194 15.0677 -2.7582 -1.1850 -1.5132 -1.3951 -0.3677 -19.0907 2.2640 -6.1404 2.6255 -0.0695 -10.6600 7.2700 -25.0821 6.6413 14.1224 -44.9060 13.7465 0.0000 0.0000 27.7411 -12.4090 27.6493 1.6035 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 6.5379 22.4046 -7.9563 36.4225 22.1269 -54.0330 -0.0000 -0.0000 -6.6954 -14.1602 -27.6186 -13.1525 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.2141 -1.4233 2.4745 1.8521 0.0000 0.0000 1.2595 -2.2916 14.3991 5.9722 0.0000 0.0000 1.2893 -2.5731 12.0416 4.7248 0.0000 0.0000 -10.0254 0.6258 8.4729 0.4002 0.0000 0.0000 - -0.9259 10.6137 24.9839 -3.7480 -0.6724 140.3736 -0.3160 3.3459 -0.0721 -1.7271 1.4336 0.1203 15.1105 -2.7340 -1.1676 -1.4716 -1.3885 -0.3698 -19.0162 2.2574 -6.1964 2.6575 -0.0691 -10.7530 7.2639 -25.0285 6.6032 14.1122 -44.9810 13.7466 0.0000 0.0000 27.6925 -12.5578 27.5729 1.5968 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 6.5506 22.4542 -7.9343 36.6269 22.1705 -54.0175 -0.0000 -0.0000 -6.7056 -14.1905 -27.2139 -13.1660 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.1384 -1.4365 2.4526 1.8544 0.0000 0.0000 1.2108 -2.2713 14.2885 5.9597 0.0000 0.0000 1.2883 -2.6098 12.0270 4.8196 0.0000 0.0000 -10.0653 0.6254 8.3487 0.4167 0.0000 0.0000 - -0.9175 10.6167 24.9837 -3.7222 -0.7055 140.5071 -0.3616 3.3093 -0.0663 -1.7534 1.4160 0.1209 15.1541 -2.7055 -1.1370 -1.4299 -1.3789 -0.3683 -18.9440 2.2559 -6.2607 2.6915 -0.0710 -10.8549 7.2645 -24.9801 6.5652 14.1064 -45.0406 13.7510 0.0000 0.0000 27.6437 -12.7060 27.5155 1.6122 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.5612 22.5008 -7.9145 36.8414 22.2013 -53.9964 -0.0000 -0.0000 -6.7167 -14.1753 -26.8214 -13.1611 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.0719 -1.4494 2.4166 1.8729 0.0000 0.0000 1.1540 -2.2486 14.1933 5.9486 0.0000 0.0000 1.2998 -2.6420 11.9921 4.8882 0.0000 0.0000 -10.0973 0.6246 8.2475 0.4345 0.0000 0.0000 - -0.9088 10.6202 24.9834 -3.6957 -0.7411 140.6410 -0.4031 3.2723 -0.0594 -1.7797 1.3885 0.1198 15.1979 -2.6666 -1.0940 -1.3904 -1.3691 -0.3611 -18.8719 2.2585 -6.3336 2.7275 -0.0745 -10.9658 7.2699 -24.9414 6.5269 14.1072 -45.0813 13.7569 0.0000 0.0000 27.5940 -12.8501 27.4810 1.6550 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.5676 22.5468 -7.8931 37.0625 22.2247 -53.9669 -0.0000 -0.0000 -6.7313 -14.1212 -26.4398 -13.1366 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.0091 -1.4644 2.3639 1.9046 0.0000 0.0000 1.0913 -2.2236 14.1141 5.9399 0.0000 0.0000 1.3281 -2.6725 11.9347 4.9291 0.0000 0.0000 -10.1217 0.6269 8.1706 0.4531 0.0000 0.0000 - -0.9008 10.6233 24.9831 -3.6866 -0.7553 140.7725 -0.4656 3.2405 -0.0480 -1.8100 1.3750 0.1238 15.2431 -2.6520 -1.0412 -1.3528 -1.3524 -0.3508 -18.8047 2.2698 -6.4135 2.7652 -0.0803 -11.0829 7.2784 -24.9123 6.4919 14.1097 -45.0994 13.7592 0.0000 0.0000 27.5426 -12.9847 27.4683 1.7221 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 6.5631 22.6048 -7.8658 37.2851 22.2427 -53.9202 -0.0000 -0.0000 -6.7527 -14.0403 -26.0698 -13.0915 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.9909 -1.4741 2.2999 1.9643 0.0000 0.0000 1.0171 -2.1974 14.0490 5.9349 0.0000 0.0000 1.3379 -2.6934 11.8539 4.9461 0.0000 0.0000 -10.1350 0.6308 8.1214 0.4735 0.0000 0.0000 - -0.8917 10.6274 24.9829 -3.6668 -0.7864 140.9134 -0.5075 3.2104 -0.0357 -1.8367 1.3349 0.1156 15.2823 -2.6048 -0.9804 -1.3180 -1.3470 -0.3327 -18.7328 2.2861 -6.5027 2.8054 -0.0883 -11.2108 7.2866 -24.8964 6.4495 14.1164 -45.1006 13.7579 0.0000 0.0000 27.4922 -13.1035 27.4817 1.8067 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 6.5515 22.6602 -7.8406 37.5071 22.2780 -53.8532 -0.0000 -0.0000 -6.7870 -13.9457 -25.7178 -13.0261 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.9490 -1.4913 2.2175 2.0232 0.0000 0.0000 0.9428 -2.1699 13.9933 5.9329 0.0000 0.0000 1.3825 -2.7197 11.7496 4.9353 0.0000 0.0000 -10.1420 0.6443 8.0899 0.4930 0.0000 0.0000 - -0.8833 10.6309 24.9827 -3.6664 -0.7909 141.0614 -0.5717 3.1941 -0.0249 -1.8696 1.3261 0.1276 15.3212 -2.6178 -0.9248 -1.2859 -1.3273 -0.3179 -18.6649 2.3087 -6.5956 2.8465 -0.0971 -11.3423 7.2990 -24.8916 6.4196 14.1091 -45.0815 13.7374 0.0000 0.0000 27.4415 -13.2083 27.5153 1.9065 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.5485 22.7367 -7.8017 37.7105 22.2908 -53.7728 -0.0000 -0.0000 -6.8242 -13.8786 -25.3790 -12.9440 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.9516 -1.5001 2.1230 2.1007 0.0000 0.0000 0.8601 -2.1414 13.9436 5.9352 0.0000 0.0000 1.3974 -2.7355 11.6221 4.9089 0.0000 0.0000 -10.1377 0.6614 8.0767 0.5138 0.0000 0.0000 - -0.8743 10.6347 24.9826 -3.6695 -0.7973 141.2226 -0.6320 3.1801 -0.0103 -1.9002 1.3120 0.1306 15.3534 -2.6238 -0.8678 -1.2580 -1.3152 -0.3005 -18.5946 2.3345 -6.6959 2.8884 -0.1069 -11.4828 7.3048 -24.9046 6.3820 14.0946 -45.0457 13.7034 0.0000 0.0000 27.3914 -13.2962 27.5667 2.0119 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.5290 22.8165 -7.7599 37.9044 22.3392 -53.6592 -0.0000 -0.0000 -6.8774 -13.8343 -25.0633 -12.8494 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.9556 -1.5138 2.0216 2.1810 0.0000 0.0000 0.7769 -2.1125 13.8884 5.9403 0.0000 0.0000 1.4165 -2.7560 11.4821 4.8676 0.0000 0.0000 -10.1277 0.6874 8.0655 0.5331 0.0000 0.0000 - -0.8649 10.6387 24.9826 -3.6748 -0.8032 141.4011 -0.6882 3.1735 0.0054 -1.9287 1.2949 0.1308 15.3774 -2.6327 -0.8185 -1.2330 -1.3064 -0.2831 -18.5229 2.3607 -6.8050 2.9301 -0.1170 -11.6277 7.3025 -24.9325 6.3405 14.0613 -45.0018 13.6478 0.0000 0.0000 27.3422 -13.3680 27.6283 2.1165 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 6.5043 22.9030 -7.7098 38.0779 22.4093 -53.5150 -0.0000 -0.0000 -6.9467 -13.8384 -24.7721 -12.7393 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.9577 -1.5291 1.9149 2.2574 0.0000 0.0000 0.6941 -2.0833 13.8224 5.9481 0.0000 0.0000 1.4367 -2.7786 11.3304 4.8153 0.0000 0.0000 -10.1114 0.7202 8.0509 0.5511 0.0000 0.0000 - -0.8549 10.6429 24.9827 -3.6825 -0.8076 141.5994 -0.7404 3.1782 0.0195 -1.9568 1.2814 0.1313 15.3946 -2.6561 -0.7793 -1.2113 -1.3029 -0.2669 -18.4493 2.3889 -6.9196 2.9698 -0.1276 -11.7774 7.3000 -24.9752 6.3044 13.9904 -44.9477 13.5535 0.0000 0.0000 27.3041 -13.4277 27.6957 2.2062 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.4805 22.9953 -7.6492 38.2277 22.5000 -53.3517 -0.0000 -0.0000 -7.0173 -13.9165 -24.5035 -12.6276 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.9563 -1.5452 1.8056 2.3254 0.0000 0.0000 0.6132 -2.0534 13.7404 5.9576 0.0000 0.0000 1.4532 -2.8038 11.1718 4.7595 0.0000 0.0000 -10.0909 0.7583 8.0246 0.5675 0.0000 0.0000 - -0.8446 10.6473 24.9827 -3.6926 -0.8111 141.8182 -0.7891 3.1892 0.0335 -1.9837 1.2714 0.1312 15.4049 -2.6889 -0.7538 -1.1914 -1.3012 -0.2538 -18.3756 2.4128 -7.0399 3.0064 -0.1372 -11.9315 7.2892 -25.0300 6.2673 13.8842 -44.8943 13.4291 0.0000 0.0000 27.2694 -13.4816 27.7577 2.2843 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.4533 23.0934 -7.5743 38.3495 22.6143 -53.1605 -0.0000 -0.0000 -7.0983 -14.0705 -24.2601 -12.5102 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.9498 -1.5622 1.6994 2.3834 0.0000 0.0000 0.5344 -2.0230 13.6360 5.9680 0.0000 0.0000 1.4646 -2.8322 11.0111 4.7039 0.0000 0.0000 -10.0672 0.7995 7.9804 0.5818 0.0000 0.0000 - -0.8336 10.6518 24.9829 -3.7049 -0.8159 142.0574 -0.8351 3.2045 0.0448 -2.0068 1.2650 0.1306 15.4080 -2.7284 -0.7411 -1.1736 -1.3037 -0.2422 -18.3007 2.4318 -7.1650 3.0374 -0.1459 -12.0921 7.2751 -25.0986 6.2281 13.7380 -44.8377 13.2749 0.0000 0.0000 27.2447 -13.5356 27.8084 2.3396 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 6.4204 23.1918 -7.4896 38.4423 22.7655 -52.9402 -0.0000 -0.0000 -7.1871 -14.3052 -24.0426 -12.3921 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.9353 -1.5820 1.6011 2.4292 0.0000 0.0000 0.4581 -1.9914 13.5041 5.9786 0.0000 0.0000 1.4711 -2.8657 10.8517 4.6523 0.0000 0.0000 -10.0425 0.8425 7.9141 0.5931 0.0000 0.0000 - -0.8223 10.6567 24.9830 -3.7187 -0.8214 142.3145 -0.8787 3.2245 0.0562 -2.0296 1.2627 0.1307 15.4079 -2.7767 -0.7413 -1.1563 -1.3086 -0.2364 -18.2269 2.4442 -7.2961 3.0621 -0.1527 -12.2546 7.2529 -25.1753 6.1904 13.5461 -44.7867 13.0826 0.0000 0.0000 27.2325 -13.5941 27.8372 2.3736 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 6.3885 23.2915 -7.3899 38.5032 22.9392 -52.7011 -0.0000 -0.0000 -7.2759 -14.6236 -23.8469 -12.2765 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.9130 -1.6030 1.5120 2.4633 0.0000 0.0000 0.3837 -1.9587 13.3458 5.9885 0.0000 0.0000 1.4716 -2.9031 10.6976 4.6084 0.0000 0.0000 -10.0184 0.8850 7.8233 0.6014 0.0000 0.0000 - -0.8105 10.6619 24.9831 -3.7329 -0.8289 142.5866 -0.9197 3.2441 0.0636 -2.0506 1.2640 0.1312 15.4039 -2.8249 -0.7512 -1.1390 -1.3173 -0.2314 -18.1528 2.4486 -7.4309 3.0778 -0.1581 -12.4236 7.2260 -25.2594 6.1503 13.3128 -44.7400 12.8621 0.0000 0.0000 27.2328 -13.6643 27.8382 2.3878 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 6.3557 23.3901 -7.2817 38.5308 23.1437 -52.4364 -0.0000 -0.0000 -7.3681 -15.0162 -23.6713 -12.1657 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.8821 -1.6258 1.4354 2.4878 0.0000 0.0000 0.3096 -1.9239 13.1607 5.9974 0.0000 0.0000 1.4682 -2.9444 10.5495 4.5731 0.0000 0.0000 -9.9962 0.9257 7.7100 0.6061 0.0000 0.0000 - -0.7984 10.6676 24.9831 -3.7461 -0.8397 142.8681 -0.9592 3.2609 0.0701 -2.0708 1.2668 0.1317 15.3997 -2.8698 -0.7691 -1.1204 -1.3267 -0.2296 -18.0795 2.4419 -7.5697 3.0840 -0.1615 -12.5953 7.1982 -25.3447 6.1119 13.0429 -44.7033 12.6229 0.0000 0.0000 27.2418 -13.7528 27.8060 2.3904 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.3223 23.4856 -7.1621 38.5245 23.3743 -52.1477 -0.0000 -0.0000 -7.4664 -15.4696 -23.5128 -12.0534 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -3.8421 -1.6501 1.3723 2.5054 0.0000 0.0000 0.2348 -1.8873 12.9532 6.0046 0.0000 0.0000 1.4638 -2.9889 10.4080 4.5467 0.0000 0.0000 -9.9772 0.9634 7.5788 0.6074 0.0000 0.0000 - -0.7849 10.6748 24.9831 -3.7386 -0.8742 143.1575 -0.9733 3.2690 0.0725 -2.0865 1.2660 0.1329 15.3921 -2.8999 -0.7916 -1.1004 -1.3414 -0.2277 -18.0012 2.4245 -7.7121 3.0801 -0.1633 -12.7730 7.1661 -25.4270 6.0665 12.7492 -44.6794 12.3723 0.0000 0.0000 27.2631 -13.8600 27.7373 2.3845 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.2925 23.5700 -7.0384 38.4881 23.6367 -51.8414 -0.0000 -0.0000 -7.5667 -15.9693 -23.3675 -11.9449 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.7555 -1.6811 1.3185 2.5053 0.0000 0.0000 0.1622 -1.8480 12.7287 6.0096 0.0000 0.0000 1.4952 -3.0409 10.2687 4.5209 0.0000 0.0000 -9.9629 1.0005 7.4363 0.6039 0.0000 0.0000 - -0.7725 10.6818 24.9829 -3.7488 -0.8809 143.4398 -1.0193 3.2863 0.0802 -2.1063 1.2738 0.1323 15.3930 -2.9392 -0.8051 -1.0787 -1.3509 -0.2318 -17.9303 2.3978 -7.8542 3.0653 -0.1625 -12.9524 7.1337 -25.5149 6.0274 12.4344 -44.6469 12.1095 0.0000 0.0000 27.3009 -13.9930 27.6284 2.3730 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 6.2669 23.6612 -6.9010 38.4209 23.8953 -51.5257 -0.0000 -0.0000 -7.6592 -16.5075 -23.2217 -11.8412 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.7159 -1.6995 1.2857 2.5314 0.0000 0.0000 0.0739 -1.8053 12.4902 6.0144 0.0000 0.0000 1.4910 -3.0788 10.1290 4.5005 0.0000 0.0000 -9.9456 1.0289 7.2985 0.5988 0.0000 0.0000 - -0.7582 10.6909 24.9827 -3.7253 -0.9247 143.7227 -1.0270 3.2872 0.0836 -2.1183 1.2717 0.1318 15.3894 -2.9490 -0.8196 -1.0538 -1.3675 -0.2321 -17.8513 2.3606 -8.0005 3.0412 -0.1619 -13.1332 7.1072 -25.5888 5.9824 12.1208 -44.6315 11.8654 0.0000 0.0000 27.3432 -14.1496 27.4842 2.3716 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.2378 23.7365 -6.7661 38.3323 24.1926 -51.1857 -0.0000 -0.0000 -7.7648 -17.0473 -23.0859 -11.7324 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.6081 -1.7282 1.2549 2.5376 0.0000 0.0000 -0.0105 -1.7603 12.2496 6.0162 0.0000 0.0000 1.5467 -3.1271 9.9858 4.4768 0.0000 0.0000 -9.9363 1.0589 7.1634 0.5890 0.0000 0.0000 - -0.7449 10.6994 24.9823 -3.7295 -0.9389 143.9922 -1.0779 3.2885 0.0901 -2.1359 1.2785 0.1350 15.4002 -2.9645 -0.8231 -1.0292 -1.3759 -0.2335 -17.7789 2.3120 -8.1454 3.0065 -0.1582 -13.3166 7.0734 -25.6644 5.9387 11.8112 -44.6116 11.6258 0.0000 0.0000 27.3917 -14.3300 27.2946 2.3911 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 6.2208 23.8209 -6.6358 38.2096 24.4781 -50.8198 -0.0000 -0.0000 -7.8796 -17.5874 -22.9503 -11.6146 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.5608 -1.7495 1.2361 2.5751 0.0000 0.0000 -0.1080 -1.7119 12.0095 6.0172 0.0000 0.0000 1.5527 -3.1670 9.8379 4.4682 0.0000 0.0000 -9.9306 1.0832 7.0437 0.5779 0.0000 0.0000 - -0.7301 10.7099 24.9819 -3.7005 -0.9818 144.2550 -1.0957 3.2819 0.0951 -2.1462 1.2719 0.1365 15.4074 -2.9509 -0.8193 -1.0017 -1.3899 -0.2317 -17.7001 2.2538 -8.2899 2.9656 -0.1552 -13.5014 7.0483 -25.7314 5.8901 11.5263 -44.5933 11.4184 0.0000 0.0000 27.4491 -14.5273 27.0732 2.4224 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 6.2057 23.8925 -6.5061 38.0761 24.7752 -50.4480 -0.0000 -0.0000 -7.9962 -18.1068 -22.8123 -11.4954 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4583 -1.7753 1.2159 2.6043 0.0000 0.0000 -0.2068 -1.6611 11.7778 6.0162 0.0000 0.0000 1.6159 -3.2096 9.6765 4.4504 0.0000 0.0000 -9.9291 1.1087 6.9445 0.5641 0.0000 0.0000 - -0.7150 10.7211 24.9814 -3.6670 -1.0237 144.5062 -1.1166 3.2723 0.1013 -2.1558 1.2728 0.1388 15.4192 -2.9375 -0.8028 -0.9732 -1.4021 -0.2271 -17.6213 2.1912 -8.4343 2.9196 -0.1535 -13.6834 7.0254 -25.7902 5.8405 11.2698 -44.5726 11.2395 0.0000 0.0000 27.5092 -14.7405 26.8169 2.4815 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.1975 23.9676 -6.3852 37.9266 25.0647 -50.0578 -0.0000 -0.0000 -8.1226 -18.5939 -22.6731 -11.3666 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.3583 -1.7984 1.1973 2.6465 0.0000 0.0000 -0.3126 -1.6079 11.5557 6.0141 0.0000 0.0000 1.6852 -3.2475 9.4965 4.4330 0.0000 0.0000 -9.9305 1.1323 6.8749 0.5499 0.0000 0.0000 - -0.6994 10.7330 24.9809 -3.6257 -1.0700 144.7482 -1.1347 3.2606 0.1083 -2.1635 1.2711 0.1411 15.4338 -2.9141 -0.7787 -0.9442 -1.4161 -0.2156 -17.5415 2.1249 -8.5790 2.8711 -0.1543 -13.8619 7.0056 -25.8430 5.7883 11.0482 -44.5472 11.0936 0.0000 0.0000 27.5709 -14.9628 26.5292 2.5678 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 6.1964 24.0440 -6.2769 37.7669 25.3437 -49.6518 -0.0000 -0.0000 -8.2585 -19.0398 -22.5324 -11.2288 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2517 -1.8221 1.1759 2.6964 0.0000 0.0000 -0.4221 -1.5529 11.3449 6.0105 0.0000 0.0000 1.7661 -3.2844 9.2974 4.4168 0.0000 0.0000 -9.9361 1.1557 6.8334 0.5358 0.0000 0.0000 - -0.6833 10.7455 24.9803 -3.5770 -1.1192 144.9830 -1.1487 3.2492 0.1154 -2.1698 1.2715 0.1442 15.4499 -2.8899 -0.7440 -0.9152 -1.4287 -0.2030 -17.4623 2.0545 -8.7197 2.8230 -0.1577 -14.0371 6.9896 -25.8918 5.7381 10.8627 -44.5150 10.9780 0.0000 0.0000 27.6347 -15.1854 26.2125 2.6777 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.1996 24.1248 -6.1741 37.6031 25.6018 -49.2362 -0.0000 -0.0000 -8.4015 -19.4406 -22.3881 -11.0810 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.1398 -1.8454 1.1499 2.7528 0.0000 0.0000 -0.5343 -1.4969 11.1456 6.0059 0.0000 0.0000 1.8563 -3.3194 9.0791 4.4026 0.0000 0.0000 -9.9453 1.1791 6.8187 0.5234 0.0000 0.0000 - -0.6670 10.7581 24.9796 -3.5298 -1.1633 145.2142 -1.1701 3.2384 0.1235 -2.1753 1.2766 0.1487 15.4710 -2.8666 -0.6971 -0.8886 -1.4388 -0.1968 -17.3852 1.9780 -8.8546 2.7772 -0.1641 -14.2092 6.9843 -25.9440 5.6950 10.7124 -44.4683 10.8968 0.0000 0.0000 27.6963 -15.4056 25.8731 2.8094 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.2110 24.2096 -6.0811 37.4350 25.8330 -48.8102 -0.0000 -0.0000 -8.5521 -19.7954 -22.2419 -10.9219 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.0361 -1.8671 1.1161 2.8159 0.0000 0.0000 -0.6482 -1.4404 10.9569 6.0006 0.0000 0.0000 1.9385 -3.3521 8.8410 4.3955 0.0000 0.0000 -9.9581 1.2017 6.8273 0.5138 0.0000 0.0000 - -0.6502 10.7710 24.9790 -3.4765 -1.2122 145.4461 -1.1844 3.2308 0.1315 -2.1801 1.2797 0.1530 15.4917 -2.8425 -0.6502 -0.8621 -1.4519 -0.1825 -17.3103 1.9042 -8.9874 2.7378 -0.1762 -14.3776 6.9803 -25.9948 5.6513 10.5928 -44.4139 10.8389 0.0000 0.0000 27.7585 -15.6111 25.5126 2.9548 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.2271 24.3017 -6.0004 37.2687 26.0383 -48.3768 -0.0000 -0.0000 -8.7076 -20.1010 -22.0917 -10.7544 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.9231 -1.8912 1.0769 2.8783 0.0000 0.0000 -0.7605 -1.3845 10.7720 5.9943 0.0000 0.0000 2.0282 -3.3866 8.5833 4.3912 0.0000 0.0000 -9.9743 1.2244 6.8554 0.5075 0.0000 0.0000 - -0.6330 10.7839 24.9784 -3.4216 -1.2617 145.6823 -1.1968 3.2263 0.1397 -2.1845 1.2855 0.1581 15.5139 -2.8229 -0.6023 -0.8378 -1.4655 -0.1670 -17.2385 1.8307 -9.1181 2.7062 -0.1936 -14.5407 6.9821 -26.0491 5.6124 10.4977 -44.3493 10.8024 0.0000 0.0000 27.8171 -15.7985 25.1359 3.1118 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 6.2489 24.4002 -5.9300 37.1044 26.2146 -47.9384 -0.0000 -0.0000 -8.8679 -20.3618 -21.9381 -10.5746 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.8074 -1.9169 1.0319 2.9386 0.0000 0.0000 -0.8705 -1.3298 10.5878 5.9875 0.0000 0.0000 2.1163 -3.4226 8.3098 4.3913 0.0000 0.0000 -9.9927 1.2469 6.8957 0.5048 0.0000 0.0000 - -0.6154 10.7967 24.9779 -3.3643 -1.3126 145.9266 -1.2056 3.2263 0.1481 -2.1892 1.2924 0.1634 15.5380 -2.8087 -0.5546 -0.8165 -1.4793 -0.1520 -17.1699 1.7587 -9.2475 2.6846 -0.2168 -14.6991 6.9902 -26.1089 5.5787 10.4192 -44.2751 10.7815 0.0000 0.0000 27.8717 -15.9623 24.7486 3.2723 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 6.2764 24.5057 -5.8691 36.9428 26.3604 -47.4976 -0.0000 -0.0000 -9.0315 -20.5814 -21.7788 -10.3814 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -2.6858 -1.9442 0.9807 2.9933 0.0000 0.0000 -0.9770 -1.2771 10.4009 5.9804 0.0000 0.0000 2.2046 -3.4606 8.0228 4.3941 0.0000 0.0000 -10.0122 1.2689 6.9424 0.5060 0.0000 0.0000 - -0.5976 10.8092 24.9773 -3.3145 -1.3589 146.1817 -1.2208 3.2305 0.1570 -2.1955 1.3005 0.1686 15.5637 -2.7992 -0.5115 -0.7954 -1.4948 -0.1363 -17.1090 1.6881 -9.3729 2.6748 -0.2448 -14.8569 7.0022 -26.1761 5.5506 10.3499 -44.1917 10.7710 0.0000 0.0000 27.9204 -16.0983 24.3552 3.4298 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3009 24.6158 -5.8136 36.7880 26.4828 -47.0598 -0.0000 -0.0000 -9.1921 -20.7634 -21.6072 -10.1792 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.5726 -1.9737 0.9253 3.0454 0.0000 0.0000 -1.0805 -1.2270 10.2063 5.9734 0.0000 0.0000 2.2776 -3.5017 7.7297 4.4030 0.0000 0.0000 -10.0327 1.2910 6.9851 0.5105 0.0000 0.0000 - -0.5795 10.8217 24.9768 -3.2625 -1.4075 146.4504 -1.2316 3.2386 0.1651 -2.2028 1.3081 0.1738 15.5908 -2.7943 -0.4718 -0.7761 -1.5093 -0.1218 -17.0523 1.6183 -9.5003 2.6773 -0.2772 -15.0113 7.0196 -26.2524 5.5270 10.2839 -44.1011 10.7671 0.0000 0.0000 27.9624 -16.2050 23.9628 3.5801 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 6.3265 24.7282 -5.7632 36.6389 26.5819 -46.6289 -0.0000 -0.0000 -9.3502 -20.9146 -21.4222 -9.9633 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -2.4503 -2.0053 0.8640 3.0877 0.0000 0.0000 -1.1797 -1.1800 10.0033 5.9666 0.0000 0.0000 2.3527 -3.5459 7.4316 4.4102 0.0000 0.0000 -10.0515 1.3136 7.0208 0.5173 0.0000 0.0000 - -0.5611 10.8341 24.9764 -3.2128 -1.4551 146.7340 -1.2440 3.2529 0.1744 -2.2150 1.3147 0.1760 15.6256 -2.7960 -0.4335 -0.7602 -1.5256 -0.1115 -16.9999 1.5543 -9.6258 2.6922 -0.3152 -15.1664 7.0401 -26.3294 5.5095 10.2129 -44.0140 10.7638 0.0000 0.0000 27.9951 -16.2778 23.5771 3.7194 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 6.3491 24.8474 -5.7190 36.4923 26.6650 -46.1979 -0.0000 -0.0000 -9.5082 -21.0395 -21.2213 -9.7351 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.3262 -2.0382 0.7922 3.1224 0.0000 0.0000 -1.2758 -1.1366 9.7953 5.9603 0.0000 0.0000 2.4219 -3.5927 7.1299 4.4186 0.0000 0.0000 -10.0692 1.3368 7.0466 0.5255 0.0000 0.0000 - -0.5422 10.8471 24.9760 -3.1544 -1.5091 147.0288 -1.2529 3.2634 0.1903 -2.2203 1.3306 0.1812 15.6598 -2.8061 -0.4113 -0.7447 -1.5391 -0.0939 -16.9496 1.4880 -9.7535 2.7197 -0.3541 -15.3248 7.0668 -26.4158 5.4926 10.1401 -43.9235 10.7681 0.0000 0.0000 28.0177 -16.3234 23.2072 3.8461 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3629 24.9554 -5.6773 36.3574 26.7500 -45.7838 -0.0000 -0.0000 -9.6581 -21.1402 -20.9992 -9.4970 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -2.1835 -2.0727 0.7217 3.1475 0.0000 0.0000 -1.3701 -1.0971 9.5745 5.9548 0.0000 0.0000 2.5109 -3.6414 6.8342 4.4101 0.0000 0.0000 -10.0794 1.3624 7.0577 0.5328 0.0000 0.0000 - -0.5240 10.8587 24.9756 -3.1346 -1.5390 147.3407 -1.3014 3.2829 0.1987 -2.2378 1.3326 0.1861 15.7057 -2.8088 -0.3827 -0.7288 -1.5565 -0.0883 -16.9115 1.4254 -9.8865 2.7576 -0.3949 -15.4799 7.0903 -26.5110 5.4802 10.0586 -43.8319 10.7719 0.0000 0.0000 28.0271 -16.3382 22.8534 3.9596 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.3718 25.0779 -5.6346 36.2223 26.8050 -45.3754 -0.0000 -0.0000 -9.8019 -21.2365 -20.7500 -9.2496 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -2.0944 -2.1087 0.6316 3.1789 0.0000 0.0000 -1.4626 -1.0609 9.3545 5.9500 0.0000 0.0000 2.5347 -3.6955 6.5497 4.4233 0.0000 0.0000 -10.0932 1.3919 7.0402 0.5381 0.0000 0.0000 - -0.5044 10.8723 24.9752 -3.0800 -1.5951 147.6658 -1.3170 3.2988 0.2096 -2.2495 1.3299 0.1886 15.7494 -2.8060 -0.3626 -0.7122 -1.5729 -0.0780 -16.8672 1.3615 -10.0216 2.8064 -0.4357 -15.6420 7.1184 -26.6019 5.4660 9.9744 -43.7561 10.7813 0.0000 0.0000 28.0262 -16.3275 22.5285 4.0613 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.3697 25.1822 -5.5909 36.1023 26.8768 -44.9905 -0.0000 -0.0000 -9.9354 -21.3202 -20.4776 -9.0019 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.9408 -2.1481 0.5309 3.1854 0.0000 0.0000 -1.5501 -1.0294 9.1332 5.9452 0.0000 0.0000 2.6207 -3.7534 6.2679 4.4099 0.0000 0.0000 -10.0994 1.4265 7.0109 0.5394 0.0000 0.0000 - -0.4848 10.8863 24.9749 -3.0301 -1.6464 148.0018 -1.3428 3.3157 0.2197 -2.2648 1.3262 0.1933 15.7988 -2.8035 -0.3490 -0.6946 -1.5868 -0.0637 -16.8245 1.2959 -10.1648 2.8625 -0.4737 -15.8052 7.1471 -26.6986 5.4512 9.8877 -43.6834 10.7942 0.0000 0.0000 28.0173 -16.2949 22.2340 4.1487 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.3560 25.2818 -5.5476 35.9914 26.9505 -44.6206 -0.0000 -0.0000 -10.0603 -21.4037 -20.1822 -8.7566 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.7917 -2.1862 0.4176 3.1903 0.0000 0.0000 -1.6384 -1.0010 8.9139 5.9412 0.0000 0.0000 2.7017 -3.8116 5.9962 4.3904 0.0000 0.0000 -10.1007 1.4662 6.9625 0.5361 0.0000 0.0000 - -0.4651 10.9006 24.9745 -2.9874 -1.6913 148.3456 -1.3872 3.3299 0.2346 -2.2797 1.3328 0.1947 15.8568 -2.8104 -0.3226 -0.6765 -1.5973 -0.0631 -16.7833 1.2307 -10.3100 2.9244 -0.5097 -15.9721 7.1676 -26.7868 5.4356 9.8039 -43.6307 10.8129 0.0000 0.0000 27.9949 -16.2421 21.9702 4.2315 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.3329 25.3772 -5.5027 35.8893 27.0252 -44.2697 -0.0000 -0.0000 -10.1734 -21.4973 -19.8661 -8.5238 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.6501 -2.2226 0.2806 3.1931 0.0000 0.0000 -1.7266 -0.9755 8.7110 5.9376 0.0000 0.0000 2.7727 -3.8700 5.7365 4.3698 0.0000 0.0000 -10.0996 1.5116 6.8956 0.5277 0.0000 0.0000 - -0.4448 10.9163 24.9741 -2.9294 -1.7450 148.6956 -1.4216 3.3441 0.2480 -2.2946 1.3268 0.1960 15.9161 -2.8012 -0.3033 -0.6563 -1.6088 -0.0531 -16.7365 1.1634 -10.4602 2.9895 -0.5420 -16.1448 7.1877 -26.8696 5.4155 9.7282 -43.5925 10.8425 0.0000 0.0000 27.9653 -16.1783 21.7442 4.3086 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 6.3001 25.4640 -5.4594 35.7993 27.1086 -43.9351 -0.0000 -0.0000 -10.2798 -21.5980 -19.5367 -8.3076 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.4810 -2.2585 0.1269 3.1858 0.0000 0.0000 -1.8136 -0.9530 8.5200 5.9338 0.0000 0.0000 2.8713 -3.9289 5.4843 4.3357 0.0000 0.0000 -10.0937 1.5629 6.8176 0.5140 0.0000 0.0000 - -0.4240 10.9332 24.9738 -2.8583 -1.8061 149.0492 -1.4493 3.3552 0.2615 -2.3083 1.3194 0.2011 15.9770 -2.7886 -0.2856 -0.6342 -1.6180 -0.0415 -16.6849 1.0933 -10.6162 3.0564 -0.5699 -16.3197 7.2000 -26.9443 5.3884 9.6701 -43.5712 10.8858 0.0000 0.0000 27.9309 -16.1058 21.5529 4.3810 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 6.2592 25.5408 -5.4126 35.7249 27.1955 -43.6283 -0.0000 -0.0000 -10.3704 -21.7162 -19.1985 -8.1211 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.2879 -2.2947 -0.0417 3.1686 0.0000 0.0000 -1.8984 -0.9329 8.3419 5.9296 0.0000 0.0000 2.9912 -3.9887 5.2402 4.2948 0.0000 0.0000 -10.0862 1.6199 6.7300 0.4959 0.0000 0.0000 - -0.4032 10.9506 24.9733 -2.7906 -1.8622 149.4025 -1.4909 3.3601 0.2742 -2.3195 1.3227 0.2016 16.0416 -2.7782 -0.2519 -0.6110 -1.6242 -0.0356 -16.6301 1.0210 -10.7736 3.1214 -0.5937 -16.4965 7.2154 -27.0112 5.3679 9.6245 -43.5604 10.9402 0.0000 0.0000 27.8941 -16.0349 21.3983 4.4530 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.2108 25.6184 -5.3657 35.6590 27.2798 -43.3330 -0.0000 -0.0000 -10.4549 -21.8510 -18.8618 -7.9659 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.0997 -2.3290 -0.2283 3.1514 0.0000 0.0000 -1.9828 -0.9143 8.1832 5.9251 0.0000 0.0000 3.1046 -4.0477 5.0089 4.2566 0.0000 0.0000 -10.0787 1.6814 6.6305 0.4748 0.0000 0.0000 - -0.3823 10.9687 24.9728 -2.7135 -1.9203 149.7517 -1.5275 3.3643 0.2873 -2.3310 1.3172 0.2041 16.1060 -2.7537 -0.2192 -0.5859 -1.6304 -0.0243 -16.5705 0.9459 -10.9335 3.1839 -0.6130 -16.6765 7.2208 -27.0677 5.3413 9.6034 -43.5649 11.0096 0.0000 0.0000 27.8571 -15.9662 21.2733 4.5259 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.1624 25.6931 -5.3217 35.6032 27.3576 -43.0561 -0.0000 -0.0000 -10.5293 -22.0051 -18.5335 -7.8500 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.8986 -2.3612 -0.4252 3.1301 0.0000 0.0000 -2.0662 -0.8968 8.0405 5.9199 0.0000 0.0000 3.2299 -4.1046 4.7867 4.2178 0.0000 0.0000 -10.0714 1.7454 6.5269 0.4527 0.0000 0.0000 - -0.3616 10.9874 24.9723 -2.6270 -1.9786 150.0935 -1.5597 3.3661 0.3007 -2.3400 1.3107 0.2076 16.1676 -2.7209 -0.1808 -0.5589 -1.6351 -0.0114 -16.5063 0.8682 -11.0927 3.2422 -0.6287 -16.8594 7.2226 -27.1128 5.3155 9.6063 -43.5809 11.0938 0.0000 0.0000 27.8224 -15.9057 21.1751 4.6017 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.1175 25.7671 -5.2822 35.5541 27.4267 -42.7947 -0.0000 -0.0000 -10.5947 -22.1768 -18.2218 -7.7764 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6875 -2.3896 -0.6280 3.1065 0.0000 0.0000 -2.1491 -0.8798 7.9127 5.9143 0.0000 0.0000 3.3648 -4.1570 4.5724 4.1803 0.0000 0.0000 -10.0646 1.8094 6.4234 0.4324 0.0000 0.0000 - -0.3411 11.0060 24.9716 -2.5415 -2.0367 150.4250 -1.5919 3.3602 0.3124 -2.3511 1.3076 0.2118 16.2304 -2.6836 -0.1337 -0.5327 -1.6388 0.0023 -16.4399 0.7895 -11.2511 3.2963 -0.6418 -17.0416 7.2149 -27.1475 5.2881 9.6392 -43.6046 11.1941 0.0000 0.0000 27.7933 -15.8531 21.0966 4.6773 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 6.0708 25.8488 -5.2387 35.5133 27.4768 -42.5462 -0.0000 -0.0000 -10.6546 -22.3591 -17.9296 -7.7403 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.4793 -2.4203 -0.8286 3.0831 0.0000 0.0000 -2.2285 -0.8635 7.7939 5.9078 0.0000 0.0000 3.4934 -4.2114 4.3758 4.1552 0.0000 0.0000 -10.0640 1.8742 6.3119 0.4149 0.0000 0.0000 - -0.3214 11.0242 24.9709 -2.4572 -2.0881 150.7426 -1.6262 3.3519 0.3231 -2.3612 1.3029 0.2155 16.2897 -2.6357 -0.0786 -0.5060 -1.6411 0.0190 -16.3717 0.7087 -11.4071 3.3448 -0.6526 -17.2237 7.2071 -27.1754 5.2685 9.6941 -43.6284 11.3054 0.0000 0.0000 27.7718 -15.8137 21.0338 4.7557 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 6.0335 25.9373 -5.2027 35.4716 27.5079 -42.3041 -0.0000 -0.0000 -10.7106 -22.5498 -17.6641 -7.7407 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.2817 -2.4466 -1.0207 3.0660 0.0000 0.0000 -2.3088 -0.8466 7.6810 5.9014 0.0000 0.0000 3.6127 -4.2601 4.1910 4.1399 0.0000 0.0000 -10.0664 1.9351 6.2016 0.4033 0.0000 0.0000 - -0.3024 11.0418 24.9701 -2.3723 -2.1379 151.0431 -1.6556 3.3398 0.3341 -2.3721 1.2948 0.2209 16.3455 -2.5780 -0.0172 -0.4795 -1.6438 0.0375 -16.3032 0.6285 -11.5584 3.3895 -0.6626 -17.4053 7.1943 -27.1903 5.2518 9.7761 -43.6570 11.4339 0.0000 0.0000 27.7548 -15.7838 20.9803 4.8378 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 6.0037 26.0332 -5.1694 35.4299 27.5195 -42.0714 -0.0000 -0.0000 -10.7620 -22.7403 -17.4242 -7.7709 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0904 -2.4724 -1.1972 3.0535 0.0000 0.0000 -2.3875 -0.8297 7.5699 5.8949 0.0000 0.0000 3.7261 -4.3068 4.0226 4.1365 0.0000 0.0000 -10.0745 1.9918 6.0907 0.3986 0.0000 0.0000 - -0.2846 11.0587 24.9692 -2.2848 -2.1817 151.3235 -1.6791 3.3213 0.3456 -2.3832 1.3083 0.2257 16.3979 -2.5369 0.0605 -0.4550 -1.6382 0.0556 -16.2354 0.5507 -11.7035 3.4315 -0.6727 -17.5853 7.1740 -27.1927 5.2374 9.8852 -43.6853 11.5770 0.0000 0.0000 27.7450 -15.7597 20.9297 4.9194 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 5.9701 26.1355 -5.1345 35.3915 27.5233 -41.8453 -0.0000 -0.0000 -10.8105 -22.9144 -17.2084 -7.8220 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0908 -2.4915 -1.3541 3.0509 0.0000 0.0000 -2.4689 -0.8123 7.4593 5.8894 0.0000 0.0000 3.8354 -4.3447 3.8702 4.1404 0.0000 0.0000 -10.0844 2.0412 5.9827 0.4026 0.0000 0.0000 - -0.2683 11.0730 24.9683 -2.2331 -2.2104 151.5838 -1.7284 3.3018 0.3534 -2.3986 1.2839 0.2311 16.4483 -2.4461 0.1393 -0.4315 -1.6440 0.0746 -16.1743 0.4702 -11.8423 3.4697 -0.6824 -17.7636 7.1518 -27.2018 5.2369 10.0063 -43.6968 11.7209 0.0000 0.0000 27.7448 -15.7380 20.8782 4.9991 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 5.9533 26.2554 -5.1055 35.3403 27.4868 -41.6167 -0.0000 -0.0000 -10.8614 -23.0809 -17.0139 -7.8768 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.2125 -2.5162 -1.4811 3.0682 0.0000 0.0000 -2.5481 -0.7945 7.3365 5.8838 0.0000 0.0000 3.8835 -4.3876 3.7419 4.1780 0.0000 0.0000 -10.1075 2.0864 5.8670 0.4136 0.0000 0.0000 - -0.2531 11.0864 24.9673 -2.1761 -2.2386 151.8221 -1.7647 3.2771 0.3630 -2.4146 1.2723 0.2368 16.4941 -2.3667 0.2282 -0.4107 -1.6431 0.0946 -16.1132 0.3928 -11.9739 3.5075 -0.6937 -17.9396 7.1265 -27.1967 5.2404 10.1460 -43.7088 11.8791 0.0000 0.0000 27.7457 -15.7145 20.8254 5.0819 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.9389 26.3763 -5.0792 35.2876 27.4484 -41.3948 -0.0000 -0.0000 -10.9098 -23.2180 -16.8363 -7.9327 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.3286 -2.5371 -1.5805 3.0956 0.0000 0.0000 -2.6292 -0.7766 7.2076 5.8795 0.0000 0.0000 3.9340 -4.4247 3.6334 4.2205 0.0000 0.0000 -10.1328 2.1246 5.7521 0.4321 0.0000 0.0000 - -0.2393 11.0982 24.9663 -2.1299 -2.2596 152.0379 -1.8022 3.2489 0.3725 -2.4336 1.2642 0.2441 16.5366 -2.2890 0.3235 -0.3916 -1.6404 0.1166 -16.0574 0.3195 -12.0993 3.5468 -0.7067 -18.1114 7.0916 -27.1842 5.2445 10.3021 -43.7143 12.0471 0.0000 0.0000 27.7503 -15.6798 20.7674 5.1602 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 5.9188 26.5009 -5.0511 35.2353 27.4074 -41.1772 -0.0000 -0.0000 -10.9574 -23.3192 -16.6685 -7.9755 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.4160 -2.5561 -1.6510 3.1397 0.0000 0.0000 -2.7122 -0.7589 7.0706 5.8762 0.0000 0.0000 3.9633 -4.4584 3.5452 4.2753 0.0000 0.0000 -10.1625 2.1562 5.6374 0.4567 0.0000 0.0000 - -0.2270 11.1082 24.9653 -2.0999 -2.2727 152.2336 -1.8475 3.2170 0.3812 -2.4555 1.2531 0.2508 16.5791 -2.2055 0.4221 -0.3764 -1.6368 0.1395 -16.0054 0.2468 -12.2158 3.5871 -0.7212 -18.2797 7.0563 -27.1667 5.2569 10.4647 -43.7125 12.2234 0.0000 0.0000 27.7540 -15.6319 20.7073 5.2371 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.8957 26.6274 -5.0227 35.1791 27.3651 -40.9588 -0.0000 -0.0000 -11.0086 -23.3819 -16.5065 -7.9933 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.4680 -2.5750 -1.6951 3.2022 0.0000 0.0000 -2.7967 -0.7416 6.9252 5.8739 0.0000 0.0000 3.9636 -4.4910 3.4804 4.3459 0.0000 0.0000 -10.1977 2.1830 5.5169 0.4852 0.0000 0.0000 - -0.2159 11.1169 24.9643 -2.0728 -2.2831 152.4091 -1.8877 3.1867 0.3905 -2.4772 1.2416 0.2584 16.6150 -2.1267 0.5262 -0.3619 -1.6312 0.1611 -15.9554 0.1794 -12.3261 3.6302 -0.7381 -18.4427 7.0167 -27.1421 5.2720 10.6291 -43.7051 12.4007 0.0000 0.0000 27.7614 -15.5659 20.6462 5.3077 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.8749 26.7506 -4.9965 35.1224 27.3263 -40.7508 -0.0000 -0.0000 -11.0555 -23.4078 -16.3444 -7.9865 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5035 -2.5915 -1.7169 3.2786 0.0000 0.0000 -2.8833 -0.7251 6.7762 5.8724 0.0000 0.0000 3.9572 -4.5200 3.4322 4.4204 0.0000 0.0000 -10.2342 2.2046 5.3984 0.5161 0.0000 0.0000 - -0.2057 11.1246 24.9634 -2.0481 -2.2937 152.5690 -1.9221 3.1550 0.4004 -2.4990 1.2247 0.2644 16.6458 -2.0438 0.6289 -0.3484 -1.6235 0.1826 -15.9078 0.1113 -12.4298 3.6765 -0.7563 -18.6000 6.9678 -27.1104 5.2843 10.7973 -43.7002 12.5842 0.0000 0.0000 27.7657 -15.4766 20.5834 5.3754 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 5.8471 26.8657 -4.9684 35.0670 27.2991 -40.5456 -0.0000 -0.0000 -11.1058 -23.3944 -16.1803 -7.9466 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.5276 -2.6081 -1.7239 3.3645 0.0000 0.0000 -2.9698 -0.7100 6.6267 5.8713 0.0000 0.0000 3.9454 -4.5485 3.3999 4.4999 0.0000 0.0000 -10.2729 2.2231 5.2783 0.5465 0.0000 0.0000 - -0.1965 11.1314 24.9624 -2.0255 -2.3033 152.7141 -1.9547 3.1264 0.4096 -2.5199 1.2069 0.2704 16.6753 -1.9662 0.7301 -0.3370 -1.6159 0.2044 -15.8613 0.0470 -12.5266 3.7255 -0.7765 -18.7503 6.9212 -27.0737 5.2978 10.9617 -43.6881 12.7734 0.0000 0.0000 27.7725 -15.3708 20.5272 5.4339 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 5.8124 26.9722 -4.9378 35.0151 27.2873 -40.3504 -0.0000 -0.0000 -11.1516 -23.3457 -16.0078 -7.8820 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.5412 -2.6236 -1.7228 3.4588 0.0000 0.0000 -3.0562 -0.6964 6.4829 5.8701 0.0000 0.0000 3.9297 -4.5753 3.3806 4.5814 0.0000 0.0000 -10.3123 2.2391 5.1587 0.5752 0.0000 0.0000 - -0.1879 11.1375 24.9615 -2.0050 -2.3129 152.8485 -1.9846 3.0996 0.4187 -2.5411 1.1849 0.2741 16.7032 -1.8875 0.8272 -0.3271 -1.6089 0.2253 -15.8158 -0.0171 -12.6181 3.7763 -0.7978 -18.8923 6.8686 -27.0339 5.3086 11.1186 -43.6756 12.9597 0.0000 0.0000 27.7816 -15.2467 20.4735 5.4878 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 5.7716 27.0690 -4.9082 34.9628 27.2929 -40.1554 -0.0000 -0.0000 -11.1992 -23.2679 -15.8293 -7.7931 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.5473 -2.6389 -1.7215 3.5577 0.0000 0.0000 -3.1409 -0.6844 6.3488 5.8683 0.0000 0.0000 3.9100 -4.6020 3.3713 4.6653 0.0000 0.0000 -10.3524 2.2541 5.0387 0.6002 0.0000 0.0000 - -0.1800 11.1430 24.9606 -1.9867 -2.3214 152.9737 -2.0147 3.0768 0.4280 -2.5614 1.1621 0.2766 16.7309 -1.8144 0.9175 -0.3187 -1.6012 0.2446 -15.7718 -0.0815 -12.7034 3.8279 -0.8199 -19.0250 6.8107 -26.9929 5.3161 11.2653 -43.6611 13.1412 0.0000 0.0000 27.7959 -15.1100 20.4231 5.5364 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.7250 27.1588 -4.8772 34.9094 27.3121 -39.9600 -0.0000 -0.0000 -11.2492 -23.1700 -15.6456 -7.6866 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.5474 -2.6528 -1.7262 3.6588 0.0000 0.0000 -3.2236 -0.6740 6.2293 5.8656 0.0000 0.0000 3.8875 -4.6274 3.3681 4.7488 0.0000 0.0000 -10.3918 2.2686 4.9205 0.6205 0.0000 0.0000 - -0.1726 11.1481 24.9597 -1.9707 -2.3288 153.0904 -2.0470 3.0589 0.4365 -2.5818 1.1375 0.2775 16.7602 -1.7451 1.0007 -0.3104 -1.5955 0.2630 -15.7298 -0.1452 -12.7831 3.8792 -0.8429 -19.1472 6.7596 -26.9516 5.3262 11.3941 -43.6405 13.3177 0.0000 0.0000 27.8194 -14.9698 20.3802 5.5774 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 5.6796 27.2431 -4.8491 34.8493 27.3419 -39.7638 -0.0000 -0.0000 -11.2986 -23.0645 -15.4590 -7.5752 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.5437 -2.6656 -1.7413 3.7584 0.0000 0.0000 -3.3030 -0.6650 6.1285 5.8616 0.0000 0.0000 3.8629 -4.6518 3.3692 4.8310 0.0000 0.0000 -10.4301 2.2832 4.8055 0.6358 0.0000 0.0000 - -0.1657 11.1530 24.9588 -1.9551 -2.3341 153.1996 -2.0825 3.0466 0.4459 -2.5992 1.1197 0.2803 16.7918 -1.6919 1.0731 -0.3036 -1.5880 0.2783 -15.6907 -0.2094 -12.8565 3.9297 -0.8658 -19.2574 6.7028 -26.9118 5.3307 11.5104 -43.6154 13.4855 0.0000 0.0000 27.8552 -14.8301 20.3385 5.6134 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.6334 27.3282 -4.8161 34.7839 27.3714 -39.5653 -0.0000 -0.0000 -11.3520 -22.9596 -15.2735 -7.4623 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.5399 -2.6753 -1.7699 3.8537 0.0000 0.0000 -3.3793 -0.6569 6.0487 5.8568 0.0000 0.0000 3.8408 -4.6732 3.3687 4.9063 0.0000 0.0000 -10.4651 2.2979 4.6986 0.6460 0.0000 0.0000 - -0.1590 11.1579 24.9580 -1.9398 -2.3388 153.3014 -2.1203 3.0391 0.4518 -2.6157 1.1059 0.2815 16.8273 -1.6473 1.1371 -0.2981 -1.5822 0.2938 -15.6542 -0.2745 -12.9197 3.9777 -0.8883 -19.3579 6.6648 -26.8780 5.3474 11.5977 -43.5748 13.6382 0.0000 0.0000 27.9090 -14.7053 20.3037 5.6460 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 5.5931 27.4161 -4.7833 34.7062 27.3993 -39.3605 -0.0000 -0.0000 -11.4097 -22.8639 -15.0955 -7.3577 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.5386 -2.6833 -1.8118 3.9412 0.0000 0.0000 -3.4504 -0.6498 5.9899 5.8506 0.0000 0.0000 3.8225 -4.6928 3.3670 4.9742 0.0000 0.0000 -10.4968 2.3131 4.5996 0.6515 0.0000 0.0000 - -0.1527 11.1628 24.9571 -1.9250 -2.3428 153.3938 -2.1609 3.0353 0.4592 -2.6309 1.0952 0.2842 16.8666 -1.6116 1.1911 -0.2930 -1.5770 0.3058 -15.6238 -0.3410 -12.9766 4.0242 -0.9104 -19.4463 6.6239 -26.8480 5.3595 11.6674 -43.5282 13.7776 0.0000 0.0000 27.9800 -14.5903 20.2641 5.6767 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.5630 27.5096 -4.7499 34.6171 27.4123 -39.1528 -0.0000 -0.0000 -11.4723 -22.7893 -14.9311 -7.2648 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.5411 -2.6895 -1.8647 4.0180 0.0000 0.0000 -3.5157 -0.6432 5.9519 5.8436 0.0000 0.0000 3.8100 -4.7101 3.3627 5.0316 0.0000 0.0000 -10.5247 2.3291 4.5122 0.6528 0.0000 0.0000 - -0.1467 11.1677 24.9562 -1.9106 -2.3467 153.4764 -2.2022 3.0347 0.4666 -2.6463 1.0862 0.2861 16.9101 -1.5807 1.2374 -0.2894 -1.5739 0.3152 -15.5997 -0.4088 -13.0275 4.0689 -0.9314 -19.5222 6.5843 -26.8266 5.3700 11.7154 -43.4686 13.8985 0.0000 0.0000 28.0713 -14.4917 20.2189 5.7089 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 5.5418 27.6100 -4.7168 34.5189 27.4090 -38.9405 -0.0000 -0.0000 -11.5412 -22.7361 -14.7859 -7.1872 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.5481 -2.6950 -1.9241 4.0831 0.0000 0.0000 -3.5745 -0.6367 5.9307 5.8364 0.0000 0.0000 3.8040 -4.7262 3.3574 5.0781 0.0000 0.0000 -10.5491 2.3466 4.4353 0.6506 0.0000 0.0000 - -0.1409 11.1727 24.9552 -1.8921 -2.3557 153.5479 -2.2363 3.0357 0.4718 -2.6624 1.0703 0.2822 16.9560 -1.5418 1.2796 -0.2870 -1.5759 0.3243 -15.5812 -0.4792 -13.0719 4.1121 -0.9511 -19.5866 6.5556 -26.8162 5.3859 11.7343 -43.3927 13.9967 0.0000 0.0000 28.1841 -14.4120 20.1688 5.7461 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 5.5279 27.7130 -4.6872 34.4163 27.3938 -38.7234 -0.0000 -0.0000 -11.6173 -22.7021 -14.6667 -7.1254 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.5683 -2.7024 -1.9833 4.1326 0.0000 0.0000 -3.6249 -0.6305 5.9210 5.8292 0.0000 0.0000 3.8124 -4.7433 3.3534 5.1126 0.0000 0.0000 -10.5712 2.3665 4.3684 0.6454 0.0000 0.0000 - -0.1349 11.1791 24.9543 -1.8426 -2.3821 153.6068 -2.2402 3.0385 0.4775 -2.6691 1.0542 0.2781 16.9974 -1.5077 1.3144 -0.2865 -1.5796 0.3320 -15.5641 -0.5498 -13.1096 4.1565 -0.9707 -19.6386 6.5332 -26.8080 5.4013 11.7304 -43.3104 14.0749 0.0000 0.0000 28.3171 -14.3441 20.1108 5.7904 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.5385 27.8152 -4.6499 34.3263 27.3397 -38.5421 -0.0000 -0.0000 -11.6853 -22.7027 -14.5767 -7.0770 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.6417 -2.7112 -2.0334 4.1550 0.0000 0.0000 -3.6660 -0.6248 5.9172 5.8227 0.0000 0.0000 3.8819 -4.7590 3.3413 5.1113 0.0000 0.0000 -10.5843 2.3870 4.3251 0.6376 0.0000 0.0000 - -0.1294 11.1852 24.9533 -1.7952 -2.4062 153.6483 -2.2447 3.0382 0.4833 -2.6741 1.0651 0.2833 17.0386 -1.5058 1.3417 -0.2871 -1.5805 0.3383 -15.5561 -0.6187 -13.1382 4.2018 -0.9890 -19.6800 6.5150 -26.8076 5.4206 11.6969 -43.2130 14.1264 0.0000 0.0000 28.4672 -14.2858 20.0436 5.8446 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 5.5596 27.9232 -4.6115 34.2591 27.2473 -38.3846 -0.0000 -0.0000 -11.7505 -22.7271 -14.5187 -7.0347 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.7121 -2.7178 -2.0667 4.1717 0.0000 0.0000 -3.7036 -0.6180 5.9138 5.8185 0.0000 0.0000 3.9593 -4.7702 3.3291 5.0921 0.0000 0.0000 -10.5919 2.4075 4.2995 0.6285 0.0000 0.0000 - -0.1246 11.1906 24.9523 -1.7566 -2.4296 153.6767 -2.2549 3.0450 0.4856 -2.6781 1.0621 0.2832 17.0850 -1.4922 1.3687 -0.2927 -1.5948 0.3438 -15.5574 -0.6804 -13.1616 4.2498 -1.0080 -19.7102 6.4901 -26.8138 5.4340 11.6367 -43.1044 14.1508 0.0000 0.0000 28.6315 -14.2272 19.9673 5.9077 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.5917 28.0312 -4.5789 34.2334 27.1132 -38.2655 -0.0000 -0.0000 -11.8050 -22.7717 -14.4930 -6.9952 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.7735 -2.7277 -2.0750 4.1831 0.0000 0.0000 -3.7361 -0.6097 5.8979 5.8167 0.0000 0.0000 4.0342 -4.7834 3.3277 5.0622 0.0000 0.0000 -10.5972 2.4317 4.2763 0.6173 0.0000 0.0000 - -0.1203 11.1955 24.9513 -1.7187 -2.4549 153.6899 -2.2568 3.0495 0.4904 -2.6835 1.0722 0.2876 17.1272 -1.4992 1.3848 -0.2988 -1.6046 0.3486 -15.5669 -0.7463 -13.1804 4.3008 -1.0241 -19.7282 6.4587 -26.8333 5.4489 11.5420 -42.9868 14.1362 0.0000 0.0000 28.8082 -14.1582 19.8817 5.9810 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 5.6343 28.1222 -4.5465 34.2760 26.9310 -38.2140 -0.0000 -0.0000 -11.8367 -22.8358 -14.5010 -6.9524 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.8344 -2.7398 -2.0522 4.1896 0.0000 0.0000 -3.7645 -0.5999 5.8658 5.8175 0.0000 0.0000 4.1176 -4.7964 3.3331 5.0182 0.0000 0.0000 -10.5997 2.4573 4.2622 0.6048 0.0000 0.0000 - -0.1170 11.1989 24.9503 -1.6977 -2.4750 153.6899 -2.2672 3.0619 0.4952 -2.6926 1.0745 0.2895 17.1726 -1.5083 1.3966 -0.3084 -1.6213 0.3524 -15.5869 -0.8061 -13.1968 4.3558 -1.0406 -19.7349 6.4192 -26.8593 5.4524 11.4199 -42.8620 14.1056 0.0000 0.0000 28.9834 -14.0780 19.7956 6.0656 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.6913 28.1964 -4.5259 34.4096 26.6869 -38.2466 -0.0000 -0.0000 -11.8354 -22.9177 -14.5384 -6.9042 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.8692 -2.7550 -1.9923 4.2015 0.0000 0.0000 -3.7912 -0.5879 5.8085 5.8210 0.0000 0.0000 4.1827 -4.8107 3.3462 4.9722 0.0000 0.0000 -10.6031 2.4841 4.2530 0.5914 0.0000 0.0000 - -0.1147 11.2006 24.9492 -1.6974 -2.4863 153.6817 -2.2894 3.0803 0.5001 -2.7050 1.0779 0.2905 17.2196 -1.5263 1.3952 -0.3219 -1.6427 0.3568 -15.6169 -0.8656 -13.2116 4.4142 -1.0556 -19.7282 6.3586 -26.8992 5.4488 11.2632 -42.7330 14.0346 0.0000 0.0000 29.1608 -13.9745 19.7064 6.1593 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 5.7456 28.2376 -4.5142 34.6641 26.3901 -38.3766 -0.0000 -0.0000 -11.7963 -23.0044 -14.6036 -6.8422 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.8690 -2.7722 -1.8942 4.2251 0.0000 0.0000 -3.8193 -0.5732 5.7197 5.8271 0.0000 0.0000 4.2199 -4.8259 3.3740 4.9288 0.0000 0.0000 -10.6074 2.5130 4.2363 0.5770 0.0000 0.0000 - -0.1121 11.2025 24.9482 -1.6705 -2.5185 153.6705 -2.2717 3.0966 0.5034 -2.7072 1.1005 0.2961 17.2473 -1.5755 1.3811 -0.3353 -1.6671 0.3579 -15.6461 -0.9183 -13.2232 4.4787 -1.0729 -19.7094 6.2801 -26.9312 5.4286 11.0769 -42.6245 13.9390 0.0000 0.0000 29.3329 -13.8423 19.6267 6.2562 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 5.8098 28.2312 -4.5077 35.0715 26.0271 -38.6473 -0.0000 -0.0000 -11.6997 -23.0999 -14.6890 -6.7728 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9083 -2.7984 -1.7543 4.2391 0.0000 0.0000 -3.8433 -0.5578 5.5935 5.8334 0.0000 0.0000 4.3028 -4.8480 3.4106 4.8678 0.0000 0.0000 -10.6109 2.5444 4.2162 0.5615 0.0000 0.0000 - -0.1109 11.2019 24.9472 -1.6744 -2.5329 153.6603 -2.2764 3.1277 0.5060 -2.7154 1.0990 0.2924 17.2807 -1.6039 1.3476 -0.3548 -1.7018 0.3601 -15.6842 -0.9742 -13.2404 4.5444 -1.0893 -19.6744 6.1858 -26.9853 5.3927 10.8596 -42.5072 13.8257 0.0000 0.0000 29.4945 -13.6907 19.5617 6.3522 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 5.8614 28.1692 -4.5338 35.6378 25.6154 -39.0214 -0.0000 -0.0000 -11.5597 -23.1854 -14.7932 -6.6922 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.8908 -2.8230 -1.5805 4.2788 0.0000 0.0000 -3.8747 -0.5395 5.4304 5.8404 0.0000 0.0000 4.3341 -4.8683 3.4599 4.8217 0.0000 0.0000 -10.6168 2.5759 4.1798 0.5465 0.0000 0.0000 - -0.1100 11.2003 24.9462 -1.6784 -2.5508 153.6562 -2.2683 3.1674 0.5081 -2.7188 1.1085 0.2890 17.2997 -1.6604 1.2911 -0.3740 -1.7405 0.3579 -15.7254 -1.0268 -13.2578 4.6132 -1.1074 -19.6224 6.0648 -27.0392 5.3435 10.6027 -42.4117 13.6735 0.0000 0.0000 29.6493 -13.5115 19.5101 6.4429 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 5.9298 28.0525 -4.5730 36.3868 25.0959 -39.5629 -0.0000 -0.0000 -11.3465 -23.2894 -14.8985 -6.6084 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.8678 -2.8532 -1.3737 4.3275 0.0000 0.0000 -3.9083 -0.5197 5.2283 5.8452 0.0000 0.0000 4.3617 -4.8937 3.5198 4.7795 0.0000 0.0000 -10.6253 2.6088 4.1266 0.5321 0.0000 0.0000 - -0.1094 11.1974 24.9452 -1.6833 -2.5698 153.6632 -2.2488 3.2161 0.5088 -2.7196 1.1321 0.2878 17.3078 -1.7484 1.2044 -0.3931 -1.7799 0.3502 -15.7706 -1.0806 -13.2739 4.6841 -1.1266 -19.5540 5.9200 -27.0944 5.2805 10.3098 -42.3376 13.4924 0.0000 0.0000 29.7933 -13.3138 19.4774 6.5235 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.0145 27.8736 -4.6282 37.3228 24.4569 -40.2739 -0.0000 -0.0000 -11.0595 -23.4134 -14.9946 -6.5256 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.8361 -2.8870 -1.1421 4.3884 0.0000 0.0000 -3.9458 -0.4989 4.9907 5.8460 0.0000 0.0000 4.3803 -4.9229 3.5891 4.7455 0.0000 0.0000 -10.6367 2.6426 4.0519 0.5193 0.0000 0.0000 - -0.1093 11.1931 24.9442 -1.6970 -2.5835 153.6836 -2.2271 3.2722 0.5045 -2.7191 1.1797 0.2933 17.3083 -1.8742 1.0859 -0.4154 -1.8235 0.3370 -15.8182 -1.1305 -13.2914 4.7545 -1.1491 -19.4655 5.7604 -27.1558 5.2031 9.9861 -42.2710 13.2933 0.0000 0.0000 29.9278 -13.1099 19.4684 6.5863 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 6.1069 27.6421 -4.7150 38.4296 23.7018 -41.1128 -0.0000 -0.0000 -10.7185 -23.5456 -15.0754 -6.4459 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.7814 -2.9218 -0.8970 4.4683 0.0000 0.0000 -3.9897 -0.4779 4.7265 5.8409 0.0000 0.0000 4.3747 -4.9541 3.6675 4.7263 0.0000 0.0000 -10.6514 2.6765 3.9528 0.5094 0.0000 0.0000 - -0.1101 11.1866 24.9431 -1.7390 -2.5786 153.7173 -2.2269 3.3371 0.4983 -2.7197 1.2459 0.3008 17.3069 -2.0275 0.9341 -0.4386 -1.8664 0.3139 -15.8762 -1.1885 -13.3100 4.8237 -1.1707 -19.3552 5.5827 -27.2295 5.1159 9.6321 -42.2124 13.0771 0.0000 0.0000 30.0491 -12.9095 19.4798 6.6309 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 6.1962 27.3518 -4.8295 39.6922 22.8272 -42.0667 -0.0000 -0.0000 -10.3285 -23.6808 -15.1275 -6.3770 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.6714 -2.9542 -0.6446 4.5793 0.0000 0.0000 -4.0439 -0.4563 4.4404 5.8288 0.0000 0.0000 4.3139 -4.9845 3.7562 4.7308 0.0000 0.0000 -10.6696 2.7101 3.8262 0.5032 0.0000 0.0000 - -0.1110 11.1793 24.9421 -1.7793 -2.5696 153.7646 -2.2184 3.4180 0.4888 -2.7160 1.3016 0.3017 17.2962 -2.1756 0.7476 -0.4616 -1.9180 0.2865 -15.9386 -1.2521 -13.3309 4.8924 -1.1942 -19.2236 5.3949 -27.3108 5.0186 9.2523 -42.1637 12.8466 0.0000 0.0000 30.1626 -12.7207 19.5130 6.6510 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 6.2970 27.0068 -4.9772 41.0784 21.8232 -43.1172 -0.0000 -0.0000 -9.9001 -23.8198 -15.1455 -6.3247 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.5512 -2.9832 -0.3953 4.7086 0.0000 0.0000 -4.1065 -0.4358 4.1448 5.8079 0.0000 0.0000 4.2445 -5.0124 3.8450 4.7433 0.0000 0.0000 -10.6874 2.7424 3.6842 0.5013 0.0000 0.0000 - -0.1121 11.1714 24.9410 -1.8185 -2.5549 153.8218 -2.2036 3.5078 0.4789 -2.7095 1.3625 0.3002 17.2782 -2.3276 0.5148 -0.4843 -1.9776 0.2673 -16.0059 -1.3194 -13.3583 4.9602 -1.2201 -19.0678 5.1999 -27.3957 4.9078 8.8545 -42.1245 12.6116 0.0000 0.0000 30.2681 -12.5492 19.5650 6.6421 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.4022 26.6142 -5.1681 42.5462 20.7128 -44.2196 -0.0000 -0.0000 -9.4553 -23.9427 -15.1290 -6.2933 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.4184 -3.0073 -0.1547 4.8587 0.0000 0.0000 -4.1783 -0.4169 3.8489 5.7774 0.0000 0.0000 4.1663 -5.0366 3.9384 4.7627 0.0000 0.0000 -10.7038 2.7745 3.5259 0.5038 0.0000 0.0000 - -0.1129 11.1637 24.9399 -1.8459 -2.5412 153.8844 -2.1737 3.6029 0.4626 -2.6963 1.4424 0.3017 17.2504 -2.5076 0.2659 -0.5054 -2.0282 0.2198 -16.0797 -1.4005 -13.3752 5.0301 -1.2464 -18.8915 5.0065 -27.4814 4.8042 8.4449 -42.0971 12.3711 0.0000 0.0000 30.3665 -12.3989 19.6312 6.6069 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 6.5268 26.1920 -5.3618 44.0523 19.4469 -45.3741 -0.0000 -0.0000 -8.9984 -24.0646 -15.0695 -6.2787 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.2904 -3.0272 0.0736 5.0246 0.0000 0.0000 -4.2577 -0.4011 3.5615 5.7367 0.0000 0.0000 4.1005 -5.0571 4.0295 4.7796 0.0000 0.0000 -10.7167 2.8056 3.3640 0.5098 0.0000 0.0000 - -0.1135 11.1564 24.9388 -1.8614 -2.5264 153.9446 -2.1324 3.7061 0.4445 -2.6781 1.5193 0.2997 17.2176 -2.6795 -0.0173 -0.5257 -2.0855 0.1764 -16.1577 -1.4877 -13.3934 5.1011 -1.2748 -18.6926 4.8238 -27.5668 4.7011 8.0298 -42.0722 12.1352 0.0000 0.0000 30.4600 -12.2748 19.7100 6.5433 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 6.6634 25.7445 -5.5877 45.5409 18.0924 -46.5208 -0.0000 -0.0000 -8.5539 -24.1505 -14.9806 -6.2885 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1653 -3.0404 0.2851 5.2083 0.0000 0.0000 -4.3454 -0.3883 3.2944 5.6866 0.0000 0.0000 4.0491 -5.0708 4.1194 4.7916 0.0000 0.0000 -10.7249 2.8362 3.2052 0.5191 0.0000 0.0000 - -0.1141 11.1486 24.9377 -1.8882 -2.4997 153.9924 -2.1044 3.8149 0.4264 -2.6605 1.5911 0.2950 17.1886 -2.8386 -0.3329 -0.5460 -2.1489 0.1413 -16.2458 -1.5815 -13.4120 5.1743 -1.3048 -18.4723 4.6433 -27.6548 4.5952 7.6231 -42.0443 11.9086 0.0000 0.0000 30.5463 -12.1744 19.7924 6.4559 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.8028 25.2922 -5.8395 46.9630 16.6731 -47.6194 -0.0000 -0.0000 -8.1426 -24.1807 -14.8735 -6.3171 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0077 -3.0471 0.4821 5.4218 0.0000 0.0000 -4.4425 -0.3783 3.0536 5.6285 0.0000 0.0000 3.9797 -5.0784 4.2189 4.8090 0.0000 0.0000 -10.7309 2.8679 3.0473 0.5302 0.0000 0.0000 - -0.1139 11.1430 24.9366 -1.8759 -2.4856 154.0207 -2.0438 3.9210 0.4042 -2.6302 1.6787 0.2917 17.1484 -3.0093 -0.6436 -0.5629 -2.2039 0.0810 -16.3342 -1.6862 -13.4172 5.2531 -1.3370 -18.2355 4.4815 -27.7286 4.5061 7.2241 -42.0309 11.6852 0.0000 0.0000 30.6310 -12.0849 19.8764 6.3416 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 6.9523 24.8369 -6.0879 48.2791 15.2069 -48.6734 -0.0000 -0.0000 -7.7643 -24.1559 -14.7571 -6.3663 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.1067 -3.0462 0.6635 5.6426 0.0000 0.0000 -4.5454 -0.3721 2.8501 5.5643 0.0000 0.0000 3.9754 -5.0760 4.3058 4.7992 0.0000 0.0000 -10.7276 2.8972 2.9244 0.5422 0.0000 0.0000 - -0.1138 11.1374 24.9355 -1.8729 -2.4590 154.0184 -1.9993 4.0264 0.3828 -2.6021 1.7813 0.2932 17.1151 -3.1891 -0.9697 -0.5788 -2.2560 0.0248 -16.4308 -1.7957 -13.4150 5.3360 -1.3712 -17.9820 4.3314 -27.7943 4.4248 6.8459 -42.0165 11.4767 0.0000 0.0000 30.7067 -12.0076 19.9556 6.2134 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 7.1043 24.4037 -6.3425 49.4474 13.7326 -49.6437 -0.0000 -0.0000 -7.4350 -24.0622 -14.6477 -6.4300 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.2540 -3.0368 0.8347 5.8968 0.0000 0.0000 -4.6583 -0.3680 2.6858 5.4972 0.0000 0.0000 3.9620 -5.0633 4.4016 4.7891 0.0000 0.0000 -10.7213 2.9267 2.8225 0.5537 0.0000 0.0000 - -0.1133 11.1326 24.9345 -1.8672 -2.4287 153.9789 -1.9605 4.1308 0.3611 -2.5726 1.8783 0.2948 17.0851 -3.3539 -1.2985 -0.5920 -2.3062 -0.0314 -16.5315 -1.9133 -13.4055 5.4242 -1.4072 -17.7125 4.1963 -27.8489 4.3525 6.4941 -42.0064 11.2866 0.0000 0.0000 30.7695 -11.9357 20.0266 6.0821 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 7.2571 23.9938 -6.5924 50.4435 12.2846 -50.5293 -0.0000 -0.0000 -7.1567 -23.9015 -14.5581 -6.5030 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.4141 -3.0215 1.0003 6.1773 0.0000 0.0000 -4.7784 -0.3660 2.5631 5.4295 0.0000 0.0000 3.9610 -5.0417 4.5026 4.7730 0.0000 0.0000 -10.7128 2.9557 2.7536 0.5635 0.0000 0.0000 - -0.1118 11.1296 24.9334 -1.8351 -2.4078 153.8975 -1.9041 4.2431 0.3410 -2.5388 1.9519 0.2864 17.0562 -3.4916 -1.6157 -0.6048 -2.3612 -0.0873 -16.6273 -2.0295 -13.3831 5.5178 -1.4487 -17.4345 4.0697 -27.8814 4.2858 6.1673 -42.0113 11.0980 0.0000 0.0000 30.8304 -11.8538 20.0860 5.9427 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.4054 23.6149 -6.8317 51.2543 10.9024 -51.3319 -0.0000 -0.0000 -6.9295 -23.6762 -14.4964 -6.5849 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.5507 -3.0021 1.1633 6.4731 0.0000 0.0000 -4.9035 -0.3649 2.4847 5.3646 0.0000 0.0000 4.0088 -5.0122 4.6071 4.7423 0.0000 0.0000 -10.7023 2.9843 2.7259 0.5709 0.0000 0.0000 - -0.1098 11.1275 24.9324 -1.7991 -2.3876 153.7689 -1.8527 4.3457 0.3222 -2.5052 2.0261 0.2796 17.0311 -3.6155 -1.9261 -0.6140 -2.4116 -0.1383 -16.7204 -2.1527 -13.3527 5.6150 -1.4925 -17.1459 3.9612 -27.9019 4.2244 5.8698 -42.0211 10.9302 0.0000 0.0000 30.8758 -11.7700 20.1347 5.8148 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.5311 23.2628 -7.0619 51.8749 9.6394 -52.0486 -0.0000 -0.0000 -6.7559 -23.3862 -14.4743 -6.6723 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.6956 -2.9812 1.3325 6.7920 0.0000 0.0000 -5.0329 -0.3639 2.4452 5.3050 0.0000 0.0000 4.0717 -4.9763 4.7188 4.7111 0.0000 0.0000 -10.6953 3.0115 2.7399 0.5753 0.0000 0.0000 - -0.1073 11.1262 24.9312 -1.7606 -2.3646 153.5904 -1.8082 4.4486 0.3041 -2.4733 2.1035 0.2758 17.0101 -3.7421 -2.2193 -0.6211 -2.4575 -0.1895 -16.8083 -2.2727 -13.3042 5.7149 -1.5413 -16.8542 3.8572 -27.9010 4.1663 5.5966 -42.0449 10.7619 0.0000 0.0000 30.9142 -11.6743 20.1677 5.6971 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.6474 22.9579 -7.2709 52.2974 8.4781 -52.6887 -0.0000 -0.0000 -6.6325 -23.0640 -14.4847 -6.7575 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.8538 -2.9561 1.5090 7.1368 0.0000 0.0000 -5.1690 -0.3615 2.4460 5.2539 0.0000 0.0000 4.1452 -4.9311 4.8379 4.6827 0.0000 0.0000 -10.6930 3.0352 2.7978 0.5773 0.0000 0.0000 - -0.1044 11.1256 24.9299 -1.7210 -2.3405 153.3629 -1.7712 4.5488 0.2881 -2.4438 2.1816 0.2734 16.9935 -3.8663 -2.4962 -0.6263 -2.4969 -0.2384 -16.8872 -2.3946 -13.2403 5.8147 -1.5937 -16.5595 3.7678 -27.8881 4.1148 5.3412 -42.0738 10.5948 0.0000 0.0000 30.9430 -11.5764 20.1876 5.6023 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 7.7438 22.6908 -7.4604 52.5308 7.4517 -53.2619 -0.0000 -0.0000 -6.5565 -22.7214 -14.5281 -6.8398 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -1.0239 -2.9302 1.6974 7.5034 0.0000 0.0000 -5.3094 -0.3565 2.4815 5.2129 0.0000 0.0000 4.2252 -4.8793 4.9655 4.6637 0.0000 0.0000 -10.6994 3.0552 2.8977 0.5770 0.0000 0.0000 - -0.1008 11.1255 24.9284 -1.6826 -2.3158 153.0888 -1.7418 4.6488 0.2736 -2.4176 2.2537 0.2710 16.9794 -3.9824 -2.7540 -0.6298 -2.5357 -0.2849 -16.9544 -2.5102 -13.1625 5.9125 -1.6521 -16.2621 3.6818 -27.8622 4.0599 5.0994 -42.1102 10.4179 0.0000 0.0000 30.9674 -11.4764 20.1908 5.5302 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 7.8191 22.4670 -7.6349 52.5843 6.5708 -53.7697 -0.0000 -0.0000 -6.5312 -22.3713 -14.6008 -6.9149 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.2062 -2.9054 1.8992 7.8877 0.0000 0.0000 -5.4529 -0.3483 2.5477 5.1831 0.0000 0.0000 4.3060 -4.8230 5.1031 4.6599 0.0000 0.0000 -10.7180 3.0709 3.0353 0.5750 0.0000 0.0000 - -0.0967 11.1258 24.9266 -1.6471 -2.2903 152.7707 -1.7209 4.7466 0.2611 -2.3954 2.3239 0.2687 16.9680 -4.0955 -2.9951 -0.6312 -2.5697 -0.3286 -17.0093 -2.6234 -13.0666 6.0064 -1.7145 -15.9668 3.6072 -27.8315 4.0068 4.8607 -42.1455 10.2276 0.0000 0.0000 30.9880 -11.3892 20.1817 5.4863 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 7.8677 22.2807 -7.7908 52.4737 5.8391 -54.2249 -0.0000 -0.0000 -6.5518 -22.0236 -14.6926 -6.9851 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.3997 -2.8832 2.1160 8.2846 0.0000 0.0000 -5.5976 -0.3362 2.6405 5.1646 0.0000 0.0000 4.3827 -4.7632 5.2515 4.6763 0.0000 0.0000 -10.7515 3.0811 3.2065 0.5721 0.0000 0.0000 - -0.0925 11.1254 24.9245 -1.6385 -2.2506 152.4118 -1.7317 4.8447 0.2511 -2.3810 2.3976 0.2699 16.9620 -4.2146 -3.2204 -0.6320 -2.6022 -0.3700 -17.0545 -2.7271 -12.9544 6.0937 -1.7817 -15.6733 3.5328 -27.7999 3.9478 4.6204 -42.1742 10.0158 0.0000 0.0000 31.0069 -11.3184 20.1556 5.4698 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 7.8965 22.1446 -7.9391 52.2079 5.2454 -54.6145 -0.0000 -0.0000 -6.6285 -21.6874 -14.7992 -7.0448 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6380 -2.8632 2.3465 8.6989 0.0000 0.0000 -5.7437 -0.3196 2.7572 5.1571 0.0000 0.0000 4.4162 -4.7008 5.4156 4.7269 0.0000 0.0000 -10.8034 3.0856 3.4013 0.5695 0.0000 0.0000 - -0.0874 11.1260 24.9221 -1.6200 -2.2204 152.0220 -1.7324 4.9344 0.2379 -2.3698 2.4680 0.2703 16.9528 -4.3250 -3.4352 -0.6310 -2.6276 -0.4085 -17.0833 -2.8324 -12.8292 6.1747 -1.8504 -15.3778 3.4810 -27.7823 3.8960 4.3668 -42.1818 9.7786 0.0000 0.0000 31.0311 -11.2863 20.1195 5.4787 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 7.8960 22.0346 -8.0682 51.8167 4.7904 -54.9661 -0.0000 -0.0000 -6.7484 -21.3595 -14.9119 -7.1007 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.8575 -2.8494 2.5873 9.1046 0.0000 0.0000 -5.8862 -0.2996 2.8940 5.1583 0.0000 0.0000 4.4629 -4.6397 5.5901 4.7955 0.0000 0.0000 -10.8714 3.0844 3.6174 0.5652 0.0000 0.0000 - -0.0811 11.1277 24.9194 -1.5871 -2.2062 151.6039 -1.7166 5.0265 0.2261 -2.3590 2.5113 0.2617 16.9399 -4.4119 -3.6305 -0.6315 -2.6566 -0.4501 -17.0942 -2.9269 -12.6929 6.2493 -1.9240 -15.0819 3.4397 -27.7739 3.8335 4.1064 -42.1697 9.5216 0.0000 0.0000 31.0606 -11.2921 20.0734 5.5055 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 7.8849 21.9582 -8.1890 51.3119 4.4424 -55.2760 -0.0000 -0.0000 -6.9155 -21.0462 -15.0224 -7.1503 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -2.0429 -2.8457 2.8384 9.4881 0.0000 0.0000 -6.0202 -0.2753 3.0489 5.1661 0.0000 0.0000 4.5315 -4.5845 5.7744 4.8807 0.0000 0.0000 -10.9566 3.0785 3.8530 0.5616 0.0000 0.0000 - -0.0753 11.1278 24.9162 -1.6037 -2.1653 151.1578 -1.7503 5.1061 0.2118 -2.3628 2.5883 0.2716 16.9342 -4.5305 -3.8308 -0.6314 -2.6796 -0.4856 -17.1030 -3.0149 -12.5388 6.3148 -1.9962 -14.7899 3.4013 -27.7877 3.7702 3.8282 -42.1218 9.2347 0.0000 0.0000 31.0881 -11.3461 20.0086 5.5570 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.8543 21.9299 -8.3048 50.7141 4.1785 -55.5274 -0.0000 -0.0000 -7.1322 -20.7359 -15.1281 -7.1978 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -2.2946 -2.8437 3.0901 9.8762 0.0000 0.0000 -6.1509 -0.2480 3.2285 5.1785 0.0000 0.0000 4.5202 -4.5289 5.9777 5.0099 0.0000 0.0000 -11.0616 3.0655 4.0930 0.5582 0.0000 0.0000 - -0.0682 11.1293 24.9127 -1.6045 -2.1401 150.6889 -1.7670 5.1884 0.2043 -2.3634 2.6429 0.2620 16.9231 -4.6333 -4.0102 -0.6340 -2.7004 -0.5275 -17.0955 -3.0954 -12.3754 6.3743 -2.0693 -14.4935 3.3809 -27.8232 3.7137 3.5238 -42.0388 8.9053 0.0000 0.0000 31.1273 -11.4461 19.9338 5.6134 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 7.8151 21.9276 -8.4141 50.0489 3.9821 -55.7437 -0.0000 -0.0000 -7.3889 -20.4213 -15.2271 -7.2455 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -2.5045 -2.8502 3.3488 10.2320 0.0000 0.0000 -6.2718 -0.2177 3.4254 5.1926 0.0000 0.0000 4.5375 -4.4790 6.2022 5.1440 0.0000 0.0000 -11.1773 3.0495 4.3352 0.5539 0.0000 0.0000 - -0.0612 11.1300 24.9089 -1.6435 -2.0997 150.1999 -1.8209 5.2649 0.1941 -2.3728 2.6942 0.2544 16.9192 -4.7317 -4.1883 -0.6392 -2.7232 -0.5667 -17.0863 -3.1689 -12.2026 6.4277 -2.1401 -14.1953 3.3772 -27.8914 3.6555 3.2062 -41.9039 8.5667 0.0000 0.0000 31.1584 -11.5980 19.8515 5.6767 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 7.7723 21.9634 -8.5246 49.3326 3.8129 -55.9128 -0.0000 -0.0000 -7.6839 -20.0973 -15.3180 -7.2960 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -2.7502 -2.8635 3.6016 10.5697 0.0000 0.0000 -6.3817 -0.1857 3.6473 5.2053 0.0000 0.0000 4.4967 -4.4360 6.4431 5.3128 0.0000 0.0000 -11.3106 3.0285 4.5774 0.5491 0.0000 0.0000 - -0.0525 11.1333 24.9049 -1.6490 -2.0903 149.6925 -1.8334 5.3194 0.1825 -2.3845 2.7633 0.2611 16.9103 -4.8474 -4.3755 -0.6453 -2.7373 -0.6092 -17.0657 -3.2380 -12.0189 6.4807 -2.2087 -13.8906 3.3722 -27.9665 3.5937 2.8730 -41.7585 8.1969 0.0000 0.0000 31.1825 -11.7739 19.7556 5.7385 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 7.7189 22.0172 -8.6099 48.5984 3.6485 -56.0706 -0.0000 -0.0000 -8.0023 -19.7544 -15.3958 -7.3485 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.9145 -2.8861 3.8478 10.8514 0.0000 0.0000 -6.4753 -0.1529 3.8979 5.2146 0.0000 0.0000 4.5199 -4.4016 6.7042 5.4683 0.0000 0.0000 -11.4484 3.0049 4.8198 0.5422 0.0000 0.0000 - -0.0434 11.1363 24.9008 -1.6835 -2.0741 149.1669 -1.8745 5.3711 0.1716 -2.3989 2.8144 0.2566 16.9046 -4.9465 -4.5589 -0.6523 -2.7542 -0.6482 -17.0446 -3.3023 -11.8320 6.5312 -2.2728 -13.5766 3.3806 -28.0735 3.5320 2.5274 -41.5659 7.8200 0.0000 0.0000 31.1882 -11.9808 19.6558 5.7976 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.6671 22.0970 -8.6965 47.8560 3.4678 -56.1989 -0.0000 -0.0000 -8.3400 -19.3890 -15.4712 -7.4112 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.0934 -2.9177 4.0878 11.1030 0.0000 0.0000 -6.5539 -0.1200 4.1730 5.2182 0.0000 0.0000 4.5071 -4.3774 6.9887 5.6433 0.0000 0.0000 -11.5974 2.9789 5.0546 0.5340 0.0000 0.0000 - -0.0338 11.1399 24.8967 -1.7338 -2.0547 148.6223 -1.9313 5.4080 0.1596 -2.4207 2.8979 0.2655 16.9068 -5.0840 -4.7430 -0.6634 -2.7617 -0.6962 -17.0212 -3.3618 -11.6350 6.5815 -2.3322 -13.2523 3.3860 -28.1943 3.4736 2.1623 -41.3535 7.4179 0.0000 0.0000 31.1727 -12.1885 19.5489 5.8449 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 7.6129 22.1980 -8.7680 47.1265 3.2489 -56.3168 -0.0000 -0.0000 -8.6849 -19.0000 -15.5436 -7.4837 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.2680 -2.9536 4.3199 11.3186 0.0000 0.0000 -6.6184 -0.0872 4.4764 5.2160 0.0000 0.0000 4.4804 -4.3590 7.3019 5.8252 0.0000 0.0000 -11.7514 2.9504 5.2787 0.5242 0.0000 0.0000 - -0.0227 11.1451 24.8926 -1.7770 -2.0554 148.0604 -1.9794 5.4415 0.1481 -2.4393 2.9461 0.2616 16.9091 -5.1883 -4.9384 -0.6729 -2.7746 -0.7319 -16.9926 -3.4199 -11.4315 6.6338 -2.3880 -12.9182 3.4008 -28.3264 3.4132 1.7807 -41.1295 7.0140 0.0000 0.0000 31.1240 -12.3874 19.4468 5.8810 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 7.5608 22.3025 -8.8292 46.4240 2.9892 -56.4376 -0.0000 -0.0000 -9.0281 -18.5897 -15.6212 -7.5670 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.3950 -3.0027 4.5504 11.4844 0.0000 0.0000 -6.6636 -0.0556 4.8010 5.2066 0.0000 0.0000 4.4830 -4.3549 7.6436 6.0006 0.0000 0.0000 -11.9089 2.9221 5.4932 0.5134 0.0000 0.0000 - -0.0103 11.1520 24.8886 -1.8102 -2.0731 147.4792 -2.0151 5.4677 0.1378 -2.4595 2.9776 0.2545 16.9124 -5.2780 -5.1328 -0.6822 -2.7851 -0.7748 -16.9583 -3.4778 -11.2256 6.6896 -2.4401 -12.5670 3.4025 -28.4624 3.3350 1.3902 -40.9119 6.6118 0.0000 0.0000 31.0336 -12.5548 19.3474 5.9045 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 7.5053 22.4031 -8.8786 45.7605 2.6955 -56.5676 -0.0000 -0.0000 -9.3634 -18.1565 -15.7101 -7.6624 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.4756 -3.0587 4.7779 11.6052 0.0000 0.0000 -6.6932 -0.0254 5.1506 5.1915 0.0000 0.0000 4.5170 -4.3583 8.0081 6.1675 0.0000 0.0000 -12.0676 2.8906 5.7063 0.5040 0.0000 0.0000 - 0.0026 11.1588 24.8847 -1.8770 -2.0813 146.8795 -2.0915 5.4745 0.1294 -2.4824 3.0585 0.2618 16.9288 -5.4244 -5.3447 -0.6935 -2.7869 -0.8160 -16.9237 -3.5340 -11.0082 6.7475 -2.4888 -12.1977 3.3901 -28.5962 3.2575 0.9703 -40.7056 6.1905 0.0000 0.0000 30.9040 -12.6742 19.2506 5.9120 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 7.4367 22.5034 -8.9091 45.1436 2.3684 -56.7119 -0.0000 -0.0000 -9.6806 -17.7119 -15.8124 -7.7696 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.5769 -3.1251 5.0089 11.6999 0.0000 0.0000 -6.7071 0.0021 5.5148 5.1710 0.0000 0.0000 4.5129 -4.3738 8.4079 6.3495 0.0000 0.0000 -12.2330 2.8582 5.9026 0.4959 0.0000 0.0000 - 0.0171 11.1678 24.8809 -1.9182 -2.1132 146.2640 -2.1381 5.4981 0.1172 -2.5042 3.0682 0.2465 16.9398 -5.5084 -5.5504 -0.7006 -2.7922 -0.8645 -16.8773 -3.5971 -10.7850 6.8083 -2.5346 -11.8096 3.3766 -28.7356 3.1613 0.5355 -40.5111 5.7889 0.0000 0.0000 30.7261 -12.7473 19.1711 5.9092 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.3766 22.5871 -8.9241 44.5655 2.0032 -56.8757 -0.0000 -0.0000 -9.9811 -17.2739 -15.9315 -7.8830 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.6157 -3.1964 5.2467 11.7565 0.0000 0.0000 -6.7106 0.0280 5.8909 5.1485 0.0000 0.0000 4.5633 -4.3928 8.8249 6.5140 0.0000 0.0000 -12.3951 2.8217 6.1017 0.4932 0.0000 0.0000 - 0.0330 11.1773 24.8774 -1.9704 -2.1553 145.6320 -2.1979 5.5049 0.1045 -2.5237 3.1118 0.2421 16.9558 -5.6363 -5.7727 -0.7067 -2.7905 -0.9127 -16.8229 -3.6598 -10.5480 6.8718 -2.5793 -11.4015 3.3462 -28.8635 3.0560 0.0643 -40.3444 5.3718 0.0000 0.0000 30.5128 -12.7603 19.1021 5.8920 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 7.3026 22.6500 -8.9213 44.0350 1.6372 -57.0677 -0.0000 -0.0000 -10.2521 -16.8486 -16.0655 -8.0096 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.6390 -3.2837 5.5006 11.7829 0.0000 0.0000 -6.6980 0.0506 6.2672 5.1237 0.0000 0.0000 4.6127 -4.4282 9.2730 6.6875 0.0000 0.0000 -12.5643 2.7846 6.2891 0.4959 0.0000 0.0000 - 0.0501 11.1877 24.8738 -2.0263 -2.2059 144.9845 -2.2622 5.5073 0.0914 -2.5427 3.1592 0.2387 16.9724 -5.7764 -6.0076 -0.7095 -2.7847 -0.9646 -16.7585 -3.7264 -10.2989 6.9369 -2.6232 -10.9704 3.2996 -28.9837 2.9355 -0.4416 -40.2046 4.9490 0.0000 0.0000 30.2660 -12.7192 19.0460 5.8671 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 7.2168 22.6872 -8.9021 43.5446 1.2842 -57.2809 -0.0000 -0.0000 -10.5015 -16.4463 -16.2143 -8.1381 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.6459 -3.3817 5.7739 11.7891 0.0000 0.0000 -6.6760 0.0697 6.6393 5.0999 0.0000 0.0000 4.6687 -4.4728 9.7429 6.8655 0.0000 0.0000 -12.7380 2.7441 6.4732 0.5068 0.0000 0.0000 - 0.0685 11.1986 24.8704 -2.0838 -2.2678 144.3227 -2.3267 5.5058 0.0767 -2.5598 3.2113 0.2364 16.9873 -5.9316 -6.2544 -0.7089 -2.7749 -1.0208 -16.6822 -3.7953 -10.0336 7.0033 -2.6679 -10.5180 3.2366 -29.0979 2.7985 -0.9814 -40.0852 4.5182 0.0000 0.0000 30.0000 -12.6312 19.0030 5.8327 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 7.1180 22.6972 -8.8666 43.0884 0.9608 -57.5140 -0.0000 -0.0000 -10.7278 -16.0786 -16.3725 -8.2673 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6343 -3.4922 6.0713 11.7783 0.0000 0.0000 -6.6456 0.0850 7.0008 5.0786 0.0000 0.0000 4.7345 -4.5279 10.2318 7.0499 0.0000 0.0000 -12.9175 2.7004 6.6562 0.5268 0.0000 0.0000 - 0.0885 11.2102 24.8669 -2.1374 -2.3448 143.6484 -2.3833 5.4991 0.0597 -2.5740 3.2714 0.2355 16.9966 -6.0999 -6.5147 -0.7037 -2.7631 -1.0809 -16.5916 -3.8692 -9.7526 7.0700 -2.7125 -10.0429 3.1678 -29.2081 2.6492 -1.5577 -39.9803 4.0821 0.0000 0.0000 29.7257 -12.5120 18.9759 5.7923 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 7.0118 22.6731 -8.8207 42.6557 0.6861 -57.7612 -0.0000 -0.0000 -10.9362 -15.7517 -16.5354 -8.3922 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.5983 -3.6158 6.3946 11.7538 0.0000 0.0000 -6.6088 0.0971 7.3475 5.0618 0.0000 0.0000 4.8184 -4.5935 10.7325 7.2382 0.0000 0.0000 -13.1023 2.6544 6.8433 0.5556 0.0000 0.0000 - 0.1096 11.2222 24.8634 -2.1889 -2.4320 142.9579 -2.4338 5.4928 0.0401 -2.5868 3.3269 0.2321 17.0011 -6.2674 -6.7848 -0.6950 -2.7533 -1.1418 -16.4878 -3.9444 -9.4543 7.1366 -2.7580 -9.5479 3.0959 -29.3206 2.4889 -2.1626 -39.8727 3.6401 0.0000 0.0000 29.4641 -12.3796 18.9630 5.7414 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 6.8902 22.6223 -8.7623 42.2457 0.4696 -58.0186 -0.0000 -0.0000 -11.1229 -15.4680 -16.6924 -8.5168 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.5477 -3.7490 6.7456 11.7248 0.0000 0.0000 -6.5697 0.1049 7.6811 5.0504 0.0000 0.0000 4.9159 -4.6646 11.2401 7.4308 0.0000 0.0000 -13.2919 2.6040 7.0420 0.5932 0.0000 0.0000 - 0.1316 11.2342 24.8598 -2.2443 -2.5230 142.2528 -2.4836 5.4888 0.0195 -2.5994 3.3797 0.2263 17.0007 -6.4356 -7.0647 -0.6831 -2.7454 -1.2054 -16.3724 -4.0225 -9.1397 7.2026 -2.8043 -9.0324 3.0176 -29.4406 2.3171 -2.7817 -39.7521 3.1956 0.0000 0.0000 29.2286 -12.2534 18.9598 5.6832 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 6.7592 22.5466 -8.6951 41.8474 0.3167 -58.2735 -0.0000 -0.0000 -11.3004 -15.2243 -16.8388 -8.6292 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.4965 -3.8909 7.1211 11.6993 0.0000 0.0000 -6.5307 0.1092 8.0019 5.0453 0.0000 0.0000 5.0153 -4.7404 11.7494 7.6307 0.0000 0.0000 -13.4863 2.5508 7.2546 0.6375 0.0000 0.0000 - 0.1544 11.2458 24.8560 -2.3041 -2.6161 141.5314 -2.5315 5.4857 -0.0024 -2.6121 3.4361 0.2205 16.9932 -6.6097 -7.3520 -0.6679 -2.7398 -1.2708 -16.2466 -4.1011 -8.8098 7.2678 -2.8505 -8.4977 2.9430 -29.5699 2.1412 -3.4067 -39.6067 2.7508 0.0000 0.0000 29.0346 -12.1523 18.9641 5.6157 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.6224 22.4520 -8.6230 41.4575 0.2255 -58.5209 -0.0000 -0.0000 -11.4672 -15.0187 -16.9717 -8.7320 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.4487 -4.0402 7.5182 11.6815 0.0000 0.0000 -6.4931 0.1097 8.3141 5.0464 0.0000 0.0000 5.1155 -4.8191 12.2559 7.8374 0.0000 0.0000 -13.6847 2.4954 7.4855 0.6851 0.0000 0.0000 - 0.1778 11.2569 24.8520 -2.3710 -2.7057 140.7921 -2.5811 5.4862 -0.0234 -2.6259 3.4940 0.2139 16.9798 -6.7865 -7.6434 -0.6504 -2.7389 -1.3374 -16.1132 -4.1784 -8.4664 7.3326 -2.8971 -7.9466 2.8722 -29.7098 1.9642 -4.0261 -39.4291 2.3047 0.0000 0.0000 28.8935 -12.0917 18.9687 5.5404 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 6.4812 22.3445 -8.5475 41.0755 0.1896 -58.7565 -0.0000 -0.0000 -11.6235 -14.8455 -17.0891 -8.8248 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.4138 -4.1941 7.9317 11.6772 0.0000 0.0000 -6.4589 0.1068 8.6243 5.0529 0.0000 0.0000 5.2104 -4.8976 12.7558 8.0503 0.0000 0.0000 -13.8856 2.4391 7.7386 0.7327 0.0000 0.0000 - 0.2014 11.2673 24.8479 -2.4439 -2.7888 140.0326 -2.6300 5.4930 -0.0469 -2.6416 3.5493 0.2061 16.9588 -6.9617 -7.9328 -0.6319 -2.7414 -1.4028 -15.9727 -4.2555 -8.1094 7.3959 -2.9427 -7.3850 2.8085 -29.8679 1.7867 -4.6166 -39.2055 1.8705 0.0000 0.0000 28.8105 -12.0893 18.9730 5.4582 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 6.3423 22.2336 -8.4713 40.6978 0.1971 -58.9697 -0.0000 -0.0000 -11.7800 -14.6911 -17.1929 -8.8986 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.3959 -4.3494 8.3555 11.6908 0.0000 0.0000 -6.4297 0.1011 8.9407 5.0640 0.0000 0.0000 5.2998 -4.9723 13.2437 8.2669 0.0000 0.0000 -14.0863 2.3826 8.0197 0.7760 0.0000 0.0000 - 0.2253 11.2770 24.8436 -2.5200 -2.8662 139.2517 -2.6765 5.5015 -0.0685 -2.6579 3.6145 0.2012 16.9313 -7.1445 -8.2217 -0.6128 -2.7483 -1.4669 -15.8280 -4.3285 -7.7415 7.4595 -2.9890 -6.8134 2.7514 -30.0306 1.6119 -5.1766 -38.9509 1.4434 0.0000 0.0000 28.7831 -12.1488 18.9697 5.3745 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 6.2027 22.1230 -8.3901 40.3308 0.2370 -59.1678 -0.0000 -0.0000 -11.9282 -14.5472 -17.2852 -8.9611 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.3917 -4.5048 8.7854 11.7224 0.0000 0.0000 -6.4054 0.0931 9.2691 5.0783 0.0000 0.0000 5.3886 -5.0413 13.7183 8.4840 0.0000 0.0000 -14.2846 2.3282 8.3303 0.8107 0.0000 0.0000 - 0.2492 11.2860 24.8392 -2.5980 -2.9342 138.4488 -2.7203 5.5162 -0.0880 -2.6755 3.6827 0.1971 16.8975 -7.3271 -8.5054 -0.5938 -2.7618 -1.5272 -15.6797 -4.3970 -7.3668 7.5228 -3.0353 -6.2361 2.6982 -30.1981 1.4414 -5.7037 -38.6656 1.0153 0.0000 0.0000 28.8096 -12.2703 18.9536 5.2905 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 6.0702 22.0195 -8.3113 39.9750 0.2954 -59.3455 -0.0000 -0.0000 -12.0724 -14.4041 -17.3763 -9.0084 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.4051 -4.6561 9.2143 11.7753 0.0000 0.0000 -6.3876 0.0839 9.6177 5.0946 0.0000 0.0000 5.4761 -5.1004 14.1778 8.6983 0.0000 0.0000 -14.4771 2.2773 8.6712 0.8328 0.0000 0.0000 - 0.2730 11.2944 24.8348 -2.6761 -2.9912 137.6248 -2.7599 5.5397 -0.1091 -2.6934 3.7557 0.1932 16.8562 -7.5147 -8.7778 -0.5758 -2.7786 -1.5833 -15.5288 -4.4595 -6.9869 7.5859 -3.0839 -5.6546 2.6522 -30.3680 1.2777 -6.1908 -38.3533 0.5939 0.0000 0.0000 28.8751 -12.4580 18.9245 5.2164 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 5.9451 21.9310 -8.2291 39.6329 0.3595 -59.5040 -0.0000 -0.0000 -12.2163 -14.2519 -17.4703 -9.0365 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.4370 -4.8007 9.6374 11.8517 0.0000 0.0000 -6.3768 0.0742 9.9908 5.1115 0.0000 0.0000 5.5628 -5.1466 14.6202 8.9080 0.0000 0.0000 -14.6612 2.2312 9.0425 0.8396 0.0000 0.0000 - 0.2966 11.3020 24.8303 -2.7524 -3.0371 136.7799 -2.7970 5.5697 -0.1215 -2.7112 3.8381 0.1946 16.8101 -7.7123 -9.0432 -0.5589 -2.7959 -1.6413 -15.3778 -4.5189 -6.6027 7.6497 -3.1339 -5.0748 2.6025 -30.5277 1.1121 -6.6433 -38.0392 0.1767 0.0000 0.0000 28.9600 -12.6988 18.8784 5.1566 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.8336 21.8549 -8.1477 39.3050 0.4184 -59.6474 -0.0000 -0.0000 -12.3569 -14.0907 -17.5783 -9.0530 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4855 -4.9375 10.0547 11.9501 0.0000 0.0000 -6.3725 0.0653 10.3890 5.1278 0.0000 0.0000 5.6492 -5.1790 15.0474 9.1136 0.0000 0.0000 -14.8359 2.1918 9.4416 0.8292 0.0000 0.0000 - 0.3198 11.3091 24.8260 -2.8236 -3.0702 135.9173 -2.8286 5.6114 -0.1366 -2.7283 3.9216 0.1948 16.7588 -7.9084 -9.2951 -0.5446 -2.8179 -1.6912 -15.2248 -4.5717 -6.2146 7.7128 -3.1874 -4.5001 2.5621 -30.6789 0.9553 -7.0766 -37.7201 -0.2428 0.0000 0.0000 29.0524 -12.9893 18.8148 5.1145 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 5.7265 21.8039 -8.0595 38.9983 0.4707 -59.7754 -0.0000 -0.0000 -12.4981 -13.9095 -17.7016 -9.0558 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.5509 -5.0626 10.4621 12.0737 0.0000 0.0000 -6.3767 0.0575 10.8140 5.1428 0.0000 0.0000 5.7373 -5.1933 15.4576 9.3108 0.0000 0.0000 -14.9978 2.1589 9.8665 0.8014 0.0000 0.0000 - 0.3426 11.3157 24.8216 -2.8899 -3.0906 135.0411 -2.8576 5.6616 -0.1488 -2.7435 4.0156 0.1992 16.7037 -8.1145 -9.5379 -0.5333 -2.8408 -1.7391 -15.0712 -4.6187 -5.8234 7.7759 -3.2453 -3.9326 2.5219 -30.8117 0.8005 -7.4988 -37.4161 -0.6649 0.0000 0.0000 29.1302 -13.3137 18.7334 5.0927 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.6314 21.7775 -7.9673 38.7066 0.5144 -59.8879 -0.0000 -0.0000 -12.6434 -13.7115 -17.8463 -9.0481 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.6329 -5.1765 10.8611 12.2204 0.0000 0.0000 -6.3882 0.0513 11.2608 5.1558 0.0000 0.0000 5.8241 -5.1909 15.8546 9.5025 0.0000 0.0000 -15.1475 2.1340 10.3095 0.7577 0.0000 0.0000 - 0.3649 11.3218 24.8174 -2.9480 -3.0978 134.1583 -2.8830 5.7234 -0.1581 -2.7569 4.1162 0.2053 16.6444 -8.3254 -9.7726 -0.5229 -2.8650 -1.7860 -14.9177 -4.6624 -5.4273 7.8385 -3.3072 -3.3776 2.4796 -30.9259 0.6466 -7.9206 -37.1323 -1.0903 0.0000 0.0000 29.1751 -13.6630 18.6280 5.0990 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 5.5506 21.7748 -7.8728 38.4267 0.5525 -59.9851 -0.0000 -0.0000 -12.7943 -13.5025 -18.0161 -9.0352 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.7296 -5.2770 11.2516 12.3912 0.0000 0.0000 -6.4089 0.0472 11.7233 5.1671 0.0000 0.0000 5.9111 -5.1694 16.2349 9.6860 0.0000 0.0000 -15.2830 2.1164 10.7675 0.6987 0.0000 0.0000 - 0.3860 11.3272 24.8133 -3.0087 -3.0773 133.2731 -2.9222 5.7888 -0.1668 -2.7680 4.2622 0.2269 16.5804 -8.5826 -10.0047 -0.5159 -2.8838 -1.8331 -14.7655 -4.6982 -5.0301 7.9000 -3.3740 -2.8299 2.4391 -31.0179 0.4977 -8.3589 -36.8714 -1.5206 0.0000 0.0000 29.1760 -14.0214 18.4970 5.1233 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 5.4805 21.8061 -7.7719 38.1542 0.5914 -60.0625 -0.0000 -0.0000 -12.9558 -13.2864 -18.2055 -9.0208 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.8650 -5.3625 11.6347 12.5921 0.0000 0.0000 -6.4402 0.0441 12.1955 5.1767 0.0000 0.0000 5.9722 -5.1281 16.5991 9.8693 0.0000 0.0000 -15.4062 2.1039 11.2348 0.6297 0.0000 0.0000 - 0.4076 11.3331 24.8093 -3.0422 -3.0717 132.3942 -2.9322 5.8809 -0.1706 -2.7771 4.3219 0.2179 16.5228 -8.7431 -10.2257 -0.5113 -2.9193 -1.8782 -14.6097 -4.7382 -4.6379 7.9615 -3.4434 -2.2921 2.4013 -31.0929 0.3426 -8.8227 -36.6456 -1.9491 0.0000 0.0000 29.1181 -14.3747 18.3404 5.1695 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 5.4238 21.8529 -7.6651 37.8850 0.6467 -60.1228 -0.0000 -0.0000 -13.1334 -13.0663 -18.4082 -9.0083 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.9682 -5.4400 12.0186 12.7980 0.0000 0.0000 -6.4768 0.0432 12.6637 5.1847 0.0000 0.0000 6.0721 -5.0747 16.9547 10.0366 0.0000 0.0000 -15.5161 2.1007 11.7000 0.5534 0.0000 0.0000 - 0.4287 11.3390 24.8054 -3.0665 -3.0571 131.5299 -2.9385 5.9716 -0.1746 -2.7803 4.4268 0.2233 16.4550 -8.9480 -10.4504 -0.5079 -2.9472 -1.9291 -14.4519 -4.7739 -4.2400 8.0208 -3.5156 -1.7680 2.3670 -31.1434 0.1905 -9.3213 -36.4494 -2.3796 0.0000 0.0000 28.9972 -14.7127 18.1488 5.2331 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.3851 21.9277 -7.5523 37.6093 0.7212 -60.1620 -0.0000 -0.0000 -13.3259 -12.8573 -18.6208 -9.0085 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.0788 -5.5062 12.4001 13.0201 0.0000 0.0000 -6.5218 0.0427 13.1213 5.1918 0.0000 0.0000 6.1701 -5.0070 17.2931 10.1967 0.0000 0.0000 -15.6140 2.1023 12.1618 0.4739 0.0000 0.0000 - 0.4495 11.3450 24.8017 -3.0824 -3.0378 130.6848 -2.9409 6.0651 -0.1797 -2.7792 4.5394 0.2303 16.3849 -9.1546 -10.6790 -0.5079 -2.9760 -1.9821 -14.2920 -4.8081 -3.8384 8.0776 -3.5887 -1.2573 2.3391 -31.1747 0.0411 -9.8588 -36.2792 -2.8083 0.0000 0.0000 28.8122 -15.0247 17.9209 5.3082 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.3554 22.0303 -7.4266 37.3288 0.8230 -60.1802 -0.0000 -0.0000 -13.5335 -12.6593 -18.8259 -9.0267 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.1908 -5.5651 12.7835 13.2521 0.0000 0.0000 -6.5730 0.0414 13.5594 5.1982 0.0000 0.0000 6.2672 -4.9302 17.6185 10.3524 0.0000 0.0000 -15.7031 2.1081 12.6127 0.3949 0.0000 0.0000 - 0.4700 11.3510 24.7979 -3.0908 -3.0176 129.8652 -2.9384 6.1605 -0.1849 -2.7738 4.6542 0.2371 16.3122 -9.3567 -10.9139 -0.5096 -3.0062 -2.0396 -14.1303 -4.8432 -3.4362 8.1312 -3.6605 -0.7577 2.3209 -31.1903 -0.1061 -10.4322 -36.1317 -3.2280 0.0000 0.0000 28.5644 -15.3060 17.6582 5.3904 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.3393 22.1541 -7.2897 37.0396 0.9533 -60.1804 -0.0000 -0.0000 -13.7524 -12.4842 -19.0182 -9.0719 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.2990 -5.6197 13.1699 13.4882 0.0000 0.0000 -6.6283 0.0383 13.9706 5.2043 0.0000 0.0000 6.3639 -4.8488 17.9294 10.5053 0.0000 0.0000 -15.7858 2.1168 13.0486 0.3190 0.0000 0.0000 - 0.4901 11.3570 24.7943 -3.0946 -2.9941 129.0756 -2.9335 6.2501 -0.1928 -2.7628 4.7956 0.2510 16.2309 -9.5817 -11.1599 -0.5117 -3.0286 -2.1024 -13.9674 -4.8811 -3.0335 8.1812 -3.7287 -0.2671 2.3186 -31.1925 -0.2462 -11.0369 -36.0028 -3.6339 0.0000 0.0000 28.2596 -15.5532 17.3645 5.4733 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 5.3312 22.2976 -7.1349 36.7449 1.1116 -60.1658 -0.0000 -0.0000 -13.9817 -12.3339 -19.1867 -9.1446 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.4067 -5.6704 13.5586 13.7266 0.0000 0.0000 -6.6874 0.0319 14.3506 5.2096 0.0000 0.0000 6.4543 -4.7639 18.2205 10.6564 0.0000 0.0000 -15.8630 2.1253 13.4708 0.2497 0.0000 0.0000 - 0.5107 11.3629 24.7907 -3.0943 -2.9842 128.3211 -2.9177 6.3442 -0.1997 -2.7516 4.8812 0.2467 16.1578 -9.7346 -11.4090 -0.5160 -3.0689 -2.1695 -13.8007 -4.9237 -2.6391 8.2256 -3.7935 0.2138 2.3079 -31.1862 -0.3940 -11.6611 -35.8922 -4.0485 0.0000 0.0000 27.9198 -15.7581 17.0407 5.5436 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.3397 22.4467 -6.9780 36.4478 1.2970 -60.1381 -0.0000 -0.0000 -14.2150 -12.2104 -19.3288 -9.2487 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.4909 -5.7279 13.9484 13.9500 0.0000 0.0000 -6.7417 0.0228 14.6954 5.2138 0.0000 0.0000 6.5504 -4.6918 18.5068 10.8120 0.0000 0.0000 -15.9406 2.1390 13.8611 0.1857 0.0000 0.0000 - 0.5312 11.3687 24.7873 -3.0916 -2.9764 127.6003 -2.8966 6.4292 -0.2117 -2.7344 4.9910 0.2489 16.0749 -9.9083 -11.6693 -0.5202 -3.1017 -2.2397 -13.6305 -4.9693 -2.2512 8.2639 -3.8530 0.6909 2.3173 -31.1677 -0.5305 -12.2990 -35.7975 -4.4568 0.0000 0.0000 27.5438 -15.9384 16.7036 5.6108 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 5.3512 22.6038 -6.7996 36.1632 1.4930 -60.1180 -0.0000 -0.0000 -14.4338 -12.1125 -19.4337 -9.3881 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.5659 -5.7855 14.3380 14.1646 0.0000 0.0000 -6.7955 0.0094 15.0078 5.2172 0.0000 0.0000 6.6418 -4.6230 18.7717 10.9691 0.0000 0.0000 -16.0157 2.1501 14.2369 0.1286 0.0000 0.0000 - 0.5519 11.3741 24.7839 -3.0903 -2.9740 126.9147 -2.8715 6.5050 -0.2240 -2.7136 5.1026 0.2517 15.9888 -10.0758 -11.9408 -0.5241 -3.1321 -2.3152 -13.4573 -5.0231 -1.8695 8.2951 -3.9086 1.1594 2.3327 -31.1376 -0.6656 -12.9368 -35.7265 -4.8702 0.0000 0.0000 27.1478 -16.0946 16.3667 5.6618 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.3698 22.7549 -6.6064 35.8990 1.6887 -60.1135 -0.0000 -0.0000 -14.6319 -12.0351 -19.5042 -9.5550 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.6281 -5.8479 14.7243 14.3630 0.0000 0.0000 -6.8442 -0.0073 15.2886 5.2195 0.0000 0.0000 6.7251 -4.5656 19.0193 11.1349 0.0000 0.0000 -16.0917 2.1601 14.5931 0.0771 0.0000 0.0000 - 0.5728 11.3789 24.7808 -3.0924 -2.9781 126.2647 -2.8421 6.5729 -0.2389 -2.6906 5.2039 0.2508 15.9014 -10.2221 -12.2195 -0.5261 -3.1633 -2.3924 -13.2810 -5.0865 -1.4988 8.3182 -3.9610 1.6191 2.3504 -31.0983 -0.8007 -13.5677 -35.6797 -5.3027 0.0000 0.0000 26.7427 -16.2399 16.0414 5.6984 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 5.3913 22.8898 -6.4012 35.6711 1.8722 -60.1381 -0.0000 -0.0000 -14.7993 -11.9670 -19.5420 -9.7355 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6758 -5.9171 15.1039 14.5410 0.0000 0.0000 -6.8853 -0.0268 15.5409 5.2196 0.0000 0.0000 6.7983 -4.5235 19.2504 11.3134 0.0000 0.0000 -16.1696 2.1695 14.9289 0.0293 0.0000 0.0000 - 0.5939 11.3828 24.7778 -3.0985 -2.9885 125.6476 -2.8085 6.6316 -0.2556 -2.6642 5.3041 0.2508 15.8111 -10.3616 -12.5044 -0.5270 -3.1908 -2.4715 -13.1001 -5.1573 -1.1435 8.3322 -4.0140 2.0732 2.3676 -31.0448 -0.9375 -14.1879 -35.6647 -5.7685 0.0000 0.0000 26.3361 -16.3861 15.7428 5.7187 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 5.4126 23.0017 -6.1846 35.4941 2.0304 -60.2083 -0.0000 -0.0000 -14.9180 -11.8976 -19.5506 -9.9263 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.7087 -5.9928 15.4739 14.6958 0.0000 0.0000 -6.9173 -0.0477 15.7702 5.2175 0.0000 0.0000 6.8597 -4.4979 19.4658 11.5081 0.0000 0.0000 -16.2497 2.1780 15.2465 -0.0164 0.0000 -0.0000 - 0.6153 11.3855 24.7752 -3.1094 -3.0055 125.0637 -2.7710 6.6812 -0.2734 -2.6356 5.3968 0.2494 15.7198 -10.4854 -12.7940 -0.5240 -3.2134 -2.5519 -12.9153 -5.2403 -0.8045 8.3371 -4.0702 2.5183 2.3847 -30.9767 -1.0760 -14.8034 -35.6902 -6.2811 0.0000 0.0000 25.9286 -16.5452 15.4821 5.7272 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.4346 23.0787 -5.9623 35.3765 2.1528 -60.3330 -0.0000 -0.0000 -14.9827 -11.8133 -19.5373 -10.1096 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7261 -6.0755 15.8311 14.8253 0.0000 0.0000 -6.9389 -0.0684 15.9796 5.2129 0.0000 0.0000 6.9071 -4.4910 19.6662 11.7222 0.0000 0.0000 -16.3317 2.1867 15.5454 -0.0621 0.0000 -0.0000 - 0.6369 11.3868 24.7729 -3.1256 -3.0293 124.5118 -2.7294 6.7214 -0.2931 -2.6045 5.4839 0.2480 15.6278 -10.5965 -13.0853 -0.5173 -3.2298 -2.6321 -12.7266 -5.3339 -0.4847 8.3329 -4.1338 2.9535 2.3995 -30.8928 -1.2180 -15.4213 -35.7585 -6.8550 0.0000 0.0000 25.5214 -16.7259 15.2656 5.7231 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 5.4533 23.1144 -5.7379 35.3302 2.2316 -60.5224 -0.0000 -0.0000 -14.9840 -11.7019 -19.5085 -10.2721 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7275 -6.1654 16.1732 14.9279 0.0000 0.0000 -6.9486 -0.0868 16.1728 5.2058 0.0000 0.0000 6.9392 -4.5044 19.8549 11.9591 0.0000 0.0000 -16.4155 2.1970 15.8242 -0.1092 0.0000 -0.0000 - 0.6586 11.3865 24.7709 -3.1455 -3.0581 123.9909 -2.6851 6.7546 -0.3134 -2.5725 5.5549 0.2426 15.5405 -10.6786 -13.3737 -0.5064 -3.2446 -2.7095 -12.5352 -5.4371 -0.1860 8.3199 -4.2094 3.3746 2.4119 -30.7975 -1.3653 -16.0524 -35.8665 -7.4995 0.0000 0.0000 25.1143 -16.9402 15.0963 5.7078 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.4678 23.1017 -5.5207 35.3594 2.2674 -60.7799 -0.0000 -0.0000 -14.9183 -11.5531 -19.4706 -10.4010 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.7149 -6.2597 16.4978 15.0051 0.0000 0.0000 -6.9476 -0.1017 16.3534 5.1964 0.0000 0.0000 6.9559 -4.5356 20.0323 12.2173 0.0000 0.0000 -16.4989 2.2091 16.0841 -0.1573 0.0000 -0.0000 - 0.6801 11.3846 24.7693 -3.1693 -3.0914 123.5020 -2.6376 6.7854 -0.3344 -2.5419 5.6092 0.2347 15.4594 -10.7396 -13.6537 -0.4909 -3.2526 -2.7869 -12.3438 -5.5499 0.0905 8.3005 -4.2996 3.7786 2.4191 -30.6920 -1.5183 -16.7080 -36.0109 -8.2202 0.0000 0.0000 24.7012 -17.1900 14.9670 5.6838 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.4735 23.0410 -5.3140 35.4660 2.2562 -61.1026 -0.0000 -0.0000 -14.7883 -11.3585 -19.4290 -10.4818 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.6896 -6.3582 16.8024 15.0572 0.0000 0.0000 -6.9356 -0.1110 16.5231 5.1851 0.0000 0.0000 6.9549 -4.5854 20.2009 12.4990 0.0000 0.0000 -16.5815 2.2249 16.3227 -0.2094 0.0000 -0.0000 - 0.7011 11.3811 24.7680 -3.1938 -3.1256 123.0461 -2.5898 6.8106 -0.3565 -2.5089 5.6592 0.2255 15.3832 -10.7853 -13.9238 -0.4716 -3.2553 -2.8601 -12.1539 -5.6676 0.3447 8.2750 -4.4070 4.1621 2.4248 -30.5802 -1.6750 -17.4003 -36.1813 -9.0157 0.0000 0.0000 24.2799 -17.4748 14.8685 5.6487 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 5.4679 22.9357 -5.1215 35.6450 2.2044 -61.4842 -0.0000 -0.0000 -14.5994 -11.1161 -19.3842 -10.5026 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.6555 -6.4556 17.0857 15.0894 0.0000 0.0000 -6.9163 -0.1139 16.6828 5.1738 0.0000 0.0000 6.9388 -4.6471 20.3607 12.7955 0.0000 0.0000 -16.6591 2.2437 16.5399 -0.2628 0.0000 -0.0000 - 0.7214 11.3759 24.7671 -3.2198 -3.1607 122.6256 -2.5406 6.8351 -0.3804 -2.4781 5.6966 0.2165 15.3133 -10.8146 -14.1795 -0.4469 -3.2513 -2.9309 -11.9689 -5.7900 0.5789 8.2458 -4.5306 4.5164 2.4376 -30.4685 -1.8292 -18.1385 -36.3651 -9.8733 0.0000 0.0000 23.8447 -17.7934 14.7920 5.6074 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.4566 22.7890 -4.9552 35.8830 2.1163 -61.9112 -0.0000 -0.0000 -14.3566 -10.8351 -19.3418 -10.4698 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.6144 -6.5525 17.3464 15.1027 0.0000 0.0000 -6.8893 -0.1102 16.8313 5.1620 0.0000 0.0000 6.9064 -4.7217 20.5142 13.1065 0.0000 0.0000 -16.7321 2.2669 16.7321 -0.3163 0.0000 -0.0000 - 0.7406 11.3696 24.7664 -3.2428 -3.1930 122.2405 -2.4956 6.8568 -0.3990 -2.4477 5.7284 0.2061 15.2561 -10.8263 -14.4187 -0.4205 -3.2452 -2.9968 -11.7922 -5.9097 0.7827 8.2159 -4.6720 4.8484 2.4533 -30.3599 -1.9820 -18.9192 -36.5519 -10.7791 0.0000 0.0000 23.3995 -18.1359 14.7266 5.5556 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.4383 22.6087 -4.8195 36.1650 2.0075 -62.3631 -0.0000 -0.0000 -14.0841 -10.5146 -19.3009 -10.3650 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.5701 -6.6425 17.5839 15.1030 0.0000 0.0000 -6.8596 -0.0995 16.9696 5.1522 0.0000 0.0000 6.8631 -4.7996 20.6610 13.4190 0.0000 0.0000 -16.7957 2.2930 16.9007 -0.3684 0.0000 -0.0000 - 0.7585 11.3621 24.7661 -3.2656 -3.2238 121.8973 -2.4512 6.8772 -0.4204 -2.4191 5.7547 0.1982 15.2056 -10.8302 -14.6368 -0.3925 -3.2340 -3.0598 -11.6261 -6.0271 0.9648 8.1854 -4.8246 5.1453 2.4702 -30.2634 -2.1326 -19.7245 -36.7235 -11.7034 0.0000 0.0000 22.9497 -18.4925 14.6596 5.4941 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 5.4129 22.4093 -4.7118 36.4751 1.8832 -62.8231 -0.0000 -0.0000 -13.7905 -10.1719 -19.2588 -10.2072 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.5240 -6.7285 17.7964 15.0912 0.0000 0.0000 -6.8265 -0.0829 17.0924 5.1434 0.0000 0.0000 6.8081 -4.8847 20.8020 13.7312 0.0000 0.0000 -16.8523 2.3235 17.0395 -0.4159 0.0000 -0.0000 - 0.7746 11.3540 24.7659 -3.2844 -3.2501 121.5958 -2.4113 6.8973 -0.4395 -2.3934 5.7744 0.1894 15.1666 -10.8197 -14.8316 -0.3629 -3.2217 -3.1164 -11.4757 -6.1401 1.1237 8.1573 -4.9837 5.4046 2.4986 -30.1819 -2.2715 -20.5460 -36.8733 -12.6180 0.0000 0.0000 22.5012 -18.8535 14.5872 5.4298 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 5.3839 22.1992 -4.6360 36.7936 1.7561 -63.2722 -0.0000 -0.0000 -13.4902 -9.8224 -19.2188 -10.0075 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.4798 -6.8050 17.9852 15.0731 0.0000 0.0000 -6.7940 -0.0618 17.1990 5.1381 0.0000 0.0000 6.7474 -4.9677 20.9359 14.0295 0.0000 0.0000 -16.8983 2.3557 17.1512 -0.4593 0.0000 -0.0000 - 0.7888 11.3456 24.7659 -3.2993 -3.2717 121.3377 -2.3752 6.9162 -0.4572 -2.3712 5.7892 0.1817 15.1357 -10.7998 -15.0010 -0.3321 -3.2081 -3.1669 -11.3438 -6.2450 1.2562 8.1331 -5.1430 5.6283 2.5343 -30.1136 -2.3974 -21.3576 -37.0006 -13.4941 0.0000 0.0000 22.0666 -19.2042 14.5082 5.3650 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.3545 21.9915 -4.5902 37.1014 1.6381 -63.6907 -0.0000 -0.0000 -13.2002 -9.4806 -19.1815 -9.7814 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.4392 -6.8713 18.1482 15.0514 0.0000 0.0000 -6.7636 -0.0381 17.2895 5.1356 0.0000 0.0000 6.6844 -5.0460 21.0615 14.3057 0.0000 0.0000 -16.9341 2.3885 17.2359 -0.4951 0.0000 -0.0000 - 0.8008 11.3374 24.7660 -3.3107 -3.2883 121.1255 -2.3447 6.9337 -0.4735 -2.3517 5.8016 0.1759 15.1152 -10.7754 -15.1441 -0.3055 -3.1940 -3.2120 -11.2303 -6.3435 1.3655 8.1125 -5.2938 5.8129 2.5693 -30.0661 -2.5113 -22.1174 -37.0973 -14.2964 0.0000 0.0000 21.6645 -19.5364 14.4261 5.2972 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.3256 21.7961 -4.5657 37.3844 1.5358 -64.0664 -0.0000 -0.0000 -12.9315 -9.1633 -19.1460 -9.5488 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4039 -6.9278 18.2883 15.0285 0.0000 0.0000 -6.7364 -0.0131 17.3583 5.1364 0.0000 0.0000 6.6211 -5.1182 21.1762 14.5544 0.0000 0.0000 -16.9609 2.4211 17.2941 -0.5228 0.0000 -0.0000 - 0.8107 11.3299 24.7662 -3.3171 -3.2994 120.9563 -2.3189 6.9503 -0.4877 -2.3355 5.8142 0.1717 15.1007 -10.7490 -15.2589 -0.2813 -3.1850 -3.2479 -11.1380 -6.4247 1.4478 8.0968 -5.4327 5.9617 2.5976 -30.0220 -2.6143 -22.8096 -37.1796 -15.0135 0.0000 0.0000 21.3071 -19.8357 14.3442 5.2363 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 5.3072 21.6267 -4.5674 37.6243 1.4580 -64.3804 -0.0000 -0.0000 -12.7042 -8.8765 -19.1195 -9.3122 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3749 -6.9715 18.4020 15.0072 0.0000 0.0000 -6.7142 0.0109 17.4113 5.1401 0.0000 0.0000 6.5641 -5.1789 21.2819 14.7643 0.0000 0.0000 -16.9772 2.4518 17.3268 -0.5422 0.0000 -0.0000 - 0.8184 11.3233 24.7664 -3.3203 -3.3065 120.8281 -2.2991 6.9644 -0.4969 -2.3227 5.8219 0.1673 15.0940 -10.7194 -15.3500 -0.2616 -3.1761 -3.2771 -11.0672 -6.4981 1.5098 8.0862 -5.5506 6.0747 2.6205 -29.9874 -2.7008 -23.4033 -37.2503 -15.6168 0.0000 0.0000 21.0043 -20.0994 14.2706 5.1851 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.2908 21.4855 -4.5749 37.8186 1.4032 -64.6346 -0.0000 -0.0000 -12.5162 -8.6360 -19.0981 -9.1018 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3524 -7.0048 18.4920 14.9887 0.0000 0.0000 -6.6969 0.0321 17.4477 5.1462 0.0000 0.0000 6.5141 -5.2284 21.3723 14.9353 0.0000 0.0000 -16.9867 2.4787 17.3420 -0.5534 0.0000 -0.0000 diff --git a/ink-theater/mocap/wave_hello.bvh b/ink-theater/mocap/wave_hello.bvh deleted file mode 100644 index fb9d8279..00000000 --- a/ink-theater/mocap/wave_hello.bvh +++ /dev/null @@ -1,1006 +0,0 @@ -HIERARCHY -ROOT Hips -{ - OFFSET 0.00 0.00 0.00 - CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation - JOINT Spine - { - OFFSET 0.00000 0.84964 1.27446 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine1 - { - OFFSET 0.00000 0.29508 1.67346 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine2 - { - OFFSET 0.00000 0.14810 1.69281 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine3 - { - OFFSET 0.00000 0.00000 1.69928 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Neck - { - OFFSET 0.00000 -0.63723 4.46061 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Head - { - OFFSET 0.00000 -0.40573 2.30101 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 0.00000 2.75071 - } - } - } - JOINT RightShoulder - { - OFFSET -0.72014 -1.20022 3.88874 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightArm - { - OFFSET -3.57668 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightForeArm - { - OFFSET -5.92485 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHand - { - OFFSET -6.63013 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHandEnd - { - OFFSET -1.65321 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET -1.65321 0.00000 0.00000 - } - } - JOINT RightHandThumb1 - { - OFFSET -0.66129 -1.10214 -0.44086 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET -1.59688 -0.42788 0.00000 - } - } - } - } - } - } - JOINT LeftShoulder - { - OFFSET 0.72014 -1.20022 3.88874 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftArm - { - OFFSET 3.57668 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftForeArm - { - OFFSET 5.92485 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHand - { - OFFSET 6.63013 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHandEnd - { - OFFSET 1.65321 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 1.65321 0.00000 0.00000 - } - } - JOINT LeftHandThumb1 - { - OFFSET 0.66129 -1.10214 -0.44086 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET 1.59688 -0.42788 0.00000 - } - } - } - } - } - } - } - } - } - } - JOINT RightUpLeg - { - OFFSET -2.13640 0.00000 -0.62412 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightLeg - { - OFFSET 0.00000 0.00000 -11.49360 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightFoot - { - OFFSET 0.00000 0.00000 -8.79036 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightToeBase - { - OFFSET 0.00000 -3.94625 -1.43632 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.72833 -0.00000 - } - } - } - } - } - JOINT LeftUpLeg - { - OFFSET 2.13640 0.00000 -0.62412 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftLeg - { - OFFSET 0.00000 0.00000 -11.49360 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftFoot - { - OFFSET 0.00000 0.00000 -8.79036 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftToeBase - { - OFFSET 0.00000 -3.94625 -1.43632 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.72833 -0.00000 - } - } - } - } - } -} -MOTION -Frames: 839 -Frame Time: 0.008342 - 0.7273 -2.3032 23.6298 -0.8284 -1.3931 178.8354 -2.7560 -2.9306 0.0623 -1.1423 -1.4426 -0.3237 6.3090 -2.3386 3.8741 0.3044 4.5634 -0.5446 -7.8886 2.4656 0.8971 2.4586 -1.0228 -3.9428 1.9016 7.4182 2.6161 -21.0849 -19.3358 -4.5037 0.0000 0.0000 13.8961 11.7199 -5.7631 -8.6969 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3553 -3.4229 0.1927 -28.6947 23.2153 11.9522 -0.0000 -0.0000 -7.5183 -7.7434 -19.2427 16.5236 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.2830 1.5590 -49.3474 -3.0070 0.0000 -0.0000 19.3459 -11.5839 40.7302 -38.6918 0.0000 -0.0000 1.5626 -4.8355 19.3869 -5.9512 0.0000 -0.0000 0.0174 -4.8654 -22.7624 -5.0950 0.0000 -0.0000 - 0.7314 -2.3004 23.6303 -0.8337 -1.4192 178.8407 -2.7836 -2.9546 0.0494 -1.1413 -1.4387 -0.3219 6.3097 -2.3319 3.8847 0.3099 4.5711 -0.5476 -7.8727 2.4657 0.9024 2.4763 -1.0321 -3.9357 1.9054 7.4138 2.6129 -21.0792 -19.3288 -4.4993 0.0000 0.0000 13.8890 11.6967 -5.7750 -8.6791 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3624 -3.4129 0.2044 -28.6843 23.1928 11.9508 -0.0000 -0.0000 -7.5221 -7.7497 -19.2321 16.5245 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.3114 1.5376 -49.3573 -2.9807 0.0000 -0.0000 19.3343 -11.6887 40.8378 -38.2441 0.0000 -0.0000 1.5609 -4.8741 19.3660 -5.9455 0.0000 -0.0000 0.0125 -4.8694 -22.7422 -5.0951 0.0000 -0.0000 - 0.7370 -2.2960 23.6310 -0.8012 -1.4604 178.8507 -2.7765 -2.9927 0.0269 -1.1386 -1.4327 -0.3184 6.3022 -2.3179 3.8981 0.3171 4.5746 -0.5472 -7.8487 2.4682 0.9083 2.5001 -1.0442 -3.9254 1.9114 7.4194 2.6071 -21.0716 -19.3290 -4.4985 0.0000 0.0000 13.8832 11.6651 -5.7855 -8.6604 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.3687 -3.4036 0.2164 -28.6703 23.1676 11.9507 -0.0000 -0.0000 -7.5241 -7.7592 -19.2198 16.5243 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.3966 1.5002 -49.3754 -2.9559 0.0000 -0.0000 19.3270 -11.8351 40.9902 -37.6292 0.0000 -0.0000 1.6045 -4.9308 19.3366 -5.9452 0.0000 -0.0000 0.0063 -4.8723 -22.7155 -5.0945 0.0000 -0.0000 - 0.7437 -2.2908 23.6318 -0.7746 -1.5074 178.8608 -2.7823 -3.0352 0.0047 -1.1384 -1.4278 -0.3171 6.2984 -2.3029 3.9141 0.3259 4.5844 -0.5494 -7.8202 2.4675 0.9163 2.5291 -1.0584 -3.9102 1.9183 7.4173 2.6018 -21.0592 -19.3194 -4.4936 0.0000 0.0000 13.8793 11.6226 -5.7998 -8.6421 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.3770 -3.3950 0.2341 -28.6521 23.1393 11.9494 -0.0000 -0.0000 -7.5237 -7.7692 -19.2106 16.5214 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.4846 1.4618 -49.3945 -2.9157 0.0000 -0.0000 19.3145 -12.0190 41.1802 -36.8739 0.0000 -0.0000 1.6428 -4.9964 19.3116 -5.9431 0.0000 -0.0000 -0.0007 -4.8758 -22.6921 -5.0955 0.0000 -0.0000 - 0.7515 -2.2848 23.6329 -0.7426 -1.5595 178.8731 -2.7905 -3.0835 -0.0241 -1.1357 -1.4207 -0.3148 6.2934 -2.2835 3.9334 0.3355 4.5947 -0.5517 -7.7853 2.4675 0.9269 2.5626 -1.0773 -3.8917 1.9267 7.4189 2.5961 -21.0449 -19.3118 -4.4901 0.0000 0.0000 13.8769 11.5741 -5.8083 -8.6213 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3845 -3.3831 0.2541 -28.6315 23.1031 11.9468 -0.0000 -0.0000 -7.5219 -7.7813 -19.2005 16.5185 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.5888 1.4185 -49.4177 -2.8731 0.0000 -0.0000 19.3041 -12.2327 41.4021 -36.0185 0.0000 -0.0000 1.6875 -5.0705 19.2806 -5.9377 0.0000 -0.0000 -0.0097 -4.8801 -22.6636 -5.0971 0.0000 -0.0000 - 0.7602 -2.2783 23.6340 -0.7122 -1.6147 178.8839 -2.8045 -3.1331 -0.0524 -1.1337 -1.4139 -0.3139 6.2877 -2.2626 3.9556 0.3468 4.6068 -0.5549 -7.7455 2.4674 0.9388 2.5998 -1.0983 -3.8695 1.9343 7.4222 2.5898 -21.0265 -19.3033 -4.4866 0.0000 0.0000 13.8781 11.5199 -5.8139 -8.6007 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.3913 -3.3691 0.2775 -28.6089 23.0633 11.9416 -0.0000 -0.0000 -7.5165 -7.7936 -19.1918 16.5119 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.6949 1.3743 -49.4302 -2.8205 0.0000 -0.0000 19.2881 -12.4667 41.6338 -35.1132 0.0000 -0.0000 1.7308 -5.1506 19.2505 -5.9298 0.0000 -0.0000 -0.0198 -4.8847 -22.6338 -5.0999 0.0000 -0.0000 - 0.7697 -2.2713 23.6350 -0.6674 -1.6701 178.8936 -2.8052 -3.1827 -0.0804 -1.1322 -1.4067 -0.3114 6.2791 -2.2379 3.9764 0.3579 4.6191 -0.5574 -7.6999 2.4670 0.9525 2.6399 -1.1222 -3.8446 1.9425 7.4310 2.5834 -21.0043 -19.2978 -4.4836 0.0000 0.0000 13.8810 11.4632 -5.8142 -8.5793 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -3.3973 -3.3569 0.3016 -28.5858 23.0213 11.9387 -0.0000 -0.0000 -7.5099 -7.8051 -19.1829 16.5044 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.8191 1.3281 -49.4450 -2.7700 0.0000 -0.0000 19.2744 -12.7048 41.8755 -34.2125 0.0000 -0.0000 1.7911 -5.2323 19.2231 -5.9221 0.0000 -0.0000 -0.0300 -4.8890 -22.6045 -5.1037 0.0000 -0.0000 - 0.7797 -2.2642 23.6361 -0.6240 -1.7230 178.9000 -2.8085 -3.2272 -0.1070 -1.1306 -1.3997 -0.3085 6.2690 -2.2125 3.9993 0.3690 4.6306 -0.5605 -7.6506 2.4675 0.9669 2.6817 -1.1488 -3.8175 1.9513 7.4421 2.5767 -20.9806 -19.2903 -4.4806 0.0000 0.0000 13.8869 11.4064 -5.8109 -8.5577 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.4015 -3.3455 0.3286 -28.5626 22.9809 11.9336 -0.0000 -0.0000 -7.5003 -7.8155 -19.1753 16.4942 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.9384 1.2821 -49.4571 -2.7204 0.0000 -0.0000 19.2603 -12.9317 42.1094 -33.3697 0.0000 -0.0000 1.8488 -5.3134 19.1967 -5.9106 0.0000 -0.0000 -0.0408 -4.8931 -22.5729 -5.1086 0.0000 -0.0000 - 0.7900 -2.2574 23.6370 -0.5844 -1.7710 178.9037 -2.8136 -3.2640 -0.1302 -1.1295 -1.3924 -0.3065 6.2552 -2.1874 4.0231 0.3811 4.6401 -0.5650 -7.5994 2.4689 0.9828 2.7242 -1.1779 -3.7892 1.9600 7.4569 2.5709 -20.9547 -19.2820 -4.4780 0.0000 0.0000 13.8946 11.3529 -5.8039 -8.5360 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.4064 -3.3357 0.3566 -28.5411 22.9429 11.9322 -0.0000 -0.0000 -7.4913 -7.8233 -19.1690 16.4813 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.0467 1.2372 -49.4685 -2.6743 0.0000 -0.0000 19.2454 -13.1333 42.3232 -32.6278 0.0000 -0.0000 1.9009 -5.3909 19.1704 -5.8957 0.0000 -0.0000 -0.0512 -4.8971 -22.5390 -5.1151 0.0000 -0.0000 - 0.8003 -2.2510 23.6377 -0.5420 -1.8129 178.9030 -2.8129 -3.2946 -0.1497 -1.1286 -1.3856 -0.3041 6.2396 -2.1600 4.0456 0.3910 4.6489 -0.5682 -7.5458 2.4710 1.0000 2.7660 -1.2105 -3.7614 1.9687 7.4769 2.5666 -20.9273 -19.2759 -4.4764 0.0000 0.0000 13.9014 11.3074 -5.7903 -8.5133 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.4101 -3.3257 0.3877 -28.5191 22.9063 11.9257 -0.0000 -0.0000 -7.4804 -7.8306 -19.1612 16.4698 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.1490 1.1923 -49.4878 -2.6392 0.0000 -0.0000 19.2351 -13.2959 42.5163 -32.0190 0.0000 -0.0000 1.9549 -5.4625 19.1473 -5.8790 0.0000 -0.0000 -0.0607 -4.9006 -22.5046 -5.1228 0.0000 -0.0000 - 0.8106 -2.2455 23.6382 -0.5112 -1.8497 178.8960 -2.8202 -3.3184 -0.1629 -1.1280 -1.3813 -0.3009 6.2239 -2.1330 4.0679 0.3994 4.6590 -0.5711 -7.4928 2.4734 1.0157 2.8071 -1.2456 -3.7343 1.9765 7.5002 2.5607 -20.9007 -19.2709 -4.4760 0.0000 0.0000 13.9083 11.2738 -5.7719 -8.4922 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.4148 -3.3152 0.4154 -28.5001 22.8694 11.9222 -0.0000 -0.0000 -7.4711 -7.8361 -19.1516 16.4585 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 1.2253 1.1481 -49.4856 -2.6080 0.0000 -0.0000 19.2176 -13.4187 42.6528 -31.5593 0.0000 -0.0000 1.9943 -5.5297 19.1252 -5.8585 0.0000 -0.0000 -0.0699 -4.9036 -22.4662 -5.1311 0.0000 -0.0000 - 0.8205 -2.2411 23.6386 -0.5014 -1.8779 178.8835 -2.8442 -3.3331 -0.1690 -1.1275 -1.3778 -0.3000 6.2068 -2.1096 4.0913 0.4081 4.6728 -0.5759 -7.4425 2.4752 1.0317 2.8462 -1.2841 -3.7083 1.9838 7.5212 2.5571 -20.8740 -19.2605 -4.4749 0.0000 0.0000 13.9127 11.2524 -5.7521 -8.4717 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4244 -3.3050 0.4447 -28.4811 22.8352 11.9187 -0.0000 -0.0000 -7.4641 -7.8399 -19.1409 16.4480 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 1.2645 1.1083 -49.4939 -2.5813 0.0000 -0.0000 19.2002 -13.4910 42.7604 -31.2520 0.0000 -0.0000 2.0083 -5.5879 19.1100 -5.8346 0.0000 -0.0000 -0.0774 -4.9065 -22.4314 -5.1403 0.0000 -0.0000 - 0.8301 -2.2372 23.6387 -0.4631 -1.9007 178.8683 -2.8276 -3.3406 -0.1707 -1.1303 -1.3757 -0.2994 6.1839 -2.0859 4.1146 0.4139 4.6839 -0.5797 -7.3920 2.4785 1.0477 2.8844 -1.3231 -3.6848 1.9922 7.5549 2.5560 -20.8486 -19.2570 -4.4793 0.0000 0.0000 13.9133 11.2454 -5.7299 -8.4539 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4322 -3.2981 0.4714 -28.4690 22.8067 11.9214 -0.0000 -0.0000 -7.4597 -7.8421 -19.1255 16.4411 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.3238 1.0673 -49.5026 -2.5696 0.0000 -0.0000 19.1855 -13.5214 42.8314 -31.0830 0.0000 -0.0000 2.0536 -5.6388 19.0909 -5.8160 0.0000 -0.0000 -0.0807 -4.9079 -22.3895 -5.1498 0.0000 -0.0000 - 0.8393 -2.2347 23.6388 -0.4607 -1.9169 178.8464 -2.8468 -3.3424 -0.1666 -1.1291 -1.3737 -0.2964 6.1629 -2.0638 4.1372 0.4190 4.6939 -0.5863 -7.3473 2.4863 1.0659 2.9200 -1.3687 -3.6648 1.9977 7.5900 2.5569 -20.8237 -19.2513 -4.4843 0.0000 0.0000 13.9099 11.2549 -5.7068 -8.4390 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4467 -3.2850 0.5008 -28.4549 22.7788 11.9211 -0.0000 -0.0000 -7.4579 -7.8478 -19.1088 16.4333 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.3322 1.0299 -49.5083 -2.5606 0.0000 -0.0000 19.1692 -13.5136 42.8694 -31.0291 0.0000 -0.0000 2.0563 -5.6834 19.0761 -5.7906 0.0000 -0.0000 -0.0845 -4.9095 -22.3481 -5.1595 0.0000 -0.0000 - 0.8480 -2.2330 23.6387 -0.4562 -1.9301 178.8231 -2.8563 -3.3418 -0.1601 -1.1291 -1.3735 -0.2948 6.1393 -2.0414 4.1596 0.4228 4.7052 -0.5908 -7.3063 2.4937 1.0825 2.9546 -1.4148 -3.6471 2.0037 7.6301 2.5609 -20.7997 -19.2460 -4.4951 0.0000 0.0000 13.9028 11.2754 -5.6826 -8.4277 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4648 -3.2720 0.5282 -28.4442 22.7540 11.9236 -0.0000 -0.0000 -7.4583 -7.8532 -19.0879 16.4292 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.3354 0.9926 -49.5151 -2.5584 0.0000 -0.0000 19.1542 -13.4807 42.8853 -31.0554 0.0000 -0.0000 2.0609 -5.7234 19.0613 -5.7687 0.0000 -0.0000 -0.0855 -4.9107 -22.3064 -5.1679 0.0000 -0.0000 - 0.8563 -2.2321 23.6385 -0.4513 -1.9406 178.7986 -2.8596 -3.3407 -0.1515 -1.1298 -1.3741 -0.2929 6.1151 -2.0183 4.1828 0.4253 4.7171 -0.5962 -7.2696 2.5022 1.0990 2.9879 -1.4630 -3.6317 2.0092 7.6752 2.5664 -20.7770 -19.2423 -4.5093 0.0000 0.0000 13.8908 11.3080 -5.6607 -8.4206 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4871 -3.2585 0.5519 -28.4358 22.7308 11.9320 -0.0000 -0.0000 -7.4618 -7.8616 -19.0632 16.4268 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.3343 0.9570 -49.5230 -2.5600 0.0000 -0.0000 19.1411 -13.4350 42.8910 -31.1236 0.0000 -0.0000 2.0661 -5.7590 19.0489 -5.7510 0.0000 -0.0000 -0.0836 -4.9111 -22.2664 -5.1760 0.0000 -0.0000 - 0.8641 -2.2319 23.6384 -0.4471 -1.9499 178.7741 -2.8592 -3.3410 -0.1438 -1.1306 -1.3751 -0.2907 6.0905 -1.9949 4.2078 0.4272 4.7304 -0.6018 -7.2376 2.5120 1.1149 3.0202 -1.5130 -3.6183 2.0146 7.7245 2.5742 -20.7544 -19.2386 -4.5274 0.0000 0.0000 13.8747 11.3470 -5.6413 -8.4169 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.5136 -3.2443 0.5726 -28.4295 22.7098 11.9456 -0.0000 -0.0000 -7.4675 -7.8726 -19.0356 16.4260 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.3308 0.9236 -49.5309 -2.5622 0.0000 -0.0000 19.1293 -13.3892 42.8955 -31.1954 0.0000 -0.0000 2.0705 -5.7916 19.0383 -5.7371 0.0000 -0.0000 -0.0795 -4.9112 -22.2289 -5.1829 0.0000 -0.0000 - 0.8714 -2.2322 23.6382 -0.4442 -1.9592 178.7506 -2.8571 -3.3443 -0.1380 -1.1308 -1.3762 -0.2881 6.0656 -1.9712 4.2345 0.4290 4.7455 -0.6079 -7.2105 2.5224 1.1306 3.0515 -1.5636 -3.6063 2.0195 7.7770 2.5846 -20.7311 -19.2345 -4.5495 0.0000 0.0000 13.8552 11.3884 -5.6242 -8.4156 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.5431 -3.2287 0.5903 -28.4252 22.6902 11.9637 -0.0000 -0.0000 -7.4740 -7.8871 -19.0059 16.4267 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 1.3266 0.8927 -49.5380 -2.5624 0.0000 -0.0000 19.1189 -13.3538 42.9068 -31.2389 0.0000 -0.0000 2.0733 -5.8224 19.0297 -5.7269 0.0000 -0.0000 -0.0738 -4.9114 -22.1947 -5.1883 0.0000 -0.0000 - 0.8785 -2.2331 23.6381 -0.4430 -1.9704 178.7299 -2.8548 -3.3521 -0.1349 -1.1305 -1.3778 -0.2865 6.0418 -1.9471 4.2632 0.4308 4.7627 -0.6142 -7.1883 2.5328 1.1458 3.0819 -1.6141 -3.5949 2.0240 7.8313 2.5981 -20.7092 -19.2285 -4.5781 0.0000 0.0000 13.8360 11.4273 -5.6110 -8.4167 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.5746 -3.2118 0.6055 -28.4217 22.6723 11.9842 -0.0000 -0.0000 -7.4795 -7.9054 -18.9757 16.4277 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.3233 0.8630 -49.5431 -2.5594 0.0000 -0.0000 19.1096 -13.3359 42.9284 -31.2327 0.0000 -0.0000 2.0742 -5.8540 19.0217 -5.7201 0.0000 -0.0000 -0.0673 -4.9119 -22.1643 -5.1922 0.0000 -0.0000 - 0.8852 -2.2344 23.6381 -0.4432 -1.9829 178.7112 -2.8524 -3.3644 -0.1350 -1.1296 -1.3790 -0.2843 6.0184 -1.9224 4.2927 0.4331 4.7815 -0.6204 -7.1707 2.5431 1.1604 3.1110 -1.6635 -3.5839 2.0278 7.8864 2.6133 -20.6859 -19.2208 -4.6091 0.0000 0.0000 13.8158 11.4578 -5.5998 -8.4162 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6061 -3.1938 0.6171 -28.4200 22.6558 12.0084 -0.0000 -0.0000 -7.4836 -7.9253 -18.9456 16.4292 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.3216 0.8354 -49.5466 -2.5524 0.0000 -0.0000 19.1015 -13.3371 42.9633 -31.1708 0.0000 -0.0000 2.0734 -5.8855 19.0175 -5.7164 0.0000 -0.0000 -0.0602 -4.9128 -22.1397 -5.1944 0.0000 -0.0000 - 0.8917 -2.2361 23.6381 -0.4445 -1.9977 178.6953 -2.8501 -3.3809 -0.1371 -1.1284 -1.3803 -0.2826 5.9965 -1.8975 4.3227 0.4357 4.8018 -0.6269 -7.1573 2.5525 1.1743 3.1388 -1.7106 -3.5725 2.0310 7.9416 2.6310 -20.6644 -19.2111 -4.6454 0.0000 0.0000 13.7987 11.4787 -5.5915 -8.4146 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.6362 -3.1754 0.6261 -28.4186 22.6417 12.0340 -0.0000 -0.0000 -7.4845 -7.9491 -18.9171 16.4288 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 1.3213 0.8085 -49.5466 -2.5421 0.0000 -0.0000 19.0937 -13.3547 43.0060 -31.0622 0.0000 -0.0000 2.0707 -5.9181 19.0157 -5.7149 0.0000 -0.0000 -0.0534 -4.9144 -22.1203 -5.1955 0.0000 -0.0000 - 0.8980 -2.2382 23.6381 -0.4473 -2.0142 178.6811 -2.8478 -3.4007 -0.1419 -1.1276 -1.3814 -0.2816 5.9760 -1.8709 4.3522 0.4383 4.8212 -0.6288 -7.1475 2.5613 1.1852 3.1649 -1.7553 -3.5606 2.0365 7.9926 2.6450 -20.6426 -19.1956 -4.6781 0.0000 0.0000 13.7830 11.4825 -5.5874 -8.4086 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6620 -3.1571 0.6321 -28.4168 22.6326 12.0572 -0.0000 -0.0000 -7.4795 -7.9736 -18.8934 16.4274 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 1.3210 0.7803 -49.5446 -2.5332 0.0000 -0.0000 19.0884 -13.3803 43.0519 -30.9310 0.0000 -0.0000 2.0661 -5.9515 19.0175 -5.7161 0.0000 -0.0000 -0.0465 -4.9166 -22.1062 -5.1945 0.0000 -0.0000 - 0.9040 -2.2409 23.6381 -0.4489 -2.0299 178.6679 -2.8424 -3.4193 -0.1442 -1.1260 -1.3828 -0.2792 5.9559 -1.8470 4.3808 0.4412 4.8426 -0.6376 -7.1408 2.5676 1.1982 3.1892 -1.7955 -3.5483 2.0366 8.0484 2.6682 -20.6263 -19.1850 -4.7255 0.0000 0.0000 13.7756 11.4766 -5.5808 -8.3965 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.6849 -3.1413 0.6346 -28.4166 22.6255 12.0874 -0.0000 -0.0000 -7.4729 -7.9983 -18.8700 16.4251 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.3183 0.7551 -49.5365 -2.5197 0.0000 -0.0000 19.0788 -13.4037 43.0872 -30.8130 0.0000 -0.0000 2.0600 -5.9833 19.0241 -5.7150 0.0000 -0.0000 -0.0416 -4.9198 -22.0981 -5.1945 0.0000 -0.0000 - 0.9099 -2.2442 23.6381 -0.4507 -2.0454 178.6547 -2.8342 -3.4370 -0.1447 -1.1256 -1.3843 -0.2780 5.9365 -1.8220 4.4073 0.4437 4.8616 -0.6433 -7.1363 2.5723 1.2087 3.2114 -1.8317 -3.5358 2.0379 8.1010 2.6878 -20.6117 -19.1724 -4.7697 0.0000 0.0000 13.7713 11.4546 -5.5758 -8.3771 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.7016 -3.1278 0.6341 -28.4158 22.6249 12.1152 -0.0000 -0.0000 -7.4608 -8.0216 -18.8514 16.4212 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.3109 0.7270 -49.5271 -2.5121 0.0000 -0.0000 19.0702 -13.4094 43.1049 -30.7480 0.0000 -0.0000 2.0521 -6.0144 19.0355 -5.7140 0.0000 -0.0000 -0.0376 -4.9236 -22.0951 -5.1935 0.0000 -0.0000 - 0.9157 -2.2484 23.6379 -0.4760 -2.0579 178.6407 -2.8499 -3.4506 -0.1448 -1.1226 -1.3884 -0.2757 5.9185 -1.7916 4.4287 0.4462 4.8755 -0.6443 -7.1353 2.5754 1.2165 3.2311 -1.8642 -3.5239 2.0382 8.1474 2.7036 -20.5992 -19.1569 -4.8098 0.0000 0.0000 13.7704 11.4196 -5.5703 -8.3503 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.7148 -3.1138 0.6305 -28.4123 22.6278 12.1396 -0.0000 -0.0000 -7.4449 -8.0430 -18.8369 16.4163 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 1.2695 0.6977 -49.5210 -2.5096 0.0000 -0.0000 19.0612 -13.3817 43.0965 -30.7781 0.0000 -0.0000 2.0141 -6.0435 19.0489 -5.7056 0.0000 -0.0000 -0.0368 -4.9292 -22.0952 -5.1924 0.0000 -0.0000 - 0.9213 -2.2530 23.6376 -0.4729 -2.0648 178.6228 -2.8266 -3.4543 -0.1341 -1.1252 -1.3879 -0.2742 5.8979 -1.7736 4.4513 0.4470 4.8915 -0.6508 -7.1326 2.5762 1.2234 3.2491 -1.8911 -3.5120 2.0401 8.1979 2.7211 -20.5955 -19.1465 -4.8556 0.0000 0.0000 13.7753 11.3767 -5.5681 -8.3170 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -3.7172 -3.1086 0.6242 -28.4123 22.6422 12.1659 -0.0000 -0.0000 -7.4242 -8.0631 -18.8257 16.4088 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.2467 0.6696 -49.5038 -2.5149 0.0000 -0.0000 19.0473 -13.3153 43.0429 -30.9380 0.0000 -0.0000 2.0065 -6.0649 19.0716 -5.7004 0.0000 -0.0000 -0.0342 -4.9344 -22.0998 -5.1933 0.0000 -0.0000 - 0.9267 -2.2588 23.6371 -0.5047 -2.0653 178.6038 -2.8406 -3.4479 -0.1220 -1.1233 -1.3921 -0.2712 5.8794 -1.7471 4.4675 0.4466 4.8976 -0.6527 -7.1324 2.5766 1.2281 3.2647 -1.9153 -3.5020 2.0409 8.2424 2.7340 -20.5952 -19.1349 -4.8961 0.0000 0.0000 13.7824 11.3286 -5.5657 -8.2788 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.7178 -3.1010 0.6143 -28.4098 22.6581 12.1892 -0.0000 -0.0000 -7.4026 -8.0797 -18.8163 16.4013 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.1730 0.6405 -49.4996 -2.5293 0.0000 -0.0000 19.0344 -13.1932 42.9549 -31.2547 0.0000 -0.0000 1.9537 -6.0821 19.0927 -5.6822 0.0000 -0.0000 -0.0362 -4.9418 -22.1048 -5.1951 0.0000 -0.0000 - 0.9321 -2.2654 23.6363 -0.5292 -2.0602 178.5815 -2.8394 -3.4315 -0.1003 -1.1242 -1.3970 -0.2715 5.8583 -1.7232 4.4806 0.4453 4.9039 -0.6529 -7.1316 2.5715 1.2299 3.2790 -1.9350 -3.4934 2.0408 8.2877 2.7453 -20.6002 -19.1315 -4.9380 0.0000 0.0000 13.7907 11.2819 -5.5634 -8.2353 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.7146 -3.1055 0.6014 -28.4073 22.6866 12.2145 -0.0000 -0.0000 -7.3800 -8.0932 -18.8094 16.3928 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 1.0928 0.6106 -49.4896 -2.5529 0.0000 -0.0000 19.0176 -13.0197 42.8164 -31.7399 0.0000 -0.0000 1.9059 -6.0933 19.1201 -5.6612 0.0000 -0.0000 -0.0393 -4.9495 -22.1135 -5.1989 0.0000 -0.0000 - 0.9373 -2.2727 23.6354 -0.5521 -2.0480 178.5534 -2.8303 -3.4049 -0.0709 -1.1277 -1.3987 -0.2673 5.8359 -1.7044 4.4943 0.4430 4.9070 -0.6587 -7.1295 2.5652 1.2309 3.2924 -1.9521 -3.4873 2.0433 8.3328 2.7508 -20.6069 -19.1344 -4.9693 0.0000 0.0000 13.7946 11.2374 -5.5632 -8.1912 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.7083 -3.1123 0.5869 -28.4038 22.7189 12.2371 -0.0000 -0.0000 -7.3571 -8.1040 -18.8015 16.3855 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9999 0.5827 -49.4634 -2.5825 0.0000 -0.0000 18.9942 -12.8002 42.6228 -32.3919 0.0000 -0.0000 1.8586 -6.0970 19.1529 -5.6391 0.0000 -0.0000 -0.0414 -4.9574 -22.1227 -5.2052 0.0000 -0.0000 - 0.9424 -2.2806 23.6343 -0.5744 -2.0282 178.5250 -2.8185 -3.3643 -0.0352 -1.1297 -1.4034 -0.2662 5.8126 -1.6838 4.5009 0.4377 4.9051 -0.6571 -7.1252 2.5566 1.2279 3.3051 -1.9669 -3.4836 2.0462 8.3808 2.7550 -20.6201 -19.1459 -5.0062 0.0000 0.0000 13.7999 11.2024 -5.5672 -8.1488 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.7010 -3.1285 0.5668 -28.4024 22.7609 12.2639 -0.0000 -0.0000 -7.3365 -8.1116 -18.7933 16.3772 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.8966 0.5567 -49.4516 -2.6209 0.0000 -0.0000 18.9733 -12.5363 42.4079 -33.1913 0.0000 -0.0000 1.8068 -6.0939 19.1843 -5.6089 0.0000 -0.0000 -0.0464 -4.9661 -22.1316 -5.2136 0.0000 -0.0000 - 0.9472 -2.2892 23.6330 -0.5985 -2.0013 178.4962 -2.8044 -3.3120 0.0036 -1.1321 -1.4084 -0.2650 5.7845 -1.6643 4.5065 0.4336 4.8987 -0.6562 -7.1192 2.5466 1.2239 3.3177 -1.9807 -3.4827 2.0503 8.4297 2.7559 -20.6322 -19.1649 -5.0365 0.0000 0.0000 13.8001 11.1760 -5.5742 -8.1101 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -3.6958 -3.1480 0.5449 -28.4002 22.8063 12.2911 -0.0000 -0.0000 -7.3186 -8.1170 -18.7847 16.3690 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.7825 0.5357 -49.4377 -2.6613 0.0000 -0.0000 18.9504 -12.2469 42.1682 -34.1044 0.0000 -0.0000 1.7503 -6.0836 19.2153 -5.5760 0.0000 -0.0000 -0.0510 -4.9755 -22.1413 -5.2247 0.0000 -0.0000 - 0.9520 -2.2985 23.6317 -0.6362 -1.9691 178.4676 -2.8054 -3.2521 0.0460 -1.1343 -1.4137 -0.2638 5.7591 -1.6449 4.5096 0.4294 4.8918 -0.6556 -7.1120 2.5333 1.2180 3.3297 -1.9945 -3.4843 2.0543 8.4780 2.7532 -20.6444 -19.1930 -5.0629 0.0000 0.0000 13.7959 11.1618 -5.5831 -8.0777 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6933 -3.1710 0.5212 -28.3984 22.8524 12.3174 -0.0000 -0.0000 -7.3044 -8.1200 -18.7710 16.3629 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.6491 0.5198 -49.4218 -2.7001 0.0000 -0.0000 18.9268 -11.9475 41.9182 -35.0819 0.0000 -0.0000 1.6759 -6.0688 19.2451 -5.5375 0.0000 -0.0000 -0.0571 -4.9861 -22.1514 -5.2383 0.0000 -0.0000 - 0.9565 -2.3079 23.6304 -0.6649 -1.9341 178.4404 -2.7977 -3.1877 0.0869 -1.1353 -1.4161 -0.2590 5.7323 -1.6290 4.5112 0.4251 4.8839 -0.6542 -7.1020 2.5193 1.2096 3.3415 -2.0089 -3.4881 2.0609 8.5286 2.7473 -20.6565 -19.2296 -5.0872 0.0000 0.0000 13.7886 11.1559 -5.5983 -8.0534 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.6931 -3.1992 0.4954 -28.3976 22.9027 12.3436 -0.0000 -0.0000 -7.2928 -8.1219 -18.7575 16.3567 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.5248 0.5096 -49.4061 -2.7342 0.0000 -0.0000 18.9036 -11.6562 41.6760 -36.0652 0.0000 -0.0000 1.6103 -6.0507 19.2709 -5.4988 0.0000 -0.0000 -0.0625 -4.9974 -22.1592 -5.2535 0.0000 -0.0000 - 0.9609 -2.3171 23.6292 -0.6753 -1.9015 178.4192 -2.7736 -3.1223 0.1260 -1.1361 -1.4196 -0.2575 5.7075 -1.6111 4.5130 0.4197 4.8728 -0.6532 -7.0888 2.5041 1.2007 3.3530 -2.0236 -3.4938 2.0687 8.5843 2.7400 -20.6654 -19.2777 -5.1085 0.0000 0.0000 13.7760 11.1565 -5.6161 -8.0360 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.6961 -3.2323 0.4675 -28.3975 22.9540 12.3724 -0.0000 -0.0000 -7.2849 -8.1229 -18.7397 16.3504 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.4254 0.5014 -49.3921 -2.7624 0.0000 -0.0000 18.8813 -11.3905 41.4534 -36.9905 0.0000 -0.0000 1.5650 -6.0341 19.2921 -5.4636 0.0000 -0.0000 -0.0664 -5.0079 -22.1683 -5.2717 0.0000 -0.0000 - 0.9652 -2.3265 23.6282 -0.6973 -1.8725 178.4031 -2.7664 -3.0611 0.1593 -1.1359 -1.4222 -0.2550 5.6858 -1.5938 4.5142 0.4173 4.8641 -0.6532 -7.0759 2.4863 1.1911 3.3633 -2.0399 -3.5005 2.0747 8.6371 2.7320 -20.6679 -19.3315 -5.1255 0.0000 0.0000 13.7596 11.1578 -5.6347 -8.0238 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.7046 -3.2656 0.4403 -28.3966 23.0010 12.3988 -0.0000 -0.0000 -7.2815 -8.1216 -18.7204 16.3459 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.3205 0.4967 -49.3776 -2.7776 0.0000 -0.0000 18.8588 -11.1627 41.2596 -37.8015 0.0000 -0.0000 1.5054 -6.0219 19.3071 -5.4256 0.0000 -0.0000 -0.0716 -5.0201 -22.1769 -5.2905 0.0000 -0.0000 - 0.9692 -2.3355 23.6275 -0.6977 -1.8489 178.3935 -2.7407 -3.0044 0.1867 -1.1336 -1.4247 -0.2533 5.6644 -1.5769 4.5179 0.4155 4.8550 -0.6535 -7.0601 2.4698 1.1800 3.3717 -2.0579 -3.5085 2.0832 8.6930 2.7223 -20.6713 -19.3922 -5.1437 0.0000 0.0000 13.7440 11.1581 -5.6571 -8.0185 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.7126 -3.2990 0.4101 -28.3965 23.0444 12.4235 -0.0000 -0.0000 -7.2793 -8.1211 -18.7000 16.3411 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.2494 0.4950 -49.3680 -2.7816 0.0000 -0.0000 18.8381 -10.9832 41.1081 -38.4532 0.0000 -0.0000 1.4706 -6.0133 19.3165 -5.3930 0.0000 -0.0000 -0.0741 -5.0322 -22.1855 -5.3113 0.0000 -0.0000 - 0.9731 -2.3444 23.6271 -0.7000 -1.8336 178.3912 -2.7222 -2.9579 0.2055 -1.1289 -1.4264 -0.2522 5.6447 -1.5595 4.5209 0.4167 4.8489 -0.6523 -7.0448 2.4520 1.1671 3.3772 -2.0776 -3.5166 2.0907 8.7445 2.7130 -20.6715 -19.4543 -5.1620 0.0000 0.0000 13.7300 11.1489 -5.6807 -8.0154 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7222 -3.3311 0.3811 -28.3933 23.0823 12.4414 -0.0000 -0.0000 -7.2784 -8.1194 -18.6802 16.3367 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.1877 0.4941 -49.3608 -2.7707 0.0000 -0.0000 18.8175 -10.8555 40.9976 -38.9179 0.0000 -0.0000 1.4331 -6.0130 19.3182 -5.3607 0.0000 -0.0000 -0.0767 -5.0453 -22.1937 -5.3327 0.0000 -0.0000 - 0.9769 -2.3528 23.6270 -0.6847 -1.8295 178.3979 -2.6884 -2.9240 0.2171 -1.1243 -1.4211 -0.2484 5.6272 -1.5482 4.5196 0.4199 4.8439 -0.6532 -7.0307 2.4344 1.1557 3.3794 -2.0979 -3.5252 2.0945 8.8015 2.7046 -20.6690 -19.5278 -5.1809 0.0000 0.0000 13.7168 11.1292 -5.6997 -8.0108 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.7326 -3.3675 0.3539 -28.3883 23.1201 12.4597 -0.0000 -0.0000 -7.2802 -8.1142 -18.6613 16.3322 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.1576 0.4898 -49.3575 -2.7494 0.0000 -0.0000 18.7985 -10.7794 40.9277 -39.1902 0.0000 -0.0000 1.4156 -6.0231 19.3105 -5.3333 0.0000 -0.0000 -0.0780 -5.0585 -22.2002 -5.3543 0.0000 -0.0000 - 0.9804 -2.3611 23.6272 -0.6704 -1.8323 178.4093 -2.6597 -2.8970 0.2189 -1.1189 -1.4172 -0.2452 5.6151 -1.5366 4.5227 0.4224 4.8389 -0.6528 -7.0166 2.4211 1.1420 3.3770 -2.1206 -3.5334 2.1017 8.8512 2.6972 -20.6683 -19.5922 -5.2013 0.0000 0.0000 13.7092 11.0910 -5.7232 -8.0062 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.7371 -3.3958 0.3259 -28.3788 23.1485 12.4665 -0.0000 -0.0000 -7.2788 -8.1115 -18.6460 16.3258 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.1363 0.4868 -49.3516 -2.7150 0.0000 -0.0000 18.7787 -10.7496 40.8903 -39.2897 0.0000 -0.0000 1.3970 -6.0395 19.2964 -5.3071 0.0000 -0.0000 -0.0779 -5.0726 -22.2046 -5.3764 0.0000 -0.0000 - 0.9836 -2.3694 23.6276 -0.6561 -1.8421 178.4276 -2.6335 -2.8776 0.2172 -1.1091 -1.4118 -0.2439 5.6014 -1.5257 4.5209 0.4280 4.8350 -0.6546 -7.0075 2.4064 1.1307 3.3701 -2.1434 -3.5415 2.1037 8.8998 2.6939 -20.6664 -19.6603 -5.2228 0.0000 0.0000 13.7042 11.0377 -5.7405 -7.9948 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.7414 -3.4324 0.3027 -28.3643 23.1812 12.4749 -0.0000 -0.0000 -7.2811 -8.1040 -18.6364 16.3190 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.1227 0.4838 -49.3474 -2.6695 0.0000 -0.0000 18.7580 -10.7564 40.8791 -39.2499 0.0000 -0.0000 1.3774 -6.0624 19.2758 -5.2825 0.0000 -0.0000 -0.0766 -5.0879 -22.2090 -5.3981 0.0000 -0.0000 - 0.9867 -2.3777 23.6281 -0.6410 -1.8571 178.4512 -2.6062 -2.8632 0.2100 -1.0991 -1.4049 -0.2426 5.5901 -1.5165 4.5170 0.4320 4.8308 -0.6553 -7.0014 2.3940 1.1184 3.3581 -2.1665 -3.5500 2.1052 8.9449 2.6930 -20.6676 -19.7249 -5.2480 0.0000 0.0000 13.7047 10.9690 -5.7561 -7.9790 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7385 -3.4673 0.2804 -28.3423 23.2096 12.4748 -0.0000 -0.0000 -7.2805 -8.0962 -18.6309 16.3116 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.1156 0.4800 -49.3378 -2.6177 0.0000 -0.0000 18.7359 -10.7898 40.8782 -39.1170 0.0000 -0.0000 1.3574 -6.0901 19.2476 -5.2583 0.0000 -0.0000 -0.0741 -5.1039 -22.2108 -5.4193 0.0000 -0.0000 - 0.9896 -2.3860 23.6286 -0.6251 -1.8756 178.4786 -2.5747 -2.8519 0.1995 -1.0889 -1.3965 -0.2412 5.5785 -1.5087 4.5096 0.4346 4.8252 -0.6553 -6.9994 2.3852 1.1063 3.3414 -2.1897 -3.5594 2.1054 8.9891 2.6951 -20.6715 -19.7876 -5.2774 0.0000 0.0000 13.7093 10.8886 -5.7683 -7.9584 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.7291 -3.5022 0.2588 -28.3118 23.2353 12.4695 -0.0000 -0.0000 -7.2788 -8.0841 -18.6313 16.3045 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1125 0.4745 -49.3268 -2.5648 0.0000 -0.0000 18.7150 -10.8358 40.8824 -38.9397 0.0000 -0.0000 1.3372 -6.1210 19.2126 -5.2350 0.0000 -0.0000 -0.0702 -5.1208 -22.2091 -5.4395 0.0000 -0.0000 - 0.9923 -2.3945 23.6290 -0.6083 -1.8947 178.5083 -2.5369 -2.8402 0.1883 -1.0779 -1.3865 -0.2392 5.5641 -1.5030 4.4981 0.4352 4.8178 -0.6548 -7.0027 2.3797 1.0943 3.3198 -2.2128 -3.5703 2.1051 9.0322 2.7007 -20.6788 -19.8472 -5.3112 0.0000 0.0000 13.7173 10.8023 -5.7781 -7.9344 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.7130 -3.5395 0.2376 -28.2728 23.2608 12.4619 -0.0000 -0.0000 -7.2762 -8.0711 -18.6373 16.2973 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1105 0.4684 -49.3121 -2.5138 0.0000 -0.0000 18.6946 -10.8834 40.8803 -38.7633 0.0000 -0.0000 1.3164 -6.1519 19.1725 -5.2120 0.0000 -0.0000 -0.0647 -5.1382 -22.2044 -5.4586 0.0000 -0.0000 - 0.9948 -2.4033 23.6293 -0.5916 -1.9120 178.5394 -2.4919 -2.8255 0.1784 -1.0668 -1.3755 -0.2370 5.5468 -1.4991 4.4824 0.4326 4.8087 -0.6544 -7.0117 2.3777 1.0826 3.2943 -2.2354 -3.5835 2.1046 9.0740 2.7100 -20.6884 -19.9028 -5.3489 0.0000 0.0000 13.7268 10.7165 -5.7862 -7.9095 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6902 -3.5778 0.2169 -28.2240 23.2845 12.4503 -0.0000 -0.0000 -7.2718 -8.0557 -18.6488 16.2907 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.1067 0.4624 -49.2911 -2.4681 0.0000 -0.0000 18.6748 -10.9240 40.8622 -38.6238 0.0000 -0.0000 1.2939 -6.1805 19.1283 -5.1889 0.0000 -0.0000 -0.0574 -5.1562 -22.1968 -5.4765 0.0000 -0.0000 - 0.9970 -2.4124 23.6295 -0.5760 -1.9262 178.5710 -2.4400 -2.8065 0.1711 -1.0556 -1.3636 -0.2347 5.5266 -1.4963 4.4623 0.4259 4.7979 -0.6536 -7.0268 2.3792 1.0709 3.2652 -2.2576 -3.5999 2.1041 9.1154 2.7230 -20.6986 -19.9547 -5.3906 0.0000 0.0000 13.7358 10.6390 -5.7929 -7.8863 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.6621 -3.6179 0.1952 -28.1661 23.3065 12.4379 -0.0000 -0.0000 -7.2664 -8.0387 -18.6648 16.2844 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0992 0.4563 -49.2676 -2.4309 0.0000 -0.0000 18.6574 -10.9502 40.8273 -38.5441 0.0000 -0.0000 1.2690 -6.2054 19.0816 -5.1662 0.0000 -0.0000 -0.0480 -5.1745 -22.1872 -5.4927 0.0000 -0.0000 - 0.9992 -2.4218 23.6295 -0.5638 -1.9377 178.6047 -2.3834 -2.7836 0.1662 -1.0425 -1.3510 -0.2329 5.5004 -1.4939 4.4357 0.4166 4.7846 -0.6506 -7.0497 2.3833 1.0593 3.2332 -2.2791 -3.6200 2.1022 9.1578 2.7397 -20.7068 -20.0046 -5.4358 0.0000 0.0000 13.7416 10.5780 -5.7974 -7.8661 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.6339 -3.6674 0.1705 -28.1025 23.3331 12.4366 -0.0000 -0.0000 -7.2643 -8.0166 -18.6856 16.2771 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0850 0.4485 -49.2473 -2.4038 0.0000 -0.0000 18.6437 -10.9582 40.7772 -38.5333 0.0000 -0.0000 1.2389 -6.2272 19.0332 -5.1439 0.0000 -0.0000 -0.0369 -5.1927 -22.1782 -5.5072 0.0000 -0.0000 - 1.0011 -2.4319 23.6294 -0.5844 -1.9440 178.6364 -2.3544 -2.7571 0.1650 -1.0306 -1.3389 -0.2295 5.4767 -1.4908 4.4071 0.4031 4.7728 -0.6509 -7.0808 2.3897 1.0477 3.1982 -2.3010 -3.6444 2.1014 9.1903 2.7594 -20.7110 -20.0416 -5.4796 0.0000 0.0000 13.7439 10.5378 -5.8033 -7.8556 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.6029 -3.7047 0.1491 -28.0268 23.3443 12.4191 -0.0000 -0.0000 -7.2565 -7.9972 -18.7084 16.2724 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0325 0.4416 -49.2225 -2.3863 0.0000 -0.0000 18.6344 -10.9493 40.7079 -38.5886 0.0000 -0.0000 1.1710 -6.2443 18.9840 -5.1176 0.0000 -0.0000 -0.0248 -5.2119 -22.1683 -5.5198 0.0000 -0.0000 - 1.0027 -2.4418 23.6292 -0.5744 -1.9447 178.6680 -2.2803 -2.7226 0.1700 -1.0210 -1.3267 -0.2279 5.4433 -1.4893 4.3771 0.3872 4.7585 -0.6520 -7.1169 2.4012 1.0384 3.1610 -2.3221 -3.6755 2.1024 9.2315 2.7838 -20.7093 -20.0800 -5.5270 0.0000 0.0000 13.7385 10.5234 -5.8100 -7.8520 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.5726 -3.7485 0.1257 -27.9467 23.3586 12.4119 -0.0000 -0.0000 -7.2518 -7.9760 -18.7327 16.2696 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0125 0.4366 -49.1960 -2.3827 0.0000 -0.0000 18.6297 -10.9305 40.6275 -38.6945 0.0000 -0.0000 1.1397 -6.2526 18.9373 -5.1015 0.0000 -0.0000 -0.0064 -5.2297 -22.1590 -5.5313 0.0000 -0.0000 - 1.0041 -2.4527 23.6289 -0.6165 -1.9424 178.6994 -2.2619 -2.6887 0.1758 -1.0044 -1.3182 -0.2269 5.4129 -1.4812 4.3441 0.3689 4.7457 -0.6509 -7.1627 2.4135 1.0274 3.1211 -2.3440 -3.7116 2.1018 9.2622 2.8100 -20.7003 -20.1063 -5.5746 0.0000 0.0000 13.7291 10.5380 -5.8166 -7.8596 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.5480 -3.7846 0.1014 -27.8613 23.3601 12.4012 -0.0000 -0.0000 -7.2465 -7.9552 -18.7575 16.2677 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0636 0.4307 -49.1785 -2.3870 0.0000 -0.0000 18.6330 -10.9002 40.5474 -38.8300 0.0000 -0.0000 1.0498 -6.2592 18.8945 -5.0803 0.0000 -0.0000 0.0115 -5.2484 -22.1560 -5.5406 0.0000 -0.0000 - 1.0053 -2.4634 23.6286 -0.6421 -1.9376 178.7292 -2.2128 -2.6549 0.1841 -0.9986 -1.3063 -0.2259 5.3834 -1.4787 4.3174 0.3479 4.7387 -0.6555 -7.2132 2.4262 1.0176 3.0790 -2.3640 -3.7538 2.1051 9.2900 2.8377 -20.6776 -20.1243 -5.6135 0.0000 0.0000 13.7068 10.5741 -5.8252 -7.8747 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5293 -3.8199 0.0756 -27.7734 23.3541 12.3955 -0.0000 -0.0000 -7.2424 -7.9350 -18.7802 16.2683 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.1205 0.4268 -49.1376 -2.3986 0.0000 -0.0000 18.6372 -10.8779 40.4465 -38.9688 0.0000 -0.0000 0.9808 -6.2609 18.8523 -5.0663 0.0000 -0.0000 0.0334 -5.2661 -22.1513 -5.5488 0.0000 -0.0000 - 1.0063 -2.4742 23.6284 -0.6751 -1.9319 178.7581 -2.1706 -2.6218 0.1934 -0.9891 -1.2987 -0.2240 5.3530 -1.4717 4.2912 0.3262 4.7332 -0.6581 -7.2686 2.4423 1.0056 3.0338 -2.3852 -3.8021 2.1096 9.3172 2.8653 -20.6479 -20.1369 -5.6545 0.0000 0.0000 13.6806 10.6325 -5.8356 -7.8990 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5173 -3.8548 0.0432 -27.6899 23.3417 12.4010 -0.0000 -0.0000 -7.2409 -7.9155 -18.8013 16.2689 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1807 0.4210 -49.1090 -2.4211 0.0000 -0.0000 18.6525 -10.8582 40.3637 -39.0879 0.0000 -0.0000 0.9084 -6.2600 18.8139 -5.0614 0.0000 -0.0000 0.0605 -5.2825 -22.1493 -5.5560 0.0000 -0.0000 - 1.0069 -2.4850 23.6282 -0.7128 -1.9268 178.7811 -2.1331 -2.5929 0.2064 -0.9752 -1.2954 -0.2241 5.3211 -1.4585 4.2715 0.3052 4.7283 -0.6650 -7.3297 2.4600 0.9967 2.9857 -2.4043 -3.8566 2.1102 9.3484 2.8989 -20.6066 -20.1481 -5.6983 0.0000 0.0000 13.6482 10.7081 -5.8414 -7.9259 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.5086 -3.8833 0.0230 -27.6065 23.3257 12.3932 -0.0000 -0.0000 -7.2342 -7.9023 -18.8210 16.2667 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2424 0.4151 -49.0692 -2.4472 0.0000 -0.0000 18.6726 -10.8510 40.2845 -39.1695 0.0000 -0.0000 0.8369 -6.2575 18.7821 -5.0663 0.0000 -0.0000 0.0922 -5.2984 -22.1479 -5.5623 0.0000 -0.0000 - 1.0073 -2.4957 23.6281 -0.7524 -1.9233 178.8031 -2.0934 -2.5707 0.2163 -0.9669 -1.2895 -0.2225 5.2939 -1.4493 4.2568 0.2840 4.7307 -0.6705 -7.3923 2.4791 0.9846 2.9325 -2.4237 -3.9150 2.1149 9.3730 2.9292 -20.5555 -20.1485 -5.7340 0.0000 0.0000 13.6096 10.7890 -5.8475 -7.9569 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.5110 -3.9071 -0.0067 -27.5297 23.2954 12.3999 -0.0000 -0.0000 -7.2332 -7.8884 -18.8328 16.2697 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.3010 0.4075 -49.0302 -2.4792 0.0000 -0.0000 18.7004 -10.8570 40.2184 -39.2037 0.0000 -0.0000 0.7669 -6.2551 18.7540 -5.0776 0.0000 -0.0000 0.1265 -5.3133 -22.1490 -5.5681 0.0000 -0.0000 - 1.0074 -2.5062 23.6281 -0.7938 -1.9212 178.8202 -2.0551 -2.5530 0.2265 -0.9589 -1.2877 -0.2219 5.2688 -1.4364 4.2495 0.2643 4.7360 -0.6771 -7.4580 2.4990 0.9733 2.8758 -2.4407 -3.9788 2.1193 9.3977 2.9589 -20.4975 -20.1445 -5.7668 0.0000 0.0000 13.5681 10.8707 -5.8505 -7.9872 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.5186 -3.9251 -0.0333 -27.4588 23.2583 12.4057 -0.0000 -0.0000 -7.2319 -7.8820 -18.8432 16.2701 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.3571 0.3993 -48.9891 -2.5144 0.0000 -0.0000 18.7345 -10.8759 40.1663 -39.1901 0.0000 -0.0000 0.7008 -6.2521 18.7296 -5.0984 0.0000 -0.0000 0.1653 -5.3274 -22.1486 -5.5744 0.0000 -0.0000 - 1.0072 -2.5166 23.6281 -0.8348 -1.9210 178.8320 -2.0176 -2.5388 0.2329 -0.9508 -1.2903 -0.2194 5.2480 -1.4206 4.2486 0.2445 4.7416 -0.6819 -7.5243 2.5226 0.9622 2.8142 -2.4565 -4.0466 2.1248 9.4228 2.9877 -20.4343 -20.1339 -5.7971 0.0000 0.0000 13.5264 10.9432 -5.8506 -8.0166 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5301 -3.9374 -0.0568 -27.3960 23.2173 12.4106 -0.0000 -0.0000 -7.2299 -7.8780 -18.8492 16.2720 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.4088 0.3895 -48.9480 -2.5537 0.0000 -0.0000 18.7756 -10.9048 40.1287 -39.1378 0.0000 -0.0000 0.6404 -6.2492 18.7085 -5.1273 0.0000 -0.0000 0.2076 -5.3407 -22.1457 -5.5810 0.0000 -0.0000 - 1.0067 -2.5269 23.6281 -0.8852 -1.9234 178.8339 -1.9903 -2.5316 0.2430 -0.9420 -1.2914 -0.2217 5.2282 -1.4084 4.2607 0.2282 4.7525 -0.6889 -7.5911 2.5471 0.9509 2.7474 -2.4707 -4.1160 2.1300 9.4467 3.0162 -20.3673 -20.1181 -5.8246 0.0000 0.0000 13.4860 11.0029 -5.8450 -8.0434 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -3.5475 -3.9453 -0.0799 -27.3429 23.1698 12.4228 -0.0000 -0.0000 -7.2316 -7.8771 -18.8504 16.2740 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.4703 0.3792 -48.8961 -2.5900 0.0000 -0.0000 18.8182 -10.9405 40.0955 -39.0612 0.0000 -0.0000 0.5759 -6.2473 18.6939 -5.1643 0.0000 -0.0000 0.2536 -5.3534 -22.1392 -5.5884 0.0000 -0.0000 - 1.0058 -2.5372 23.6281 -0.9397 -1.9265 178.8265 -1.9659 -2.5279 0.2512 -0.9340 -1.2925 -0.2194 5.2081 -1.3970 4.2772 0.2150 4.7633 -0.6944 -7.6577 2.5741 0.9398 2.6762 -2.4830 -4.1861 2.1354 9.4710 3.0447 -20.3004 -20.0964 -5.8521 0.0000 0.0000 13.4515 11.0460 -5.8357 -8.0689 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5663 -3.9501 -0.0994 -27.2999 23.1222 12.4382 -0.0000 -0.0000 -7.2345 -7.8798 -18.8512 16.2741 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.5373 0.3703 -48.8315 -2.6230 0.0000 -0.0000 18.8607 -10.9794 40.0603 -38.9810 0.0000 -0.0000 0.5108 -6.2453 18.6747 -5.2050 0.0000 -0.0000 0.3022 -5.3666 -22.1186 -5.5966 0.0000 -0.0000 - 1.0048 -2.5473 23.6281 -0.9953 -1.9312 178.8105 -1.9442 -2.5256 0.2594 -0.9271 -1.2984 -0.2198 5.1938 -1.3837 4.3034 0.2011 4.7740 -0.6994 -7.7223 2.6035 0.9291 2.6010 -2.4933 -4.2556 2.1414 9.4983 3.0724 -20.2348 -20.0733 -5.8785 0.0000 0.0000 13.4228 11.0724 -5.8194 -8.0951 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.5842 -3.9502 -0.1168 -27.2669 23.0716 12.4561 -0.0000 -0.0000 -7.2375 -7.8856 -18.8476 16.2752 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.6069 0.3601 -48.7614 -2.6559 0.0000 -0.0000 18.9052 -11.0151 40.0253 -38.9140 0.0000 -0.0000 0.4487 -6.2440 18.6578 -5.2504 0.0000 -0.0000 0.3528 -5.3790 -22.0915 -5.6064 0.0000 -0.0000 - 1.0034 -2.5572 23.6280 -1.0399 -1.9350 178.7856 -1.9101 -2.5223 0.2679 -0.9185 -1.3028 -0.2188 5.1762 -1.3744 4.3331 0.1887 4.7826 -0.7019 -7.7849 2.6355 0.9203 2.5232 -2.5013 -4.3233 2.1492 9.5304 3.1009 -20.1694 -20.0488 -5.9035 0.0000 0.0000 13.4001 11.0790 -5.7991 -8.1225 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.5980 -3.9507 -0.1270 -27.2424 23.0283 12.4732 -0.0000 -0.0000 -7.2388 -7.8929 -18.8455 16.2751 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6671 0.3511 -48.6884 -2.6897 0.0000 -0.0000 18.9515 -11.0436 39.9907 -38.8761 0.0000 -0.0000 0.4014 -6.2406 18.6427 -5.2979 0.0000 -0.0000 0.4043 -5.3913 -22.0564 -5.6178 0.0000 -0.0000 - 1.0017 -2.5670 23.6278 -1.0920 -1.9380 178.7541 -1.8847 -2.5177 0.2752 -0.9108 -1.3078 -0.2184 5.1617 -1.3667 4.3652 0.1763 4.7895 -0.7006 -7.8450 2.6685 0.9112 2.4432 -2.5058 -4.3870 2.1574 9.5652 3.1299 -20.1064 -20.0233 -5.9295 0.0000 0.0000 13.3867 11.0724 -5.7744 -8.1552 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.6088 -3.9483 -0.1366 -27.2272 22.9845 12.4961 -0.0000 -0.0000 -7.2411 -7.9001 -18.8427 16.2750 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7389 0.3431 -48.6152 -2.7220 0.0000 -0.0000 18.9983 -11.0616 39.9538 -38.8775 0.0000 -0.0000 0.3465 -6.2365 18.6248 -5.3433 0.0000 -0.0000 0.4556 -5.4042 -22.0122 -5.6300 0.0000 -0.0000 - 0.9998 -2.5767 23.6275 -1.1401 -1.9410 178.7123 -1.8554 -2.5116 0.2874 -0.9005 -1.3138 -0.2211 5.1451 -1.3598 4.4053 0.1644 4.7932 -0.7025 -7.9037 2.7027 0.9049 2.3638 -2.5083 -4.4463 2.1663 9.6062 3.1595 -20.0425 -20.0022 -5.9522 0.0000 0.0000 13.3795 11.0546 -5.7443 -8.1947 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.6142 -3.9459 -0.1396 -27.2170 22.9468 12.5178 -0.0000 -0.0000 -7.2411 -7.9069 -18.8412 16.2757 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.8115 0.3370 -48.5241 -2.7483 0.0000 -0.0000 19.0400 -11.0727 39.9010 -38.9199 0.0000 -0.0000 0.2969 -6.2324 18.6099 -5.3857 0.0000 -0.0000 0.5046 -5.4169 -21.9604 -5.6431 0.0000 -0.0000 - 0.9977 -2.5862 23.6273 -1.1880 -1.9419 178.6668 -1.8252 -2.5026 0.2964 -0.8918 -1.3173 -0.2174 5.1287 -1.3572 4.4392 0.1526 4.7946 -0.7006 -7.9595 2.7365 0.9006 2.2850 -2.5083 -4.5000 2.1768 9.6507 3.1927 -19.9791 -19.9821 -5.9770 0.0000 0.0000 13.3809 11.0301 -5.7130 -8.2418 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.6145 -3.9441 -0.1411 -27.2131 22.9133 12.5444 -0.0000 -0.0000 -7.2404 -7.9105 -18.8412 16.2767 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.8870 0.3338 -48.4337 -2.7726 0.0000 -0.0000 19.0810 -11.0759 39.8452 -38.9995 0.0000 -0.0000 0.2457 -6.2267 18.5863 -5.4216 0.0000 -0.0000 0.5511 -5.4306 -21.8964 -5.6571 0.0000 -0.0000 - 0.9953 -2.5955 23.6271 -1.2294 -1.9419 178.6184 -1.7899 -2.4900 0.3041 -0.8828 -1.3215 -0.2151 5.1139 -1.3552 4.4750 0.1390 4.7917 -0.6972 -8.0124 2.7701 0.8978 2.2089 -2.5057 -4.5477 2.1901 9.7005 3.2282 -19.9148 -19.9656 -6.0021 0.0000 0.0000 13.3890 11.0036 -5.6827 -8.2961 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.6079 -3.9454 -0.1399 -27.2141 22.8889 12.5725 -0.0000 -0.0000 -7.2367 -7.9096 -18.8444 16.2782 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.9578 0.3325 -48.3406 -2.7944 0.0000 -0.0000 19.1203 -11.0756 39.7854 -39.1054 0.0000 -0.0000 0.1995 -6.2204 18.5603 -5.4508 0.0000 -0.0000 0.5933 -5.4449 -21.8267 -5.6709 0.0000 -0.0000 - 0.9926 -2.6047 23.6270 -1.2702 -1.9411 178.5695 -1.7549 -2.4765 0.3110 -0.8717 -1.3246 -0.2109 5.0948 -1.3541 4.5074 0.1273 4.7878 -0.6944 -8.0628 2.8000 0.8970 2.1363 -2.5007 -4.5886 2.2051 9.7523 3.2666 -19.8478 -19.9537 -6.0262 0.0000 0.0000 13.4022 10.9781 -5.6527 -8.3557 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.5957 -3.9495 -0.1364 -27.2170 22.8699 12.6014 -0.0000 -0.0000 -7.2307 -7.9048 -18.8498 16.2807 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.0296 0.3346 -48.2442 -2.8102 0.0000 -0.0000 19.1562 -11.0766 39.7221 -39.2229 0.0000 -0.0000 0.1505 -6.2139 18.5327 -5.4706 0.0000 -0.0000 0.6297 -5.4599 -21.7553 -5.6851 0.0000 -0.0000 - 0.9898 -2.6135 23.6270 -1.3000 -1.9405 178.5213 -1.7114 -2.4609 0.3176 -0.8614 -1.3260 -0.2089 5.0788 -1.3555 4.5375 0.1132 4.7796 -0.6872 -8.1099 2.8301 0.8979 2.0695 -2.4933 -4.6243 2.2229 9.8134 3.3046 -19.7786 -19.9521 -6.0496 0.0000 0.0000 13.4192 10.9582 -5.6249 -8.4188 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.5802 -3.9549 -0.1369 -27.2208 22.8566 12.6351 -0.0000 -0.0000 -7.2231 -7.8935 -18.8567 16.2851 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.0890 0.3384 -48.1505 -2.8236 0.0000 -0.0000 19.1919 -11.0825 39.6637 -39.3366 0.0000 -0.0000 0.1113 -6.2075 18.5033 -5.4846 0.0000 -0.0000 0.6611 -5.4752 -21.6823 -5.6990 0.0000 -0.0000 - 0.9867 -2.6221 23.6272 -1.3276 -1.9396 178.4755 -1.6697 -2.4451 0.3233 -0.8483 -1.3267 -0.2063 5.0620 -1.3558 4.5660 0.0994 4.7696 -0.6824 -8.1535 2.8557 0.9005 2.0070 -2.4832 -4.6534 2.2432 9.8770 3.3430 -19.7064 -19.9582 -6.0688 0.0000 0.0000 13.4364 10.9424 -5.6002 -8.4775 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.5582 -3.9646 -0.1319 -27.2232 22.8540 12.6611 -0.0000 -0.0000 -7.2106 -7.8795 -18.8683 16.2891 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.1454 0.3459 -48.0550 -2.8306 0.0000 -0.0000 19.2245 -11.0983 39.6072 -39.4326 0.0000 -0.0000 0.0706 -6.2011 18.4747 -5.4891 0.0000 -0.0000 0.6851 -5.4913 -21.6126 -5.7124 0.0000 -0.0000 - 0.9834 -2.6304 23.6275 -1.3470 -1.9402 178.4353 -1.6227 -2.4301 0.3261 -0.8364 -1.3257 -0.2034 5.0474 -1.3579 4.5895 0.0850 4.7578 -0.6737 -8.1929 2.8804 0.9036 1.9507 -2.4727 -4.6785 2.2655 9.9483 3.3796 -19.6338 -19.9767 -6.0885 0.0000 0.0000 13.4551 10.9330 -5.5786 -8.5306 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.5351 -3.9767 -0.1342 -27.2241 22.8563 12.6919 -0.0000 -0.0000 -7.1983 -7.8583 -18.8796 16.2960 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.1906 0.3547 -47.9652 -2.8334 0.0000 -0.0000 19.2567 -11.1253 39.5587 -39.5013 0.0000 -0.0000 0.0350 -6.1966 18.4389 -5.4857 0.0000 -0.0000 0.7022 -5.5080 -21.5412 -5.7252 0.0000 -0.0000 - 0.9799 -2.6383 23.6280 -1.3534 -1.9404 178.3979 -1.5665 -2.4165 0.3294 -0.8233 -1.3239 -0.2003 5.0320 -1.3563 4.6146 0.0716 4.7447 -0.6698 -8.2284 2.8990 0.9084 1.9010 -2.4586 -4.6991 2.2919 10.0214 3.4142 -19.5605 -20.0042 -6.1015 0.0000 0.0000 13.4705 10.9245 -5.5626 -8.5714 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5072 -3.9956 -0.1292 -27.2185 22.8735 12.7080 -0.0000 -0.0000 -7.1800 -7.8367 -18.8953 16.3029 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.2196 0.3671 -47.8723 -2.8326 0.0000 -0.0000 19.2869 -11.1662 39.5135 -39.5393 0.0000 -0.0000 0.0126 -6.1905 18.4094 -5.4799 0.0000 -0.0000 0.7146 -5.5246 -21.4782 -5.7379 0.0000 -0.0000 - 0.9761 -2.6462 23.6287 -1.3672 -1.9407 178.3677 -1.5230 -2.4035 0.3313 -0.8100 -1.3230 -0.1992 5.0189 -1.3537 4.6374 0.0593 4.7322 -0.6644 -8.2594 2.9150 0.9132 1.8567 -2.4441 -4.7171 2.3193 10.0998 3.4441 -19.4923 -20.0463 -6.1150 0.0000 0.0000 13.4860 10.9195 -5.5468 -8.5985 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.4797 -4.0150 -0.1302 -27.2091 22.8941 12.7223 -0.0000 -0.0000 -7.1635 -7.8125 -18.9104 16.3126 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.2549 0.3826 -47.7877 -2.8253 0.0000 -0.0000 19.3154 -11.2164 39.4761 -39.5500 0.0000 -0.0000 -0.0221 -6.1849 18.3769 -5.4658 0.0000 -0.0000 0.7202 -5.5420 -21.4200 -5.7504 0.0000 -0.0000 - 0.9723 -2.6537 23.6294 -1.3624 -1.9445 178.3456 -1.4629 -2.3950 0.3277 -0.7977 -1.3178 -0.1944 5.0058 -1.3531 4.6579 0.0463 4.7190 -0.6565 -8.2831 2.9274 0.9164 1.8186 -2.4264 -4.7336 2.3523 10.1823 3.4680 -19.4299 -20.0991 -6.1263 0.0000 0.0000 13.4979 10.9115 -5.5362 -8.6087 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.4500 -4.0399 -0.1364 -27.1948 22.9249 12.7320 -0.0000 -0.0000 -7.1473 -7.7907 -18.9243 16.3226 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.2668 0.3949 -47.7125 -2.8205 0.0000 -0.0000 19.3462 -11.2732 39.4454 -39.5402 0.0000 -0.0000 -0.0383 -6.1826 18.3379 -5.4499 0.0000 -0.0000 0.7204 -5.5586 -21.3627 -5.7630 0.0000 -0.0000 - 0.9682 -2.6611 23.6302 -1.3599 -1.9457 178.3260 -1.4090 -2.3851 0.3284 -0.7853 -1.3156 -0.1920 4.9924 -1.3484 4.6810 0.0358 4.7061 -0.6515 -8.3022 2.9384 0.9200 1.7856 -2.4093 -4.7500 2.3865 10.2715 3.4838 -19.3768 -20.1688 -6.1359 0.0000 0.0000 13.5081 10.9015 -5.5253 -8.6049 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.4213 -4.0697 -0.1429 -27.1738 22.9686 12.7335 -0.0000 -0.0000 -7.1338 -7.7712 -18.9404 16.3331 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.2815 0.4121 -47.6428 -2.8121 0.0000 -0.0000 19.3761 -11.3314 39.4190 -39.5261 0.0000 -0.0000 -0.0577 -6.1766 18.3039 -5.4332 0.0000 -0.0000 0.7179 -5.5752 -21.3125 -5.7763 0.0000 -0.0000 - 0.9640 -2.6686 23.6309 -1.3625 -1.9463 178.3119 -1.3647 -2.3765 0.3281 -0.7712 -1.3138 -0.1896 4.9789 -1.3417 4.7053 0.0266 4.6948 -0.6462 -8.3158 2.9458 0.9218 1.7575 -2.3912 -4.7669 2.4233 10.3620 3.4913 -19.3338 -20.2504 -6.1440 0.0000 0.0000 13.5156 10.8869 -5.5143 -8.5886 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.3942 -4.1067 -0.1535 -27.1497 23.0243 12.7315 -0.0000 -0.0000 -7.1257 -7.7537 -18.9563 16.3442 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.3022 0.4301 -47.5830 -2.8022 0.0000 -0.0000 19.4056 -11.3851 39.3940 -39.5199 0.0000 -0.0000 -0.0849 -6.1703 18.2682 -5.4128 0.0000 -0.0000 0.7113 -5.5913 -21.2667 -5.7905 0.0000 -0.0000 - 0.9596 -2.6760 23.6316 -1.3657 -1.9442 178.3001 -1.3225 -2.3652 0.3316 -0.7602 -1.3141 -0.1897 4.9671 -1.3324 4.7327 0.0182 4.6822 -0.6411 -8.3237 2.9540 0.9228 1.7342 -2.3730 -4.7853 2.4598 10.4620 3.4901 -19.3009 -20.3509 -6.1536 0.0000 0.0000 13.5219 10.8694 -5.4992 -8.5662 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.3677 -4.1449 -0.1628 -27.1170 23.0919 12.7144 -0.0000 -0.0000 -7.1199 -7.7438 -18.9730 16.3552 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.3248 0.4505 -47.5300 -2.7932 0.0000 -0.0000 19.4350 -11.4304 39.3680 -39.5353 0.0000 -0.0000 -0.1114 -6.1602 18.2340 -5.3965 0.0000 -0.0000 0.7061 -5.6061 -21.2242 -5.8068 0.0000 -0.0000 - 0.9553 -2.6833 23.6321 -1.3629 -1.9438 178.2945 -1.2734 -2.3574 0.3315 -0.7503 -1.3107 -0.1853 4.9513 -1.3255 4.7606 0.0108 4.6706 -0.6360 -8.3248 2.9613 0.9223 1.7154 -2.3549 -4.8059 2.5007 10.5629 3.4811 -19.2757 -20.4604 -6.1609 0.0000 0.0000 13.5252 10.8454 -5.4830 -8.5440 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.3411 -4.1857 -0.1750 -27.0790 23.1684 12.6885 -0.0000 -0.0000 -7.1203 -7.7410 -18.9886 16.3680 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.3409 0.4661 -47.4912 -2.7909 0.0000 -0.0000 19.4675 -11.4623 39.3417 -39.5790 0.0000 -0.0000 -0.1317 -6.1520 18.1936 -5.3822 0.0000 -0.0000 0.7001 -5.6190 -21.1813 -5.8246 0.0000 -0.0000 - 0.9508 -2.6908 23.6325 -1.3758 -1.9384 178.2899 -1.2437 -2.3444 0.3364 -0.7385 -1.3135 -0.1852 4.9347 -1.3139 4.7937 0.0048 4.6603 -0.6309 -8.3220 2.9690 0.9195 1.7004 -2.3385 -4.8285 2.5456 10.6614 3.4629 -19.2612 -20.5751 -6.1686 0.0000 0.0000 13.5317 10.8178 -5.4679 -8.5328 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.3165 -4.2280 -0.1879 -27.0361 23.2557 12.6513 -0.0000 -0.0000 -7.1260 -7.7447 -19.0079 16.3815 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.3773 0.4864 -47.4603 -2.7871 0.0000 -0.0000 19.4982 -11.4800 39.3128 -39.6564 0.0000 -0.0000 -0.1687 -6.1381 18.1600 -5.3699 0.0000 -0.0000 0.6964 -5.6308 -21.1467 -5.8446 0.0000 -0.0000 - 0.9464 -2.6980 23.6328 -1.3765 -1.9345 178.2902 -1.2003 -2.3345 0.3403 -0.7296 -1.3122 -0.1811 4.9173 -1.3057 4.8255 -0.0021 4.6517 -0.6254 -8.3142 2.9767 0.9161 1.6899 -2.3224 -4.8539 2.5904 10.7664 3.4406 -19.2496 -20.7047 -6.1801 0.0000 0.0000 13.5373 10.7902 -5.4471 -8.5330 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2934 -4.2786 -0.2028 -26.9922 23.3581 12.6119 -0.0000 -0.0000 -7.1394 -7.7536 -19.0286 16.3949 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.4000 0.5019 -47.4428 -2.7912 0.0000 -0.0000 19.5321 -11.4840 39.2847 -39.7610 0.0000 -0.0000 -0.1907 -6.1252 18.1178 -5.3634 0.0000 -0.0000 0.6955 -5.6403 -21.1075 -5.8665 0.0000 -0.0000 - 0.9419 -2.7054 23.6329 -1.3909 -1.9290 178.2931 -1.1698 -2.3229 0.3456 -0.7212 -1.3140 -0.1785 4.8949 -1.2958 4.8616 -0.0059 4.6431 -0.6208 -8.3034 2.9858 0.9105 1.6827 -2.3064 -4.8815 2.6350 10.8710 3.4127 -19.2369 -20.8408 -6.1917 0.0000 0.0000 13.5453 10.7636 -5.4218 -8.5534 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2735 -4.3249 -0.2176 -26.9435 23.4649 12.5601 -0.0000 -0.0000 -7.1562 -7.7696 -19.0492 16.4059 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.4389 0.5179 -47.4326 -2.7960 0.0000 -0.0000 19.5664 -11.4783 39.2554 -39.8863 0.0000 -0.0000 -0.2267 -6.1105 18.0803 -5.3607 0.0000 -0.0000 0.6983 -5.6474 -21.0759 -5.8926 0.0000 -0.0000 - 0.9375 -2.7124 23.6330 -1.3905 -1.9255 178.3003 -1.1239 -2.3134 0.3507 -0.7127 -1.3130 -0.1736 4.8711 -1.2887 4.8960 -0.0117 4.6345 -0.6150 -8.2908 2.9997 0.9052 1.6802 -2.2972 -4.9101 2.6818 10.9751 3.3843 -19.2192 -20.9799 -6.2045 0.0000 0.0000 13.5536 10.7425 -5.3951 -8.5939 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2536 -4.3769 -0.2334 -26.8944 23.5857 12.5068 -0.0000 -0.0000 -7.1820 -7.7891 -19.0756 16.4217 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.4600 0.5296 -47.4331 -2.8068 0.0000 -0.0000 19.6009 -11.4658 39.2308 -40.0111 0.0000 -0.0000 -0.2438 -6.0967 18.0399 -5.3664 0.0000 -0.0000 0.7063 -5.6523 -21.0448 -5.9163 0.0000 -0.0000 - 0.9329 -2.7196 23.6330 -1.4177 -1.9182 178.3103 -1.1080 -2.3014 0.3579 -0.7046 -1.3180 -0.1743 4.8485 -1.2765 4.9364 -0.0158 4.6285 -0.6118 -8.2787 3.0128 0.8993 1.6802 -2.2882 -4.9403 2.7253 11.0701 3.3556 -19.1889 -21.1168 -6.2146 0.0000 0.0000 13.5633 10.7248 -5.3650 -8.6527 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.2384 -4.4229 -0.2458 -26.8409 23.7083 12.4394 -0.0000 -0.0000 -7.2094 -7.8123 -19.1043 16.4368 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.5114 0.5471 -47.4341 -2.8116 0.0000 -0.0000 19.6319 -11.4555 39.2055 -40.1268 0.0000 -0.0000 -0.2912 -6.0791 18.0028 -5.3727 0.0000 -0.0000 0.7186 -5.6565 -21.0206 -5.9431 0.0000 -0.0000 - 0.9285 -2.7262 23.6330 -1.4171 -1.9178 178.3278 -1.0621 -2.2959 0.3604 -0.6968 -1.3165 -0.1678 4.8213 -1.2730 4.9707 -0.0210 4.6224 -0.6058 -8.2643 3.0303 0.8925 1.6845 -2.2806 -4.9724 2.7688 11.1686 3.3285 -19.1464 -21.2587 -6.2275 0.0000 0.0000 13.5736 10.7134 -5.3321 -8.7242 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.2268 -4.4682 -0.2662 -26.7875 23.8343 12.3765 -0.0000 -0.0000 -7.2418 -7.8358 -19.1311 16.4537 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.5269 0.5556 -47.4495 -2.8252 0.0000 -0.0000 19.6682 -11.4502 39.1943 -40.2113 0.0000 -0.0000 -0.3048 -6.0670 17.9608 -5.3898 0.0000 -0.0000 0.7358 -5.6578 -20.9974 -5.9705 0.0000 -0.0000 - 0.9239 -2.7327 23.6331 -1.4281 -1.9161 178.3489 -1.0298 -2.2895 0.3647 -0.6890 -1.3198 -0.1663 4.7953 -1.2654 5.0088 -0.0256 4.6183 -0.6019 -8.2521 3.0477 0.8858 1.6917 -2.2752 -5.0046 2.8095 11.2547 3.3056 -19.0877 -21.3920 -6.2376 0.0000 0.0000 13.5844 10.7068 -5.3000 -8.8020 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2167 -4.5112 -0.2843 -26.7340 23.9648 12.3050 -0.0000 -0.0000 -7.2738 -7.8594 -19.1613 16.4710 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5527 0.5682 -47.4630 -2.8331 0.0000 -0.0000 19.7003 -11.4573 39.1867 -40.2568 0.0000 -0.0000 -0.3298 -6.0527 17.9232 -5.4103 0.0000 -0.0000 0.7577 -5.6584 -20.9824 -5.9981 0.0000 -0.0000 - 0.9193 -2.7393 23.6332 -1.4513 -1.9162 178.3747 -1.0128 -2.2859 0.3687 -0.6803 -1.3241 -0.1676 4.7707 -1.2568 5.0479 -0.0299 4.6147 -0.5988 -8.2423 3.0669 0.8794 1.7013 -2.2722 -5.0371 2.8464 11.3294 3.2877 -19.0108 -21.5162 -6.2443 0.0000 0.0000 13.5937 10.7027 -5.2677 -8.8760 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.2115 -4.5467 -0.3031 -26.6770 24.0932 12.2267 -0.0000 -0.0000 -7.3059 -7.8814 -19.1927 16.4907 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.5882 0.5811 -47.4776 -2.8372 0.0000 -0.0000 19.7306 -11.4777 39.1857 -40.2573 0.0000 -0.0000 -0.3675 -6.0400 17.8858 -5.4332 0.0000 -0.0000 0.7827 -5.6588 -20.9724 -6.0252 0.0000 -0.0000 - 0.9147 -2.7455 23.6334 -1.4755 -1.9202 178.4087 -0.9999 -2.2873 0.3683 -0.6711 -1.3247 -0.1703 4.7477 -1.2526 5.0879 -0.0335 4.6123 -0.5969 -8.2352 3.0879 0.8735 1.7134 -2.2707 -5.0701 2.8769 11.3965 3.2747 -18.9187 -21.6355 -6.2488 0.0000 0.0000 13.6004 10.7038 -5.2349 -8.9366 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.2112 -4.5791 -0.3236 -26.6188 24.2229 12.1468 -0.0000 -0.0000 -7.3379 -7.9002 -19.2215 16.5108 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.6202 0.5912 -47.5007 -2.8406 0.0000 -0.0000 19.7610 -11.5103 39.1946 -40.2153 0.0000 -0.0000 -0.4052 -6.0305 17.8442 -5.4608 0.0000 -0.0000 0.8107 -5.6590 -20.9663 -6.0509 0.0000 -0.0000 - 0.9102 -2.7512 23.6336 -1.4761 -1.9277 178.4467 -0.9605 -2.2909 0.3647 -0.6657 -1.3259 -0.1581 4.7235 -1.2496 5.1128 -0.0377 4.6097 -0.5927 -8.2288 3.1090 0.8681 1.7283 -2.2698 -5.1029 2.9052 11.4543 3.2674 -18.8130 -21.7458 -6.2485 0.0000 0.0000 13.6012 10.7032 -5.2058 -8.9764 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2142 -4.6119 -0.3477 -26.5592 24.3554 12.0679 -0.0000 -0.0000 -7.3685 -7.9161 -19.2474 16.5332 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.6229 0.5987 -47.5189 -2.8453 0.0000 -0.0000 19.7903 -11.5560 39.2032 -40.1418 0.0000 -0.0000 -0.4139 -6.0224 17.8126 -5.4969 0.0000 -0.0000 0.8412 -5.6579 -20.9726 -6.0753 0.0000 -0.0000 - 0.9058 -2.7568 23.6339 -1.4829 -1.9346 178.4884 -0.9315 -2.2939 0.3655 -0.6578 -1.3274 -0.1596 4.7003 -1.2451 5.1455 -0.0421 4.6058 -0.5885 -8.2243 3.1303 0.8616 1.7449 -2.2689 -5.1349 2.9272 11.4998 3.2657 -18.6996 -21.8446 -6.2481 0.0000 0.0000 13.5991 10.7033 -5.1803 -8.9926 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.2186 -4.6393 -0.3738 -26.4983 24.4868 11.9836 -0.0000 -0.0000 -7.3954 -7.9307 -19.2734 16.5553 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6309 0.6079 -47.5374 -2.8474 0.0000 -0.0000 19.8166 -11.6064 39.2112 -40.0558 0.0000 -0.0000 -0.4290 -6.0136 17.7773 -5.5341 0.0000 -0.0000 0.8732 -5.6574 -20.9789 -6.0979 0.0000 -0.0000 - 0.9013 -2.7626 23.6341 -1.5143 -1.9404 178.5340 -0.9313 -2.2950 0.3672 -0.6494 -1.3322 -0.1641 4.6788 -1.2392 5.1781 -0.0436 4.6027 -0.5869 -8.2238 3.1511 0.8569 1.7627 -2.2693 -5.1670 2.9418 11.5307 3.2670 -18.5826 -21.9320 -6.2414 0.0000 0.0000 13.5910 10.7047 -5.1577 -8.9864 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2292 -4.6595 -0.3992 -26.4331 24.6135 11.8936 -0.0000 -0.0000 -7.4210 -7.9405 -19.2950 16.5810 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6663 0.6187 -47.5563 -2.8456 0.0000 -0.0000 19.8388 -11.6538 39.2119 -39.9791 0.0000 -0.0000 -0.4727 -6.0044 17.7441 -5.5678 0.0000 -0.0000 0.9035 -5.6587 -20.9923 -6.1181 0.0000 -0.0000 - 0.8969 -2.7678 23.6342 -1.5152 -1.9468 178.5824 -0.8974 -2.2964 0.3659 -0.6458 -1.3316 -0.1542 4.6577 -1.2383 5.1984 -0.0477 4.5969 -0.5823 -8.2210 3.1734 0.8511 1.7825 -2.2688 -5.1988 2.9517 11.5610 3.2710 -18.4695 -22.0186 -6.2374 0.0000 0.0000 13.5772 10.7094 -5.1381 -8.9620 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.2386 -4.6793 -0.4313 -26.3704 24.7406 11.8057 -0.0000 -0.0000 -7.4424 -7.9492 -19.3108 16.6046 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.6686 0.6265 -47.5770 -2.8502 0.0000 -0.0000 19.8601 -11.6919 39.2048 -39.9304 0.0000 -0.0000 -0.4802 -5.9943 17.7121 -5.6084 0.0000 -0.0000 0.9350 -5.6589 -21.0078 -6.1361 0.0000 -0.0000 - 0.8926 -2.7733 23.6342 -1.5402 -1.9480 178.6301 -0.8932 -2.2917 0.3687 -0.6408 -1.3348 -0.1545 4.6406 -1.2343 5.2269 -0.0519 4.5911 -0.5783 -8.2195 3.1954 0.8446 1.8030 -2.2691 -5.2301 2.9541 11.5806 3.2756 -18.3641 -22.0970 -6.2326 0.0000 0.0000 13.5590 10.7187 -5.1216 -8.9300 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.2486 -4.6923 -0.4634 -26.3073 24.8634 11.7097 -0.0000 -0.0000 -7.4595 -7.9561 -19.3239 16.6289 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.7014 0.6385 -47.5983 -2.8523 0.0000 -0.0000 19.8764 -11.7111 39.1850 -39.9294 0.0000 -0.0000 -0.5157 -5.9797 17.6814 -5.6441 0.0000 -0.0000 0.9650 -5.6606 -21.0251 -6.1524 0.0000 -0.0000 - 0.8884 -2.7785 23.6341 -1.5550 -1.9458 178.6775 -0.8772 -2.2821 0.3760 -0.6369 -1.3366 -0.1543 4.6187 -1.2316 5.2524 -0.0545 4.5820 -0.5748 -8.2173 3.2173 0.8390 1.8260 -2.2681 -5.2603 2.9521 11.5964 3.2801 -18.2707 -22.1718 -6.2271 0.0000 0.0000 13.5364 10.7332 -5.1113 -8.9043 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2610 -4.7037 -0.4965 -26.2466 24.9851 11.6145 -0.0000 -0.0000 -7.4747 -7.9597 -19.3338 16.6518 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.7264 0.6506 -47.6214 -2.8591 0.0000 -0.0000 19.8890 -11.7070 39.1517 -39.9829 0.0000 -0.0000 -0.5394 -5.9616 17.6519 -5.6804 0.0000 -0.0000 0.9941 -5.6623 -21.0427 -6.1659 0.0000 -0.0000 - 0.8844 -2.7837 23.6337 -1.5799 -1.9403 178.7240 -0.8735 -2.2696 0.3842 -0.6346 -1.3391 -0.1519 4.5996 -1.2281 5.2759 -0.0581 4.5736 -0.5707 -8.2141 3.2375 0.8325 1.8503 -2.2669 -5.2892 2.9444 11.6073 3.2833 -18.1917 -22.2454 -6.2234 0.0000 0.0000 13.5116 10.7572 -5.1034 -8.8987 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.2724 -4.7106 -0.5299 -26.1894 25.1010 11.5140 -0.0000 -0.0000 -7.4861 -7.9623 -19.3409 16.6741 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.7663 0.6625 -47.6502 -2.8687 0.0000 -0.0000 19.8984 -11.6754 39.1083 -40.0886 0.0000 -0.0000 -0.5753 -5.9411 17.6234 -5.7126 0.0000 -0.0000 1.0209 -5.6641 -21.0611 -6.1771 0.0000 -0.0000 - 0.8805 -2.7887 23.6332 -1.6021 -1.9332 178.7699 -0.8676 -2.2549 0.3925 -0.6330 -1.3401 -0.1476 4.5785 -1.2261 5.2977 -0.0616 4.5639 -0.5655 -8.2083 3.2576 0.8266 1.8763 -2.2658 -5.3165 2.9328 11.6187 3.2854 -18.1295 -22.3204 -6.2235 0.0000 0.0000 13.4857 10.7938 -5.0985 -8.9246 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2848 -4.7172 -0.5663 -26.1413 25.2139 11.4206 -0.0000 -0.0000 -7.4975 -7.9594 -19.3454 16.6944 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.8057 0.6719 -47.6902 -2.8842 0.0000 -0.0000 19.9063 -11.6165 39.0629 -40.2307 0.0000 -0.0000 -0.6083 -5.9194 17.5961 -5.7436 0.0000 -0.0000 1.0463 -5.6656 -21.0802 -6.1860 0.0000 -0.0000 - 0.8766 -2.7934 23.6326 -1.6240 -1.9201 178.8104 -0.8620 -2.2342 0.4054 -0.6323 -1.3428 -0.1468 4.5566 -1.2225 5.3236 -0.0654 4.5536 -0.5601 -8.2009 3.2771 0.8197 1.9050 -2.2635 -5.3412 2.9195 11.6269 3.2849 -18.0810 -22.3913 -6.2241 0.0000 0.0000 13.4620 10.8399 -5.1008 -8.9910 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2940 -4.7181 -0.5976 -26.0998 25.3227 11.3170 -0.0000 -0.0000 -7.5012 -7.9589 -19.3573 16.7083 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.8479 0.6864 -47.7301 -2.8981 0.0000 -0.0000 19.9078 -11.5390 39.0154 -40.3845 0.0000 -0.0000 -0.6411 -5.8920 17.5728 -5.7709 0.0000 -0.0000 1.0714 -5.6666 -21.0982 -6.1918 0.0000 -0.0000 - 0.8728 -2.7979 23.6319 -1.6484 -1.9064 178.8484 -0.8607 -2.2152 0.4180 -0.6317 -1.3453 -0.1445 4.5334 -1.2189 5.3496 -0.0690 4.5455 -0.5555 -8.1910 3.2957 0.8145 1.9355 -2.2623 -5.3634 2.9041 11.6334 3.2833 -18.0424 -22.4620 -6.2243 0.0000 0.0000 13.4404 10.8964 -5.1048 -9.0997 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.3034 -4.7146 -0.6277 -26.0693 25.4220 11.2167 -0.0000 -0.0000 -7.5046 -7.9525 -19.3695 16.7225 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.8925 0.7000 -47.7817 -2.9128 0.0000 -0.0000 19.9076 -11.4484 38.9827 -40.5104 0.0000 -0.0000 -0.6768 -5.8646 17.5526 -5.7951 0.0000 -0.0000 1.0956 -5.6670 -21.1172 -6.1951 0.0000 -0.0000 - 0.8689 -2.8020 23.6313 -1.6765 -1.8925 178.8818 -0.8656 -2.1990 0.4306 -0.6311 -1.3484 -0.1426 4.5099 -1.2143 5.3783 -0.0722 4.5400 -0.5521 -8.1795 3.3136 0.8111 1.9680 -2.2619 -5.3824 2.8886 11.6359 3.2807 -18.0104 -22.5282 -6.2220 0.0000 0.0000 13.4235 10.9600 -5.1104 -9.2439 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -3.3107 -4.7034 -0.6495 -26.0471 25.5124 11.1078 -0.0000 -0.0000 -7.5024 -7.9435 -19.3879 16.7349 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.9391 0.7150 -47.8421 -2.9233 0.0000 -0.0000 19.9044 -11.3572 38.9737 -40.5643 0.0000 -0.0000 -0.7167 -5.8371 17.5373 -5.8157 0.0000 -0.0000 1.1196 -5.6671 -21.1370 -6.1953 0.0000 -0.0000 - 0.8650 -2.8051 23.6308 -1.6810 -1.8851 178.9142 -0.8487 -2.1931 0.4383 -0.6299 -1.3493 -0.1385 4.4846 -1.2107 5.4075 -0.0762 4.5368 -0.5469 -8.1644 3.3311 0.8083 2.0035 -2.2607 -5.3975 2.8751 11.6411 3.2777 -17.9804 -22.5947 -6.2186 0.0000 0.0000 13.4106 11.0259 -5.1173 -9.4039 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.3188 -4.6918 -0.6749 -26.0405 25.5946 11.0131 -0.0000 -0.0000 -7.5001 -7.9301 -19.4094 16.7426 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.9532 0.7245 -47.9180 -2.9335 0.0000 -0.0000 19.9025 -11.2784 39.0035 -40.4991 0.0000 -0.0000 -0.7285 -5.8159 17.5232 -5.8389 0.0000 -0.0000 1.1446 -5.6655 -21.1561 -6.1917 0.0000 -0.0000 - 0.8609 -2.8079 23.6305 -1.6947 -1.8797 178.9408 -0.8469 -2.1930 0.4421 -0.6277 -1.3526 -0.1361 4.4624 -1.2057 5.4443 -0.0797 4.5368 -0.5438 -8.1491 3.3497 0.8079 2.0412 -2.2607 -5.4082 2.8645 11.6392 3.2764 -17.9478 -22.6487 -6.2091 0.0000 0.0000 13.4043 11.0861 -5.1257 -9.5575 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3263 -4.6717 -0.6920 -26.0431 25.6673 10.9155 -0.0000 -0.0000 -7.4935 -7.9131 -19.4388 16.7472 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.9709 0.7379 -48.0002 -2.9316 0.0000 -0.0000 19.8978 -11.2262 39.0759 -40.2765 0.0000 -0.0000 -0.7500 -5.7965 17.5176 -5.8584 0.0000 -0.0000 1.1705 -5.6642 -21.1786 -6.1846 0.0000 -0.0000 - 0.8566 -2.8099 23.6306 -1.6977 -1.8833 178.9648 -0.8391 -2.2077 0.4397 -0.6240 -1.3547 -0.1308 4.4415 -1.2013 5.4813 -0.0832 4.5405 -0.5396 -8.1323 3.3698 0.8114 2.0801 -2.2617 -5.4159 2.8569 11.6350 3.2757 -17.9081 -22.6956 -6.1919 0.0000 0.0000 13.4028 11.1365 -5.1311 -9.6714 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.3344 -4.6443 -0.7066 -26.0544 25.7275 10.8224 -0.0000 -0.0000 -7.4854 -7.8936 -19.4724 16.7525 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.9673 0.7484 -48.0924 -2.9197 0.0000 -0.0000 19.8940 -11.2121 39.2001 -39.8664 0.0000 -0.0000 -0.7578 -5.7857 17.5148 -5.8785 0.0000 -0.0000 1.1973 -5.6622 -21.2007 -6.1732 0.0000 -0.0000 - 0.8520 -2.8113 23.6311 -1.7016 -1.8929 178.9838 -0.8390 -2.2334 0.4315 -0.6184 -1.3580 -0.1284 4.4241 -1.1966 5.5273 -0.0860 4.5473 -0.5372 -8.1156 3.3930 0.8177 2.1205 -2.2635 -5.4193 2.8543 11.6247 3.2765 -17.8577 -22.7283 -6.1630 0.0000 0.0000 13.4054 11.1664 -5.1337 -9.7109 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.3435 -4.6081 -0.7174 -26.0721 25.7756 10.7337 -0.0000 -0.0000 -7.4763 -7.8726 -19.5106 16.7560 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.9550 0.7617 -48.1947 -2.8930 0.0000 -0.0000 19.8918 -11.2440 39.3827 -39.2591 0.0000 -0.0000 -0.7654 -5.7801 17.5184 -5.8965 0.0000 -0.0000 1.2249 -5.6611 -21.2239 -6.1580 0.0000 -0.0000 - 0.8471 -2.8122 23.6319 -1.7049 -1.9109 178.9998 -0.8452 -2.2720 0.4154 -0.6106 -1.3621 -0.1283 4.4098 -1.1925 5.5791 -0.0877 4.5573 -0.5339 -8.0993 3.4182 0.8274 2.1617 -2.2659 -5.4191 2.8565 11.6061 3.2805 -17.7965 -22.7437 -6.1236 0.0000 0.0000 13.4115 11.1719 -5.1323 -9.6410 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3524 -4.5662 -0.7214 -26.0909 25.8161 10.6444 -0.0000 -0.0000 -7.4643 -7.8537 -19.5509 16.7567 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.9319 0.7757 -48.3032 -2.8508 0.0000 -0.0000 19.8915 -11.3274 39.6191 -38.4627 0.0000 -0.0000 -0.7710 -5.7825 17.5261 -5.9130 0.0000 -0.0000 1.2527 -5.6604 -21.2478 -6.1387 0.0000 -0.0000 - 0.8421 -2.8119 23.6330 -1.6823 -1.9418 179.0143 -0.8296 -2.3269 0.3902 -0.6011 -1.3650 -0.1293 4.3956 -1.1900 5.6372 -0.0890 4.5679 -0.5291 -8.0815 3.4472 0.8398 2.2034 -2.2681 -5.4156 2.8666 11.5852 3.2865 -17.7257 -22.7451 -6.0744 0.0000 0.0000 13.4189 11.1444 -5.1271 -9.4310 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.3601 -4.5228 -0.7247 -26.1095 25.8515 10.5620 -0.0000 -0.0000 -7.4519 -7.8366 -19.5904 16.7580 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.8696 0.7832 -48.4227 -2.8010 0.0000 -0.0000 19.9004 -11.4610 39.9100 -37.5043 0.0000 -0.0000 -0.7454 -5.7972 17.5319 -5.9329 0.0000 -0.0000 1.2801 -5.6595 -21.2663 -6.1151 0.0000 -0.0000 - 0.8368 -2.8109 23.6344 -1.6416 -1.9747 179.0212 -0.8003 -2.3864 0.3647 -0.5910 -1.3672 -0.1309 4.3835 -1.1906 5.7008 -0.0891 4.5785 -0.5297 -8.0646 3.4796 0.8587 2.2449 -2.2697 -5.4094 2.8814 11.5631 3.2963 -17.6431 -22.7335 -6.0100 0.0000 0.0000 13.4223 11.0778 -5.1158 -9.0596 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3634 -4.4769 -0.7095 -26.1174 25.8892 10.4626 -0.0000 -0.0000 -7.4318 -7.8261 -19.6301 16.7583 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.7809 0.7980 -48.5298 -2.7382 0.0000 -0.0000 19.9127 -11.6458 40.2323 -36.4332 0.0000 -0.0000 -0.6972 -5.8125 17.5435 -5.9535 0.0000 -0.0000 1.3079 -5.6593 -21.2807 -6.0893 0.0000 -0.0000 - 0.8311 -2.8097 23.6360 -1.6107 -2.0118 179.0250 -0.7870 -2.4521 0.3307 -0.5815 -1.3725 -0.1272 4.3781 -1.1889 5.7598 -0.0902 4.5861 -0.5211 -8.0466 3.5169 0.8772 2.2856 -2.2701 -5.4018 2.9032 11.5362 3.3063 -17.5582 -22.7039 -5.9395 0.0000 0.0000 13.4237 10.9688 -5.0997 -8.5186 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.3715 -4.4277 -0.7155 -26.1270 25.9111 10.3990 -0.0000 -0.0000 -7.4250 -7.8145 -19.6569 16.7608 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.6997 0.8165 -48.6413 -2.6603 0.0000 -0.0000 19.9304 -11.8651 40.5856 -35.3036 0.0000 -0.0000 -0.6615 -5.8329 17.5524 -5.9656 0.0000 -0.0000 1.3304 -5.6608 -21.2884 -6.0609 0.0000 -0.0000 - 0.8251 -2.8080 23.6376 -1.5726 -2.0463 179.0217 -0.7689 -2.5133 0.2992 -0.5718 -1.3799 -0.1242 4.3716 -1.1890 5.8203 -0.0887 4.5895 -0.5154 -8.0282 3.5600 0.9015 2.3236 -2.2718 -5.3921 2.9309 11.5090 3.3180 -17.4699 -22.6606 -5.8567 0.0000 0.0000 13.4174 10.8059 -5.0799 -7.8133 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3739 -4.3778 -0.7098 -26.1235 25.9347 10.3256 -0.0000 -0.0000 -7.4162 -7.8115 -19.6720 16.7669 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6102 0.8438 -48.7385 -2.5735 0.0000 -0.0000 19.9525 -12.1120 40.9438 -34.1753 0.0000 -0.0000 -0.6176 -5.8501 17.5644 -5.9732 0.0000 -0.0000 1.3496 -5.6630 -21.2904 -6.0320 0.0000 -0.0000 - 0.8192 -2.8058 23.6393 -1.5160 -2.0830 179.0154 -0.7375 -2.5748 0.2663 -0.5600 -1.3779 -0.1282 4.3687 -1.2063 5.8931 -0.0887 4.5949 -0.5120 -8.0075 3.6060 0.9265 2.3606 -2.2715 -5.3822 2.9642 11.4868 3.3329 -17.3888 -22.6092 -5.7756 0.0000 0.0000 13.4056 10.5871 -5.0627 -6.9681 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -3.3717 -4.3359 -0.7053 -26.1082 25.9644 10.2572 -0.0000 -0.0000 -7.4088 -7.8193 -19.6879 16.7659 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5020 0.8703 -48.8314 -2.4863 0.0000 -0.0000 19.9837 -12.3685 41.2985 -33.1032 0.0000 -0.0000 -0.5539 -5.8709 17.5660 -5.9754 0.0000 -0.0000 1.3620 -5.6653 -21.2763 -6.0022 0.0000 -0.0000 - 0.8130 -2.8038 23.6408 -1.4836 -2.1109 179.0025 -0.7326 -2.6267 0.2339 -0.5498 -1.3875 -0.1252 4.3667 -1.2046 5.9537 -0.0866 4.5869 -0.5012 -7.9875 3.6549 0.9525 2.3940 -2.2713 -5.3719 3.0008 11.4631 3.3432 -17.3129 -22.5478 -5.6853 0.0000 0.0000 13.3840 10.3074 -5.0461 -6.0212 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3672 -4.2925 -0.7014 -26.0806 25.9886 10.1886 -0.0000 -0.0000 -7.4048 -7.8312 -19.6873 16.7692 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.4273 0.9081 -48.9132 -2.3929 0.0000 -0.0000 20.0168 -12.6186 41.6302 -32.1345 0.0000 -0.0000 -0.5215 -5.8845 17.5711 -5.9613 0.0000 -0.0000 1.3650 -5.6686 -21.2589 -5.9738 0.0000 -0.0000 - 0.8067 -2.8013 23.6422 -1.4254 -2.1313 178.9839 -0.7010 -2.6663 0.2077 -0.5429 -1.3920 -0.1268 4.3660 -1.2141 6.0190 -0.0855 4.5767 -0.4916 -7.9640 3.7054 0.9791 2.4253 -2.2692 -5.3613 3.0401 11.4524 3.3551 -17.2497 -22.4893 -5.6018 0.0000 0.0000 13.3559 9.9685 -5.0356 -5.0238 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.3572 -4.2601 -0.6994 -26.0445 26.0195 10.1269 -0.0000 -0.0000 -7.4032 -7.8476 -19.6762 16.7709 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.3321 0.9512 -48.9791 -2.3056 0.0000 -0.0000 20.0532 -12.8518 41.9235 -31.3023 0.0000 -0.0000 -0.4624 -5.8914 17.5680 -5.9392 0.0000 -0.0000 1.3609 -5.6707 -21.2249 -5.9480 0.0000 -0.0000 - 0.8004 -2.7988 23.6433 -1.3759 -2.1457 178.9590 -0.6809 -2.6946 0.1878 -0.5342 -1.3992 -0.1250 4.3636 -1.2243 6.0784 -0.0825 4.5618 -0.4822 -7.9394 3.7555 1.0060 2.4535 -2.2668 -5.3511 3.0788 11.4510 3.3656 -17.1997 -22.4358 -5.5232 0.0000 0.0000 13.3228 9.5803 -5.0329 -4.0365 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.3436 -4.2336 -0.6979 -26.0009 26.0502 10.0676 -0.0000 -0.0000 -7.4045 -7.8664 -19.6566 16.7726 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.2562 0.9955 -49.0491 -2.2256 0.0000 -0.0000 20.0958 -13.0473 42.1869 -30.6256 0.0000 -0.0000 -0.4172 -5.8950 17.5660 -5.9015 0.0000 -0.0000 1.3447 -5.6717 -21.1853 -5.9249 0.0000 -0.0000 - 0.7940 -2.7966 23.6443 -1.3478 -2.1474 178.9277 -0.6846 -2.7083 0.1736 -0.5280 -1.4056 -0.1256 4.3657 -1.2366 6.1378 -0.0787 4.5460 -0.4724 -7.9138 3.8024 1.0317 2.4782 -2.2643 -5.3406 3.1142 11.4568 3.3757 -17.1628 -22.3882 -5.4536 0.0000 0.0000 13.2881 9.1640 -5.0386 -3.1189 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.3282 -4.2122 -0.6988 -25.9528 26.0773 10.0131 -0.0000 -0.0000 -7.4096 -7.8848 -19.6318 16.7744 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.2165 1.0510 -49.0999 -2.1444 0.0000 -0.0000 20.1317 -13.2063 42.3919 -30.1118 0.0000 -0.0000 -0.4023 -5.8887 17.5535 -5.8419 0.0000 -0.0000 1.3171 -5.6727 -21.1293 -5.9057 0.0000 -0.0000 - 0.7876 -2.7937 23.6452 -1.2970 -2.1411 178.8906 -0.6633 -2.7106 0.1653 -0.5248 -1.4121 -0.1256 4.3649 -1.2478 6.1944 -0.0742 4.5265 -0.4598 -7.8845 3.8456 1.0543 2.5005 -2.2615 -5.3299 3.1471 11.4827 3.3837 -17.1423 -22.3618 -5.4009 0.0000 0.0000 13.2563 8.7552 -5.0519 -2.3264 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.3068 -4.2036 -0.7009 -25.9064 26.1090 9.9623 -0.0000 -0.0000 -7.4137 -7.9006 -19.6051 16.7741 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.1608 1.1065 -49.1502 -2.0798 0.0000 -0.0000 20.1720 -13.3211 42.5574 -29.7524 0.0000 -0.0000 -0.3646 -5.8757 17.5418 -5.7728 0.0000 -0.0000 1.2806 -5.6706 -21.0668 -5.8909 0.0000 -0.0000 - 0.7812 -2.7911 23.6459 -1.2737 -2.1276 178.8483 -0.6744 -2.7049 0.1617 -0.5226 -1.4191 -0.1231 4.3692 -1.2577 6.2475 -0.0686 4.5091 -0.4485 -7.8556 3.8797 1.0735 2.5220 -2.2580 -5.3184 3.1717 11.5145 3.3891 -17.1290 -22.3483 -5.3590 0.0000 0.0000 13.2300 8.3962 -5.0679 -1.7056 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2870 -4.2022 -0.7036 -25.8625 26.1363 9.9141 -0.0000 -0.0000 -7.4157 -7.9086 -19.5841 16.7667 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.1440 1.1636 -49.1990 -2.0229 0.0000 -0.0000 20.2108 -13.3909 42.6821 -29.5302 0.0000 -0.0000 -0.3627 -5.8586 17.5253 -5.6841 0.0000 -0.0000 1.2327 -5.6673 -20.9962 -5.8801 0.0000 -0.0000 - 0.7747 -2.7878 23.6466 -1.2339 -2.1055 178.7979 -0.6683 -2.6893 0.1635 -0.5220 -1.4261 -0.1221 4.3714 -1.2661 6.3015 -0.0615 4.4922 -0.4366 -7.8239 3.9076 1.0893 2.5389 -2.2561 -5.3056 3.1897 11.5651 3.3943 -17.1231 -22.3584 -5.3337 0.0000 0.0000 13.2101 8.1232 -5.0896 -1.2689 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.2639 -4.2124 -0.7065 -25.8247 26.1629 9.8724 -0.0000 -0.0000 -7.4188 -7.9156 -19.5665 16.7661 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -1.1167 1.2243 -49.2464 -1.9760 0.0000 -0.0000 20.2500 -13.4240 42.7790 -29.4200 0.0000 -0.0000 -0.3439 -5.8335 17.5132 -5.5867 0.0000 -0.0000 1.1777 -5.6613 -20.9215 -5.8727 0.0000 -0.0000 - 0.7682 -2.7843 23.6471 -1.2108 -2.0810 178.7440 -0.6839 -2.6738 0.1657 -0.5224 -1.4324 -0.1193 4.3773 -1.2713 6.3534 -0.0528 4.4806 -0.4255 -7.7919 3.9228 1.1021 2.5559 -2.2532 -5.2912 3.1989 11.6213 3.3988 -17.1164 -22.3850 -5.3186 0.0000 0.0000 13.1970 7.9692 -5.1037 -1.0321 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2438 -4.2280 -0.7082 -25.7967 26.1795 9.8340 -0.0000 -0.0000 -7.4183 -7.9095 -19.5571 16.7615 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.1102 1.2812 -49.2989 -1.9402 0.0000 -0.0000 20.2909 -13.4246 42.8570 -29.3898 0.0000 -0.0000 -0.3456 -5.8080 17.4985 -5.4779 0.0000 -0.0000 1.1154 -5.6535 -20.8424 -5.8682 0.0000 -0.0000 - 0.7614 -2.7798 23.6477 -1.1665 -2.0488 178.6786 -0.6784 -2.6519 0.1743 -0.5247 -1.4394 -0.1177 4.3829 -1.2741 6.4091 -0.0434 4.4718 -0.4145 -7.7582 3.9319 1.1116 2.5729 -2.2506 -5.2754 3.2027 11.6916 3.4025 -17.1078 -22.4298 -5.3148 0.0000 0.0000 13.1924 7.9397 -5.1139 -0.9787 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2248 -4.2519 -0.7089 -25.7825 26.1937 9.8037 -0.0000 -0.0000 -7.4133 -7.8944 -19.5597 16.7531 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.0838 1.3448 -49.3420 -1.9089 0.0000 -0.0000 20.3291 -13.4085 42.9229 -29.4078 0.0000 -0.0000 -0.3198 -5.7725 17.5010 -5.3709 0.0000 -0.0000 1.0525 -5.6435 -20.7688 -5.8659 0.0000 -0.0000 - 0.7545 -2.7752 23.6483 -1.1466 -2.0197 178.6114 -0.7034 -2.6378 0.1777 -0.5269 -1.4461 -0.1140 4.3912 -1.2731 6.4656 -0.0305 4.4705 -0.4062 -7.7259 3.9296 1.1186 2.5895 -2.2493 -5.2577 3.1990 11.7576 3.4061 -17.0925 -22.4802 -5.3151 0.0000 0.0000 13.1945 8.0194 -5.1172 -1.0750 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.2116 -4.2775 -0.7078 -25.7806 26.1926 9.7787 -0.0000 -0.0000 -7.4056 -7.8699 -19.5719 16.7456 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.0812 1.4009 -49.3997 -1.8859 0.0000 -0.0000 20.3726 -13.3765 42.9977 -29.4418 0.0000 -0.0000 -0.3209 -5.7421 17.4955 -5.2575 0.0000 -0.0000 0.9854 -5.6334 -20.6881 -5.8626 0.0000 -0.0000 - 0.7472 -2.7693 23.6490 -1.0937 -1.9867 178.5337 -0.6945 -2.6231 0.1846 -0.5316 -1.4537 -0.1113 4.3982 -1.2701 6.5272 -0.0171 4.4750 -0.3986 -7.6922 3.9217 1.1233 2.6080 -2.2476 -5.2383 3.1923 11.8289 3.4099 -17.0698 -22.5377 -5.3190 0.0000 0.0000 13.2016 8.1746 -5.1169 -1.2760 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.2037 -4.3093 -0.7094 -25.7935 26.1839 9.7697 -0.0000 -0.0000 -7.3954 -7.8364 -19.5929 16.7363 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.0412 1.4626 -49.4515 -1.8645 0.0000 -0.0000 20.4152 -13.3462 43.0827 -29.4662 0.0000 -0.0000 -0.2772 -5.7034 17.5062 -5.1573 0.0000 -0.0000 0.9243 -5.6219 -20.6119 -5.8586 0.0000 -0.0000 - 0.7398 -2.7633 23.6496 -1.0790 -1.9571 178.4492 -0.7333 -2.6181 0.1881 -0.5340 -1.4605 -0.1093 4.4108 -1.2616 6.5910 -0.0014 4.4811 -0.3910 -7.6623 3.9103 1.1284 2.6270 -2.2480 -5.2176 3.1814 11.8882 3.4137 -17.0372 -22.5850 -5.3184 0.0000 0.0000 13.2125 8.3646 -5.1118 -1.5282 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.1991 -4.3282 -0.6970 -25.8104 26.1570 9.7439 -0.0000 -0.0000 -7.3757 -7.8010 -19.6226 16.7264 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.0379 1.5205 -49.4960 -1.8435 0.0000 -0.0000 20.4583 -13.3210 43.1751 -29.4626 0.0000 -0.0000 -0.2697 -5.6677 17.5293 -5.0617 0.0000 -0.0000 0.8656 -5.6114 -20.5441 -5.8513 0.0000 -0.0000 - 0.7319 -2.7562 23.6503 -1.0469 -1.9286 178.3576 -0.7546 -2.6177 0.1913 -0.5387 -1.4685 -0.1066 4.4225 -1.2521 6.6577 0.0157 4.4929 -0.3847 -7.6327 3.8962 1.1327 2.6484 -2.2486 -5.1955 3.1713 11.9383 3.4172 -16.9972 -22.6210 -5.3120 0.0000 0.0000 13.2240 8.5518 -5.1057 -1.7768 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2005 -4.3465 -0.6858 -25.8383 26.1177 9.7307 -0.0000 -0.0000 -7.3547 -7.7629 -19.6571 16.7161 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.0110 1.5794 -49.5386 -1.8225 0.0000 -0.0000 20.5025 -13.3066 43.2875 -29.4205 0.0000 -0.0000 -0.2324 -5.6288 17.5633 -4.9850 0.0000 -0.0000 0.8163 -5.6013 -20.4796 -5.8392 0.0000 -0.0000 - 0.7239 -2.7481 23.6510 -0.9954 -1.9043 178.2607 -0.7578 -2.6265 0.1916 -0.5429 -1.4741 -0.1043 4.4316 -1.2391 6.7292 0.0337 4.5034 -0.3811 -7.6051 3.8824 1.1386 2.6731 -2.2494 -5.1722 3.1607 11.9813 3.4217 -16.9508 -22.6454 -5.3003 0.0000 0.0000 13.2350 8.7078 -5.0967 -1.9728 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2089 -4.3608 -0.6672 -25.8669 26.0694 9.7167 -0.0000 -0.0000 -7.3293 -7.7264 -19.6926 16.7047 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.9565 1.6345 -49.5868 -1.8068 0.0000 -0.0000 20.5529 -13.3019 43.4261 -29.3384 0.0000 -0.0000 -0.1618 -5.5899 17.6012 -4.9310 0.0000 -0.0000 0.7783 -5.5918 -20.4127 -5.8215 0.0000 -0.0000 - 0.7155 -2.7398 23.6517 -0.9644 -1.8825 178.1584 -0.7824 -2.6358 0.1903 -0.5532 -1.4867 -0.0966 4.4468 -1.2298 6.7935 0.0522 4.5222 -0.3741 -7.5803 3.8685 1.1433 2.7003 -2.2512 -5.1473 3.1533 12.0001 3.4241 -16.8997 -22.6402 -5.2764 0.0000 0.0000 13.2431 8.8112 -5.0880 -2.0798 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.2263 -4.3690 -0.6557 -25.9041 26.0038 9.7233 -0.0000 -0.0000 -7.3108 -7.6892 -19.7271 16.6949 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.9217 1.6908 -49.6179 -1.7823 0.0000 -0.0000 20.5969 -13.3109 43.5653 -29.2236 0.0000 -0.0000 -0.1046 -5.5505 17.6550 -4.8931 0.0000 -0.0000 0.7489 -5.5842 -20.3572 -5.7959 0.0000 -0.0000 - 0.7070 -2.7308 23.6524 -0.9364 -1.8648 178.0556 -0.8157 -2.6540 0.1877 -0.5579 -1.4965 -0.0967 4.4606 -1.2179 6.8656 0.0704 4.5396 -0.3704 -7.5585 3.8572 1.1486 2.7305 -2.2542 -5.1216 3.1468 12.0032 3.4246 -16.8487 -22.6142 -5.2454 0.0000 0.0000 13.2499 8.8557 -5.0770 -2.0798 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.2482 -4.3693 -0.6389 -25.9379 25.9280 9.7261 -0.0000 -0.0000 -7.2901 -7.6591 -19.7581 16.6841 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.8843 1.7420 -49.6637 -1.7639 0.0000 -0.0000 20.6486 -13.3221 43.7288 -29.0878 0.0000 -0.0000 -0.0403 -5.5118 17.7053 -4.8765 0.0000 -0.0000 0.7307 -5.5787 -20.2974 -5.7621 0.0000 -0.0000 - 0.6983 -2.7214 23.6529 -0.9125 -1.8492 177.9519 -0.8511 -2.6728 0.1827 -0.5648 -1.5067 -0.0968 4.4705 -1.2084 6.9347 0.0905 4.5547 -0.3674 -7.5403 3.8486 1.1569 2.7643 -2.2565 -5.0951 3.1407 11.9896 3.4270 -16.7947 -22.5634 -5.2051 0.0000 0.0000 13.2508 8.8340 -5.0633 -1.9685 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.2768 -4.3622 -0.6156 -25.9665 25.8445 9.7311 -0.0000 -0.0000 -7.2737 -7.6338 -19.7857 16.6752 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.8482 1.7910 -49.7055 -1.7473 0.0000 -0.0000 20.7002 -13.3370 43.8943 -28.9469 0.0000 -0.0000 0.0304 -5.4716 17.7614 -4.8829 0.0000 -0.0000 0.7246 -5.5746 -20.2417 -5.7201 0.0000 -0.0000 - 0.6893 -2.7115 23.6533 -0.8872 -1.8362 177.8505 -0.8858 -2.6937 0.1800 -0.5717 -1.5177 -0.0983 4.4806 -1.2009 6.9978 0.1079 4.5709 -0.3639 -7.5239 3.8429 1.1641 2.8010 -2.2602 -5.0679 3.1354 11.9617 3.4270 -16.7483 -22.4934 -5.1637 0.0000 0.0000 13.2520 8.7572 -5.0496 -1.7695 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.3087 -4.3512 -0.5953 -25.9927 25.7534 9.7434 -0.0000 -0.0000 -7.2606 -7.6126 -19.8041 16.6679 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.8082 1.8371 -49.7484 -1.7336 0.0000 -0.0000 20.7518 -13.3503 44.0594 -28.8147 0.0000 -0.0000 0.1122 -5.4299 17.8222 -4.9117 0.0000 -0.0000 0.7290 -5.5716 -20.1920 -5.6690 0.0000 -0.0000 - 0.6803 -2.7016 23.6536 -0.8824 -1.8227 177.7531 -0.9402 -2.7116 0.1762 -0.5813 -1.5301 -0.0968 4.4911 -1.1954 7.0534 0.1256 4.5852 -0.3639 -7.5126 3.8393 1.1724 2.8406 -2.2646 -5.0402 3.1284 11.9186 3.4240 -16.7108 -22.4055 -5.1194 0.0000 0.0000 13.2548 8.6379 -5.0353 -1.5213 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.3433 -4.3327 -0.5652 -26.0083 25.6594 9.7453 -0.0000 -0.0000 -7.2487 -7.6000 -19.8191 16.6607 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.7889 1.8818 -49.7849 -1.7233 0.0000 -0.0000 20.8006 -13.3599 44.2096 -28.7050 0.0000 -0.0000 0.1782 -5.3859 17.8808 -4.9564 0.0000 -0.0000 0.7424 -5.5700 -20.1442 -5.6108 0.0000 -0.0000 - 0.6711 -2.6913 23.6537 -0.8711 -1.8105 177.6629 -0.9840 -2.7274 0.1721 -0.5929 -1.5424 -0.0946 4.4978 -1.1933 7.0979 0.1410 4.5994 -0.3627 -7.5032 3.8347 1.1802 2.8832 -2.2679 -5.0117 3.1167 11.8671 3.4217 -16.6789 -22.3089 -5.0785 0.0000 0.0000 13.2570 8.4994 -5.0188 -1.2659 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.3824 -4.3169 -0.5360 -26.0193 25.5672 9.7567 -0.0000 -0.0000 -7.2431 -7.5908 -19.8325 16.6541 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.7611 1.9228 -49.8237 -1.7195 0.0000 -0.0000 20.8477 -13.3613 44.3489 -28.6251 0.0000 -0.0000 0.2578 -5.3402 17.9371 -5.0186 0.0000 -0.0000 0.7634 -5.5687 -20.1001 -5.5446 0.0000 -0.0000 - 0.6619 -2.6811 23.6537 -0.8850 -1.7988 177.5812 -1.0552 -2.7421 0.1732 -0.6007 -1.5549 -0.1010 4.5022 -1.1918 7.1360 0.1549 4.6125 -0.3628 -7.4971 3.8303 1.1869 2.9272 -2.2730 -4.9837 3.0973 11.8096 3.4164 -16.6582 -22.2107 -5.0458 0.0000 0.0000 13.2652 8.3756 -4.9974 -1.0622 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4245 -4.2949 -0.5074 -26.0245 25.4689 9.7696 -0.0000 -0.0000 -7.2436 -7.5828 -19.8413 16.6514 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.7591 1.9594 -49.8690 -1.7222 0.0000 -0.0000 20.8941 -13.3505 44.4770 -28.5784 0.0000 -0.0000 0.3137 -5.2936 18.0044 -5.0923 0.0000 -0.0000 0.7885 -5.5671 -20.0765 -5.4730 0.0000 -0.0000 - 0.6525 -2.6704 23.6535 -0.8759 -1.7831 177.5089 -1.0942 -2.7483 0.1743 -0.6144 -1.5663 -0.1016 4.5020 -1.1970 7.1588 0.1657 4.6287 -0.3643 -7.4923 3.8221 1.1929 2.9743 -2.2771 -4.9550 3.0707 11.7528 3.4127 -16.6443 -22.1178 -5.0233 0.0000 0.0000 13.2771 8.2998 -4.9710 -0.9605 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4672 -4.2803 -0.4765 -26.0254 25.3791 9.7869 -0.0000 -0.0000 -7.2478 -7.5755 -19.8508 16.6508 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7318 1.9994 -49.9063 -1.7302 0.0000 -0.0000 20.9340 -13.3363 44.5821 -28.5638 0.0000 -0.0000 0.3978 -5.2394 18.0652 -5.1787 0.0000 -0.0000 0.8193 -5.5651 -20.0544 -5.3975 0.0000 -0.0000 - 0.6431 -2.6600 23.6532 -0.8935 -1.7688 177.4499 -1.1599 -2.7545 0.1764 -0.6270 -1.5789 -0.1049 4.5019 -1.2004 7.1710 0.1739 4.6470 -0.3678 -7.4906 3.8079 1.1947 3.0209 -2.2825 -4.9264 3.0342 11.6888 3.4054 -16.6439 -22.0293 -5.0152 0.0000 0.0000 13.3012 8.3134 -4.9399 -1.0119 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5118 -4.2661 -0.4459 -26.0220 25.2892 9.8032 -0.0000 -0.0000 -7.2549 -7.5681 -19.8653 16.6514 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7308 2.0330 -49.9493 -1.7458 0.0000 -0.0000 20.9716 -13.3121 44.6722 -28.5749 0.0000 -0.0000 0.4516 -5.1876 18.1255 -5.2666 0.0000 -0.0000 0.8491 -5.5622 -20.0469 -5.3194 0.0000 -0.0000 - 0.6335 -2.6496 23.6528 -0.9106 -1.7517 177.4013 -1.2218 -2.7551 0.1806 -0.6384 -1.5898 -0.1082 4.4966 -1.2080 7.1714 0.1800 4.6668 -0.3731 -7.4918 3.7890 1.1953 3.0690 -2.2863 -4.8990 2.9844 11.6331 3.3980 -16.6493 -21.9601 -5.0225 0.0000 0.0000 13.3330 8.4360 -4.8964 -1.2444 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.5569 -4.2532 -0.4128 -26.0168 25.2037 9.8188 -0.0000 -0.0000 -7.2630 -7.5576 -19.8834 16.6545 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.7273 2.0670 -49.9949 -1.7682 0.0000 -0.0000 21.0062 -13.2830 44.7513 -28.6039 0.0000 -0.0000 0.5057 -5.1311 18.1956 -5.3590 0.0000 -0.0000 0.8789 -5.5579 -20.0601 -5.2406 0.0000 -0.0000 - 0.6239 -2.6391 23.6524 -0.9301 -1.7341 177.3654 -1.2816 -2.7538 0.1850 -0.6503 -1.6000 -0.1130 4.4880 -1.2161 7.1606 0.1830 4.6900 -0.3791 -7.4942 3.7639 1.1933 3.1166 -2.2913 -4.8725 2.9252 11.5773 3.3904 -16.6602 -21.9025 -5.0438 0.0000 0.0000 13.3729 8.6706 -4.8452 -1.6725 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.6024 -4.2420 -0.3803 -26.0087 25.1194 9.8339 -0.0000 -0.0000 -7.2724 -7.5475 -19.9066 16.6594 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.7227 2.0985 -50.0421 -1.7984 0.0000 -0.0000 21.0387 -13.2527 44.8192 -28.6409 0.0000 -0.0000 0.5554 -5.0734 18.2709 -5.4521 0.0000 -0.0000 0.9070 -5.5522 -20.0927 -5.1638 0.0000 -0.0000 - 0.6141 -2.6286 23.6519 -0.9492 -1.7137 177.3397 -1.3359 -2.7497 0.1914 -0.6629 -1.6092 -0.1162 4.4766 -1.2254 7.1389 0.1830 4.7184 -0.3891 -7.4986 3.7314 1.1893 3.1636 -2.2961 -4.8475 2.8549 11.5230 3.3838 -16.6752 -21.8595 -5.0795 0.0000 0.0000 13.4204 8.9974 -4.7864 -2.2927 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.6478 -4.2322 -0.3468 -26.0009 25.0365 9.8475 -0.0000 -0.0000 -7.2815 -7.5325 -19.9362 16.6680 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.7158 2.1324 -50.0851 -1.8309 0.0000 -0.0000 21.0653 -13.2255 44.8759 -28.6774 0.0000 -0.0000 0.6020 -5.0122 18.3493 -5.5420 0.0000 -0.0000 0.9323 -5.5452 -20.1398 -5.0899 0.0000 -0.0000 - 0.6044 -2.6183 23.6514 -0.9706 -1.6938 177.3265 -1.3886 -2.7443 0.1944 -0.6746 -1.6169 -0.1225 4.4611 -1.2351 7.1098 0.1805 4.7464 -0.3960 -7.5045 3.6959 1.1820 3.2093 -2.3013 -4.8244 2.7789 11.4669 3.3772 -16.6942 -21.8217 -5.1284 0.0000 0.0000 13.4746 9.3868 -4.7281 -3.0801 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.6923 -4.2218 -0.3140 -25.9946 24.9568 9.8591 -0.0000 -0.0000 -7.2895 -7.5208 -19.9720 16.6756 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7066 2.1631 -50.1287 -1.8706 0.0000 -0.0000 21.0900 -13.2019 44.9257 -28.7053 0.0000 -0.0000 0.6426 -4.9514 18.4362 -5.6292 0.0000 -0.0000 0.9544 -5.5365 -20.2096 -5.0215 0.0000 -0.0000 - 0.5945 -2.6081 23.6508 -0.9926 -1.6721 177.3205 -1.4376 -2.7377 0.1998 -0.6857 -1.6241 -0.1273 4.4432 -1.2448 7.0734 0.1752 4.7779 -0.4074 -7.5121 3.6567 1.1742 3.2533 -2.3067 -4.8041 2.6968 11.4090 3.3716 -16.7134 -21.7907 -5.1846 0.0000 0.0000 13.5300 9.8003 -4.6690 -3.9923 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7356 -4.2052 -0.2806 -25.9884 24.8717 9.8647 -0.0000 -0.0000 -7.2954 -7.5082 -20.0092 16.6860 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.6957 2.1950 -50.1724 -1.9126 0.0000 -0.0000 21.1123 -13.1828 44.9750 -28.7218 0.0000 -0.0000 0.6794 -4.8883 18.5330 -5.7125 0.0000 -0.0000 0.9740 -5.5266 -20.2981 -4.9598 0.0000 -0.0000 - 0.5846 -2.5981 23.6503 -1.0152 -1.6498 177.3216 -1.4832 -2.7305 0.2051 -0.6960 -1.6307 -0.1320 4.4224 -1.2546 7.0316 0.1677 4.8101 -0.4202 -7.5211 3.6163 1.1656 3.2953 -2.3123 -4.7868 2.6137 11.3452 3.3671 -16.7318 -21.7573 -5.2452 0.0000 0.0000 13.5836 10.2016 -4.6147 -4.9743 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.7773 -4.1810 -0.2469 -25.9830 24.7820 9.8636 -0.0000 -0.0000 -7.2988 -7.4980 -20.0464 16.6972 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6827 2.2270 -50.2154 -1.9571 0.0000 -0.0000 21.1325 -13.1688 45.0232 -28.7258 0.0000 -0.0000 0.7120 -4.8244 18.6382 -5.7916 0.0000 -0.0000 0.9914 -5.5156 -20.4036 -4.9059 0.0000 -0.0000 - 0.5748 -2.5884 23.6499 -1.0380 -1.6273 177.3294 -1.5250 -2.7232 0.2102 -0.7052 -1.6367 -0.1374 4.3986 -1.2642 6.9852 0.1581 4.8424 -0.4330 -7.5312 3.5758 1.1565 3.3351 -2.3180 -4.7723 2.5324 11.2727 3.3645 -16.7484 -21.7154 -5.3084 0.0000 0.0000 13.6327 10.5650 -4.5681 -5.9648 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.8174 -4.1492 -0.2148 -25.9799 24.6871 9.8582 -0.0000 -0.0000 -7.3009 -7.4930 -20.0808 16.7084 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6682 2.2589 -50.2548 -2.0023 0.0000 -0.0000 21.1496 -13.1605 45.0673 -28.7192 0.0000 -0.0000 0.7404 -4.7607 18.7472 -5.8654 0.0000 -0.0000 1.0070 -5.5037 -20.5208 -4.8606 0.0000 -0.0000 - 0.5650 -2.5790 23.6494 -1.0609 -1.6047 177.3414 -1.5635 -2.7153 0.2152 -0.7135 -1.6423 -0.1427 4.3729 -1.2740 6.9362 0.1468 4.8732 -0.4464 -7.5422 3.5375 1.1475 3.3727 -2.3238 -4.7610 2.4560 11.1901 3.3631 -16.7602 -21.6607 -5.3692 0.0000 0.0000 13.6734 10.8738 -4.5302 -6.9034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.8551 -4.1072 -0.1833 -25.9786 24.5861 9.8457 -0.0000 -0.0000 -7.3014 -7.4934 -20.1096 16.7191 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.6527 2.2908 -50.2929 -2.0480 0.0000 -0.0000 21.1652 -13.1555 45.1101 -28.7071 0.0000 -0.0000 0.7657 -4.6970 18.8599 -5.9357 0.0000 -0.0000 1.0225 -5.4910 -20.6470 -4.8245 0.0000 -0.0000 - 0.5553 -2.5699 23.6489 -1.0837 -1.5821 177.3566 -1.5989 -2.7068 0.2204 -0.7210 -1.6478 -0.1476 4.3456 -1.2840 6.8857 0.1339 4.9019 -0.4601 -7.5537 3.5021 1.1388 3.4080 -2.3295 -4.7528 2.3872 11.0974 3.3629 -16.7666 -21.5909 -5.4255 0.0000 0.0000 13.7039 11.1212 -4.5015 -7.7378 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.8901 -4.0549 -0.1528 -25.9794 24.4790 9.8261 -0.0000 -0.0000 -7.3008 -7.4989 -20.1304 16.7296 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.6373 2.3228 -50.3292 -2.0931 0.0000 -0.0000 21.1794 -13.1524 45.1503 -28.6952 0.0000 -0.0000 0.7884 -4.6337 18.9727 -6.0027 0.0000 -0.0000 1.0387 -5.4777 -20.7768 -4.7972 0.0000 -0.0000 - 0.5458 -2.5611 23.6485 -1.1060 -1.5602 177.3747 -1.6312 -2.6976 0.2252 -0.7274 -1.6532 -0.1532 4.3166 -1.2942 6.8341 0.1201 4.9274 -0.4728 -7.5654 3.4698 1.1303 3.4413 -2.3349 -4.7469 2.3274 10.9941 3.3642 -16.7664 -21.5041 -5.4769 0.0000 0.0000 13.7241 11.3074 -4.4831 -8.4290 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.9231 -3.9955 -0.1248 -25.9839 24.3688 9.8041 -0.0000 -0.0000 -7.3012 -7.5102 -20.1423 16.7387 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.6224 2.3545 -50.3625 -2.1364 0.0000 -0.0000 21.1916 -13.1503 45.1844 -28.6892 0.0000 -0.0000 0.8087 -4.5722 19.0793 -6.0660 0.0000 -0.0000 1.0561 -5.4638 -20.9036 -4.7786 0.0000 -0.0000 - 0.5365 -2.5528 23.6481 -1.1277 -1.5384 177.3938 -1.6608 -2.6877 0.2309 -0.7332 -1.6585 -0.1580 4.2869 -1.3048 6.7826 0.1056 4.9508 -0.4858 -7.5767 3.4399 1.1221 3.4729 -2.3394 -4.7432 2.2776 10.8827 3.3658 -16.7591 -21.4041 -5.5215 0.0000 0.0000 13.7337 11.4370 -4.4737 -8.9554 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.9536 -3.9283 -0.0989 -25.9917 24.2540 9.7774 -0.0000 -0.0000 -7.3027 -7.5251 -20.1431 16.7477 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6090 2.3868 -50.3932 -2.1766 0.0000 -0.0000 21.2025 -13.1479 45.2127 -28.6941 0.0000 -0.0000 0.8271 -4.5118 19.1771 -6.1263 0.0000 -0.0000 1.0756 -5.4496 -21.0225 -4.7675 0.0000 -0.0000 - 0.5273 -2.5448 23.6476 -1.1486 -1.5171 177.4139 -1.6885 -2.6764 0.2358 -0.7383 -1.6637 -0.1628 4.2566 -1.3162 6.7321 0.0907 4.9696 -0.4973 -7.5866 3.4144 1.1140 3.5026 -2.3444 -4.7415 2.2391 10.7657 3.3674 -16.7437 -21.2915 -5.5594 0.0000 0.0000 13.7339 11.5155 -4.4750 -9.3109 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.9817 -3.8574 -0.0761 -26.0044 24.1408 9.7503 -0.0000 -0.0000 -7.3058 -7.5415 -20.1351 16.7543 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.5973 2.4194 -50.4216 -2.2133 0.0000 -0.0000 21.2121 -13.1449 45.2340 -28.7124 0.0000 -0.0000 0.8439 -4.4535 19.2620 -6.1833 0.0000 -0.0000 1.0969 -5.4352 -21.1292 -4.7629 0.0000 -0.0000 - 0.5184 -2.5372 23.6472 -1.1683 -1.4966 177.4350 -1.7144 -2.6641 0.2395 -0.7426 -1.6681 -0.1680 4.2260 -1.3279 6.6832 0.0758 4.9835 -0.5069 -7.5946 3.3920 1.1057 3.5312 -2.3490 -4.7413 2.2115 10.6457 3.3684 -16.7215 -21.1707 -5.5909 0.0000 0.0000 13.7264 11.5509 -4.4867 -9.5073 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.0080 -3.7860 -0.0569 -26.0226 24.0314 9.7255 -0.0000 -0.0000 -7.3120 -7.5573 -20.1176 16.7592 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5873 2.4523 -50.4482 -2.2457 0.0000 -0.0000 21.2214 -13.1416 45.2483 -28.7442 0.0000 -0.0000 0.8592 -4.3977 19.3307 -6.2368 0.0000 -0.0000 1.1198 -5.4201 -21.2201 -4.7632 0.0000 -0.0000 - 0.5096 -2.5300 23.6468 -1.1869 -1.4762 177.4549 -1.7392 -2.6523 0.2444 -0.7464 -1.6727 -0.1714 4.1960 -1.3390 6.6358 0.0614 4.9970 -0.5178 -7.6005 3.3693 1.0971 3.5589 -2.3527 -4.7420 2.1925 10.5272 3.3673 -16.6934 -21.0524 -5.6167 0.0000 0.0000 13.7127 11.5561 -4.5044 -9.5682 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.0319 -3.7148 -0.0406 -26.0446 23.9234 9.6992 -0.0000 -0.0000 -7.3197 -7.5705 -20.0911 16.7648 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.5799 2.4871 -50.4729 -2.2720 0.0000 -0.0000 21.2301 -13.1383 45.2574 -28.7876 0.0000 -0.0000 0.8729 -4.3440 19.3814 -6.2852 0.0000 -0.0000 1.1432 -5.4050 -21.2914 -4.7674 0.0000 -0.0000 - 0.5012 -2.5231 23.6464 -1.2033 -1.4575 177.4765 -1.7629 -2.6395 0.2453 -0.7490 -1.6755 -0.1766 4.1658 -1.3500 6.5908 0.0473 5.0024 -0.5238 -7.6027 3.3500 1.0880 3.5862 -2.3569 -4.7432 2.1844 10.4124 3.3644 -16.6602 -20.9338 -5.6373 0.0000 0.0000 13.6947 11.5353 -4.5330 -9.5260 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.0543 -3.6505 -0.0295 -26.0737 23.8281 9.6824 -0.0000 -0.0000 -7.3315 -7.5782 -20.0620 16.7667 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.5728 2.5214 -50.4985 -2.2933 0.0000 -0.0000 21.2390 -13.1364 45.2619 -28.8377 0.0000 -0.0000 0.8858 -4.2944 19.4136 -6.3288 0.0000 -0.0000 1.1662 -5.3889 -21.3455 -4.7735 0.0000 -0.0000 - 0.4929 -2.5165 23.6460 -1.2175 -1.4388 177.4966 -1.7854 -2.6279 0.2461 -0.7511 -1.6776 -0.1801 4.1365 -1.3596 6.5481 0.0341 5.0075 -0.5306 -7.6013 3.3292 1.0781 3.6132 -2.3608 -4.7445 2.1829 10.3054 3.3582 -16.6235 -20.8280 -5.6538 0.0000 0.0000 13.6740 11.5038 -4.5659 -9.4185 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.0745 -3.5926 -0.0217 -26.1066 23.7399 9.6678 -0.0000 -0.0000 -7.3444 -7.5798 -20.0278 16.7687 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.5667 2.5583 -50.5226 -2.3072 0.0000 -0.0000 21.2474 -13.1374 45.2640 -28.8909 0.0000 -0.0000 0.8974 -4.2471 19.4274 -6.3650 0.0000 -0.0000 1.1870 -5.3729 -21.3795 -4.7807 0.0000 -0.0000 - 0.4849 -2.5103 23.6457 -1.2292 -1.4207 177.5159 -1.8071 -2.6176 0.2449 -0.7524 -1.6782 -0.1831 4.1082 -1.3677 6.5079 0.0219 5.0102 -0.5365 -7.5958 3.3073 1.0674 3.6401 -2.3648 -4.7455 2.1869 10.2090 3.3487 -16.5852 -20.7377 -5.6670 0.0000 0.0000 13.6522 11.4681 -4.6030 -9.2821 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.0928 -3.5446 -0.0174 -26.1429 23.6635 9.6586 -0.0000 -0.0000 -7.3584 -7.5737 -19.9938 16.7707 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.5608 2.5970 -50.5469 -2.3140 0.0000 -0.0000 21.2558 -13.1420 45.2661 -28.9405 0.0000 -0.0000 0.9080 -4.2029 19.4250 -6.3929 0.0000 -0.0000 1.2039 -5.3568 -21.3966 -4.7874 0.0000 -0.0000 - 0.4770 -2.5043 23.6454 -1.2379 -1.4031 177.5334 -1.8289 -2.6103 0.2420 -0.7516 -1.6776 -0.1841 4.0802 -1.3725 6.4701 0.0114 5.0116 -0.5426 -7.5862 3.2830 1.0560 3.6676 -2.3685 -4.7457 2.1936 10.1263 3.3345 -16.5464 -20.6698 -5.6766 0.0000 0.0000 13.6302 11.4384 -4.6399 -9.1499 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.1084 -3.5055 -0.0149 -26.1795 23.5968 9.6496 -0.0000 -0.0000 -7.3712 -7.5623 -19.9592 16.7734 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.5540 2.6370 -50.5744 -2.3149 0.0000 -0.0000 21.2653 -13.1496 45.2735 -28.9821 0.0000 -0.0000 0.9179 -4.1617 19.4091 -6.4125 0.0000 -0.0000 1.2158 -5.3408 -21.3985 -4.7920 0.0000 -0.0000 - 0.4693 -2.4985 23.6452 -1.2431 -1.3855 177.5501 -1.8491 -2.6045 0.2361 -0.7508 -1.6747 -0.1853 4.0538 -1.3760 6.4347 0.0019 5.0118 -0.5470 -7.5717 3.2564 1.0435 3.6953 -2.3723 -4.7444 2.2034 10.0545 3.3180 -16.5096 -20.6194 -5.6851 0.0000 0.0000 13.6099 11.4174 -4.6795 -9.0468 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.1213 -3.4800 -0.0168 -26.2187 23.5440 9.6497 -0.0000 -0.0000 -7.3850 -7.5457 -19.9293 16.7736 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.5461 2.6797 -50.5989 -2.3075 0.0000 -0.0000 21.2718 -13.1629 45.2803 -29.0118 0.0000 -0.0000 0.9264 -4.1229 19.3832 -6.4206 0.0000 -0.0000 1.2204 -5.3255 -21.3901 -4.7942 0.0000 -0.0000 - 0.4618 -2.4931 23.6450 -1.2431 -1.3680 177.5651 -1.8642 -2.5974 0.2301 -0.7545 -1.6711 -0.1888 4.0324 -1.3817 6.4003 -0.0067 5.0133 -0.5499 -7.5527 3.2271 1.0312 3.7239 -2.3756 -4.7409 2.2127 9.9959 3.3039 -16.4782 -20.5885 -5.6993 0.0000 0.0000 13.5944 11.4093 -4.7198 -8.9877 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.1337 -3.4698 -0.0231 -26.2578 23.5057 9.6619 -0.0000 -0.0000 -7.4006 -7.5266 -19.9034 16.7716 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.5353 2.7252 -50.6176 -2.2913 0.0000 -0.0000 21.2734 -13.1812 45.2852 -29.0287 0.0000 -0.0000 0.9348 -4.0862 19.3617 -6.4164 0.0000 -0.0000 1.2154 -5.3100 -21.3854 -4.7934 0.0000 -0.0000 - 0.4545 -2.4878 23.6449 -1.2403 -1.3511 177.5788 -1.8831 -2.5962 0.2187 -0.7507 -1.6644 -0.1884 4.0089 -1.3803 6.3681 -0.0130 5.0101 -0.5530 -7.5303 3.1968 1.0183 3.7530 -2.3790 -4.7351 2.2216 9.9512 3.2809 -16.4494 -20.5813 -5.7042 0.0000 0.0000 13.5792 11.4126 -4.7562 -8.9793 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.1408 -3.4662 -0.0278 -26.2912 23.4760 9.6666 -0.0000 -0.0000 -7.4109 -7.5083 -19.8821 16.7715 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.5223 2.7701 -50.6461 -2.2731 0.0000 -0.0000 21.2765 -13.1980 45.3034 -29.0335 0.0000 -0.0000 0.9430 -4.0522 19.3298 -6.4042 0.0000 -0.0000 1.2041 -5.2958 -21.3692 -4.7889 0.0000 -0.0000 - 0.4474 -2.4825 23.6450 -1.2226 -1.3341 177.5895 -1.8863 -2.5933 0.2092 -0.7523 -1.6575 -0.1902 3.9900 -1.3820 6.3361 -0.0183 5.0095 -0.5551 -7.5041 3.1646 1.0058 3.7832 -2.3810 -4.7262 2.2271 9.9211 3.2604 -16.4293 -20.5944 -5.7163 0.0000 0.0000 13.5703 11.4274 -4.7899 -9.0167 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.1469 -3.4758 -0.0351 -26.3197 23.4580 9.6787 -0.0000 -0.0000 -7.4207 -7.4925 -19.8636 16.7700 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.4954 2.8168 -50.6685 -2.2499 0.0000 -0.0000 21.2742 -13.2164 45.3210 -29.0290 0.0000 -0.0000 0.9636 -4.0186 19.3106 -6.3841 0.0000 -0.0000 1.1847 -5.2815 -21.3632 -4.7813 0.0000 -0.0000 - 0.4405 -2.4773 23.6451 -1.1906 -1.3176 177.5984 -1.8783 -2.5943 0.1958 -0.7481 -1.6471 -0.1900 3.9676 -1.3798 6.3068 -0.0216 5.0052 -0.5588 -7.4749 3.1319 0.9946 3.8143 -2.3821 -4.7141 2.2318 9.8987 3.2370 -16.4120 -20.6194 -5.7209 0.0000 0.0000 13.5613 11.4433 -4.8211 -9.0880 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.1472 -3.4920 -0.0404 -26.3427 23.4472 9.6868 -0.0000 -0.0000 -7.4264 -7.4850 -19.8495 16.7660 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.4543 2.8628 -50.6910 -2.2252 0.0000 -0.0000 21.2682 -13.2321 45.3418 -29.0187 0.0000 -0.0000 0.9961 -3.9866 19.2909 -6.3560 0.0000 -0.0000 1.1579 -5.2683 -21.3550 -4.7703 0.0000 -0.0000 - 0.4338 -2.4728 23.6452 -1.1808 -1.3010 177.6036 -1.8965 -2.5913 0.1854 -0.7507 -1.6418 -0.1904 3.9583 -1.3809 6.2706 -0.0239 5.0040 -0.5589 -7.4456 3.0997 0.9853 3.8457 -2.3827 -4.6985 2.2298 9.8818 3.2168 -16.4023 -20.6529 -5.7295 0.0000 0.0000 13.5579 11.4628 -4.8464 -9.1785 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.1484 -3.5089 -0.0459 -26.3570 23.4355 9.6958 -0.0000 -0.0000 -7.4331 -7.4854 -19.8358 16.7621 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.4394 2.9078 -50.7143 -2.1969 0.0000 -0.0000 21.2579 -13.2399 45.3660 -29.0080 0.0000 -0.0000 1.0012 -3.9564 19.2930 -6.3197 0.0000 -0.0000 1.1240 -5.2562 -21.3662 -4.7562 0.0000 -0.0000 - 0.4274 -2.4684 23.6454 -1.1624 -1.2837 177.6073 -1.9094 -2.5909 0.1726 -0.7484 -1.6324 -0.1905 3.9467 -1.3807 6.2377 -0.0237 5.0006 -0.5609 -7.4159 3.0683 0.9769 3.8779 -2.3824 -4.6788 2.2278 9.8648 3.1935 -16.4002 -20.6864 -5.7322 0.0000 0.0000 13.5579 11.4770 -4.8715 -9.2726 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.1476 -3.5289 -0.0503 -26.3640 23.4270 9.7015 -0.0000 -0.0000 -7.4370 -7.4954 -19.8266 16.7573 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -0.4170 2.9527 -50.7336 -2.1678 0.0000 -0.0000 21.2415 -13.2423 45.3869 -29.0016 0.0000 -0.0000 1.0123 -3.9264 19.2970 -6.2772 0.0000 -0.0000 1.0847 -5.2455 -21.3779 -4.7393 0.0000 -0.0000 - 0.4213 -2.4637 23.6456 -1.1152 -1.2696 177.6083 -1.8926 -2.5905 0.1627 -0.7484 -1.6239 -0.1936 3.9384 -1.3832 6.2054 -0.0235 4.9983 -0.5636 -7.3855 3.0376 0.9703 3.9111 -2.3787 -4.6560 2.2221 9.8552 3.1726 -16.4029 -20.7265 -5.7350 0.0000 0.0000 13.5591 11.4853 -4.8908 -9.3514 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1458 -3.5573 -0.0531 -26.3656 23.4248 9.7094 -0.0000 -0.0000 -7.4398 -7.5119 -19.8171 16.7495 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.3635 2.9918 -50.7520 -2.1447 0.0000 -0.0000 21.2229 -13.2372 45.4084 -29.0016 0.0000 -0.0000 1.0564 -3.8983 19.3140 -6.2393 0.0000 -0.0000 1.0443 -5.2341 -21.3989 -4.7208 0.0000 -0.0000 - 0.4153 -2.4596 23.6459 -1.0844 -1.2516 177.6055 -1.8945 -2.5872 0.1511 -0.7481 -1.6147 -0.1921 3.9326 -1.3861 6.1707 -0.0210 4.9929 -0.5646 -7.3567 3.0106 0.9646 3.9447 -2.3734 -4.6298 2.2170 9.8363 3.1505 -16.4128 -20.7507 -5.7340 0.0000 0.0000 13.5659 11.4856 -4.9114 -9.4093 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.1441 -3.5726 -0.0563 -26.3595 23.4095 9.7102 -0.0000 -0.0000 -7.4417 -7.5384 -19.8060 16.7432 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.3304 3.0339 -50.7600 -2.1193 0.0000 -0.0000 21.1977 -13.2266 45.4207 -29.0124 0.0000 -0.0000 1.0802 -3.8678 19.3334 -6.1963 0.0000 -0.0000 1.0023 -5.2252 -21.4187 -4.7009 0.0000 -0.0000 - 0.4096 -2.4559 23.6461 -1.0595 -1.2363 177.5993 -1.9042 -2.5829 0.1427 -0.7496 -1.6093 -0.1932 3.9330 -1.3923 6.1345 -0.0175 4.9897 -0.5652 -7.3307 2.9873 0.9625 3.9778 -2.3698 -4.6012 2.2104 9.8144 3.1306 -16.4271 -20.7681 -5.7308 0.0000 0.0000 13.5742 11.4775 -4.9259 -9.4331 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.1453 -3.5876 -0.0549 -26.3503 23.3938 9.7097 -0.0000 -0.0000 -7.4438 -7.5665 -19.7959 16.7366 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.3042 3.0701 -50.7715 -2.0982 0.0000 -0.0000 21.1727 -13.2056 45.4366 -29.0332 0.0000 -0.0000 1.0996 -3.8400 19.3629 -6.1577 0.0000 -0.0000 0.9614 -5.2166 -21.4453 -4.6800 0.0000 -0.0000 - 0.4043 -2.4521 23.6463 -1.0141 -1.2214 177.5896 -1.8928 -2.5802 0.1352 -0.7490 -1.6010 -0.1942 3.9337 -1.3984 6.1008 -0.0147 4.9845 -0.5665 -7.3065 2.9650 0.9614 4.0115 -2.3626 -4.5703 2.2036 9.7897 3.1092 -16.4430 -20.7778 -5.7210 0.0000 0.0000 13.5815 11.4646 -4.9364 -9.4244 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.1491 -3.6029 -0.0535 -26.3406 23.3762 9.7124 -0.0000 -0.0000 -7.4475 -7.5952 -19.7849 16.7316 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.2569 3.1044 -50.7722 -2.0806 0.0000 -0.0000 21.1449 -13.1832 45.4441 -29.0620 0.0000 -0.0000 1.1431 -3.8120 19.3908 -6.1241 0.0000 -0.0000 0.9230 -5.2086 -21.4655 -4.6592 0.0000 -0.0000 - 0.3992 -2.4491 23.6464 -1.0013 -1.2087 177.5758 -1.9163 -2.5764 0.1284 -0.7520 -1.5996 -0.1947 3.9433 -1.4057 6.0669 -0.0108 4.9818 -0.5670 -7.2864 2.9458 0.9621 4.0442 -2.3564 -4.5388 2.1964 9.7526 3.0890 -16.4620 -20.7694 -5.7099 0.0000 0.0000 13.5926 11.4477 -4.9436 -9.3889 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.1573 -3.6043 -0.0480 -26.3280 23.3443 9.7054 -0.0000 -0.0000 -7.4499 -7.6243 -19.7727 16.7271 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.2444 3.1322 -50.7766 -2.0681 0.0000 -0.0000 21.1217 -13.1532 45.4561 -29.0971 0.0000 -0.0000 1.1544 -3.7877 19.4180 -6.0966 0.0000 -0.0000 0.8891 -5.2023 -21.4814 -4.6389 0.0000 -0.0000 - 0.3945 -2.4460 23.6464 -0.9650 -1.1973 177.5566 -1.9098 -2.5698 0.1250 -0.7590 -1.5983 -0.1968 3.9529 -1.4213 6.0404 -0.0069 4.9832 -0.5709 -7.2680 2.9277 0.9639 4.0768 -2.3485 -4.5067 2.1926 9.7107 3.0691 -16.4841 -20.7491 -5.6963 0.0000 0.0000 13.6038 11.4301 -4.9510 -9.3341 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1683 -3.6065 -0.0415 -26.3193 23.3120 9.7019 -0.0000 -0.0000 -7.4526 -7.6480 -19.7617 16.7242 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.2069 3.1576 -50.7700 -2.0600 0.0000 -0.0000 21.1001 -13.1267 45.4632 -29.1337 0.0000 -0.0000 1.1963 -3.7631 19.4438 -6.0811 0.0000 -0.0000 0.8617 -5.1959 -21.4894 -4.6206 0.0000 -0.0000 - 0.3901 -2.4435 23.6464 -0.9574 -1.1872 177.5339 -1.9380 -2.5709 0.1200 -0.7554 -1.5954 -0.1977 3.9601 -1.4253 6.0125 -0.0026 4.9748 -0.5692 -7.2541 2.9134 0.9665 4.1081 -2.3415 -4.4761 2.1873 9.6618 3.0444 -16.5023 -20.7184 -5.6738 0.0000 0.0000 13.6122 11.4142 -4.9499 -9.2695 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1863 -3.5950 -0.0357 -26.3135 23.2652 9.6974 -0.0000 -0.0000 -7.4576 -7.6632 -19.7494 16.7258 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.1999 3.1789 -50.7648 -2.0554 0.0000 -0.0000 21.0847 -13.0996 45.4744 -29.1682 0.0000 -0.0000 1.2092 -3.7414 19.4634 -6.0689 0.0000 -0.0000 0.8376 -5.1918 -21.4884 -4.6039 0.0000 -0.0000 - 0.3859 -2.4412 23.6462 -0.9396 -1.1781 177.5048 -1.9493 -2.5682 0.1154 -0.7594 -1.5952 -0.1988 3.9732 -1.4391 5.9932 0.0002 4.9740 -0.5689 -7.2427 2.9000 0.9697 4.1382 -2.3342 -4.4470 2.1824 9.6120 3.0232 -16.5231 -20.6811 -5.6574 0.0000 0.0000 13.6221 11.4035 -4.9473 -9.2068 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2073 -3.5873 -0.0256 -26.3144 23.2245 9.6940 -0.0000 -0.0000 -7.4613 -7.6701 -19.7417 16.7259 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1822 3.1986 -50.7506 -2.0537 0.0000 -0.0000 21.0741 -13.0792 45.4850 -29.1963 0.0000 -0.0000 1.2387 -3.7196 19.4767 -6.0686 0.0000 -0.0000 0.8203 -5.1890 -21.4742 -4.5900 0.0000 -0.0000 - 0.3820 -2.4391 23.6460 -0.9283 -1.1721 177.4703 -1.9643 -2.5682 0.1137 -0.7615 -1.5965 -0.2025 3.9828 -1.4510 5.9789 0.0038 4.9702 -0.5675 -7.2334 2.8901 0.9737 4.1664 -2.3283 -4.4208 2.1767 9.5619 2.9994 -16.5396 -20.6400 -5.6365 0.0000 0.0000 13.6284 11.3939 -4.9388 -9.1530 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2306 -3.5695 -0.0140 -26.3189 23.1751 9.6869 -0.0000 -0.0000 -7.4644 -7.6712 -19.7338 16.7287 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.1711 3.2135 -50.7361 -2.0558 0.0000 -0.0000 21.0722 -13.0633 45.5026 -29.2153 0.0000 -0.0000 1.2671 -3.7009 19.4809 -6.0804 0.0000 -0.0000 0.8101 -5.1881 -21.4455 -4.5795 0.0000 -0.0000 - 0.3784 -2.4376 23.6457 -0.9272 -1.1680 177.4316 -1.9873 -2.5711 0.1116 -0.7627 -1.6000 -0.2042 3.9941 -1.4611 5.9691 0.0055 4.9701 -0.5675 -7.2265 2.8767 0.9783 4.1921 -2.3223 -4.3968 2.1695 9.5052 2.9830 -16.5565 -20.5903 -5.6249 0.0000 0.0000 13.6348 11.3985 -4.9309 -9.1217 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.2579 -3.5539 -0.0036 -26.3326 23.1243 9.6869 -0.0000 -0.0000 -7.4698 -7.6642 -19.7280 16.7331 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.1714 3.2260 -50.7162 -2.0577 0.0000 -0.0000 21.0749 -13.0534 45.5207 -29.2229 0.0000 -0.0000 1.2856 -3.6854 19.4826 -6.0932 0.0000 -0.0000 0.7998 -5.1892 -21.4107 -4.5723 0.0000 -0.0000 - 0.3750 -2.4363 23.6453 -0.9265 -1.1641 177.3870 -2.0054 -2.5729 0.1097 -0.7653 -1.6033 -0.2057 4.0038 -1.4746 5.9653 0.0068 4.9692 -0.5663 -7.2206 2.8675 0.9836 4.2150 -2.3181 -4.3761 2.1606 9.4526 2.9684 -16.5684 -20.5400 -5.6159 0.0000 0.0000 13.6385 11.4027 -4.9212 -9.1106 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2838 -3.5333 0.0089 -26.3497 23.0732 9.6831 -0.0000 -0.0000 -7.4735 -7.6549 -19.7243 16.7381 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1729 3.2384 -50.6926 -2.0602 0.0000 -0.0000 21.0846 -13.0508 45.5436 -29.2200 0.0000 -0.0000 1.3077 -3.6698 19.4770 -6.1142 0.0000 -0.0000 0.7944 -5.1929 -21.3629 -4.5692 0.0000 -0.0000 - 0.3719 -2.4352 23.6449 -0.9234 -1.1601 177.3371 -2.0161 -2.5740 0.1095 -0.7684 -1.6057 -0.2064 4.0114 -1.4911 5.9670 0.0073 4.9680 -0.5659 -7.2152 2.8606 0.9897 4.2346 -2.3142 -4.3587 2.1488 9.4045 2.9591 -16.5773 -20.4901 -5.6149 0.0000 0.0000 13.6408 11.4096 -4.9128 -9.1210 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3061 -3.5104 0.0220 -26.3715 23.0227 9.6787 -0.0000 -0.0000 -7.4762 -7.6466 -19.7215 16.7431 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1731 3.2516 -50.6632 -2.0616 0.0000 -0.0000 21.0982 -13.0545 45.5683 -29.2075 0.0000 -0.0000 1.3350 -3.6540 19.4693 -6.1399 0.0000 -0.0000 0.7910 -5.1993 -21.3076 -4.5703 0.0000 -0.0000 - 0.3692 -2.4346 23.6445 -0.9271 -1.1604 177.2877 -2.0296 -2.5761 0.1059 -0.7726 -1.6130 -0.2085 4.0191 -1.5033 5.9705 0.0073 4.9633 -0.5617 -7.2118 2.8557 0.9961 4.2505 -2.3114 -4.3437 2.1297 9.3651 2.9536 -16.5809 -20.4489 -5.6222 0.0000 0.0000 13.6412 11.4202 -4.9015 -9.1484 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3266 -3.4890 0.0355 -26.3946 22.9777 9.6743 -0.0000 -0.0000 -7.4785 -7.6409 -19.7188 16.7456 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1799 3.2579 -50.6438 -2.0670 0.0000 -0.0000 21.1204 -13.0578 45.6030 -29.1881 0.0000 -0.0000 1.3545 -3.6446 19.4541 -6.1649 0.0000 -0.0000 0.7855 -5.2079 -21.2453 -4.5747 0.0000 -0.0000 - 0.3667 -2.4342 23.6441 -0.9294 -1.1581 177.2324 -2.0403 -2.5794 0.1073 -0.7737 -1.6165 -0.2110 4.0254 -1.5193 5.9773 0.0065 4.9638 -0.5590 -7.2086 2.8493 1.0026 4.2623 -2.3083 -4.3300 2.1068 9.3269 2.9593 -16.5821 -20.4064 -5.6446 0.0000 0.0000 13.6432 11.4304 -4.8968 -9.1875 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3410 -3.4750 0.0471 -26.4206 22.9403 9.6743 -0.0000 -0.0000 -7.4809 -7.6404 -19.7181 16.7461 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.1888 3.2695 -50.6105 -2.0652 0.0000 -0.0000 21.1401 -13.0670 45.6308 -29.1652 0.0000 -0.0000 1.3764 -3.6323 19.4451 -6.1911 0.0000 -0.0000 0.7801 -5.2190 -21.1834 -4.5829 0.0000 -0.0000 - 0.3646 -2.4341 23.6438 -0.9331 -1.1580 177.1792 -2.0467 -2.5778 0.1045 -0.7784 -1.6237 -0.2116 4.0310 -1.5350 5.9844 0.0060 4.9556 -0.5550 -7.2063 2.8507 1.0109 4.2695 -2.3061 -4.3182 2.0780 9.3006 2.9680 -16.5739 -20.3716 -5.6697 0.0000 0.0000 13.6414 11.4370 -4.8937 -9.2308 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3487 -3.4555 0.0587 -26.4433 22.9050 9.6709 -0.0000 -0.0000 -7.4819 -7.6476 -19.7150 16.7452 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1990 3.2761 -50.5899 -2.0678 0.0000 -0.0000 21.1655 -13.0714 45.6681 -29.1425 0.0000 -0.0000 1.3933 -3.6246 19.4324 -6.2113 0.0000 -0.0000 0.7699 -5.2320 -21.1194 -4.5940 0.0000 -0.0000 - 0.3627 -2.4344 23.6435 -0.9362 -1.1567 177.1243 -2.0525 -2.5773 0.1048 -0.7809 -1.6295 -0.2135 4.0369 -1.5520 5.9910 0.0054 4.9506 -0.5507 -7.2045 2.8522 1.0194 4.2723 -2.3036 -4.3062 2.0444 9.2781 2.9875 -16.5627 -20.3387 -5.7098 0.0000 0.0000 13.6428 11.4419 -4.8982 -9.2711 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.3490 -3.4456 0.0674 -26.4652 22.8806 9.6728 -0.0000 -0.0000 -7.4826 -7.6610 -19.7127 16.7406 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2113 3.2851 -50.5630 -2.0654 0.0000 -0.0000 21.1882 -13.0763 45.7000 -29.1231 0.0000 -0.0000 1.4090 -3.6164 19.4253 -6.2279 0.0000 -0.0000 0.7567 -5.2469 -21.0587 -4.6071 0.0000 -0.0000 - 0.3611 -2.4349 23.6433 -0.9382 -1.1545 177.0704 -2.0560 -2.5750 0.1052 -0.7831 -1.6348 -0.2157 4.0434 -1.5704 5.9962 0.0051 4.9447 -0.5464 -7.2037 2.8561 1.0288 4.2707 -2.3001 -4.2931 2.0064 9.2615 3.0146 -16.5462 -20.3097 -5.7585 0.0000 0.0000 13.6454 11.4442 -4.9081 -9.3017 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.3426 -3.4410 0.0736 -26.4829 22.8643 9.6782 -0.0000 -0.0000 -7.4831 -7.6785 -19.7099 16.7352 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.2244 3.2948 -50.5368 -2.0611 0.0000 -0.0000 21.2092 -13.0782 45.7300 -29.1097 0.0000 -0.0000 1.4218 -3.6089 19.4223 -6.2373 0.0000 -0.0000 0.7389 -5.2626 -21.0025 -4.6221 0.0000 -0.0000 - 0.3598 -2.4357 23.6432 -0.9390 -1.1514 177.0180 -2.0581 -2.5712 0.1063 -0.7850 -1.6398 -0.2180 4.0511 -1.5898 5.9989 0.0053 4.9383 -0.5422 -7.2040 2.8624 1.0391 4.2651 -2.2958 -4.2780 1.9651 9.2497 3.0483 -16.5249 -20.2836 -5.8140 0.0000 0.0000 13.6502 11.4459 -4.9241 -9.3192 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.3300 -3.4422 0.0766 -26.4959 22.8562 9.6883 -0.0000 -0.0000 -7.4830 -7.6964 -19.7069 16.7299 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2380 3.3053 -50.5113 -2.0546 0.0000 -0.0000 21.2274 -13.0768 45.7573 -29.1040 0.0000 -0.0000 1.4317 -3.6019 19.4233 -6.2392 0.0000 -0.0000 0.7168 -5.2785 -20.9507 -4.6383 0.0000 -0.0000 - 0.3587 -2.4368 23.6431 -0.9381 -1.1473 176.9685 -2.0591 -2.5665 0.1061 -0.7863 -1.6443 -0.2205 4.0604 -1.6097 5.9985 0.0064 4.9314 -0.5377 -7.2054 2.8711 1.0503 4.2557 -2.2902 -4.2603 1.9228 9.2411 3.0872 -16.4995 -20.2591 -5.8736 0.0000 0.0000 13.6572 11.4476 -4.9455 -9.3213 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.3127 -3.4504 0.0772 -26.5031 22.8573 9.7032 -0.0000 -0.0000 -7.4818 -7.7103 -19.7049 16.7254 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.2512 3.3164 -50.4870 -2.0464 0.0000 -0.0000 21.2428 -13.0726 45.7812 -29.1054 0.0000 -0.0000 1.4385 -3.5956 19.4283 -6.2330 0.0000 -0.0000 0.6903 -5.2940 -20.9048 -4.6545 0.0000 -0.0000 - 0.3578 -2.4381 23.6432 -0.9354 -1.1400 176.9197 -2.0595 -2.5606 0.1077 -0.7877 -1.6469 -0.2215 4.0724 -1.6314 5.9944 0.0083 4.9275 -0.5359 -7.2079 2.8800 1.0631 4.2437 -2.2829 -4.2393 1.8809 9.2338 3.1321 -16.4732 -20.2356 -5.9372 0.0000 0.0000 13.6678 11.4526 -4.9709 -9.3088 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.2918 -3.4636 0.0767 -26.5034 22.8636 9.7204 -0.0000 -0.0000 -7.4784 -7.7139 -19.7036 16.7258 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.2647 3.3314 -50.4590 -2.0343 0.0000 -0.0000 21.2533 -13.0677 45.7996 -29.1147 0.0000 -0.0000 1.4428 -3.5873 19.4378 -6.2189 0.0000 -0.0000 0.6609 -5.3086 -20.8630 -4.6710 0.0000 -0.0000 - 0.3573 -2.4396 23.6432 -0.9309 -1.1366 176.8753 -2.0605 -2.5570 0.1061 -0.7865 -1.6521 -0.2247 4.0845 -1.6482 5.9884 0.0114 4.9180 -0.5311 -7.2119 2.8943 1.0755 4.2298 -2.2753 -4.2152 1.8413 9.2309 3.1687 -16.4396 -20.2177 -5.9869 0.0000 0.0000 13.6758 11.4600 -4.9953 -9.2857 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2718 -3.4830 0.0677 -26.5012 22.8771 9.7523 -0.0000 -0.0000 -7.4768 -7.7029 -19.7037 16.7280 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2748 3.3395 -50.4443 -2.0267 0.0000 -0.0000 21.2666 -13.0567 45.8250 -29.1284 0.0000 -0.0000 1.4455 -3.5852 19.4448 -6.1987 0.0000 -0.0000 0.6281 -5.3208 -20.8221 -4.6868 0.0000 -0.0000 - 0.3569 -2.4413 23.6433 -0.9229 -1.1287 176.8309 -2.0587 -2.5521 0.1054 -0.7872 -1.6541 -0.2261 4.0997 -1.6687 5.9788 0.0152 4.9130 -0.5287 -7.2162 2.9083 1.0903 4.2149 -2.2665 -4.1877 1.8064 9.2267 3.2114 -16.4109 -20.1974 -6.0408 0.0000 0.0000 13.6887 11.4731 -5.0213 -9.2543 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.2523 -3.5074 0.0596 -26.4947 22.8957 9.7878 -0.0000 -0.0000 -7.4727 -7.6729 -19.7083 16.7371 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2836 3.3543 -50.4208 -2.0127 0.0000 -0.0000 21.2733 -13.0495 45.8417 -29.1460 0.0000 -0.0000 1.4485 -3.5793 19.4535 -6.1725 0.0000 -0.0000 0.5950 -5.3313 -20.7822 -4.7023 0.0000 -0.0000 - 0.3567 -2.4430 23.6435 -0.9133 -1.1227 176.7894 -2.0583 -2.5520 0.1035 -0.7860 -1.6570 -0.2286 4.1158 -1.6845 5.9676 0.0197 4.9091 -0.5272 -7.2209 2.9219 1.1047 4.2000 -2.2562 -4.1563 1.7760 9.2223 3.2471 -16.3816 -20.1817 -6.0823 0.0000 0.0000 13.7002 11.4918 -5.0439 -9.2198 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.2365 -3.5341 0.0492 -26.4841 22.9142 9.8278 -0.0000 -0.0000 -7.4672 -7.6226 -19.7121 16.7546 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2897 3.3658 -50.4027 -2.0005 0.0000 -0.0000 21.2810 -13.0419 45.8608 -29.1640 0.0000 -0.0000 1.4513 -3.5765 19.4605 -6.1434 0.0000 -0.0000 0.5616 -5.3393 -20.7428 -4.7170 0.0000 -0.0000 - 0.3567 -2.4447 23.6436 -0.9012 -1.1162 176.7485 -2.0573 -2.5535 0.0996 -0.7847 -1.6587 -0.2305 4.1330 -1.6998 5.9562 0.0254 4.9059 -0.5258 -7.2258 2.9369 1.1201 4.1868 -2.2458 -4.1226 1.7514 9.2175 3.2776 -16.3551 -20.1667 -6.1148 0.0000 0.0000 13.7116 11.5143 -5.0618 -9.1873 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2257 -3.5632 0.0380 -26.4731 22.9360 9.8733 -0.0000 -0.0000 -7.4599 -7.5507 -19.7227 16.7776 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.2930 3.3778 -50.3847 -1.9871 0.0000 -0.0000 21.2875 -13.0365 45.8801 -29.1811 0.0000 -0.0000 1.4560 -3.5739 19.4659 -6.1127 0.0000 -0.0000 0.5297 -5.3446 -20.7022 -4.7314 0.0000 -0.0000 - 0.3567 -2.4460 23.6438 -0.8631 -1.1084 176.7070 -2.0285 -2.5565 0.0957 -0.7848 -1.6569 -0.2305 4.1477 -1.7178 5.9437 0.0310 4.9056 -0.5251 -7.2286 2.9525 1.1368 4.1764 -2.2340 -4.0874 1.7353 9.2175 3.3020 -16.3363 -20.1581 -6.1388 0.0000 0.0000 13.7215 11.5402 -5.0746 -9.1606 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2195 -3.5950 0.0261 -26.4637 22.9594 9.9254 -0.0000 -0.0000 -7.4519 -7.4615 -19.7358 16.8065 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2683 3.3928 -50.3642 -1.9736 0.0000 -0.0000 21.2930 -13.0364 45.8996 -29.1950 0.0000 -0.0000 1.4905 -3.5679 19.4703 -6.0868 0.0000 -0.0000 0.5026 -5.3469 -20.6595 -4.7458 0.0000 -0.0000 - 0.3570 -2.4476 23.6439 -0.8526 -1.1053 176.6677 -2.0345 -2.5674 0.0883 -0.7830 -1.6607 -0.2336 4.1669 -1.7252 5.9347 0.0376 4.9043 -0.5253 -7.2322 2.9678 1.1535 4.1690 -2.2240 -4.0514 1.7242 9.2108 3.3179 -16.3224 -20.1480 -6.1514 0.0000 0.0000 13.7302 11.5636 -5.0788 -9.1414 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2207 -3.6208 0.0177 -26.4553 22.9772 9.9726 -0.0000 -0.0000 -7.4425 -7.3584 -19.7504 16.8409 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.2715 3.3995 -50.3508 -1.9620 0.0000 -0.0000 21.3019 -13.0341 45.9233 -29.2052 0.0000 -0.0000 1.4943 -3.5703 19.4691 -6.0579 0.0000 -0.0000 0.4749 -5.3480 -20.6143 -4.7588 0.0000 -0.0000 - 0.3572 -2.4487 23.6440 -0.8195 -1.0990 176.6281 -2.0156 -2.5783 0.0809 -0.7830 -1.6582 -0.2339 4.1817 -1.7404 5.9237 0.0452 4.9074 -0.5252 -7.2330 2.9841 1.1712 4.1661 -2.2131 -4.0155 1.7184 9.2095 3.3273 -16.3170 -20.1442 -6.1577 0.0000 0.0000 13.7368 11.5850 -5.0769 -9.1304 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2272 -3.6452 0.0103 -26.4516 22.9942 10.0234 -0.0000 -0.0000 -7.4336 -7.2504 -19.7676 16.8754 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2505 3.4121 -50.3343 -1.9481 0.0000 -0.0000 21.3081 -13.0377 45.9464 -29.2117 0.0000 -0.0000 1.5259 -3.5664 19.4682 -6.0370 0.0000 -0.0000 0.4542 -5.3469 -20.5693 -4.7727 0.0000 -0.0000 - 0.3578 -2.4499 23.6440 -0.8074 -1.0975 176.5886 -2.0236 -2.5963 0.0731 -0.7824 -1.6627 -0.2362 4.2004 -1.7441 5.9182 0.0525 4.9097 -0.5296 -7.2330 2.9988 1.1901 4.1674 -2.2031 -3.9815 1.7158 9.2023 3.3290 -16.3176 -20.1395 -6.1541 0.0000 0.0000 13.7402 11.5999 -5.0673 -9.1279 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.2387 -3.6586 0.0082 -26.4499 23.0000 10.0638 -0.0000 -0.0000 -7.4244 -7.1447 -19.7840 16.9111 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.2500 3.4162 -50.3211 -1.9379 0.0000 -0.0000 21.3179 -13.0388 45.9721 -29.2144 0.0000 -0.0000 1.5360 -3.5698 19.4617 -6.0163 0.0000 -0.0000 0.4339 -5.3451 -20.5201 -4.7848 0.0000 -0.0000 - 0.3582 -2.4505 23.6441 -0.7771 -1.0939 176.5496 -2.0117 -2.6140 0.0645 -0.7834 -1.6603 -0.2363 4.2144 -1.7574 5.9112 0.0611 4.9148 -0.5315 -7.2301 3.0169 1.2083 4.1738 -2.1943 -3.9483 1.7160 9.2012 3.3254 -16.3292 -20.1396 -6.1509 0.0000 0.0000 13.7433 11.6081 -5.0537 -9.1307 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2525 -3.6680 0.0122 -26.4548 23.0080 10.0984 -0.0000 -0.0000 -7.4158 -7.0497 -19.8020 16.9429 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.2298 3.4244 -50.3076 -1.9267 0.0000 -0.0000 21.3261 -13.0429 45.9987 -29.2154 0.0000 -0.0000 1.5697 -3.5681 19.4580 -6.0049 0.0000 -0.0000 0.4197 -5.3425 -20.4746 -4.7967 0.0000 -0.0000 - 0.3589 -2.4511 23.6441 -0.7711 -1.0944 176.5129 -2.0300 -2.6373 0.0575 -0.7838 -1.6676 -0.2426 4.2315 -1.7574 5.9070 0.0698 4.9201 -0.5337 -7.2263 3.0308 1.2256 4.1847 -2.1857 -3.9179 1.7159 9.1896 3.3173 -16.3443 -20.1334 -6.1431 0.0000 0.0000 13.7432 11.6053 -5.0371 -9.1356 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.2711 -3.6701 0.0178 -26.4647 23.0068 10.1288 -0.0000 -0.0000 -7.4119 -6.9714 -19.8175 16.9694 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.2341 3.4253 -50.3018 -1.9172 0.0000 -0.0000 21.3360 -13.0416 46.0293 -29.2151 0.0000 -0.0000 1.5782 -3.5729 19.4476 -5.9942 0.0000 -0.0000 0.4054 -5.3407 -20.4264 -4.8066 0.0000 -0.0000 - 0.3595 -2.4515 23.6441 -0.7650 -1.0932 176.4779 -2.0500 -2.6590 0.0486 -0.7859 -1.6732 -0.2448 4.2491 -1.7635 5.9040 0.0783 4.9269 -0.5379 -7.2199 3.0485 1.2434 4.1999 -2.1787 -3.8911 1.7136 9.1825 3.3056 -16.3666 -20.1307 -6.1382 0.0000 0.0000 13.7430 11.5966 -5.0166 -9.1418 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2876 -3.6580 0.0298 -26.4787 22.9977 10.1443 -0.0000 -0.0000 -7.4087 -6.9193 -19.8303 16.9879 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2365 3.4266 -50.2943 -1.9114 0.0000 -0.0000 21.3464 -13.0410 46.0569 -29.2159 0.0000 -0.0000 1.5893 -3.5747 19.4430 -5.9888 0.0000 -0.0000 0.3936 -5.3393 -20.3866 -4.8147 0.0000 -0.0000 - 0.3602 -2.4513 23.6441 -0.7515 -1.0927 176.4445 -2.0624 -2.6830 0.0418 -0.7893 -1.6747 -0.2462 4.2641 -1.7737 5.9001 0.0874 4.9351 -0.5429 -7.2113 3.0663 1.2607 4.2191 -2.1719 -3.8676 1.7094 9.1749 3.2928 -16.3926 -20.1265 -6.1365 0.0000 0.0000 13.7415 11.5804 -4.9966 -9.1453 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3036 -3.6399 0.0460 -26.4967 22.9864 10.1523 -0.0000 -0.0000 -7.4095 -6.8937 -19.8392 16.9977 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.2298 3.4269 -50.2839 -1.9075 0.0000 -0.0000 21.3549 -13.0399 46.0803 -29.2180 0.0000 -0.0000 1.6115 -3.5756 19.4383 -5.9900 0.0000 -0.0000 0.3841 -5.3388 -20.3489 -4.8206 0.0000 -0.0000 - 0.3610 -2.4508 23.6441 -0.7354 -1.0940 176.4126 -2.0742 -2.7081 0.0376 -0.7928 -1.6782 -0.2494 4.2791 -1.7826 5.8960 0.0956 4.9433 -0.5462 -7.2013 3.0842 1.2758 4.2416 -2.1652 -3.8470 1.7021 9.1650 3.2790 -16.4204 -20.1180 -6.1394 0.0000 0.0000 13.7401 11.5588 -4.9791 -9.1445 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3168 -3.6178 0.0668 -26.5182 22.9765 10.1501 -0.0000 -0.0000 -7.4127 -6.8990 -19.8470 16.9972 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.2187 3.4239 -50.2762 -1.9071 0.0000 -0.0000 21.3637 -13.0356 46.1048 -29.2226 0.0000 -0.0000 1.6396 -3.5774 19.4327 -5.9974 0.0000 -0.0000 0.3761 -5.3394 -20.3122 -4.8237 0.0000 -0.0000 - 0.3618 -2.4502 23.6441 -0.7314 -1.0935 176.3858 -2.0991 -2.7282 0.0327 -0.7990 -1.6882 -0.2530 4.2958 -1.7889 5.8908 0.1037 4.9515 -0.5499 -7.1911 3.1021 1.2898 4.2661 -2.1599 -3.8295 1.6901 9.1490 3.2658 -16.4486 -20.1023 -6.1469 0.0000 0.0000 13.7392 11.5370 -4.9634 -9.1394 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3279 -3.5864 0.0897 -26.5412 22.9604 10.1401 -0.0000 -0.0000 -7.4204 -6.9309 -19.8499 16.9887 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2186 3.4206 -50.2716 -1.9100 0.0000 -0.0000 21.3723 -13.0292 46.1269 -29.2299 0.0000 -0.0000 1.6529 -3.5784 19.4285 -6.0019 0.0000 -0.0000 0.3653 -5.3419 -20.2829 -4.8236 0.0000 -0.0000 - 0.3626 -2.4494 23.6441 -0.7286 -1.0932 176.3618 -2.1262 -2.7488 0.0294 -0.8050 -1.6962 -0.2564 4.3117 -1.7976 5.8849 0.1116 4.9599 -0.5540 -7.1810 3.1196 1.3018 4.2925 -2.1547 -3.8143 1.6744 9.1286 3.2532 -16.4749 -20.0800 -6.1585 0.0000 0.0000 13.7393 11.5154 -4.9502 -9.1305 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3370 -3.5504 0.1148 -26.5631 22.9441 10.1225 -0.0000 -0.0000 -7.4308 -6.9863 -19.8510 16.9727 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2183 3.4157 -50.2630 -1.9157 0.0000 -0.0000 21.3790 -13.0228 46.1424 -29.2399 0.0000 -0.0000 1.6655 -3.5793 19.4265 -6.0078 0.0000 -0.0000 0.3534 -5.3457 -20.2591 -4.8206 0.0000 -0.0000 - 0.3637 -2.4482 23.6441 -0.7061 -1.0965 176.3414 -2.1302 -2.7724 0.0251 -0.8122 -1.6969 -0.2559 4.3245 -1.8142 5.8774 0.1179 4.9689 -0.5579 -7.1699 3.1375 1.3108 4.3196 -2.1500 -3.8008 1.6559 9.1071 3.2400 -16.4967 -20.0541 -6.1726 0.0000 0.0000 13.7382 11.4986 -4.9397 -9.1175 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.3425 -3.5152 0.1356 -26.5880 22.9296 10.1091 -0.0000 -0.0000 -7.4451 -7.0566 -19.8479 16.9521 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.1939 3.4054 -50.2529 -1.9284 0.0000 -0.0000 21.3862 -13.0169 46.1536 -29.2507 0.0000 -0.0000 1.7006 -3.5825 19.4265 -6.0169 0.0000 -0.0000 0.3397 -5.3496 -20.2403 -4.8149 0.0000 -0.0000 - 0.3647 -2.4473 23.6440 -0.7071 -1.0940 176.3231 -2.1600 -2.7870 0.0250 -0.8193 -1.7093 -0.2615 4.3391 -1.8198 5.8687 0.1241 4.9751 -0.5612 -7.1625 3.1531 1.3195 4.3467 -2.1462 -3.7884 1.6337 9.0736 3.2299 -16.5143 -20.0144 -6.1888 0.0000 0.0000 13.7389 11.4876 -4.9318 -9.1031 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.3476 -3.4739 0.1630 -26.6067 22.9141 10.0833 -0.0000 -0.0000 -7.4587 -7.1366 -19.8464 16.9302 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.1953 3.4010 -50.2381 -1.9378 0.0000 -0.0000 21.3894 -13.0128 46.1584 -29.2638 0.0000 -0.0000 1.7076 -3.5815 19.4241 -6.0210 0.0000 -0.0000 0.3251 -5.3560 -20.2220 -4.8079 0.0000 -0.0000 - 0.3658 -2.4464 23.6440 -0.7075 -1.0928 176.3059 -2.1901 -2.8026 0.0257 -0.8232 -1.7185 -0.2661 4.3529 -1.8295 5.8588 0.1281 4.9830 -0.5633 -7.1566 3.1665 1.3254 4.3731 -2.1436 -3.7759 1.6109 9.0313 3.2212 -16.5270 -19.9636 -6.2068 0.0000 0.0000 13.7408 11.4824 -4.9274 -9.0893 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.3522 -3.4350 0.1886 -26.6232 22.9019 10.0590 -0.0000 -0.0000 -7.4727 -7.2166 -19.8461 16.9089 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1945 3.3937 -50.2192 -1.9506 0.0000 -0.0000 21.3920 -13.0100 46.1585 -29.2767 0.0000 -0.0000 1.7157 -3.5821 19.4232 -6.0255 0.0000 -0.0000 0.3095 -5.3628 -20.2060 -4.8001 0.0000 -0.0000 - 0.3672 -2.4455 23.6439 -0.7056 -1.0932 176.2916 -2.2154 -2.8188 0.0267 -0.8260 -1.7244 -0.2690 4.3631 -1.8423 5.8466 0.1319 4.9918 -0.5668 -7.1536 3.1758 1.3299 4.3986 -2.1409 -3.7628 1.5877 8.9810 3.2133 -16.5358 -19.9047 -6.2242 0.0000 0.0000 13.7426 11.4837 -4.9236 -9.0758 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.3598 -3.3992 0.2116 -26.6358 22.8909 10.0401 -0.0000 -0.0000 -7.4870 -7.2888 -19.8459 16.8918 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1896 3.3837 -50.1975 -1.9658 0.0000 -0.0000 21.3940 -13.0097 46.1534 -29.2887 0.0000 -0.0000 1.7251 -3.5849 19.4218 -6.0281 0.0000 -0.0000 0.2922 -5.3697 -20.1922 -4.7927 0.0000 -0.0000 - 0.3688 -2.4445 23.6438 -0.6851 -1.0976 176.2796 -2.2160 -2.8377 0.0241 -0.8306 -1.7243 -0.2677 4.3706 -1.8596 5.8338 0.1331 4.9987 -0.5688 -7.1523 3.1842 1.3318 4.4228 -2.1391 -3.7491 1.5652 8.9301 3.2024 -16.5394 -19.8444 -6.2389 0.0000 0.0000 13.7432 11.4903 -4.9191 -9.0661 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3685 -3.3669 0.2277 -26.6460 22.8818 10.0304 -0.0000 -0.0000 -7.5005 -7.3481 -19.8457 16.8809 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.1627 3.3684 -50.1753 -1.9859 0.0000 -0.0000 21.3969 -13.0115 46.1463 -29.2982 0.0000 -0.0000 1.7544 -3.5915 19.4181 -6.0308 0.0000 -0.0000 0.2739 -5.3756 -20.1776 -4.7867 0.0000 -0.0000 - 0.3703 -2.4441 23.6438 -0.6850 -1.0945 176.2669 -2.2370 -2.8474 0.0256 -0.8330 -1.7334 -0.2736 4.3770 -1.8660 5.8229 0.1339 5.0021 -0.5708 -7.1562 3.1898 1.3343 4.4452 -2.1388 -3.7341 1.5422 8.8712 3.1928 -16.5402 -19.7760 -6.2521 0.0000 0.0000 13.7447 11.4999 -4.9130 -9.0606 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.3813 -3.3313 0.2458 -26.6493 22.8697 10.0186 -0.0000 -0.0000 -7.5102 -7.3924 -19.8478 16.8771 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.1609 3.3634 -50.1426 -1.9965 0.0000 -0.0000 21.3926 -13.0185 46.1298 -29.3077 0.0000 -0.0000 1.7577 -3.5921 19.4156 -6.0261 0.0000 -0.0000 0.2560 -5.3828 -20.1641 -4.7844 0.0000 -0.0000 - 0.3722 -2.4436 23.6437 -0.6776 -1.0980 176.2561 -2.2487 -2.8612 0.0240 -0.8314 -1.7378 -0.2734 4.3799 -1.8803 5.8081 0.1328 5.0126 -0.5736 -7.1626 3.1848 1.3342 4.4656 -2.1379 -3.7160 1.5248 8.7958 3.1875 -16.5408 -19.6914 -6.2662 0.0000 0.0000 13.7467 11.5043 -4.9141 -9.0570 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.3991 -3.3115 0.2602 -26.6521 22.8667 10.0208 -0.0000 -0.0000 -7.5191 -7.4151 -19.8564 16.8807 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1490 3.3494 -50.1077 -2.0115 0.0000 -0.0000 21.3887 -13.0261 46.1086 -29.3143 0.0000 -0.0000 1.7685 -3.6009 19.4065 -6.0199 0.0000 -0.0000 0.2370 -5.3888 -20.1453 -4.7848 0.0000 -0.0000 - 0.3740 -2.4435 23.6436 -0.6721 -1.0977 176.2446 -2.2583 -2.8719 0.0230 -0.8317 -1.7424 -0.2771 4.3821 -1.8885 5.7968 0.1305 5.0148 -0.5739 -7.1728 3.1830 1.3343 4.4837 -2.1392 -3.6980 1.5057 8.7298 3.1761 -16.5405 -19.6175 -6.2779 0.0000 0.0000 13.7483 11.5102 -4.9086 -9.0591 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4200 -3.2833 0.2707 -26.6499 22.8556 10.0233 -0.0000 -0.0000 -7.5232 -7.4240 -19.8635 16.8917 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.1414 3.3414 -50.0708 -2.0206 0.0000 -0.0000 21.3809 -13.0356 46.0859 -29.3211 0.0000 -0.0000 1.7756 -3.6060 19.4000 -6.0115 0.0000 -0.0000 0.2202 -5.3946 -20.1286 -4.7900 0.0000 -0.0000 - 0.3760 -2.4435 23.6436 -0.6677 -1.0984 176.2336 -2.2666 -2.8822 0.0206 -0.8311 -1.7462 -0.2799 4.3823 -1.8974 5.7864 0.1280 5.0168 -0.5752 -7.1869 3.1771 1.3343 4.4999 -2.1410 -3.6791 1.4873 8.6634 3.1643 -16.5412 -19.5450 -6.2901 0.0000 0.0000 13.7493 11.5110 -4.9027 -9.0617 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.4461 -3.2580 0.2788 -26.6439 22.8436 10.0315 -0.0000 -0.0000 -7.5243 -7.4213 -19.8705 16.9056 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.1356 3.3325 -50.0354 -2.0274 0.0000 -0.0000 21.3716 -13.0443 46.0632 -29.3267 0.0000 -0.0000 1.7807 -3.6130 19.3920 -6.0019 0.0000 -0.0000 0.2048 -5.3996 -20.1107 -4.8000 0.0000 -0.0000 - 0.3783 -2.4436 23.6436 -0.6612 -1.1014 176.2233 -2.2706 -2.8935 0.0169 -0.8296 -1.7488 -0.2807 4.3811 -1.9069 5.7754 0.1246 5.0195 -0.5765 -7.2036 3.1657 1.3336 4.5136 -2.1431 -3.6594 1.4717 8.5942 3.1532 -16.5445 -19.4713 -6.3048 0.0000 0.0000 13.7508 11.5044 -4.9012 -9.0662 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.4738 -3.2384 0.2833 -26.6382 22.8323 10.0467 -0.0000 -0.0000 -7.5236 -7.4087 -19.8787 16.9242 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1278 3.3214 -49.9995 -2.0326 0.0000 -0.0000 21.3599 -13.0516 46.0380 -29.3329 0.0000 -0.0000 1.7874 -3.6232 19.3806 -5.9910 0.0000 -0.0000 0.1902 -5.4038 -20.0902 -4.8130 0.0000 -0.0000 - 0.3806 -2.4438 23.6436 -0.6542 -1.1042 176.2138 -2.2724 -2.9039 0.0132 -0.8281 -1.7512 -0.2823 4.3787 -1.9148 5.7649 0.1214 5.0206 -0.5775 -7.2229 3.1519 1.3325 4.5241 -2.1460 -3.6394 1.4555 8.5295 3.1420 -16.5494 -19.4043 -6.3232 0.0000 0.0000 13.7521 11.4930 -4.9010 -9.0709 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.5026 -3.2201 0.2865 -26.6309 22.8195 10.0636 -0.0000 -0.0000 -7.5204 -7.3948 -19.8867 16.9417 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.1204 3.3111 -49.9659 -2.0349 0.0000 -0.0000 21.3459 -13.0572 46.0131 -29.3403 0.0000 -0.0000 1.7941 -3.6335 19.3690 -5.9800 0.0000 -0.0000 0.1776 -5.4075 -20.0702 -4.8293 0.0000 -0.0000 - 0.3831 -2.4439 23.6436 -0.6443 -1.1075 176.2062 -2.2695 -2.9135 0.0085 -0.8269 -1.7525 -0.2847 4.3744 -1.9224 5.7548 0.1198 5.0190 -0.5774 -7.2450 3.1368 1.3308 4.5319 -2.1494 -3.6203 1.4380 8.4724 3.1299 -16.5565 -19.3465 -6.3459 0.0000 0.0000 13.7530 11.4784 -4.9036 -9.0731 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.5314 -3.2044 0.2891 -26.6238 22.8082 10.0815 -0.0000 -0.0000 -7.5156 -7.3824 -19.8934 16.9572 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.1100 3.3008 -49.9383 -2.0359 0.0000 -0.0000 21.3308 -13.0597 45.9910 -29.3496 0.0000 -0.0000 1.8042 -3.6440 19.3581 -5.9710 0.0000 -0.0000 0.1672 -5.4103 -20.0526 -4.8477 0.0000 -0.0000 - 0.3857 -2.4440 23.6436 -0.6352 -1.1121 176.1994 -2.2683 -2.9247 0.0048 -0.8258 -1.7551 -0.2846 4.3728 -1.9278 5.7433 0.1173 5.0211 -0.5800 -7.2684 3.1146 1.3280 4.5359 -2.1525 -3.6018 1.4214 8.4122 3.1215 -16.5654 -19.2891 -6.3748 0.0000 0.0000 13.7539 11.4608 -4.9133 -9.0736 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.5582 -3.1924 0.2884 -26.6173 22.7925 10.1019 -0.0000 -0.0000 -7.5114 -7.3804 -19.8977 16.9689 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1013 3.2896 -49.9078 -2.0339 0.0000 -0.0000 21.3121 -13.0606 45.9641 -29.3609 0.0000 -0.0000 1.8123 -3.6568 19.3432 -5.9595 0.0000 -0.0000 0.1562 -5.4129 -20.0321 -4.8667 0.0000 -0.0000 - 0.3882 -2.4440 23.6436 -0.6295 -1.1137 176.1931 -2.2727 -2.9330 0.0010 -0.8240 -1.7576 -0.2869 4.3739 -1.9319 5.7340 0.1152 5.0208 -0.5803 -7.2939 3.0940 1.3234 4.5367 -2.1573 -3.5848 1.4022 8.3602 3.1113 -16.5735 -19.2413 -6.4072 0.0000 0.0000 13.7537 11.4447 -4.9256 -9.0715 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.5811 -3.1795 0.2888 -26.6107 22.7773 10.1160 -0.0000 -0.0000 -7.5046 -7.3880 -19.9028 16.9730 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0969 3.2821 -49.8832 -2.0295 0.0000 -0.0000 21.2924 -13.0585 45.9420 -29.3746 0.0000 -0.0000 1.8166 -3.6663 19.3331 -5.9487 0.0000 -0.0000 0.1464 -5.4154 -20.0171 -4.8852 0.0000 -0.0000 - 0.3907 -2.4439 23.6436 -0.6256 -1.1146 176.1893 -2.2795 -2.9411 -0.0022 -0.8229 -1.7599 -0.2895 4.3752 -1.9349 5.7246 0.1153 5.0207 -0.5816 -7.3210 3.0719 1.3187 4.5334 -2.1621 -3.5712 1.3817 8.3127 3.0999 -16.5801 -19.2008 -6.4406 0.0000 0.0000 13.7512 11.4326 -4.9440 -9.0668 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6004 -3.1669 0.2890 -26.6048 22.7598 10.1275 -0.0000 -0.0000 -7.4995 -7.4073 -19.9049 16.9726 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0940 3.2754 -49.8636 -2.0243 0.0000 -0.0000 21.2718 -13.0539 45.9218 -29.3917 0.0000 -0.0000 1.8190 -3.6749 19.3245 -5.9390 0.0000 -0.0000 0.1369 -5.4176 -20.0062 -4.9018 0.0000 -0.0000 - 0.3934 -2.4434 23.6436 -0.6095 -1.1199 176.1885 -2.2748 -2.9535 -0.0066 -0.8222 -1.7606 -0.2889 4.3790 -1.9365 5.7118 0.1143 5.0208 -0.5823 -7.3478 3.0476 1.3102 4.5265 -2.1670 -3.5578 1.3607 8.2677 3.0909 -16.5835 -19.1650 -6.4790 0.0000 0.0000 13.7466 11.4251 -4.9671 -9.0575 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6150 -3.1604 0.2885 -26.5995 22.7446 10.1379 -0.0000 -0.0000 -7.4956 -7.4365 -19.9064 16.9662 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0760 3.2632 -49.8475 -2.0231 0.0000 -0.0000 21.2521 -13.0477 45.9021 -29.4091 0.0000 -0.0000 1.8355 -3.6875 19.3135 -5.9312 0.0000 -0.0000 0.1260 -5.4191 -19.9957 -4.9156 0.0000 -0.0000 - 0.3961 -2.4429 23.6435 -0.6002 -1.1219 176.1897 -2.2783 -2.9632 -0.0102 -0.8218 -1.7631 -0.2886 4.3835 -1.9360 5.6988 0.1155 5.0230 -0.5853 -7.3764 3.0212 1.3027 4.5162 -2.1728 -3.5487 1.3392 8.2196 3.0860 -16.5862 -19.1276 -6.5225 0.0000 0.0000 13.7431 11.4247 -4.9970 -9.0467 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6236 -3.1562 0.2890 -26.5992 22.7284 10.1469 -0.0000 -0.0000 -7.4930 -7.4728 -19.9077 16.9537 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0659 3.2555 -49.8271 -2.0176 0.0000 -0.0000 21.2285 -13.0436 45.8767 -29.4285 0.0000 -0.0000 1.8429 -3.6972 19.3031 -5.9206 0.0000 -0.0000 0.1136 -5.4212 -19.9882 -4.9271 0.0000 -0.0000 - 0.3987 -2.4422 23.6434 -0.5860 -1.1236 176.1923 -2.2789 -2.9736 -0.0130 -0.8206 -1.7640 -0.2896 4.3900 -1.9352 5.6861 0.1162 5.0243 -0.5865 -7.4052 2.9977 1.2923 4.5028 -2.1797 -3.5409 1.3175 8.1761 3.0763 -16.5811 -19.0969 -6.5588 0.0000 0.0000 13.7331 11.4291 -5.0269 -9.0318 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.6285 -3.1499 0.2895 -26.5981 22.7094 10.1504 -0.0000 -0.0000 -7.4905 -7.5134 -19.9080 16.9383 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0490 3.2478 -49.8125 -2.0149 0.0000 -0.0000 21.2071 -13.0388 45.8565 -29.4487 0.0000 -0.0000 1.8567 -3.7055 19.2976 -5.9124 0.0000 -0.0000 0.1008 -5.4231 -19.9868 -4.9360 0.0000 -0.0000 - 0.4012 -2.4414 23.6434 -0.5810 -1.1223 176.1960 -2.2914 -2.9820 -0.0145 -0.8178 -1.7652 -0.2932 4.3984 -1.9340 5.6746 0.1172 5.0273 -0.5885 -7.4352 2.9755 1.2816 4.4866 -2.1880 -3.5350 1.2958 8.1296 3.0670 -16.5713 -19.0648 -6.5920 0.0000 0.0000 13.7204 11.4373 -5.0576 -9.0132 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6316 -3.1425 0.2919 -26.5978 22.6876 10.1511 -0.0000 -0.0000 -7.4898 -7.5532 -19.9089 16.9217 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0423 3.2438 -49.7953 -2.0093 0.0000 -0.0000 21.1836 -13.0361 45.8336 -29.4695 0.0000 -0.0000 1.8594 -3.7113 19.2949 -5.9019 0.0000 -0.0000 0.0866 -5.4256 -19.9898 -4.9430 0.0000 -0.0000 - 0.4039 -2.4402 23.6433 -0.5505 -1.1264 176.2033 -2.2759 -2.9946 -0.0181 -0.8161 -1.7647 -0.2906 4.4062 -1.9318 5.6566 0.1157 5.0298 -0.5902 -7.4636 2.9531 1.2695 4.4687 -2.1961 -3.5301 1.2769 8.0828 3.0598 -16.5600 -19.0333 -6.6264 0.0000 0.0000 13.7066 11.4451 -5.0909 -8.9922 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6316 -3.1415 0.2932 -26.6000 22.6677 10.1543 -0.0000 -0.0000 -7.4893 -7.5890 -19.9105 16.9051 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0051 3.2331 -49.7799 -2.0103 0.0000 -0.0000 21.1626 -13.0353 45.8102 -29.4882 0.0000 -0.0000 1.8909 -3.7213 19.2894 -5.8943 0.0000 -0.0000 0.0707 -5.4270 -19.9927 -4.9487 0.0000 -0.0000 - 0.4066 -2.4390 23.6432 -0.5155 -1.1288 176.2113 -2.2531 -3.0041 -0.0222 -0.8142 -1.7653 -0.2885 4.4106 -1.9295 5.6396 0.1142 5.0321 -0.5919 -7.4918 2.9328 1.2571 4.4496 -2.2044 -3.5258 1.2616 8.0313 3.0543 -16.5483 -18.9954 -6.6594 0.0000 0.0000 13.6925 11.4483 -5.1271 -8.9676 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.6321 -3.1416 0.2948 -26.6045 22.6478 10.1604 -0.0000 -0.0000 -7.4901 -7.6164 -19.9140 16.8894 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0363 3.2259 -49.7558 -2.0082 0.0000 -0.0000 21.1381 -13.0397 45.7789 -29.5063 0.0000 -0.0000 1.9260 -3.7294 19.2841 -5.8843 0.0000 -0.0000 0.0535 -5.4287 -19.9965 -4.9542 0.0000 -0.0000 - 0.4092 -2.4383 23.6431 -0.5109 -1.1267 176.2186 -2.2677 -3.0117 -0.0223 -0.8069 -1.7649 -0.2947 4.4195 -1.9291 5.6275 0.1118 5.0348 -0.5938 -7.5227 2.9186 1.2455 4.4296 -2.2154 -3.5227 1.2454 7.9770 3.0426 -16.5352 -18.9574 -6.6823 0.0000 0.0000 13.6767 11.4457 -5.1570 -8.9419 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6349 -3.1296 0.2984 -26.6076 22.6166 10.1592 -0.0000 -0.0000 -7.4897 -7.6341 -19.9171 16.8785 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0439 3.2228 -49.7339 -2.0020 0.0000 -0.0000 21.1133 -13.0434 45.7502 -29.5244 0.0000 -0.0000 1.9270 -3.7348 19.2855 -5.8712 0.0000 -0.0000 0.0362 -5.4316 -20.0071 -4.9609 0.0000 -0.0000 - 0.4122 -2.4369 23.6431 -0.4638 -1.1323 176.2293 -2.2311 -3.0219 -0.0264 -0.8013 -1.7622 -0.2930 4.4208 -1.9311 5.6086 0.1065 5.0351 -0.5941 -7.5501 2.9056 1.2337 4.4100 -2.2247 -3.5190 1.2346 7.9229 3.0339 -16.5262 -18.9171 -6.7078 0.0000 0.0000 13.6624 11.4313 -5.1894 -8.9131 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6394 -3.1274 0.2993 -26.6138 22.5924 10.1686 -0.0000 -0.0000 -7.4898 -7.6430 -19.9228 16.8699 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.1004 3.2110 -49.7145 -2.0047 0.0000 -0.0000 21.0922 -13.0489 45.7220 -29.5395 0.0000 -0.0000 1.9754 -3.7459 19.2834 -5.8621 0.0000 -0.0000 0.0182 -5.4325 -20.0163 -4.9692 0.0000 -0.0000 - 0.4150 -2.4365 23.6432 -0.4550 -1.1322 176.2396 -2.2362 -3.0280 -0.0292 -0.7941 -1.7627 -0.2947 4.4269 -1.9323 5.5916 0.1002 5.0365 -0.5963 -7.5805 2.8955 1.2245 4.3913 -2.2346 -3.5153 1.2239 7.8601 3.0268 -16.5221 -18.8686 -6.7323 0.0000 0.0000 13.6516 11.4047 -5.2187 -8.8832 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6489 -3.1132 0.3020 -26.6184 22.5557 10.1744 -0.0000 -0.0000 -7.4898 -7.6454 -19.9273 16.8657 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.1116 3.2070 -49.6826 -1.9949 0.0000 -0.0000 21.0629 -13.0576 45.6810 -29.5551 0.0000 -0.0000 1.9779 -3.7547 19.2772 -5.8436 0.0000 -0.0000 -0.0008 -5.4360 -20.0221 -4.9800 0.0000 -0.0000 - 0.4180 -2.4355 23.6432 -0.4072 -1.1375 176.2509 -2.1950 -3.0339 -0.0321 -0.7855 -1.7603 -0.2967 4.4235 -1.9389 5.5752 0.0921 5.0342 -0.5962 -7.6079 2.8900 1.2163 4.3739 -2.2423 -3.5122 1.2153 7.8061 3.0168 -16.5223 -18.8276 -6.7560 0.0000 0.0000 13.6417 11.3674 -5.2448 -8.8521 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.6610 -3.1032 0.3009 -26.6243 22.5241 10.1882 -0.0000 -0.0000 -7.4891 -7.6420 -19.9311 16.8638 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.1676 3.1959 -49.6622 -1.9950 0.0000 -0.0000 21.0408 -13.0640 45.6511 -29.5689 0.0000 -0.0000 2.0255 -3.7660 19.2767 -5.8323 0.0000 -0.0000 -0.0177 -5.4368 -20.0332 -4.9936 0.0000 -0.0000 - 0.4213 -2.4352 23.6433 -0.3806 -1.1440 176.2636 -2.1733 -3.0417 -0.0362 -0.7784 -1.7568 -0.2939 4.4217 -1.9466 5.5515 0.0825 5.0295 -0.5944 -7.6361 2.8880 1.2099 4.3576 -2.2505 -3.5083 1.2077 7.7463 3.0095 -16.5321 -18.7795 -6.7836 0.0000 0.0000 13.6380 11.3199 -5.2709 -8.8222 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6778 -3.0849 0.3004 -26.6282 22.4854 10.2002 -0.0000 -0.0000 -7.4885 -7.6377 -19.9348 16.8652 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.1989 3.1837 -49.6344 -1.9897 0.0000 -0.0000 21.0144 -13.0707 45.6113 -29.5820 0.0000 -0.0000 2.0474 -3.7818 19.2626 -5.8157 0.0000 -0.0000 -0.0347 -5.4393 -20.0325 -5.0092 0.0000 -0.0000 - 0.4245 -2.4353 23.6434 -0.3644 -1.1478 176.2760 -2.1608 -3.0428 -0.0414 -0.7720 -1.7583 -0.2938 4.4217 -1.9560 5.5346 0.0718 5.0266 -0.5960 -7.6644 2.8867 1.2057 4.3421 -2.2571 -3.5044 1.1993 7.6820 3.0065 -16.5476 -18.7259 -6.8155 0.0000 0.0000 13.6386 11.2668 -5.2973 -8.7929 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.6989 -3.0689 0.3001 -26.6314 22.4511 10.2161 -0.0000 -0.0000 -7.4880 -7.6343 -19.9400 16.8657 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.2169 3.1745 -49.6081 -1.9810 0.0000 -0.0000 20.9870 -13.0758 45.5725 -29.5961 0.0000 -0.0000 2.0551 -3.7961 19.2493 -5.7942 0.0000 -0.0000 -0.0517 -5.4423 -20.0328 -5.0267 0.0000 -0.0000 - 0.4277 -2.4355 23.6436 -0.3421 -1.1510 176.2871 -2.1418 -3.0427 -0.0405 -0.7599 -1.7560 -0.3004 4.4167 -1.9677 5.5185 0.0598 5.0158 -0.5933 -7.6915 2.8937 1.2040 4.3273 -2.2623 -3.5024 1.1880 7.6319 2.9985 -16.5641 -18.6858 -6.8442 0.0000 0.0000 13.6383 11.2169 -5.3148 -8.7658 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7208 -3.0413 0.2965 -26.6324 22.4105 10.2302 -0.0000 -0.0000 -7.4870 -7.6380 -19.9396 16.8673 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.2405 3.1666 -49.5836 -1.9720 0.0000 -0.0000 20.9604 -13.0794 45.5367 -29.6104 0.0000 -0.0000 2.0705 -3.8087 19.2415 -5.7765 0.0000 -0.0000 -0.0652 -5.4445 -20.0368 -5.0455 0.0000 -0.0000 - 0.4310 -2.4362 23.6437 -0.3325 -1.1563 176.2999 -2.1307 -3.0426 -0.0457 -0.7540 -1.7572 -0.2992 4.4139 -1.9816 5.5015 0.0490 5.0103 -0.5935 -7.7191 2.8959 1.2025 4.3127 -2.2651 -3.5001 1.1770 7.5705 2.9968 -16.5853 -18.6351 -6.8783 0.0000 0.0000 13.6426 11.1712 -5.3369 -8.7418 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.7439 -3.0214 0.2959 -26.6312 22.3795 10.2429 -0.0000 -0.0000 -7.4860 -7.6478 -19.9428 16.8672 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.2500 3.1543 -49.5652 -1.9645 0.0000 -0.0000 20.9366 -13.0785 45.5040 -29.6249 0.0000 -0.0000 2.0692 -3.8260 19.2231 -5.7537 0.0000 -0.0000 -0.0796 -5.4474 -20.0320 -5.0638 0.0000 -0.0000 - 0.4346 -2.4369 23.6438 -0.3130 -1.1645 176.3127 -2.1074 -3.0442 -0.0487 -0.7465 -1.7556 -0.2997 4.4077 -1.9978 5.4842 0.0379 5.0001 -0.5905 -7.7445 2.9023 1.2021 4.2976 -2.2658 -3.5008 1.1635 7.5200 2.9945 -16.6053 -18.5946 -6.9141 0.0000 0.0000 13.6465 11.1390 -5.3542 -8.7219 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.7641 -2.9977 0.2920 -26.6286 22.3492 10.2543 -0.0000 -0.0000 -7.4849 -7.6642 -19.9415 16.8672 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.2705 3.1381 -49.5514 -1.9610 0.0000 -0.0000 20.9162 -13.0748 45.4757 -29.6389 0.0000 -0.0000 2.0792 -3.8456 19.2050 -5.7339 0.0000 -0.0000 -0.0922 -5.4494 -20.0271 -5.0805 0.0000 -0.0000 - 0.4379 -2.4379 23.6439 -0.3041 -1.1688 176.3234 -2.0940 -3.0415 -0.0508 -0.7413 -1.7567 -0.3016 4.4054 -2.0131 5.4711 0.0272 4.9896 -0.5893 -7.7698 2.9096 1.2030 4.2810 -2.2656 -3.5027 1.1471 7.4708 2.9960 -16.6206 -18.5556 -6.9493 0.0000 0.0000 13.6481 11.1221 -5.3695 -8.7049 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7832 -2.9754 0.2909 -26.6232 22.3261 10.2626 -0.0000 -0.0000 -7.4845 -7.6873 -19.9412 16.8648 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2776 3.1264 -49.5380 -1.9551 0.0000 -0.0000 20.8964 -13.0701 45.4497 -29.6538 0.0000 -0.0000 2.0767 -3.8616 19.1870 -5.7133 0.0000 -0.0000 -0.1025 -5.4519 -20.0207 -5.0955 0.0000 -0.0000 - 0.4413 -2.4391 23.6439 -0.2939 -1.1756 176.3340 -2.0776 -3.0420 -0.0527 -0.7359 -1.7568 -0.3026 4.4020 -2.0291 5.4578 0.0176 4.9788 -0.5862 -7.7932 2.9171 1.2029 4.2622 -2.2640 -3.5067 1.1308 7.4242 2.9977 -16.6312 -18.5199 -6.9828 0.0000 0.0000 13.6471 11.1242 -5.3838 -8.6921 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.7964 -2.9525 0.2891 -26.6167 22.3060 10.2655 -0.0000 -0.0000 -7.4832 -7.7146 -19.9381 16.8631 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.2867 3.1103 -49.5303 -1.9537 0.0000 -0.0000 20.8813 -13.0622 45.4293 -29.6675 0.0000 -0.0000 2.0756 -3.8802 19.1684 -5.6937 0.0000 -0.0000 -0.1122 -5.4538 -20.0133 -5.1075 0.0000 -0.0000 - 0.4446 -2.4404 23.6438 -0.2874 -1.1800 176.3431 -2.0644 -3.0416 -0.0542 -0.7329 -1.7582 -0.3047 4.4023 -2.0435 5.4474 0.0095 4.9692 -0.5840 -7.8166 2.9238 1.2036 4.2408 -2.2613 -3.5132 1.1116 7.3830 3.0009 -16.6328 -18.4925 -7.0119 0.0000 0.0000 13.6403 11.1437 -5.3940 -8.6806 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.8063 -2.9355 0.2909 -26.6094 22.2967 10.2656 -0.0000 -0.0000 -7.4826 -7.7402 -19.9374 16.8616 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.2911 3.0969 -49.5221 -1.9526 0.0000 -0.0000 20.8682 -13.0550 45.4103 -29.6810 0.0000 -0.0000 2.0705 -3.8959 19.1517 -5.6754 0.0000 -0.0000 -0.1197 -5.4560 -20.0065 -5.1161 0.0000 -0.0000 - 0.4478 -2.4419 23.6438 -0.2814 -1.1872 176.3519 -2.0513 -3.0459 -0.0557 -0.7306 -1.7590 -0.3039 4.4040 -2.0567 5.4373 0.0023 4.9605 -0.5836 -7.8375 2.9298 1.2031 4.2157 -2.2585 -3.5216 1.0954 7.3421 3.0050 -16.6281 -18.4666 -7.0357 0.0000 0.0000 13.6289 11.1769 -5.4060 -8.6724 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.8078 -2.9201 0.2931 -26.6041 22.2906 10.2615 -0.0000 -0.0000 -7.4811 -7.7628 -19.9344 16.8621 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2960 3.0785 -49.5219 -1.9575 0.0000 -0.0000 20.8617 -13.0447 45.3994 -29.6921 0.0000 -0.0000 2.0657 -3.9143 19.1355 -5.6600 0.0000 -0.0000 -0.1259 -5.4575 -19.9997 -5.1216 0.0000 -0.0000 - 0.4508 -2.4435 23.6437 -0.2770 -1.1907 176.3580 -2.0399 -3.0481 -0.0557 -0.7283 -1.7604 -0.3074 4.4076 -2.0689 5.4292 -0.0035 4.9527 -0.5800 -7.8582 2.9363 1.2028 4.1880 -2.2556 -3.5317 1.0806 7.3038 3.0080 -16.6153 -18.4444 -7.0499 0.0000 0.0000 13.6104 11.2178 -5.4173 -8.6632 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.8070 -2.9055 0.2993 -26.5960 22.2900 10.2511 -0.0000 -0.0000 -7.4787 -7.7781 -19.9330 16.8652 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.2976 3.0653 -49.5151 -1.9602 0.0000 -0.0000 20.8550 -13.0377 45.3855 -29.7022 0.0000 -0.0000 2.0585 -3.9281 19.1249 -5.6440 0.0000 -0.0000 -0.1311 -5.4592 -19.9962 -5.1241 0.0000 -0.0000 - 0.4538 -2.4452 23.6436 -0.2743 -1.1967 176.3632 -2.0299 -3.0552 -0.0567 -0.7273 -1.7618 -0.3078 4.4133 -2.0792 5.4213 -0.0077 4.9468 -0.5800 -7.8771 2.9412 1.2030 4.1569 -2.2530 -3.5425 1.0703 7.2664 3.0121 -16.5972 -18.4257 -7.0549 0.0000 0.0000 13.5854 11.2579 -5.4299 -8.6514 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.8022 -2.8943 0.3075 -26.5906 22.2920 10.2412 -0.0000 -0.0000 -7.4767 -7.7816 -19.9302 16.8731 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.2986 3.0477 -49.5146 -1.9685 0.0000 -0.0000 20.8549 -13.0288 45.3785 -29.7095 0.0000 -0.0000 2.0508 -3.9442 19.1157 -5.6313 0.0000 -0.0000 -0.1349 -5.4606 -19.9931 -5.1240 0.0000 -0.0000 - 0.4566 -2.4472 23.6434 -0.2722 -1.2007 176.3662 -2.0206 -3.0626 -0.0561 -0.7264 -1.7632 -0.3098 4.4215 -2.0884 5.4146 -0.0116 4.9415 -0.5786 -7.8946 2.9478 1.2015 4.1230 -2.2517 -3.5532 1.0659 7.2307 3.0125 -16.5807 -18.4086 -7.0517 0.0000 0.0000 13.5594 11.2915 -5.4501 -8.6407 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.7911 -2.8855 0.3182 -26.5899 22.2997 10.2279 -0.0000 -0.0000 -7.4718 -7.7740 -19.9300 16.8821 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.2983 3.0328 -49.5103 -1.9768 0.0000 -0.0000 20.8562 -13.0223 45.3705 -29.7143 0.0000 -0.0000 2.0427 -3.9575 19.1126 -5.6197 0.0000 -0.0000 -0.1374 -5.4616 -19.9942 -5.1227 0.0000 -0.0000 - 0.4592 -2.4492 23.6434 -0.2714 -1.2061 176.3684 -2.0137 -3.0736 -0.0587 -0.7256 -1.7650 -0.3103 4.4325 -2.0963 5.4088 -0.0146 4.9389 -0.5783 -7.9107 2.9539 1.2005 4.0874 -2.2510 -3.5630 1.0668 7.1983 3.0124 -16.5674 -18.3969 -7.0418 0.0000 0.0000 13.5313 11.3118 -5.4732 -8.6251 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7799 -2.8809 0.3295 -26.5927 22.3097 10.2195 -0.0000 -0.0000 -7.4672 -7.7540 -19.9307 16.8935 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.2970 3.0160 -49.5096 -1.9877 0.0000 -0.0000 20.8619 -13.0154 45.3667 -29.7168 0.0000 -0.0000 2.0347 -3.9714 19.1121 -5.6121 0.0000 -0.0000 -0.1376 -5.4626 -19.9970 -5.1207 0.0000 -0.0000 - 0.4616 -2.4515 23.6433 -0.2706 -1.2100 176.3684 -2.0066 -3.0857 -0.0587 -0.7241 -1.7671 -0.3120 4.4432 -2.1031 5.4019 -0.0163 4.9380 -0.5794 -7.9259 2.9602 1.2009 4.0507 -2.2506 -3.5707 1.0732 7.1688 3.0104 -16.5613 -18.3891 -7.0237 0.0000 0.0000 13.5035 11.3134 -5.5006 -8.6048 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7695 -2.8759 0.3415 -26.5964 22.3170 10.2134 -0.0000 -0.0000 -7.4619 -7.7267 -19.9275 16.9081 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2949 3.0017 -49.5057 -1.9980 0.0000 -0.0000 20.8685 -13.0103 45.3620 -29.7162 0.0000 -0.0000 2.0273 -3.9827 19.1160 -5.6066 0.0000 -0.0000 -0.1359 -5.4636 -20.0022 -5.1180 0.0000 -0.0000 - 0.4640 -2.4540 23.6433 -0.2703 -1.2155 176.3675 -1.9983 -3.1004 -0.0584 -0.7245 -1.7687 -0.3137 4.4554 -2.1104 5.3932 -0.0177 4.9381 -0.5805 -7.9399 2.9664 1.2019 4.0145 -2.2504 -3.5753 1.0868 7.1402 3.0043 -16.5656 -18.3830 -6.9958 0.0000 0.0000 13.4772 11.2947 -5.5346 -8.5808 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.7605 -2.8730 0.3536 -26.6037 22.3244 10.2121 -0.0000 -0.0000 -7.4557 -7.6946 -19.9258 16.9217 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.2927 2.9850 -49.5021 -2.0110 0.0000 -0.0000 20.8785 -13.0048 45.3581 -29.7139 0.0000 -0.0000 2.0192 -3.9958 19.1240 -5.6007 0.0000 -0.0000 -0.1347 -5.4644 -20.0107 -5.1157 0.0000 -0.0000 - 0.4662 -2.4567 23.6434 -0.2700 -1.2202 176.3645 -1.9911 -3.1153 -0.0601 -0.7225 -1.7710 -0.3145 4.4676 -2.1181 5.3859 -0.0192 4.9384 -0.5818 -7.9521 2.9752 1.2040 3.9797 -2.2502 -3.5763 1.1057 7.1174 2.9971 -16.5850 -18.3802 -6.9661 0.0000 0.0000 13.4574 11.2577 -5.5735 -8.5532 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7539 -2.8708 0.3620 -26.6152 22.3307 10.2207 -0.0000 -0.0000 -7.4498 -7.6610 -19.9229 16.9331 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.2893 2.9704 -49.4979 -2.0223 0.0000 -0.0000 20.8891 -12.9995 45.3557 -29.7104 0.0000 -0.0000 2.0123 -4.0070 19.1322 -5.5985 0.0000 -0.0000 -0.1302 -5.4654 -20.0172 -5.1143 0.0000 -0.0000 - 0.4684 -2.4597 23.6434 -0.2720 -1.2270 176.3615 -1.9872 -3.1329 -0.0651 -0.7185 -1.7728 -0.3141 4.4797 -2.1281 5.3781 -0.0205 4.9394 -0.5834 -7.9632 2.9856 1.2077 3.9475 -2.2498 -3.5730 1.1278 7.0990 2.9916 -16.6215 -18.3786 -6.9397 0.0000 0.0000 13.4482 11.2081 -5.6174 -8.5240 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.7512 -2.8696 0.3697 -26.6264 22.3374 10.2339 -0.0000 -0.0000 -7.4422 -7.6340 -19.9202 16.9397 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.2834 2.9536 -49.4967 -2.0343 0.0000 -0.0000 20.9018 -12.9923 45.3557 -29.7061 0.0000 -0.0000 2.0037 -4.0202 19.1369 -5.5986 0.0000 -0.0000 -0.1241 -5.4667 -20.0203 -5.1133 0.0000 -0.0000 - 0.4702 -2.4630 23.6436 -0.2703 -1.2291 176.3564 -1.9771 -3.1460 -0.0663 -0.7162 -1.7765 -0.3180 4.4918 -2.1369 5.3697 -0.0225 4.9398 -0.5834 -7.9728 2.9967 1.2127 3.9190 -2.2475 -3.5651 1.1541 7.0835 2.9814 -16.6693 -18.3774 -6.9021 0.0000 0.0000 13.4419 11.1502 -5.6611 -8.4921 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7529 -2.8687 0.3727 -26.6396 22.3417 10.2575 -0.0000 -0.0000 -7.4360 -7.6146 -19.9166 16.9414 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2792 2.9441 -49.4885 -2.0424 0.0000 -0.0000 20.9113 -12.9873 45.3514 -29.7036 0.0000 -0.0000 1.9976 -4.0276 19.1466 -5.5975 0.0000 -0.0000 -0.1167 -5.4685 -20.0264 -5.1136 0.0000 -0.0000 - 0.4721 -2.4666 23.6437 -0.2694 -1.2341 176.3502 -1.9665 -3.1617 -0.0690 -0.7141 -1.7793 -0.3193 4.5029 -2.1492 5.3606 -0.0238 4.9405 -0.5839 -7.9813 3.0081 1.2193 3.8948 -2.2436 -3.5529 1.1822 7.0697 2.9715 -16.7278 -18.3734 -6.8620 0.0000 0.0000 13.4432 11.0915 -5.7028 -8.4609 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7576 -2.8704 0.3720 -26.6517 22.3476 10.2876 -0.0000 -0.0000 -7.4299 -7.6086 -19.9132 16.9379 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2740 2.9307 -49.4821 -2.0525 0.0000 -0.0000 20.9232 -12.9794 45.3496 -29.7018 0.0000 -0.0000 1.9904 -4.0383 19.1538 -5.5966 0.0000 -0.0000 -0.1091 -5.4702 -20.0289 -5.1136 0.0000 -0.0000 - 0.4738 -2.4705 23.6439 -0.2681 -1.2386 176.3430 -1.9548 -3.1771 -0.0719 -0.7114 -1.7823 -0.3211 4.5132 -2.1625 5.3515 -0.0256 4.9405 -0.5839 -7.9885 3.0198 1.2271 3.8757 -2.2376 -3.5361 1.2105 7.0583 2.9623 -16.7932 -18.3663 -6.8183 0.0000 0.0000 13.4505 11.0411 -5.7395 -8.4315 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7656 -2.8732 0.3676 -26.6634 22.3538 10.3239 -0.0000 -0.0000 -7.4240 -7.6151 -19.9095 16.9273 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2681 2.9186 -49.4745 -2.0615 0.0000 -0.0000 20.9341 -12.9701 45.3475 -29.7030 0.0000 -0.0000 1.9829 -4.0482 19.1587 -5.5956 0.0000 -0.0000 -0.1003 -5.4722 -20.0282 -5.1139 0.0000 -0.0000 - 0.4754 -2.4746 23.6440 -0.2667 -1.2430 176.3351 -1.9421 -3.1924 -0.0751 -0.7086 -1.7853 -0.3230 4.5232 -2.1771 5.3426 -0.0274 4.9404 -0.5835 -7.9943 3.0309 1.2362 3.8616 -2.2292 -3.5158 1.2382 7.0474 2.9545 -16.8608 -18.3534 -6.7693 0.0000 0.0000 13.4619 11.0047 -5.7657 -8.4051 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7754 -2.8780 0.3597 -26.6722 22.3616 10.3639 -0.0000 -0.0000 -7.4191 -7.6337 -19.9050 16.9132 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.2614 2.9072 -49.4651 -2.0699 0.0000 -0.0000 20.9442 -12.9596 45.3449 -29.7072 0.0000 -0.0000 1.9744 -4.0579 19.1612 -5.5941 0.0000 -0.0000 -0.0905 -5.4745 -20.0244 -5.1139 0.0000 -0.0000 - 0.4769 -2.4791 23.6441 -0.2653 -1.2470 176.3263 -1.9288 -3.2077 -0.0787 -0.7060 -1.7882 -0.3248 4.5329 -2.1928 5.3347 -0.0290 4.9397 -0.5825 -7.9987 3.0415 1.2462 3.8526 -2.2188 -3.4927 1.2645 7.0357 2.9488 -16.9240 -18.3318 -6.7137 0.0000 0.0000 13.4756 10.9832 -5.7798 -8.3828 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7852 -2.8850 0.3492 -26.6794 22.3724 10.4052 -0.0000 -0.0000 -7.4141 -7.6581 -19.9020 16.8974 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2536 2.8963 -49.4534 -2.0776 0.0000 -0.0000 20.9528 -12.9475 45.3413 -29.7157 0.0000 -0.0000 1.9648 -4.0673 19.1615 -5.5915 0.0000 -0.0000 -0.0799 -5.4770 -20.0174 -5.1130 0.0000 -0.0000 - 0.4784 -2.4838 23.6441 -0.2705 -1.2538 176.3178 -1.9229 -3.2269 -0.0856 -0.7036 -1.7869 -0.3234 4.5449 -2.2137 5.3266 -0.0306 4.9401 -0.5807 -8.0021 3.0504 1.2560 3.8481 -2.2065 -3.4678 1.2906 7.0190 2.9447 -16.9795 -18.2971 -6.6490 0.0000 0.0000 13.4900 10.9764 -5.7813 -8.3668 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7940 -2.8952 0.3377 -26.6844 22.3878 10.4442 -0.0000 -0.0000 -7.4093 -7.6843 -19.9010 16.8811 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.2385 2.8813 -49.4416 -2.0867 0.0000 -0.0000 20.9613 -12.9324 45.3371 -29.7281 0.0000 -0.0000 1.9463 -4.0807 19.1579 -5.5865 0.0000 -0.0000 -0.0699 -5.4796 -20.0072 -5.1110 0.0000 -0.0000 - 0.4795 -2.4887 23.6441 -0.2669 -1.2542 176.3067 -1.9071 -3.2391 -0.0879 -0.7000 -1.7927 -0.3275 4.5541 -2.2257 5.3221 -0.0316 4.9364 -0.5788 -8.0033 3.0599 1.2678 3.8480 -2.1928 -3.4423 1.3139 7.0061 2.9455 -17.0242 -18.2561 -6.5806 0.0000 0.0000 13.5051 10.9833 -5.7655 -8.3574 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.7994 -2.9037 0.3257 -26.6874 22.4033 10.4783 -0.0000 -0.0000 -7.4039 -7.7065 -19.8999 16.8691 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.2303 2.8759 -49.4217 -2.0913 0.0000 -0.0000 20.9649 -12.9201 45.3290 -29.7464 0.0000 -0.0000 1.9368 -4.0855 19.1569 -5.5828 0.0000 -0.0000 -0.0557 -5.4825 -19.9967 -5.1093 0.0000 -0.0000 - 0.4806 -2.4939 23.6441 -0.2655 -1.2573 176.2974 -1.8931 -3.2553 -0.0925 -0.6987 -1.7952 -0.3291 4.5667 -2.2417 5.3175 -0.0324 4.9358 -0.5776 -8.0037 3.0653 1.2793 3.8516 -2.1777 -3.4169 1.3386 6.9857 2.9470 -17.0563 -18.2005 -6.4995 0.0000 0.0000 13.5181 10.9935 -5.7371 -8.3560 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.8022 -2.9164 0.3152 -26.6888 22.4229 10.5059 -0.0000 -0.0000 -7.3986 -7.7147 -19.9002 16.8649 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.2196 2.8667 -49.3994 -2.0971 0.0000 -0.0000 20.9672 -12.9065 45.3170 -29.7684 0.0000 -0.0000 1.9229 -4.0939 19.1531 -5.5771 0.0000 -0.0000 -0.0418 -5.4853 -19.9851 -5.1064 0.0000 -0.0000 - 0.4818 -2.4994 23.6439 -0.2801 -1.2621 176.2899 -1.8991 -3.2762 -0.1001 -0.6960 -1.7925 -0.3275 4.5828 -2.2619 5.3122 -0.0318 4.9370 -0.5769 -8.0036 3.0683 1.2910 3.8577 -2.1629 -3.3925 1.3634 6.9582 2.9511 -17.0755 -18.1293 -6.4105 0.0000 0.0000 13.5310 10.9987 -5.6980 -8.3625 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.8007 -2.9284 0.3077 -26.6906 22.4428 10.5226 -0.0000 -0.0000 -7.3919 -7.7037 -19.9029 16.8692 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.1917 2.8542 -49.3771 -2.1031 0.0000 -0.0000 20.9687 -12.8906 45.3026 -29.7939 0.0000 -0.0000 1.8898 -4.1057 19.1482 -5.5681 0.0000 -0.0000 -0.0284 -5.4882 -19.9746 -5.1019 0.0000 -0.0000 - 0.4826 -2.5049 23.6438 -0.2758 -1.2626 176.2820 -1.8835 -3.2906 -0.1054 -0.6962 -1.7974 -0.3314 4.6000 -2.2719 5.3105 -0.0319 4.9341 -0.5739 -8.0008 3.0713 1.3020 3.8664 -2.1479 -3.3700 1.3919 6.9311 2.9548 -17.0851 -18.0487 -6.3129 0.0000 0.0000 13.5432 10.9901 -5.6529 -8.3767 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.7936 -2.9430 0.3032 -26.6923 22.4683 10.5289 -0.0000 -0.0000 -7.3836 -7.6697 -19.9085 16.8841 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.1823 2.8490 -49.3448 -2.1061 0.0000 -0.0000 20.9650 -12.8798 45.2803 -29.8229 0.0000 -0.0000 1.8769 -4.1106 19.1479 -5.5618 0.0000 -0.0000 -0.0110 -5.4906 -19.9676 -5.0977 0.0000 -0.0000 - 0.4834 -2.5104 23.6437 -0.2711 -1.2639 176.2771 -1.8718 -3.3070 -0.1100 -0.6924 -1.8003 -0.3342 4.6175 -2.2826 5.3069 -0.0311 4.9306 -0.5737 -7.9954 3.0746 1.3149 3.8766 -2.1340 -3.3508 1.4189 6.9120 2.9656 -17.0920 -17.9689 -6.2245 0.0000 0.0000 13.5633 10.9659 -5.6000 -8.3998 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.7816 -2.9506 0.3003 -26.6962 22.4848 10.5246 -0.0000 -0.0000 -7.3746 -7.6089 -19.9122 16.9116 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.1739 2.8423 -49.3168 -2.1110 0.0000 -0.0000 20.9622 -12.8680 45.2593 -29.8542 0.0000 -0.0000 1.8649 -4.1157 19.1488 -5.5590 0.0000 -0.0000 0.0093 -5.4927 -19.9644 -5.0922 0.0000 -0.0000 - 0.4842 -2.5162 23.6436 -0.2768 -1.2673 176.2767 -1.8740 -3.3273 -0.1179 -0.6892 -1.7978 -0.3349 4.6400 -2.2972 5.3013 -0.0293 4.9290 -0.5733 -7.9890 3.0751 1.3268 3.8874 -2.1214 -3.3341 1.4497 6.8867 2.9752 -17.0942 -17.8773 -6.1292 0.0000 0.0000 13.5851 10.9148 -5.5496 -8.4275 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7658 -2.9581 0.3009 -26.7030 22.5006 10.5096 -0.0000 -0.0000 -7.3658 -7.5241 -19.9186 16.9505 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.1547 2.8323 -49.2890 -2.1161 0.0000 -0.0000 20.9586 -12.8563 45.2334 -29.8863 0.0000 -0.0000 1.8398 -4.1240 19.1508 -5.5543 0.0000 -0.0000 0.0291 -5.4947 -19.9667 -5.0851 0.0000 -0.0000 - 0.4848 -2.5220 23.6435 -0.2708 -1.2686 176.2792 -1.8619 -3.3447 -0.1235 -0.6901 -1.8009 -0.3378 4.6640 -2.3040 5.2960 -0.0263 4.9282 -0.5744 -7.9809 3.0713 1.3374 3.8992 -2.1087 -3.3203 1.4838 6.8616 2.9814 -17.0971 -17.7846 -6.0300 0.0000 0.0000 13.6116 10.8397 -5.5043 -8.4621 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.7463 -2.9692 0.3051 -26.7127 22.5179 10.4833 -0.0000 -0.0000 -7.3541 -7.4196 -19.9277 16.9949 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1473 2.8264 -49.2562 -2.1188 0.0000 -0.0000 20.9514 -12.8488 45.2000 -29.9187 0.0000 -0.0000 1.8271 -4.1286 19.1561 -5.5522 0.0000 -0.0000 0.0516 -5.4962 -19.9746 -5.0763 0.0000 -0.0000 - 0.4856 -2.5279 23.6434 -0.2664 -1.2717 176.2874 -1.8539 -3.3636 -0.1310 -0.6913 -1.8008 -0.3391 4.6908 -2.3134 5.2878 -0.0227 4.9280 -0.5763 -7.9707 3.0660 1.3473 3.9113 -2.0974 -3.3093 1.5200 6.8383 2.9877 -17.1041 -17.6911 -5.9330 0.0000 0.0000 13.6448 10.7460 -5.4667 -8.4997 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7259 -2.9806 0.3100 -26.7256 22.5330 10.4527 -0.0000 -0.0000 -7.3445 -7.3005 -19.9382 17.0443 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.1389 2.8180 -49.2268 -2.1226 0.0000 -0.0000 20.9448 -12.8421 45.1640 -29.9501 0.0000 -0.0000 1.8122 -4.1348 19.1629 -5.5521 0.0000 -0.0000 0.0749 -5.4976 -19.9891 -5.0651 0.0000 -0.0000 - 0.4863 -2.5339 23.6434 -0.2616 -1.2743 176.3005 -1.8482 -3.3818 -0.1375 -0.6911 -1.8007 -0.3415 4.7190 -2.3210 5.2770 -0.0188 4.9277 -0.5785 -7.9580 3.0592 1.3559 3.9234 -2.0869 -3.3011 1.5551 6.8218 2.9941 -17.1174 -17.6047 -5.8436 0.0000 0.0000 13.6865 10.6454 -5.4344 -8.5393 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7043 -2.9895 0.3142 -26.7413 22.5427 10.4155 -0.0000 -0.0000 -7.3355 -7.1810 -19.9487 17.0941 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1313 2.8102 -49.2018 -2.1263 0.0000 -0.0000 20.9388 -12.8367 45.1271 -29.9801 0.0000 -0.0000 1.7976 -4.1401 19.1718 -5.5548 0.0000 -0.0000 0.0998 -5.4989 -20.0102 -5.0514 0.0000 -0.0000 - 0.4872 -2.5402 23.6434 -0.2638 -1.2805 176.3211 -1.8499 -3.4040 -0.1477 -0.6940 -1.7953 -0.3377 4.7500 -2.3332 5.2587 -0.0135 4.9306 -0.5813 -7.9439 3.0463 1.3618 3.9354 -2.0761 -3.2947 1.5912 6.8012 2.9974 -17.1333 -17.5179 -5.7507 0.0000 0.0000 13.7308 10.5448 -5.4105 -8.5775 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6836 -3.0049 0.3167 -26.7613 22.5540 10.3796 -0.0000 -0.0000 -7.3305 -7.0668 -19.9625 17.1396 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.1175 2.7972 -49.1826 -2.1311 0.0000 -0.0000 20.9338 -12.8310 45.0877 -30.0070 0.0000 -0.0000 1.7745 -4.1498 19.1803 -5.5582 0.0000 -0.0000 0.1237 -5.5001 -20.0383 -5.0339 0.0000 -0.0000 - 0.4879 -2.5464 23.6435 -0.2573 -1.2809 176.3442 -1.8463 -3.4160 -0.1513 -0.6907 -1.7973 -0.3455 4.7770 -2.3374 5.2459 -0.0086 4.9275 -0.5841 -7.9261 3.0373 1.3673 3.9476 -2.0659 -3.2914 1.6202 6.8010 3.0051 -17.1579 -17.4510 -5.6781 0.0000 0.0000 13.7863 10.4688 -5.3853 -8.6156 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6616 -3.0130 0.3163 -26.7816 22.5584 10.3386 -0.0000 -0.0000 -7.3260 -6.9733 -19.9735 17.1772 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1119 2.7927 -49.1676 -2.1332 0.0000 -0.0000 20.9288 -12.8281 45.0508 -30.0334 0.0000 -0.0000 1.7617 -4.1514 19.1900 -5.5672 0.0000 -0.0000 0.1521 -5.5022 -20.0692 -5.0140 0.0000 -0.0000 - 0.4889 -2.5528 23.6436 -0.2524 -1.2847 176.3738 -1.8404 -3.4307 -0.1563 -0.6941 -1.7963 -0.3461 4.8063 -2.3436 5.2248 -0.0032 4.9284 -0.5886 -7.9072 3.0195 1.3693 3.9599 -2.0545 -3.2890 1.6482 6.7926 3.0075 -17.1774 -17.3837 -5.5930 0.0000 0.0000 13.8361 10.4166 -5.3631 -8.6476 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6446 -3.0345 0.3116 -26.8035 22.5701 10.3066 -0.0000 -0.0000 -7.3279 -6.9053 -19.9885 17.2022 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.1054 2.7835 -49.1553 -2.1362 0.0000 -0.0000 20.9244 -12.8261 45.0096 -30.0566 0.0000 -0.0000 1.7455 -4.1571 19.2014 -5.5754 0.0000 -0.0000 0.1780 -5.5042 -20.1084 -4.9907 0.0000 -0.0000 - 0.4901 -2.5594 23.6437 -0.2527 -1.2909 176.4103 -1.8402 -3.4464 -0.1650 -0.6960 -1.7915 -0.3443 4.8337 -2.3533 5.1989 0.0024 4.9297 -0.5897 -7.8856 2.9982 1.3668 3.9717 -2.0418 -3.2875 1.6710 6.7868 3.0101 -17.1968 -17.3233 -5.5131 0.0000 0.0000 13.8858 10.4064 -5.3370 -8.6758 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.6278 -3.0619 0.3024 -26.8272 22.5864 10.2774 -0.0000 -0.0000 -7.3328 -6.8713 -20.0050 17.2116 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0945 2.7705 -49.1527 -2.1406 0.0000 -0.0000 20.9224 -12.8225 44.9710 -30.0771 0.0000 -0.0000 1.7230 -4.1661 19.2095 -5.5854 0.0000 -0.0000 0.2038 -5.5066 -20.1509 -4.9643 0.0000 -0.0000 - 0.4913 -2.5660 23.6437 -0.2468 -1.2932 176.4494 -1.8323 -3.4540 -0.1670 -0.6959 -1.7911 -0.3511 4.8558 -2.3585 5.1772 0.0081 4.9284 -0.5933 -7.8624 2.9758 1.3632 3.9847 -2.0289 -3.2878 1.6869 6.7878 3.0148 -17.2110 -17.2733 -5.4360 0.0000 0.0000 13.9308 10.4398 -5.3003 -8.6968 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6137 -3.0948 0.2885 -26.8486 22.6071 10.2556 -0.0000 -0.0000 -7.3431 -6.8763 -20.0193 17.2062 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0889 2.7636 -49.1501 -2.1412 0.0000 -0.0000 20.9183 -12.8219 44.9309 -30.0967 0.0000 -0.0000 1.7075 -4.1696 19.2164 -5.5992 0.0000 -0.0000 0.2327 -5.5101 -20.1947 -4.9372 0.0000 -0.0000 - 0.4927 -2.5729 23.6438 -0.2435 -1.2989 176.4929 -1.8238 -3.4624 -0.1726 -0.6982 -1.7878 -0.3510 4.8778 -2.3662 5.1497 0.0123 4.9275 -0.5938 -7.8371 2.9488 1.3543 3.9973 -2.0148 -3.2889 1.6994 6.7843 3.0164 -17.2180 -17.2237 -5.3535 0.0000 0.0000 13.9670 10.5111 -5.2557 -8.7121 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.5992 -3.1397 0.2692 -26.8722 22.6391 10.2414 -0.0000 -0.0000 -7.3566 -6.9157 -20.0371 17.1847 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0812 2.7514 -49.1528 -2.1435 0.0000 -0.0000 20.9157 -12.8195 44.8915 -30.1142 0.0000 -0.0000 1.6877 -4.1779 19.2220 -5.6117 0.0000 -0.0000 0.2595 -5.5140 -20.2417 -4.9090 0.0000 -0.0000 - 0.4944 -2.5799 23.6437 -0.2413 -1.3050 176.5394 -1.8140 -3.4683 -0.1764 -0.6994 -1.7837 -0.3519 4.8957 -2.3739 5.1210 0.0163 4.9255 -0.5945 -7.8109 2.9186 1.3425 4.0102 -1.9998 -3.2904 1.7073 6.7799 3.0180 -17.2185 -17.1778 -5.2685 0.0000 0.0000 13.9944 10.6114 -5.1998 -8.7228 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.5883 -3.1926 0.2464 -26.8926 22.6780 10.2345 -0.0000 -0.0000 -7.3743 -6.9868 -20.0537 17.1514 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0721 2.7388 -49.1576 -2.1446 0.0000 -0.0000 20.9122 -12.8167 44.8518 -30.1304 0.0000 -0.0000 1.6660 -4.1870 19.2247 -5.6248 0.0000 -0.0000 0.2868 -5.5187 -20.2892 -4.8819 0.0000 -0.0000 - 0.4963 -2.5874 23.6437 -0.2625 -1.3131 176.5889 -1.8282 -3.4755 -0.1819 -0.6984 -1.7757 -0.3498 4.9119 -2.3831 5.0895 0.0200 4.9217 -0.5946 -7.7844 2.8858 1.3293 4.0224 -1.9855 -3.2942 1.7132 6.7683 3.0187 -17.2155 -17.1286 -5.1802 0.0000 0.0000 14.0132 10.7245 -5.1329 -8.7303 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.5760 -3.2487 0.2213 -26.9117 22.7206 10.2300 -0.0000 -0.0000 -7.3944 -7.0827 -20.0687 17.1108 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0373 2.7221 -49.1661 -2.1440 0.0000 -0.0000 20.9079 -12.8107 44.8115 -30.1462 0.0000 -0.0000 1.6160 -4.2013 19.2252 -5.6325 0.0000 -0.0000 0.3118 -5.5247 -20.3387 -4.8564 0.0000 -0.0000 - 0.4982 -2.5947 23.6436 -0.2545 -1.3169 176.6376 -1.8057 -3.4718 -0.1811 -0.6990 -1.7733 -0.3546 4.9230 -2.3884 5.0629 0.0212 4.9170 -0.5947 -7.7555 2.8514 1.3129 4.0349 -1.9704 -3.2984 1.7183 6.7619 3.0186 -17.2153 -17.0874 -5.0951 0.0000 0.0000 14.0258 10.8339 -5.0614 -8.7359 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.5613 -3.3173 0.1938 -26.9324 22.7759 10.2341 -0.0000 -0.0000 -7.4144 -7.1903 -20.0832 17.0636 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0320 2.7135 -49.1666 -2.1389 0.0000 -0.0000 20.8978 -12.8095 44.7664 -30.1617 0.0000 -0.0000 1.5988 -4.2082 19.2266 -5.6453 0.0000 -0.0000 0.3415 -5.5310 -20.3878 -4.8366 0.0000 -0.0000 - 0.5006 -2.6021 23.6435 -0.2515 -1.3265 176.6900 -1.7842 -3.4710 -0.1850 -0.7005 -1.7672 -0.3531 4.9311 -2.3957 5.0307 0.0220 4.9098 -0.5918 -7.7269 2.8157 1.2944 4.0468 -1.9573 -3.3035 1.7261 6.7498 3.0111 -17.2188 -17.0455 -5.0029 0.0000 0.0000 14.0327 10.9153 -4.9894 -8.7432 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.5471 -3.3917 0.1659 -26.9498 22.8378 10.2399 -0.0000 -0.0000 -7.4337 -7.2997 -20.0960 17.0169 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0227 2.6963 -49.1718 -2.1368 0.0000 -0.0000 20.8883 -12.8048 44.7215 -30.1758 0.0000 -0.0000 1.5751 -4.2232 19.2213 -5.6560 0.0000 -0.0000 0.3699 -5.5375 -20.4347 -4.8211 0.0000 -0.0000 - 0.5030 -2.6100 23.6434 -0.2704 -1.3342 176.7420 -1.7850 -3.4669 -0.1873 -0.7005 -1.7600 -0.3523 4.9400 -2.4027 4.9997 0.0220 4.9015 -0.5908 -7.6989 2.7790 1.2750 4.0577 -1.9458 -3.3098 1.7371 6.7309 3.0023 -17.2357 -17.0005 -4.9147 0.0000 0.0000 14.0416 10.9545 -4.9250 -8.7536 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.5290 -3.4648 0.1389 -26.9688 22.8979 10.2459 -0.0000 -0.0000 -7.4514 -7.3973 -20.1076 16.9741 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0126 2.6814 -49.1696 -2.1274 0.0000 -0.0000 20.8721 -12.8000 44.6686 -30.1902 0.0000 -0.0000 1.5242 -4.2389 19.2201 -5.6593 0.0000 -0.0000 0.3964 -5.5452 -20.4867 -4.8115 0.0000 -0.0000 - 0.5058 -2.6175 23.6432 -0.2676 -1.3451 176.7953 -1.7604 -3.4617 -0.1885 -0.6981 -1.7511 -0.3514 4.9424 -2.4086 4.9665 0.0208 4.8877 -0.5884 -7.6696 2.7445 1.2562 4.0682 -1.9363 -3.3179 1.7523 6.7216 2.9880 -17.2709 -16.9706 -4.8330 0.0000 0.0000 14.0564 10.9453 -4.8700 -8.7706 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.5074 -3.5369 0.1129 -26.9865 22.9567 10.2507 -0.0000 -0.0000 -7.4652 -7.4708 -20.1127 16.9434 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0229 2.6621 -49.1765 -2.1230 0.0000 -0.0000 20.8580 -12.7924 44.6236 -30.2031 0.0000 -0.0000 1.4990 -4.2571 19.2088 -5.6680 0.0000 -0.0000 0.4269 -5.5524 -20.5298 -4.8088 0.0000 -0.0000 - 0.5087 -2.6252 23.6431 -0.2649 -1.3550 176.8482 -1.7331 -3.4531 -0.1909 -0.6975 -1.7426 -0.3514 4.9453 -2.4143 4.9348 0.0186 4.8744 -0.5838 -7.6406 2.7104 1.2357 4.0778 -1.9297 -3.3262 1.7724 6.7116 2.9685 -17.3280 -16.9457 -4.7597 0.0000 0.0000 14.0825 10.8843 -4.8358 -8.7940 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.4856 -3.6096 0.0890 -26.9996 23.0171 10.2522 -0.0000 -0.0000 -7.4740 -7.5156 -20.1198 16.9219 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0347 2.6450 -49.1757 -2.1141 0.0000 -0.0000 20.8379 -12.7865 44.5706 -30.2154 0.0000 -0.0000 1.4723 -4.2749 19.2012 -5.6736 0.0000 -0.0000 0.4571 -5.5600 -20.5768 -4.8124 0.0000 -0.0000 - 0.5119 -2.6333 23.6429 -0.2895 -1.3659 176.9011 -1.7357 -3.4443 -0.1944 -0.6962 -1.7327 -0.3482 4.9515 -2.4197 4.9020 0.0160 4.8590 -0.5821 -7.6119 2.6773 1.2166 4.0855 -1.9264 -3.3357 1.7982 6.6956 2.9450 -17.4036 -16.9219 -4.6889 0.0000 0.0000 14.1196 10.7766 -4.8234 -8.8246 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4610 -3.6683 0.0674 -27.0111 23.0610 10.2466 -0.0000 -0.0000 -7.4792 -7.5242 -20.1245 16.9171 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0762 2.6253 -49.1734 -2.1031 0.0000 -0.0000 20.8153 -12.7783 44.5140 -30.2266 0.0000 -0.0000 1.4134 -4.2970 19.1910 -5.6723 0.0000 -0.0000 0.4849 -5.5685 -20.6227 -4.8212 0.0000 -0.0000 - 0.5150 -2.6409 23.6428 -0.2827 -1.3756 176.9530 -1.7037 -3.4315 -0.1950 -0.6932 -1.7229 -0.3497 4.9524 -2.4243 4.8699 0.0136 4.8445 -0.5771 -7.5836 2.6431 1.1967 4.0937 -1.9237 -3.3447 1.8241 6.6927 2.9166 -17.4974 -16.9222 -4.6284 0.0000 0.0000 14.1688 10.6452 -4.8256 -8.8576 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4367 -3.7350 0.0480 -27.0229 23.1120 10.2451 -0.0000 -0.0000 -7.4795 -7.4951 -20.1312 16.9204 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0844 2.6088 -49.1750 -2.0914 0.0000 -0.0000 20.7911 -12.7707 44.4625 -30.2363 0.0000 -0.0000 1.3903 -4.3156 19.1820 -5.6753 0.0000 -0.0000 0.5154 -5.5760 -20.6680 -4.8355 0.0000 -0.0000 - 0.5186 -2.6487 23.6427 -0.2902 -1.3893 177.0052 -1.6884 -3.4221 -0.1975 -0.6902 -1.7114 -0.3467 4.9558 -2.4274 4.8348 0.0113 4.8280 -0.5739 -7.5547 2.6091 1.1784 4.1004 -1.9236 -3.3540 1.8524 6.6860 2.8861 -17.5998 -16.9277 -4.5691 0.0000 0.0000 14.2279 10.5056 -4.8435 -8.8959 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4125 -3.7888 0.0287 -27.0293 23.1465 10.2391 -0.0000 -0.0000 -7.4784 -7.4336 -20.1373 16.9403 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1063 2.5854 -49.1803 -2.0832 0.0000 -0.0000 20.7691 -12.7601 44.4122 -30.2437 0.0000 -0.0000 1.3508 -4.3408 19.1704 -5.6741 0.0000 -0.0000 0.5427 -5.5834 -20.7118 -4.8525 0.0000 -0.0000 - 0.5220 -2.6563 23.6426 -0.2892 -1.3992 177.0549 -1.6638 -3.4070 -0.1967 -0.6883 -1.7011 -0.3462 4.9590 -2.4310 4.8027 0.0092 4.8145 -0.5730 -7.5246 2.5740 1.1609 4.1063 -1.9240 -3.3629 1.8790 6.6828 2.8554 -17.7044 -16.9464 -4.5117 0.0000 0.0000 14.2922 10.3858 -4.8654 -8.9326 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3878 -3.8380 0.0114 -27.0345 23.1748 10.2324 -0.0000 -0.0000 -7.4747 -7.3451 -20.1459 16.9699 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1201 2.5676 -49.1834 -2.0725 0.0000 -0.0000 20.7450 -12.7516 44.3620 -30.2500 0.0000 -0.0000 1.3214 -4.3611 19.1603 -5.6741 0.0000 -0.0000 0.5715 -5.5908 -20.7543 -4.8722 0.0000 -0.0000 - 0.5255 -2.6637 23.6425 -0.2858 -1.4095 177.1031 -1.6378 -3.3917 -0.1975 -0.6869 -1.6908 -0.3459 4.9633 -2.4343 4.7723 0.0074 4.8031 -0.5702 -7.4939 2.5382 1.1426 4.1115 -1.9247 -3.3707 1.9003 6.6793 2.8250 -17.8018 -16.9738 -4.4534 0.0000 0.0000 14.3579 10.3084 -4.8810 -8.9659 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3652 -3.8829 -0.0042 -27.0369 23.1993 10.2244 -0.0000 -0.0000 -7.4690 -7.2390 -20.1589 17.0039 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.1304 2.5490 -49.1899 -2.0639 0.0000 -0.0000 20.7232 -12.7427 44.3157 -30.2546 0.0000 -0.0000 1.2956 -4.3816 19.1500 -5.6747 0.0000 -0.0000 0.5996 -5.5981 -20.7950 -4.8923 0.0000 -0.0000 - 0.5293 -2.6713 23.6424 -0.3008 -1.4226 177.1500 -1.6348 -3.3804 -0.1994 -0.6836 -1.6798 -0.3430 4.9701 -2.4355 4.7406 0.0061 4.7931 -0.5676 -7.4632 2.4999 1.1241 4.1159 -1.9256 -3.3777 1.9149 6.6654 2.7977 -17.8848 -16.9993 -4.3889 0.0000 0.0000 14.4178 10.2883 -4.8794 -8.9939 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3465 -3.9221 -0.0203 -27.0370 23.2167 10.2195 -0.0000 -0.0000 -7.4658 -7.1256 -20.1755 17.0418 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1594 2.5249 -49.2027 -2.0583 0.0000 -0.0000 20.7060 -12.7302 44.2752 -30.2570 0.0000 -0.0000 1.2484 -4.4074 19.1408 -5.6694 0.0000 -0.0000 0.6224 -5.6055 -20.8359 -4.9110 0.0000 -0.0000 - 0.5328 -2.6785 23.6422 -0.2947 -1.4303 177.1919 -1.6083 -3.3621 -0.1965 -0.6825 -1.6703 -0.3436 4.9743 -2.4386 4.7147 0.0058 4.7870 -0.5683 -7.4303 2.4613 1.1077 4.1197 -1.9248 -3.3836 1.9197 6.6534 2.7753 -17.9514 -17.0322 -4.3185 0.0000 0.0000 14.4651 10.3318 -4.8438 -9.0144 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3292 -3.9592 -0.0328 -27.0358 23.2353 10.2177 -0.0000 -0.0000 -7.4646 -7.0153 -20.1951 17.0808 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.1664 2.5088 -49.2131 -2.0527 0.0000 -0.0000 20.6903 -12.7218 44.2386 -30.2598 0.0000 -0.0000 1.2278 -4.4245 19.1332 -5.6710 0.0000 -0.0000 0.6489 -5.6129 -20.8723 -4.9290 0.0000 -0.0000 - 0.5364 -2.6855 23.6421 -0.2911 -1.4410 177.2311 -1.5862 -3.3481 -0.1947 -0.6810 -1.6609 -0.3414 4.9799 -2.4394 4.6890 0.0048 4.7833 -0.5677 -7.3968 2.4215 1.0901 4.1237 -1.9233 -3.3883 1.9156 6.6297 2.7579 -18.0098 -17.0581 -4.2450 0.0000 0.0000 14.4987 10.4264 -4.7713 -9.0296 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.3142 -3.9945 -0.0450 -27.0364 23.2540 10.2210 -0.0000 -0.0000 -7.4660 -6.9181 -20.2171 17.1148 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1745 2.4872 -49.2291 -2.0527 0.0000 -0.0000 20.6810 -12.7111 44.2095 -30.2609 0.0000 -0.0000 1.2051 -4.4454 19.1269 -5.6709 0.0000 -0.0000 0.6716 -5.6201 -20.9071 -4.9442 0.0000 -0.0000 - 0.5401 -2.6926 23.6419 -0.3000 -1.4542 177.2677 -1.5800 -3.3382 -0.1930 -0.6764 -1.6510 -0.3398 4.9850 -2.4374 4.6635 0.0040 4.7793 -0.5653 -7.3630 2.3821 1.0727 4.1264 -1.9207 -3.3920 1.8989 6.5934 2.7449 -18.0716 -17.0748 -4.1708 0.0000 0.0000 14.5179 10.5426 -4.6530 -9.0426 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3023 -4.0260 -0.0550 -27.0384 23.2743 10.2303 -0.0000 -0.0000 -7.4722 -6.8408 -20.2404 17.1433 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1950 2.4612 -49.2519 -2.0563 0.0000 -0.0000 20.6784 -12.6974 44.1892 -30.2610 0.0000 -0.0000 1.1692 -4.4699 19.1210 -5.6687 0.0000 -0.0000 0.6909 -5.6275 -20.9398 -4.9562 0.0000 -0.0000 - 0.5434 -2.6994 23.6417 -0.2954 -1.4608 177.2969 -1.5552 -3.3204 -0.1895 -0.6766 -1.6439 -0.3384 4.9893 -2.4388 4.6455 0.0030 4.7809 -0.5659 -7.3280 2.3448 1.0571 4.1285 -1.9164 -3.3946 1.8723 6.5464 2.7373 -18.1614 -17.0806 -4.1041 0.0000 0.0000 14.5250 10.6326 -4.4919 -9.0579 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.2900 -4.0555 -0.0579 -27.0435 23.3014 10.2422 -0.0000 -0.0000 -7.4805 -6.7884 -20.2640 17.1642 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.2026 2.4445 -49.2628 -2.0581 0.0000 -0.0000 20.6757 -12.6899 44.1664 -30.2631 0.0000 -0.0000 1.1502 -4.4852 19.1213 -5.6690 0.0000 -0.0000 0.7115 -5.6352 -20.9707 -4.9662 0.0000 -0.0000 - 0.5469 -2.7062 23.6415 -0.2968 -1.4718 177.3234 -1.5391 -3.3094 -0.1849 -0.6726 -1.6360 -0.3376 4.9922 -2.4357 4.6259 0.0006 4.7798 -0.5629 -7.2929 2.3119 1.0406 4.1291 -1.9116 -3.3959 1.8318 6.4876 2.7295 -18.3137 -17.0773 -4.0598 0.0000 0.0000 14.5343 10.6427 -4.2964 -9.0873 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.2779 -4.0803 -0.0584 -27.0536 23.3321 10.2599 -0.0000 -0.0000 -7.4913 -6.7626 -20.2843 17.1753 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2153 2.4209 -49.2817 -2.0653 0.0000 -0.0000 20.6806 -12.6785 44.1540 -30.2643 0.0000 -0.0000 1.1255 -4.5058 19.1206 -5.6684 0.0000 -0.0000 0.7288 -5.6428 -20.9979 -4.9732 0.0000 -0.0000 - 0.5501 -2.7128 23.6413 -0.2944 -1.4794 177.3434 -1.5152 -3.2940 -0.1811 -0.6716 -1.6300 -0.3343 4.9947 -2.4339 4.6109 -0.0029 4.7785 -0.5639 -7.2576 2.2862 1.0282 4.1283 -1.9066 -3.3960 1.7825 6.4155 2.7217 -18.5671 -17.0612 -4.0450 0.0000 0.0000 14.5527 10.5083 -4.0795 -9.1369 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2647 -4.0920 -0.0490 -27.0641 23.3608 10.2744 -0.0000 -0.0000 -7.5021 -6.7632 -20.2963 17.1795 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2249 2.4018 -49.2909 -2.0725 0.0000 -0.0000 20.6872 -12.6710 44.1398 -30.2673 0.0000 -0.0000 1.1063 -4.5220 19.1236 -5.6684 0.0000 -0.0000 0.7464 -5.6504 -21.0222 -4.9784 0.0000 -0.0000 - 0.5532 -2.7194 23.6411 -0.2945 -1.4884 177.3590 -1.4931 -3.2818 -0.1745 -0.6680 -1.6240 -0.3339 4.9941 -2.4287 4.5928 -0.0073 4.7751 -0.5610 -7.2233 2.2666 1.0171 4.1255 -1.9015 -3.3935 1.7208 6.3321 2.7103 -18.9703 -17.0403 -4.0832 0.0000 0.0000 14.6023 10.1777 -3.8589 -9.2169 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.2490 -4.0970 -0.0338 -27.0816 23.3921 10.2947 -0.0000 -0.0000 -7.5141 -6.7826 -20.3000 17.1740 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.2375 2.3808 -49.3009 -2.0810 0.0000 -0.0000 20.6974 -12.6619 44.1313 -30.2705 0.0000 -0.0000 1.0847 -4.5398 19.1284 -5.6661 0.0000 -0.0000 0.7611 -5.6579 -21.0441 -4.9814 0.0000 -0.0000 - 0.5563 -2.7262 23.6409 -0.3097 -1.4976 177.3702 -1.4865 -3.2712 -0.1696 -0.6634 -1.6195 -0.3333 4.9950 -2.4193 4.5742 -0.0134 4.7668 -0.5576 -7.1908 2.2573 1.0090 4.1201 -1.8975 -3.3885 1.6479 6.2365 2.6901 -19.5696 -17.0159 -4.1853 0.0000 0.0000 14.7010 9.6058 -3.6546 -9.3391 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2289 -4.0808 -0.0086 -27.1000 23.4136 10.3075 -0.0000 -0.0000 -7.5229 -6.8174 -20.2913 17.1631 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.2670 2.3589 -49.3071 -2.0893 0.0000 -0.0000 20.7095 -12.6522 44.1233 -30.2747 0.0000 -0.0000 1.0462 -4.5591 19.1338 -5.6600 0.0000 -0.0000 0.7733 -5.6656 -21.0630 -4.9827 0.0000 -0.0000 - 0.5590 -2.7327 23.6408 -0.3051 -1.5025 177.3739 -1.4539 -3.2551 -0.1645 -0.6604 -1.6145 -0.3309 4.9912 -2.4156 4.5574 -0.0195 4.7584 -0.5567 -7.1591 2.2605 1.0043 4.1121 -1.8945 -3.3789 1.5615 6.1411 2.6539 -20.4063 -17.0062 -4.3611 0.0000 0.0000 14.8642 8.7650 -3.4792 -9.5120 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.2029 -4.0469 0.0266 -27.1188 23.4296 10.3149 -0.0000 -0.0000 -7.5251 -6.8615 -20.2691 17.1438 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -0.2770 2.3440 -49.3028 -2.0958 0.0000 -0.0000 20.7205 -12.6464 44.1143 -30.2801 0.0000 -0.0000 1.0319 -4.5717 19.1414 -5.6577 0.0000 -0.0000 0.7880 -5.6726 -21.0760 -4.9835 0.0000 -0.0000 - 0.5618 -2.7391 23.6407 -0.3030 -1.5098 177.3735 -1.4244 -3.2429 -0.1591 -0.6557 -1.6104 -0.3298 4.9880 -2.4052 4.5346 -0.0274 4.7423 -0.5548 -7.1290 2.2749 1.0043 4.1009 -1.8928 -3.3646 1.4575 6.0450 2.6036 -21.5204 -17.0165 -4.6301 0.0000 0.0000 15.1122 7.6429 -3.3383 -9.7446 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.1717 -3.9880 0.0711 -27.1331 23.4291 10.3141 -0.0000 -0.0000 -7.5212 -6.9067 -20.2300 17.1203 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.2898 2.3259 -49.2980 -2.1039 0.0000 -0.0000 20.7339 -12.6386 44.1086 -30.2855 0.0000 -0.0000 1.0152 -4.5874 19.1475 -5.6539 0.0000 -0.0000 0.8008 -5.6789 -21.0840 -4.9832 0.0000 -0.0000 - 0.5644 -2.7458 23.6406 -0.3123 -1.5178 177.3676 -1.4079 -3.2336 -0.1557 -0.6485 -1.6082 -0.3294 4.9846 -2.3878 4.5070 -0.0348 4.7195 -0.5499 -7.1020 2.3004 1.0062 4.0868 -1.8912 -3.3429 1.3317 5.9501 2.5340 -22.9428 -17.0547 -5.0029 0.0000 0.0000 15.4624 6.2455 -3.2288 -10.0444 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.1340 -3.8995 0.1244 -27.1416 23.4084 10.3005 -0.0000 -0.0000 -7.5086 -6.9464 -20.1748 17.0925 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3160 2.3069 -49.2916 -2.1111 0.0000 -0.0000 20.7479 -12.6281 44.1061 -30.2908 0.0000 -0.0000 0.9861 -4.6048 19.1530 -5.6473 0.0000 -0.0000 0.8119 -5.6847 -21.0863 -4.9818 0.0000 -0.0000 - 0.5668 -2.7523 23.6406 -0.3116 -1.5228 177.3547 -1.3806 -3.2205 -0.1507 -0.6435 -1.6045 -0.3289 4.9839 -2.3759 4.4764 -0.0427 4.6968 -0.5514 -7.0763 2.3356 1.0150 4.0695 -1.8903 -3.3129 1.1834 5.8590 2.4465 -24.6812 -17.1274 -5.4750 0.0000 0.0000 15.9141 4.5890 -3.1308 -10.4085 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.0922 -3.7873 0.1866 -27.1407 23.3704 10.2827 -0.0000 -0.0000 -7.4895 -6.9798 -20.1033 17.0592 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.3334 2.2931 -49.2761 -2.1153 0.0000 -0.0000 20.7596 -12.6193 44.1020 -30.2959 0.0000 -0.0000 0.9689 -4.6181 19.1624 -5.6411 0.0000 -0.0000 0.8234 -5.6897 -21.0854 -4.9805 0.0000 -0.0000 - 0.5691 -2.7589 23.6405 -0.3117 -1.5284 177.3348 -1.3555 -3.2104 -0.1469 -0.6380 -1.6023 -0.3290 4.9839 -2.3590 4.4403 -0.0487 4.6717 -0.5508 -7.0533 2.3772 1.0251 4.0496 -1.8889 -3.2730 1.0086 5.7694 2.3333 -26.7317 -17.2409 -6.0441 0.0000 0.0000 16.4718 2.7165 -3.0138 -10.8306 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.0462 -3.6504 0.2545 -27.1284 23.3139 10.2556 -0.0000 -0.0000 -7.4614 -6.9997 -20.0211 17.0228 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3528 2.2788 -49.2585 -2.1193 0.0000 -0.0000 20.7721 -12.6076 44.1021 -30.3003 0.0000 -0.0000 0.9517 -4.6320 19.1738 -5.6341 0.0000 -0.0000 0.8338 -5.6940 -21.0796 -4.9788 0.0000 -0.0000 - 0.5712 -2.7655 23.6405 -0.3174 -1.5341 177.3073 -1.3401 -3.2034 -0.1450 -0.6325 -1.6022 -0.3292 4.9875 -2.3365 4.3983 -0.0524 4.6462 -0.5485 -7.0333 2.4225 1.0366 4.0274 -1.8863 -3.2225 0.8052 5.6787 2.1953 -29.0649 -17.3978 -6.6992 0.0000 0.0000 17.1289 0.6925 -2.8381 -11.2910 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.9977 -3.4927 0.3286 -27.1018 23.2424 10.2200 -0.0000 -0.0000 -7.4251 -7.0097 -19.9276 16.9809 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.3796 2.2646 -49.2383 -2.1226 0.0000 -0.0000 20.7852 -12.5928 44.1060 -30.3034 0.0000 -0.0000 0.9294 -4.6464 19.1882 -5.6260 0.0000 -0.0000 0.8430 -5.6980 -21.0694 -4.9764 0.0000 -0.0000 - 0.5732 -2.7721 23.6404 -0.3162 -1.5389 177.2691 -1.3224 -3.1951 -0.1414 -0.6278 -1.6005 -0.3304 4.9958 -2.3184 4.3569 -0.0544 4.6198 -0.5530 -7.0133 2.4752 1.0543 4.0039 -1.8830 -3.1625 0.5699 5.6018 2.0494 -31.6290 -17.6064 -7.4491 0.0000 0.0000 17.8832 -1.3903 -2.5591 -11.7593 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.9492 -3.3098 0.4037 -27.0616 23.1509 10.1876 -0.0000 -0.0000 -7.3860 -7.0108 -19.8229 16.9362 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.4007 2.2523 -49.2133 -2.1254 0.0000 -0.0000 20.7995 -12.5759 44.1152 -30.3064 0.0000 -0.0000 0.9170 -4.6587 19.2081 -5.6196 0.0000 -0.0000 0.8527 -5.7013 -21.0535 -4.9754 0.0000 -0.0000 - 0.5750 -2.7786 23.6403 -0.3173 -1.5443 177.2211 -1.3130 -3.1919 -0.1397 -0.6240 -1.6015 -0.3312 5.0097 -2.2927 4.3112 -0.0533 4.5954 -0.5533 -6.9956 2.5261 1.0711 3.9799 -1.8768 -3.0927 0.3077 5.5208 1.8868 -34.3391 -17.8578 -8.2517 0.0000 0.0000 18.7147 -3.4311 -2.1524 -12.1956 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.9009 -3.1142 0.4815 -27.0079 23.0536 10.1507 -0.0000 -0.0000 -7.3404 -7.0075 -19.7145 16.8871 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.4253 2.2391 -49.1860 -2.1294 0.0000 -0.0000 20.8163 -12.5552 44.1306 -30.3078 0.0000 -0.0000 0.9046 -4.6715 19.2337 -5.6140 0.0000 -0.0000 0.8618 -5.7048 -21.0332 -4.9746 0.0000 -0.0000 - 0.5766 -2.7851 23.6401 -0.3164 -1.5492 177.1606 -1.3081 -3.1895 -0.1381 -0.6217 -1.6032 -0.3329 5.0299 -2.2690 4.2696 -0.0482 4.5788 -0.5583 -6.9798 2.5715 1.0904 3.9564 -1.8675 -3.0146 0.0280 5.4281 1.7227 -37.0885 -18.1400 -9.0741 0.0000 0.0000 19.6055 -5.3264 -1.6044 -12.5581 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.8579 -2.9161 0.5620 -26.9445 22.9603 10.1222 -0.0000 -0.0000 -7.2948 -7.0030 -19.6069 16.8345 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.4495 2.2270 -49.1538 -2.1341 0.0000 -0.0000 20.8365 -12.5316 44.1527 -30.3082 0.0000 -0.0000 0.8972 -4.6825 19.2670 -5.6103 0.0000 -0.0000 0.8710 -5.7088 -21.0079 -4.9751 0.0000 -0.0000 - 0.5779 -2.7915 23.6399 -0.3144 -1.5537 177.0871 -1.3090 -3.1891 -0.1365 -0.6211 -1.6062 -0.3341 5.0571 -2.2447 4.2332 -0.0397 4.5698 -0.5651 -6.9652 2.6096 1.1093 3.9347 -1.8552 -2.9305 -0.2583 5.3163 1.5682 -39.7623 -18.4394 -9.8824 0.0000 0.0000 20.5431 -6.9834 -0.9200 -12.8147 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.8201 -2.7210 0.6432 -26.8773 22.8790 10.1032 -0.0000 -0.0000 -7.2500 -7.0017 -19.5053 16.7794 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.4738 2.2152 -49.1170 -2.1406 0.0000 -0.0000 20.8611 -12.5050 44.1824 -30.3083 0.0000 -0.0000 0.8947 -4.6922 19.3084 -5.6087 0.0000 -0.0000 0.8805 -5.7133 -20.9771 -4.9773 0.0000 -0.0000 - 0.5791 -2.7978 23.6396 -0.3123 -1.5581 176.9995 -1.3177 -3.1910 -0.1344 -0.6220 -1.6105 -0.3351 5.0919 -2.2179 4.2031 -0.0281 4.5648 -0.5708 -6.9522 2.6428 1.1282 3.9155 -1.8408 -2.8444 -0.5443 5.1929 1.4377 -42.2510 -18.7517 -10.6537 0.0000 0.0000 21.5181 -8.3275 -0.1122 -12.9397 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.7904 -2.5281 0.7225 -26.8100 22.8118 10.0968 -0.0000 -0.0000 -7.2083 -7.0086 -19.4101 16.7247 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.4994 2.2033 -49.0744 -2.1496 0.0000 -0.0000 20.8912 -12.4758 44.2195 -30.3083 0.0000 -0.0000 0.8962 -4.7008 19.3582 -5.6094 0.0000 -0.0000 0.8900 -5.7191 -20.9405 -4.9814 0.0000 -0.0000 - 0.5799 -2.8041 23.6393 -0.3098 -1.5617 176.8977 -1.3327 -3.1942 -0.1319 -0.6246 -1.6161 -0.3355 5.1335 -2.1911 4.1843 -0.0132 4.5683 -0.5772 -6.9412 2.6669 1.1466 3.9004 -1.8241 -2.7599 -0.8122 5.0467 1.3439 -44.4550 -19.0559 -11.3450 0.0000 0.0000 22.5149 -9.3279 0.7933 -12.9255 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.7697 -2.3470 0.8005 -26.7486 22.7695 10.1050 -0.0000 -0.0000 -7.1712 -7.0296 -19.3233 16.6709 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.5260 2.1921 -49.0251 -2.1611 0.0000 -0.0000 20.9273 -12.4448 44.2637 -30.3079 0.0000 -0.0000 0.9020 -4.7075 19.4158 -5.6121 0.0000 -0.0000 0.8997 -5.7264 -20.8972 -4.9875 0.0000 -0.0000 - 0.5805 -2.8103 23.6390 -0.3081 -1.5646 176.7809 -1.3547 -3.1982 -0.1271 -0.6282 -1.6229 -0.3364 5.1813 -2.1621 4.1784 0.0038 4.5721 -0.5806 -6.9320 2.6906 1.1656 3.8900 -1.8082 -2.6832 -1.0540 4.8949 1.2977 -46.3077 -19.3484 -11.9454 0.0000 0.0000 23.5271 -9.9726 1.7797 -12.7802 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.7602 -2.1725 0.8739 -26.7004 22.7523 10.1303 -0.0000 -0.0000 -7.1412 -7.0635 -19.2463 16.6205 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.5547 2.1816 -48.9664 -2.1751 0.0000 -0.0000 20.9697 -12.4133 44.3135 -30.3083 0.0000 -0.0000 0.9112 -4.7123 19.4812 -5.6167 0.0000 -0.0000 0.9092 -5.7353 -20.8467 -4.9954 0.0000 -0.0000 - 0.5807 -2.8166 23.6386 -0.3048 -1.5656 176.6527 -1.3789 -3.2038 -0.1243 -0.6339 -1.6316 -0.3336 5.2336 -2.1368 4.1904 0.0229 4.5965 -0.5882 -6.9247 2.6964 1.1827 3.8847 -1.7900 -2.6155 -1.2422 4.7030 1.3092 -47.7670 -19.5911 -12.4031 0.0000 0.0000 24.5310 -10.2965 2.8201 -12.5275 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.7611 -2.0250 0.9473 -26.6699 22.7733 10.1707 -0.0000 -0.0000 -7.1175 -7.1118 -19.1865 16.5761 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.5827 2.1732 -48.9029 -2.1921 0.0000 -0.0000 21.0189 -12.3820 44.3701 -30.3088 0.0000 -0.0000 0.9246 -4.7142 19.5480 -5.6214 0.0000 -0.0000 0.9183 -5.7464 -20.7865 -5.0045 0.0000 -0.0000 - 0.5806 -2.8227 23.6383 -0.3015 -1.5651 176.5118 -1.4061 -3.2088 -0.1184 -0.6400 -1.6407 -0.3314 5.2888 -2.1110 4.2207 0.0427 4.6186 -0.5921 -6.9194 2.7077 1.2009 3.8848 -1.7755 -2.5650 -1.3817 4.5188 1.3781 -48.8388 -19.8004 -12.7497 0.0000 0.0000 25.5266 -10.3216 3.9059 -12.1930 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.7721 -1.8822 1.0142 -26.6627 22.8212 10.2248 -0.0000 -0.0000 -7.1004 -7.1734 -19.1344 16.5377 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6120 2.1666 -48.8282 -2.2109 0.0000 -0.0000 21.0736 -12.3526 44.4290 -30.3097 0.0000 -0.0000 0.9415 -4.7136 19.6190 -5.6269 0.0000 -0.0000 0.9266 -5.7590 -20.7180 -5.0144 0.0000 -0.0000 - 0.5802 -2.8289 23.6379 -0.2979 -1.5625 176.3611 -1.4341 -3.2135 -0.1106 -0.6464 -1.6514 -0.3290 5.3449 -2.0853 4.2714 0.0622 4.6446 -0.5949 -6.9154 2.7203 1.2200 3.8904 -1.7642 -2.5343 -1.4608 4.3367 1.5035 -49.5486 -19.9602 -12.9787 0.0000 0.0000 26.4978 -10.1075 5.0198 -11.8125 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7921 -1.7480 1.0755 -26.6797 22.8965 10.2885 -0.0000 -0.0000 -7.0884 -7.2466 -19.0921 16.5065 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6421 2.1629 -48.7438 -2.2309 0.0000 -0.0000 21.1328 -12.3262 44.4888 -30.3111 0.0000 -0.0000 0.9606 -4.7102 19.6901 -5.6315 0.0000 -0.0000 0.9339 -5.7729 -20.6404 -5.0242 0.0000 -0.0000 - 0.5795 -2.8352 23.6377 -0.2936 -1.5572 176.2029 -1.4605 -3.2170 -0.1007 -0.6526 -1.6636 -0.3268 5.3998 -2.0604 4.3443 0.0803 4.6728 -0.5969 -6.9123 2.7392 1.2407 3.9007 -1.7581 -2.5266 -1.4762 4.1684 1.6773 -49.9496 -20.0702 -13.1063 0.0000 0.0000 27.4352 -9.7227 6.1455 -11.4223 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.8191 -1.6181 1.1295 -26.7223 22.9944 10.3588 -0.0000 -0.0000 -7.0811 -7.3278 -19.0579 16.4826 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6727 2.1630 -48.6492 -2.2508 0.0000 -0.0000 21.1952 -12.3043 44.5475 -30.3125 0.0000 -0.0000 0.9813 -4.7036 19.7589 -5.6339 0.0000 -0.0000 0.9393 -5.7879 -20.5538 -5.0329 0.0000 -0.0000 - 0.5784 -2.8415 23.6375 -0.2884 -1.5489 176.0403 -1.4837 -3.2193 -0.0881 -0.6580 -1.6773 -0.3256 5.4519 -2.0366 4.4385 0.0963 4.7039 -0.5998 -6.9097 2.7650 1.2637 3.9148 -1.7572 -2.5430 -1.4298 4.0214 1.8919 -50.1070 -20.1318 -13.1556 0.0000 0.0000 28.3316 -9.2509 7.2612 -11.0542 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.8516 -1.4919 1.1767 -26.7885 23.1118 10.4318 -0.0000 -0.0000 -7.0772 -7.4113 -19.0301 16.4665 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.7034 2.1679 -48.5456 -2.2694 0.0000 -0.0000 21.2589 -12.2875 44.6030 -30.3137 0.0000 -0.0000 1.0028 -4.6937 19.8225 -5.6331 0.0000 -0.0000 0.9427 -5.8033 -20.4583 -5.0396 0.0000 -0.0000 - 0.5770 -2.8478 23.6373 -0.2817 -1.5383 175.8782 -1.5012 -3.2203 -0.0763 -0.6624 -1.6913 -0.3231 5.4990 -2.0147 4.5502 0.1091 4.7330 -0.6001 -6.9069 2.8054 1.2888 3.9313 -1.7632 -2.5846 -1.3302 3.9132 2.1288 -50.0953 -20.1625 -13.1566 0.0000 0.0000 29.1843 -8.7788 8.3431 -10.7317 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.8862 -1.3569 1.2144 -26.8721 23.2360 10.4985 -0.0000 -0.0000 -7.0740 -7.4946 -19.0074 16.4573 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.7334 2.1772 -48.4354 -2.2855 0.0000 -0.0000 21.3220 -12.2768 44.6532 -30.3141 0.0000 -0.0000 1.0235 -4.6814 19.8773 -5.6270 0.0000 -0.0000 0.9431 -5.8189 -20.3555 -5.0440 0.0000 -0.0000 - 0.5752 -2.8542 23.6373 -0.2732 -1.5254 175.7199 -1.5121 -3.2210 -0.0642 -0.6651 -1.7055 -0.3199 5.5398 -1.9941 4.6766 0.1185 4.7612 -0.5999 -6.9034 2.8597 1.3164 3.9487 -1.7757 -2.6499 -1.1886 3.8493 2.3773 -49.9864 -20.1745 -13.1378 0.0000 0.0000 29.9937 -8.3942 9.3605 -10.4700 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -3.9211 -1.2128 1.2424 -26.9676 23.3618 10.5565 -0.0000 -0.0000 -7.0716 -7.5735 -18.9877 16.4539 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.7624 2.1911 -48.3200 -2.2977 0.0000 -0.0000 21.3826 -12.2724 44.6960 -30.3136 0.0000 -0.0000 1.0428 -4.6671 19.9225 -5.6152 0.0000 -0.0000 0.9402 -5.8340 -20.2475 -5.0450 0.0000 -0.0000 - 0.5732 -2.8607 23.6374 -0.2619 -1.5100 175.5684 -1.5140 -3.2190 -0.0527 -0.6658 -1.7208 -0.3183 5.5731 -1.9743 4.8161 0.1240 4.7844 -0.5969 -6.8992 2.9330 1.3457 3.9651 -1.7947 -2.7371 -1.0210 3.8421 2.6184 -49.8461 -20.1931 -13.1241 0.0000 0.0000 30.7610 -8.1683 10.2848 -10.2732 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.9537 -1.0545 1.2585 -27.0675 23.4830 10.6024 -0.0000 -0.0000 -7.0693 -7.6430 -18.9701 16.4556 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7894 2.2110 -48.1986 -2.3034 0.0000 -0.0000 21.4374 -12.2757 44.7280 -30.3123 0.0000 -0.0000 1.0606 -4.6504 19.9600 -5.5964 0.0000 -0.0000 0.9338 -5.8479 -20.1393 -5.0435 0.0000 -0.0000 - 0.5711 -2.8672 23.6375 -0.2492 -1.4956 175.4286 -1.5099 -3.2214 -0.0423 -0.6638 -1.7337 -0.3125 5.5989 -1.9569 4.9585 0.1262 4.8106 -0.5973 -6.8938 3.0154 1.3776 3.9787 -1.8175 -2.8409 -0.8433 3.8849 2.8550 -49.7285 -20.2241 -13.1423 0.0000 0.0000 31.4918 -8.1559 11.0844 -10.1402 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.9817 -0.8886 1.2677 -27.1618 23.5967 10.6306 -0.0000 -0.0000 -7.0667 -7.7030 -18.9558 16.4618 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.8148 2.2324 -48.0793 -2.3040 0.0000 -0.0000 21.4869 -12.2841 44.7513 -30.3097 0.0000 -0.0000 1.0749 -4.6353 19.9834 -5.5717 0.0000 -0.0000 0.9242 -5.8605 -20.0290 -5.0392 0.0000 -0.0000 - 0.5687 -2.8738 23.6377 -0.2318 -1.4790 175.3020 -1.4949 -3.2202 -0.0333 -0.6597 -1.7486 -0.3099 5.6169 -1.9389 5.1053 0.1253 4.8304 -0.5932 -6.8883 3.1166 1.4089 3.9875 -1.8451 -2.9588 -0.6736 3.9897 3.0582 -49.6740 -20.3031 -13.1945 0.0000 0.0000 32.1806 -8.3708 11.7484 -10.0634 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.0039 -0.7081 1.2625 -27.2449 23.6979 10.6448 -0.0000 -0.0000 -7.0660 -7.7503 -18.9428 16.4703 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.8365 2.2602 -47.9576 -2.2950 0.0000 -0.0000 21.5266 -12.3004 44.7606 -30.3074 0.0000 -0.0000 1.0881 -4.6179 20.0041 -5.5402 0.0000 -0.0000 0.9115 -5.8713 -19.9295 -5.0335 0.0000 -0.0000 - 0.5662 -2.8804 23.6380 -0.2131 -1.4656 175.1929 -1.4753 -3.2243 -0.0282 -0.6521 -1.7591 -0.3036 5.6285 -1.9249 5.2478 0.1221 4.8529 -0.5938 -6.8825 3.2236 1.4422 3.9902 -1.8738 -3.0851 -0.5272 4.1427 3.2469 -49.7078 -20.4217 -13.3009 0.0000 0.0000 32.8316 -8.8091 12.2615 -10.0368 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.0183 -0.5253 1.2544 -27.3062 23.7919 10.6368 -0.0000 -0.0000 -7.0649 -7.7850 -18.9349 16.4809 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.8567 2.2880 -47.8383 -2.2775 0.0000 -0.0000 21.5565 -12.3226 44.7555 -30.3051 0.0000 -0.0000 1.0962 -4.6048 20.0097 -5.5021 0.0000 -0.0000 0.8958 -5.8803 -19.8322 -5.0270 0.0000 -0.0000 - 0.5636 -2.8869 23.6383 -0.1864 -1.4513 175.1014 -1.4435 -3.2250 -0.0241 -0.6427 -1.7724 -0.3013 5.6342 -1.9079 5.3854 0.1171 4.8715 -0.5909 -6.8773 3.3419 1.4725 3.9854 -1.9036 -3.2165 -0.4154 4.3450 3.3975 -49.8409 -20.6039 -13.4454 0.0000 0.0000 33.4314 -9.4265 12.6368 -10.0521 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.0241 -0.3368 1.2333 -27.3432 23.8738 10.6156 -0.0000 -0.0000 -7.0683 -7.8085 -18.9278 16.4938 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.8691 2.3217 -47.7227 -2.2490 0.0000 -0.0000 21.5748 -12.3518 44.7374 -30.3058 0.0000 -0.0000 1.1072 -4.5895 20.0178 -5.4607 0.0000 -0.0000 0.8791 -5.8875 -19.7547 -5.0216 0.0000 -0.0000 - 0.5610 -2.8932 23.6388 -0.1413 -1.4398 175.0312 -1.3895 -3.2264 -0.0217 -0.6319 -1.7851 -0.3005 5.6344 -1.8907 5.5130 0.1110 4.8917 -0.5916 -6.8727 3.4611 1.5018 3.9727 -1.9315 -3.3484 -0.3462 4.5836 3.5277 -50.0726 -20.8379 -13.6322 0.0000 0.0000 33.9764 -10.1627 12.8864 -10.1032 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.0209 -0.1553 1.2083 -27.3519 23.9514 10.5792 -0.0000 -0.0000 -7.0732 -7.8220 -18.9250 16.5046 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.8620 2.3580 -47.6082 -2.2097 0.0000 -0.0000 21.5792 -12.3894 44.7005 -30.3095 0.0000 -0.0000 1.1328 -4.5753 20.0184 -5.4178 0.0000 -0.0000 0.8625 -5.8928 -19.6898 -5.0185 0.0000 -0.0000 - 0.5584 -2.8995 23.6392 -0.1050 -1.4329 174.9838 -1.3463 -3.2327 -0.0261 -0.6180 -1.7901 -0.2962 5.6341 -1.8797 5.6254 0.1057 4.9138 -0.5931 -6.8717 3.5792 1.5276 3.9513 -1.9577 -3.4786 -0.3221 4.8420 3.6359 -50.3851 -21.1155 -13.8384 0.0000 0.0000 34.4551 -10.9406 13.0366 -10.1848 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.0104 0.0175 1.1784 -27.3302 24.0264 10.5310 -0.0000 -0.0000 -7.0840 -7.8286 -18.9257 16.5162 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.8636 2.3922 -47.5030 -2.1596 0.0000 -0.0000 21.5719 -12.4309 44.6491 -30.3187 0.0000 -0.0000 1.1422 -4.5675 20.0128 -5.3694 0.0000 -0.0000 0.8435 -5.8977 -19.6414 -5.0175 0.0000 -0.0000 - 0.5560 -2.9058 23.6396 -0.0651 -1.4284 174.9595 -1.3010 -3.2388 -0.0342 -0.6022 -1.7940 -0.2927 5.6344 -1.8682 5.7231 0.1005 4.9395 -0.5965 -6.8737 3.6907 1.5486 3.9209 -1.9809 -3.6050 -0.3397 5.1079 3.7303 -50.7563 -21.4232 -14.0514 0.0000 0.0000 34.8600 -11.6753 13.1159 -10.2905 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.9901 0.1719 1.1449 -27.2819 24.1055 10.4751 -0.0000 -0.0000 -7.0992 -7.8306 -18.9304 16.5268 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.8615 2.4283 -47.4020 -2.0971 0.0000 -0.0000 21.5500 -12.4795 44.5790 -30.3348 0.0000 -0.0000 1.1501 -4.5620 20.0025 -5.3191 0.0000 -0.0000 0.8249 -5.9021 -19.6108 -5.0203 0.0000 -0.0000 - 0.5537 -2.9115 23.6401 -0.0011 -1.4295 174.9592 -1.2307 -3.2446 -0.0460 -0.5867 -1.7980 -0.2872 5.6331 -1.8551 5.8037 0.0967 4.9688 -0.6040 -6.8787 3.7904 1.5647 3.8828 -2.0002 -3.7273 -0.3915 5.3710 3.8194 -51.1539 -21.7464 -14.2536 0.0000 0.0000 35.1839 -12.2888 13.1544 -10.4112 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.9632 0.2997 1.1084 -27.2106 24.1939 10.4192 -0.0000 -0.0000 -7.1204 -7.8297 -18.9388 16.5365 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.8325 2.4639 -47.3041 -2.0246 0.0000 -0.0000 21.5140 -12.5368 44.4889 -30.3589 0.0000 -0.0000 1.1807 -4.5596 19.9840 -5.2717 0.0000 -0.0000 0.8080 -5.9060 -19.5944 -5.0267 0.0000 -0.0000 - 0.5515 -2.9172 23.6405 0.0618 -1.4307 174.9811 -1.1664 -3.2473 -0.0589 -0.5698 -1.7974 -0.2866 5.6356 -1.8434 5.8698 0.0950 4.9964 -0.6086 -6.8898 3.8849 1.5740 3.8376 -2.0176 -3.8478 -0.4759 5.6371 3.9010 -51.5467 -22.0833 -14.4403 0.0000 0.0000 35.4296 -12.7065 13.1780 -10.5371 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.9303 0.4129 1.0701 -27.1182 24.2878 10.3555 -0.0000 -0.0000 -7.1449 -7.8322 -18.9471 16.5453 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.8038 2.5027 -47.2201 -1.9419 0.0000 -0.0000 21.4672 -12.5984 44.3905 -30.3936 0.0000 -0.0000 1.2071 -4.5565 19.9698 -5.2272 0.0000 -0.0000 0.7939 -5.9104 -19.6039 -5.0371 0.0000 -0.0000 - 0.5495 -2.9226 23.6409 0.1291 -1.4375 175.0276 -1.1010 -3.2511 -0.0762 -0.5531 -1.7935 -0.2836 5.6411 -1.8331 5.9209 0.0960 5.0287 -0.6179 -6.9057 3.9641 1.5766 3.7867 -2.0327 -3.9669 -0.5750 5.8832 3.9899 -51.8946 -22.4031 -14.5873 0.0000 0.0000 35.5965 -12.8887 13.2061 -10.6621 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.8952 0.4991 1.0263 -27.0131 24.3902 10.2989 -0.0000 -0.0000 -7.1756 -7.8380 -18.9579 16.5522 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.7683 2.5381 -47.1432 -1.8509 0.0000 -0.0000 21.4083 -12.6662 44.2745 -30.4378 0.0000 -0.0000 1.2350 -4.5592 19.9422 -5.1842 0.0000 -0.0000 0.7807 -5.9157 -19.6240 -5.0496 0.0000 -0.0000 - 0.5476 -2.9278 23.6413 0.1949 -1.4426 175.0941 -1.0442 -3.2501 -0.0948 -0.5351 -1.7899 -0.2812 5.6548 -1.8177 5.9606 0.0965 5.0633 -0.6283 -6.9268 4.0294 1.5715 3.7299 -2.0478 -4.0879 -0.6808 6.1096 4.0871 -52.1586 -22.6964 -14.6842 0.0000 0.0000 35.6901 -12.8267 13.2512 -10.7739 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.8536 0.5622 0.9851 -26.9015 24.5052 10.2338 -0.0000 -0.0000 -7.2042 -7.8451 -18.9690 16.5606 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7341 2.5788 -47.0685 -1.7488 0.0000 -0.0000 21.3359 -12.7418 44.1415 -30.4924 0.0000 -0.0000 1.2590 -4.5598 19.9091 -5.1436 0.0000 -0.0000 0.7704 -5.9226 -19.6581 -5.0646 0.0000 -0.0000 - 0.5460 -2.9327 23.6416 0.2596 -1.4507 175.1849 -0.9927 -3.2464 -0.1182 -0.5171 -1.7827 -0.2789 5.6704 -1.8043 5.9899 0.1009 5.0986 -0.6390 -6.9539 4.0816 1.5586 3.6704 -2.0624 -4.2139 -0.7801 6.3166 4.1929 -52.3138 -22.9549 -14.7208 0.0000 0.0000 35.7158 -12.5212 13.3222 -10.8711 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.8142 0.6037 0.9380 -26.7904 24.6288 10.1781 -0.0000 -0.0000 -7.2367 -7.8563 -18.9817 16.5675 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.6979 2.6175 -47.0083 -1.6407 0.0000 -0.0000 21.2540 -12.8213 43.9987 -30.5553 0.0000 -0.0000 1.2803 -4.5635 19.8651 -5.1079 0.0000 -0.0000 0.7626 -5.9308 -19.7055 -5.0801 0.0000 -0.0000 - 0.5445 -2.9371 23.6418 0.3341 -1.4606 175.2967 -0.9345 -3.2398 -0.1420 -0.5005 -1.7749 -0.2759 5.6893 -1.7880 6.0110 0.1069 5.1361 -0.6519 -6.9848 4.1194 1.5375 3.6092 -2.0783 -4.3471 -0.8638 6.5064 4.3112 -52.3384 -23.1715 -14.6989 0.0000 0.0000 35.6817 -12.0151 13.4199 -10.9466 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7786 0.6229 0.8846 -26.6825 24.7600 10.1303 -0.0000 -0.0000 -7.2698 -7.8718 -18.9956 16.5736 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6473 2.6549 -46.9564 -1.5309 0.0000 -0.0000 21.1643 -12.9061 43.8445 -30.6252 0.0000 -0.0000 1.3124 -4.5682 19.8083 -5.0790 0.0000 -0.0000 0.7581 -5.9400 -19.7603 -5.0954 0.0000 -0.0000 - 0.5433 -2.9410 23.6420 0.4117 -1.4704 175.4256 -0.8759 -3.2294 -0.1604 -0.4855 -1.7642 -0.2756 5.7108 -1.7699 6.0256 0.1148 5.1705 -0.6642 -7.0200 4.1494 1.5086 3.5471 -2.0968 -4.4907 -0.9295 6.6895 4.4355 -52.2227 -23.3514 -14.6230 0.0000 0.0000 35.5971 -11.3644 13.5420 -10.9976 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.7447 0.6299 0.8285 -26.5833 24.8963 10.0806 -0.0000 -0.0000 -7.2979 -7.8903 -19.0105 16.5774 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.5895 2.6925 -46.9155 -1.4205 0.0000 -0.0000 21.0690 -12.9938 43.6853 -30.6999 0.0000 -0.0000 1.3491 -4.5717 19.7434 -5.0579 0.0000 -0.0000 0.7577 -5.9500 -19.8238 -5.1099 0.0000 -0.0000 - 0.5422 -2.9445 23.6422 0.4879 -1.4804 175.5737 -0.8217 -3.2160 -0.1803 -0.4716 -1.7532 -0.2741 5.7340 -1.7495 6.0380 0.1240 5.2053 -0.6771 -7.0579 4.1698 1.4712 3.4856 -2.1181 -4.6464 -0.9695 6.8592 4.5631 -51.9621 -23.4875 -14.4884 0.0000 0.0000 35.4679 -10.6472 13.6810 -11.0253 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.7143 0.6265 0.7635 -26.4968 25.0314 10.0358 -0.0000 -0.0000 -7.3233 -7.9113 -19.0262 16.5806 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.5282 2.7284 -46.8864 -1.3112 0.0000 -0.0000 20.9687 -13.0837 43.5198 -30.7758 0.0000 -0.0000 1.3856 -4.5757 19.6663 -5.0444 0.0000 -0.0000 0.7611 -5.9606 -19.8939 -5.1226 0.0000 -0.0000 - 0.5413 -2.9474 23.6423 0.5582 -1.4912 175.7396 -0.7768 -3.2011 -0.2015 -0.4584 -1.7424 -0.2701 5.7588 -1.7263 6.0491 0.1348 5.2405 -0.6921 -7.0983 4.1810 1.4261 3.4257 -2.1419 -4.8134 -0.9831 7.0167 4.6925 -51.5683 -23.5820 -14.3035 0.0000 0.0000 35.3020 -9.9408 13.8264 -11.0299 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.6929 0.6166 0.6924 -26.4197 25.1610 9.9925 -0.0000 -0.0000 -7.3443 -7.9310 -19.0441 16.5845 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.4670 2.7604 -46.8733 -1.2071 0.0000 -0.0000 20.8667 -13.1728 43.3533 -30.8497 0.0000 -0.0000 1.4170 -4.5810 19.5777 -5.0375 0.0000 -0.0000 0.7674 -5.9716 -19.9704 -5.1334 0.0000 -0.0000 - 0.5406 -2.9496 23.6423 0.6230 -1.5007 175.9170 -0.7377 -3.1838 -0.2145 -0.4495 -1.7307 -0.2712 5.7843 -1.7016 6.0599 0.1478 5.2725 -0.7030 -7.1406 4.1918 1.3731 3.3673 -2.1702 -4.9932 -0.9753 7.1751 4.8088 -51.0631 -23.6540 -14.0813 0.0000 0.0000 35.1042 -9.3150 13.9678 -11.0089 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.6786 0.6064 0.6128 -26.3559 25.2840 9.9510 -0.0000 -0.0000 -7.3593 -7.9488 -19.0631 16.5853 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.4066 2.7911 -46.8682 -1.1073 0.0000 -0.0000 20.7628 -13.2615 43.1846 -30.9190 0.0000 -0.0000 1.4465 -4.5846 19.4824 -5.0406 0.0000 -0.0000 0.7790 -5.9824 -20.0515 -5.1429 0.0000 -0.0000 - 0.5401 -2.9512 23.6423 0.6844 -1.5119 176.1084 -0.7041 -3.1666 -0.2280 -0.4423 -1.7200 -0.2698 5.8094 -1.6741 6.0720 0.1619 5.3035 -0.7150 -7.1827 4.1986 1.3131 3.3117 -2.2011 -5.1827 -0.9467 7.3256 4.9170 -50.4703 -23.6970 -13.8318 0.0000 0.0000 34.8815 -8.8334 14.0871 -10.9694 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.6716 0.5965 0.5257 -26.3020 25.3950 9.9097 -0.0000 -0.0000 -7.3682 -7.9623 -19.0840 16.5868 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.3421 2.8151 -46.8812 -1.0191 0.0000 -0.0000 20.6622 -13.3462 43.0206 -30.9797 0.0000 -0.0000 1.4755 -4.5900 19.3799 -5.0527 0.0000 -0.0000 0.7944 -5.9921 -20.1391 -5.1512 0.0000 -0.0000 - 0.5397 -2.9519 23.6423 0.7416 -1.5235 176.3111 -0.6759 -3.1496 -0.2398 -0.4378 -1.7109 -0.2657 5.8341 -1.6444 6.0845 0.1777 5.3369 -0.7302 -7.2244 4.1986 1.2476 3.2585 -2.2328 -5.3785 -0.9038 7.4621 5.0135 -49.8175 -23.7176 -13.5595 0.0000 0.0000 34.6357 -8.5360 14.1722 -10.9170 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.6737 0.5824 0.4358 -26.2552 25.4975 9.8695 -0.0000 -0.0000 -7.3719 -7.9728 -19.1109 16.5860 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.2742 2.8333 -46.9109 -0.9433 0.0000 -0.0000 20.5662 -13.4260 42.8629 -31.0296 0.0000 -0.0000 1.5040 -4.5958 19.2749 -5.0738 0.0000 -0.0000 0.8136 -6.0005 -20.2349 -5.1589 0.0000 -0.0000 - 0.5395 -2.9521 23.6422 0.7729 -1.5350 176.5225 -0.6766 -3.1326 -0.2510 -0.4365 -1.7015 -0.2604 5.8598 -1.6136 6.0955 0.1960 5.3618 -0.7404 -7.2670 4.2069 1.1788 3.2090 -2.2678 -5.5817 -0.8625 7.6054 5.0927 -49.1455 -23.7365 -13.2993 0.0000 0.0000 34.3767 -8.4286 14.2103 -10.8559 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.6826 0.5887 0.3401 -26.2117 25.5727 9.8215 -0.0000 -0.0000 -7.3692 -7.9783 -19.1320 16.5870 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.2270 2.8456 -46.9555 -0.8785 0.0000 -0.0000 20.4752 -13.4993 42.7110 -31.0681 0.0000 -0.0000 1.5073 -4.6030 19.1656 -5.0997 0.0000 -0.0000 0.8355 -6.0082 -20.3355 -5.1666 0.0000 -0.0000 - 0.5395 -2.9512 23.6421 0.8013 -1.5468 176.7374 -0.6855 -3.1179 -0.2540 -0.4367 -1.6932 -0.2586 5.8899 -1.5810 6.1085 0.2138 5.3910 -0.7531 -7.3090 4.2092 1.1053 3.1629 -2.3015 -5.7836 -0.8213 7.7330 5.1531 -48.4784 -23.7518 -13.0342 0.0000 0.0000 34.0932 -8.5062 14.1966 -10.7987 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.7002 0.5902 0.2444 -26.1707 25.6377 9.7756 -0.0000 -0.0000 -7.3628 -7.9781 -19.1558 16.5868 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.1762 2.8527 -47.0089 -0.8263 0.0000 -0.0000 20.3895 -13.5676 42.5649 -31.0935 0.0000 -0.0000 1.5145 -4.6091 19.0660 -5.1385 0.0000 -0.0000 0.8625 -6.0136 -20.4486 -5.1746 0.0000 -0.0000 - 0.5395 -2.9493 23.6420 0.8365 -1.5609 176.9557 -0.6839 -3.1027 -0.2581 -0.4431 -1.6869 -0.2548 5.9141 -1.5475 6.1225 0.2360 5.4146 -0.7628 -7.3499 4.2155 1.0296 3.1207 -2.3346 -5.9834 -0.7957 7.8638 5.2012 -47.8485 -23.7752 -12.8006 0.0000 0.0000 33.7927 -8.7343 14.1282 -10.7549 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.7241 0.5967 0.1513 -26.1274 25.6897 9.7259 -0.0000 -0.0000 -7.3521 -7.9753 -19.1792 16.5852 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.1097 2.8514 -47.0767 -0.7921 0.0000 -0.0000 20.3141 -13.6292 42.4301 -31.1064 0.0000 -0.0000 1.5351 -4.6162 18.9704 -5.1869 0.0000 -0.0000 0.8924 -6.0166 -20.5682 -5.1831 0.0000 -0.0000 - 0.5396 -2.9469 23.6419 0.8367 -1.5720 177.1749 -0.7266 -3.0887 -0.2575 -0.4513 -1.6786 -0.2506 5.9473 -1.5152 6.1300 0.2597 5.4425 -0.7707 -7.3942 4.2165 0.9515 3.0827 -2.3678 -6.1757 -0.7834 7.9666 5.2259 -47.2692 -23.8039 -12.5605 0.0000 0.0000 33.4590 -9.0667 14.0181 -10.7377 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.7559 0.5983 0.0653 -26.0823 25.7333 9.6756 -0.0000 -0.0000 -7.3399 -7.9683 -19.2057 16.5806 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0771 2.8497 -47.1459 -0.7621 0.0000 -0.0000 20.2396 -13.6869 42.2949 -31.1081 0.0000 -0.0000 1.5213 -4.6216 18.8752 -5.2384 0.0000 -0.0000 0.9246 -6.0189 -20.6897 -5.1919 0.0000 -0.0000 - 0.5399 -2.9434 23.6417 0.8365 -1.5863 177.3898 -0.7744 -3.0760 -0.2526 -0.4628 -1.6745 -0.2475 5.9863 -1.4797 6.1406 0.2818 5.4677 -0.7803 -7.4369 4.2171 0.8741 3.0499 -2.3987 -6.3592 -0.7905 8.0577 5.2400 -46.7604 -23.8424 -12.3413 0.0000 0.0000 33.0938 -9.4409 13.8775 -10.7574 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.7914 0.6053 -0.0157 -26.0329 25.7573 9.6243 -0.0000 -0.0000 -7.3273 -7.9610 -19.2263 16.5773 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0381 2.8387 -47.2236 -0.7484 0.0000 -0.0000 20.1757 -13.7370 42.1718 -31.0995 0.0000 -0.0000 1.5141 -4.6295 18.7907 -5.2979 0.0000 -0.0000 0.9572 -6.0186 -20.8168 -5.1996 0.0000 -0.0000 - 0.5402 -2.9391 23.6416 0.8322 -1.6005 177.6021 -0.8272 -3.0636 -0.2462 -0.4780 -1.6712 -0.2441 6.0231 -1.4444 6.1492 0.3082 5.4949 -0.7896 -7.4817 4.2128 0.7973 3.0230 -2.4270 -6.5312 -0.8221 8.1323 5.2421 -46.3277 -23.8952 -12.1407 0.0000 0.0000 32.6927 -9.7919 13.7217 -10.8206 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.8315 0.6080 -0.0846 -25.9791 25.7719 9.5714 -0.0000 -0.0000 -7.3157 -7.9526 -19.2435 16.5746 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0012 2.8244 -47.3050 -0.7447 0.0000 -0.0000 20.1179 -13.7840 42.0545 -31.0834 0.0000 -0.0000 1.5073 -4.6364 18.7113 -5.3625 0.0000 -0.0000 0.9901 -6.0166 -20.9462 -5.2055 0.0000 -0.0000 - 0.5407 -2.9339 23.6414 0.8247 -1.6157 177.8083 -0.8863 -3.0520 -0.2369 -0.4955 -1.6691 -0.2421 6.0621 -1.4075 6.1582 0.3347 5.5232 -0.7976 -7.5273 4.2026 0.7209 3.0024 -2.4531 -6.6905 -0.8749 8.1849 5.2324 -45.9640 -23.9587 -11.9457 0.0000 0.0000 32.2481 -10.0604 13.5731 -10.9298 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.8731 0.6047 -0.1426 -25.9234 25.7778 9.5195 -0.0000 -0.0000 -7.3055 -7.9477 -19.2579 16.5687 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0413 2.8055 -47.3882 -0.7505 0.0000 -0.0000 20.0660 -13.8270 41.9441 -31.0620 0.0000 -0.0000 1.5025 -4.6443 18.6352 -5.4313 0.0000 -0.0000 1.0220 -6.0127 -21.0725 -5.2086 0.0000 -0.0000 - 0.5412 -2.9278 23.6411 0.8139 -1.6305 178.0055 -0.9538 -3.0386 -0.2286 -0.5146 -1.6677 -0.2383 6.1068 -1.3711 6.1702 0.3601 5.5503 -0.8057 -7.5751 4.1899 0.6481 2.9893 -2.4786 -6.8374 -0.9473 8.2224 5.2169 -45.6608 -24.0325 -11.7590 0.0000 0.0000 31.7606 -10.1957 13.4475 -11.0840 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -3.9191 0.5965 -0.1847 -25.8636 25.7787 9.4677 -0.0000 -0.0000 -7.2977 -7.9440 -19.2685 16.5619 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0808 2.7845 -47.4709 -0.7633 0.0000 -0.0000 20.0194 -13.8670 41.8415 -31.0379 0.0000 -0.0000 1.4990 -4.6514 18.5650 -5.5012 0.0000 -0.0000 1.0504 -6.0073 -21.1953 -5.2071 0.0000 -0.0000 - 0.5416 -2.9210 23.6409 0.7997 -1.6431 178.1931 -1.0261 -3.0238 -0.2189 -0.5350 -1.6664 -0.2318 6.1517 -1.3355 6.1841 0.3852 5.5803 -0.8159 -7.6243 4.1718 0.5782 2.9834 -2.5033 -6.9717 -1.0397 8.2442 5.2002 -45.3991 -24.1141 -11.5806 0.0000 0.0000 31.2335 -10.1561 13.3579 -11.2803 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.9638 0.5865 -0.2114 -25.8036 25.7683 9.4126 -0.0000 -0.0000 -7.2912 -7.9483 -19.2775 16.5517 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.1182 2.7649 -47.5508 -0.7793 0.0000 -0.0000 19.9754 -13.9058 41.7447 -31.0144 0.0000 -0.0000 1.4955 -4.6560 18.5008 -5.5711 0.0000 -0.0000 1.0756 -6.0009 -21.3148 -5.2009 0.0000 -0.0000 - 0.5423 -2.9136 23.6406 0.7845 -1.6582 178.3715 -1.0993 -3.0124 -0.2049 -0.5546 -1.6666 -0.2321 6.1920 -1.2956 6.2013 0.4091 5.6119 -0.8195 -7.6734 4.1458 0.5075 2.9852 -2.5280 -7.0945 -1.1322 8.2337 5.1707 -45.1449 -24.1916 -11.3658 0.0000 0.0000 30.6566 -9.9320 13.3189 -11.5140 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.0100 0.5728 -0.2320 -25.7466 25.7438 9.3658 -0.0000 -0.0000 -7.2911 -7.9551 -19.2831 16.5444 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.1563 2.7407 -47.6321 -0.7994 0.0000 -0.0000 19.9353 -13.9411 41.6573 -30.9912 0.0000 -0.0000 1.4941 -4.6645 18.4283 -5.6382 0.0000 -0.0000 1.0950 -5.9935 -21.4167 -5.1885 0.0000 -0.0000 - 0.5427 -2.9054 23.6402 0.7681 -1.6688 178.5369 -1.1754 -2.9971 -0.1953 -0.5742 -1.6658 -0.2246 6.2345 -1.2586 6.2264 0.4301 5.6444 -0.8279 -7.7242 4.1185 0.4437 2.9949 -2.5546 -7.2082 -1.2401 8.2230 5.1523 -44.8816 -24.2735 -11.1626 0.0000 0.0000 30.0506 -9.5185 13.3258 -11.7723 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.0571 0.5579 -0.2310 -25.6887 25.7146 9.3123 -0.0000 -0.0000 -7.2904 -7.9678 -19.2898 16.5339 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.1929 2.7219 -47.7065 -0.8187 0.0000 -0.0000 19.8954 -13.9767 41.5757 -30.9714 0.0000 -0.0000 1.4941 -4.6681 18.3651 -5.7019 0.0000 -0.0000 1.1093 -5.9854 -21.5149 -5.1713 0.0000 -0.0000 - 0.5432 -2.8967 23.6399 0.7525 -1.6812 178.6923 -1.2475 -2.9852 -0.1814 -0.5914 -1.6668 -0.2243 6.2685 -1.2169 6.2574 0.4482 5.6791 -0.8298 -7.7731 4.0846 0.3786 3.0116 -2.5831 -7.3134 -1.3352 8.1816 5.1205 -44.5654 -24.3447 -10.8982 0.0000 0.0000 29.3993 -8.9450 13.3860 -12.0526 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.1048 0.5441 -0.2280 -25.6384 25.6660 9.2698 -0.0000 -0.0000 -7.2962 -7.9827 -19.2961 16.5283 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2307 2.7007 -47.7828 -0.8383 0.0000 -0.0000 19.8576 -14.0091 41.5049 -30.9540 0.0000 -0.0000 1.4966 -4.6751 18.2937 -5.7595 0.0000 -0.0000 1.1166 -5.9769 -21.5952 -5.1489 0.0000 -0.0000 - 0.5436 -2.8874 23.6396 0.7379 -1.6903 178.8352 -1.3160 -2.9726 -0.1703 -0.6069 -1.6674 -0.2195 6.2977 -1.1760 6.2978 0.4633 5.7157 -0.8335 -7.8215 4.0497 0.3181 3.0344 -2.6147 -7.4122 -1.4314 8.1395 5.0972 -44.1826 -24.4125 -10.6197 0.0000 0.0000 28.7247 -8.2435 13.4835 -12.3418 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.1533 0.5324 -0.2102 -25.5922 25.6069 9.2255 -0.0000 -0.0000 -7.3015 -8.0000 -19.3056 16.5223 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2687 2.6840 -47.8542 -0.8550 0.0000 -0.0000 19.8186 -14.0411 41.4414 -30.9407 0.0000 -0.0000 1.5019 -4.6791 18.2266 -5.8112 0.0000 -0.0000 1.1182 -5.9681 -21.6675 -5.1239 0.0000 -0.0000 - 0.5439 -2.8774 23.6393 0.7260 -1.6981 178.9662 -1.3798 -2.9599 -0.1612 -0.6195 -1.6687 -0.2143 6.3232 -1.1340 6.3487 0.4727 5.7515 -0.8370 -7.8680 4.0155 0.2616 3.0618 -2.6499 -7.5065 -1.5192 8.0945 5.0780 -43.7098 -24.4723 -10.3080 0.0000 0.0000 28.0280 -7.4683 13.6081 -12.6340 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.2031 0.5227 -0.1817 -25.5534 25.5375 9.1856 -0.0000 -0.0000 -7.3071 -8.0176 -19.3202 16.5178 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.3088 2.6696 -47.9240 -0.8690 0.0000 -0.0000 19.7795 -14.0712 41.3878 -30.9301 0.0000 -0.0000 1.5112 -4.6825 18.1607 -5.8560 0.0000 -0.0000 1.1135 -5.9595 -21.7291 -5.0971 0.0000 -0.0000 - 0.5439 -2.8669 23.6391 0.7143 -1.7029 179.0863 -1.4367 -2.9498 -0.1514 -0.6300 -1.6677 -0.2072 6.3371 -1.0936 6.4047 0.4802 5.7906 -0.8386 -7.9112 3.9822 0.2077 3.0924 -2.6888 -7.5960 -1.5978 8.0477 5.0603 -43.1374 -24.5258 -9.9618 0.0000 0.0000 27.3164 -6.6694 13.7456 -12.9219 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2552 0.5240 -0.1479 -25.5199 25.4441 9.1493 -0.0000 -0.0000 -7.3118 -8.0343 -19.3352 16.5173 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.3472 2.6609 -47.9881 -0.8768 0.0000 -0.0000 19.7372 -14.1014 41.3394 -30.9223 0.0000 -0.0000 1.5213 -4.6833 18.0976 -5.8934 0.0000 -0.0000 1.1039 -5.9512 -21.7828 -5.0716 0.0000 -0.0000 - 0.5440 -2.8554 23.6389 0.7289 -1.7095 179.1974 -1.4588 -2.9401 -0.1413 -0.6396 -1.6753 -0.2074 6.3394 -1.0448 6.4749 0.4839 5.8264 -0.8394 -7.9500 3.9502 0.1558 3.1251 -2.7279 -7.6812 -1.6644 8.0083 5.0447 -42.4704 -24.5755 -9.5915 0.0000 0.0000 26.5998 -5.9014 13.8747 -13.1995 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.3073 0.5266 -0.1101 -25.4962 25.3384 9.1234 -0.0000 -0.0000 -7.3149 -8.0474 -19.3540 16.5202 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.4152 2.6490 -48.0574 -0.8885 0.0000 -0.0000 19.6988 -14.1283 41.3056 -30.9146 0.0000 -0.0000 1.5626 -4.6862 18.0357 -5.9289 0.0000 -0.0000 1.0907 -5.9415 -21.8279 -5.0493 0.0000 -0.0000 - 0.5435 -2.8438 23.6389 0.7165 -1.7093 179.2974 -1.5083 -2.9346 -0.1352 -0.6431 -1.6695 -0.1962 6.3378 -1.0088 6.5428 0.4846 5.8689 -0.8384 -7.9869 3.9211 0.1082 3.1554 -2.7727 -7.7625 -1.7110 7.9560 5.0210 -41.7087 -24.6111 -9.1652 0.0000 0.0000 25.8758 -5.2176 13.9856 -13.4598 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.3642 0.5381 -0.0662 -25.4793 25.2130 9.1056 -0.0000 -0.0000 -7.3173 -8.0542 -19.3765 16.5291 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.4500 2.6492 -48.1145 -0.8860 0.0000 -0.0000 19.6520 -14.1564 41.2701 -30.9087 0.0000 -0.0000 1.5729 -4.6830 17.9793 -5.9516 0.0000 -0.0000 1.0729 -5.9339 -21.8684 -5.0313 0.0000 -0.0000 - 0.5430 -2.8311 23.6389 0.7324 -1.7107 179.3882 -1.5212 -2.9264 -0.1254 -0.6497 -1.6770 -0.1953 6.3296 -0.9630 6.6232 0.4819 5.9026 -0.8389 -8.0189 3.9014 0.0668 3.1832 -2.8173 -7.8403 -1.7600 7.9369 5.0122 -40.8986 -24.6540 -8.7758 0.0000 0.0000 25.1822 -4.6357 14.0506 -13.6943 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4223 0.5570 -0.0185 -25.4694 25.0724 9.0987 -0.0000 -0.0000 -7.3132 -8.0552 -19.3959 16.5357 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.5163 2.6471 -48.1709 -0.8871 0.0000 -0.0000 19.6082 -14.1826 41.2440 -30.9033 0.0000 -0.0000 1.6168 -4.6809 17.9295 -5.9736 0.0000 -0.0000 1.0525 -5.9250 -21.9053 -5.0199 0.0000 -0.0000 - 0.5422 -2.8182 23.6389 0.7205 -1.7086 179.4719 -1.5646 -2.9253 -0.1229 -0.6498 -1.6699 -0.1825 6.3191 -0.9296 6.6967 0.4775 5.9401 -0.8357 -8.0497 3.8843 0.0285 3.2059 -2.8634 -7.9116 -1.7834 7.8990 4.9889 -40.0478 -24.6785 -8.3440 0.0000 0.0000 24.5012 -4.1876 14.0696 -13.9065 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4832 0.5844 0.0336 -25.4632 24.9129 9.0998 -0.0000 -0.0000 -7.3076 -8.0505 -19.4183 16.5485 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.5502 2.6522 -48.2219 -0.8781 0.0000 -0.0000 19.5590 -14.2078 41.2184 -30.8978 0.0000 -0.0000 1.6291 -4.6759 17.8837 -5.9848 0.0000 -0.0000 1.0287 -5.9175 -21.9403 -5.0149 0.0000 -0.0000 - 0.5411 -2.8044 23.6391 0.7371 -1.7046 179.5483 -1.5726 -2.9156 -0.1149 -0.6530 -1.6825 -0.1896 6.3034 -0.8850 6.7894 0.4727 5.9745 -0.8389 -8.0766 3.8715 -0.0033 3.2222 -2.9061 -7.9765 -1.8024 7.8757 4.9711 -39.2037 -24.7026 -7.9462 0.0000 0.0000 23.8612 -3.8675 14.0299 -14.0829 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.5437 0.6098 0.0884 -25.4641 24.7444 9.1178 -0.0000 -0.0000 -7.2958 -8.0396 -19.4360 16.5580 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.6159 2.6593 -48.2718 -0.8720 0.0000 -0.0000 19.5121 -14.2328 41.2001 -30.8923 0.0000 -0.0000 1.6752 -4.6680 17.8430 -5.9963 0.0000 -0.0000 1.0042 -5.9088 -21.9718 -5.0161 0.0000 -0.0000 - 0.5397 -2.7903 23.6392 0.7272 -1.7012 179.6180 -1.6120 -2.9194 -0.1137 -0.6529 -1.6705 -0.1709 6.2906 -0.8576 6.8525 0.4669 6.0008 -0.8317 -8.1030 3.8709 -0.0286 3.2300 -2.9485 -8.0346 -1.8175 7.8627 4.9560 -38.4094 -24.7215 -7.6002 0.0000 0.0000 23.2803 -3.6538 13.9323 -14.2256 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.6041 0.6525 0.1456 -25.4646 24.5538 9.1413 -0.0000 -0.0000 -7.2787 -8.0252 -19.4460 16.5666 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.6519 2.6679 -48.3129 -0.8602 0.0000 -0.0000 19.4622 -14.2567 41.1782 -30.8870 0.0000 -0.0000 1.6925 -4.6611 17.8085 -6.0006 0.0000 -0.0000 0.9762 -5.9003 -22.0036 -5.0219 0.0000 -0.0000 - 0.5381 -2.7751 23.6394 0.7530 -1.6940 179.6819 -1.6101 -2.9144 -0.1081 -0.6560 -1.6729 -0.1698 6.2745 -0.8234 6.9271 0.4608 6.0237 -0.8266 -8.1255 3.8733 -0.0477 3.2297 -2.9846 -8.0844 -1.8170 7.8491 4.9435 -37.6926 -24.7268 -7.3034 0.0000 0.0000 22.7584 -3.5257 13.7833 -14.3364 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.6631 0.6871 0.2047 -25.4652 24.3635 9.1828 -0.0000 -0.0000 -7.2570 -8.0067 -19.4527 16.5690 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.7275 2.6806 -48.3519 -0.8515 0.0000 -0.0000 19.4136 -14.2817 41.1614 -30.8825 0.0000 -0.0000 1.7523 -4.6487 17.7777 -6.0081 0.0000 -0.0000 0.9488 -5.8901 -22.0317 -5.0312 0.0000 -0.0000 - 0.5362 -2.7601 23.6395 0.7417 -1.6875 179.7424 -1.6535 -2.9131 -0.1092 -0.6575 -1.6688 -0.1605 6.2670 -0.7993 6.9936 0.4569 6.0435 -0.8240 -8.1506 3.8831 -0.0584 3.2202 -3.0175 -8.1253 -1.8097 7.8257 4.9294 -37.0692 -24.7167 -7.0558 0.0000 0.0000 22.3003 -3.4432 13.6058 -14.4119 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.7183 0.7372 0.2681 -25.4599 24.1531 9.2260 -0.0000 -0.0000 -7.2327 -7.9919 -19.4496 16.5659 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.7630 2.6939 -48.3903 -0.8396 0.0000 -0.0000 19.3651 -14.3035 41.1453 -30.8804 0.0000 -0.0000 1.7699 -4.6378 17.7469 -6.0062 0.0000 -0.0000 0.9161 -5.8805 -22.0577 -5.0402 0.0000 -0.0000 - 0.5340 -2.7441 23.6397 0.7592 -1.6778 179.7983 -1.6648 -2.9066 -0.1057 -0.6631 -1.6693 -0.1569 6.2601 -0.7749 7.0548 0.4527 6.0557 -0.8199 -8.1730 3.8984 -0.0613 3.2025 -3.0429 -8.1571 -1.7916 7.8012 4.9217 -36.5632 -24.6909 -6.8824 0.0000 0.0000 21.9150 -3.3633 13.4117 -14.4536 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.7667 0.7872 0.3325 -25.4495 23.9406 9.2801 -0.0000 -0.0000 -7.2050 -7.9758 -19.4393 16.5572 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.8307 2.7110 -48.4236 -0.8302 0.0000 -0.0000 19.3167 -14.3274 41.1297 -30.8805 0.0000 -0.0000 1.8224 -4.6219 17.7193 -6.0082 0.0000 -0.0000 0.8834 -5.8684 -22.0809 -5.0482 0.0000 -0.0000 - 0.5316 -2.7281 23.6397 0.7550 -1.6672 179.8510 -1.7050 -2.9009 -0.1036 -0.6675 -1.6673 -0.1537 6.2618 -0.7551 7.1100 0.4500 6.0654 -0.8158 -8.1979 3.9158 -0.0574 3.1768 -3.0629 -8.1792 -1.7653 7.7565 4.9184 -36.1656 -24.6372 -6.7680 0.0000 0.0000 21.5999 -3.2510 13.2218 -14.4633 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.8116 0.8327 0.3999 -25.4278 23.7339 9.3427 -0.0000 -0.0000 -7.1782 -7.9627 -19.4279 16.5378 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.8755 2.7295 -48.4601 -0.8206 0.0000 -0.0000 19.2704 -14.3480 41.1190 -30.8844 0.0000 -0.0000 1.8504 -4.6056 17.6881 -6.0036 0.0000 -0.0000 0.8461 -5.8556 -22.0978 -5.0521 0.0000 -0.0000 - 0.5289 -2.7115 23.6398 0.7712 -1.6550 179.9015 -1.7228 -2.8929 -0.1005 -0.6751 -1.6657 -0.1522 6.2644 -0.7385 7.1572 0.4470 6.0682 -0.8088 -8.2208 3.9378 -0.0460 3.1452 -3.0751 -8.1923 -1.7235 7.6960 4.9230 -35.8674 -24.5515 -6.7083 0.0000 0.0000 21.3511 -3.0752 13.0518 -14.4460 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.8454 0.8791 0.4713 -25.3935 23.5333 9.4057 -0.0000 -0.0000 -7.1498 -7.9553 -19.4157 16.5086 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.9438 2.7494 -48.4959 -0.8145 0.0000 -0.0000 19.2256 -14.3692 41.1104 -30.8910 0.0000 -0.0000 1.9030 -4.5863 17.6568 -6.0023 0.0000 -0.0000 0.8076 -5.8405 -22.1112 -5.0508 0.0000 -0.0000 - 0.5261 -2.6950 23.6397 0.7625 -1.6449 179.9522 -1.7741 -2.8885 -0.1022 -0.6794 -1.6606 -0.1460 6.2746 -0.7268 7.1976 0.4443 6.0653 -0.8037 -8.2448 3.9652 -0.0277 3.1079 -3.0828 -8.1968 -1.6724 7.6140 4.9296 -35.6407 -24.4359 -6.6836 0.0000 0.0000 21.1588 -2.8126 12.9213 -14.4002 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.8718 0.9361 0.5414 -25.3441 23.3291 9.4701 -0.0000 -0.0000 -7.1259 -7.9525 -19.3986 16.4751 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9874 2.7657 -48.5438 -0.8129 0.0000 -0.0000 19.1867 -14.3847 41.1119 -30.9014 0.0000 -0.0000 1.9269 -4.5701 17.6207 -5.9947 0.0000 -0.0000 0.7632 -5.8242 -22.1208 -5.0421 0.0000 -0.0000 - 0.5229 -2.6778 23.6396 0.7873 -1.6313 -179.9992 -1.7886 -2.8796 -0.1024 -0.6875 -1.6583 -0.1431 6.2877 -0.7178 7.2363 0.4377 6.0581 -0.7966 -8.2652 3.9976 -0.0035 3.0686 -3.0840 -8.1936 -1.6069 7.5165 4.9445 -35.4562 -24.2859 -6.6853 0.0000 0.0000 21.0126 -2.4619 12.8313 -14.3308 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.8878 0.9903 0.6121 -25.2786 23.1420 9.5362 -0.0000 -0.0000 -7.1047 -7.9536 -19.3851 16.4353 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.0686 2.7848 -48.5950 -0.8163 0.0000 -0.0000 19.1508 -14.4007 41.1204 -30.9147 0.0000 -0.0000 1.9898 -4.5489 17.5838 -5.9919 0.0000 -0.0000 0.7183 -5.8053 -22.1257 -5.0275 0.0000 -0.0000 - 0.5196 -2.6611 23.6395 0.7771 -1.6172 -179.9494 -1.8404 -2.8714 -0.1023 -0.6944 -1.6566 -0.1408 6.3002 -0.7114 7.2693 0.4354 6.0510 -0.7916 -8.2879 4.0296 0.0261 3.0273 -3.0808 -8.1831 -1.5353 7.3911 4.9636 -35.2759 -24.1006 -6.6886 0.0000 0.0000 20.9000 -2.0272 12.7859 -14.2381 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -4.8954 1.0480 0.6853 -25.2018 22.9654 9.6011 -0.0000 -0.0000 -7.0903 -7.9558 -19.3733 16.3918 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.1125 2.8052 -48.6527 -0.8180 0.0000 -0.0000 19.1158 -14.4134 41.1326 -30.9305 0.0000 -0.0000 2.0117 -4.5278 17.5442 -5.9813 0.0000 -0.0000 0.6687 -5.7858 -22.1307 -5.0066 0.0000 -0.0000 - 0.5160 -2.6438 23.6393 0.7938 -1.6004 -179.8987 -1.8610 -2.8614 -0.1002 -0.7031 -1.6555 -0.1418 6.3109 -0.7086 7.3005 0.4305 6.0410 -0.7861 -8.3078 4.0664 0.0606 2.9872 -3.0734 -8.1665 -1.4559 7.2570 4.9873 -35.0688 -23.8918 -6.6835 0.0000 0.0000 20.8030 -1.5310 12.7792 -14.1259 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.8929 1.1061 0.7646 -25.1092 22.8116 9.6562 -0.0000 -0.0000 -7.0770 -7.9605 -19.3670 16.3476 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 1.1874 2.8269 -48.7183 -0.8258 0.0000 -0.0000 19.0852 -14.4262 41.1532 -30.9482 0.0000 -0.0000 2.0650 -4.5027 17.5035 -5.9762 0.0000 -0.0000 0.6201 -5.7643 -22.1340 -4.9815 0.0000 -0.0000 - 0.5122 -2.6267 23.6392 0.7992 -1.5852 -179.8446 -1.8951 -2.8566 -0.1007 -0.7092 -1.6533 -0.1409 6.3223 -0.7059 7.3261 0.4228 6.0292 -0.7788 -8.3255 4.1066 0.0976 2.9495 -3.0648 -8.1447 -1.3716 7.1074 5.0148 -34.8057 -23.6556 -6.6534 0.0000 0.0000 20.7080 -1.0016 12.7987 -14.0007 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.8869 1.1692 0.8420 -25.0052 22.6720 9.7113 -0.0000 -0.0000 -7.0704 -7.9639 -19.3619 16.3063 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 1.2526 2.8449 -48.8011 -0.8394 0.0000 -0.0000 19.0616 -14.4343 41.1871 -30.9662 0.0000 -0.0000 2.1049 -4.4795 17.4599 -5.9685 0.0000 -0.0000 0.5691 -5.7418 -22.1383 -4.9536 0.0000 -0.0000 - 0.5083 -2.6097 23.6391 0.7955 -1.5692 -179.7882 -1.9373 -2.8535 -0.1019 -0.7143 -1.6521 -0.1403 6.3312 -0.7046 7.3506 0.4145 6.0180 -0.7711 -8.3422 4.1486 0.1361 2.9159 -3.0543 -8.1184 -1.2857 6.9507 5.0411 -34.4679 -23.4039 -6.5881 0.0000 0.0000 20.5980 -0.4731 12.8302 -13.8638 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.8754 1.2351 0.9232 -24.8952 22.5545 9.7589 -0.0000 -0.0000 -7.0663 -7.9648 -19.3579 16.2697 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.3091 2.8629 -48.8931 -0.8554 0.0000 -0.0000 19.0412 -14.4405 41.2281 -30.9835 0.0000 -0.0000 2.1340 -4.4555 17.4172 -5.9596 0.0000 -0.0000 0.5177 -5.7186 -22.1463 -4.9256 0.0000 -0.0000 - 0.5042 -2.5924 23.6390 0.8034 -1.5526 -179.7285 -1.9631 -2.8538 -0.1008 -0.7200 -1.6520 -0.1397 6.3341 -0.7035 7.3735 0.4046 6.0097 -0.7670 -8.3543 4.1916 0.1760 2.8873 -3.0434 -8.0884 -1.2003 6.7965 5.0676 -34.0461 -23.1490 -6.4856 0.0000 0.0000 20.4578 0.0234 12.8585 -13.7200 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.8602 1.3053 1.0052 -24.7863 22.4521 9.8041 -0.0000 -0.0000 -7.0635 -7.9621 -19.3507 16.2394 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.3802 2.8801 -48.9935 -0.8762 0.0000 -0.0000 19.0249 -14.4470 41.2752 -30.9987 0.0000 -0.0000 2.1772 -4.4299 17.3775 -5.9549 0.0000 -0.0000 0.4687 -5.6941 -22.1602 -4.8996 0.0000 -0.0000 - 0.5000 -2.5752 23.6390 0.8066 -1.5339 -179.6651 -1.9908 -2.8539 -0.1015 -0.7265 -1.6547 -0.1404 6.3341 -0.7045 7.3979 0.3938 6.0070 -0.7622 -8.3644 4.2343 0.2142 2.8655 -3.0325 -8.0559 -1.1188 6.6453 5.0889 -33.5395 -22.8935 -6.3430 0.0000 0.0000 20.2791 0.4571 12.8602 -13.5763 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.8422 1.3751 1.0892 -24.6853 22.3738 9.8468 -0.0000 -0.0000 -7.0617 -7.9529 -19.3404 16.2199 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.4471 2.8991 -49.1004 -0.8982 0.0000 -0.0000 19.0105 -14.4543 41.3256 -31.0118 0.0000 -0.0000 2.2147 -4.4018 17.3400 -5.9503 0.0000 -0.0000 0.4218 -5.6697 -22.1807 -4.8778 0.0000 -0.0000 - 0.4956 -2.5579 23.6390 0.8098 -1.5154 -179.5980 -2.0162 -2.8589 -0.1017 -0.7312 -1.6572 -0.1407 6.3268 -0.7040 7.4207 0.3831 6.0054 -0.7580 -8.3712 4.2790 0.2513 2.8497 -3.0241 -8.0216 -1.0455 6.5125 5.1041 -32.9624 -22.6567 -6.1724 0.0000 0.0000 20.0558 0.8152 12.8237 -13.4360 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.8250 1.4509 1.1768 -24.5956 22.3111 9.8831 -0.0000 -0.0000 -7.0553 -7.9404 -19.3214 16.2060 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.5161 2.9158 -49.2183 -0.9254 0.0000 -0.0000 19.0015 -14.4607 41.3839 -31.0218 0.0000 -0.0000 2.2533 -4.3738 17.3042 -5.9488 0.0000 -0.0000 0.3780 -5.6451 -22.2067 -4.8608 0.0000 -0.0000 - 0.4913 -2.5404 23.6390 0.8202 -1.4964 -179.5270 -2.0299 -2.8681 -0.0994 -0.7358 -1.6600 -0.1422 6.3100 -0.7022 7.4418 0.3739 6.0070 -0.7548 -8.3744 4.3248 0.2866 2.8406 -3.0194 -7.9866 -0.9827 6.4047 5.1137 -32.3357 -22.4479 -5.9882 0.0000 0.0000 19.7882 1.0907 12.7344 -13.3038 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.8081 1.5329 1.2692 -24.5224 22.2616 9.9107 -0.0000 -0.0000 -7.0425 -7.9253 -19.2906 16.2018 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.5950 2.9314 -49.3431 -0.9571 0.0000 -0.0000 18.9962 -14.4686 41.4458 -31.0282 0.0000 -0.0000 2.3016 -4.3446 17.2710 -5.9525 0.0000 -0.0000 0.3388 -5.6204 -22.2393 -4.8498 0.0000 -0.0000 - 0.4869 -2.5232 23.6390 0.8119 -1.4767 -179.4513 -2.0654 -2.8790 -0.1012 -0.7408 -1.6668 -0.1426 6.2977 -0.7000 7.4664 0.3631 6.0197 -0.7539 -8.3755 4.3633 0.3162 2.8383 -3.0151 -7.9510 -0.9277 6.3090 5.1113 -31.6765 -22.2615 -5.7832 0.0000 0.0000 19.4736 1.2867 12.5828 -13.1883 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7980 1.6138 1.3555 -24.4749 22.2229 9.9493 -0.0000 -0.0000 -7.0297 -7.9058 -19.2470 16.2047 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.6541 2.9481 -49.4692 -0.9871 0.0000 -0.0000 18.9898 -14.4785 41.5038 -31.0321 0.0000 -0.0000 2.3280 -4.3149 17.2390 -5.9540 0.0000 -0.0000 0.3015 -5.5966 -22.2790 -4.8445 0.0000 -0.0000 - 0.4828 -2.5060 23.6390 0.7950 -1.4593 -179.3732 -2.1091 -2.8968 -0.1019 -0.7438 -1.6721 -0.1415 6.2779 -0.6943 7.4882 0.3551 6.0322 -0.7516 -8.3744 4.4034 0.3432 2.8417 -3.0160 -7.9181 -0.8853 6.2430 5.1022 -31.0195 -22.1114 -5.5917 0.0000 0.0000 19.1275 1.4272 12.3689 -13.0944 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.7915 1.7039 1.4452 -24.4499 22.1910 9.9787 -0.0000 -0.0000 -7.0079 -7.8881 -19.1903 16.2111 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.7056 2.9609 -49.5986 -1.0206 0.0000 -0.0000 18.9866 -14.4885 41.5626 -31.0323 0.0000 -0.0000 2.3464 -4.2878 17.2087 -5.9581 0.0000 -0.0000 0.2671 -5.5733 -22.3233 -4.8434 0.0000 -0.0000 - 0.4787 -2.4883 23.6390 0.8039 -1.4398 -179.2909 -2.1221 -2.9154 -0.1006 -0.7487 -1.6792 -0.1415 6.2507 -0.6876 7.5113 0.3483 6.0506 -0.7517 -8.3688 4.4392 0.3666 2.8514 -3.0186 -7.8880 -0.8518 6.2054 5.0875 -30.3869 -21.9987 -5.4208 0.0000 0.0000 18.7545 1.5353 12.0991 -13.0260 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -4.7885 1.7949 1.5336 -24.4502 22.1663 10.0080 -0.0000 -0.0000 -6.9800 -7.8725 -19.1206 16.2225 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.7868 2.9737 -49.7302 -1.0583 0.0000 -0.0000 18.9848 -14.5026 41.6204 -31.0299 0.0000 -0.0000 2.3952 -4.2582 17.1785 -5.9702 0.0000 -0.0000 0.2386 -5.5496 -22.3711 -4.8466 0.0000 -0.0000 - 0.4746 -2.4708 23.6389 0.8003 -1.4178 -179.2069 -2.1468 -2.9297 -0.0997 -0.7566 -1.6925 -0.1464 6.2241 -0.6812 7.5454 0.3440 6.0791 -0.7565 -8.3614 4.4711 0.3861 2.8654 -3.0261 -7.8617 -0.8234 6.1808 5.0692 -29.7986 -21.9073 -5.2754 0.0000 0.0000 18.3677 1.6385 11.7843 -12.9891 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7919 1.8883 1.6225 -24.4733 22.1470 10.0337 -0.0000 -0.0000 -6.9476 -7.8591 -19.0449 16.2347 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.8538 2.9911 -49.8521 -1.0908 0.0000 -0.0000 18.9774 -14.5213 41.6663 -31.0277 0.0000 -0.0000 2.4288 -4.2266 17.1454 -5.9788 0.0000 -0.0000 0.2111 -5.5278 -22.4184 -4.8516 0.0000 -0.0000 - 0.4711 -2.4536 23.6388 0.7828 -1.4009 -179.1182 -2.1892 -2.9541 -0.1003 -0.7610 -1.7019 -0.1461 6.1946 -0.6702 7.5732 0.3415 6.1079 -0.7595 -8.3523 4.4994 0.4017 2.8830 -3.0377 -7.8410 -0.8020 6.1690 5.0480 -29.2705 -21.8385 -5.1689 0.0000 0.0000 17.9806 1.7727 11.4475 -12.9854 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.8033 1.9896 1.7068 -24.5115 22.1226 10.0553 -0.0000 -0.0000 -6.9133 -7.8527 -18.9621 16.2465 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.9076 3.0005 -49.9783 -1.1273 0.0000 -0.0000 18.9722 -14.5387 41.7105 -31.0205 0.0000 -0.0000 2.4464 -4.2016 17.1098 -5.9874 0.0000 -0.0000 0.1841 -5.5059 -22.4682 -4.8568 0.0000 -0.0000 - 0.4678 -2.4359 23.6386 0.7945 -1.3813 -179.0281 -2.1977 -2.9727 -0.0983 -0.7689 -1.7170 -0.1508 6.1620 -0.6561 7.6090 0.3392 6.1370 -0.7656 -8.3400 4.5288 0.4158 2.9042 -3.0532 -7.8272 -0.7850 6.1760 5.0257 -28.8100 -21.7931 -5.1065 0.0000 0.0000 17.6035 1.9624 11.1104 -13.0141 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.8179 2.0958 1.7943 -24.5566 22.1022 10.0605 -0.0000 -0.0000 -6.8730 -7.8534 -18.8800 16.2563 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.9935 3.0116 -50.0987 -1.1645 0.0000 -0.0000 18.9640 -14.5609 41.7480 -31.0138 0.0000 -0.0000 2.4982 -4.1740 17.0726 -6.0037 0.0000 -0.0000 0.1619 -5.4838 -22.5165 -4.8618 0.0000 -0.0000 - 0.4651 -2.4189 23.6383 0.7717 -1.3688 -178.9349 -2.2469 -3.0032 -0.0983 -0.7728 -1.7237 -0.1469 6.1312 -0.6417 7.6361 0.3383 6.1694 -0.7700 -8.3273 4.5522 0.4253 2.9271 -3.0736 -7.8197 -0.7693 6.1696 5.0086 -28.4180 -21.7399 -5.0890 0.0000 0.0000 17.2531 2.2212 10.7878 -13.0754 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.8429 2.2051 1.8677 -24.6090 22.0719 10.0748 -0.0000 -0.0000 -6.8430 -7.8547 -18.8003 16.2656 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.0424 3.0145 -50.2158 -1.2006 0.0000 -0.0000 18.9535 -14.5810 41.7767 -31.0061 0.0000 -0.0000 2.5082 -4.1562 17.0312 -6.0115 0.0000 -0.0000 0.1354 -5.4626 -22.5646 -4.8634 0.0000 -0.0000 - 0.4628 -2.4016 23.6379 0.7755 -1.3525 -178.8375 -2.2625 -3.0227 -0.0970 -0.7793 -1.7407 -0.1532 6.0932 -0.6210 7.6742 0.3397 6.2010 -0.7783 -8.3129 4.5748 0.4338 2.9519 -3.0971 -7.8186 -0.7540 6.1598 4.9933 -28.0842 -21.6854 -5.1067 0.0000 0.0000 16.9314 2.5514 10.5007 -13.1621 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.8729 2.3157 1.9444 -24.6506 22.0456 10.0708 -0.0000 -0.0000 -6.8137 -7.8606 -18.7318 16.2721 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.1208 3.0194 -50.3332 -1.2380 0.0000 -0.0000 18.9408 -14.6047 41.8020 -30.9983 0.0000 -0.0000 2.5472 -4.1356 16.9844 -6.0235 0.0000 -0.0000 0.1123 -5.4413 -22.6102 -4.8635 0.0000 -0.0000 - 0.4612 -2.3849 23.6376 0.7545 -1.3419 -178.7396 -2.3102 -3.0506 -0.0978 -0.7824 -1.7465 -0.1493 6.0635 -0.6040 7.7029 0.3381 6.2324 -0.7844 -8.2989 4.5965 0.4392 2.9770 -3.1254 -7.8236 -0.7393 6.1301 4.9827 -27.8027 -21.6121 -5.1598 0.0000 0.0000 16.6508 2.9449 10.2567 -13.2672 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.9100 2.4314 2.0116 -24.6797 22.0117 10.0617 -0.0000 -0.0000 -6.7927 -7.8681 -18.6727 16.2740 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.1711 3.0183 -50.4424 -1.2716 0.0000 -0.0000 18.9229 -14.6273 41.8165 -30.9899 0.0000 -0.0000 2.5561 -4.1229 16.9369 -6.0298 0.0000 -0.0000 0.0862 -5.4204 -22.6559 -4.8606 0.0000 -0.0000 - 0.4601 -2.3680 23.6371 0.7635 -1.3302 -178.6363 -2.3203 -3.0663 -0.0979 -0.7886 -1.7680 -0.1607 6.0282 -0.5740 7.7434 0.3367 6.2589 -0.7935 -8.2839 4.6175 0.4434 3.0030 -3.1559 -7.8330 -0.7237 6.0827 4.9747 -27.5593 -21.5212 -5.2352 0.0000 0.0000 16.4114 3.3778 10.0588 -13.3797 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.9506 2.5424 2.0769 -24.6869 21.9830 10.0415 -0.0000 -0.0000 -6.7781 -7.8745 -18.6288 16.2732 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.2553 3.0143 -50.5579 -1.3103 0.0000 -0.0000 18.9059 -14.6509 41.8322 -30.9810 0.0000 -0.0000 2.5967 -4.1113 16.8815 -6.0389 0.0000 -0.0000 0.0619 -5.3992 -22.6977 -4.8563 0.0000 -0.0000 - 0.4597 -2.3517 23.6367 0.7453 -1.3222 -178.5337 -2.3621 -3.0902 -0.0987 -0.7901 -1.7672 -0.1538 5.9954 -0.5580 7.7598 0.3354 6.2830 -0.7996 -8.2724 4.6384 0.4483 3.0288 -3.1885 -7.8450 -0.7124 6.0086 4.9719 -27.3476 -21.4043 -5.3295 0.0000 0.0000 16.2202 3.8243 9.9035 -13.4861 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.9988 2.6634 2.1406 -24.6660 21.9422 10.0075 -0.0000 -0.0000 -6.7725 -7.8791 -18.5927 16.2719 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.3071 3.0083 -50.6569 -1.3398 0.0000 -0.0000 18.8788 -14.6760 41.8305 -30.9719 0.0000 -0.0000 2.6062 -4.1047 16.8328 -6.0461 0.0000 -0.0000 0.0378 -5.3784 -22.7458 -4.8509 0.0000 -0.0000 - 0.4601 -2.3354 23.6362 0.7563 -1.3161 -178.4300 -2.3674 -3.1038 -0.0959 -0.7969 -1.7807 -0.1579 5.9625 -0.5283 7.7794 0.3316 6.2975 -0.8068 -8.2617 4.6601 0.4518 3.0548 -3.2215 -7.8576 -0.7018 5.9132 4.9663 -27.1587 -21.2680 -5.4273 0.0000 0.0000 16.0717 4.2475 9.7797 -13.5736 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.0478 2.7790 2.1998 -24.6196 21.9051 9.9670 -0.0000 -0.0000 -6.7724 -7.8811 -18.5660 16.2660 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.3907 2.9959 -50.7538 -1.3733 0.0000 -0.0000 18.8511 -14.7021 41.8260 -30.9613 0.0000 -0.0000 2.6483 -4.1026 16.7817 -6.0579 0.0000 -0.0000 0.0153 -5.3569 -22.7913 -4.8463 0.0000 -0.0000 - 0.4610 -2.3198 23.6358 0.7382 -1.3093 -178.3238 -2.4114 -3.1173 -0.0978 -0.7944 -1.7788 -0.1545 5.9350 -0.5098 7.7862 0.3269 6.3147 -0.8160 -8.2546 4.6773 0.4551 3.0801 -3.2544 -7.8678 -0.6972 5.7852 4.9714 -26.9987 -21.1008 -5.5427 0.0000 0.0000 15.9757 4.6209 9.6693 -13.6290 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.1035 2.8905 2.2435 -24.5542 21.8590 9.9448 -0.0000 -0.0000 -6.7873 -7.8759 -18.5429 16.2574 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.4407 2.9856 -50.8561 -1.4001 0.0000 -0.0000 18.8199 -14.7260 41.8232 -30.9509 0.0000 -0.0000 2.6549 -4.1012 16.7295 -6.0630 0.0000 -0.0000 -0.0075 -5.3373 -22.8394 -4.8430 0.0000 -0.0000 - 0.4628 -2.3042 23.6354 0.7403 -1.3074 -178.2189 -2.4255 -3.1228 -0.0958 -0.8024 -1.7869 -0.1581 5.9098 -0.4807 7.7840 0.3209 6.3175 -0.8202 -8.2516 4.6975 0.4578 3.1055 -3.2850 -7.8738 -0.6934 5.6375 4.9609 -26.8563 -20.9218 -5.6331 0.0000 0.0000 15.9117 4.9142 9.5666 -13.6409 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.1546 3.0065 2.2923 -24.4624 21.8121 9.8993 -0.0000 -0.0000 -6.7954 -7.8718 -18.5210 16.2453 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.5114 2.9665 -50.9417 -1.4284 0.0000 -0.0000 18.7846 -14.7537 41.8054 -30.9384 0.0000 -0.0000 2.6864 -4.1069 16.6817 -6.0765 0.0000 -0.0000 -0.0268 -5.3168 -22.8897 -4.8424 0.0000 -0.0000 - 0.4650 -2.2892 23.6350 0.7219 -1.3014 -178.1175 -2.4677 -3.1232 -0.0934 -0.8034 -1.7805 -0.1564 5.8906 -0.4656 7.7685 0.3152 6.3226 -0.8283 -8.2541 4.7130 0.4616 3.1302 -3.3122 -7.8725 -0.6966 5.4668 4.9584 -26.7498 -20.7246 -5.7332 0.0000 0.0000 15.8937 5.1178 9.4517 -13.6011 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -5.2075 3.1147 2.3313 -24.3617 21.7630 9.8737 -0.0000 -0.0000 -6.8099 -7.8627 -18.4958 16.2291 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.5556 2.9550 -51.0195 -1.4451 0.0000 -0.0000 18.7414 -14.7830 41.7831 -30.9266 0.0000 -0.0000 2.6949 -4.1087 16.6396 -6.0879 0.0000 -0.0000 -0.0436 -5.2986 -22.9432 -4.8456 0.0000 -0.0000 - 0.4681 -2.2746 23.6346 0.7080 -1.3002 -178.0166 -2.5044 -3.1171 -0.0936 -0.8067 -1.7789 -0.1561 5.8745 -0.4442 7.7408 0.3090 6.3164 -0.8328 -8.2612 4.7269 0.4646 3.1550 -3.3343 -7.8630 -0.7008 5.2795 4.9484 -26.6747 -20.5199 -5.8174 0.0000 0.0000 15.9060 5.2233 9.3217 -13.5084 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -5.2550 3.2192 2.3648 -24.2549 21.7144 9.8535 -0.0000 -0.0000 -6.8192 -7.8557 -18.4651 16.2081 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.6045 2.9343 -51.1013 -1.4665 0.0000 -0.0000 18.7019 -14.8099 41.7654 -30.9129 0.0000 -0.0000 2.7094 -4.1176 16.5966 -6.1030 0.0000 -0.0000 -0.0584 -5.2807 -22.9956 -4.8521 0.0000 -0.0000 - 0.4719 -2.2602 23.6342 0.6974 -1.3000 -177.9219 -2.5360 -3.1062 -0.0899 -0.8141 -1.7746 -0.1570 5.8633 -0.4243 7.7019 0.3036 6.3043 -0.8368 -8.2731 4.7378 0.4676 3.1798 -3.3498 -7.8441 -0.7068 5.0830 4.9324 -26.6359 -20.3176 -5.8884 0.0000 0.0000 15.9442 5.2394 9.1775 -13.3654 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.2971 3.3193 2.3904 -24.1507 21.6656 9.8473 -0.0000 -0.0000 -6.8233 -7.8522 -18.4256 16.1836 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.6537 2.9121 -51.1684 -1.4843 0.0000 -0.0000 18.6582 -14.8392 41.7397 -30.8980 0.0000 -0.0000 2.7302 -4.1287 16.5602 -6.1231 0.0000 -0.0000 -0.0698 -5.2636 -23.0487 -4.8623 0.0000 -0.0000 - 0.4763 -2.2458 23.6338 0.7048 -1.3007 -177.8343 -2.5476 -3.0905 -0.0831 -0.8255 -1.7674 -0.1604 5.8575 -0.4065 7.6545 0.2970 6.2861 -0.8378 -8.2883 4.7450 0.4693 3.2053 -3.3575 -7.8157 -0.7120 4.8843 4.9101 -26.6316 -20.1243 -5.9439 0.0000 0.0000 16.0006 5.1804 9.0233 -13.1806 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -5.3318 3.4046 2.4051 -24.0584 21.6301 9.8653 -0.0000 -0.0000 -6.8208 -7.8532 -18.3814 16.1529 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.7200 2.8869 -51.2258 -1.5018 0.0000 -0.0000 18.6139 -14.8699 41.7128 -30.8824 0.0000 -0.0000 2.7744 -4.1418 16.5313 -6.1511 0.0000 -0.0000 -0.0773 -5.2469 -23.1018 -4.8756 0.0000 -0.0000 - 0.4811 -2.2323 23.6334 0.6848 -1.2999 -177.7522 -2.5940 -3.0658 -0.0791 -0.8321 -1.7593 -0.1587 5.8565 -0.3944 7.5968 0.2939 6.2686 -0.8427 -8.3099 4.7464 0.4729 3.2303 -3.3589 -7.7776 -0.7165 4.6799 4.8907 -26.6626 -19.9382 -5.9904 0.0000 0.0000 16.0737 5.0688 8.8698 -12.9674 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.3601 3.4881 2.4224 -23.9756 21.5987 9.8854 -0.0000 -0.0000 -6.8076 -7.8639 -18.3342 16.1220 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.7540 2.8642 -51.2867 -1.5163 0.0000 -0.0000 18.5714 -14.8976 41.6945 -30.8659 0.0000 -0.0000 2.7874 -4.1539 16.5003 -6.1746 0.0000 -0.0000 -0.0838 -5.2330 -23.1491 -4.8915 0.0000 -0.0000 - 0.4867 -2.2190 23.6330 0.6650 -1.3035 -177.6782 -2.6387 -3.0419 -0.0738 -0.8435 -1.7505 -0.1591 5.8609 -0.3799 7.5354 0.2914 6.2461 -0.8437 -8.3342 4.7435 0.4742 3.2556 -3.3539 -7.7321 -0.7180 4.4773 4.8661 -26.7138 -19.7667 -6.0171 0.0000 0.0000 16.1518 4.9246 8.7293 -12.7447 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.3819 3.5605 2.4267 -23.9103 21.5805 9.9289 -0.0000 -0.0000 -6.7887 -7.8814 -18.2868 16.0897 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.7861 2.8350 -51.3383 -1.5325 0.0000 -0.0000 18.5308 -14.9244 41.6753 -30.8487 0.0000 -0.0000 2.8025 -4.1718 16.4749 -6.2010 0.0000 -0.0000 -0.0897 -5.2197 -23.1941 -4.9079 0.0000 -0.0000 - 0.4928 -2.2062 23.6325 0.6452 -1.3104 -177.6137 -2.6815 -3.0197 -0.0682 -0.8569 -1.7417 -0.1581 5.8651 -0.3629 7.4716 0.2918 6.2223 -0.8410 -8.3605 4.7356 0.4725 3.2814 -3.3433 -7.6811 -0.7183 4.2826 4.8412 -26.7782 -19.6155 -6.0340 0.0000 0.0000 16.2324 4.7676 8.6133 -12.5294 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.4009 3.6193 2.4185 -23.8612 21.5792 9.9951 -0.0000 -0.0000 -6.7670 -7.9043 -18.2427 16.0580 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.8168 2.7995 -51.3846 -1.5538 0.0000 -0.0000 18.4957 -14.9485 41.6608 -30.8306 0.0000 -0.0000 2.8184 -4.1944 16.4518 -6.2280 0.0000 -0.0000 -0.0957 -5.2071 -23.2319 -4.9238 0.0000 -0.0000 - 0.4993 -2.1937 23.6321 0.6243 -1.3166 -177.5591 -2.7255 -2.9936 -0.0587 -0.8707 -1.7329 -0.1581 5.8720 -0.3488 7.4124 0.2937 6.1991 -0.8443 -8.3895 4.7246 0.4732 3.3080 -3.3290 -7.6271 -0.7175 4.1041 4.8185 -26.8456 -19.4928 -6.0356 0.0000 0.0000 16.3047 4.6158 8.5340 -12.3384 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.4134 3.6698 2.4150 -23.8196 21.6002 10.0581 -0.0000 -0.0000 -6.7372 -7.9349 -18.2088 16.0301 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 2.8432 2.7648 -51.4304 -1.5739 0.0000 -0.0000 18.4636 -14.9698 41.6560 -30.8121 0.0000 -0.0000 2.8322 -4.2172 16.4328 -6.2518 0.0000 -0.0000 -0.1028 -5.1953 -23.2643 -4.9386 0.0000 -0.0000 - 0.5064 -2.1815 23.6316 0.6012 -1.3271 -177.5132 -2.7704 -2.9732 -0.0521 -0.8855 -1.7261 -0.1567 5.8795 -0.3296 7.3581 0.2960 6.1796 -0.8427 -8.4176 4.7082 0.4693 3.3357 -3.3128 -7.5723 -0.7146 3.9327 4.7979 -26.9024 -19.3866 -6.0235 0.0000 0.0000 16.3662 4.4661 8.4861 -12.1893 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -5.4273 3.7065 2.3995 -23.7828 21.6411 10.1351 -0.0000 -0.0000 -6.7105 -7.9659 -18.1872 16.0081 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8673 2.7215 -51.4752 -1.6034 0.0000 -0.0000 18.4410 -14.9870 41.6589 -30.7928 0.0000 -0.0000 2.8430 -4.2461 16.4152 -6.2735 0.0000 -0.0000 -0.1122 -5.1835 -23.2891 -4.9509 0.0000 -0.0000 - 0.5140 -2.1698 23.6311 0.5762 -1.3390 -177.4774 -2.8132 -2.9566 -0.0423 -0.9012 -1.7202 -0.1555 5.8835 -0.3071 7.3126 0.3010 6.1626 -0.8434 -8.4460 4.6904 0.4651 3.3640 -3.2976 -7.5197 -0.7182 3.7842 4.7811 -26.9477 -19.3132 -6.0075 0.0000 0.0000 16.4141 4.3219 8.4696 -12.0894 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.4434 3.7347 2.3817 -23.7436 21.7025 10.2126 -0.0000 -0.0000 -6.6873 -7.9951 -18.1775 15.9918 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.8877 2.6753 -51.5183 -1.6368 0.0000 -0.0000 18.4247 -15.0007 41.6700 -30.7733 0.0000 -0.0000 2.8492 -4.2777 16.4002 -6.2889 0.0000 -0.0000 -0.1250 -5.1720 -23.3063 -4.9604 0.0000 -0.0000 - 0.5219 -2.1584 23.6307 0.5485 -1.3524 -177.4516 -2.8555 -2.9451 -0.0315 -0.9172 -1.7159 -0.1542 5.8844 -0.2795 7.2778 0.3079 6.1489 -0.8443 -8.4742 4.6727 0.4599 3.3933 -3.2862 -7.4717 -0.7294 3.6567 4.7678 -26.9821 -19.2680 -5.9896 0.0000 0.0000 16.4468 4.1673 8.4692 -12.0442 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.4644 3.7546 2.3615 -23.6952 21.7841 10.2873 -0.0000 -0.0000 -6.6708 -8.0181 -18.1808 15.9809 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.9040 2.6254 -51.5613 -1.6757 0.0000 -0.0000 18.4165 -15.0104 41.6904 -30.7536 0.0000 -0.0000 2.8496 -4.3125 16.3885 -6.2971 0.0000 -0.0000 -0.1421 -5.1602 -23.3166 -4.9667 0.0000 -0.0000 - 0.5302 -2.1478 23.6303 0.4893 -1.3693 -177.4357 -2.9329 -2.9432 -0.0212 -0.9301 -1.7169 -0.1525 5.8890 -0.2372 7.2525 0.3142 6.1396 -0.8435 -8.5031 4.6537 0.4524 3.4230 -3.2808 -7.4298 -0.7504 3.5406 4.7561 -27.0169 -19.2431 -5.9730 0.0000 0.0000 16.4679 3.9862 8.4651 -12.0522 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.4936 3.7789 2.3402 -23.6271 21.8691 10.3459 -0.0000 -0.0000 -6.6623 -8.0355 -18.1919 15.9784 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.8845 2.5723 -51.6023 -1.7164 0.0000 -0.0000 18.4142 -15.0148 41.7170 -30.7344 0.0000 -0.0000 2.8106 -4.3517 16.3815 -6.2919 0.0000 -0.0000 -0.1660 -5.1485 -23.3224 -4.9698 0.0000 -0.0000 - 0.5387 -2.1370 23.6300 0.4658 -1.3811 -177.4300 -2.9643 -2.9386 -0.0100 -0.9453 -1.7152 -0.1509 5.8838 -0.2085 7.2467 0.3230 6.1428 -0.8505 -8.5282 4.6387 0.4468 3.4540 -3.2814 -7.3940 -0.7781 3.4497 4.7522 -27.0686 -19.2425 -5.9683 0.0000 0.0000 16.4783 3.7537 8.4376 -12.0998 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.5296 3.7990 2.3190 -23.5411 21.9671 10.4001 -0.0000 -0.0000 -6.6649 -8.0416 -18.2089 15.9771 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9035 2.5204 -51.6475 -1.7661 0.0000 -0.0000 18.4229 -15.0179 41.7589 -30.7155 0.0000 -0.0000 2.8096 -4.3877 16.3779 -6.2839 0.0000 -0.0000 -0.1919 -5.1356 -23.3197 -4.9707 0.0000 -0.0000 - 0.5476 -2.1268 23.6296 0.4138 -1.3992 -177.4360 -3.0277 -2.9494 0.0024 -0.9584 -1.7225 -0.1491 5.8820 -0.1489 7.2433 0.3302 6.1381 -0.8491 -8.5539 4.6283 0.4396 3.4849 -3.2908 -7.3660 -0.8179 3.3709 4.7490 -27.1689 -19.2581 -5.9888 0.0000 0.0000 16.4982 3.4654 8.3705 -12.1740 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.5733 3.8350 2.2944 -23.4315 22.0533 10.4369 -0.0000 -0.0000 -6.6776 -8.0421 -18.2226 15.9759 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.8893 2.4628 -51.6822 -1.8160 0.0000 -0.0000 18.4350 -15.0167 41.7998 -30.6966 0.0000 -0.0000 2.7739 -4.4310 16.3838 -6.2642 0.0000 -0.0000 -0.2250 -5.1218 -23.3155 -4.9691 0.0000 -0.0000 - 0.5565 -2.1165 23.6294 0.3841 -1.4112 -177.4517 -3.0641 -2.9572 0.0140 -0.9719 -1.7253 -0.1476 5.8764 -0.1067 7.2574 0.3399 6.1511 -0.8564 -8.5773 4.6208 0.4346 3.5155 -3.3065 -7.3436 -0.8612 3.3017 4.7526 -27.3457 -19.2821 -6.0422 0.0000 0.0000 16.5382 3.1124 8.2541 -12.2471 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -5.6210 3.8776 2.2717 -23.3022 22.1356 10.4627 -0.0000 -0.0000 -6.6998 -8.0357 -18.2324 15.9703 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8988 2.4094 -51.7222 -1.8714 0.0000 -0.0000 18.4559 -15.0136 41.8557 -30.6786 0.0000 -0.0000 2.7611 -4.4695 16.3938 -6.2389 0.0000 -0.0000 -0.2607 -5.1073 -23.3048 -4.9670 0.0000 -0.0000 - 0.5656 -2.1065 23.6292 0.3449 -1.4235 -177.4806 -3.1130 -2.9710 0.0266 -0.9840 -1.7341 -0.1458 5.8743 -0.0489 7.2758 0.3492 6.1604 -0.8615 -8.6009 4.6210 0.4314 3.5451 -3.3289 -7.3262 -0.9032 3.2302 4.7614 -27.6288 -19.3007 -6.1381 0.0000 0.0000 16.6243 2.7091 8.0971 -12.2968 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.6687 3.9468 2.2463 -23.1578 22.1922 10.4771 -0.0000 -0.0000 -6.7312 -8.0309 -18.2319 15.9538 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.8951 2.3571 -51.7520 -1.9247 0.0000 -0.0000 18.4792 -15.0085 41.9131 -30.6618 0.0000 -0.0000 2.7366 -4.5089 16.4139 -6.2058 0.0000 -0.0000 -0.3008 -5.0923 -23.2915 -4.9645 0.0000 -0.0000 - 0.5748 -2.0965 23.6290 0.3144 -1.4330 -177.5227 -3.1541 -2.9852 0.0389 -0.9962 -1.7410 -0.1434 5.8749 0.0049 7.3006 0.3597 6.1727 -0.8681 -8.6234 4.6292 0.4317 3.5723 -3.3556 -7.3121 -0.9354 3.1490 4.7788 -28.0404 -19.3038 -6.2864 0.0000 0.0000 16.7835 2.2876 7.9237 -12.2981 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -5.7130 4.0422 2.2187 -23.0019 22.2246 10.4861 -0.0000 -0.0000 -6.7703 -8.0322 -18.2212 15.9225 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.8984 2.3086 -51.7745 -1.9768 0.0000 -0.0000 18.5049 -15.0019 41.9756 -30.6456 0.0000 -0.0000 2.7221 -4.5458 16.4430 -6.1681 0.0000 -0.0000 -0.3436 -5.0771 -23.2738 -4.9625 0.0000 -0.0000 - 0.5837 -2.0865 23.6289 0.2934 -1.4381 -177.5778 -3.1890 -2.9972 0.0514 -1.0073 -1.7457 -0.1412 5.8792 0.0506 7.3294 0.3722 6.1901 -0.8778 -8.6457 4.6439 0.4359 3.5962 -3.3837 -7.2983 -0.9472 3.0413 4.8056 -28.5886 -19.2763 -6.4847 0.0000 0.0000 17.0445 1.8925 7.7728 -12.2277 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.7467 4.1666 2.1881 -22.8416 22.2302 10.4959 -0.0000 -0.0000 -6.8182 -8.0463 -18.2034 15.8732 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9092 2.2659 -51.7943 -2.0269 0.0000 -0.0000 18.5340 -14.9932 42.0479 -30.6304 0.0000 -0.0000 2.7195 -4.5783 16.4793 -6.1278 0.0000 -0.0000 -0.3871 -5.0620 -23.2504 -4.9620 0.0000 -0.0000 - 0.5927 -2.0766 23.6288 0.2726 -1.4436 -177.6478 -3.2288 -3.0117 0.0642 -1.0191 -1.7532 -0.1391 5.8921 0.1049 7.3543 0.3846 6.1975 -0.8830 -8.6681 4.6691 0.4441 3.6158 -3.4108 -7.2835 -0.9314 2.8993 4.8445 -29.2688 -19.2091 -6.7388 0.0000 0.0000 17.4452 1.5867 7.6956 -12.0719 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.7652 4.3279 2.1508 -22.6802 22.2070 10.5128 -0.0000 -0.0000 -6.8757 -8.0796 -18.1821 15.8010 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.9161 2.2260 -51.7955 -2.0703 0.0000 -0.0000 18.5596 -14.9837 42.1153 -30.6152 0.0000 -0.0000 2.7196 -4.6109 16.5273 -6.0861 0.0000 -0.0000 -0.4322 -5.0470 -23.2243 -4.9629 0.0000 -0.0000 - 0.6014 -2.0669 23.6287 0.2484 -1.4494 -177.7318 -3.2788 -3.0259 0.0760 -1.0308 -1.7640 -0.1377 5.9147 0.1647 7.3746 0.3975 6.1943 -0.8842 -8.6911 4.7048 0.4562 3.6297 -3.4344 -7.2648 -0.8793 2.7093 4.8972 -30.0546 -19.0913 -7.0395 0.0000 0.0000 18.0188 1.4317 7.7430 -11.8222 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.7623 4.5280 2.1068 -22.5184 22.1602 10.5404 -0.0000 -0.0000 -6.9466 -8.1365 -18.1663 15.7069 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.9154 2.1891 -51.7830 -2.1072 0.0000 -0.0000 18.5822 -14.9718 42.1817 -30.5998 0.0000 -0.0000 2.7185 -4.6429 16.5842 -6.0431 0.0000 -0.0000 -0.4782 -5.0328 -23.1938 -4.9652 0.0000 -0.0000 - 0.6097 -2.0571 23.6286 0.2342 -1.4493 -177.8295 -3.3232 -3.0339 0.0877 -1.0424 -1.7650 -0.1342 5.9445 0.2024 7.3912 0.4131 6.1930 -0.8884 -8.7157 4.7482 0.4757 3.6388 -3.4499 -7.2409 -0.7824 2.4593 4.9665 -30.8997 -18.9151 -7.3659 0.0000 0.0000 18.7915 1.4817 7.9622 -11.4777 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.7361 4.7610 2.0593 -22.3547 22.1041 10.5864 -0.0000 -0.0000 -7.0344 -8.2167 -18.1701 15.5847 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.9212 2.1628 -51.7593 -2.1357 0.0000 -0.0000 18.6008 -14.9594 42.2505 -30.5848 0.0000 -0.0000 2.7321 -4.6672 16.6468 -6.0022 0.0000 -0.0000 -0.5216 -5.0202 -23.1558 -4.9699 0.0000 -0.0000 - 0.6177 -2.0475 23.6286 0.2224 -1.4511 -177.9388 -3.3703 -3.0413 0.0976 -1.0537 -1.7687 -0.1331 5.9822 0.2412 7.4014 0.4293 6.1808 -0.8877 -8.7423 4.8006 0.4991 3.6419 -3.4562 -7.2096 -0.6381 2.1422 5.0508 -31.7501 -18.6787 -7.7026 0.0000 0.0000 19.7879 1.7833 8.3893 -11.0436 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -5.6837 5.0280 2.0112 -22.1737 22.0509 10.6423 -0.0000 -0.0000 -7.1456 -8.3194 -18.2025 15.4433 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.9263 2.1367 -51.7252 -2.1604 0.0000 -0.0000 18.6173 -14.9436 42.3195 -30.5685 0.0000 -0.0000 2.7521 -4.6923 16.7139 -5.9647 0.0000 -0.0000 -0.5637 -5.0085 -23.1108 -4.9757 0.0000 -0.0000 - 0.6253 -2.0380 23.6285 0.2135 -1.4529 -178.0580 -3.4177 -3.0465 0.1069 -1.0651 -1.7712 -0.1316 6.0265 0.2755 7.4030 0.4457 6.1557 -0.8842 -8.7703 4.8652 0.5273 3.6395 -3.4519 -7.1708 -0.4473 1.7580 5.1529 -32.5468 -18.3838 -8.0375 0.0000 0.0000 21.0225 2.3630 9.0493 -10.5280 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.6019 5.3297 1.9576 -21.9704 22.0099 10.7185 -0.0000 -0.0000 -7.2925 -8.4358 -18.2707 15.2828 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.9315 2.1135 -51.6806 -2.1803 0.0000 -0.0000 18.6300 -14.9252 42.3874 -30.5505 0.0000 -0.0000 2.7788 -4.7156 16.7841 -5.9311 0.0000 -0.0000 -0.6033 -4.9980 -23.0595 -4.9825 0.0000 -0.0000 - 0.6324 -2.0286 23.6284 0.2089 -1.4560 -178.1850 -3.4621 -3.0521 0.1153 -1.0760 -1.7733 -0.1306 6.0756 0.3064 7.3962 0.4611 6.1198 -0.8758 -8.8003 4.9408 0.5592 3.6323 -3.4368 -7.1243 -0.2111 1.3036 5.2702 -33.2321 -18.0322 -8.3508 0.0000 0.0000 22.4948 3.2276 9.9536 -9.9469 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.4927 5.6629 1.9008 -21.7263 21.9953 10.8099 -0.0000 -0.0000 -7.4852 -8.5564 -18.3812 15.1073 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.9393 2.0908 -51.6280 -2.1987 0.0000 -0.0000 18.6407 -14.9043 42.4547 -30.5307 0.0000 -0.0000 2.8139 -4.7382 16.8549 -5.9035 0.0000 -0.0000 -0.6395 -4.9883 -23.0012 -4.9900 0.0000 -0.0000 - 0.6391 -2.0189 23.6283 0.2338 -1.4604 -178.3163 -3.4702 -3.0580 0.1229 -1.0885 -1.7764 -0.1293 6.1215 0.3362 7.3802 0.4749 6.0691 -0.8628 -8.8318 5.0289 0.5956 3.6218 -3.4102 -7.0706 0.0657 0.7875 5.3989 -33.7563 -17.6345 -8.6265 0.0000 0.0000 24.1887 4.3594 11.1023 -9.3185 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.3603 6.0237 1.8530 -21.4122 22.0276 10.8969 -0.0000 -0.0000 -7.7286 -8.6700 -18.5392 14.9205 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.9789 2.0654 -51.5708 -2.2217 0.0000 -0.0000 18.6520 -14.8819 42.5225 -30.5079 0.0000 -0.0000 2.8864 -4.7604 16.9231 -5.8879 0.0000 -0.0000 -0.6700 -4.9784 -22.9343 -4.9977 0.0000 -0.0000 - 0.6450 -2.0098 23.6282 0.2263 -1.4619 -178.4499 -3.5122 -3.0610 0.1296 -1.0986 -1.7726 -0.1285 6.1716 0.3455 7.3628 0.4903 6.0215 -0.8541 -8.8702 5.1262 0.6363 3.6082 -3.3755 -7.0097 0.3741 0.2013 5.5358 -34.0862 -17.1873 -8.8501 0.0000 0.0000 26.0795 5.7230 12.4787 -8.6609 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.2096 6.4153 1.8123 -21.0229 22.1062 10.9856 -0.0000 -0.0000 -8.0425 -8.7542 -18.7396 14.7241 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.9816 2.0479 -51.5094 -2.2389 0.0000 -0.0000 18.6592 -14.8583 42.5872 -30.4848 0.0000 -0.0000 2.9228 -4.7768 16.9855 -5.8704 0.0000 -0.0000 -0.6975 -4.9712 -22.8609 -5.0051 0.0000 -0.0000 - 0.6508 -2.0006 23.6281 0.2359 -1.4703 -178.5821 -3.5280 -3.0732 0.1348 -1.1085 -1.7726 -0.1259 6.2140 0.3693 7.3313 0.5020 5.9513 -0.8373 -8.9133 5.2357 0.6823 3.5960 -3.3330 -6.9451 0.7017 -0.4253 5.6729 -34.2045 -16.7185 -9.0285 0.0000 0.0000 28.1370 7.2713 14.0570 -8.0051 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.0566 6.8356 1.7885 -20.5214 22.2432 11.0573 -0.0000 -0.0000 -8.4310 -8.7947 -18.9724 14.5210 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0053 2.0193 -51.4480 -2.2676 0.0000 -0.0000 18.6706 -14.8325 42.6507 -30.4566 0.0000 -0.0000 2.9823 -4.7987 17.0441 -5.8657 0.0000 -0.0000 -0.7204 -4.9622 -22.7835 -5.0122 0.0000 -0.0000 - 0.6557 -1.9919 23.6280 0.2257 -1.4731 -178.7112 -3.5599 -3.0819 0.1398 -1.1179 -1.7727 -0.1271 6.2588 0.3737 7.3088 0.5116 5.8991 -0.8256 -8.9584 5.3489 0.7235 3.5794 -3.2874 -6.8714 1.0384 -1.0958 5.8043 -34.1077 -16.2271 -9.1655 0.0000 0.0000 30.3228 8.9366 15.7848 -7.3622 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.8771 7.2842 1.7703 -19.9208 22.4368 11.1057 -0.0000 -0.0000 -8.9062 -8.7761 -19.2490 14.3240 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.0082 1.9991 -51.3868 -2.2962 0.0000 -0.0000 18.6821 -14.8096 42.7117 -30.4325 0.0000 -0.0000 3.0193 -4.8123 17.0928 -5.8616 0.0000 -0.0000 -0.7389 -4.9556 -22.6998 -5.0172 0.0000 -0.0000 - 0.6604 -1.9832 23.6278 0.2137 -1.4803 -178.8351 -3.5848 -3.0988 0.1442 -1.1267 -1.7753 -0.1274 6.2954 0.3878 7.2780 0.5191 5.8364 -0.8121 -9.0111 5.4645 0.7693 3.5661 -3.2380 -6.7949 1.3677 -1.7763 5.9213 -33.7993 -15.7506 -9.2679 0.0000 0.0000 32.6013 10.6592 17.6145 -6.7648 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.7117 7.7576 1.7753 -19.1944 22.6908 11.1309 -0.0000 -0.0000 -9.4750 -8.6800 -19.5441 14.1228 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 3.0126 1.9713 -51.3269 -2.3352 0.0000 -0.0000 18.6979 -14.7871 42.7692 -30.4051 0.0000 -0.0000 3.0569 -4.8288 17.1367 -5.8665 0.0000 -0.0000 -0.7536 -4.9478 -22.6154 -5.0213 0.0000 -0.0000 - 0.6647 -1.9744 23.6275 0.1981 -1.4889 -178.9534 -3.6056 -3.1213 0.1489 -1.1357 -1.7812 -0.1283 6.3270 0.4057 7.2464 0.5241 5.7767 -0.7997 -9.0684 5.5756 0.8136 3.5542 -3.1871 -6.7136 1.6784 -2.4505 6.0166 -33.2928 -15.3088 -9.3503 0.0000 0.0000 34.9376 12.3795 19.4814 -6.2221 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.5516 8.2524 1.7973 -18.3547 23.0025 11.1309 -0.0000 -0.0000 -10.1418 -8.4935 -19.8541 13.9275 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.0168 1.9401 -51.2681 -2.3830 0.0000 -0.0000 18.7179 -14.7675 42.8226 -30.3777 0.0000 -0.0000 3.0927 -4.8448 17.1753 -5.8791 0.0000 -0.0000 -0.7645 -4.9394 -22.5306 -5.0243 0.0000 -0.0000 - 0.6687 -1.9657 23.6271 0.1774 -1.4982 -179.0660 -3.6254 -3.1492 0.1537 -1.1453 -1.7912 -0.1304 6.3549 0.4279 7.2159 0.5270 5.7245 -0.7893 -9.1305 5.6749 0.8561 3.5439 -3.1355 -6.6274 1.9600 -3.0994 6.0840 -32.6034 -14.9261 -9.4218 0.0000 0.0000 37.2996 14.0542 21.3256 -5.7395 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.4025 8.7657 1.8403 -17.4135 23.3685 11.1034 -0.0000 -0.0000 -10.9049 -8.2106 -20.1733 13.7390 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0188 1.9063 -51.2087 -2.4387 0.0000 -0.0000 18.7422 -14.7522 42.8712 -30.3509 0.0000 -0.0000 3.1249 -4.8598 17.2105 -5.8988 0.0000 -0.0000 -0.7724 -4.9307 -22.4471 -5.0262 0.0000 -0.0000 - 0.6723 -1.9568 23.6267 0.1504 -1.5079 -179.1741 -3.6477 -3.1817 0.1590 -1.1559 -1.8053 -0.1337 6.3813 0.4551 7.1877 0.5287 5.6817 -0.7818 -9.1965 5.7570 0.8961 3.5343 -3.0840 -6.5364 2.2068 -3.7063 6.1211 -31.7501 -14.6221 -9.4906 -0.0000 0.0000 39.6573 15.6564 23.0934 -5.3143 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.2666 9.2924 1.9024 -16.3959 23.7873 11.0572 -0.0000 -0.0000 -11.7613 -7.8288 -20.4957 13.5602 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.0172 1.8711 -51.1470 -2.5007 0.0000 -0.0000 18.7700 -14.7419 42.9140 -30.3257 0.0000 -0.0000 3.1527 -4.8734 17.2447 -5.9250 0.0000 -0.0000 -0.7779 -4.9217 -22.3665 -5.0275 0.0000 -0.0000 - 0.6755 -1.9479 23.6261 0.1160 -1.5181 -179.2792 -3.6762 -3.2181 0.1658 -1.1678 -1.8240 -0.1381 6.4078 0.4881 7.1627 0.5310 5.6481 -0.7787 -9.2651 5.8183 0.9344 3.5240 -3.0332 -6.4421 2.4189 -4.2588 6.1288 -30.7578 -14.4096 -9.5596 -0.0000 0.0000 41.9811 17.1775 24.7429 -4.9355 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1458 9.8271 1.9805 -15.3308 24.2595 11.0048 -0.0000 -0.0000 -12.7062 -7.3538 -20.8164 13.3978 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 3.0100 1.8352 -51.0807 -2.5667 0.0000 -0.0000 18.8004 -14.7369 42.9507 -30.3025 0.0000 -0.0000 3.1750 -4.8857 17.2804 -5.9569 0.0000 -0.0000 -0.7821 -4.9129 -22.2900 -5.0281 0.0000 -0.0000 - 0.6783 -1.9392 23.6254 0.0515 -1.5304 -179.3829 -3.7427 -3.2598 0.1706 -1.1788 -1.8526 -0.1450 6.4430 0.5367 7.1417 0.5318 5.6201 -0.7733 -9.3339 5.8587 0.9676 3.5110 -2.9843 -6.3441 2.5993 -4.7577 6.1104 -29.6563 -14.2827 -9.6282 -0.0000 0.0000 44.2456 18.6216 26.2381 -4.5879 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.0346 10.3688 2.0571 -14.2719 24.7805 10.9756 -0.0000 -0.0000 -13.7290 -6.7917 -21.1247 13.2468 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9715 1.7987 -51.0084 -2.6320 0.0000 -0.0000 18.8319 -14.7355 42.9804 -30.2820 0.0000 -0.0000 3.1657 -4.8986 17.3201 -5.9893 0.0000 -0.0000 -0.7878 -4.9051 -22.2193 -5.0283 0.0000 -0.0000 - 0.6805 -1.9298 23.6246 0.0174 -1.5376 -179.4902 -3.7760 -3.2975 0.1793 -1.1947 -1.8730 -0.1502 6.4782 0.5648 7.1291 0.5361 5.6069 -0.7778 -9.4011 5.8791 1.0036 3.4949 -2.9349 -6.2442 2.7546 -5.1858 6.0758 -28.4837 -14.2508 -9.6936 -0.0000 0.0000 46.4196 20.0046 27.5614 -4.2518 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.9321 10.8983 2.1585 -13.2276 25.3862 10.9421 -0.0000 -0.0000 -14.8020 -6.1689 -21.4316 13.1128 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.9660 1.7696 -50.9265 -2.6970 0.0000 -0.0000 18.8640 -14.7416 43.0074 -30.2641 0.0000 -0.0000 3.1945 -4.9031 17.3664 -6.0305 0.0000 -0.0000 -0.7911 -4.8979 -22.1503 -5.0292 0.0000 -0.0000 - 0.6821 -1.9203 23.6238 -0.0223 -1.5469 -179.6009 -3.8233 -3.3374 0.1877 -1.2113 -1.9012 -0.1568 6.5211 0.6055 7.1205 0.5409 5.5882 -0.7794 -9.4621 5.8866 1.0390 3.4733 -2.8874 -6.1446 2.8939 -5.5553 6.0317 -27.2838 -14.2906 -9.7496 -0.0000 0.0000 48.4784 21.3461 28.7015 -3.9134 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.8334 11.4179 2.2491 -12.2522 26.0720 10.9568 -0.0000 -0.0000 -15.9202 -5.5000 -21.7207 12.9972 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 2.9537 1.7410 -50.8362 -2.7589 0.0000 -0.0000 18.8964 -14.7502 43.0304 -30.2483 0.0000 -0.0000 3.2196 -4.9078 17.4203 -6.0740 0.0000 -0.0000 -0.7961 -4.8917 -22.0856 -5.0301 0.0000 -0.0000 - 0.6830 -1.9108 23.6229 -0.0621 -1.5553 -179.7179 -3.8792 -3.3747 0.1955 -1.2292 -1.9302 -0.1641 6.5722 0.6440 7.1181 0.5473 5.5648 -0.7791 -9.5159 5.8869 1.0769 3.4454 -2.8422 -6.0471 3.0237 -5.8714 5.9885 -26.1045 -14.3862 -9.7892 -0.0000 0.0001 50.3958 22.6664 29.6603 -3.5617 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7347 11.9165 2.3376 -11.3555 26.8658 11.0040 -0.0000 -0.0000 -17.0550 -4.8168 -21.9962 12.9013 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.9390 1.7179 -50.7375 -2.8140 0.0000 -0.0000 18.9276 -14.7608 43.0525 -30.2348 0.0000 -0.0000 3.2465 -4.9089 17.4824 -6.1177 0.0000 -0.0000 -0.8030 -4.8872 -22.0230 -5.0310 0.0000 -0.0000 - 0.6831 -1.9013 23.6220 -0.0976 -1.5623 -179.8427 -3.9390 -3.4080 0.2027 -1.2481 -1.9580 -0.1711 6.6299 0.6773 7.1210 0.5556 5.5310 -0.7758 -9.5597 5.8874 1.1195 3.4112 -2.7998 -5.9535 3.1480 -6.1414 5.9553 -24.9939 -14.5216 -9.8079 -0.0000 0.0001 52.1495 23.9788 30.4506 -3.1938 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -3.6330 12.3851 2.4212 -10.5485 27.7891 11.0833 -0.0000 -0.0000 -18.1818 -4.1468 -22.2567 12.8250 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.9255 1.7014 -50.6321 -2.8611 0.0000 -0.0000 18.9579 -14.7715 43.0766 -30.2230 0.0000 -0.0000 3.2791 -4.9061 17.5518 -6.1601 0.0000 -0.0000 -0.8122 -4.8847 -21.9602 -5.0316 0.0000 -0.0000 - 0.6822 -1.8920 23.6212 -0.1283 -1.5682 -179.9763 -4.0016 -3.4358 0.2091 -1.2672 -1.9836 -0.1772 6.6920 0.7027 7.1297 0.5650 5.4819 -0.7684 -9.5904 5.8960 1.1671 3.3716 -2.7614 -5.8649 3.2668 -6.3737 5.9390 -23.9974 -14.6818 -9.8050 -0.0000 0.0001 53.7229 25.2826 31.0940 -2.8139 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.5237 12.8173 2.4903 -9.8424 28.8570 11.1993 -0.0000 -0.0000 -19.2756 -3.5126 -22.4952 12.7648 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.9127 1.6920 -50.5227 -2.8995 0.0000 -0.0000 18.9877 -14.7800 43.1057 -30.2125 0.0000 -0.0000 3.3166 -4.8993 17.6271 -6.1993 0.0000 -0.0000 -0.8241 -4.8842 -21.8950 -5.0310 0.0000 -0.0000 - 0.6803 -1.8829 23.6206 -0.1537 -1.5723 179.8812 -4.0637 -3.4570 0.2158 -1.2859 -2.0058 -0.1820 6.7541 0.7179 7.1428 0.5759 5.4149 -0.7574 -9.6075 5.9177 1.2211 3.3280 -2.7278 -5.7823 3.3758 -6.5749 5.9445 -23.1535 -14.8608 -9.7814 -0.0000 0.0001 55.1040 26.5688 31.6209 -2.4348 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4066 13.2056 2.5529 -9.2196 30.0851 11.3252 -0.0000 -0.0000 -20.3054 -2.9419 -22.7114 12.7216 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.9008 1.6902 -50.4128 -2.9296 0.0000 -0.0000 19.0181 -14.7846 43.1427 -30.2021 0.0000 -0.0000 3.3581 -4.8881 17.7055 -6.2332 0.0000 -0.0000 -0.8388 -4.8857 -21.8248 -5.0290 0.0000 -0.0000 - 0.6772 -1.8744 23.6201 -0.1735 -1.5741 179.7301 -4.1221 -3.4712 0.2218 -1.3032 -2.0236 -0.1862 6.8125 0.7215 7.1595 0.5866 5.3297 -0.7400 -9.6101 5.9550 1.2811 3.2839 -2.6994 -5.7060 3.4664 -6.7500 5.9741 -22.4915 -15.0573 -9.7436 -0.0000 0.0001 56.2896 27.8123 32.0624 -2.0754 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.2850 13.5460 2.6123 -8.6576 31.4768 11.4371 -0.0000 -0.0000 -21.2410 -2.4572 -22.9010 12.6936 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 2.8896 1.6966 -50.3051 -2.9521 0.0000 -0.0000 19.0503 -14.7840 43.1896 -30.1921 0.0000 -0.0000 3.4028 -4.8720 17.7846 -6.2606 0.0000 -0.0000 -0.8562 -4.8892 -21.7474 -5.0239 0.0000 -0.0000 - 0.6729 -1.8664 23.6197 -0.1872 -1.5729 179.5707 -4.1724 -3.4779 0.2273 -1.3184 -2.0364 -0.1897 6.8621 0.7105 7.1809 0.5962 5.2289 -0.7166 -9.5985 6.0094 1.3455 3.2430 -2.6763 -5.6352 3.5273 -6.9025 6.0277 -22.0306 -15.2754 -9.7014 -0.0000 0.0001 57.2859 28.9785 32.4444 -1.7547 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.1600 13.8366 2.6722 -8.1361 33.0273 11.5096 -0.0000 -0.0000 -22.0515 -2.0713 -23.0586 12.6758 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8799 1.7116 -50.2027 -2.9689 0.0000 -0.0000 19.0858 -14.7772 43.2484 -30.1813 0.0000 -0.0000 3.4502 -4.8500 17.8613 -6.2803 0.0000 -0.0000 -0.8759 -4.8943 -21.6604 -5.0152 0.0000 -0.0000 - 0.6673 -1.8591 23.6196 -0.1889 -1.5660 179.4042 -4.2024 -3.4770 0.2348 -1.3318 -2.0422 -0.1907 6.8957 0.6862 7.2019 0.6041 5.1117 -0.6866 -9.5733 6.0825 1.4138 3.2091 -2.6584 -5.5694 3.5466 -7.0270 6.1028 -21.7832 -15.5297 -9.6699 -0.0000 0.0001 58.1088 30.0231 32.7865 -1.4883 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.0337 14.0824 2.7385 -7.6313 34.7189 11.5137 -0.0000 -0.0000 -22.7091 -1.7962 -23.1777 12.6625 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8780 1.7379 -50.1063 -2.9813 0.0000 -0.0000 19.1254 -14.7653 43.3190 -30.1698 0.0000 -0.0000 3.5059 -4.8194 17.9332 -6.2930 0.0000 -0.0000 -0.8962 -4.9006 -21.5623 -5.0025 0.0000 -0.0000 - 0.6604 -1.8525 23.6197 -0.1824 -1.5547 179.2312 -4.2144 -3.4704 0.2402 -1.3426 -2.0418 -0.1896 6.9138 0.6413 7.2295 0.6077 4.9920 -0.6494 -9.5358 6.1701 1.4811 3.1867 -2.6447 -5.5073 3.5151 -7.1264 6.1960 -21.7560 -15.8270 -9.6691 -0.0000 0.0001 58.7854 30.9120 33.0945 -1.2956 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -2.9076 14.2897 2.8112 -7.1181 36.5232 11.4230 -0.0000 -0.0000 -23.1929 -1.6367 -23.2498 12.6568 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8810 1.7725 -50.0192 -2.9936 0.0000 -0.0000 19.1720 -14.7472 43.4034 -30.1570 0.0000 -0.0000 3.5652 -4.7819 17.9969 -6.2971 0.0000 -0.0000 -0.9182 -4.9077 -21.4506 -4.9848 0.0000 -0.0000 - 0.6524 -1.8469 23.6200 -0.1784 -1.5408 179.0542 -4.2166 -3.4602 0.2456 -1.3495 -2.0406 -0.1878 6.9113 0.5810 7.2667 0.6093 4.8751 -0.6130 -9.4893 6.2690 1.5471 3.1778 -2.6347 -5.4483 3.4264 -7.2013 6.3038 -21.9515 -16.1763 -9.7150 -0.0000 0.0001 59.3487 31.6107 33.3694 -1.1853 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -2.7887 14.4639 2.8964 -6.5723 38.4101 11.2152 -0.0000 -0.0000 -23.4877 -1.5824 -23.2688 12.6560 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.8785 1.8118 -49.9439 -3.0091 0.0000 -0.0000 19.2283 -14.7223 43.5011 -30.1427 0.0000 -0.0000 3.6162 -4.7401 18.0502 -6.2927 0.0000 -0.0000 -0.9418 -4.9151 -21.3256 -4.9615 0.0000 -0.0000 - 0.6434 -1.8421 23.6204 -0.1801 -1.5246 178.8746 -4.2119 -3.4502 0.2507 -1.3509 -2.0425 -0.1869 6.8876 0.5095 7.3147 0.6082 4.7687 -0.5771 -9.4377 6.3743 1.6112 3.1846 -2.6266 -5.3927 3.2794 -7.2515 6.4211 -22.3716 -16.5828 -9.8275 -0.0000 0.0001 59.8412 32.1004 33.6046 -1.1698 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.6825 14.6154 3.0006 -5.9675 40.3426 10.8626 -0.0000 -0.0000 -23.5819 -1.6354 -23.2330 12.6568 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8682 1.8544 -49.8799 -3.0303 0.0000 -0.0000 19.2943 -14.6914 43.6104 -30.1269 0.0000 -0.0000 3.6559 -4.6946 18.0928 -6.2816 0.0000 -0.0000 -0.9663 -4.9227 -21.1888 -4.9325 0.0000 -0.0000 - 0.6331 -1.8381 23.6210 -0.1796 -1.5002 178.6918 -4.1890 -3.4407 0.2580 -1.3490 -2.0412 -0.1841 6.8435 0.4254 7.3681 0.6029 4.6699 -0.5368 -9.3829 6.4941 1.6733 3.2076 -2.6193 -5.3412 3.0725 -7.2579 6.5410 -23.0186 -17.0622 -10.0345 -0.0000 0.0001 60.3134 32.3837 33.7910 -1.2571 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -2.5860 14.7696 3.1240 -5.2743 42.2765 10.3374 -0.0000 -0.0000 -23.4763 -1.7873 -23.1458 12.6673 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.8582 1.9081 -49.8193 -3.0550 0.0000 -0.0000 19.3673 -14.6602 43.7254 -30.1102 0.0000 -0.0000 3.6937 -4.6379 18.1277 -6.2649 0.0000 -0.0000 -0.9898 -4.9303 -21.0423 -4.8997 0.0000 -0.0000 - 0.6217 -1.8346 23.6216 -0.1783 -1.4706 178.5078 -4.1515 -3.4362 0.2664 -1.3433 -2.0428 -0.1812 6.7820 0.3321 7.4323 0.5946 4.5877 -0.4970 -9.3283 6.6238 1.7334 3.2454 -2.6093 -5.2944 2.8150 -7.2235 6.6607 -23.8933 -17.6070 -10.3531 -0.0000 0.0001 60.8143 32.4717 33.9281 -1.4508 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.5038 14.9350 3.2664 -4.4735 44.1785 9.6313 -0.0000 -0.0000 -23.1820 -2.0257 -23.0114 12.6885 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8487 1.9678 -49.7618 -3.0868 0.0000 -0.0000 19.4485 -14.6290 43.8443 -30.0927 0.0000 -0.0000 3.7293 -4.5738 18.1555 -6.2453 0.0000 -0.0000 -1.0124 -4.9373 -20.8886 -4.8637 0.0000 -0.0000 - 0.6093 -1.8316 23.6223 -0.1762 -1.4354 178.3241 -4.1019 -3.4376 0.2756 -1.3338 -2.0494 -0.1794 6.7071 0.2296 7.5112 0.5853 4.5259 -0.4605 -9.2769 6.7642 1.7922 3.2953 -2.5936 -5.2537 2.5207 -7.1498 6.7781 -24.9941 -18.2016 -10.7966 -0.0000 0.0001 61.3901 32.3936 34.0250 -1.7500 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -2.4346 15.1224 3.4221 -3.5587 46.0220 8.7467 -0.0000 -0.0000 -22.7169 -2.3314 -22.8374 12.7247 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8406 2.0338 -49.7046 -3.1261 0.0000 -0.0000 19.5365 -14.6001 43.9638 -30.0748 0.0000 -0.0000 3.7640 -4.5015 18.1785 -6.2250 0.0000 -0.0000 -1.0332 -4.9434 -20.7314 -4.8260 0.0000 -0.0000 - 0.5960 -1.8287 23.6229 -0.1748 -1.3972 178.1425 -4.0464 -3.4513 0.2854 -1.3205 -2.0633 -0.1784 6.6261 0.1253 7.6019 0.5755 4.4827 -0.4262 -9.2307 6.9179 1.8508 3.3522 -2.5695 -5.2215 2.2030 -7.0358 6.8911 -26.3171 -18.8318 -11.3750 -0.0000 0.0001 62.0813 32.1965 34.1016 -2.1452 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.3788 15.3445 3.5868 -2.5152 47.7824 7.6836 -0.0000 -0.0000 -22.1075 -2.6899 -22.6337 12.7845 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.8334 2.1022 -49.6442 -3.1739 0.0000 -0.0000 19.6302 -14.5750 44.0791 -30.0562 0.0000 -0.0000 3.7976 -4.4238 18.1994 -6.2064 0.0000 -0.0000 -1.0527 -4.9484 -20.5752 -4.7884 0.0000 -0.0000 - 0.5818 -1.8259 23.6234 -0.1727 -1.3556 177.9651 -3.9885 -3.4781 0.2956 -1.3042 -2.0853 -0.1793 6.5463 0.0197 7.7053 0.5676 4.4593 -0.3960 -9.1919 7.0855 1.9104 3.4104 -2.5336 -5.1995 1.8775 -6.8866 7.0001 -27.8502 -19.4734 -12.0867 -0.0000 0.0001 62.9153 31.9349 34.1903 -2.6169 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.3351 15.6074 3.7539 -1.3451 49.4474 6.4560 -0.0000 -0.0000 -21.3828 -3.0828 -22.4098 12.8729 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.8291 2.1743 -49.5778 -3.2290 0.0000 -0.0000 19.7270 -14.5559 44.1866 -30.0372 0.0000 -0.0000 3.8323 -4.3398 18.2210 -6.1913 0.0000 -0.0000 -1.0701 -4.9521 -20.4247 -4.7527 0.0000 -0.0000 - 0.5666 -1.8227 23.6238 -0.1524 -1.3091 177.7935 -3.9124 -3.5178 0.3062 -1.2877 -2.1148 -0.1803 6.4728 -0.0818 7.8171 0.5630 4.4482 -0.3681 -9.1598 7.2717 1.9711 3.4639 -2.4836 -5.1903 1.5570 -6.7026 7.1059 -29.5750 -20.1053 -12.9247 -0.0000 0.0001 63.9062 31.6677 34.3292 -3.1350 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.2950 15.9122 3.9120 -0.0667 51.0188 5.0897 -0.0000 -0.0000 -20.5725 -3.4930 -22.1731 12.9931 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.8467 2.2523 -49.5003 -3.2903 0.0000 -0.0000 19.8237 -14.5467 44.2808 -30.0194 0.0000 -0.0000 3.8886 -4.2466 18.2455 -6.1837 0.0000 -0.0000 -1.0835 -4.9541 -20.2832 -4.7210 0.0000 -0.0000 - 0.5510 -1.8196 23.6241 -0.1493 -1.2653 177.6329 -3.8672 -3.5761 0.3135 -1.2665 -2.1536 -0.1867 6.4179 -0.1878 7.9431 0.5664 4.4661 -0.3512 -9.1389 7.4633 2.0318 3.5066 -2.4158 -5.1940 1.2533 -6.5126 7.2106 -31.4646 -20.6944 -13.8567 -0.0000 0.0001 65.0485 31.4448 34.5605 -3.6617 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.2701 16.2584 4.0617 1.3075 52.4887 3.6166 -0.0000 -0.0000 -19.7124 -3.9022 -21.9269 13.1512 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8505 2.3247 -49.4225 -3.3602 0.0000 -0.0000 19.9228 -14.5412 44.3659 -30.0012 0.0000 -0.0000 3.9268 -4.1554 18.2731 -6.1798 0.0000 -0.0000 -1.0968 -4.9545 -20.1567 -4.6937 0.0000 -0.0000 - 0.5346 -1.8153 23.6243 -0.0958 -1.2178 177.4829 -3.7763 -3.6480 0.3218 -1.2498 -2.2010 -0.1927 6.3793 -0.2762 8.0662 0.5759 4.4861 -0.3349 -9.1242 7.6693 2.0921 3.5342 -2.3287 -5.2136 0.9630 -6.2931 7.3154 -33.4933 -21.2511 -14.8794 -0.0000 0.0001 66.3314 31.3058 34.9165 -4.1556 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.2361 16.6338 4.1950 2.7480 53.8843 2.0493 -0.0000 -0.0000 -18.8189 -4.3028 -21.6781 13.3400 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.9119 2.4030 -49.3304 -3.4362 0.0000 -0.0000 20.0173 -14.5497 44.4315 -29.9840 0.0000 -0.0000 4.0235 -4.0543 18.3055 -6.1907 0.0000 -0.0000 -1.1031 -4.9520 -20.0448 -4.6737 0.0000 -0.0000 - 0.5178 -1.8112 23.6243 -0.0649 -1.1699 177.3491 -3.7295 -3.7342 0.3240 -1.2322 -2.2497 -0.2014 6.3703 -0.3733 8.1949 0.5978 4.5312 -0.3277 -9.1173 7.8796 2.1463 3.5412 -2.2253 -5.2507 0.6883 -6.0848 7.4185 -35.6247 -21.7438 -15.9389 -0.0000 0.0001 67.7218 31.2621 35.4285 -4.5817 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.2136 17.0412 4.2876 4.1534 55.2011 0.5287 -0.0000 -0.0000 -17.9396 -4.6674 -21.4116 13.5606 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.9529 2.4801 -49.2406 -3.5149 0.0000 -0.0000 20.1090 -14.5630 44.4851 -29.9687 0.0000 -0.0000 4.0942 -3.9526 18.3398 -6.2037 0.0000 -0.0000 -1.1081 -4.9484 -19.9522 -4.6594 0.0000 -0.0000 - 0.5010 -1.8065 23.6241 -0.0140 -1.1250 177.2315 -3.6799 -3.8368 0.3243 -1.2177 -2.3043 -0.2120 6.3903 -0.4547 8.3165 0.6300 4.5848 -0.3281 -9.1188 8.0864 2.1952 3.5272 -2.1022 -5.3070 0.4065 -5.8644 7.5257 -37.8394 -22.2108 -17.0419 -0.0000 0.0001 69.1930 31.3061 36.1079 -4.9050 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.1775 17.4647 4.3743 5.5661 56.4525 -1.0353 -0.0000 -0.0000 -17.0696 -5.0154 -21.1418 13.8076 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.0202 2.5525 -49.1475 -3.5997 0.0000 -0.0000 20.1964 -14.5839 44.5220 -29.9543 0.0000 -0.0000 4.1881 -3.8520 18.3764 -6.2261 0.0000 -0.0000 -1.1098 -4.9419 -19.8774 -4.6513 0.0000 -0.0000 - 0.4843 -1.8019 23.6239 0.0276 -1.0795 177.1327 -3.6615 -3.9508 0.3184 -1.2065 -2.3579 -0.2228 6.4415 -0.5312 8.4300 0.6745 4.6526 -0.3337 -9.1244 8.2869 2.2303 3.4923 -1.9662 -5.3859 0.1091 -5.6506 7.6325 -40.1115 -22.6510 -18.1512 -0.0000 0.0001 70.7017 31.4040 36.9713 -5.1117 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.1416 17.8983 4.4147 6.8147 57.6505 -2.4333 -0.0000 -0.0000 -16.2508 -5.3198 -20.8536 14.0672 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.0807 2.6238 -49.0591 -3.6849 0.0000 -0.0000 20.2778 -14.6096 44.5458 -29.9426 0.0000 -0.0000 4.2696 -3.7516 18.4109 -6.2519 0.0000 -0.0000 -1.1082 -4.9341 -19.8199 -4.6487 0.0000 -0.0000 - 0.4682 -1.7970 23.6235 0.0831 -1.0367 177.0523 -3.6453 -4.0751 0.3095 -1.2012 -2.4124 -0.2350 6.5204 -0.5950 8.5290 0.7290 4.7322 -0.3437 -9.1324 8.4723 2.2483 3.4379 -1.8205 -5.4903 -0.2300 -5.4273 7.7355 -42.4307 -23.1107 -19.2713 -0.0000 0.0001 72.2131 31.5164 38.0177 -5.1966 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.0986 18.3177 4.4291 7.8705 58.8117 -3.6597 -0.0000 -0.0000 -15.4801 -5.5868 -20.5484 14.3208 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.1600 2.6897 -48.9774 -3.7733 0.0000 -0.0000 20.3546 -14.6393 44.5587 -29.9325 0.0000 -0.0000 4.3650 -3.6544 18.4421 -6.2841 0.0000 -0.0000 -1.1030 -4.9243 -19.7768 -4.6496 0.0000 -0.0000 - 0.4531 -1.7923 23.6231 0.1306 -0.9953 176.9886 -3.6537 -4.2071 0.2963 -1.2015 -2.4645 -0.2469 6.6245 -0.6466 8.6154 0.7948 4.8248 -0.3613 -9.1450 8.6339 2.2451 3.3707 -1.6682 -5.6243 -0.6320 -5.2004 7.8342 -44.7826 -23.6111 -20.3945 -0.0000 0.0001 73.6939 31.6002 39.2437 -5.1767 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.0500 18.7178 4.4286 8.6813 59.9254 -4.6647 -0.0000 -0.0000 -14.7722 -5.8239 -20.2351 14.5663 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 3.2328 2.7506 -48.9035 -3.8606 0.0000 -0.0000 20.4246 -14.6702 44.5616 -29.9245 0.0000 -0.0000 4.4487 -3.5624 18.4663 -6.3177 0.0000 -0.0000 -1.0948 -4.9132 -19.7432 -4.6532 0.0000 -0.0000 - 0.4394 -1.7880 23.6226 0.1704 -0.9554 176.9390 -3.6817 -4.3418 0.2798 -1.2080 -2.5138 -0.2597 6.7487 -0.6889 8.6919 0.8688 4.9316 -0.3856 -9.1576 8.7691 2.2182 3.2960 -1.5157 -5.7944 -1.1076 -4.9605 7.9257 -47.1689 -24.1825 -21.5289 -0.0000 0.0001 75.1205 31.6248 40.6346 -5.0802 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.9973 19.0848 4.4101 9.1470 60.9936 -5.3421 -0.0000 -0.0000 -14.1382 -6.0310 -19.9188 14.7838 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.2984 2.8061 -48.8392 -3.9455 0.0000 -0.0000 20.4885 -14.7009 44.5580 -29.9196 0.0000 -0.0000 4.5204 -3.4768 18.4820 -6.3508 0.0000 -0.0000 -1.0840 -4.9017 -19.7150 -4.6575 0.0000 -0.0000 - 0.4277 -1.7846 23.6221 0.1727 -0.9214 176.9004 -3.7599 -4.4800 0.2597 -1.2173 -2.5613 -0.2730 6.8894 -0.7267 8.7653 0.9512 5.0617 -0.4210 -9.1725 8.8693 2.1623 3.2212 -1.3693 -6.0042 -1.6645 -4.7212 8.0044 -49.5774 -24.8367 -22.6632 -0.0000 0.0001 76.4753 31.5917 42.1698 -4.9647 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.9435 19.4037 4.3863 9.2269 62.0023 -5.6514 -0.0000 -0.0000 -13.5826 -6.2126 -19.6153 14.9681 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 3.3247 2.8472 -48.7959 -4.0295 0.0000 -0.0000 20.5512 -14.7224 44.5605 -29.9156 0.0000 -0.0000 4.5471 -3.4062 18.4917 -6.3790 0.0000 -0.0000 -1.0739 -4.8904 -19.6914 -4.6598 0.0000 -0.0000 - 0.4184 -1.7810 23.6216 0.2102 -0.8909 176.8654 -3.7943 -4.6169 0.2416 -1.2374 -2.6109 -0.2841 7.0290 -0.7293 8.8270 1.0329 5.1786 -0.4485 -9.1812 8.9510 2.0755 3.1549 -1.2334 -6.2623 -2.3063 -4.4441 8.0661 -52.0050 -25.5997 -23.8303 -0.0000 0.0001 77.7614 31.5340 43.8058 -4.8926 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.8819 19.6643 4.3473 8.8568 62.9497 -5.5176 -0.0000 -0.0000 -13.1166 -6.3695 -19.3395 15.1137 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.3878 2.8826 -48.7427 -4.1091 0.0000 -0.0000 20.6027 -14.7478 44.5477 -29.9125 0.0000 -0.0000 4.6120 -3.3430 18.4888 -6.4124 0.0000 -0.0000 -1.0583 -4.8785 -19.6569 -4.6605 0.0000 -0.0000 - 0.4120 -1.7786 23.6211 0.2002 -0.8709 176.8326 -3.8779 -4.7519 0.2215 -1.2596 -2.6582 -0.2922 7.1724 -0.7401 8.8962 1.1184 5.3224 -0.4870 -9.1913 8.9972 1.9595 3.1046 -1.1118 -6.5730 -3.0107 -4.1764 8.1124 -54.4170 -26.4405 -24.9787 -0.0000 0.0001 78.9774 31.5189 45.4960 -4.9427 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.8316 19.8581 4.3133 8.0347 63.7985 -4.9223 -0.0000 -0.0000 -12.7468 -6.4973 -19.1043 15.2242 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.3992 2.8969 -48.7091 -4.1860 0.0000 -0.0000 20.6543 -14.7588 44.5472 -29.9088 0.0000 -0.0000 4.6220 -3.3027 18.4817 -6.4379 0.0000 -0.0000 -1.0461 -4.8681 -19.6197 -4.6564 0.0000 -0.0000 - 0.4084 -1.7766 23.6206 0.1879 -0.8530 176.7938 -3.9529 -4.8804 0.2062 -1.2853 -2.7026 -0.3003 7.3054 -0.7341 8.9743 1.2010 5.4604 -0.5220 -9.1986 9.0275 1.8145 3.0755 -1.0091 -6.9411 -3.7610 -3.8925 8.1444 -56.7742 -27.3531 -26.1113 -0.0000 0.0001 80.1427 31.6309 47.1729 -5.1681 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.7859 19.9856 4.2815 6.7927 64.5270 -3.8896 -0.0000 -0.0000 -12.4794 -6.5973 -18.9218 15.3080 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.4039 2.9056 -48.6656 -4.2525 0.0000 -0.0000 20.6951 -14.7681 44.5401 -29.9054 0.0000 -0.0000 4.6281 -3.2725 18.4673 -6.4597 0.0000 -0.0000 -1.0323 -4.8600 -19.5680 -4.6491 0.0000 -0.0000 - 0.4077 -1.7754 23.6201 0.1486 -0.8395 176.7456 -4.0457 -5.0019 0.1998 -1.3078 -2.7522 -0.3226 7.4245 -0.7071 9.0808 1.2794 5.5950 -0.5573 -9.2063 9.0379 1.6416 3.0737 -0.9237 -7.3671 -4.5283 -3.6187 8.1661 -58.9879 -28.2990 -27.1621 -0.0000 0.0001 81.2670 31.9600 48.7777 -5.6000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.7558 20.0499 4.2594 5.2145 65.0980 -2.4852 -0.0000 -0.0000 -12.3188 -6.6644 -18.7986 15.3753 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.3750 2.9052 -48.6135 -4.3065 0.0000 -0.0000 20.7258 -14.7717 44.5303 -29.9003 0.0000 -0.0000 4.6040 -3.2566 18.4507 -6.4747 0.0000 -0.0000 -1.0193 -4.8551 -19.5041 -4.6379 0.0000 -0.0000 - 0.4104 -1.7747 23.6198 0.0851 -0.8398 176.6883 -4.1481 -5.1163 0.1929 -1.3333 -2.8049 -0.3270 7.5319 -0.6799 9.1918 1.3504 5.7303 -0.5870 -9.2129 9.0290 1.4430 3.0999 -0.8561 -7.8486 -5.2626 -3.3701 8.1893 -60.9582 -29.2382 -28.0503 -0.0000 0.0001 82.3570 32.5622 50.2646 -6.2154 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.7410 20.0564 4.2459 3.4123 65.4854 -0.8127 -0.0000 -0.0000 -12.2644 -6.6876 -18.7328 15.4350 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.3175 2.8827 -48.5549 -4.3542 0.0000 -0.0000 20.7508 -14.7657 44.5202 -29.8927 0.0000 -0.0000 4.5537 -3.2659 18.4349 -6.4831 0.0000 -0.0000 -1.0110 -4.8522 -19.4302 -4.6239 0.0000 -0.0000 - 0.4157 -1.7740 23.6194 0.0181 -0.8433 176.6201 -4.2360 -5.2133 0.1917 -1.3566 -2.8565 -0.3281 7.6159 -0.6521 9.3240 1.4155 5.8539 -0.6119 -9.2207 9.0084 1.2240 3.1555 -0.8036 -8.3802 -5.9353 -3.1361 8.2237 -62.5527 -30.1497 -28.7030 -0.0000 0.0001 83.4167 33.4491 51.6112 -6.9333 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.7376 20.0211 4.2454 1.5832 65.6714 0.9305 -0.0000 -0.0000 -12.3077 -6.6724 -18.7187 15.4927 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.2526 2.8538 -48.4836 -4.3911 0.0000 -0.0000 20.7655 -14.7569 44.5074 -29.8824 0.0000 -0.0000 4.5003 -3.2858 18.4210 -6.4868 0.0000 -0.0000 -1.0038 -4.8524 -19.3464 -4.6079 0.0000 -0.0000 - 0.4235 -1.7734 23.6192 -0.0560 -0.8537 176.5435 -4.3172 -5.2987 0.1975 -1.3789 -2.9068 -0.3318 7.6867 -0.6213 9.4800 1.4695 5.9685 -0.6368 -9.2305 8.9649 0.9893 3.2370 -0.7595 -8.9506 -6.5232 -2.9265 8.2879 -63.6204 -31.0000 -29.0283 -0.0000 0.0001 84.4420 34.5708 52.8211 -7.6228 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.7651 19.9547 4.2663 -0.0902 65.6494 2.5812 -0.0000 -0.0000 -12.4398 -6.6113 -18.7446 15.5494 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.1761 2.8160 -48.3935 -4.4137 0.0000 -0.0000 20.7659 -14.7467 44.4837 -29.8688 0.0000 -0.0000 4.4398 -3.3198 18.4136 -6.4853 0.0000 -0.0000 -0.9996 -4.8551 -19.2597 -4.5919 0.0000 -0.0000 - 0.4334 -1.7726 23.6190 -0.1400 -0.8713 176.4629 -4.4006 -5.3700 0.2085 -1.3917 -2.9609 -0.3330 7.7403 -0.5884 9.6476 1.5143 6.0757 -0.6543 -9.2442 8.8930 0.7379 3.3401 -0.7185 -9.5452 -7.0023 -2.7427 8.3739 -64.0208 -31.7758 -28.9212 -0.0000 0.0001 85.4160 35.8581 53.9276 -8.1479 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.8131 19.8756 4.2994 -1.4275 65.4248 3.9524 -0.0000 -0.0000 -12.6469 -6.5105 -18.8006 15.6013 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.0878 2.7677 -48.2915 -4.4272 0.0000 -0.0000 20.7557 -14.7341 44.4522 -29.8518 0.0000 -0.0000 4.3689 -3.3677 18.4133 -6.4781 0.0000 -0.0000 -0.9999 -4.8596 -19.1750 -4.5768 0.0000 -0.0000 - 0.4450 -1.7716 23.6189 -0.2347 -0.8955 176.3861 -4.4867 -5.4251 0.2238 -1.3990 -3.0172 -0.3352 7.7768 -0.5522 9.8226 1.5513 6.1628 -0.6660 -9.2608 8.7967 0.4781 3.4573 -0.6758 -10.1505 -7.3671 -2.5672 8.4876 -63.6437 -32.4493 -28.3255 -0.0000 0.0001 86.3319 37.2265 54.9556 -8.3784 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.8851 19.8186 4.3377 -2.3150 65.0017 4.9400 -0.0000 -0.0000 -12.9203 -6.3698 -18.8712 15.6471 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.9886 2.7099 -48.1794 -4.4322 0.0000 -0.0000 20.7335 -14.7217 44.4075 -29.8313 0.0000 -0.0000 4.2860 -3.4281 18.4187 -6.4656 0.0000 -0.0000 -1.0046 -4.8652 -19.0990 -4.5627 0.0000 -0.0000 - 0.4575 -1.7693 23.6188 -0.2879 -0.9262 176.3192 -4.5242 -5.4669 0.2430 -1.4029 -3.0593 -0.3363 7.8032 -0.5368 9.9986 1.5775 6.2491 -0.6769 -9.2798 8.6599 0.2123 3.5818 -0.6224 -10.7455 -7.6161 -2.3926 8.6239 -62.4260 -32.9859 -27.2021 -0.0000 0.0001 87.1753 38.6178 55.9178 -8.2325 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.9518 19.7798 4.3921 -2.5844 64.4238 5.3359 -0.0000 -0.0000 -13.2243 -6.2190 -18.9643 15.6713 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.9368 2.6459 -48.0649 -4.4344 0.0000 -0.0000 20.7015 -14.7131 44.3533 -29.8081 0.0000 -0.0000 4.2499 -3.4941 18.4351 -6.4578 0.0000 -0.0000 -1.0104 -4.8688 -19.0422 -4.5525 0.0000 -0.0000 - 0.4703 -1.7662 23.6188 -0.3262 -0.9553 176.2715 -4.5473 -5.4877 0.2653 -1.4041 -3.0957 -0.3368 7.8248 -0.5267 10.1572 1.5946 6.3171 -0.6837 -9.3024 8.4922 -0.0493 3.7034 -0.5583 -11.3151 -7.7609 -2.1976 8.7775 -60.3667 -33.3396 -25.5691 -0.0000 0.0001 87.9493 40.0137 56.7927 -7.6927 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -2.0347 19.7903 4.4530 -2.2743 63.6997 5.2085 -0.0000 -0.0000 -13.5578 -6.0522 -19.0664 15.6708 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.9041 2.5854 -47.9496 -4.4295 0.0000 -0.0000 20.6559 -14.7124 44.2817 -29.7839 0.0000 -0.0000 4.2267 -3.5589 18.4525 -6.4470 0.0000 -0.0000 -1.0178 -4.8716 -19.0049 -4.5469 0.0000 -0.0000 - 0.4831 -1.7625 23.6188 -0.3590 -0.9854 176.2494 -4.5723 -5.4965 0.2840 -1.4000 -3.1266 -0.3354 7.8444 -0.5176 10.2942 1.6055 6.3739 -0.6880 -9.3273 8.2850 -0.3052 3.8135 -0.4809 -11.8418 -7.8142 -1.9862 8.9429 -57.5203 -33.4400 -23.4742 -0.0000 0.0001 88.6614 41.4417 57.5401 -6.8232 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.1263 19.8496 4.5021 -1.4613 62.8550 4.6356 -0.0000 -0.0000 -13.9111 -5.8680 -19.1786 15.6357 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.8818 2.5239 -47.8468 -4.4214 0.0000 -0.0000 20.6010 -14.7160 44.1987 -29.7613 0.0000 -0.0000 4.2050 -3.6253 18.4730 -6.4328 0.0000 -0.0000 -1.0289 -4.8724 -18.9956 -4.5446 0.0000 -0.0000 - 0.4955 -1.7580 23.6188 -0.3738 -1.0128 176.2607 -4.5893 -5.4946 0.2997 -1.3934 -3.1480 -0.3330 7.8679 -0.5101 10.3967 1.6098 6.4241 -0.6921 -9.3552 8.0344 -0.5479 3.9051 -0.3897 -12.3107 -7.7867 -1.7546 9.1135 -54.0092 -33.2351 -21.0082 -0.0000 0.0001 89.3231 42.9894 58.1194 -5.7879 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.2160 19.9549 4.5418 -0.1955 61.9123 3.6560 -0.0000 -0.0000 -14.2735 -5.6804 -19.3138 15.5734 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.8845 2.4667 -47.7641 -4.4113 0.0000 -0.0000 20.5369 -14.7266 44.1045 -29.7402 0.0000 -0.0000 4.1967 -3.6876 18.4919 -6.4170 0.0000 -0.0000 -1.0415 -4.8701 -19.0178 -4.5464 0.0000 -0.0000 - 0.5072 -1.7530 23.6188 -0.3799 -1.0382 176.3092 -4.6127 -5.4865 0.3112 -1.3849 -3.1618 -0.3324 7.9006 -0.4984 10.4642 1.6089 6.4669 -0.6995 -9.3850 7.7436 -0.7726 3.9707 -0.2872 -12.7109 -7.6978 -1.4989 9.2818 -49.9891 -32.6888 -18.2924 -0.0000 0.0001 89.9456 44.7683 58.5239 -4.7948 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -2.2923 20.1028 4.5676 1.4150 60.8898 2.3619 -0.0000 -0.0000 -14.6298 -5.4901 -19.4759 15.4798 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.9026 2.4120 -47.7071 -4.4002 0.0000 -0.0000 20.4653 -14.7432 44.0001 -29.7218 0.0000 -0.0000 4.1902 -3.7473 18.5061 -6.3981 0.0000 -0.0000 -1.0568 -4.8642 -19.0721 -4.5506 0.0000 -0.0000 - 0.5185 -1.7474 23.6187 -0.3725 -1.0627 176.3957 -4.6396 -5.4774 0.3147 -1.3749 -3.1695 -0.3335 7.9484 -0.4789 10.4978 1.6001 6.5107 -0.7131 -9.4133 7.4110 -0.9741 4.0058 -0.1787 -13.0354 -7.5402 -1.2297 9.4499 -45.6499 -31.7737 -15.4451 -0.0000 0.0001 90.5306 46.9124 58.7917 -4.0929 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -2.3564 20.2724 4.5734 3.2391 59.8141 0.8866 -0.0000 -0.0000 -14.9777 -5.3007 -19.6771 15.3625 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.9416 2.3582 -47.6821 -4.3907 0.0000 -0.0000 20.3888 -14.7641 43.8901 -29.7063 0.0000 -0.0000 4.1908 -3.8053 18.5131 -6.3773 0.0000 -0.0000 -1.0744 -4.8543 -19.1567 -4.5560 0.0000 -0.0000 - 0.5291 -1.7412 23.6185 -0.3251 -1.0843 176.5196 -4.6316 -5.4732 0.3145 -1.3681 -3.1690 -0.3350 7.9966 -0.4446 10.4959 1.5895 6.5607 -0.7316 -9.4365 7.0340 -1.1538 4.0086 -0.0682 -13.2792 -7.3286 -0.9506 9.6203 -41.1685 -30.4969 -12.6036 -0.0000 0.0001 91.0696 49.4992 59.0022 -3.8352 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.3872 20.4399 4.5425 5.1304 58.7143 -0.6465 -0.0000 -0.0000 -15.3130 -5.1093 -19.9185 15.2318 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.0295 2.3086 -47.6880 -4.3846 0.0000 -0.0000 20.3084 -14.7922 43.7749 -29.6959 0.0000 -0.0000 4.2281 -3.8573 18.5090 -6.3593 0.0000 -0.0000 -1.0905 -4.8395 -19.2668 -4.5630 0.0000 -0.0000 - 0.5392 -1.7350 23.6183 -0.2620 -1.1026 176.6740 -4.6131 -5.4771 0.3070 -1.3639 -3.1675 -0.3382 8.0461 -0.3919 10.4703 1.5800 6.6296 -0.7559 -9.4552 6.6110 -1.3106 3.9792 0.0376 -13.4433 -7.0558 -0.6850 9.7967 -36.7132 -28.8714 -9.8611 -0.0000 0.0001 91.5372 52.5836 59.2525 -4.1073 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -2.4023 20.5808 4.4852 6.9958 57.6180 -2.1483 -0.0000 -0.0000 -15.6276 -4.9084 -20.1948 15.0933 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.1380 2.2614 -47.7280 -4.3809 0.0000 -0.0000 20.2277 -14.8221 43.6627 -29.6899 0.0000 -0.0000 4.2739 -3.9061 18.4926 -6.3377 0.0000 -0.0000 -1.1081 -4.8218 -19.3949 -4.5701 0.0000 -0.0000 - 0.5491 -1.7289 23.6180 -0.1903 -1.1158 176.8558 -4.5952 -5.4914 0.2927 -1.3608 -3.1661 -0.3429 8.1069 -0.3136 10.4313 1.5628 6.7157 -0.7889 -9.4646 6.1520 -1.4434 3.9192 0.1307 -13.5344 -6.7087 -0.4488 9.9825 -32.4399 -26.9265 -7.2939 -0.0000 0.0001 91.8991 56.1858 59.6270 -4.9001 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.3784 20.6887 4.3838 8.7185 56.5438 -3.5329 -0.0000 -0.0000 -15.9214 -4.7051 -20.4981 14.9597 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.2573 2.2193 -47.8006 -4.3747 0.0000 -0.0000 20.1450 -14.8536 43.5550 -29.6882 0.0000 -0.0000 4.3201 -3.9509 18.4632 -6.3112 0.0000 -0.0000 -1.1260 -4.8016 -19.5378 -4.5769 0.0000 -0.0000 - 0.5591 -1.7235 23.6177 -0.1194 -1.1241 177.0534 -4.5783 -5.5222 0.2752 -1.3579 -3.1662 -0.3491 8.1668 -0.2071 10.3924 1.5430 6.8265 -0.8282 -9.4633 5.6619 -1.5542 3.8311 0.2025 -13.5626 -6.2789 -0.2624 10.1825 -28.4881 -24.7063 -4.9732 -0.0000 0.0001 92.1312 60.3003 60.1685 -6.1498 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -2.3244 20.7448 4.2427 10.2345 55.5179 -4.7500 -0.0000 -0.0000 -16.1880 -4.4989 -20.8089 14.8333 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.3746 2.1815 -47.8950 -4.3647 0.0000 -0.0000 20.0610 -14.8849 43.4517 -29.6895 0.0000 -0.0000 4.3574 -3.9933 18.4226 -6.2774 0.0000 -0.0000 -1.1447 -4.7806 -19.6861 -4.5824 0.0000 -0.0000 - 0.5693 -1.7190 23.6174 -0.0522 -1.1305 177.2613 -4.5579 -5.5729 0.2528 -1.3527 -3.1706 -0.3552 8.2160 -0.0725 10.3676 1.5216 6.9665 -0.8746 -9.4524 5.1461 -1.6446 3.7217 0.2507 -13.5396 -5.7609 -0.1404 10.3984 -24.9778 -22.2805 -2.9459 -0.0000 0.0001 92.2182 64.8745 60.8846 -7.7462 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -2.2372 20.7451 4.0751 11.5317 54.5462 -5.8139 -0.0000 -0.0000 -16.4233 -4.3043 -21.1075 14.7269 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.4865 2.1430 -48.0170 -4.3543 0.0000 -0.0000 19.9818 -14.9110 43.3641 -29.6942 0.0000 -0.0000 4.3834 -4.0372 18.3694 -6.2361 0.0000 -0.0000 -1.1642 -4.7597 -19.8328 -4.5870 0.0000 -0.0000 - 0.5804 -1.7151 23.6171 0.0267 -1.1372 177.4691 -4.5128 -5.6405 0.2303 -1.3470 -3.1831 -0.3609 8.2558 0.0911 10.3709 1.4918 7.1250 -0.9236 -9.4267 4.6279 -1.7158 3.5964 0.2667 -13.4833 -5.1468 -0.0852 10.6279 -22.0079 -19.7340 -1.2312 -0.0000 0.0001 92.1580 69.8015 61.7580 -9.5831 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -2.1213 20.6880 3.8634 12.5391 53.6554 -6.6534 -0.0000 -0.0000 -16.6329 -4.1235 -21.3761 14.6292 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.6072 2.1024 -48.1489 -4.3413 0.0000 -0.0000 19.9046 -14.9337 43.2856 -29.7005 0.0000 -0.0000 4.4171 -4.0848 18.3081 -6.1889 0.0000 -0.0000 -1.1843 -4.7386 -19.9716 -4.5911 0.0000 -0.0000 - 0.5923 -1.7123 23.6169 0.1041 -1.1455 177.6717 -4.4489 -5.7238 0.2100 -1.3385 -3.2082 -0.3685 8.2763 0.2834 10.4140 1.4544 7.2990 -0.9755 -9.3881 4.1199 -1.7708 3.4606 0.2495 -13.4075 -4.4500 -0.0912 10.8699 -19.6411 -17.1977 0.1658 -0.0000 0.0001 91.9696 75.0082 62.7383 -11.6683 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.9904 20.5859 3.6293 13.2810 52.8361 -7.3014 -0.0000 -0.0000 -16.8148 -3.9500 -21.5683 14.5612 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.7217 2.0574 -48.2907 -4.3265 0.0000 -0.0000 19.8321 -14.9493 43.2212 -29.7050 0.0000 -0.0000 4.4442 -4.1381 18.2398 -6.1338 0.0000 -0.0000 -1.2053 -4.7193 -20.0991 -4.5947 0.0000 -0.0000 - 0.6052 -1.7109 23.6168 0.1666 -1.1554 177.8635 -4.3750 -5.8209 0.1928 -1.3235 -3.2433 -0.3752 8.2680 0.4988 10.5019 1.4122 7.4833 -1.0232 -9.3399 3.6321 -1.8144 3.3204 0.2016 -13.3272 -3.7075 -0.1494 11.1109 -17.8899 -14.8192 1.2695 -0.0000 0.0001 91.6723 80.2430 63.8038 -13.9119 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.8403 20.4530 3.3693 13.7669 52.0828 -7.7718 -0.0000 -0.0000 -16.9783 -3.8052 -21.6918 14.5131 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 3.8141 2.0082 -48.4317 -4.3078 0.0000 -0.0000 19.7624 -14.9581 43.1658 -29.7091 0.0000 -0.0000 4.4506 -4.1982 18.1686 -6.0699 0.0000 -0.0000 -1.2267 -4.7018 -20.2140 -4.5987 0.0000 -0.0000 - 0.6191 -1.7105 23.6168 0.2305 -1.1685 178.0442 -4.2708 -5.9246 0.1805 -1.3024 -3.2898 -0.3832 8.2309 0.7310 10.6370 1.3605 7.6664 -1.0659 -9.2833 3.1848 -1.8456 3.1809 0.1213 -13.2554 -2.9713 -0.2091 11.3495 -16.7362 -12.7957 2.0985 -0.0000 0.0001 91.2904 85.3454 64.9176 -16.3687 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.6772 20.3075 3.1054 14.0455 51.3848 -8.1233 -0.0000 -0.0000 -17.1139 -3.6967 -21.7362 14.4765 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 3.9026 1.9536 -48.5676 -4.2874 0.0000 -0.0000 19.6959 -14.9619 43.1167 -29.7111 0.0000 -0.0000 4.4562 -4.2645 18.0972 -6.0021 0.0000 -0.0000 -1.2469 -4.6863 -20.3183 -4.6037 0.0000 -0.0000 - 0.6339 -1.7115 23.6170 0.2779 -1.1833 178.2140 -4.1568 -6.0316 0.1737 -1.2714 -3.3336 -0.3828 8.1652 0.9605 10.8083 1.2988 7.8505 -1.1050 -9.2194 2.7723 -1.8701 3.0440 0.0171 -13.1971 -2.2679 -0.2927 11.5706 -16.1558 -11.2201 2.7260 -0.0000 0.0001 90.8208 90.0967 66.0604 -19.0649 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.5274 20.1590 2.8386 14.1182 50.7439 -8.3205 -0.0000 -0.0000 -17.2458 -3.6076 -21.7012 14.4578 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.9675 1.8953 -48.6966 -4.2637 0.0000 -0.0000 19.6313 -14.9602 43.0717 -29.7107 0.0000 -0.0000 4.4402 -4.3362 18.0266 -5.9281 0.0000 -0.0000 -1.2655 -4.6735 -20.4138 -4.6096 0.0000 -0.0000 - 0.6493 -1.7138 23.6174 0.3116 -1.2004 178.3752 -4.0276 -6.1365 0.1712 -1.2315 -3.3699 -0.3769 8.0673 1.1774 11.0095 1.2291 8.0294 -1.1324 -9.1521 2.3999 -1.8941 2.9127 -0.1058 -13.1555 -1.6432 -0.3788 11.7647 -16.1133 -10.2144 3.1811 -0.0000 0.0001 90.2687 94.2649 67.2119 -21.9310 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.3858 20.0182 2.5836 14.0469 50.1532 -8.4371 -0.0000 -0.0000 -17.3674 -3.5518 -21.6085 14.4443 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 4.0126 1.8326 -48.8203 -4.2393 0.0000 -0.0000 19.5701 -14.9534 43.0310 -29.7086 0.0000 -0.0000 4.4068 -4.4125 17.9600 -5.8515 0.0000 -0.0000 -1.2817 -4.6633 -20.5056 -4.6181 0.0000 -0.0000 - 0.6654 -1.7166 23.6178 0.3808 -1.2243 178.5320 -3.8286 -6.2176 0.1835 -1.1880 -3.4344 -0.3851 7.9327 1.4106 11.2364 1.1483 8.1767 -1.1498 -9.0805 2.0731 -1.9162 2.7907 -0.2377 -13.1327 -1.1547 -0.4302 11.9293 -16.5581 -9.8908 3.4733 -0.0000 0.0001 89.6444 97.5519 68.3485 -24.7516 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -1.2620 19.8959 2.3420 13.8495 49.6182 -8.4640 -0.0000 -0.0000 -17.4988 -3.5156 -21.4731 14.4421 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 4.0940 1.7599 -48.9316 -4.2219 0.0000 -0.0000 19.5119 -14.9463 42.9852 -29.7031 0.0000 -0.0000 4.4145 -4.4949 17.8990 -5.7871 0.0000 -0.0000 -1.2904 -4.6529 -20.5973 -4.6281 0.0000 -0.0000 - 0.6814 -1.7212 23.6184 0.4077 -1.2469 178.6900 -3.6579 -6.2903 0.1922 -1.1353 -3.4543 -0.3678 7.7832 1.5758 11.4551 1.0614 8.3259 -1.1601 -9.0078 1.7816 -1.9420 2.6721 -0.3738 -13.1220 -0.8238 -0.4839 12.0664 -17.4566 -10.2297 3.6108 -0.0000 0.0001 88.9695 99.5829 69.4378 -27.1903 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.1579 19.8047 2.1189 13.5393 49.1303 -8.4123 -0.0000 -0.0000 -17.6443 -3.4963 -21.3177 14.4399 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 4.1256 1.6880 -49.0405 -4.2003 0.0000 -0.0000 19.4530 -14.9366 42.9359 -29.6978 0.0000 -0.0000 4.3724 -4.5771 17.8435 -5.7222 0.0000 -0.0000 -1.2945 -4.6461 -20.6976 -4.6393 0.0000 -0.0000 - 0.6977 -1.7266 23.6189 0.4407 -1.2757 178.8544 -3.4645 -6.3330 0.2121 -1.0787 -3.4920 -0.3640 7.6166 1.7409 11.6669 0.9620 8.4388 -1.1620 -8.9334 1.5335 -1.9693 2.5628 -0.5088 -13.1220 -0.6591 -0.5300 12.1709 -18.7724 -11.2195 3.5951 -0.0000 0.0001 88.2754 99.8238 70.4441 -28.6916 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.0745 19.7510 1.9207 13.1531 48.6908 -8.3023 -0.0000 -0.0000 -17.8144 -3.4936 -21.1731 14.4274 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 4.1632 1.6073 -49.1454 -4.1844 0.0000 -0.0000 19.3959 -14.9268 42.8783 -29.6899 0.0000 -0.0000 4.3387 -4.6639 17.7949 -5.6719 0.0000 -0.0000 -1.2901 -4.6396 -20.8104 -4.6526 0.0000 -0.0000 - 0.7135 -1.7330 23.6194 0.4688 -1.3048 179.0292 -3.2685 -6.3523 0.2337 -1.0222 -3.5078 -0.3523 7.4453 1.8555 11.8447 0.8619 8.5369 -1.1579 -8.8662 1.3132 -1.9939 2.4584 -0.6255 -13.1275 -0.6834 -0.5710 12.2499 -20.4430 -12.8099 3.3935 -0.0000 0.0001 87.6154 97.9469 71.2856 -28.8829 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.0136 19.7262 1.7430 12.6840 48.3159 -8.1159 -0.0000 -0.0000 -18.0276 -3.4847 -21.0420 14.4309 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.1945 1.5255 -49.2512 -4.1707 0.0000 -0.0000 19.3390 -14.9188 42.8127 -29.6850 0.0000 -0.0000 4.3006 -4.7483 17.7515 -5.6366 0.0000 -0.0000 -1.2758 -4.6349 -20.9387 -4.6641 0.0000 -0.0000 - 0.7289 -1.7405 23.6198 0.4928 -1.3367 179.2149 -3.0718 -6.3434 0.2561 -0.9683 -3.5120 -0.3376 7.2722 1.9257 11.9826 0.7606 8.6087 -1.1462 -8.8016 1.1377 -2.0186 2.3601 -0.7333 -13.1322 -0.8807 -0.6089 12.3006 -22.4156 -14.9063 2.9917 -0.0000 0.0001 87.0506 93.4877 71.8544 -27.2554 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.9687 19.7368 1.5881 12.1526 48.0045 -7.8747 -0.0000 -0.0000 -18.2769 -3.4891 -20.9453 14.4148 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 4.2210 1.4401 -49.3582 -4.1607 0.0000 -0.0000 19.2829 -14.9124 42.7385 -29.6805 0.0000 -0.0000 4.2609 -4.8318 17.7139 -5.6212 0.0000 -0.0000 -1.2502 -4.6315 -21.0830 -4.6766 0.0000 -0.0000 - 0.7437 -1.7488 23.6200 0.5140 -1.3714 179.4128 -2.8848 -6.3127 0.2803 -0.9177 -3.5113 -0.3282 7.1121 1.9700 12.0770 0.6584 8.6484 -1.1303 -8.7433 1.0040 -2.0380 2.2680 -0.8243 -13.1356 -1.2547 -0.6306 12.3267 -24.6226 -17.4270 2.3581 -0.0000 0.0001 86.6388 86.4546 72.0147 -23.7438 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.9361 19.7740 1.4383 11.5332 47.7706 -7.5401 -0.0000 -0.0000 -18.5754 -3.4920 -20.8813 14.3842 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 4.2443 1.3516 -49.4692 -4.1541 0.0000 -0.0000 19.2277 -14.9080 42.6569 -29.6777 0.0000 -0.0000 4.2223 -4.9138 17.6817 -5.6285 0.0000 -0.0000 -1.2128 -4.6293 -21.2441 -4.6886 0.0000 -0.0000 - 0.7577 -1.7580 23.6199 0.5311 -1.4084 179.6199 -2.7136 -6.2638 0.3035 -0.8740 -3.5024 -0.3203 6.9725 1.9809 12.1243 0.5610 8.6612 -1.1114 -8.6942 0.9136 -2.0494 2.1822 -0.8970 -13.1354 -1.7834 -0.6348 12.3305 -27.0140 -20.2509 1.4827 -0.0000 0.0001 86.4195 77.4093 71.6330 -18.8243 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.9134 19.8317 1.2908 10.8334 47.6172 -7.1168 -0.0000 -0.0000 -18.9228 -3.4945 -20.8473 14.3387 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 4.2626 1.2614 -49.5838 -4.1502 0.0000 -0.0000 19.1743 -14.9053 42.5701 -29.6771 0.0000 -0.0000 4.1846 -4.9931 17.6535 -5.6599 0.0000 -0.0000 -1.1630 -4.6290 -21.4176 -4.6998 0.0000 -0.0000 - 0.7710 -1.7680 23.6196 0.5429 -1.4480 179.8312 -2.5642 -6.2028 0.3246 -0.8392 -3.4873 -0.3141 6.8609 1.9629 12.1287 0.4722 8.6487 -1.0908 -8.6570 0.8675 -2.0507 2.1040 -0.9510 -13.1316 -2.4389 -0.6194 12.3151 -29.5522 -23.2523 0.3650 -0.0000 0.0001 86.4036 67.3942 70.6583 -13.4075 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.8968 19.8996 1.1375 10.0553 47.5501 -6.6058 -0.0000 -0.0000 -19.3143 -3.4974 -20.8353 14.2763 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 4.2739 1.1703 -49.7007 -4.1481 0.0000 -0.0000 19.1238 -14.9036 42.4812 -29.6785 0.0000 -0.0000 4.1479 -5.0694 17.6286 -5.7154 0.0000 -0.0000 -1.1011 -4.6309 -21.5977 -4.7103 0.0000 -0.0000 - 0.7833 -1.7788 23.6189 0.5483 -1.4898 -179.9597 -2.4415 -6.1361 0.3431 -0.8148 -3.4683 -0.3095 6.7830 1.9214 12.0980 0.3954 8.6163 -1.0690 -8.6341 0.8622 -2.0420 2.0352 -0.9853 -13.1245 -3.1807 -0.5923 12.2839 -32.2105 -26.2923 -0.9725 -0.0000 0.0001 86.5580 57.5225 69.1798 -8.3903 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.8849 19.9661 0.9724 9.2102 47.5711 -6.0158 -0.0000 -0.0000 -19.7427 -3.5022 -20.8359 14.1986 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 4.2763 1.0796 -49.8172 -4.1470 0.0000 -0.0000 19.0776 -14.9021 42.3935 -29.6817 0.0000 -0.0000 4.1122 -5.1423 17.6062 -5.7936 0.0000 -0.0000 -1.0279 -4.6353 -21.7776 -4.7205 0.0000 -0.0000 - 0.7947 -1.7902 23.6181 0.5460 -1.5338 -179.7600 -2.3490 -6.0704 0.3588 -0.8013 -3.4485 -0.3063 6.7418 1.8640 12.0439 0.3332 8.5684 -1.0469 -8.6277 0.8930 -2.0239 1.9783 -0.9997 -13.1155 -3.9643 -0.5625 12.2429 -34.9481 -29.2340 -2.4864 -0.0000 0.0001 86.8127 48.6824 67.3990 -4.3664 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.8773 20.0190 0.7915 8.3182 47.6810 -5.3655 -0.0000 -0.0000 -20.1959 -3.5115 -20.8387 14.1080 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 4.2679 0.9905 -49.9301 -4.1465 0.0000 -0.0000 19.0373 -14.8999 42.3105 -29.6860 0.0000 -0.0000 4.0769 -5.2113 17.5859 -5.8917 0.0000 -0.0000 -0.9448 -4.6424 -21.9495 -4.7310 0.0000 -0.0000 - 0.8051 -1.8024 23.6170 0.5066 -1.5836 -179.5771 -2.3246 -6.0185 0.3712 -0.7937 -3.4327 -0.3077 6.7409 1.8121 11.9783 0.2872 8.5020 -1.0204 -8.6421 0.9541 -1.9999 1.9355 -0.9956 -13.1064 -4.7512 -0.5409 12.1971 -37.6808 -31.9542 -4.1012 -0.0000 0.0001 87.0782 41.3641 65.5672 -1.4930 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.8751 20.0525 0.5931 7.4105 47.8717 -4.6861 -0.0000 -0.0000 -20.6580 -3.5299 -20.8342 14.0071 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.2159 0.9001 -50.0368 -4.1447 0.0000 -0.0000 19.0048 -14.8929 42.2356 -29.6903 0.0000 -0.0000 4.0090 -5.2814 17.5658 -6.0015 0.0000 -0.0000 -0.8564 -4.6527 -22.1057 -4.7415 0.0000 -0.0000 - 0.8140 -1.8148 23.6158 0.4757 -1.6284 -179.4168 -2.3091 -5.9694 0.3813 -0.8017 -3.4165 -0.3045 6.7773 1.7356 11.9150 0.2590 8.4508 -0.9993 -8.6738 1.0269 -1.9718 1.9109 -0.9697 -13.0957 -5.4756 -0.5534 12.1538 -40.2731 -34.3321 -5.6627 -0.0000 0.0001 87.2561 35.7593 63.9199 0.3299 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.8877 20.0446 0.3860 6.5283 48.1511 -4.0076 -0.0000 -0.0000 -21.1173 -3.5525 -20.8226 13.9058 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 4.1694 0.8215 -50.1313 -4.1426 0.0000 -0.0000 18.9800 -14.8870 42.1704 -29.6950 0.0000 -0.0000 3.9592 -5.3395 17.5494 -6.1234 0.0000 -0.0000 -0.7609 -4.6658 -22.2430 -4.7542 0.0000 -0.0000 - 0.8216 -1.8275 23.6145 0.4240 -1.6734 -179.2844 -2.3391 -5.9335 0.3903 -0.8165 -3.4072 -0.3042 6.8465 1.6679 11.8668 0.2485 8.3920 -0.9771 -8.7258 1.1150 -1.9429 1.9062 -0.9260 -13.0869 -6.1251 -0.5882 12.1189 -42.5236 -36.3174 -7.0326 -0.0000 0.0001 87.2984 31.8122 62.6085 1.3688 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.9096 20.0038 0.1684 5.7083 48.5047 -3.3728 -0.0000 -0.0000 -21.5539 -3.5842 -20.7968 13.8033 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 4.0972 0.7491 -50.2120 -4.1402 0.0000 -0.0000 18.9652 -14.8776 42.1174 -29.6985 0.0000 -0.0000 3.8943 -5.3926 17.5341 -6.2481 0.0000 -0.0000 -0.6638 -4.6810 -22.3546 -4.7690 0.0000 -0.0000 - 0.8275 -1.8401 23.6133 0.3695 -1.7143 -179.1812 -2.3895 -5.9103 0.4012 -0.8390 -3.4052 -0.3027 6.9407 1.6059 11.8382 0.2553 8.3409 -0.9594 -8.7960 1.2022 -1.9149 1.9230 -0.8641 -13.0787 -6.6722 -0.6480 12.0975 -44.2173 -37.8796 -8.0338 -0.0000 0.0001 87.1786 29.3397 61.7125 1.8977 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.9494 19.9252 -0.0430 5.0082 48.9226 -2.8314 -0.0000 -0.0000 -21.9583 -3.6255 -20.7608 13.7109 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 4.0196 0.6874 -50.2766 -4.1401 0.0000 -0.0000 18.9615 -14.8674 42.0764 -29.6999 0.0000 -0.0000 3.8330 -5.4358 17.5214 -6.3722 0.0000 -0.0000 -0.5667 -4.6976 -22.4406 -4.7867 0.0000 -0.0000 - 0.8316 -1.8522 23.6123 0.3161 -1.7500 -179.1085 -2.4580 -5.8997 0.4107 -0.8659 -3.4083 -0.3047 7.0602 1.5533 11.8322 0.2714 8.2948 -0.9301 -8.8808 1.2855 -1.8956 1.9621 -0.7867 -13.0698 -7.0993 -0.7285 12.0857 -45.1488 -39.0013 -8.4989 -0.0000 0.0001 86.8958 28.1137 61.2432 2.1479 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.0125 19.8098 -0.2480 4.4598 49.4045 -2.4087 -0.0000 -0.0000 -22.3176 -3.6673 -20.7181 13.6275 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.9415 0.6371 -50.3273 -4.1435 0.0000 -0.0000 18.9701 -14.8553 42.0515 -29.6997 0.0000 -0.0000 3.7779 -5.4684 17.5198 -6.4900 0.0000 -0.0000 -0.4741 -4.7137 -22.5083 -4.8064 0.0000 -0.0000 - 0.8336 -1.8635 23.6115 0.2743 -1.7791 -179.0601 -2.5263 -5.8960 0.4188 -0.8971 -3.4170 -0.3023 7.1892 1.5083 11.8536 0.3037 8.2486 -0.9128 -8.9816 1.3636 -1.8759 2.0220 -0.6972 -13.0606 -7.4341 -0.7930 12.0942 -45.1736 -39.7122 -8.3723 -0.0000 0.0001 86.4773 27.9365 61.1449 2.2990 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.1000 19.6731 -0.4158 4.1218 49.9285 -2.1732 -0.0000 -0.0000 -22.6218 -3.7138 -20.6712 13.5566 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 3.8760 0.5992 -50.3562 -4.1510 0.0000 -0.0000 18.9869 -14.8463 42.0294 -29.6972 0.0000 -0.0000 3.7393 -5.4905 17.5010 -6.5995 0.0000 -0.0000 -0.3851 -4.7299 -22.5353 -4.8280 0.0000 -0.0000 - 0.8335 -1.8741 23.6109 0.2280 -1.7991 -179.0342 -2.6129 -5.8996 0.4280 -0.9290 -3.4290 -0.3046 7.3294 1.4732 11.8936 0.3426 8.2082 -0.8891 -9.0913 1.4276 -1.8648 2.0988 -0.5989 -13.0477 -7.6677 -0.8500 12.1126 -44.2250 -39.9899 -7.5973 -0.0000 0.0001 85.9419 28.6878 61.3263 2.4341 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.2164 19.5290 -0.5580 3.9928 50.4759 -2.1030 -0.0000 -0.0000 -22.8815 -3.7529 -20.6214 13.5023 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.8061 0.5766 -50.3724 -4.1625 0.0000 -0.0000 19.0132 -14.8378 42.0166 -29.6937 0.0000 -0.0000 3.6952 -5.4988 17.4954 -6.6911 0.0000 -0.0000 -0.3069 -4.7439 -22.5552 -4.8504 0.0000 -0.0000 - 0.8312 -1.8842 23.6106 0.1670 -1.8118 -179.0240 -2.7290 -5.9108 0.4362 -0.9578 -3.4363 -0.3055 7.4759 1.4393 11.9463 0.3884 8.1738 -0.8690 -9.2068 1.4757 -1.8602 2.1867 -0.4975 -13.0282 -7.8101 -0.8898 12.1443 -42.3501 -39.8225 -6.2382 -0.0000 0.0001 85.3242 30.3137 61.6519 2.5819 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.3505 19.3932 -0.6611 4.0929 51.0245 -2.2344 -0.0000 -0.0000 -23.0935 -3.7868 -20.5750 13.4608 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.7216 0.5674 -50.3799 -4.1763 0.0000 -0.0000 19.0465 -14.8293 42.0102 -29.6898 0.0000 -0.0000 3.6318 -5.4962 17.4916 -6.7601 0.0000 -0.0000 -0.2418 -4.7558 -22.5636 -4.8720 0.0000 -0.0000 - 0.8266 -1.8927 23.6106 0.1470 -1.8086 -179.0237 -2.8058 -5.9158 0.4450 -0.9883 -3.4476 -0.3023 7.6168 1.4192 11.9944 0.4350 8.1334 -0.8485 -9.3198 1.5089 -1.8551 2.2812 -0.3951 -13.0030 -7.8592 -0.8948 12.1927 -39.7104 -39.2069 -4.4361 -0.0000 0.0001 84.6635 32.8541 61.9671 2.6694 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.4977 19.2732 -0.7203 4.4099 51.5659 -2.5551 -0.0000 -0.0000 -23.2676 -3.8077 -20.5315 13.4312 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.6840 0.5788 -50.3809 -4.1961 0.0000 -0.0000 19.0855 -14.8266 42.0095 -29.6866 0.0000 -0.0000 3.6097 -5.4739 17.4874 -6.8109 0.0000 -0.0000 -0.1879 -4.7642 -22.5623 -4.8926 0.0000 -0.0000 - 0.8199 -1.9006 23.6109 0.1136 -1.7990 -179.0261 -2.9088 -5.9253 0.4484 -1.0133 -3.4510 -0.2987 7.7573 1.4021 12.0347 0.4830 8.0934 -0.8275 -9.4301 1.5250 -1.8526 2.3734 -0.2980 -12.9694 -7.8312 -0.8712 12.2588 -36.5287 -38.1483 -2.3890 -0.0000 0.0001 84.0216 36.3120 62.1164 2.6149 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.6569 19.1847 -0.7358 4.9240 52.0757 -3.0474 -0.0000 -0.0000 -23.4118 -3.8140 -20.4889 13.4039 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.6343 0.6009 -50.3840 -4.2177 0.0000 -0.0000 19.1281 -14.8236 42.0129 -29.6848 0.0000 -0.0000 3.5649 -5.4432 17.4849 -6.8348 0.0000 -0.0000 -0.1512 -4.7693 -22.5626 -4.9092 0.0000 -0.0000 - 0.8114 -1.9071 23.6114 0.1087 -1.7796 -179.0271 -2.9862 -5.9311 0.4501 -1.0368 -3.4528 -0.2970 7.8917 1.3884 12.0665 0.5276 8.0551 -0.8117 -9.5264 1.5267 -1.8500 2.4566 -0.2107 -12.9284 -7.7162 -0.8187 12.3430 -33.0669 -36.6878 -0.2816 -0.0000 0.0001 83.4559 40.6168 62.0014 2.3138 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.8052 19.1376 -0.7270 5.5752 52.5381 -3.6555 -0.0000 -0.0000 -23.5463 -3.8047 -20.4495 13.3796 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.6181 0.6367 -50.3879 -4.2411 0.0000 -0.0000 19.1708 -14.8241 42.0171 -29.6849 0.0000 -0.0000 3.5451 -5.4004 17.4834 -6.8395 0.0000 -0.0000 -0.1284 -4.7704 -22.5660 -4.9216 0.0000 -0.0000 - 0.8009 -1.9132 23.6122 0.0937 -1.7457 -179.0247 -3.0799 -5.9280 0.4467 -1.0581 -3.4450 -0.2934 8.0244 1.3626 12.0822 0.5722 8.0331 -0.8051 -9.6100 1.5074 -1.8434 2.5221 -0.1365 -12.8795 -7.5125 -0.7534 12.4549 -29.5566 -34.8889 1.7317 -0.0000 0.0001 83.0267 45.5504 61.6033 1.7159 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -1.9461 19.1331 -0.6833 6.3322 52.9430 -4.3562 -0.0000 -0.0000 -23.6751 -3.7795 -20.4100 13.3455 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.5910 0.6944 -50.4000 -4.2566 0.0000 -0.0000 19.2095 -14.8263 42.0255 -29.6901 0.0000 -0.0000 3.5032 -5.3413 17.4821 -6.8147 0.0000 -0.0000 -0.1215 -4.7704 -22.5759 -4.9290 0.0000 -0.0000 - 0.7896 -1.9182 23.6130 0.0999 -1.7131 -179.0175 -3.1536 -5.9345 0.4394 -1.0741 -3.4396 -0.2956 8.1452 1.3650 12.0801 0.6105 8.0010 -0.7968 -9.6739 1.4768 -1.8342 2.5649 -0.0790 -12.8277 -7.2306 -0.6574 12.5864 -26.1619 -32.8788 3.5524 -0.0000 0.0001 82.7594 50.7392 61.0000 0.8880 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -2.0576 19.1733 -0.6283 7.1341 53.2859 -5.0979 -0.0000 -0.0000 -23.8107 -3.7422 -20.3701 13.3010 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.5887 0.7512 -50.4219 -4.2737 0.0000 -0.0000 19.2484 -14.8254 42.0389 -29.6973 0.0000 -0.0000 3.4787 -5.2838 17.4817 -6.7747 0.0000 -0.0000 -0.1292 -4.7665 -22.5917 -4.9296 0.0000 -0.0000 - 0.7772 -1.9228 23.6140 0.1127 -1.6705 -179.0080 -3.2184 -5.9365 0.4276 -1.0892 -3.4301 -0.2968 8.2608 1.3634 12.0648 0.6456 7.9901 -0.7981 -9.7174 1.4254 -1.8201 2.5808 -0.0388 -12.7743 -6.8650 -0.5527 12.7428 -22.9935 -30.7468 5.1554 -0.0000 0.0001 82.6358 55.7377 60.3480 0.0065 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.1397 19.2501 -0.5674 7.9261 53.5694 -5.8261 -0.0000 -0.0000 -23.9605 -3.6935 -20.3303 13.2381 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.5918 0.8239 -50.4524 -4.2808 0.0000 -0.0000 19.2817 -14.8240 42.0582 -29.7095 0.0000 -0.0000 3.4531 -5.2159 17.4817 -6.7136 0.0000 -0.0000 -0.1494 -4.7623 -22.6116 -4.9251 0.0000 -0.0000 - 0.7643 -1.9271 23.6151 0.1331 -1.6229 -178.9997 -3.2704 -5.9412 0.4125 -1.1019 -3.4201 -0.2990 8.3689 1.3694 12.0414 0.6755 7.9988 -0.8061 -9.7388 1.3540 -1.8031 2.5669 -0.0161 -12.7229 -6.4307 -0.4391 12.9179 -20.1054 -28.6049 6.5431 -0.0000 0.0001 82.6061 60.2670 59.8366 -0.8363 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -2.1825 19.3581 -0.5144 8.6672 53.7961 -6.5047 -0.0000 -0.0000 -24.1315 -3.6353 -20.2901 13.1636 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.6005 0.9055 -50.4913 -4.2784 0.0000 -0.0000 19.3108 -14.8191 42.0862 -29.7258 0.0000 -0.0000 3.4301 -5.1436 17.4831 -6.6366 0.0000 -0.0000 -0.1800 -4.7581 -22.6326 -4.9154 0.0000 -0.0000 - 0.7514 -1.9312 23.6163 0.1611 -1.5750 -178.9981 -3.3060 -5.9536 0.3935 -1.1122 -3.4118 -0.3020 8.4685 1.3889 12.0191 0.6994 8.0254 -0.8196 -9.7385 1.2661 -1.7834 2.5232 -0.0118 -12.6785 -5.9331 -0.3209 13.1061 -17.5507 -26.5453 7.7331 -0.0000 0.0001 82.6026 64.0658 59.6475 -1.4485 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.1800 19.4838 -0.4799 9.3213 53.9833 -7.1066 -0.0000 -0.0000 -24.3184 -3.5753 -20.2495 13.0689 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.6140 0.9904 -50.5344 -4.2672 0.0000 -0.0000 19.3371 -14.8087 42.1239 -29.7450 0.0000 -0.0000 3.4124 -5.0724 17.4877 -6.5484 0.0000 -0.0000 -0.2189 -4.7545 -22.6505 -4.9016 0.0000 -0.0000 - 0.7389 -1.9352 23.6175 0.1954 -1.5279 -179.0087 -3.3219 -5.9749 0.3723 -1.1199 -3.4070 -0.3058 8.5576 1.4244 12.0067 0.7177 8.0710 -0.8374 -9.7210 1.1629 -1.7632 2.4530 -0.0235 -12.6440 -5.3943 -0.2062 13.2984 -15.3510 -24.6492 8.7531 -0.0000 0.0001 82.5702 67.0852 59.9114 -1.8162 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -2.1365 19.6165 -0.4685 9.8803 54.1430 -7.6215 -0.0000 -0.0000 -24.5183 -3.5126 -20.2079 12.9622 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.6298 1.0767 -50.5776 -4.2472 0.0000 -0.0000 19.3617 -14.7917 42.1725 -29.7661 0.0000 -0.0000 3.4011 -5.0038 17.4963 -6.4532 0.0000 -0.0000 -0.2630 -4.7519 -22.6602 -4.8851 0.0000 -0.0000 - 0.7270 -1.9389 23.6187 0.2636 -1.4789 -179.0370 -3.2782 -6.0009 0.3517 -1.1288 -3.4078 -0.3090 8.6268 1.4714 12.0156 0.7319 8.1378 -0.8619 -9.6871 1.0490 -1.7413 2.3607 -0.0481 -12.6234 -4.8227 -0.1035 13.4909 -13.5412 -22.9826 9.6286 -0.0000 0.0001 82.4706 69.2763 60.7039 -1.8938 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.0496 19.7418 -0.4834 10.3445 54.2937 -8.0533 -0.0000 -0.0000 -24.7243 -3.4540 -20.1646 12.8468 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.6774 1.1660 -50.6133 -4.2216 0.0000 -0.0000 19.3866 -14.7715 42.2315 -29.7882 0.0000 -0.0000 3.4303 -4.9342 17.5116 -6.3601 0.0000 -0.0000 -0.3065 -4.7507 -22.6578 -4.8683 0.0000 -0.0000 - 0.7163 -1.9434 23.6199 0.2933 -1.4416 -179.0875 -3.2626 -6.0480 0.3329 -1.1284 -3.4131 -0.3137 8.6864 1.5450 12.0417 0.7408 8.2083 -0.8793 -9.6496 0.9406 -1.7215 2.2500 -0.0893 -12.6195 -4.2832 0.0042 13.6698 -12.1168 -21.6681 10.3626 -0.0000 0.0001 82.3034 70.6022 62.0194 -1.6334 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.9298 19.8667 -0.5302 10.7238 54.4331 -8.4070 -0.0000 -0.0000 -24.9285 -3.4042 -20.1104 12.7278 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.6779 1.2441 -50.6402 -4.1896 0.0000 -0.0000 19.4143 -14.7396 42.3007 -29.8091 0.0000 -0.0000 3.4206 -4.8794 17.5295 -6.2634 0.0000 -0.0000 -0.3526 -4.7518 -22.6363 -4.8511 0.0000 -0.0000 - 0.7066 -1.9481 23.6212 0.3275 -1.4033 -179.1646 -3.2157 -6.0971 0.3167 -1.1262 -3.4274 -0.3177 8.7281 1.6310 12.1006 0.7447 8.2933 -0.8988 -9.6091 0.8338 -1.7028 2.1289 -0.1387 -12.6309 -3.7533 0.0703 13.8214 -11.1117 -20.6982 11.0145 -0.0000 0.0001 82.0666 71.0396 63.8048 -1.0801 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.7796 19.9729 -0.6001 11.0476 54.5806 -8.7130 -0.0000 -0.0000 -25.1200 -3.3648 -20.0490 12.6139 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 3.6780 1.3241 -50.6516 -4.1537 0.0000 -0.0000 19.4456 -14.7038 42.3807 -29.8292 0.0000 -0.0000 3.4221 -4.8242 17.5593 -6.1716 0.0000 -0.0000 -0.3940 -4.7552 -22.5994 -4.8366 0.0000 -0.0000 - 0.6980 -1.9531 23.6225 0.3557 -1.3722 -179.2682 -3.1499 -6.1554 0.3054 -1.1199 -3.4443 -0.3193 8.7492 1.7271 12.1856 0.7458 8.3769 -0.9152 -9.5740 0.7463 -1.6841 2.0038 -0.1972 -12.6566 -3.3046 0.1281 13.9525 -10.5095 -20.2009 11.5479 -0.0000 0.0001 81.8174 70.5591 65.9073 -0.2190 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6108 20.0631 -0.6894 11.3413 54.7410 -8.9885 -0.0000 -0.0000 -25.2911 -3.3382 -19.9723 12.5106 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.6680 1.3949 -50.6422 -4.1201 0.0000 -0.0000 19.4830 -14.6633 42.4658 -29.8456 0.0000 -0.0000 3.4262 -4.7773 17.5971 -6.0904 0.0000 -0.0000 -0.4293 -4.7600 -22.5430 -4.8252 0.0000 -0.0000 - 0.6906 -1.9583 23.6237 0.3774 -1.3462 -179.3981 -3.0662 -6.2158 0.2990 -1.1101 -3.4648 -0.3196 8.7511 1.8295 12.2937 0.7440 8.4527 -0.9265 -9.5493 0.6833 -1.6631 1.8801 -0.2614 -12.6924 -2.9514 0.1641 14.0507 -10.3100 -20.2083 11.9817 -0.0000 0.0001 81.6000 69.0647 68.1417 0.9924 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.4408 20.1364 -0.7847 11.6396 54.9185 -9.2579 -0.0000 -0.0000 -25.4334 -3.3235 -19.8774 12.4247 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 3.6482 1.4578 -50.6105 -4.0913 0.0000 -0.0000 19.5278 -14.6203 42.5550 -29.8578 0.0000 -0.0000 3.4333 -4.7358 17.6457 -6.0229 0.0000 -0.0000 -0.4559 -4.7659 -22.4698 -4.8181 0.0000 -0.0000 - 0.6844 -1.9638 23.6249 0.3904 -1.3266 -179.5509 -2.9695 -6.2741 0.2995 -1.0974 -3.4843 -0.3168 8.7356 1.9283 12.4150 0.7399 8.5131 -0.9344 -9.5398 0.6507 -1.6382 1.7637 -0.3261 -12.7310 -2.7164 0.1833 14.1184 -10.5039 -20.7619 12.2923 -0.0000 0.0001 81.4824 66.5385 70.2609 2.5544 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.2755 20.1927 -0.8797 11.9598 55.1174 -9.5354 -0.0000 -0.0000 -25.5400 -3.3190 -19.7589 12.3545 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.6182 1.5103 -50.5560 -4.0709 0.0000 -0.0000 19.5802 -14.5765 42.6448 -29.8648 0.0000 -0.0000 3.4424 -4.7006 17.7047 -5.9731 0.0000 -0.0000 -0.4722 -4.7721 -22.3827 -4.8154 0.0000 -0.0000 - 0.6791 -1.9694 23.6260 0.3936 -1.3104 -179.7244 -2.8642 -6.3240 0.3059 -1.0824 -3.5087 -0.3144 8.7055 2.0273 12.5452 0.7330 8.5513 -0.9332 -9.5470 0.6559 -1.6130 1.6585 -0.3919 -12.7654 -2.6200 0.1793 14.1444 -11.0551 -21.8597 12.4640 -0.0000 0.0001 81.5265 62.9878 72.0031 4.4542 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.1107 20.2449 -0.9789 12.3213 55.3223 -9.8383 -0.0000 -0.0000 -25.6109 -3.3316 -19.6223 12.3102 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.5776 1.5555 -50.4787 -4.0603 0.0000 -0.0000 19.6403 -14.5342 42.7337 -29.8667 0.0000 -0.0000 3.4520 -4.6678 17.7757 -5.9415 0.0000 -0.0000 -0.4774 -4.7786 -22.2856 -4.8171 0.0000 -0.0000 - 0.6746 -1.9753 23.6270 0.3830 -1.2998 -179.9118 -2.7634 -6.3625 0.3177 -1.0663 -3.5306 -0.3122 8.6685 2.1125 12.6673 0.7246 8.5644 -0.9280 -9.5732 0.6955 -1.5774 1.5669 -0.4526 -12.7879 -2.6649 0.1575 14.1449 -11.9379 -23.4806 12.4598 -0.0000 0.0001 81.7811 58.5476 73.1394 6.6063 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.9634 20.2908 -1.0671 12.7211 55.5405 -10.1552 -0.0000 -0.0000 -25.6445 -3.3488 -19.4569 12.2904 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 3.5237 1.5898 -50.3813 -4.0611 0.0000 -0.0000 19.7065 -14.4943 42.8174 -29.8626 0.0000 -0.0000 3.4577 -4.6397 17.8565 -5.9310 0.0000 -0.0000 -0.4711 -4.7852 -22.1830 -4.8222 0.0000 -0.0000 - 0.6708 -1.9819 23.6278 0.3192 -1.2935 179.8917 -2.7197 -6.3848 0.3351 -1.0468 -3.5602 -0.3172 8.6357 2.1957 12.7755 0.7158 8.5480 -0.9193 -9.6214 0.7683 -1.5347 1.4892 -0.5082 -12.7895 -2.8541 0.1095 14.1147 -13.0975 -25.5615 12.2627 -0.0000 0.0001 82.2739 53.5807 73.4972 8.7196 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.8392 20.3422 -1.1407 13.1799 55.7521 -10.5053 -0.0000 -0.0000 -25.6353 -3.3771 -19.2699 12.2887 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.4136 1.6164 -50.2689 -4.0683 0.0000 -0.0000 19.7760 -14.4555 42.8950 -29.8541 0.0000 -0.0000 3.4128 -4.6153 17.9465 -5.9333 0.0000 -0.0000 -0.4564 -4.7931 -22.0805 -4.8296 0.0000 -0.0000 - 0.6677 -1.9883 23.6283 0.2660 -1.2950 179.6907 -2.6631 -6.3988 0.3530 -1.0321 -3.5624 -0.3070 8.6027 2.2277 12.8471 0.7106 8.5129 -0.9052 -9.6833 0.8722 -1.4832 1.4268 -0.5536 -12.7639 -3.1654 0.0562 14.0650 -14.4896 -28.0306 11.8527 -0.0000 0.0001 83.0017 48.5572 73.0289 10.4057 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.7328 20.3889 -1.2162 13.6551 55.9777 -10.8421 -0.0000 -0.0000 -25.5863 -3.4049 -19.0603 12.2977 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 3.3190 1.6279 -50.1411 -4.0907 0.0000 -0.0000 19.8503 -14.4212 42.9639 -29.8395 0.0000 -0.0000 3.3908 -4.5974 18.0453 -5.9617 0.0000 -0.0000 -0.4310 -4.7996 -21.9800 -4.8384 0.0000 -0.0000 - 0.6650 -1.9949 23.6285 0.1981 -1.3008 179.4917 -2.6310 -6.3953 0.3725 -1.0215 -3.5634 -0.3009 8.5819 2.2389 12.8848 0.7063 8.4552 -0.8894 -9.7590 0.9992 -1.4198 1.3798 -0.5867 -12.7074 -3.5932 0.0005 13.9989 -16.0437 -30.8021 11.2387 -0.0000 0.0001 83.9337 43.7831 71.8045 11.4351 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.6413 20.4474 -1.2793 14.1920 56.1786 -11.2196 -0.0000 -0.0000 -25.4948 -3.4460 -18.8413 12.3240 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.2120 1.6304 -50.0038 -4.1217 0.0000 -0.0000 19.9248 -14.3911 43.0222 -29.8208 0.0000 -0.0000 3.3600 -4.5831 18.1482 -6.0082 0.0000 -0.0000 -0.3969 -4.8067 -21.8847 -4.8479 0.0000 -0.0000 - 0.6628 -2.0014 23.6285 0.1297 -1.3104 179.2962 -2.6162 -6.3756 0.3904 -1.0161 -3.5565 -0.2915 8.5829 2.2157 12.8862 0.7019 8.3868 -0.8749 -9.8397 1.1391 -1.3479 1.3444 -0.6026 -12.6169 -4.1136 -0.0474 13.9250 -17.7104 -33.7819 10.4310 -0.0000 0.0001 85.0210 39.3412 70.0040 11.7769 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.5728 20.5020 -1.3590 14.7176 56.3852 -11.5467 -0.0000 -0.0000 -25.3657 -3.4802 -18.6093 12.3514 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.1078 1.6245 -49.8637 -4.1606 0.0000 -0.0000 19.9990 -14.3637 43.0751 -29.7986 0.0000 -0.0000 3.3349 -4.5718 18.2536 -6.0713 0.0000 -0.0000 -0.3561 -4.8140 -21.7944 -4.8568 0.0000 -0.0000 - 0.6607 -2.0081 23.6282 0.0575 -1.3237 179.1058 -2.6198 -6.3455 0.4094 -1.0171 -3.5463 -0.2859 8.5972 2.1721 12.8520 0.7063 8.3056 -0.8593 -9.9292 1.2914 -1.2654 1.3225 -0.6052 -12.4964 -4.7099 -0.0630 13.8474 -19.4487 -36.9049 9.4472 -0.0000 0.0001 86.2089 35.1771 67.8757 11.5180 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.5096 20.5606 -1.4399 15.2978 56.5635 -11.9235 -0.0000 -0.0000 -25.1835 -3.5282 -18.3825 12.3820 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.0015 1.6120 -49.7192 -4.2033 0.0000 -0.0000 20.0701 -14.3390 43.1189 -29.7744 0.0000 -0.0000 3.3097 -4.5636 18.3593 -6.1472 0.0000 -0.0000 -0.3103 -4.8224 -21.7088 -4.8648 0.0000 -0.0000 - 0.6588 -2.0148 23.6277 -0.0188 -1.3380 178.9213 -2.6473 -6.3019 0.4248 -1.0248 -3.5382 -0.2842 8.6340 2.1055 12.7965 0.7147 8.2233 -0.8478 -10.0144 1.4492 -1.1741 1.3086 -0.5911 -12.3510 -5.3459 -0.0421 13.7769 -21.2457 -40.0792 8.3069 -0.0000 0.0001 87.4368 31.1984 65.6939 10.7886 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.4585 20.6215 -1.5579 15.8565 56.7301 -12.2461 -0.0000 -0.0000 -24.9618 -3.5715 -18.1582 12.4110 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8921 1.5967 -49.5786 -4.2467 0.0000 -0.0000 20.1376 -14.3144 43.1603 -29.7494 0.0000 -0.0000 3.2812 -4.5566 18.4618 -6.2293 0.0000 -0.0000 -0.2625 -4.8330 -21.6259 -4.8711 0.0000 -0.0000 - 0.6571 -2.0209 23.6270 -0.0578 -1.3555 178.7410 -2.6522 -6.2583 0.4414 -1.0387 -3.5279 -0.2861 8.6871 2.0316 12.7166 0.7263 8.1371 -0.8329 -10.0983 1.6049 -1.0757 1.3068 -0.5588 -12.1866 -6.0119 0.0284 13.7153 -23.0845 -43.2445 7.0286 -0.0000 0.0001 88.6487 27.4099 63.7049 9.6717 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.4019 20.6661 -1.6816 16.5061 56.8718 -12.6786 -0.0000 -0.0000 -24.6668 -3.6328 -17.9623 12.4355 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.8243 1.5773 -49.4354 -4.2914 0.0000 -0.0000 20.2000 -14.2919 43.1954 -29.7238 0.0000 -0.0000 3.2969 -4.5517 18.5619 -6.3219 0.0000 -0.0000 -0.2122 -4.8438 -21.5434 -4.8761 0.0000 -0.0000 - 0.6556 -2.0279 23.6262 -0.1474 -1.3763 178.5632 -2.7334 -6.2268 0.4511 -1.0518 -3.5083 -0.2796 8.7626 1.9452 12.6214 0.7447 8.0593 -0.8183 -10.1782 1.7565 -0.9735 1.3113 -0.5142 -12.0135 -6.6625 0.1237 13.6654 -24.9685 -46.2920 5.6487 -0.0000 0.0001 89.7991 23.9124 62.0935 8.2170 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.3496 20.7117 -1.8417 17.1850 56.9780 -13.1310 -0.0000 -0.0000 -24.3172 -3.6997 -17.7860 12.4613 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.6998 1.5546 -49.3000 -4.3269 0.0000 -0.0000 20.2570 -14.2615 43.2318 -29.6999 0.0000 -0.0000 3.2524 -4.5541 18.6576 -6.4022 0.0000 -0.0000 -0.1690 -4.8580 -21.4612 -4.8781 0.0000 -0.0000 - 0.6539 -2.0346 23.6254 -0.2169 -1.3918 178.3879 -2.8051 -6.1880 0.4589 -1.0707 -3.5110 -0.2889 8.8513 1.8707 12.5464 0.7655 7.9945 -0.8115 -10.2476 1.8992 -0.8679 1.3255 -0.4567 -11.8401 -7.2729 0.2480 13.6379 -26.8845 -49.1491 4.1909 -0.0000 0.0001 90.8485 20.8592 60.9525 6.4889 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.2959 20.7396 -2.0246 17.9465 57.0561 -13.6744 -0.0000 -0.0000 -23.8998 -3.7792 -17.6431 12.4906 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.5956 1.5396 -49.1710 -4.3566 0.0000 -0.0000 20.3092 -14.2302 43.2712 -29.6785 0.0000 -0.0000 3.2262 -4.5516 18.7449 -6.4755 0.0000 -0.0000 -0.1289 -4.8746 -21.3735 -4.8792 0.0000 -0.0000 - 0.6522 -2.0407 23.6246 -0.2563 -1.4101 178.2104 -2.8483 -6.1658 0.4673 -1.0904 -3.5049 -0.2890 8.9343 1.7957 12.4741 0.7876 7.9359 -0.8023 -10.2997 2.0342 -0.7610 1.3489 -0.3890 -11.6750 -7.7983 0.3778 13.6317 -28.7672 -51.7118 2.7533 -0.0000 0.0001 91.7660 18.4399 60.2830 4.5406 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.2374 20.7565 -2.2328 18.7958 57.0982 -14.3110 -0.0000 -0.0000 -23.4215 -3.8711 -17.5362 12.5348 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.5222 1.5234 -49.0399 -4.3818 0.0000 -0.0000 20.3573 -14.1962 43.3098 -29.6585 0.0000 -0.0000 3.2315 -4.5522 18.8301 -6.5442 0.0000 -0.0000 -0.0937 -4.8910 -21.2810 -4.8789 0.0000 -0.0000 - 0.6502 -2.0471 23.6240 -0.3122 -1.4231 178.0324 -2.9157 -6.1512 0.4726 -1.1076 -3.5079 -0.2938 9.0184 1.7349 12.4289 0.8117 7.8945 -0.7961 -10.3404 2.1534 -0.6584 1.3817 -0.3152 -11.5234 -8.2303 0.4978 13.6439 -30.4833 -53.9148 1.4539 -0.0000 0.0001 92.5429 16.8068 60.0057 2.4506 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.1721 20.7522 -2.4595 19.7390 57.1082 -15.0657 -0.0000 -0.0000 -22.8748 -3.9802 -17.4674 12.5886 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.4282 1.5153 -48.9176 -4.3974 0.0000 -0.0000 20.4023 -14.1567 43.3545 -29.6424 0.0000 -0.0000 3.2104 -4.5506 18.9077 -6.5916 0.0000 -0.0000 -0.0685 -4.9095 -21.1822 -4.8775 0.0000 -0.0000 - 0.6479 -2.0525 23.6236 -0.3221 -1.4304 177.8558 -2.9267 -6.1368 0.4772 -1.1259 -3.5307 -0.3056 9.0860 1.6975 12.4184 0.8331 7.8712 -0.7931 -10.3631 2.2523 -0.5642 1.4252 -0.2375 -11.3886 -8.5666 0.5984 13.6682 -31.8289 -55.7110 0.4696 -0.0000 0.0001 93.1762 16.0127 60.0007 0.3357 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.1073 20.7153 -2.6924 20.7905 57.0955 -15.9460 -0.0000 -0.0000 -22.2698 -4.1007 -17.4364 12.6612 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.3839 1.5152 -48.8053 -4.4132 0.0000 -0.0000 20.4490 -14.1163 43.4080 -29.6292 0.0000 -0.0000 3.2334 -4.5431 18.9727 -6.6249 0.0000 -0.0000 -0.0507 -4.9279 -21.0718 -4.8755 0.0000 -0.0000 - 0.6450 -2.0584 23.6234 -0.3767 -1.4340 177.6770 -2.9881 -6.1460 0.4812 -1.1344 -3.5400 -0.3079 9.1464 1.6694 12.4233 0.8504 7.8636 -0.7897 -10.3744 2.3290 -0.4778 1.4782 -0.1595 -11.2721 -8.7974 0.6660 13.7076 -32.5876 -57.0568 -0.0060 -0.0000 0.0001 93.6883 16.0495 60.1424 -1.6952 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0439 20.6687 -2.9205 21.9244 57.0367 -16.9270 -0.0000 -0.0000 -21.6237 -4.2375 -17.4377 12.7598 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.2879 1.5227 -48.6892 -4.4149 0.0000 -0.0000 20.4896 -14.0725 43.4565 -29.6196 0.0000 -0.0000 3.1998 -4.5354 19.0413 -6.6349 0.0000 -0.0000 -0.0445 -4.9469 -20.9653 -4.8720 0.0000 -0.0000 - 0.6419 -2.0630 23.6234 -0.3796 -1.4350 177.5037 -2.9811 -6.1566 0.4829 -1.1417 -3.5603 -0.3094 9.1784 1.6634 12.4526 0.8602 7.8651 -0.7859 -10.3657 2.3814 -0.4043 1.5412 -0.0828 -11.1716 -8.9299 0.7012 13.7518 -32.5473 -57.9370 0.2073 -0.0000 0.0001 94.0892 16.8136 60.3214 -3.4860 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0111 20.5920 -3.1405 23.1039 56.9710 -17.9641 -0.0000 -0.0000 -20.9503 -4.3771 -17.4669 12.8782 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.2498 1.5341 -48.5804 -4.4209 0.0000 -0.0000 20.5325 -14.0306 43.5080 -29.6115 0.0000 -0.0000 3.2177 -4.5239 19.1009 -6.6349 0.0000 -0.0000 -0.0450 -4.9627 -20.8544 -4.8680 0.0000 -0.0000 - 0.6378 -2.0672 23.6236 -0.3883 -1.4274 177.3347 -2.9720 -6.1718 0.4891 -1.1422 -3.5780 -0.3146 9.1878 1.6703 12.5007 0.8636 7.8786 -0.7862 -10.3439 2.4079 -0.3413 1.6126 -0.0109 -11.0839 -8.9742 0.7044 13.8006 -31.6011 -58.3452 1.1887 -0.0000 0.0001 94.3999 18.1622 60.4512 -4.8638 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0650 20.5063 -3.3327 24.3065 56.8719 -19.0461 -0.0000 -0.0000 -20.2705 -4.5306 -17.5238 13.0200 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.2046 1.5589 -48.4672 -4.4185 0.0000 -0.0000 20.5697 -13.9936 43.5505 -29.6067 0.0000 -0.0000 3.2228 -4.5037 19.1636 -6.6195 0.0000 -0.0000 -0.0527 -4.9769 -20.7517 -4.8635 0.0000 -0.0000 - 0.6333 -2.0709 23.6241 -0.3921 -1.4181 177.1795 -2.9504 -6.1896 0.4912 -1.1367 -3.5940 -0.3133 9.1742 1.6866 12.5479 0.8586 7.8989 -0.7847 -10.3091 2.4098 -0.2913 1.6898 0.0535 -11.0045 -8.9437 0.6819 13.8435 -29.7590 -58.2826 2.9116 -0.0000 0.0001 94.6287 19.9622 60.4737 -5.6778 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.1126 20.4116 -3.5001 25.4591 56.7634 -20.0884 -0.0000 -0.0000 -19.6110 -4.6849 -17.6010 13.1781 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.1687 1.5850 -48.3683 -4.4203 0.0000 -0.0000 20.6101 -13.9583 43.5940 -29.6031 0.0000 -0.0000 3.2268 -4.4823 19.2164 -6.5918 0.0000 -0.0000 -0.0681 -4.9883 -20.6531 -4.8573 0.0000 -0.0000 - 0.6280 -2.0739 23.6246 -0.3943 -1.4027 177.0386 -2.9208 -6.2034 0.4945 -1.1272 -3.6073 -0.3141 9.1410 1.7100 12.5919 0.8469 7.9233 -0.7867 -10.2655 2.3876 -0.2513 1.7703 0.1090 -10.9274 -8.8544 0.6414 13.8789 -27.1727 -57.7575 5.2208 -0.0000 0.0001 94.7852 22.1044 60.3582 -5.8376 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.1542 20.3139 -3.6270 26.5249 56.6488 -21.0608 -0.0000 -0.0000 -18.9900 -4.8389 -17.6975 13.3430 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 2.1367 1.6200 -48.2718 -4.4193 0.0000 -0.0000 20.6459 -13.9305 43.6268 -29.6013 0.0000 -0.0000 3.2271 -4.4541 19.2687 -6.5554 0.0000 -0.0000 -0.0883 -4.9969 -20.5688 -4.8500 0.0000 -0.0000 - 0.6221 -2.0763 23.6252 -0.3946 -1.3841 176.9173 -2.8860 -6.2114 0.4960 -1.1144 -3.6170 -0.3145 9.0913 1.7352 12.6210 0.8281 7.9488 -0.7914 -10.2120 2.3451 -0.2202 1.8506 0.1547 -10.8486 -8.7161 0.5904 13.9061 -24.0888 -56.7921 7.8840 -0.0000 0.0001 94.8824 24.5141 60.1105 -5.3457 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.1979 20.2262 -3.7220 27.4298 56.5362 -21.8832 -0.0000 -0.0000 -18.4376 -4.9868 -17.8119 13.5089 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.1108 1.6592 -48.1856 -4.4192 0.0000 -0.0000 20.6794 -13.9096 43.6518 -29.6002 0.0000 -0.0000 3.2249 -4.4216 19.3169 -6.5148 0.0000 -0.0000 -0.1115 -5.0024 -20.4998 -4.8413 0.0000 -0.0000 - 0.6155 -2.0783 23.6258 -0.3944 -1.3597 176.8179 -2.8508 -6.2079 0.4991 -1.1018 -3.6222 -0.3181 9.0335 1.7579 12.6261 0.8057 7.9752 -0.8006 -10.1555 2.2821 -0.1954 1.9285 0.1909 -10.7634 -8.5478 0.5395 13.9222 -20.7659 -55.4422 10.6688 -0.0000 0.0001 94.9412 27.1417 59.7782 -4.3383 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.2376 20.1450 -3.7731 28.1495 56.4401 -22.5360 -0.0000 -0.0000 -17.9634 -5.1211 -17.9426 13.6591 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.0889 1.7064 -48.1089 -4.4165 0.0000 -0.0000 20.7071 -13.8976 43.6666 -29.6001 0.0000 -0.0000 3.2186 -4.3819 19.3638 -6.4717 0.0000 -0.0000 -0.1361 -5.0053 -20.4514 -4.8314 0.0000 -0.0000 - 0.6089 -2.0796 23.6264 -0.3905 -1.3415 176.7429 -2.8186 -6.2034 0.4954 -1.0868 -3.6198 -0.3177 8.9706 1.7772 12.6007 0.7808 7.9926 -0.8101 -10.0942 2.2096 -0.1770 2.0012 0.2156 -10.6711 -8.3501 0.5072 13.9270 -17.4268 -53.7809 13.3970 -0.0000 0.0001 94.9894 29.9204 59.4552 -3.0199 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.2784 20.0834 -3.8061 28.6113 56.3755 -22.9298 -0.0000 -0.0000 -17.5953 -5.2322 -18.0856 13.7863 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.0775 1.7449 -48.0471 -4.4200 0.0000 -0.0000 20.7343 -13.8903 43.6733 -29.5988 0.0000 -0.0000 3.2165 -4.3481 19.4008 -6.4360 0.0000 -0.0000 -0.1601 -5.0049 -20.4167 -4.8197 0.0000 -0.0000 - 0.6018 -2.0806 23.6268 -0.3841 -1.3186 176.6913 -2.7909 -6.1856 0.4925 -1.0754 -3.6130 -0.3204 8.9133 1.7888 12.5437 0.7555 8.0120 -0.8245 -10.0336 2.1206 -0.1630 2.0670 0.2326 -10.5698 -8.1499 0.4941 13.9257 -14.1883 -51.8895 15.9689 -0.0000 0.0001 95.0562 32.7947 59.2476 -1.6576 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.3213 20.0375 -3.8072 28.8331 56.3352 -23.0956 -0.0000 -0.0000 -17.3324 -5.3211 -18.2407 13.8831 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.0716 1.7901 -47.9976 -4.4197 0.0000 -0.0000 20.7544 -13.8915 43.6712 -29.5984 0.0000 -0.0000 3.2141 -4.3079 19.4358 -6.4033 0.0000 -0.0000 -0.1819 -5.0030 -20.4033 -4.8075 0.0000 -0.0000 - 0.5948 -2.0813 23.6272 -0.3764 -1.2991 176.6623 -2.7735 -6.1619 0.4857 -1.0667 -3.6014 -0.3250 8.8658 1.7942 12.4588 0.7312 8.0267 -0.8414 -9.9725 2.0234 -0.1515 2.1248 0.2415 -10.4630 -7.9331 0.5097 13.9257 -11.1352 -49.8343 18.3483 -0.0000 0.0001 95.1487 35.6699 59.2704 -0.4172 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.3697 20.0175 -3.7911 28.8004 56.3155 -23.0108 -0.0000 -0.0000 -17.1827 -5.3857 -18.4018 13.9476 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0714 1.8311 -47.9634 -4.4200 0.0000 -0.0000 20.7711 -13.8970 43.6632 -29.5974 0.0000 -0.0000 3.2128 -4.2707 19.4651 -6.3782 0.0000 -0.0000 -0.2011 -4.9997 -20.4061 -4.7946 0.0000 -0.0000 - 0.5878 -2.0819 23.6274 -0.3664 -1.2794 176.6531 -2.7667 -6.1302 0.4771 -1.0627 -3.5856 -0.3292 8.8340 1.7935 12.3482 0.7108 8.0413 -0.8611 -9.9151 1.9150 -0.1446 2.1753 0.2448 -10.3533 -7.7279 0.5555 13.9284 -8.2819 -47.6920 20.5204 -0.0000 0.0001 95.2521 38.4586 59.5959 0.6446 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.4204 20.0131 -3.7645 28.5311 56.3206 -22.6969 -0.0000 -0.0000 -17.1365 -5.4220 -18.5609 13.9717 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.0758 1.8725 -47.9429 -4.4175 0.0000 -0.0000 20.7825 -13.9071 43.6505 -29.5970 0.0000 -0.0000 3.2131 -4.2328 19.4892 -6.3600 0.0000 -0.0000 -0.2162 -4.9959 -20.4234 -4.7821 0.0000 -0.0000 - 0.5813 -2.0825 23.6275 -0.3537 -1.2621 176.6596 -2.7687 -6.0968 0.4684 -1.0631 -3.5666 -0.3318 8.8176 1.7866 12.2208 0.6980 8.0664 -0.8822 -9.8643 1.7897 -0.1480 2.2198 0.2450 -10.2446 -7.5240 0.6177 13.9244 -5.6571 -45.5061 22.4994 -0.0000 0.0001 95.3316 41.1393 60.2564 1.5193 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.4716 20.0134 -3.7363 28.0631 56.3450 -22.1919 -0.0000 -0.0000 -17.1823 -5.4309 -18.7106 13.9573 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.0848 1.9104 -47.9354 -4.4137 0.0000 -0.0000 20.7908 -13.9190 43.6361 -29.5968 0.0000 -0.0000 3.2162 -4.1978 19.5083 -6.3483 0.0000 -0.0000 -0.2276 -4.9921 -20.4508 -4.7703 0.0000 -0.0000 - 0.5753 -2.0833 23.6275 -0.3388 -1.2486 176.6788 -2.7810 -6.0607 0.4569 -1.0678 -3.5456 -0.3359 8.8198 1.7797 12.0892 0.6885 8.0888 -0.9029 -9.8161 1.6594 -0.1554 2.2595 0.2409 -10.1465 -7.3199 0.6941 13.9322 -3.3124 -43.3263 24.2441 -0.0000 0.0001 95.3618 43.6839 61.2278 2.3018 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.5248 20.0306 -3.7069 27.4484 56.3639 -21.5498 -0.0000 -0.0000 -17.3024 -5.4219 -18.8428 13.9101 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.0971 1.9435 -47.9389 -4.4077 0.0000 -0.0000 20.7961 -13.9316 43.6205 -29.5972 0.0000 -0.0000 3.2219 -4.1675 19.5227 -6.3435 0.0000 -0.0000 -0.2348 -4.9889 -20.4859 -4.7598 0.0000 -0.0000 - 0.5701 -2.0842 23.6275 -0.3220 -1.2384 176.7056 -2.8000 -6.0258 0.4465 -1.0760 -3.5248 -0.3397 8.8370 1.7766 11.9640 0.6845 8.1154 -0.9238 -9.7727 1.5196 -0.1722 2.2961 0.2346 -10.0643 -7.1287 0.7665 13.9450 -1.2708 -41.2082 25.7416 -0.0000 0.0001 95.3177 46.0946 62.4480 3.0964 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.5787 20.0510 -3.6837 26.7414 56.3730 -20.8291 -0.0000 -0.0000 -17.4765 -5.3961 -18.9507 13.8378 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.1116 1.9716 -47.9502 -4.3996 0.0000 -0.0000 20.7993 -13.9434 43.6055 -29.5982 0.0000 -0.0000 3.2298 -4.1420 19.5335 -6.3433 0.0000 -0.0000 -0.2384 -4.9865 -20.5247 -4.7511 0.0000 -0.0000 - 0.5658 -2.0856 23.6274 -0.3051 -1.2319 176.7350 -2.8235 -5.9942 0.4386 -1.0859 -3.5071 -0.3431 8.8636 1.7828 11.8576 0.6860 8.1461 -0.9430 -9.7340 1.3719 -0.2012 2.3324 0.2269 -10.0042 -6.9439 0.8190 13.9597 0.4241 -39.2046 26.9735 -0.0000 0.0001 95.1897 48.3880 63.8324 3.9881 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.6336 20.0688 -3.6732 25.9995 56.3645 -20.0889 -0.0000 -0.0000 -17.6830 -5.3586 -19.0306 13.7482 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.1250 1.9938 -47.9660 -4.3901 0.0000 -0.0000 20.8017 -13.9529 43.5923 -29.6008 0.0000 -0.0000 3.2378 -4.1225 19.5419 -6.3460 0.0000 -0.0000 -0.2390 -4.9853 -20.5636 -4.7447 0.0000 -0.0000 - 0.5624 -2.0875 23.6274 -0.2925 -1.2295 176.7645 -2.8537 -5.9679 0.4342 -1.0959 -3.4934 -0.3486 8.8972 1.8023 11.7805 0.6911 8.1767 -0.9609 -9.6998 1.2242 -0.2406 2.3703 0.2135 -9.9718 -6.7690 0.8435 13.9860 1.7396 -37.3827 27.9097 -0.0000 0.0001 94.9924 50.5869 65.2768 5.0292 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.6809 20.0865 -3.6680 25.2927 56.3231 -19.3986 -0.0000 -0.0000 -17.8980 -5.3157 -19.0825 13.6497 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.1327 2.0091 -47.9836 -4.3793 0.0000 -0.0000 20.8041 -13.9595 43.5808 -29.6046 0.0000 -0.0000 3.2410 -4.1100 19.5493 -6.3501 0.0000 -0.0000 -0.2375 -4.9856 -20.6013 -4.7402 0.0000 -0.0000 - 0.5600 -2.0898 23.6274 -0.2786 -1.2280 176.7911 -2.8786 -5.9429 0.4309 -1.1062 -3.4805 -0.3473 8.9319 1.8274 11.7319 0.6982 8.2099 -0.9710 -9.6694 1.0766 -0.2935 2.4105 0.1973 -9.9702 -6.5906 0.8207 14.0045 2.6585 -35.7807 28.5737 -0.0000 0.0001 94.7348 52.7162 66.6992 6.2060 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.7166 20.0937 -3.6712 24.6640 56.2582 -18.8006 -0.0000 -0.0000 -18.1041 -5.2663 -19.1083 13.5495 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.1396 2.0217 -48.0001 -4.3670 0.0000 -0.0000 20.8059 -13.9642 43.5714 -29.6108 0.0000 -0.0000 3.2448 -4.1007 19.5564 -6.3542 0.0000 -0.0000 -0.2336 -4.9874 -20.6358 -4.7382 0.0000 -0.0000 - 0.5585 -2.0926 23.6274 -0.2614 -1.2286 176.8138 -2.8918 -5.9201 0.4311 -1.1157 -3.4712 -0.3431 8.9611 1.8630 11.7179 0.7062 8.2417 -0.9745 -9.6419 0.9334 -0.3588 2.4533 0.1763 -10.0001 -6.4123 0.7470 14.0172 3.1831 -34.4554 28.9661 -0.0000 0.0001 94.4496 54.8221 68.0228 7.4256 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.7425 20.0892 -3.6811 24.1485 56.1671 -18.3329 -0.0000 -0.0000 -18.2875 -5.2131 -19.1135 13.4563 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.1481 2.0298 -48.0132 -4.3548 0.0000 -0.0000 20.8078 -13.9669 43.5630 -29.6186 0.0000 -0.0000 3.2518 -4.0958 19.5640 -6.3586 0.0000 -0.0000 -0.2276 -4.9906 -20.6664 -4.7381 0.0000 -0.0000 - 0.5579 -2.0961 23.6275 -0.2496 -1.2324 176.8328 -2.9045 -5.9010 0.4366 -1.1207 -3.4601 -0.3362 8.9856 1.9076 11.7354 0.7108 8.2630 -0.9758 -9.6160 0.8017 -0.4296 2.4975 0.1489 -10.0603 -6.2631 0.6361 14.0464 3.3493 -33.4793 29.0726 -0.0000 0.0001 94.1821 56.9215 69.1859 8.5840 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.7544 20.0833 -3.6859 23.7776 56.0383 -18.0229 -0.0000 -0.0000 -18.4439 -5.1623 -19.1055 13.3810 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.1493 2.0316 -48.0223 -4.3425 0.0000 -0.0000 20.8095 -13.9669 43.5545 -29.6284 0.0000 -0.0000 3.2526 -4.0968 19.5728 -6.3631 0.0000 -0.0000 -0.2201 -4.9951 -20.6945 -4.7394 0.0000 -0.0000 - 0.5582 -2.1001 23.6276 -0.2381 -1.2377 176.8493 -2.9036 -5.8817 0.4453 -1.1232 -3.4517 -0.3261 8.9957 1.9597 11.7802 0.7148 8.2798 -0.9685 -9.5927 0.6770 -0.5121 2.5419 0.1165 -10.1450 -6.1198 0.4730 14.0572 3.1915 -32.8331 28.9715 -0.0000 0.0001 93.9433 59.1230 70.1826 9.3793 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.7539 20.0644 -3.6927 23.5394 55.8907 -17.8597 -0.0000 -0.0000 -18.5697 -5.1055 -19.0911 13.3235 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.1485 2.0294 -48.0276 -4.3306 0.0000 -0.0000 20.8107 -13.9651 43.5455 -29.6400 0.0000 -0.0000 3.2522 -4.1016 19.5821 -6.3678 0.0000 -0.0000 -0.2108 -5.0009 -20.7204 -4.7419 0.0000 -0.0000 - 0.5592 -2.1046 23.6277 -0.2245 -1.2473 176.8661 -2.8874 -5.8609 0.4572 -1.1237 -3.4540 -0.3242 8.9920 2.0306 11.8548 0.7156 8.2858 -0.9565 -9.5710 0.5598 -0.6023 2.5841 0.0796 -10.2476 -5.9972 0.2722 14.0607 2.7693 -32.5329 28.6831 -0.0000 0.0001 93.7598 61.4500 71.0037 9.6090 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.7357 20.0334 -3.6992 23.4177 55.7324 -17.8160 -0.0000 -0.0000 -18.6730 -5.0390 -19.0753 13.2859 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.1493 2.0201 -48.0298 -4.3201 0.0000 -0.0000 20.8109 -13.9618 43.5337 -29.6524 0.0000 -0.0000 3.2537 -4.1124 19.5914 -6.3747 0.0000 -0.0000 -0.2000 -5.0076 -20.7461 -4.7448 0.0000 -0.0000 - 0.5608 -2.1098 23.6278 -0.2138 -1.2558 176.8838 -2.8681 -5.8340 0.4733 -1.1191 -3.4418 -0.3069 8.9823 2.0841 11.9264 0.7130 8.2800 -0.9411 -9.5527 0.4588 -0.6925 2.6208 0.0368 -10.3622 -5.8994 0.0581 14.0533 2.1466 -32.5685 28.2602 -0.0000 0.0001 93.6348 63.8169 71.6552 9.1754 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.7180 19.9978 -3.7007 23.3993 55.5610 -17.8994 -0.0000 -0.0000 -18.7533 -4.9730 -19.0672 13.2594 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.1454 2.0107 -48.0308 -4.3078 0.0000 -0.0000 20.8081 -13.9578 43.5205 -29.6665 0.0000 -0.0000 3.2508 -4.1233 19.6009 -6.3827 0.0000 -0.0000 -0.1865 -5.0155 -20.7731 -4.7484 0.0000 -0.0000 - 0.5628 -2.1154 23.6279 -0.2037 -1.2676 176.9073 -2.8406 -5.8033 0.4908 -1.1135 -3.4323 -0.2942 8.9641 2.1424 12.0043 0.7078 8.2634 -0.9237 -9.5369 0.3650 -0.7843 2.6499 -0.0082 -10.4791 -5.8390 -0.1617 14.0371 1.3894 -32.9180 27.7329 -0.0000 0.0001 93.5742 65.9862 72.1288 8.1807 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.6877 19.9549 -3.7065 23.4325 55.3934 -18.0298 -0.0000 -0.0000 -18.8339 -4.8904 -19.0660 13.2480 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.1405 1.9962 -48.0336 -4.2954 0.0000 -0.0000 20.8027 -13.9527 43.5040 -29.6809 0.0000 -0.0000 3.2462 -4.1386 19.6085 -6.3940 0.0000 -0.0000 -0.1709 -5.0242 -20.8037 -4.7519 0.0000 -0.0000 - 0.5650 -2.1216 23.6280 -0.1938 -1.2820 176.9395 -2.8092 -5.7650 0.5077 -1.1061 -3.4223 -0.2851 8.9425 2.1984 12.0736 0.6995 8.2333 -0.9032 -9.5248 0.2808 -0.8715 2.6685 -0.0543 -10.5914 -5.8181 -0.3682 14.0167 0.5470 -33.5490 27.1350 -0.0000 0.0001 93.5769 67.6111 72.4223 6.8860 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.6498 19.9115 -3.7037 23.5197 55.2211 -18.2157 -0.0000 -0.0000 -18.9199 -4.7999 -19.0767 13.2461 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.1353 1.9780 -48.0410 -4.2820 0.0000 -0.0000 20.7940 -13.9467 43.4839 -29.6952 0.0000 -0.0000 3.2402 -4.1571 19.6131 -6.4090 0.0000 -0.0000 -0.1526 -5.0337 -20.8399 -4.7555 0.0000 -0.0000 - 0.5675 -2.1283 23.6280 -0.1839 -1.2989 176.9829 -2.7784 -5.7196 0.5242 -1.0984 -3.4104 -0.2784 8.9236 2.2500 12.1258 0.6892 8.1894 -0.8828 -9.5171 0.2052 -0.9525 2.6752 -0.0992 -10.6929 -5.8392 -0.5455 13.9923 -0.3424 -34.4282 26.4947 -0.0000 0.0001 93.6399 68.2653 72.5433 5.6965 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.6136 19.8670 -3.7103 23.6051 55.0587 -18.3961 -0.0000 -0.0000 -19.0279 -4.6948 -19.0980 13.2463 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 2.1303 1.9565 -48.0570 -4.2672 0.0000 -0.0000 20.7818 -13.9397 43.4612 -29.7087 0.0000 -0.0000 3.2327 -4.1786 19.6129 -6.4282 0.0000 -0.0000 -0.1312 -5.0437 -20.8824 -4.7594 0.0000 -0.0000 - 0.5700 -2.1355 23.6280 -0.1736 -1.3155 177.0376 -2.7473 -5.6670 0.5415 -1.0915 -3.3916 -0.2684 8.9080 2.2855 12.1525 0.6810 8.1419 -0.8652 -9.5150 0.1354 -1.0267 2.6683 -0.1418 -10.7794 -5.8939 -0.6876 13.9560 -1.2601 -35.5123 25.8455 -0.0000 0.0001 93.7560 67.5499 72.5162 5.0434 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.5878 19.8200 -3.7317 23.6707 54.9079 -18.5561 -0.0000 -0.0000 -19.1644 -4.5751 -19.1301 13.2411 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.1251 1.9361 -48.0813 -4.2488 0.0000 -0.0000 20.7656 -13.9328 43.4355 -29.7215 0.0000 -0.0000 3.2229 -4.1995 19.6088 -6.4496 0.0000 -0.0000 -0.1070 -5.0545 -20.9324 -4.7641 0.0000 -0.0000 - 0.5723 -2.1430 23.6280 -0.1627 -1.3327 177.1050 -2.7200 -5.6084 0.5566 -1.0861 -3.3685 -0.2600 8.9017 2.3089 12.1537 0.6745 8.0888 -0.8495 -9.5192 0.0716 -1.0914 2.6480 -0.1796 -10.8480 -5.9869 -0.7821 13.9192 -2.2021 -36.7784 25.1789 -0.0000 0.0001 93.9325 65.2216 72.3565 5.2519 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.5692 19.7748 -3.7654 23.7184 54.7642 -18.6903 -0.0000 -0.0000 -19.3352 -4.4430 -19.1701 13.2268 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.1202 1.9160 -48.1161 -4.2272 0.0000 -0.0000 20.7457 -13.9255 43.4071 -29.7329 0.0000 -0.0000 3.2110 -4.2207 19.6000 -6.4730 0.0000 -0.0000 -0.0801 -5.0657 -20.9907 -4.7698 0.0000 -0.0000 - 0.5745 -2.1510 23.6279 -0.1509 -1.3516 177.1858 -2.6984 -5.5458 0.5674 -1.0825 -3.3429 -0.2539 8.9085 2.3240 12.1291 0.6685 8.0271 -0.8354 -9.5300 0.0182 -1.1428 2.6161 -0.2128 -10.9007 -6.1116 -0.8201 13.8857 -3.1831 -38.1995 24.4895 -0.0000 0.0001 94.1693 61.2585 72.0745 6.4462 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.5585 19.7374 -3.8098 23.7611 54.6182 -18.8086 -0.0000 -0.0000 -19.5406 -4.3018 -19.2149 13.2026 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.1164 1.8949 -48.1622 -4.2028 0.0000 -0.0000 20.7233 -13.9179 43.3759 -29.7419 0.0000 -0.0000 3.1973 -4.2437 19.5861 -6.4979 0.0000 -0.0000 -0.0511 -5.0768 -21.0574 -4.7767 0.0000 -0.0000 - 0.5764 -2.1592 23.6278 -0.1380 -1.3698 177.2774 -2.6816 -5.4801 0.5766 -1.0809 -3.3143 -0.2494 8.9263 2.3279 12.0831 0.6665 7.9623 -0.8252 -9.5473 -0.0250 -1.1822 2.5742 -0.2406 -10.9390 -6.2681 -0.8002 13.8599 -4.2214 -39.7507 23.7561 -0.0000 0.0001 94.4702 55.9681 71.6577 8.4136 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.5615 19.7038 -3.8773 23.7887 54.4757 -18.9004 -0.0000 -0.0000 -19.7783 -4.1494 -19.2590 13.1626 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.1135 1.8760 -48.2191 -4.1755 0.0000 -0.0000 20.6994 -13.9105 43.3439 -29.7490 0.0000 -0.0000 3.1815 -4.2654 19.5678 -6.5223 0.0000 -0.0000 -0.0204 -5.0878 -21.1310 -4.7853 0.0000 -0.0000 - 0.5780 -2.1677 23.6278 -0.1238 -1.3881 177.3782 -2.6688 -5.4151 0.5830 -1.0813 -3.2843 -0.2449 8.9550 2.3243 12.0187 0.6673 7.8946 -0.8166 -9.5701 -0.0553 -1.2101 2.5247 -0.2629 -10.9666 -6.4511 -0.7268 13.8385 -5.3409 -41.4020 22.9650 -0.0000 0.0001 94.8305 49.7494 71.0841 10.8447 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.5792 19.6775 -3.9659 23.8280 54.3241 -18.9930 -0.0000 -0.0000 -20.0411 -3.9922 -19.3002 13.1099 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.1117 1.8581 -48.2844 -4.1463 0.0000 -0.0000 20.6751 -13.9035 43.3100 -29.7533 0.0000 -0.0000 3.1637 -4.2872 19.5464 -6.5449 0.0000 -0.0000 0.0110 -5.0983 -21.2110 -4.7957 0.0000 -0.0000 - 0.5794 -2.1763 23.6278 -0.1084 -1.4051 177.4848 -2.6589 -5.3517 0.5875 -1.0829 -3.2538 -0.2416 8.9917 2.3140 11.9447 0.6716 7.8258 -0.8105 -9.5972 -0.0704 -1.2263 2.4708 -0.2812 -10.9878 -6.6559 -0.6050 13.8229 -6.5679 -43.1233 22.0915 -0.0000 0.0001 95.2488 43.1609 70.3413 13.2467 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.6083 19.6577 -4.0737 23.8995 54.1602 -19.1063 -0.0000 -0.0000 -20.3177 -3.8291 -19.3345 13.0447 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.1108 1.8430 -48.3558 -4.1157 0.0000 -0.0000 20.6517 -13.8972 43.2756 -29.7552 0.0000 -0.0000 3.1441 -4.3073 19.5234 -6.5641 0.0000 -0.0000 0.0425 -5.1080 -21.2954 -4.8078 0.0000 -0.0000 - 0.5803 -2.1850 23.6279 -0.0920 -1.4208 177.5939 -2.6500 -5.2925 0.5902 -1.0852 -3.2243 -0.2381 9.0335 2.3001 11.8667 0.6780 7.7559 -0.8053 -9.6263 -0.0678 -1.2325 2.4158 -0.2958 -11.0067 -6.8764 -0.4454 13.8088 -7.9224 -44.8785 21.1198 -0.0000 0.0001 95.7178 36.7471 69.4384 15.1380 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.6488 19.6458 -4.1993 24.0237 53.9768 -19.2617 -0.0000 -0.0000 -20.5973 -3.6666 -19.3607 12.9723 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.1106 1.8301 -48.4302 -4.0849 0.0000 -0.0000 20.6303 -13.8921 43.2407 -29.7545 0.0000 -0.0000 3.1229 -4.3259 19.5003 -6.5791 0.0000 -0.0000 0.0731 -5.1168 -21.3825 -4.8213 0.0000 -0.0000 - 0.5809 -2.1937 23.6281 -0.0748 -1.4350 177.7016 -2.6412 -5.2381 0.5915 -1.0874 -3.1965 -0.2347 9.0767 2.2838 11.7919 0.6859 7.6841 -0.8010 -9.6547 -0.0453 -1.2290 2.3628 -0.3088 -11.0266 -7.1065 -0.2580 13.7963 -9.4201 -46.6269 20.0324 -0.0000 0.0001 96.2315 31.0321 68.4161 16.0531 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.6972 19.6414 -4.3386 24.2142 53.7729 -19.4748 -0.0000 -0.0000 -20.8673 -3.5056 -19.3776 12.8943 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.1109 1.8199 -48.5052 -4.0552 0.0000 -0.0000 20.6124 -13.8879 43.2072 -29.7515 0.0000 -0.0000 3.1003 -4.3425 19.4784 -6.5893 0.0000 -0.0000 0.1022 -5.1246 -21.4697 -4.8357 0.0000 -0.0000 - 0.5810 -2.2024 23.6284 -0.0573 -1.4469 177.8042 -2.6305 -5.1907 0.5933 -1.0889 -3.1724 -0.2324 9.1170 2.2677 11.7254 0.6945 7.6167 -0.7969 -9.6798 -0.0081 -1.2199 2.3140 -0.3186 -11.0479 -7.3416 -0.0611 13.7725 -11.0562 -48.3257 18.8395 -0.0000 0.0001 96.7620 26.2211 67.3187 15.9035 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.7513 19.6412 -4.4864 24.4846 53.5444 -19.7600 -0.0000 -0.0000 -21.1197 -3.3511 -19.3870 12.8199 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.1108 1.8129 -48.5760 -4.0269 0.0000 -0.0000 20.5984 -13.8854 43.1741 -29.7463 0.0000 -0.0000 3.0767 -4.3562 19.4598 -6.5942 0.0000 -0.0000 0.1290 -5.1314 -21.5555 -4.8501 0.0000 -0.0000 - 0.5807 -2.2110 23.6287 -0.0398 -1.4570 177.8986 -2.6177 -5.1493 0.5950 -1.0895 -3.1514 -0.2300 9.1518 2.2519 11.6694 0.7038 7.5496 -0.7918 -9.7003 0.0451 -1.2061 2.2722 -0.3274 -11.0709 -7.5723 0.1361 13.7373 -12.8143 -49.9227 17.5528 -0.0000 0.0001 97.2889 22.5930 66.2008 14.5271 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.8056 19.6410 -4.6365 24.8338 53.3011 -20.1216 -0.0000 -0.0000 -21.3416 -3.2025 -19.3891 12.7468 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.1102 1.8086 -48.6411 -4.0012 0.0000 -0.0000 20.5891 -13.8839 43.1433 -29.7395 0.0000 -0.0000 3.0527 -4.3673 19.4450 -6.5945 0.0000 -0.0000 0.1532 -5.1374 -21.6369 -4.8639 0.0000 -0.0000 - 0.5799 -2.2195 23.6290 -0.0225 -1.4650 177.9819 -2.6041 -5.1141 0.5971 -1.0887 -3.1341 -0.2279 9.1805 2.2372 11.6256 0.7113 7.4857 -0.7871 -9.7116 0.1094 -1.1890 2.2384 -0.3347 -11.0932 -7.7930 0.3214 13.6921 -14.6505 -51.3687 16.2033 -0.0000 0.0001 97.7727 20.0790 65.0871 12.1905 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.8607 19.6434 -4.7855 25.2498 53.0408 -20.5465 -0.0000 -0.0000 -21.5342 -3.0653 -19.3874 12.6839 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.1086 1.8070 -48.6993 -3.9789 0.0000 -0.0000 20.5853 -13.8828 43.1166 -29.7314 0.0000 -0.0000 3.0289 -4.3751 19.4345 -6.5909 0.0000 -0.0000 0.1747 -5.1428 -21.7116 -4.8763 0.0000 -0.0000 - 0.5785 -2.2279 23.6294 -0.0057 -1.4712 178.0524 -2.5898 -5.0850 0.5990 -1.0875 -3.1199 -0.2252 9.2027 2.2239 11.5900 0.7175 7.4252 -0.7804 -9.7138 0.1792 -1.1710 2.2137 -0.3401 -11.1111 -7.9966 0.4873 13.6344 -16.4787 -52.6147 14.8637 -0.0000 0.0001 98.1717 18.5502 64.0043 9.2301 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.9103 19.6422 -4.9264 25.7197 52.7755 -21.0250 -0.0000 -0.0000 -21.6934 -2.9396 -19.3831 12.6305 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.1060 1.8080 -48.7489 -3.9604 0.0000 -0.0000 20.5871 -13.8819 43.0942 -29.7225 0.0000 -0.0000 3.0058 -4.3799 19.4282 -6.5839 0.0000 -0.0000 0.1929 -5.1478 -21.7780 -4.8865 0.0000 -0.0000 - 0.5765 -2.2362 23.6298 0.0109 -1.4754 178.1091 -2.5761 -5.0604 0.6002 -1.0875 -3.1076 -0.2203 9.2198 2.2129 11.5563 0.7219 7.3657 -0.7711 -9.7053 0.2505 -1.1518 2.1978 -0.3431 -11.1201 -8.1826 0.6322 13.5764 -18.1831 -53.6187 13.6117 -0.0000 0.0001 98.4561 17.7926 62.9860 6.0712 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.9531 19.6383 -5.0550 26.2193 52.5127 -21.5340 -0.0000 -0.0000 -21.8223 -2.8277 -19.3775 12.5878 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 2.1025 1.8117 -48.7908 -3.9461 0.0000 -0.0000 20.5950 -13.8804 43.0779 -29.7133 0.0000 -0.0000 2.9839 -4.3812 19.4252 -6.5733 0.0000 -0.0000 0.2074 -5.1529 -21.8340 -4.8939 0.0000 -0.0000 - 0.5738 -2.2444 23.6302 0.0266 -1.4776 178.1511 -2.5660 -5.0388 0.6034 -1.0873 -3.0976 -0.2181 9.2323 2.2004 11.5272 0.7279 7.3154 -0.7639 -9.6895 0.3126 -1.1357 2.1916 -0.3424 -11.1139 -8.3379 0.7460 13.5087 -19.6037 -54.3392 12.5982 -0.0000 0.0001 98.5991 17.6264 62.0938 3.0531 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.9838 19.6214 -5.1669 26.7287 52.2690 -22.0557 -0.0000 -0.0000 -21.9233 -2.7276 -19.3740 12.5529 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.0972 1.8189 -48.8233 -3.9347 0.0000 -0.0000 20.6073 -13.8780 43.0671 -29.7039 0.0000 -0.0000 2.9642 -4.3783 19.4263 -6.5623 0.0000 -0.0000 0.2195 -5.1581 -21.8793 -4.8983 0.0000 -0.0000 - 0.5704 -2.2523 23.6305 0.0413 -1.4786 178.1791 -2.5633 -5.0203 0.6031 -1.0870 -3.0899 -0.2193 9.2454 2.1867 11.5006 0.7325 7.2749 -0.7544 -9.6652 0.3621 -1.1229 2.1933 -0.3364 -11.0900 -8.4628 0.8305 13.4370 -20.5906 -54.7536 11.9346 -0.0000 0.0001 98.5934 17.8481 61.4026 0.5190 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.0112 19.5964 -5.2654 27.2158 52.0469 -22.5633 -0.0000 -0.0000 -22.0052 -2.6452 -19.3734 12.5259 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.0904 1.8287 -48.8491 -3.9263 0.0000 -0.0000 20.6247 -13.8739 43.0631 -29.6949 0.0000 -0.0000 2.9472 -4.3718 19.4301 -6.5528 0.0000 -0.0000 0.2298 -5.1638 -21.9135 -4.8997 0.0000 -0.0000 - 0.5661 -2.2601 23.6308 0.0560 -1.4741 178.1943 -2.5661 -5.0007 0.6037 -1.0925 -3.0800 -0.2143 9.2628 2.1717 11.4552 0.7387 7.2381 -0.7460 -9.6360 0.3959 -1.1092 2.2021 -0.3258 -11.0448 -8.5525 0.8923 13.3848 -21.0489 -54.8438 11.6796 -0.0000 0.0001 98.4624 18.4204 60.9754 -1.4360 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 1.0221 19.5633 -5.3398 27.6665 51.8576 -23.0346 -0.0000 -0.0000 -22.0756 -2.5685 -19.3746 12.5052 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.0827 1.8465 -48.8687 -3.9199 0.0000 -0.0000 20.6463 -13.8694 43.0658 -29.6872 0.0000 -0.0000 2.9312 -4.3576 19.4347 -6.5389 0.0000 -0.0000 0.2362 -5.1705 -21.9362 -4.8984 0.0000 -0.0000 - 0.5609 -2.2676 23.6310 0.0696 -1.4679 178.1984 -2.5802 -4.9811 0.6024 -1.0991 -3.0698 -0.2136 9.2850 2.1528 11.4044 0.7479 7.2099 -0.7400 -9.6049 0.4118 -1.0969 2.2179 -0.3097 -10.9773 -8.6024 0.9319 13.3407 -20.9044 -54.5994 11.8980 -0.0000 0.0001 98.2139 19.2782 60.8591 -2.7066 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 1.0261 19.5220 -5.3982 28.0538 51.7079 -23.4513 -0.0000 -0.0000 -22.1380 -2.5042 -19.3796 12.4809 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.0737 1.8680 -48.8845 -3.9153 0.0000 -0.0000 20.6713 -13.8627 43.0749 -29.6802 0.0000 -0.0000 2.9184 -4.3390 19.4401 -6.5281 0.0000 -0.0000 0.2420 -5.1776 -21.9488 -4.8948 0.0000 -0.0000 - 0.5549 -2.2748 23.6311 0.0825 -1.4580 178.1934 -2.6058 -4.9601 0.5990 -1.1092 -3.0576 -0.2127 9.3163 2.1292 11.3403 0.7604 7.1901 -0.7362 -9.5740 0.4100 -1.0848 2.2386 -0.2906 -10.8886 -8.6060 0.9531 13.3106 -20.1791 -54.0133 12.5581 -0.0000 0.0001 97.8695 20.4048 61.0573 -3.2702 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.0234 19.4772 -5.4406 28.3701 51.5956 -23.8005 -0.0000 -0.0000 -22.2041 -2.4468 -19.3871 12.4608 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.0639 1.8959 -48.8969 -3.9117 0.0000 -0.0000 20.6992 -13.8553 43.0892 -29.6746 0.0000 -0.0000 2.9077 -4.3140 19.4452 -6.5181 0.0000 -0.0000 0.2468 -5.1851 -21.9524 -4.8898 0.0000 -0.0000 - 0.5480 -2.2816 23.6312 0.0949 -1.4438 178.1812 -2.6431 -4.9367 0.5928 -1.1227 -3.0420 -0.2113 9.3579 2.0996 11.2629 0.7771 7.1773 -0.7340 -9.5473 0.3897 -1.0719 2.2654 -0.2641 -10.7822 -8.5602 0.9575 13.2926 -18.9551 -53.0829 13.5791 -0.0000 0.0001 97.4444 21.7400 61.5372 -3.0803 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.0152 19.4298 -5.4680 28.6073 51.5255 -24.0810 -0.0000 -0.0000 -22.2661 -2.3947 -19.3988 12.4218 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.0536 1.9307 -48.9074 -3.9085 0.0000 -0.0000 20.7294 -13.8474 43.1082 -29.6703 0.0000 -0.0000 2.8992 -4.2823 19.4501 -6.5087 0.0000 -0.0000 0.2506 -5.1928 -21.9489 -4.8837 0.0000 -0.0000 - 0.5404 -2.2879 23.6313 0.1067 -1.4288 178.1662 -2.6919 -4.9167 0.5880 -1.1374 -3.0284 -0.2139 9.4105 2.0753 11.1736 0.7935 7.1714 -0.7380 -9.5221 0.3542 -1.0591 2.2928 -0.2378 -10.6604 -8.4617 0.9394 13.2832 -17.3611 -51.8179 14.8430 -0.0000 0.0001 96.9580 23.2694 62.2314 -2.1801 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 1.0034 19.3969 -5.4827 28.7782 51.4645 -24.2811 -0.0000 -0.0000 -22.3564 -2.3521 -19.4127 12.4063 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.0443 1.9680 -48.9186 -3.9074 0.0000 -0.0000 20.7625 -13.8392 43.1297 -29.6666 0.0000 -0.0000 2.8927 -4.2476 19.4535 -6.5008 0.0000 -0.0000 0.2531 -5.2003 -21.9414 -4.8771 0.0000 -0.0000 - 0.5323 -2.2937 23.6312 0.1182 -1.4121 178.1484 -2.7494 -4.8982 0.5775 -1.1559 -3.0140 -0.2191 9.4703 2.0574 11.0809 0.8152 7.1630 -0.7427 -9.5041 0.3104 -1.0445 2.3246 -0.2116 -10.5322 -8.2989 0.9074 13.2931 -15.5866 -50.2368 16.1705 -0.0000 0.0001 96.4492 24.9376 63.0366 -0.6136 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.9914 19.3667 -5.4896 28.8746 51.4385 -24.4189 -0.0000 -0.0000 -22.4422 -2.3072 -19.4267 12.3693 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.0364 2.0080 -48.9309 -3.9088 0.0000 -0.0000 20.7985 -13.8307 43.1546 -29.6638 0.0000 -0.0000 2.8882 -4.2096 19.4568 -6.4938 0.0000 -0.0000 0.2544 -5.2070 -21.9311 -4.8706 0.0000 -0.0000 - 0.5235 -2.2989 23.6312 0.1301 -1.3903 178.1292 -2.8119 -4.8772 0.5697 -1.1749 -2.9973 -0.2197 9.5364 2.0290 10.9775 0.8394 7.1699 -0.7497 -9.4942 0.2549 -1.0324 2.3590 -0.1852 -10.4022 -8.0585 0.8401 13.2937 -13.7520 -48.3663 17.4910 -0.0000 0.0001 95.9361 26.6639 63.8650 1.5381 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9798 19.3493 -5.4893 28.9170 51.4198 -24.5008 -0.0000 -0.0000 -22.5377 -2.2607 -19.4416 12.3348 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0299 2.0559 -48.9402 -3.9084 0.0000 -0.0000 20.8330 -13.8252 43.1775 -29.6630 0.0000 -0.0000 2.8860 -4.1647 19.4598 -6.4868 0.0000 -0.0000 0.2558 -5.2127 -21.9195 -4.8650 0.0000 -0.0000 - 0.5144 -2.3033 23.6312 0.1424 -1.3679 178.1115 -2.8787 -4.8595 0.5592 -1.1942 -2.9820 -0.2230 9.6061 2.0116 10.8780 0.8627 7.1727 -0.7586 -9.4887 0.1994 -1.0194 2.3953 -0.1634 -10.2785 -7.7312 0.7423 13.3118 -12.0018 -46.2496 18.6564 -0.0000 0.0001 95.4818 28.3984 64.6301 4.1101 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.9722 19.3520 -5.4849 28.9140 51.4006 -24.5374 -0.0000 -0.0000 -22.6358 -2.2154 -19.4546 12.2967 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.0263 2.1047 -48.9510 -3.9101 0.0000 -0.0000 20.8686 -13.8209 43.2005 -29.6629 0.0000 -0.0000 2.8861 -4.1182 19.4631 -6.4806 0.0000 -0.0000 0.2561 -5.2169 -21.9096 -4.8600 0.0000 -0.0000 - 0.5051 -2.3071 23.6312 0.1557 -1.3438 178.0951 -2.9450 -4.8440 0.5486 -1.2128 -2.9686 -0.2261 9.6749 2.0002 10.7846 0.8852 7.1770 -0.7683 -9.4877 0.1452 -1.0090 2.4333 -0.1475 -10.1666 -7.3092 0.6050 13.3390 -10.3884 -43.9336 19.6332 -0.0000 0.0001 95.1208 30.0056 65.2989 7.0021 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.9687 19.3747 -5.4782 28.8826 51.3730 -24.5450 -0.0000 -0.0000 -22.7316 -2.1673 -19.4642 12.2587 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.0259 2.1555 -48.9612 -3.9126 0.0000 -0.0000 20.9036 -13.8191 43.2219 -29.6642 0.0000 -0.0000 2.8890 -4.0694 19.4673 -6.4749 0.0000 -0.0000 0.2555 -5.2195 -21.9019 -4.8557 0.0000 -0.0000 - 0.4958 -2.3102 23.6311 0.1706 -1.3189 178.0806 -3.0078 -4.8307 0.5390 -1.2292 -2.9577 -0.2300 9.7391 1.9967 10.7015 0.9041 7.1813 -0.7769 -9.4879 0.0949 -1.0023 2.4726 -0.1392 -10.0709 -6.7817 0.4169 13.3771 -8.9264 -41.4525 20.4164 -0.0000 0.0001 94.8763 31.3415 65.8822 10.1441 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9713 19.4197 -5.4699 28.8368 51.3281 -24.5387 -0.0000 -0.0000 -22.8202 -2.1276 -19.4702 12.2233 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.0296 2.2070 -48.9700 -3.9155 0.0000 -0.0000 20.9369 -13.8200 43.2409 -29.6663 0.0000 -0.0000 2.8955 -4.0196 19.4727 -6.4697 0.0000 -0.0000 0.2541 -5.2204 -21.8971 -4.8515 0.0000 -0.0000 - 0.4866 -2.3125 23.6311 0.1871 -1.2950 178.0675 -3.0646 -4.8228 0.5293 -1.2434 -2.9499 -0.2330 9.7949 2.0047 10.6356 0.9207 7.1826 -0.7860 -9.4894 0.0529 -1.0003 2.5132 -0.1393 -9.9964 -6.1634 0.1892 13.4255 -7.5808 -38.8715 21.0222 -0.0000 0.0001 94.7473 32.2103 66.4267 13.5865 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.9771 19.4841 -5.4624 28.7862 51.2680 -24.5271 -0.0000 -0.0000 -22.8956 -2.0855 -19.4668 12.1918 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.0374 2.2564 -48.9788 -3.9200 0.0000 -0.0000 20.9692 -13.8222 43.2597 -29.6701 0.0000 -0.0000 2.9055 -3.9711 19.4800 -6.4652 0.0000 -0.0000 0.2509 -5.2198 -21.8951 -4.8472 0.0000 -0.0000 - 0.4777 -2.3142 23.6310 0.2086 -1.2705 178.0557 -3.1114 -4.8139 0.5211 -1.2545 -2.9442 -0.2350 9.8418 2.0168 10.5869 0.9307 7.1820 -0.7940 -9.4863 0.0208 -1.0028 2.5540 -0.1495 -9.9437 -5.4427 -0.0926 13.4853 -6.3214 -36.2007 21.4912 -0.0000 0.0001 94.7091 32.4343 66.9934 17.4213 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.9870 19.5710 -5.4536 28.7400 51.1879 -24.5186 -0.0000 -0.0000 -22.9549 -2.0518 -19.4559 12.1654 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.0522 2.3061 -48.9853 -3.9236 0.0000 -0.0000 20.9978 -13.8270 43.2765 -29.6755 0.0000 -0.0000 2.9227 -3.9222 19.4889 -6.4614 0.0000 -0.0000 0.2468 -5.2179 -21.8956 -4.8426 0.0000 -0.0000 - 0.4694 -2.3149 23.6309 0.2504 -1.2504 178.0436 -3.1272 -4.8148 0.5165 -1.2629 -2.9408 -0.2375 9.8705 2.0438 10.5547 0.9366 7.1800 -0.7947 -9.4782 -0.0072 -1.0156 2.5959 -0.1671 -9.9123 -4.6490 -0.4187 13.5503 -5.0904 -33.5029 21.8531 -0.0000 0.0001 94.7252 31.8466 67.6261 21.8223 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0004 19.6635 -5.4483 28.7056 51.1001 -24.5230 -0.0000 -0.0000 -22.9943 -2.0251 -19.4351 12.1456 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.0916 2.3490 -48.9904 -3.9312 0.0000 -0.0000 21.0257 -13.8326 43.2941 -29.6814 0.0000 -0.0000 2.9653 -3.8777 19.4991 -6.4617 0.0000 -0.0000 0.2414 -5.2143 -21.8959 -4.8364 0.0000 -0.0000 - 0.4614 -2.3155 23.6309 0.2759 -1.2267 178.0305 -3.1559 -4.8075 0.5126 -1.2685 -2.9454 -0.2384 9.8902 2.0714 10.5457 0.9395 7.1835 -0.7995 -9.4645 -0.0311 -1.0345 2.6389 -0.1926 -9.9000 -3.7767 -0.8008 13.6290 -3.8741 -30.7850 22.1322 -0.0000 0.0001 94.7621 30.4200 68.3464 26.8449 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 1.0205 19.7701 -5.4448 28.6733 50.9989 -24.5328 -0.0000 -0.0000 -23.0149 -2.0125 -19.4041 12.1328 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.1127 2.3959 -48.9923 -3.9323 0.0000 -0.0000 21.0470 -13.8394 43.3105 -29.6907 0.0000 -0.0000 2.9892 -3.8317 19.5103 -6.4567 0.0000 -0.0000 0.2335 -5.2115 -21.8967 -4.8294 0.0000 -0.0000 - 0.4542 -2.3153 23.6308 0.3189 -1.2098 178.0160 -3.1592 -4.8094 0.5113 -1.2708 -2.9498 -0.2391 9.8942 2.1117 10.5502 0.9369 7.1807 -0.7944 -9.4428 -0.0488 -1.0624 2.6817 -0.2258 -9.9056 -2.8554 -1.2229 13.6966 -2.6285 -28.1052 22.3792 -0.0000 0.0001 94.7742 28.2266 69.1518 32.4822 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 1.0399 19.8757 -5.4395 28.6596 50.9003 -24.5651 -0.0000 -0.0000 -23.0110 -2.0140 -19.3604 12.1230 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.1548 2.4331 -48.9950 -3.9369 0.0000 -0.0000 21.0677 -13.8443 43.3308 -29.7002 0.0000 -0.0000 3.0352 -3.7934 19.5217 -6.4551 0.0000 -0.0000 0.2233 -5.2080 -21.8948 -4.8200 0.0000 -0.0000 - 0.4476 -2.3151 23.6307 0.3463 -1.1946 178.0004 -3.1766 -4.8105 0.5102 -1.2707 -2.9561 -0.2375 9.8883 2.1552 10.5707 0.9322 7.1760 -0.7910 -9.4114 -0.0627 -1.0934 2.7235 -0.2656 -9.9255 -1.9093 -1.6768 13.7826 -1.3588 -25.5170 22.5571 -0.0000 0.0001 94.7615 25.5241 69.9984 38.5376 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.0617 19.9882 -5.4398 28.6330 50.8062 -24.5806 -0.0000 -0.0000 -22.9950 -2.0297 -19.3013 12.1188 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.1796 2.4672 -48.9975 -3.9373 0.0000 -0.0000 21.0839 -13.8469 43.3523 -29.7115 0.0000 -0.0000 3.0637 -3.7597 19.5324 -6.4488 0.0000 -0.0000 0.2094 -5.2056 -21.8914 -4.8087 0.0000 -0.0000 - 0.4417 -2.3144 23.6306 0.3840 -1.1810 177.9829 -3.1804 -4.8109 0.5105 -1.2700 -2.9637 -0.2369 9.8739 2.2031 10.6026 0.9249 7.1704 -0.7824 -9.3738 -0.0748 -1.1284 2.7662 -0.3099 -9.9568 -0.9617 -2.1534 13.8646 -0.0605 -23.0713 22.6963 -0.0000 0.0001 94.7038 22.6801 70.8541 44.6619 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 1.0844 20.0904 -5.4405 28.6084 50.7314 -24.6034 -0.0000 -0.0000 -22.9622 -2.0620 -19.2277 12.1149 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.2157 2.4987 -48.9998 -3.9365 0.0000 -0.0000 21.0972 -13.8488 43.3767 -29.7239 0.0000 -0.0000 3.1040 -3.7288 19.5419 -6.4419 0.0000 -0.0000 0.1936 -5.2041 -21.8842 -4.7957 0.0000 -0.0000 - 0.4365 -2.3135 23.6306 0.4299 -1.1699 177.9644 -3.1740 -4.8095 0.5118 -1.2695 -2.9714 -0.2354 9.8524 2.2527 10.6426 0.9161 7.1605 -0.7726 -9.3290 -0.0824 -1.1635 2.8077 -0.3582 -9.9965 -0.0391 -2.6356 13.9458 1.2516 -20.8359 22.7811 -0.0000 0.0001 94.6054 20.1473 71.6679 50.3864 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 1.1089 20.1868 -5.4418 28.5783 50.6742 -24.6210 -0.0000 -0.0000 -22.9207 -2.1121 -19.1389 12.1116 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.2604 2.5266 -49.0023 -3.9341 0.0000 -0.0000 21.1076 -13.8497 43.4028 -29.7369 0.0000 -0.0000 3.1534 -3.7021 19.5492 -6.4340 0.0000 -0.0000 0.1758 -5.2035 -21.8733 -4.7816 0.0000 -0.0000 - 0.4319 -2.3125 23.6305 0.4742 -1.1615 177.9457 -3.1705 -4.8074 0.5126 -1.2690 -2.9771 -0.2327 9.8279 2.3026 10.6857 0.9076 7.1451 -0.7609 -9.2807 -0.0851 -1.1959 2.8485 -0.4101 -10.0420 0.8390 -3.1142 14.0245 2.5505 -18.8656 22.7965 -0.0000 0.0001 94.4713 18.3840 72.3757 55.1892 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.1330 20.2763 -5.4422 28.5391 50.6374 -24.6291 -0.0000 -0.0000 -22.8748 -2.1778 -19.0341 12.1059 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.3032 2.5505 -49.0059 -3.9297 0.0000 -0.0000 21.1155 -13.8488 43.4302 -29.7503 0.0000 -0.0000 3.2003 -3.6803 19.5538 -6.4228 0.0000 -0.0000 0.1553 -5.2042 -21.8594 -4.7666 0.0000 -0.0000 - 0.4281 -2.3114 23.6304 0.5164 -1.1556 177.9303 -3.1728 -4.8048 0.5156 -1.2694 -2.9792 -0.2301 9.8057 2.3521 10.7251 0.8987 7.1239 -0.7501 -9.2315 -0.0835 -1.2226 2.8878 -0.4642 -10.0912 1.6517 -3.5806 14.1013 3.8096 -17.2151 22.7227 -0.0000 0.0001 94.3040 17.8095 72.8810 58.5665 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.1637 20.3576 -5.4430 28.4863 50.6188 -24.6264 -0.0000 -0.0000 -22.8307 -2.2607 -18.9160 12.0978 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.3438 2.5706 -49.0120 -3.9227 0.0000 -0.0000 21.1204 -13.8473 43.4565 -29.7631 0.0000 -0.0000 3.2435 -3.6635 19.5547 -6.4088 0.0000 -0.0000 0.1333 -5.2060 -21.8449 -4.7518 0.0000 -0.0000 - 0.4248 -2.3104 23.6304 0.5558 -1.1497 177.9151 -3.1778 -4.7968 0.5148 -1.2710 -2.9826 -0.2286 9.7794 2.4022 10.7666 0.8954 7.0941 -0.7375 -9.1856 -0.0700 -1.2412 2.9255 -0.5220 -10.1437 2.3879 -4.0189 14.1736 4.9958 -15.9309 22.5428 -0.0000 0.0001 94.1002 18.7169 73.0493 60.1309 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.1835 20.4382 -5.4385 28.4256 50.6189 -24.6018 -0.0000 -0.0000 -22.7942 -2.3508 -18.7802 12.0850 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.3805 2.5902 -49.0184 -3.9131 0.0000 -0.0000 21.1233 -13.8456 43.4826 -29.7763 0.0000 -0.0000 3.2815 -3.6488 19.5532 -6.3901 0.0000 -0.0000 0.1095 -5.2094 -21.8282 -4.7376 0.0000 -0.0000 - 0.4221 -2.3095 23.6304 0.5923 -1.1461 177.9070 -3.1893 -4.7885 0.5140 -1.2741 -2.9817 -0.2257 9.7568 2.4506 10.7992 0.8948 7.0547 -0.7276 -9.1446 -0.0438 -1.2502 2.9604 -0.5832 -10.1985 3.0347 -4.4245 14.2432 6.0831 -15.0453 22.2404 -0.0000 0.0001 93.8499 21.1345 72.7013 59.7765 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 1.2166 20.5184 -5.4405 28.3415 50.6290 -24.5533 -0.0000 -0.0000 -22.7722 -2.4525 -18.6323 12.0694 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.4145 2.6061 -49.0272 -3.9012 0.0000 -0.0000 21.1232 -13.8452 43.5038 -29.7883 0.0000 -0.0000 3.3143 -3.6388 19.5467 -6.3690 0.0000 -0.0000 0.0855 -5.2135 -21.8137 -4.7250 0.0000 -0.0000 - 0.4199 -2.3087 23.6304 0.6250 -1.1446 177.9058 -3.2082 -4.7790 0.5107 -1.2772 -2.9773 -0.2214 9.7378 2.4969 10.8218 0.8985 7.0043 -0.7196 -9.1129 -0.0012 -1.2471 2.9926 -0.6485 -10.2553 3.5978 -4.7948 14.3039 7.0361 -14.5609 21.8193 -0.0000 0.0001 93.5342 24.6716 71.6396 57.8258 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.2464 20.6016 -5.4383 28.2479 50.6469 -24.4838 -0.0000 -0.0000 -22.7656 -2.5578 -18.4711 12.0495 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.4447 2.6188 -49.0380 -3.8872 0.0000 -0.0000 21.1202 -13.8463 43.5200 -29.7992 0.0000 -0.0000 3.3408 -3.6331 19.5365 -6.3458 0.0000 -0.0000 0.0615 -5.2183 -21.8026 -4.7145 0.0000 -0.0000 - 0.4183 -2.3078 23.6305 0.6616 -1.1446 177.9124 -3.2242 -4.7662 0.5081 -1.2820 -2.9718 -0.2188 9.7211 2.5411 10.8335 0.9070 6.9420 -0.7136 -9.0912 0.0619 -1.2322 3.0214 -0.7181 -10.3139 4.0750 -5.1287 14.3554 7.8373 -14.4739 21.2767 -0.0000 0.0001 93.1408 28.6179 69.6771 54.9505 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.2779 20.6943 -5.4342 28.1476 50.6613 -24.3947 -0.0000 -0.0000 -22.7780 -2.6682 -18.2998 12.0279 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.4797 2.6287 -49.0497 -3.8717 0.0000 -0.0000 21.1141 -13.8502 43.5297 -29.8089 0.0000 -0.0000 3.3702 -3.6305 19.5246 -6.3232 0.0000 -0.0000 0.0392 -5.2231 -21.7974 -4.7070 0.0000 -0.0000 - 0.4172 -2.3070 23.6305 0.7087 -1.1453 177.9298 -3.2315 -4.7518 0.5050 -1.2878 -2.9688 -0.2165 9.7093 2.5955 10.8258 0.9166 6.8658 -0.7123 -9.0776 0.1385 -1.2014 3.0447 -0.7899 -10.3730 4.4945 -5.4354 14.4072 8.4515 -14.7473 20.6192 -0.0000 0.0001 92.6579 32.1777 66.6797 51.9126 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 1.3019 20.7915 -5.4191 28.0377 50.6777 -24.2777 -0.0000 -0.0000 -22.8140 -2.7726 -18.1113 12.0126 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5269 2.6373 -49.0650 -3.8551 0.0000 -0.0000 21.1057 -13.8584 43.5333 -29.8176 0.0000 -0.0000 3.4086 -3.6298 19.5063 -6.3007 0.0000 -0.0000 0.0192 -5.2274 -21.7966 -4.7063 0.0000 -0.0000 - 0.4167 -2.3067 23.6306 0.7210 -1.1480 177.9552 -3.2795 -4.7387 0.4978 -1.2912 -2.9466 -0.2167 9.7002 2.6177 10.8187 0.9414 6.7916 -0.7064 -9.0859 0.2434 -1.1747 3.0665 -0.8713 -10.4305 4.8481 -5.7366 14.4153 8.8987 -15.3152 19.8966 -0.0000 0.0001 92.0662 34.7998 62.6126 49.2188 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.3450 20.8972 -5.4242 27.9198 50.6861 -24.1593 -0.0000 -0.0000 -22.8506 -2.8841 -17.9350 11.9756 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.5360 2.6421 -49.0797 -3.8318 0.0000 -0.0000 21.0885 -13.8658 43.5275 -29.8262 0.0000 -0.0000 3.4068 -3.6346 19.4910 -6.2756 0.0000 -0.0000 -0.0010 -5.2336 -21.8074 -4.7008 0.0000 -0.0000 - 0.4165 -2.3059 23.6306 0.7841 -1.1521 177.9929 -3.2741 -4.7212 0.4935 -1.2979 -2.9371 -0.2193 9.6940 2.6625 10.7899 0.9631 6.7008 -0.7089 -9.0974 0.3583 -1.1337 3.0847 -0.9526 -10.4851 5.1670 -6.0187 14.4390 9.1694 -16.1611 19.0911 -0.0000 0.0001 91.3782 36.2563 57.4606 47.0529 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.3802 21.0029 -5.4174 27.8022 50.6951 -24.0202 -0.0000 -0.0000 -22.9081 -2.9918 -17.7492 11.9498 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.6019 2.6450 -49.0972 -3.8114 0.0000 -0.0000 21.0690 -13.8799 43.5151 -29.8335 0.0000 -0.0000 3.4605 -3.6393 19.4681 -6.2589 0.0000 -0.0000 -0.0156 -5.2379 -21.8215 -4.7030 0.0000 -0.0000 - 0.4168 -2.3061 23.6307 0.7997 -1.1553 178.0406 -3.3280 -4.7036 0.4815 -1.3019 -2.9211 -0.2166 9.7016 2.7008 10.7425 0.9896 6.6044 -0.7086 -9.1200 0.4898 -1.0876 3.0946 -1.0387 -10.5387 5.4620 -6.3104 14.4271 9.3060 -17.1851 18.3090 -0.0000 0.0001 90.5539 36.4805 51.3416 45.3613 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.4159 21.1270 -5.4155 27.6663 50.6889 -23.8502 -0.0000 -0.0000 -22.9758 -3.0945 -17.5619 11.9253 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 2.6153 2.6479 -49.1219 -3.7821 0.0000 -0.0000 21.0427 -13.8920 43.4991 -29.8426 0.0000 -0.0000 3.4570 -3.6478 19.4406 -6.2332 0.0000 -0.0000 -0.0320 -5.2445 -21.8427 -4.7064 0.0000 -0.0000 - 0.4176 -2.3061 23.6307 0.8404 -1.1604 178.0980 -3.3604 -4.6840 0.4711 -1.3074 -2.9089 -0.2166 9.7173 2.7448 10.6795 1.0170 6.5037 -0.7113 -9.1491 0.6274 -1.0401 3.1024 -1.1244 -10.5853 5.7462 -6.6129 14.4052 9.3485 -18.3397 17.5719 -0.0000 0.0001 89.5934 35.5602 44.4337 43.8979 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.4485 21.2445 -5.4150 27.5304 50.6880 -23.6698 -0.0000 -0.0000 -23.0473 -3.1963 -17.3780 11.9048 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.6567 2.6481 -49.1497 -3.7522 0.0000 -0.0000 21.0113 -13.9064 43.4780 -29.8519 0.0000 -0.0000 3.4807 -3.6582 19.4085 -6.2132 0.0000 -0.0000 -0.0451 -5.2506 -21.8684 -4.7125 0.0000 -0.0000 - 0.4188 -2.3057 23.6307 0.9241 -1.1680 178.1640 -3.3491 -4.6628 0.4595 -1.3168 -2.8953 -0.2112 9.7369 2.7893 10.5931 1.0450 6.3967 -0.7061 -9.1802 0.7713 -0.9955 3.1080 -1.2075 -10.6251 6.0299 -6.9292 14.3607 9.3611 -19.5629 16.9583 -0.0000 0.0001 88.4606 33.6145 37.0945 42.3506 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.4821 21.3531 -5.4258 27.3885 50.7003 -23.4745 -0.0000 -0.0000 -23.1184 -3.2963 -17.2002 11.8896 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.7462 2.6445 -49.1825 -3.7250 0.0000 -0.0000 20.9768 -13.9225 43.4552 -29.8618 0.0000 -0.0000 3.5524 -3.6705 19.3706 -6.2016 0.0000 -0.0000 -0.0546 -5.2556 -21.8954 -4.7203 0.0000 -0.0000 - 0.4203 -2.3065 23.6307 0.9531 -1.1717 178.2347 -3.4122 -4.6399 0.4475 -1.3228 -2.8732 -0.2176 9.7794 2.8111 10.5187 1.0798 6.3178 -0.7200 -9.2183 0.9013 -0.9531 3.1096 -1.2866 -10.6541 6.3279 -7.2962 14.3359 9.3898 -20.7843 16.4748 -0.0000 0.0001 87.1372 30.8695 29.8852 40.3666 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.5106 21.4514 -5.4364 27.2407 50.7129 -23.2708 -0.0000 -0.0000 -23.1804 -3.3978 -17.0293 11.8797 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 2.7732 2.6464 -49.2174 -3.6841 0.0000 -0.0000 20.9328 -13.9359 43.4276 -29.8759 0.0000 -0.0000 3.5590 -3.6827 19.3298 -6.1796 0.0000 -0.0000 -0.0664 -5.2639 -21.9263 -4.7284 0.0000 -0.0000 - 0.4223 -2.3066 23.6306 1.0407 -1.1784 178.3114 -3.4149 -4.6168 0.4328 -1.3351 -2.8505 -0.2101 9.8272 2.8379 10.4125 1.1126 6.2303 -0.7154 -9.2543 1.0320 -0.9193 3.1109 -1.3579 -10.6750 6.6398 -7.6885 14.2942 9.5278 -21.9694 16.2306 -0.0000 0.0001 85.5550 27.6772 23.5771 37.6650 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.5377 21.5290 -5.4655 27.0934 50.7532 -23.0610 -0.0000 -0.0000 -23.2307 -3.4988 -16.8667 11.8776 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8658 2.6431 -49.2606 -3.6499 0.0000 -0.0000 20.8890 -13.9492 43.4035 -29.8912 0.0000 -0.0000 3.6314 -3.6971 19.2801 -6.1670 0.0000 -0.0000 -0.0754 -5.2706 -21.9527 -4.7369 0.0000 -0.0000 - 0.4244 -2.3074 23.6306 1.1053 -1.1819 178.3899 -3.4551 -4.5923 0.4190 -1.3480 -2.8276 -0.2147 9.8969 2.8530 10.3215 1.1492 6.1720 -0.7263 -9.2933 1.1401 -0.8902 3.1110 -1.4181 -10.6852 6.9748 -8.1361 14.2832 9.8043 -23.0798 16.2020 -0.0000 0.0001 83.7013 24.5210 18.8095 34.1666 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.5576 21.5774 -5.4949 26.9588 50.8087 -22.8681 -0.0000 -0.0000 -23.2584 -3.6032 -16.7131 11.8823 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.9314 2.6445 -49.3047 -3.6073 0.0000 -0.0000 20.8393 -13.9609 43.3766 -29.9109 0.0000 -0.0000 3.6758 -3.7105 19.2260 -6.1487 0.0000 -0.0000 -0.0857 -5.2794 -21.9774 -4.7450 0.0000 -0.0000 - 0.4270 -2.3087 23.6306 1.1528 -1.1842 178.4688 -3.5204 -4.5656 0.4023 -1.3637 -2.8027 -0.2122 9.9798 2.8631 10.2205 1.1884 6.1160 -0.7282 -9.3337 1.2454 -0.8689 3.1105 -1.4699 -10.6872 7.3317 -8.6313 14.2784 10.2515 -24.0889 16.4248 -0.0000 0.0001 81.5553 21.8902 15.8716 29.9894 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.5671 21.6118 -5.5421 26.8234 50.8859 -22.6638 -0.0000 -0.0000 -23.2681 -3.7072 -16.5641 11.8948 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.9774 2.6464 -49.3558 -3.5622 0.0000 -0.0000 20.7889 -13.9683 43.3536 -29.9345 0.0000 -0.0000 3.6982 -3.7257 19.1632 -6.1236 0.0000 -0.0000 -0.0990 -5.2896 -21.9948 -4.7510 0.0000 -0.0000 - 0.4298 -2.3098 23.6305 1.2243 -1.1857 178.5477 -3.5683 -4.5382 0.3882 -1.3818 -2.7756 -0.2126 10.0780 2.8613 10.1282 1.2284 6.0721 -0.7345 -9.3739 1.3457 -0.8499 3.1116 -1.5083 -10.6843 7.6816 -9.1379 14.2839 10.8631 -25.0626 16.8748 -0.0000 0.0001 79.1324 20.1659 14.5527 25.3463 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.5767 21.6175 -5.6048 26.7021 50.9893 -22.4791 -0.0000 -0.0000 -23.2533 -3.8137 -16.4208 11.9168 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.0495 2.6490 -49.4086 -3.5180 0.0000 -0.0000 20.7386 -13.9761 43.3314 -29.9614 0.0000 -0.0000 3.7482 -3.7397 19.0968 -6.1031 0.0000 -0.0000 -0.1107 -5.2992 -22.0079 -4.7560 0.0000 -0.0000 - 0.4329 -2.3120 23.6305 1.2440 -1.1850 178.6235 -3.6737 -4.5159 0.3749 -1.4019 -2.7562 -0.2228 10.1859 2.8698 10.0462 1.2750 6.0434 -0.7338 -9.4204 1.4290 -0.8415 3.1119 -1.5320 -10.6736 8.0436 -9.7044 14.3011 11.5569 -25.9549 17.4859 -0.0000 0.0001 76.4806 19.4945 14.3524 20.4224 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 1.5765 21.5941 -5.6791 26.6005 51.1121 -22.3166 -0.0000 -0.0000 -23.2089 -3.9173 -16.2812 11.9436 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 3.0635 2.6540 -49.4617 -3.4686 0.0000 -0.0000 20.6883 -13.9801 43.3084 -29.9935 0.0000 -0.0000 3.7373 -3.7555 19.0235 -6.0705 0.0000 -0.0000 -0.1265 -5.3112 -22.0132 -4.7584 0.0000 -0.0000 - 0.4363 -2.3134 23.6305 1.3147 -1.1839 178.6990 -3.7213 -4.4941 0.3547 -1.4305 -2.7175 -0.2052 10.3034 2.8427 9.9538 1.3185 6.0211 -0.7290 -9.4644 1.5208 -0.8314 3.1142 -1.5426 -10.6608 8.3877 -10.2640 14.3208 12.2786 -26.8606 18.2112 -0.0000 0.0001 73.6422 19.8513 14.6795 15.3707 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.5691 21.5482 -5.7612 26.5371 51.2591 -22.1930 -0.0000 -0.0000 -23.1365 -4.0187 -16.1470 11.9791 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 3.1345 2.6573 -49.5192 -3.4284 0.0000 -0.0000 20.6444 -13.9865 43.2902 -30.0278 0.0000 -0.0000 3.7844 -3.7701 18.9394 -6.0453 0.0000 -0.0000 -0.1397 -5.3214 -22.0059 -4.7592 0.0000 -0.0000 - 0.4400 -2.3160 23.6305 1.3306 -1.1819 178.7691 -3.8288 -4.4739 0.3437 -1.4554 -2.7025 -0.2175 10.4258 2.8438 9.8940 1.3677 5.9983 -0.7265 -9.5194 1.6120 -0.8219 3.1166 -1.5400 -10.6457 8.6934 -10.8349 14.3366 12.9519 -27.8016 18.9745 -0.0000 0.0001 70.6727 21.0484 15.0219 10.3599 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.5478 21.4860 -5.8461 26.5081 51.4137 -22.1042 -0.0000 -0.0000 -23.0366 -4.1173 -16.0133 12.0167 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.1441 2.6617 -49.5710 -3.3833 0.0000 -0.0000 20.6013 -13.9911 43.2681 -30.0665 0.0000 -0.0000 3.7704 -3.7863 18.8577 -6.0143 0.0000 -0.0000 -0.1540 -5.3328 -21.9974 -4.7575 0.0000 -0.0000 - 0.4438 -2.3186 23.6304 1.3467 -1.1795 178.8377 -3.9289 -4.4565 0.3289 -1.4844 -2.6811 -0.2168 10.5520 2.8286 9.8351 1.4172 5.9795 -0.7196 -9.5795 1.7112 -0.8126 3.1187 -1.5251 -10.6277 8.9643 -11.4013 14.3399 13.4966 -28.8049 19.7089 -0.0000 0.0001 67.6289 22.7959 15.0379 5.5950 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.5192 21.4096 -5.9345 26.5191 51.5780 -22.0571 -0.0000 -0.0000 -22.9128 -4.2082 -15.8848 12.0604 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.1544 2.6650 -49.6235 -3.3426 0.0000 -0.0000 20.5637 -13.9973 43.2477 -30.1076 0.0000 -0.0000 3.7568 -3.8029 18.7685 -5.9842 0.0000 -0.0000 -0.1671 -5.3438 -21.9801 -4.7538 0.0000 -0.0000 - 0.4479 -2.3215 23.6303 1.3601 -1.1776 178.9039 -4.0217 -4.4428 0.3153 -1.5154 -2.6581 -0.2143 10.6746 2.8066 9.7837 1.4682 5.9596 -0.7105 -9.6454 1.8193 -0.8014 3.1194 -1.4991 -10.6060 9.1976 -11.9558 14.3306 13.8497 -29.8926 20.3443 -0.0000 0.0001 64.5652 24.7656 14.5836 1.3200 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 1.4845 21.3225 -6.0225 26.5668 51.7484 -22.0497 -0.0000 -0.0000 -22.7689 -4.2903 -15.7641 12.1074 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.1618 2.6664 -49.6722 -3.3055 0.0000 -0.0000 20.5307 -14.0060 43.2259 -30.1504 0.0000 -0.0000 3.7421 -3.8200 18.6778 -5.9586 0.0000 -0.0000 -0.1771 -5.3542 -21.9589 -4.7486 0.0000 -0.0000 - 0.4520 -2.3245 23.6302 1.3693 -1.1768 178.9685 -4.1075 -4.4319 0.3026 -1.5474 -2.6352 -0.2101 10.7920 2.7796 9.7377 1.5205 5.9370 -0.6994 -9.7198 1.9356 -0.7902 3.1187 -1.4628 -10.5782 9.3787 -12.4944 14.2980 13.9832 -31.0752 20.8314 -0.0000 0.0001 61.5266 26.6467 13.6911 -2.2388 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.4405 21.2283 -6.1043 26.6532 51.9207 -22.0817 -0.0000 -0.0000 -22.6095 -4.3616 -15.6534 12.1564 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.1647 2.6653 -49.7170 -3.2717 0.0000 -0.0000 20.5019 -14.0173 43.2028 -30.1942 0.0000 -0.0000 3.7247 -3.8380 18.5864 -5.9385 0.0000 -0.0000 -0.1835 -5.3641 -21.9354 -4.7421 0.0000 -0.0000 - 0.4563 -2.3277 23.6301 1.3724 -1.1782 179.0328 -4.1885 -4.4235 0.2897 -1.5798 -2.6117 -0.2028 10.9042 2.7472 9.6926 1.5731 5.9102 -0.6862 -9.8028 2.0584 -0.7801 3.1153 -1.4174 -10.5415 9.5009 -13.0150 14.2359 13.8865 -32.3435 21.1334 -0.0000 0.0001 58.5476 28.1969 12.5127 -4.9246 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 1.3860 21.1316 -6.1753 26.7758 52.0902 -22.1483 -0.0000 -0.0000 -22.4405 -4.4225 -15.5563 12.2069 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.1612 2.6608 -49.7582 -3.2404 0.0000 -0.0000 20.4758 -14.0310 43.1782 -30.2378 0.0000 -0.0000 3.7027 -3.8578 18.4944 -5.9241 0.0000 -0.0000 -0.1862 -5.3736 -21.9109 -4.7348 0.0000 -0.0000 - 0.4607 -2.3318 23.6299 1.3347 -1.1853 179.0988 -4.3058 -4.4253 0.2722 -1.6091 -2.5703 -0.1798 11.0160 2.6912 9.6331 1.6261 5.8831 -0.6693 -9.8945 2.1872 -0.7712 3.1064 -1.3686 -10.4940 9.5809 -13.5180 14.1495 13.5509 -33.6655 21.2272 -0.0000 0.0001 55.6511 29.2645 11.2369 -6.6802 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 1.3297 21.0435 -6.2403 26.9048 52.2490 -22.2215 -0.0000 -0.0000 -22.2717 -4.4724 -15.4730 12.2583 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.1134 2.6487 -49.7992 -3.2092 0.0000 -0.0000 20.4521 -14.0431 43.1527 -30.2808 0.0000 -0.0000 3.6361 -3.8845 18.4027 -5.9100 0.0000 -0.0000 -0.1883 -5.3840 -21.8891 -4.7264 0.0000 -0.0000 - 0.4649 -2.3360 23.6296 1.2959 -1.1916 179.1649 -4.4144 -4.4165 0.2621 -1.6368 -2.5551 -0.1801 11.1171 2.6621 9.5847 1.6804 5.8414 -0.6539 -9.9944 2.3171 -0.7648 3.0937 -1.3147 -10.4333 9.6056 -13.9902 14.0345 13.0216 -35.0230 21.1212 -0.0000 0.0001 52.8439 29.7850 10.0189 -7.5368 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.2677 20.9546 -6.2912 27.0478 52.4067 -22.3106 -0.0000 -0.0000 -22.1035 -4.5134 -15.4072 12.3063 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0630 2.6385 -49.8336 -3.1753 0.0000 -0.0000 20.4256 -14.0587 43.1239 -30.3231 0.0000 -0.0000 3.5707 -3.9084 18.3191 -5.9040 0.0000 -0.0000 -0.1848 -5.3945 -21.8754 -4.7189 0.0000 -0.0000 - 0.4689 -2.3403 23.6293 1.2540 -1.2011 179.2332 -4.5223 -4.4117 0.2501 -1.6618 -2.5301 -0.1722 11.2157 2.6240 9.5225 1.7347 5.7917 -0.6394 -10.1011 2.4479 -0.7598 3.0762 -1.2603 -10.3588 9.5751 -14.4226 13.8937 12.3558 -36.3794 20.8440 -0.0000 0.0001 50.1187 29.7571 8.9467 -7.5943 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.2042 20.8712 -6.3258 27.1972 52.5558 -22.4095 -0.0000 -0.0000 -21.9421 -4.5507 -15.3587 12.3526 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0091 2.6254 -49.8657 -3.1401 0.0000 -0.0000 20.3970 -14.0753 43.0938 -30.3631 0.0000 -0.0000 3.5040 -3.9339 18.2411 -5.9043 0.0000 -0.0000 -0.1786 -5.4054 -21.8692 -4.7123 0.0000 -0.0000 - 0.4727 -2.3442 23.6290 1.2445 -1.2101 179.3050 -4.5825 -4.3961 0.2440 -1.6886 -2.5150 -0.1750 11.2976 2.5924 9.4527 1.7908 5.7304 -0.6213 -10.2096 2.5752 -0.7602 3.0550 -1.2045 -10.2702 9.5016 -14.8166 13.7235 11.6384 -37.6728 20.4621 -0.0000 0.0000 47.4540 29.2153 8.0484 -6.9957 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 1.1335 20.7922 -6.3531 27.3310 52.7103 -22.4803 -0.0000 -0.0000 -21.7986 -4.5793 -15.3256 12.3972 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9899 2.6137 -49.8943 -3.1038 0.0000 -0.0000 20.3636 -14.0955 43.0610 -30.4007 0.0000 -0.0000 3.4751 -3.9562 18.1683 -5.9145 0.0000 -0.0000 -0.1672 -5.4159 -21.8705 -4.7080 0.0000 -0.0000 - 0.4764 -2.3488 23.6287 1.1894 -1.2267 179.3817 -4.7005 -4.3901 0.2293 -1.7092 -2.4784 -0.1606 11.3930 2.5354 9.3593 1.8470 5.6695 -0.6021 -10.3253 2.6985 -0.7646 3.0281 -1.1537 -10.1702 9.3966 -15.1654 13.5360 10.9573 -38.8634 20.0530 -0.0000 0.0000 44.8141 28.2265 7.3120 -5.9019 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.0728 20.7238 -6.3775 27.4305 52.8557 -22.5255 -0.0000 -0.0000 -21.6698 -4.6087 -15.3030 12.4352 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.9208 2.5944 -49.9273 -3.0620 0.0000 -0.0000 20.3260 -14.1096 43.0281 -30.4355 0.0000 -0.0000 3.3937 -3.9874 18.0990 -5.9185 0.0000 -0.0000 -0.1603 -5.4282 -21.8811 -4.7043 0.0000 -0.0000 - 0.4797 -2.3526 23.6284 1.1826 -1.2388 179.4631 -4.7596 -4.3664 0.2227 -1.7319 -2.4636 -0.1651 11.4755 2.4991 9.2652 1.9043 5.5937 -0.5848 -10.4404 2.8178 -0.7710 2.9991 -1.1070 -10.0629 9.2555 -15.4624 13.3309 10.4425 -39.9174 19.7108 -0.0000 0.0000 42.1754 26.8709 6.6955 -4.4848 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 1.0071 20.6630 -6.3922 27.5154 52.9988 -22.5432 -0.0000 -0.0000 -21.5643 -4.6402 -15.2878 12.4737 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.9037 2.5827 -49.9587 -3.0167 0.0000 -0.0000 20.2805 -14.1279 42.9929 -30.4681 0.0000 -0.0000 3.3668 -4.0103 18.0341 -5.9303 0.0000 -0.0000 -0.1493 -5.4402 -21.8993 -4.7044 0.0000 -0.0000 - 0.4827 -2.3562 23.6282 1.1652 -1.2550 179.5495 -4.8379 -4.3466 0.2103 -1.7510 -2.4335 -0.1583 11.5672 2.4444 9.1547 1.9611 5.5155 -0.5657 -10.5573 2.9342 -0.7801 2.9682 -1.0680 -9.9526 9.1026 -15.7103 13.1236 10.1809 -40.7990 19.5187 -0.0000 0.0000 39.5188 25.2304 6.1572 -2.9083 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.9494 20.6140 -6.4094 27.5633 53.1347 -22.5243 -0.0000 -0.0000 -21.4782 -4.6761 -15.2731 12.5074 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8754 2.5677 -49.9941 -2.9667 0.0000 -0.0000 20.2291 -14.1423 42.9568 -30.4981 0.0000 -0.0000 3.3260 -4.0379 17.9722 -5.9366 0.0000 -0.0000 -0.1432 -5.4528 -21.9256 -4.7062 0.0000 -0.0000 - 0.4855 -2.3597 23.6280 1.1341 -1.2729 179.6416 -4.9381 -4.3281 0.1939 -1.7667 -2.3937 -0.1436 11.6651 2.3757 9.0318 2.0195 5.4363 -0.5460 -10.6753 3.0496 -0.7895 2.9358 -1.0392 -9.8465 8.9556 -15.9090 12.9261 10.2484 -41.4939 19.5455 0.0000 0.0000 36.8431 23.3780 5.6552 -1.3189 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9016 20.5802 -6.4341 27.5699 53.2592 -22.4615 -0.0000 -0.0000 -21.4140 -4.7175 -15.2519 12.5378 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8322 2.5532 -50.0345 -2.9102 0.0000 -0.0000 20.1711 -14.1532 42.9190 -30.5260 0.0000 -0.0000 3.2665 -4.0675 17.9112 -5.9339 0.0000 -0.0000 -0.1432 -5.4663 -21.9591 -4.7098 0.0000 -0.0000 - 0.4877 -2.3623 23.6279 1.1389 -1.2836 179.7364 -4.9995 -4.2967 0.1849 -1.7823 -2.3787 -0.1544 11.7581 2.3402 8.9264 2.0769 5.3419 -0.5303 -10.7916 3.1653 -0.7959 2.9060 -1.0194 -9.7503 8.8124 -16.0531 12.7510 10.6827 -42.0249 19.8023 0.0000 0.0000 34.1827 21.3847 5.1316 0.1594 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.8547 20.5522 -6.4570 27.5636 53.3776 -22.3815 -0.0000 -0.0000 -21.3640 -4.7640 -15.2198 12.5635 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8273 2.5503 -50.0720 -2.8469 0.0000 -0.0000 20.1036 -14.1679 42.8762 -30.5534 0.0000 -0.0000 3.2447 -4.0879 17.8524 -5.9281 0.0000 -0.0000 -0.1449 -5.4794 -21.9966 -4.7169 0.0000 -0.0000 - 0.4897 -2.3643 23.6280 1.1454 -1.2955 179.8362 -5.0623 -4.2677 0.1707 -1.7948 -2.3546 -0.1547 11.8534 2.2881 8.8185 2.1327 5.2492 -0.5133 -10.9044 3.2870 -0.7997 2.8776 -1.0120 -9.6705 8.7025 -16.1526 12.6011 11.4688 -42.3900 20.2936 0.0000 0.0000 31.5763 19.2918 4.5385 1.4361 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.8204 20.5420 -6.4915 27.5287 53.4777 -22.2707 -0.0000 -0.0000 -21.3292 -4.8155 -15.1719 12.5854 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8258 2.5470 -50.1152 -2.7810 0.0000 -0.0000 20.0321 -14.1803 42.8319 -30.5794 0.0000 -0.0000 3.2218 -4.1106 17.7909 -5.9132 0.0000 -0.0000 -0.1534 -5.4917 -22.0366 -4.7253 0.0000 -0.0000 - 0.4915 -2.3657 23.6281 1.1545 -1.3063 179.9399 -5.1214 -4.2434 0.1536 -1.8051 -2.3275 -0.1496 11.9454 2.2363 8.7136 2.1861 5.1539 -0.4955 -11.0139 3.4150 -0.7979 2.8524 -1.0167 -9.6122 8.6317 -16.2083 12.4900 12.5250 -42.6373 20.9359 0.0000 0.0000 29.0950 17.1534 3.8126 2.4502 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.7970 20.5468 -6.5340 27.4786 53.5564 -22.1443 -0.0000 -0.0000 -21.3044 -4.8703 -15.1056 12.6046 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8281 2.5467 -50.1592 -2.7113 0.0000 -0.0000 19.9558 -14.1932 42.7821 -30.6050 0.0000 -0.0000 3.1980 -4.1330 17.7242 -5.8875 0.0000 -0.0000 -0.1691 -5.5034 -22.0755 -4.7347 0.0000 -0.0000 - 0.4930 -2.3664 23.6283 1.1666 -1.3142 -179.9543 -5.1739 -4.2197 0.1375 -1.8107 -2.3046 -0.1500 12.0303 2.1880 8.6271 2.2354 5.0595 -0.4811 -11.1188 3.5491 -0.7905 2.8330 -1.0323 -9.5772 8.6030 -16.2293 12.4159 13.7437 -42.8105 21.6324 0.0000 0.0000 26.8105 15.0218 2.9004 3.1716 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.7807 20.5686 -6.5818 27.4216 53.6102 -22.0069 -0.0000 -0.0000 -21.2859 -4.9250 -15.0227 12.6210 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.8350 2.5513 -50.2043 -2.6386 0.0000 -0.0000 19.8763 -14.2074 42.7287 -30.6311 0.0000 -0.0000 3.1751 -4.1529 17.6550 -5.8531 0.0000 -0.0000 -0.1902 -5.5139 -22.1143 -4.7449 0.0000 -0.0000 - 0.4944 -2.3664 23.6285 1.1816 -1.3199 -179.8462 -5.2143 -4.2016 0.1180 -1.8133 -2.2828 -0.1450 12.1045 2.1446 8.5507 2.2776 4.9687 -0.4660 -11.2177 3.6847 -0.7797 2.8194 -1.0570 -9.5652 8.6202 -16.2212 12.3691 15.0070 -42.9598 22.2972 0.0000 0.0000 24.7702 12.9457 1.7838 3.6071 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.7740 20.6021 -6.6314 27.3683 53.6368 -21.8757 -0.0000 -0.0000 -21.2669 -4.9784 -14.9272 12.6337 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8465 2.5593 -50.2477 -2.5641 0.0000 -0.0000 19.7943 -14.2243 42.6689 -30.6576 0.0000 -0.0000 3.1524 -4.1721 17.5768 -5.8084 0.0000 -0.0000 -0.2174 -5.5232 -22.1467 -4.7550 0.0000 -0.0000 - 0.4956 -2.3657 23.6288 1.1992 -1.3232 -179.7371 -5.2403 -4.1882 0.0981 -1.8119 -2.2642 -0.1409 12.1626 2.1082 8.4896 2.3109 4.8843 -0.4535 -11.3079 3.8176 -0.7647 2.8126 -1.0885 -9.5741 8.6769 -16.1911 12.3422 16.2004 -43.1350 22.8379 0.0000 0.0000 23.0081 10.9792 0.4704 3.7910 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.7762 20.6483 -6.6803 27.3161 53.6356 -21.7454 -0.0000 -0.0000 -21.2480 -5.0258 -14.8259 12.6473 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.8623 2.5706 -50.2886 -2.4889 0.0000 -0.0000 19.7112 -14.2449 42.6033 -30.6851 0.0000 -0.0000 3.1309 -4.1896 17.4919 -5.7567 0.0000 -0.0000 -0.2489 -5.5311 -22.1738 -4.7643 0.0000 -0.0000 - 0.4967 -2.3645 23.6290 1.2196 -1.3242 -179.6270 -5.2468 -4.1805 0.0774 -1.8068 -2.2490 -0.1358 12.2000 2.0801 8.4409 2.3333 4.8102 -0.4433 -11.3857 3.9414 -0.7493 2.8113 -1.1263 -9.5985 8.7731 -16.1497 12.3183 17.2402 -43.3639 23.2108 0.0000 0.0000 21.5240 9.1694 -1.0028 3.7792 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.7879 20.7016 -6.7233 27.2664 53.6087 -21.6226 -0.0000 -0.0000 -21.2224 -5.0658 -14.7266 12.6570 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.8828 2.5850 -50.3253 -2.4137 0.0000 -0.0000 19.6278 -14.2702 42.5314 -30.7133 0.0000 -0.0000 3.1112 -4.2056 17.3980 -5.6993 0.0000 -0.0000 -0.2838 -5.5378 -22.1931 -4.7723 0.0000 -0.0000 - 0.4978 -2.3628 23.6293 1.2441 -1.3230 -179.5169 -5.2309 -4.1756 0.0566 -1.7974 -2.2376 -0.1320 12.2140 2.0583 8.4038 2.3420 4.7492 -0.4366 -11.4486 4.0505 -0.7355 2.8156 -1.1677 -9.6320 8.8993 -16.1077 12.2811 18.0761 -43.6622 23.3928 0.0000 0.0000 20.2981 7.5612 -2.5811 3.6375 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.8080 20.7598 -6.7575 27.2116 53.5619 -21.4992 -0.0000 -0.0000 -21.1900 -5.0953 -14.6367 12.6637 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.9094 2.6015 -50.3582 -2.3399 0.0000 -0.0000 19.5453 -14.3001 42.4548 -30.7423 0.0000 -0.0000 3.0965 -4.2196 17.2988 -5.6402 0.0000 -0.0000 -0.3196 -5.5431 -22.2071 -4.7789 0.0000 -0.0000 - 0.4988 -2.3607 23.6295 1.2708 -1.3205 -179.4069 -5.1947 -4.1752 0.0373 -1.7835 -2.2301 -0.1307 12.2046 2.0450 8.3733 2.3363 4.7039 -0.4335 -11.4965 4.1389 -0.7267 2.8251 -1.2100 -9.6669 9.0409 -16.0740 12.2115 18.6902 -44.0371 23.3904 0.0000 0.0000 19.2926 6.2022 -4.2020 3.4316 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.8341 20.8209 -6.7768 27.1515 53.4949 -21.3748 -0.0000 -0.0000 -21.1516 -5.1166 -14.5633 12.6694 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.9400 2.6191 -50.3849 -2.2674 0.0000 -0.0000 19.4631 -14.3351 42.3723 -30.7716 0.0000 -0.0000 3.0852 -4.2326 17.1943 -5.5814 0.0000 -0.0000 -0.3557 -5.5472 -22.2157 -4.7837 0.0000 -0.0000 - 0.4997 -2.3579 23.6296 1.3251 -1.3151 -179.2971 -5.1077 -4.1744 0.0183 -1.7680 -2.2252 -0.1291 12.1669 2.0360 8.3414 2.3169 4.6727 -0.4315 -11.5282 4.2040 -0.7249 2.8405 -1.2505 -9.6955 9.1948 -16.0498 12.0999 19.0834 -44.4844 23.2273 0.0000 0.0000 18.4645 5.1297 -5.8008 3.2185 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.8701 20.8762 -6.7794 27.0769 53.4218 -21.2488 -0.0000 -0.0000 -21.1054 -5.1300 -14.5122 12.6722 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 3.0022 2.6383 -50.4062 -2.1993 0.0000 -0.0000 19.3824 -14.3766 42.2861 -30.8010 0.0000 -0.0000 3.1075 -4.2420 17.0856 -5.5298 0.0000 -0.0000 -0.3886 -5.5499 -22.2190 -4.7871 0.0000 -0.0000 - 0.5008 -2.3555 23.6297 1.3362 -1.3143 -179.1870 -5.0574 -4.1797 0.0022 -1.7433 -2.2201 -0.1343 12.1129 2.0283 8.3080 2.2853 4.6572 -0.4368 -11.5460 4.2496 -0.7281 2.8563 -1.2956 -9.7137 9.3410 -16.0567 11.9477 19.2537 -44.9900 22.8907 0.0000 0.0000 17.7853 4.3830 -7.3228 3.0374 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.9031 20.9429 -6.7655 26.9599 53.3355 -21.0759 -0.0000 -0.0000 -21.0600 -5.1353 -14.4799 12.6710 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.0186 2.6532 -50.4213 -2.1301 0.0000 -0.0000 19.3018 -14.4188 42.1930 -30.8304 0.0000 -0.0000 3.0831 -4.2560 16.9797 -5.4768 0.0000 -0.0000 -0.4227 -5.5530 -22.2263 -4.7880 0.0000 -0.0000 - 0.5018 -2.3530 23.6296 1.3486 -1.3110 -179.0750 -4.9915 -4.1820 -0.0174 -1.7176 -2.2164 -0.1356 12.0432 2.0232 8.2583 2.2410 4.6531 -0.4419 -11.5521 4.2716 -0.7413 2.8757 -1.3376 -9.7128 9.4775 -16.0946 11.7420 19.2543 -45.5287 22.4466 0.0000 0.0000 17.2101 3.9618 -8.7097 2.9167 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.9401 21.0070 -6.7314 26.8055 53.2495 -20.8778 -0.0000 -0.0000 -21.0108 -5.1371 -14.4690 12.6644 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.0374 2.6707 -50.4321 -2.0612 0.0000 -0.0000 19.2199 -14.4653 42.0953 -30.8599 0.0000 -0.0000 3.0613 -4.2671 16.8685 -5.4261 0.0000 -0.0000 -0.4549 -5.5566 -22.2300 -4.7877 0.0000 -0.0000 - 0.5027 -2.3504 23.6295 1.3616 -1.3071 -178.9618 -4.9164 -4.1800 -0.0364 -1.6896 -2.2119 -0.1381 11.9609 2.0151 8.1901 2.1865 4.6572 -0.4486 -11.5478 4.2766 -0.7611 2.8971 -1.3787 -9.6898 9.5963 -16.1641 11.4932 19.1102 -46.0907 21.9054 0.0000 0.0000 16.7168 3.8585 -9.9112 2.8646 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.9781 21.0740 -6.6802 26.6016 53.1666 -20.6341 -0.0000 -0.0000 -20.9667 -5.1406 -14.4752 12.6559 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 3.0580 2.6882 -50.4389 -1.9939 0.0000 -0.0000 19.1374 -14.5144 41.9939 -30.8894 0.0000 -0.0000 3.0433 -4.2766 16.7598 -5.3827 0.0000 -0.0000 -0.4836 -5.5603 -22.2371 -4.7867 0.0000 -0.0000 - 0.5035 -2.3473 23.6294 1.4046 -1.2983 -178.8472 -4.7972 -4.1689 -0.0577 -1.6657 -2.1990 -0.1285 11.8652 1.9902 8.0899 2.1252 4.6666 -0.4536 -11.5335 4.2713 -0.7858 2.9208 -1.4184 -9.6424 9.6878 -16.2582 11.2046 18.8628 -46.6686 21.2927 0.0000 0.0000 16.2867 4.0387 -10.8863 2.8754 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.0191 21.1430 -6.6145 26.3431 53.0949 -20.3425 -0.0000 -0.0000 -20.9288 -5.1482 -14.4934 12.6447 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.1122 2.7101 -50.4413 -1.9287 0.0000 -0.0000 19.0532 -14.5683 41.8894 -30.9187 0.0000 -0.0000 3.0625 -4.2795 16.6511 -5.3504 0.0000 -0.0000 -0.5061 -5.5643 -22.2441 -4.7864 0.0000 -0.0000 - 0.5045 -2.3444 23.6292 1.4134 -1.2978 -178.7307 -4.7264 -4.1555 -0.0730 -1.6317 -2.1933 -0.1461 11.7752 1.9736 7.9819 2.0560 4.6747 -0.4633 -11.5166 4.2541 -0.8133 2.9459 -1.4571 -9.5685 9.7616 -16.3926 10.8934 18.5386 -47.2280 20.6279 0.0000 0.0000 15.9078 4.4319 -11.6111 2.9309 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.0543 21.2178 -6.5354 26.0204 53.0316 -19.9857 -0.0000 -0.0000 -20.9018 -5.1614 -14.5138 12.6306 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.1315 2.7214 -50.4463 -1.8673 0.0000 -0.0000 18.9711 -14.6173 41.7849 -30.9471 0.0000 -0.0000 3.0481 -4.2899 16.5571 -5.3250 0.0000 -0.0000 -0.5275 -5.5678 -22.2681 -4.7857 0.0000 -0.0000 - 0.5051 -2.3411 23.6290 1.4539 -1.2898 -178.6128 -4.6136 -4.1311 -0.0969 -1.6072 -2.1659 -0.1282 11.6821 1.9175 7.8202 1.9854 4.6877 -0.4679 -11.4962 4.2353 -0.8410 2.9738 -1.4937 -9.4688 9.8003 -16.5484 10.5567 18.1802 -47.7765 19.9309 0.0000 0.0000 15.5722 4.9676 -12.0749 3.0075 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 1.0913 21.2988 -6.4474 25.6438 52.9793 -19.5781 -0.0000 -0.0000 -20.8864 -5.1851 -14.5319 12.6170 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 3.1852 2.7408 -50.4456 -1.8053 0.0000 -0.0000 18.8850 -14.6710 41.6755 -30.9759 0.0000 -0.0000 3.0718 -4.2914 16.4590 -5.3089 0.0000 -0.0000 -0.5425 -5.5725 -22.2879 -4.7870 0.0000 -0.0000 - 0.5059 -2.3377 23.6288 1.4861 -1.2862 -178.4944 -4.5200 -4.0968 -0.1158 -1.5792 -2.1500 -0.1318 11.5955 1.8698 7.6450 1.9127 4.6894 -0.4739 -11.4784 4.2173 -0.8658 3.0049 -1.5291 -9.3446 9.8124 -16.7271 10.2058 17.8038 -48.2973 19.2163 0.0000 0.0000 15.2759 5.5508 -12.2884 3.0788 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.1226 21.3859 -6.3534 25.2149 52.9392 -19.1149 -0.0000 -0.0000 -20.8830 -5.2177 -14.5372 12.6024 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.2319 2.7533 -50.4493 -1.7488 0.0000 -0.0000 18.8020 -14.7204 41.5692 -31.0040 0.0000 -0.0000 3.0912 -4.2963 16.3716 -5.3022 0.0000 -0.0000 -0.5544 -5.5766 -22.3187 -4.7894 0.0000 -0.0000 - 0.5068 -2.3344 23.6285 1.4954 -1.2844 -178.3776 -4.4638 -4.0552 -0.1306 -1.5491 -2.1369 -0.1583 11.5207 1.8256 7.4634 1.8408 4.6799 -0.4830 -11.4672 4.2020 -0.8845 3.0401 -1.5620 -9.1975 9.7961 -16.9247 9.8483 17.4179 -48.7856 18.4829 0.0000 0.0000 15.0198 6.0939 -12.2817 3.1259 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.1468 21.4796 -6.2551 24.7425 52.9090 -18.6053 -0.0000 -0.0000 -20.8882 -5.2587 -14.5238 12.5852 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.2548 2.7636 -50.4589 -1.6945 0.0000 -0.0000 18.7217 -14.7648 41.4693 -31.0323 0.0000 -0.0000 3.0894 -4.3013 16.2970 -5.3014 0.0000 -0.0000 -0.5635 -5.5807 -22.3609 -4.7935 0.0000 -0.0000 - 0.5074 -2.3306 23.6282 1.5294 -1.2795 -178.2642 -4.3818 -4.0051 -0.1512 -1.5254 -2.1029 -0.1571 11.4513 1.7426 7.2377 1.7686 4.6694 -0.4887 -11.4586 4.1920 -0.8935 3.0815 -1.5908 -9.0294 9.7552 -17.1302 9.4897 17.0196 -49.2429 17.7213 0.0000 0.0000 14.8110 6.5188 -12.1048 3.1357 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.1660 21.5820 -6.1525 24.2493 52.8832 -18.0661 -0.0000 -0.0000 -20.9035 -5.3095 -14.4925 12.5732 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.3054 2.7758 -50.4675 -1.6441 0.0000 -0.0000 18.6430 -14.8093 41.3719 -31.0597 0.0000 -0.0000 3.1208 -4.3019 16.2242 -5.3128 0.0000 -0.0000 -0.5660 -5.5848 -22.4005 -4.8001 0.0000 -0.0000 - 0.5080 -2.3266 23.6279 1.5600 -1.2758 -178.1564 -4.3108 -3.9473 -0.1696 -1.5033 -2.0717 -0.1628 11.3900 1.6574 6.9984 1.6972 4.6480 -0.4959 -11.4572 4.1873 -0.8908 3.1301 -1.6147 -8.8428 9.6959 -17.3365 9.1369 16.5959 -49.6710 16.9248 0.0000 0.0000 14.6515 6.7644 -11.8046 3.1082 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 1.1889 21.6875 -6.0543 23.7371 52.8630 -17.5096 -0.0000 -0.0000 -20.9215 -5.3682 -14.4409 12.5616 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.3532 2.7852 -50.4803 -1.5990 0.0000 -0.0000 18.5697 -14.8495 41.2830 -31.0860 0.0000 -0.0000 3.1540 -4.3026 16.1586 -5.3330 0.0000 -0.0000 -0.5643 -5.5884 -22.4414 -4.8087 0.0000 -0.0000 - 0.5086 -2.3224 23.6275 1.5851 -1.2731 -178.0576 -4.2502 -3.8839 -0.1884 -1.4828 -2.0378 -0.1693 11.3350 1.5646 6.7463 1.6254 4.6180 -0.5034 -11.4635 4.1874 -0.8742 3.1872 -1.6327 -8.6397 9.6172 -17.5429 8.7904 16.1383 -50.0645 16.0813 0.0000 0.0000 14.5483 6.7926 -11.4382 3.0508 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 1.2036 21.7996 -5.9531 23.2344 52.8412 -16.9523 -0.0000 -0.0000 -20.9392 -5.4317 -14.3706 12.5534 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.3954 2.7923 -50.4960 -1.5591 0.0000 -0.0000 18.5032 -14.8855 41.2048 -31.1105 0.0000 -0.0000 3.1869 -4.3030 16.0995 -5.3615 0.0000 -0.0000 -0.5582 -5.5916 -22.4799 -4.8190 0.0000 -0.0000 - 0.5091 -2.3176 23.6270 1.6337 -1.2703 -177.9714 -4.1614 -3.8197 -0.2077 -1.4654 -1.9880 -0.1657 11.2767 1.4490 6.4794 1.5527 4.5839 -0.5106 -11.4744 4.1909 -0.8427 3.2545 -1.6422 -8.4213 9.5309 -17.7388 8.4516 15.6392 -50.4260 15.1950 0.0000 0.0000 14.5027 6.5901 -11.0527 2.9773 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.2194 21.9122 -5.8497 22.7618 52.8174 -16.4242 -0.0000 -0.0000 -20.9486 -5.5020 -14.2905 12.5479 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.4640 2.7962 -50.5145 -1.5292 0.0000 -0.0000 18.4471 -14.9182 41.1419 -31.1320 0.0000 -0.0000 3.2541 -4.3021 16.0474 -5.4042 0.0000 -0.0000 -0.5455 -5.5936 -22.5117 -4.8309 0.0000 -0.0000 - 0.5098 -2.3135 23.6265 1.6320 -1.2719 -177.8992 -4.1289 -3.7464 -0.2213 -1.4464 -1.9753 -0.1928 11.2211 1.3767 6.2301 1.4803 4.5324 -0.5224 -11.4955 4.1963 -0.7961 3.3312 -1.6452 -8.1907 9.4255 -17.9359 8.1253 15.0716 -50.7529 14.2283 0.0000 0.0000 14.5226 6.1847 -10.6852 2.9009 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.2295 22.0371 -5.7535 22.3074 52.7797 -15.8974 -0.0000 -0.0000 -20.9562 -5.5704 -14.1983 12.5493 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.4774 2.7971 -50.5345 -1.5017 0.0000 -0.0000 18.3991 -14.9439 41.0918 -31.1506 0.0000 -0.0000 3.2697 -4.3039 16.0011 -5.4461 0.0000 -0.0000 -0.5320 -5.5966 -22.5370 -4.8435 0.0000 -0.0000 - 0.5105 -2.3091 23.6258 1.6327 -1.2747 -177.8458 -4.0895 -3.6784 -0.2371 -1.4280 -1.9396 -0.1988 11.1626 1.2776 5.9650 1.4044 4.4801 -0.5330 -11.5230 4.2028 -0.7329 3.4189 -1.6390 -7.9476 9.3205 -18.1207 7.8076 14.4576 -51.0413 13.2285 0.0000 0.0000 14.5970 5.6037 -10.3627 2.8344 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.2330 22.1627 -5.6468 21.9168 52.7341 -15.4327 -0.0000 -0.0000 -20.9434 -5.6421 -14.1096 12.5510 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 3.4929 2.7950 -50.5531 -1.4825 0.0000 -0.0000 18.3625 -14.9654 41.0590 -31.1650 0.0000 -0.0000 3.2954 -4.3056 15.9624 -5.4971 0.0000 -0.0000 -0.5141 -5.5991 -22.5507 -4.8566 0.0000 -0.0000 - 0.5113 -2.3047 23.6250 1.6309 -1.2796 -177.8137 -4.0441 -3.6118 -0.2515 -1.4101 -1.9048 -0.2075 11.0928 1.1813 5.7088 1.3272 4.4213 -0.5440 -11.5552 4.2112 -0.6553 3.5166 -1.6237 -7.6939 9.2125 -18.2937 7.5016 13.7829 -51.2985 12.1776 0.0000 0.0000 14.7261 4.9142 -10.0976 2.7839 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.2347 22.2913 -5.5403 21.5801 52.6803 -15.0170 -0.0000 -0.0000 -20.9131 -5.7138 -14.0280 12.5553 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.5050 2.7889 -50.5702 -1.4726 0.0000 -0.0000 18.3390 -14.9818 41.0455 -31.1748 0.0000 -0.0000 3.3252 -4.3081 15.9323 -5.5552 0.0000 -0.0000 -0.4928 -5.6013 -22.5517 -4.8698 0.0000 -0.0000 - 0.5121 -2.3004 23.6242 1.6240 -1.2865 -177.8048 -3.9938 -3.5468 -0.2635 -1.3920 -1.8741 -0.2187 11.0105 1.0919 5.4641 1.2480 4.3555 -0.5546 -11.5905 4.2220 -0.5650 3.6231 -1.6001 -7.4314 9.1005 -18.4582 7.2042 13.0570 -51.5226 11.0884 0.0000 0.0000 14.9022 4.1828 -9.8944 2.7505 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 1.2365 22.4248 -5.4354 21.3022 52.6143 -14.6571 -0.0000 -0.0000 -20.8639 -5.7869 -13.9613 12.5638 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.5109 2.7791 -50.5837 -1.4720 0.0000 -0.0000 18.3287 -14.9928 41.0515 -31.1799 0.0000 -0.0000 3.3559 -4.3114 15.9116 -5.6185 0.0000 -0.0000 -0.4693 -5.6034 -22.5388 -4.8824 0.0000 -0.0000 - 0.5132 -2.2961 23.6233 1.6129 -1.2957 -177.8202 -3.9395 -3.4852 -0.2729 -1.3736 -1.8425 -0.2269 10.9181 1.0040 5.2278 1.1665 4.2836 -0.5646 -11.6289 4.2355 -0.4629 3.7368 -1.5689 -7.1615 8.9869 -18.6137 6.9139 12.2998 -51.7142 9.9903 0.0000 0.0000 15.1097 3.4705 -9.7437 2.7345 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.2326 22.5615 -5.3276 21.0891 52.5394 -14.3599 -0.0000 -0.0000 -20.7923 -5.8605 -13.9142 12.5741 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.5109 2.7650 -50.5919 -1.4807 0.0000 -0.0000 18.3312 -14.9984 41.0763 -31.1803 0.0000 -0.0000 3.3877 -4.3161 15.9018 -5.6854 0.0000 -0.0000 -0.4447 -5.6055 -22.5125 -4.8941 0.0000 -0.0000 - 0.5144 -2.2920 23.6223 1.5968 -1.3069 -177.8604 -3.8821 -3.4265 -0.2795 -1.3548 -1.8116 -0.2339 10.8155 0.9195 5.0039 1.0841 4.2055 -0.5726 -11.6688 4.2541 -0.3521 3.8551 -1.5318 -6.8853 8.8692 -18.7612 6.6306 11.5222 -51.8781 8.8949 0.0000 0.0000 15.3357 2.8316 -9.6294 2.7337 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.2253 22.7020 -5.2215 20.9332 52.4569 -14.1200 -0.0000 -0.0000 -20.6994 -5.9342 -13.8881 12.5866 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.5044 2.7471 -50.5930 -1.4985 0.0000 -0.0000 18.3460 -14.9981 41.1189 -31.1766 0.0000 -0.0000 3.4191 -4.3221 15.9042 -5.7537 0.0000 -0.0000 -0.4204 -5.6077 -22.4732 -4.9046 0.0000 -0.0000 - 0.5159 -2.2879 23.6213 1.5754 -1.3203 -177.9251 -3.8245 -3.3711 -0.2834 -1.3358 -1.7806 -0.2381 10.7056 0.8366 4.7920 1.0028 4.1217 -0.5772 -11.7104 4.2790 -0.2343 3.9759 -1.4902 -6.6061 8.7513 -18.8994 6.3556 10.7307 -52.0208 7.8180 0.0000 0.0000 15.5675 2.3040 -9.5320 2.7411 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.2119 22.8458 -5.1187 20.8299 52.3694 -13.9332 -0.0000 -0.0000 -20.5873 -6.0084 -13.8835 12.6021 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.4907 2.7252 -50.5857 -1.5250 0.0000 -0.0000 18.3721 -14.9918 41.1774 -31.1699 0.0000 -0.0000 3.4485 -4.3297 15.9200 -5.8211 0.0000 -0.0000 -0.3977 -5.6099 -22.4226 -4.9131 0.0000 -0.0000 - 0.5176 -2.2841 23.6204 1.5472 -1.3356 -178.0130 -3.7716 -3.3183 -0.2843 -1.3169 -1.7483 -0.2398 10.5931 0.7525 4.5936 0.9240 4.0343 -0.5792 -11.7529 4.3108 -0.1126 4.0958 -1.4464 -6.3250 8.6295 -19.0292 6.0883 9.9422 -52.1475 6.7769 0.0000 0.0000 15.7894 1.9020 -9.4318 2.7574 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 1.1907 22.9916 -5.0205 20.7706 52.2798 -13.7926 -0.0000 -0.0000 -20.4586 -6.0802 -13.8984 12.6203 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.4680 2.6996 -50.5694 -1.5591 0.0000 -0.0000 18.4080 -14.9792 41.2494 -31.1610 0.0000 -0.0000 3.4728 -4.3393 15.9496 -5.8848 0.0000 -0.0000 -0.3783 -5.6122 -22.3625 -4.9197 0.0000 -0.0000 - 0.5198 -2.2809 23.6195 1.4813 -1.3553 -178.1228 -3.7628 -3.2748 -0.2860 -1.2955 -1.7029 -0.2305 10.4859 0.6544 4.4065 0.8512 3.9502 -0.5775 -11.7988 4.3501 0.0087 4.2110 -1.4032 -6.0451 8.4974 -19.1558 5.8228 9.1711 -52.2588 5.7881 0.0000 0.0000 15.9880 1.6234 -9.3125 2.7807 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.1712 23.1446 -4.9325 20.7476 52.1770 -13.7005 -0.0000 -0.0000 -20.3169 -6.1546 -13.9282 12.6440 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.4024 2.6696 -50.5429 -1.5971 0.0000 -0.0000 18.4515 -14.9580 41.3311 -31.1517 0.0000 -0.0000 3.4550 -4.3535 15.9927 -5.9363 0.0000 -0.0000 -0.3663 -5.6154 -22.2948 -4.9233 0.0000 -0.0000 - 0.5220 -2.2773 23.6188 1.4481 -1.3690 -178.2511 -3.7159 -3.2162 -0.2781 -1.2811 -1.6898 -0.2427 10.3773 0.5900 4.2475 0.7833 3.8542 -0.5718 -11.8405 4.3957 0.1285 4.3202 -1.3594 -5.7684 8.3602 -19.2665 5.5726 8.3950 -52.3751 4.8232 0.0000 0.0000 16.1646 1.4549 -9.1678 2.8069 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.1401 23.2893 -4.8603 20.7376 52.0921 -13.6189 -0.0000 -0.0000 -20.1704 -6.2164 -13.9674 12.6700 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.3707 2.6435 -50.5065 -1.6408 0.0000 -0.0000 18.4999 -14.9350 41.4219 -31.1424 0.0000 -0.0000 3.4751 -4.3622 16.0483 -5.9865 0.0000 -0.0000 -0.3553 -5.6176 -22.2199 -4.9257 0.0000 -0.0000 - 0.5247 -2.2741 23.6182 1.3927 -1.3859 -178.3956 -3.7023 -3.1656 -0.2704 -1.2664 -1.6620 -0.2426 10.2818 0.5081 4.0981 0.7242 3.7651 -0.5638 -11.8845 4.4464 0.2431 4.4202 -1.3193 -5.4964 8.2104 -19.3685 5.3266 7.6443 -52.4902 3.9185 0.0000 0.0000 16.3049 1.3595 -8.9935 2.8379 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.1054 23.4324 -4.8004 20.7456 52.0063 -13.5674 -0.0000 -0.0000 -20.0206 -6.2717 -14.0103 12.7002 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.3132 2.6132 -50.4619 -1.6876 0.0000 -0.0000 18.5531 -14.9044 41.5188 -31.1339 0.0000 -0.0000 3.4688 -4.3754 16.1157 -6.0244 0.0000 -0.0000 -0.3521 -5.6198 -22.1410 -4.9251 0.0000 -0.0000 - 0.5277 -2.2713 23.6178 1.3187 -1.4029 -178.5547 -3.7184 -3.1179 -0.2628 -1.2530 -1.6339 -0.2402 10.2007 0.4242 3.9636 0.6747 3.6840 -0.5509 -11.9300 4.4989 0.3505 4.5092 -1.2830 -5.2317 8.0586 -19.4600 5.0912 6.9112 -52.6081 3.0728 0.0000 0.0000 16.4082 1.2976 -8.7942 2.8729 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.0688 23.5737 -4.7517 20.7728 51.9144 -13.5481 -0.0000 -0.0000 -19.8740 -6.3222 -14.0516 12.7370 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 3.2334 2.5828 -50.4086 -1.7348 0.0000 -0.0000 18.6090 -14.8680 41.6198 -31.1272 0.0000 -0.0000 3.4391 -4.3901 16.1932 -6.0487 0.0000 -0.0000 -0.3566 -5.6222 -22.0583 -4.9217 0.0000 -0.0000 - 0.5309 -2.2678 23.6175 1.2916 -1.4145 -178.7228 -3.6882 -3.0611 -0.2470 -1.2477 -1.6251 -0.2487 10.1266 0.3610 3.8499 0.6331 3.6020 -0.5392 -11.9694 4.5492 0.4500 4.5871 -1.2492 -4.9749 7.9083 -19.5304 4.8780 6.1747 -52.7421 2.2549 0.0000 0.0000 16.4858 1.2355 -8.5856 2.9081 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 1.0315 23.6947 -4.7296 20.7753 51.8506 -13.5105 -0.0000 -0.0000 -19.7406 -6.3495 -14.0862 12.7750 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.2035 2.5550 -50.3499 -1.7859 0.0000 -0.0000 18.6662 -14.8309 41.7252 -31.1209 0.0000 -0.0000 3.4613 -4.4009 16.2790 -6.0724 0.0000 -0.0000 -0.3621 -5.6223 -21.9732 -4.9173 0.0000 -0.0000 - 0.5346 -2.2647 23.6173 1.2395 -1.4296 -178.8990 -3.6999 -3.0157 -0.2345 -1.2422 -1.6003 -0.2449 10.0725 0.2805 3.7435 0.6030 3.5369 -0.5267 -12.0124 4.5939 0.5402 4.6532 -1.2205 -4.7274 7.7548 -19.5919 4.6791 5.4606 -52.8779 1.4930 0.0000 0.0000 16.5364 1.1339 -8.3816 2.9442 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.9878 23.8070 -4.7146 20.7864 51.7858 -13.4943 -0.0000 -0.0000 -19.6192 -6.3639 -14.1095 12.8146 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.1451 2.5232 -50.2876 -1.8362 0.0000 -0.0000 18.7248 -14.7874 41.8329 -31.1151 0.0000 -0.0000 3.4521 -4.4172 16.3713 -6.0822 0.0000 -0.0000 -0.3759 -5.6219 -21.8875 -4.9099 0.0000 -0.0000 - 0.5385 -2.2616 23.6173 1.1931 -1.4425 -179.0810 -3.7152 -2.9714 -0.2211 -1.2403 -1.5834 -0.2444 10.0327 0.2120 3.6523 0.5814 3.4820 -0.5137 -12.0538 4.6293 0.6199 4.7080 -1.1959 -4.4893 7.6119 -19.6433 4.5052 4.7620 -53.0148 0.7793 0.0000 0.0000 16.5707 0.9670 -8.1990 2.9798 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.9460 23.9063 -4.7141 20.7884 51.7256 -13.4810 -0.0000 -0.0000 -19.5185 -6.3617 -14.1200 12.8563 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.0912 2.4934 -50.2219 -1.8845 0.0000 -0.0000 18.7825 -14.7417 41.9425 -31.1091 0.0000 -0.0000 3.4466 -4.4330 16.4681 -6.0837 0.0000 -0.0000 -0.3940 -5.6205 -21.8007 -4.9012 0.0000 -0.0000 - 0.5427 -2.2584 23.6174 1.1578 -1.4542 -179.2660 -3.7273 -2.9308 -0.2059 -1.2417 -1.5722 -0.2450 10.0045 0.1551 3.5736 0.5682 3.4383 -0.5037 -12.0934 4.6529 0.6898 4.7528 -1.1756 -4.2616 7.4730 -19.6855 4.3556 4.0909 -53.1521 0.1130 0.0000 0.0000 16.5990 0.7273 -8.0519 3.0129 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.9047 23.9891 -4.7293 20.7707 51.6758 -13.4560 -0.0000 -0.0000 -19.4439 -6.3395 -14.1157 12.8964 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.0481 2.4645 -50.1550 -1.9312 0.0000 -0.0000 18.8393 -14.6946 42.0538 -31.1017 0.0000 -0.0000 3.4512 -4.4490 16.5682 -6.0796 0.0000 -0.0000 -0.4150 -5.6177 -21.7140 -4.8918 0.0000 -0.0000 - 0.5471 -2.2553 23.6175 1.1232 -1.4656 -179.4529 -3.7480 -2.8969 -0.1926 -1.2447 -1.5621 -0.2449 9.9886 0.1068 3.5049 0.5624 3.4078 -0.4954 -12.1330 4.6620 0.7503 4.7895 -1.1586 -4.0436 7.3495 -19.7229 4.2345 3.4688 -53.2812 -0.4807 0.0000 0.0000 16.6257 0.4118 -7.9463 3.0439 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.8605 24.0565 -4.7492 20.7473 51.6307 -13.4352 -0.0000 -0.0000 -19.3931 -6.3010 -14.0978 12.9307 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.0047 2.4357 -50.0882 -1.9752 0.0000 -0.0000 18.8949 -14.6457 42.1666 -31.0922 0.0000 -0.0000 3.4543 -4.4662 16.6707 -6.0692 0.0000 -0.0000 -0.4393 -5.6138 -21.6281 -4.8820 0.0000 -0.0000 - 0.5517 -2.2522 23.6177 1.0913 -1.4767 -179.6403 -3.7731 -2.8696 -0.1799 -1.2488 -1.5553 -0.2451 9.9821 0.0715 3.4450 0.5620 3.3890 -0.4902 -12.1720 4.6554 0.8024 4.8209 -1.1448 -3.8354 7.2416 -19.7603 4.1423 2.9189 -53.3967 -0.9879 0.0000 0.0000 16.6586 0.0356 -7.8852 3.0707 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.8177 24.1110 -4.7750 20.7115 51.5872 -13.4106 -0.0000 -0.0000 -19.3709 -6.2487 -14.0687 12.9602 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.9634 2.4075 -50.0221 -2.0166 0.0000 -0.0000 18.9492 -14.5961 42.2804 -31.0795 0.0000 -0.0000 3.4587 -4.4841 16.7751 -6.0544 0.0000 -0.0000 -0.4655 -5.6087 -21.5438 -4.8729 0.0000 -0.0000 - 0.5566 -2.2492 23.6178 1.0519 -1.4901 -179.8270 -3.8124 -2.8525 -0.1702 -1.2529 -1.5467 -0.2420 9.9822 0.0440 3.3909 0.5668 3.3816 -0.4881 -12.2106 4.6349 0.8473 4.8483 -1.1353 -3.6377 7.1518 -19.8039 4.0788 2.4644 -53.4904 -1.3894 0.0000 0.0000 16.7020 -0.3779 -7.8643 3.0941 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.7755 24.1551 -4.8032 20.6648 51.5434 -13.3844 -0.0000 -0.0000 -19.3748 -6.1862 -14.0301 12.9790 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9137 2.3763 -49.9577 -2.0567 0.0000 -0.0000 19.0034 -14.5448 42.3946 -31.0633 0.0000 -0.0000 3.4531 -4.5056 16.8817 -6.0351 0.0000 -0.0000 -0.4945 -5.6029 -21.4627 -4.8645 0.0000 -0.0000 - 0.5612 -2.2459 23.6179 1.0378 -1.4959 179.9872 -3.8281 -2.8330 -0.1573 -1.2587 -1.5510 -0.2486 9.9873 0.0433 3.3475 0.5712 3.3772 -0.4888 -12.2460 4.6003 0.8856 4.8750 -1.1252 -3.4490 7.0778 -19.8478 4.0416 2.1298 -53.5684 -1.6698 0.0000 0.0000 16.7576 -0.7982 -7.8716 3.1175 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.7341 24.1888 -4.8309 20.6155 51.5005 -13.3617 -0.0000 -0.0000 -19.4064 -6.1194 -13.9887 12.9913 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.8906 2.3545 -49.8936 -2.0929 0.0000 -0.0000 19.0542 -14.4974 42.5091 -31.0441 0.0000 -0.0000 3.4757 -4.5186 16.9866 -6.0180 0.0000 -0.0000 -0.5193 -5.5963 -21.3802 -4.8604 0.0000 -0.0000 - 0.5661 -2.2426 23.6179 1.0215 -1.5068 179.8031 -3.8489 -2.8245 -0.1465 -1.2644 -1.5526 -0.2495 9.9936 0.0479 3.3056 0.5781 3.3809 -0.4923 -12.2796 4.5541 0.9185 4.9023 -1.1180 -3.2711 7.0230 -19.9031 4.0298 1.9299 -53.6200 -1.8155 0.0000 0.0000 16.8278 -1.1979 -7.8941 3.1421 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.6943 24.2173 -4.8604 20.5543 51.4546 -13.3322 -0.0000 -0.0000 -19.4646 -6.0513 -13.9450 12.9943 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.8662 2.3256 -49.8295 -2.1325 0.0000 -0.0000 19.1066 -14.4486 42.6210 -31.0213 0.0000 -0.0000 3.4958 -4.5373 17.0972 -6.0011 0.0000 -0.0000 -0.5457 -5.5885 -21.3049 -4.8585 0.0000 -0.0000 - 0.5710 -2.2392 23.6179 1.0047 -1.5173 179.6220 -3.8737 -2.8206 -0.1357 -1.2696 -1.5542 -0.2504 10.0037 0.0624 3.2671 0.5842 3.3870 -0.4979 -12.3110 4.5001 0.9466 4.9317 -1.1133 -3.1034 6.9776 -19.9701 4.0352 1.8804 -53.6444 -1.8207 0.0000 0.0000 16.9124 -1.5500 -7.9179 3.1734 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.6536 24.2450 -4.8855 20.4925 51.4019 -13.3083 -0.0000 -0.0000 -19.5442 -5.9879 -13.9029 12.9880 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.8428 2.2962 -49.7662 -2.1736 0.0000 -0.0000 19.1592 -14.4008 42.7302 -30.9963 0.0000 -0.0000 3.5158 -4.5557 17.2069 -5.9849 0.0000 -0.0000 -0.5708 -5.5807 -21.2313 -4.8603 0.0000 -0.0000 - 0.5759 -2.2357 23.6178 0.9890 -1.5268 179.4441 -3.9002 -2.8182 -0.1244 -1.2752 -1.5566 -0.2517 10.0167 0.0841 3.2317 0.5892 3.3938 -0.5043 -12.3403 4.4416 0.9710 4.9646 -1.1101 -2.9473 6.9391 -20.0472 4.0540 1.9773 -53.6433 -1.6922 0.0000 0.0000 17.0126 -1.8328 -7.9273 3.2142 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.6117 24.2745 -4.9068 20.4315 51.3430 -13.2907 -0.0000 -0.0000 -19.6428 -5.9337 -13.8645 12.9740 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.8220 2.2671 -49.7021 -2.2174 0.0000 -0.0000 19.2121 -14.3547 42.8344 -30.9702 0.0000 -0.0000 3.5375 -4.5726 17.3146 -5.9703 0.0000 -0.0000 -0.5941 -5.5731 -21.1584 -4.8662 0.0000 -0.0000 - 0.5808 -2.2322 23.6176 0.9725 -1.5368 179.2693 -3.9299 -2.8177 -0.1119 -1.2810 -1.5595 -0.2524 10.0314 0.1121 3.1986 0.5935 3.3985 -0.5107 -12.3667 4.3812 0.9920 5.0012 -1.1091 -2.8034 6.9082 -20.1330 4.0831 2.2065 -53.6181 -1.4420 0.0000 0.0000 17.1272 -2.0344 -7.9102 3.2684 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.5670 24.3074 -4.9268 20.3649 51.2802 -13.2709 -0.0000 -0.0000 -19.7586 -5.8885 -13.8301 12.9534 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.8029 2.2353 -49.6354 -2.2668 0.0000 -0.0000 19.2665 -14.3100 42.9318 -30.9440 0.0000 -0.0000 3.5596 -4.5899 17.4206 -5.9585 0.0000 -0.0000 -0.6157 -5.5660 -21.0863 -4.8758 0.0000 -0.0000 - 0.5856 -2.2284 23.6174 0.9555 -1.5461 179.0985 -3.9625 -2.8158 -0.0981 -1.2881 -1.5624 -0.2527 10.0491 0.1422 3.1684 0.5965 3.4002 -0.5161 -12.3898 4.3228 1.0099 5.0414 -1.1109 -2.6727 6.8792 -20.2242 4.1164 2.5448 -53.5721 -1.0952 0.0000 0.0000 17.2579 -2.1475 -7.8600 3.3367 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.5200 24.3450 -4.9457 20.2951 51.2146 -13.2543 -0.0000 -0.0000 -19.8861 -5.8547 -13.8000 12.9267 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.7863 2.2024 -49.5656 -2.3224 0.0000 -0.0000 19.3223 -14.2677 43.0212 -30.9186 0.0000 -0.0000 3.5822 -4.6060 17.5199 -5.9495 0.0000 -0.0000 -0.6351 -5.5600 -21.0106 -4.8890 0.0000 -0.0000 - 0.5905 -2.2244 23.6172 0.9378 -1.5546 178.9317 -3.9990 -2.8109 -0.0817 -1.2967 -1.5648 -0.2531 10.0707 0.1714 3.1413 0.5983 3.3984 -0.5197 -12.4099 4.2671 1.0244 5.0856 -1.1143 -2.5556 6.8450 -20.3181 4.1470 2.9636 -53.5085 -0.6809 0.0000 0.0000 17.4062 -2.1737 -7.7768 3.4175 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.4688 24.3894 -4.9635 20.2240 51.1454 -13.2408 -0.0000 -0.0000 -20.0240 -5.8326 -13.7748 12.8974 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.7722 2.1679 -49.4918 -2.3853 0.0000 -0.0000 19.3801 -14.2281 43.1019 -30.8944 0.0000 -0.0000 3.6059 -4.6211 17.6095 -5.9445 0.0000 -0.0000 -0.6516 -5.5556 -20.9284 -4.9050 0.0000 -0.0000 - 0.5954 -2.2203 23.6169 0.9184 -1.5636 178.7694 -4.0404 -2.8033 -0.0627 -1.3069 -1.5672 -0.2526 10.0959 0.1993 3.1169 0.5991 3.3920 -0.5219 -12.4255 4.2166 1.0363 5.1318 -1.1213 -2.4523 6.8061 -20.4118 4.1754 3.4193 -53.4315 -0.2398 0.0000 0.0000 17.5756 -2.1209 -7.6644 3.5063 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.4126 24.4409 -4.9792 20.1522 51.0736 -13.2317 -0.0000 -0.0000 -20.1687 -5.8212 -13.7515 12.8664 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.7600 2.1302 -49.4129 -2.4567 0.0000 -0.0000 19.4403 -14.1915 43.1724 -30.8714 0.0000 -0.0000 3.6293 -4.6366 17.6866 -5.9433 0.0000 -0.0000 -0.6659 -5.5530 -20.8374 -4.9228 0.0000 -0.0000 - 0.6003 -2.2160 23.6166 0.8972 -1.5716 178.6111 -4.0861 -2.7909 -0.0411 -1.3196 -1.5689 -0.2519 10.1253 0.2221 3.0971 0.5993 3.3829 -0.5216 -12.4371 4.1709 1.0452 5.1800 -1.1306 -2.3634 6.7588 -20.5009 4.1952 3.8799 -53.3470 0.2020 0.0000 0.0000 17.7653 -2.0053 -7.5312 3.5996 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.3524 24.4991 -4.9963 20.0753 51.0017 -13.2229 -0.0000 -0.0000 -20.3187 -5.8176 -13.7296 12.8340 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.7498 2.0908 -49.3289 -2.5361 0.0000 -0.0000 19.5027 -14.1588 43.2337 -30.8492 0.0000 -0.0000 3.6528 -4.6511 17.7458 -5.9466 0.0000 -0.0000 -0.6770 -5.5529 -20.7319 -4.9415 0.0000 -0.0000 - 0.6052 -2.2115 23.6163 0.8728 -1.5805 178.4568 -4.1373 -2.7754 -0.0168 -1.3343 -1.5710 -0.2500 10.1576 0.2412 3.0817 0.5993 3.3708 -0.5197 -12.4442 4.1296 1.0514 5.2289 -1.1431 -2.2884 6.7065 -20.5840 4.2069 4.3083 -53.2587 0.6159 0.0000 0.0000 17.9756 -1.8475 -7.3884 3.6921 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.2874 24.5640 -5.0142 19.9929 50.9298 -13.2129 -0.0000 -0.0000 -20.4728 -5.8193 -13.7074 12.8008 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.7398 2.0476 -49.2388 -2.6238 0.0000 -0.0000 19.5679 -14.1298 43.2857 -30.8265 0.0000 -0.0000 3.6748 -4.6668 17.7854 -5.9545 0.0000 -0.0000 -0.6855 -5.5554 -20.6103 -4.9596 0.0000 -0.0000 - 0.6101 -2.2069 23.6159 0.8459 -1.5885 178.3058 -4.1932 -2.7552 0.0097 -1.3515 -1.5727 -0.2484 10.1935 0.2539 3.0722 0.5991 3.3586 -0.5159 -12.4468 4.0917 1.0553 5.2780 -1.1582 -2.2262 6.6429 -20.6582 4.2109 4.6722 -53.1732 0.9667 0.0000 0.0000 18.2092 -1.6673 -7.2480 3.7778 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2204 24.6350 -5.0319 19.9061 50.8571 -13.2056 -0.0000 -0.0000 -20.6302 -5.8246 -13.6830 12.7677 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.7303 2.0037 -49.1435 -2.7176 0.0000 -0.0000 19.6348 -14.1053 43.3303 -30.8027 0.0000 -0.0000 3.6961 -4.6816 17.8011 -5.9669 0.0000 -0.0000 -0.6909 -5.5611 -20.4682 -4.9764 0.0000 -0.0000 - 0.6150 -2.2022 23.6155 0.8159 -1.5962 178.1576 -4.2527 -2.7322 0.0380 -1.3708 -1.5746 -0.2467 10.2308 0.2622 3.0691 0.5989 3.3471 -0.5111 -12.4450 4.0554 1.0574 5.3262 -1.1761 -2.1758 6.5736 -20.7235 4.2068 4.9580 -53.0923 1.2524 0.0000 0.0000 18.4603 -1.4904 -7.1196 3.8550 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.1506 24.7126 -5.0486 19.8146 50.7827 -13.1977 -0.0000 -0.0000 -20.7914 -5.8311 -13.6561 12.7342 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.7202 1.9583 -49.0431 -2.8164 0.0000 -0.0000 19.7036 -14.0850 43.3690 -30.7761 0.0000 -0.0000 3.7161 -4.6965 17.7921 -5.9836 0.0000 -0.0000 -0.6933 -5.5699 -20.3040 -4.9910 0.0000 -0.0000 - 0.6200 -2.1976 23.6150 0.7799 -1.6059 178.0111 -4.3188 -2.7081 0.0664 -1.3913 -1.5781 -0.2446 10.2685 0.2679 3.0727 0.5993 3.3355 -0.5048 -12.4385 4.0220 1.0578 5.3724 -1.1990 -2.1356 6.4987 -20.7776 4.2001 5.1396 -53.0215 1.4474 0.0000 0.0000 18.7290 -1.3313 -7.0104 3.9210 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0824 24.7905 -5.0664 19.7108 50.7153 -13.1889 -0.0000 -0.0000 -20.9504 -5.8336 -13.6259 12.6915 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.7058 1.9091 -48.9369 -2.9196 0.0000 -0.0000 19.7738 -14.0681 43.4018 -30.7459 0.0000 -0.0000 3.7316 -4.7140 17.7614 -6.0047 0.0000 -0.0000 -0.6938 -5.5816 -20.1204 -5.0026 0.0000 -0.0000 - 0.6247 -2.1931 23.6145 0.7437 -1.6117 177.8655 -4.3831 -2.6820 0.0963 -1.4138 -1.5812 -0.2436 10.3058 0.2720 3.0833 0.5984 3.3285 -0.4995 -12.4271 3.9863 1.0577 5.4172 -1.2249 -2.1038 6.4251 -20.8256 4.1909 5.2365 -52.9559 1.5801 0.0000 0.0000 19.0048 -1.2126 -6.9216 3.9772 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0134 24.8743 -5.0806 19.6039 50.6432 -13.1789 -0.0000 -0.0000 -21.1147 -5.8352 -13.5939 12.6468 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.6915 1.8651 -48.8311 -3.0220 0.0000 -0.0000 19.8445 -14.0546 43.4367 -30.7122 0.0000 -0.0000 3.7477 -4.7273 17.7042 -6.0282 0.0000 -0.0000 -0.6910 -5.5970 -19.9120 -5.0118 0.0000 -0.0000 - 0.6293 -2.1887 23.6140 0.7025 -1.6193 177.7204 -4.4508 -2.6581 0.1255 -1.4367 -1.5868 -0.2427 10.3407 0.2779 3.0996 0.5977 3.3239 -0.4946 -12.4122 3.9481 1.0566 5.4605 -1.2539 -2.0780 6.3509 -20.8678 4.1831 5.2493 -52.8974 1.6476 0.0000 0.0000 19.2842 -1.1390 -6.8507 4.0249 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0547 24.9619 -5.0913 19.4916 50.5687 -13.1667 -0.0000 -0.0000 -21.2826 -5.8340 -13.5604 12.5964 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.6724 1.8187 -48.7224 -3.1249 0.0000 -0.0000 19.9158 -14.0427 43.4702 -30.6739 0.0000 -0.0000 3.7598 -4.7431 17.6310 -6.0546 0.0000 -0.0000 -0.6872 -5.6145 -19.6888 -5.0181 0.0000 -0.0000 - 0.6338 -2.1846 23.6135 0.6553 -1.6267 177.5748 -4.5217 -2.6362 0.1536 -1.4595 -1.5942 -0.2422 10.3716 0.2872 3.1215 0.5968 3.3221 -0.4910 -12.3937 3.9075 1.0559 5.5026 -1.2868 -2.0570 6.2808 -20.9075 4.1797 5.1977 -52.8410 1.6713 0.0000 0.0000 19.5597 -1.1157 -6.7904 4.0675 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.1183 25.0535 -5.0991 19.3718 50.4910 -13.1512 -0.0000 -0.0000 -21.4544 -5.8306 -13.5265 12.5389 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.6459 1.7736 -48.6142 -3.2253 0.0000 -0.0000 19.9870 -14.0310 43.5059 -30.6325 0.0000 -0.0000 3.7657 -4.7586 17.5444 -6.0817 0.0000 -0.0000 -0.6826 -5.6341 -19.4528 -5.0220 0.0000 -0.0000 - 0.6379 -2.1812 23.6129 0.5776 -1.6316 177.4292 -4.6270 -2.6172 0.1787 -1.4798 -1.6058 -0.2428 10.4051 0.3035 3.1479 0.5964 3.3254 -0.4895 -12.3765 3.8621 1.0554 5.5443 -1.3232 -2.0385 6.2048 -20.9492 4.1775 5.1122 -52.7843 1.6747 0.0000 0.0000 19.8225 -1.1367 -6.7298 4.1107 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.1849 25.1513 -5.0976 19.2551 50.4033 -13.1379 -0.0000 -0.0000 -21.6301 -5.8274 -13.4923 12.4745 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.5841 1.7322 -48.5108 -3.3187 0.0000 -0.0000 20.0567 -14.0170 43.5459 -30.5897 0.0000 -0.0000 3.7354 -4.7735 17.4483 -6.1023 0.0000 -0.0000 -0.6800 -5.6563 -19.2100 -5.0241 0.0000 -0.0000 - 0.6420 -2.1774 23.6123 0.5390 -1.6405 177.2806 -4.6801 -2.6024 0.2051 -1.5026 -1.6159 -0.2427 10.4234 0.3185 3.1775 0.5953 3.3309 -0.4885 -12.3512 3.8142 1.0548 5.5858 -1.3616 -2.0210 6.1470 -20.9862 4.1890 5.0015 -52.7278 1.6724 0.0000 0.0000 20.0723 -1.1991 -6.6594 4.1572 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.2381 25.2446 -5.0986 19.1264 50.3234 -13.1184 -0.0000 -0.0000 -21.8088 -5.8222 -13.4640 12.4020 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5633 1.6889 -48.3990 -3.4114 0.0000 -0.0000 20.1242 -14.0046 43.5820 -30.5450 0.0000 -0.0000 3.7519 -4.7892 17.3587 -6.1329 0.0000 -0.0000 -0.6748 -5.6764 -18.9697 -5.0259 0.0000 -0.0000 - 0.6455 -2.1740 23.6118 0.4926 -1.6460 177.1334 -4.7399 -2.5907 0.2281 -1.5243 -1.6289 -0.2435 10.4399 0.3421 3.2086 0.5929 3.3397 -0.4892 -12.3244 3.7628 1.0546 5.6280 -1.4030 -2.0036 6.0899 -21.0278 4.2071 4.9008 -52.6644 1.6867 0.0000 0.0000 20.3033 -1.2892 -6.5690 4.2132 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.2896 25.3445 -5.0940 19.0022 50.2322 -13.0972 -0.0000 -0.0000 -21.9945 -5.8212 -13.4398 12.3285 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.5315 1.6514 -48.3001 -3.4983 0.0000 -0.0000 20.1920 -13.9880 43.6285 -30.5017 0.0000 -0.0000 3.7563 -4.8013 17.2687 -6.1573 0.0000 -0.0000 -0.6718 -5.6976 -18.7318 -5.0276 0.0000 -0.0000 - 0.6487 -2.1711 23.6113 0.4347 -1.6515 176.9857 -4.8122 -2.5824 0.2491 -1.5440 -1.6447 -0.2457 10.4538 0.3716 3.2410 0.5926 3.3497 -0.4917 -12.2988 3.7096 1.0550 5.6717 -1.4472 -1.9855 6.0350 -21.0715 4.2317 4.8321 -52.5932 1.7376 0.0000 0.0000 20.5135 -1.3970 -6.4497 4.2829 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.3375 25.4437 -5.0855 18.8787 50.1407 -13.0778 -0.0000 -0.0000 -22.1807 -5.8225 -13.4198 12.2499 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.4840 1.6160 -48.2029 -3.5778 0.0000 -0.0000 20.2564 -13.9677 43.6747 -30.4609 0.0000 -0.0000 3.7455 -4.8136 17.1908 -6.1765 0.0000 -0.0000 -0.6721 -5.7177 -18.5070 -5.0296 0.0000 -0.0000 - 0.6514 -2.1681 23.6109 0.3893 -1.6548 176.8392 -4.8698 -2.5757 0.2680 -1.5639 -1.6589 -0.2465 10.4642 0.3989 3.2720 0.5926 3.3649 -0.4953 -12.2722 3.6544 1.0545 5.7179 -1.4917 -1.9655 5.9767 -21.1135 4.2591 4.8119 -52.5182 1.8326 0.0000 0.0000 20.7044 -1.5094 -6.2984 4.3695 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.3829 25.5402 -5.0723 18.7660 50.0493 -13.0667 -0.0000 -0.0000 -22.3665 -5.8287 -13.4068 12.1708 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.4472 1.5865 -48.1085 -3.6511 0.0000 -0.0000 20.3173 -13.9461 43.7211 -30.4231 0.0000 -0.0000 3.7458 -4.8215 17.1270 -6.1923 0.0000 -0.0000 -0.6746 -5.7362 -18.2978 -5.0328 0.0000 -0.0000 - 0.6536 -2.1654 23.6106 0.3341 -1.6572 176.6945 -4.9406 -2.5714 0.2844 -1.5818 -1.6755 -0.2490 10.4748 0.4314 3.3020 0.5943 3.3799 -0.4997 -12.2461 3.5995 1.0542 5.7663 -1.5381 -1.9446 5.9211 -21.1585 4.2938 4.8409 -52.4307 1.9721 0.0000 0.0000 20.8815 -1.6198 -6.1176 4.4722 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.4240 25.6348 -5.0612 18.6520 49.9607 -13.0512 -0.0000 -0.0000 -22.5526 -5.8373 -13.3971 12.0938 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.3971 1.5600 -48.0188 -3.7174 0.0000 -0.0000 20.3750 -13.9211 43.7673 -30.3884 0.0000 -0.0000 3.7314 -4.8285 17.0801 -6.2007 0.0000 -0.0000 -0.6819 -5.7529 -18.1084 -5.0365 0.0000 -0.0000 - 0.6553 -2.1626 23.6103 0.2899 -1.6587 176.5533 -5.0016 -2.5691 0.2999 -1.5993 -1.6913 -0.2514 10.4841 0.4621 3.3287 0.5971 3.3977 -0.5053 -12.2187 3.5458 1.0531 5.8173 -1.5849 -1.9220 5.8627 -21.2007 4.3298 4.9269 -52.3367 2.1577 0.0000 0.0000 21.0486 -1.7200 -5.9119 4.5900 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.4648 25.7264 -5.0494 18.5508 49.8739 -13.0396 -0.0000 -0.0000 -22.7375 -5.8511 -13.3923 12.0237 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.3573 1.5379 -47.9320 -3.7783 0.0000 -0.0000 20.4294 -13.8958 43.8114 -30.3555 0.0000 -0.0000 3.7260 -4.8327 17.0503 -6.2048 0.0000 -0.0000 -0.6926 -5.7672 -17.9394 -5.0409 0.0000 -0.0000 - 0.6565 -2.1601 23.6101 0.2300 -1.6594 176.4155 -5.0874 -2.5685 0.3140 -1.6147 -1.7117 -0.2583 10.4995 0.4991 3.3534 0.6018 3.4152 -0.5108 -12.1937 3.4917 1.0519 5.8715 -1.6308 -1.8984 5.8012 -21.2445 4.3719 5.0544 -52.2313 2.3697 0.0000 0.0000 21.2149 -1.8057 -5.6919 4.7183 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.5057 25.8124 -5.0385 18.4580 49.7925 -13.0307 -0.0000 -0.0000 -22.9185 -5.8665 -13.3881 11.9621 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.2983 1.5191 -47.8476 -3.8312 0.0000 -0.0000 20.4792 -13.8692 43.8520 -30.3233 0.0000 -0.0000 3.6986 -4.8363 17.0380 -6.1998 0.0000 -0.0000 -0.7089 -5.7797 -17.7924 -5.0448 0.0000 -0.0000 - 0.6570 -2.1568 23.6101 0.2146 -1.6565 176.2842 -5.1230 -2.5647 0.3216 -1.6341 -1.7178 -0.2514 10.5080 0.5132 3.3692 0.6092 3.4359 -0.5167 -12.1644 3.4454 1.0507 5.9273 -1.6760 -1.8749 5.7427 -21.2720 4.4065 5.2385 -52.1259 2.6354 0.0000 0.0000 21.3773 -1.8800 -5.4608 4.8529 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.5406 25.8898 -5.0330 18.3782 49.7249 -13.0308 -0.0000 -0.0000 -23.0918 -5.8841 -13.3872 11.9094 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.2872 1.5089 -47.7700 -3.8824 0.0000 -0.0000 20.5274 -13.8472 43.8945 -30.2898 0.0000 -0.0000 3.7158 -4.8320 17.0353 -6.1913 0.0000 -0.0000 -0.7282 -5.7896 -17.6603 -5.0483 0.0000 -0.0000 - 0.6571 -2.1533 23.6101 0.1946 -1.6556 176.1553 -5.1751 -2.5632 0.3345 -1.6492 -1.7317 -0.2562 10.5227 0.5329 3.3867 0.6177 3.4581 -0.5237 -12.1340 3.4002 1.0490 5.9854 -1.7191 -1.8506 5.6806 -21.2962 4.4449 5.4408 -52.0148 2.9022 0.0000 0.0000 21.5503 -1.9376 -5.2364 4.9870 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5762 25.9603 -5.0311 18.3121 49.6636 -13.0327 -0.0000 -0.0000 -23.2608 -5.9015 -13.3846 11.8717 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.2712 1.4996 -47.6852 -3.9278 0.0000 -0.0000 20.5707 -13.8291 43.9277 -30.2524 0.0000 -0.0000 3.7288 -4.8281 17.0451 -6.1842 0.0000 -0.0000 -0.7482 -5.7974 -17.5428 -5.0502 0.0000 -0.0000 - 0.6566 -2.1497 23.6102 0.1778 -1.6533 176.0326 -5.2302 -2.5613 0.3428 -1.6648 -1.7445 -0.2589 10.5413 0.5493 3.3999 0.6293 3.4789 -0.5301 -12.1040 3.3593 1.0481 6.0453 -1.7594 -1.8273 5.6184 -21.3118 4.4815 5.6592 -51.9005 3.1778 0.0000 0.0000 21.7321 -1.9842 -5.0241 5.1155 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6085 26.0194 -5.0342 18.2588 49.6166 -13.0450 -0.0000 -0.0000 -23.4172 -5.9161 -13.3793 11.8430 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.2582 1.4950 -47.6055 -3.9679 0.0000 -0.0000 20.6111 -13.8143 43.9610 -30.2102 0.0000 -0.0000 3.7406 -4.8220 17.0609 -6.1696 0.0000 -0.0000 -0.7733 -5.8040 -17.4376 -5.0491 0.0000 -0.0000 - 0.6556 -2.1458 23.6103 0.1646 -1.6505 175.9153 -5.2885 -2.5607 0.3488 -1.6801 -1.7563 -0.2606 10.5649 0.5617 3.4089 0.6419 3.5010 -0.5370 -12.0722 3.3224 1.0477 6.1061 -1.7965 -1.8046 5.5566 -21.3191 4.5161 5.8821 -51.7850 3.4523 0.0000 0.0000 21.9238 -2.0219 -4.8297 5.2335 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.6401 26.0736 -5.0413 18.2255 49.5738 -13.0651 -0.0000 -0.0000 -23.5661 -5.9296 -13.3697 11.8289 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.2498 1.4943 -47.5281 -4.0031 0.0000 -0.0000 20.6488 -13.8040 43.9935 -30.1624 0.0000 -0.0000 3.7540 -4.8142 17.0788 -6.1512 0.0000 -0.0000 -0.8014 -5.8098 -17.3398 -5.0447 0.0000 -0.0000 - 0.6541 -2.1416 23.6105 0.1541 -1.6471 175.8020 -5.3516 -2.5605 0.3530 -1.6945 -1.7679 -0.2632 10.5924 0.5708 3.4164 0.6573 3.5224 -0.5434 -12.0398 3.2903 1.0485 6.1674 -1.8303 -1.7830 5.4960 -21.3161 4.5491 6.0974 -51.6718 3.7162 0.0000 0.0000 22.1251 -2.0530 -4.6568 5.3368 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.6683 26.1155 -5.0526 18.2078 49.5457 -13.0985 -0.0000 -0.0000 -23.6988 -5.9368 -13.3562 11.8208 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.2443 1.4973 -47.4513 -4.0335 0.0000 -0.0000 20.6835 -13.7984 44.0252 -30.1096 0.0000 -0.0000 3.7690 -4.8045 17.0967 -6.1314 0.0000 -0.0000 -0.8311 -5.8150 -17.2459 -5.0365 0.0000 -0.0000 - 0.6521 -2.1372 23.6107 0.1459 -1.6427 175.6918 -5.4195 -2.5613 0.3569 -1.7072 -1.7800 -0.2676 10.6242 0.5771 3.4227 0.6730 3.5451 -0.5503 -12.0050 3.2622 1.0509 6.2280 -1.8597 -1.7626 5.4389 -21.3053 4.5816 6.2968 -51.5609 3.9639 0.0000 0.0000 22.3338 -2.0797 -4.5045 5.4231 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6934 26.1522 -5.0677 18.2113 49.5212 -13.1427 -0.0000 -0.0000 -23.8213 -5.9407 -13.3380 11.8233 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.2413 1.5045 -47.3732 -4.0592 0.0000 -0.0000 20.7153 -13.7973 44.0552 -30.0540 0.0000 -0.0000 3.7863 -4.7922 17.1130 -6.1120 0.0000 -0.0000 -0.8610 -5.8200 -17.1533 -5.0247 0.0000 -0.0000 - 0.6495 -2.1326 23.6109 0.1413 -1.6366 175.5836 -5.4894 -2.5626 0.3614 -1.7177 -1.7925 -0.2736 10.6585 0.5805 3.4292 0.6887 3.5693 -0.5585 -11.9677 3.2387 1.0555 6.2871 -1.8850 -1.7439 5.3863 -21.2874 4.6143 6.4756 -51.4537 4.1924 0.0000 0.0000 22.5468 -2.1031 -4.3692 5.4914 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7140 26.1839 -5.0857 18.2362 49.4994 -13.1997 -0.0000 -0.0000 -23.9318 -5.9412 -13.3162 11.8329 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.2416 1.5171 -47.2929 -4.0797 0.0000 -0.0000 20.7437 -13.8001 44.0834 -29.9988 0.0000 -0.0000 3.8078 -4.7762 17.1267 -6.0942 0.0000 -0.0000 -0.8902 -5.8251 -17.0601 -5.0099 0.0000 -0.0000 - 0.6463 -2.1278 23.6111 0.1465 -1.6281 175.4769 -5.5510 -2.5630 0.3648 -1.7278 -1.8038 -0.2803 10.6919 0.5793 3.4378 0.7062 3.5946 -0.5675 -11.9291 3.2198 1.0621 6.3450 -1.9053 -1.7266 5.3400 -21.2604 4.6454 6.6380 -51.3531 4.4106 0.0000 0.0000 22.7573 -2.1250 -4.2430 5.5437 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.7309 26.2076 -5.1064 18.2790 49.4863 -13.2689 -0.0000 -0.0000 -24.0268 -5.9350 -13.2918 11.8431 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.2512 1.5358 -47.2127 -4.0957 0.0000 -0.0000 20.7693 -13.8052 44.1117 -29.9483 0.0000 -0.0000 3.8402 -4.7552 17.1379 -6.0784 0.0000 -0.0000 -0.9180 -5.8302 -16.9656 -4.9927 0.0000 -0.0000 - 0.6429 -2.1224 23.6112 0.1917 -1.6216 175.3735 -5.5646 -2.5641 0.3678 -1.7432 -1.8115 -0.2853 10.7203 0.5708 3.4432 0.7219 3.6207 -0.5754 -11.8848 3.2050 1.0711 6.4006 -1.9195 -1.7107 5.3032 -21.2241 4.6800 6.7749 -51.2629 4.6057 0.0000 0.0000 22.9661 -2.1426 -4.1207 5.5809 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7416 26.2242 -5.1255 18.3511 49.4760 -13.3602 -0.0000 -0.0000 -24.1082 -5.9272 -13.2692 11.8565 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.3043 1.5558 -47.1347 -4.1145 0.0000 -0.0000 20.7954 -13.8119 44.1408 -29.9056 0.0000 -0.0000 3.9184 -4.7311 17.1453 -6.0712 0.0000 -0.0000 -0.9426 -5.8341 -16.8693 -4.9744 0.0000 -0.0000 - 0.6391 -2.1176 23.6114 0.1971 -1.6159 175.2728 -5.6295 -2.5754 0.3652 -1.7520 -1.8224 -0.2879 10.7584 0.5748 3.4471 0.7368 3.6414 -0.5823 -11.8440 3.1948 1.0804 6.4535 -1.9310 -1.6970 5.2605 -21.1901 4.7034 6.9101 -51.1745 4.8011 0.0000 0.0000 23.1623 -2.1566 -3.9942 5.6089 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7514 26.2422 -5.1473 18.4394 49.4591 -13.4578 -0.0000 -0.0000 -24.1770 -5.9165 -13.2442 11.8682 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.3129 1.5733 -47.0620 -4.1281 0.0000 -0.0000 20.8201 -13.8119 44.1694 -29.8752 0.0000 -0.0000 3.9513 -4.7112 17.1508 -6.0589 0.0000 -0.0000 -0.9700 -5.8393 -16.7752 -4.9541 0.0000 -0.0000 - 0.6349 -2.1124 23.6115 0.2481 -1.6077 175.1741 -5.6356 -2.5797 0.3663 -1.7671 -1.8300 -0.2929 10.7870 0.5652 3.4525 0.7502 3.6676 -0.5906 -11.7979 3.1881 1.0927 6.5037 -1.9364 -1.6843 5.2334 -21.1502 4.7355 7.0183 -51.0948 4.9736 0.0000 0.0000 23.3519 -2.1655 -3.8599 5.6296 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.7566 26.2561 -5.1649 18.5526 49.4426 -13.5724 -0.0000 -0.0000 -24.2332 -5.9056 -13.2241 11.8801 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 2.3688 1.5982 -46.9888 -4.1429 0.0000 -0.0000 20.8435 -13.8135 44.1957 -29.8605 0.0000 -0.0000 4.0355 -4.6821 17.1585 -6.0562 0.0000 -0.0000 -0.9917 -5.8431 -16.6840 -4.9356 0.0000 -0.0000 - 0.6306 -2.1082 23.6115 0.2561 -1.6003 175.0798 -5.6944 -2.5942 0.3629 -1.7752 -1.8402 -0.2959 10.8242 0.5696 3.4548 0.7618 3.6870 -0.5972 -11.7569 3.1850 1.1042 6.5512 -1.9390 -1.6735 5.1946 -21.1201 4.7538 7.1298 -51.0125 5.1432 0.0000 0.0000 23.5281 -2.1686 -3.7168 5.6477 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.7597 26.2728 -5.1827 18.6790 49.4164 -13.6944 -0.0000 -0.0000 -24.2760 -5.8946 -13.2052 11.8882 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.3761 1.6194 -46.9224 -4.1530 0.0000 -0.0000 20.8655 -13.8068 44.2195 -29.8619 0.0000 -0.0000 4.0700 -4.6580 17.1673 -6.0485 0.0000 -0.0000 -1.0159 -5.8476 -16.6000 -4.9173 0.0000 -0.0000 - 0.6257 -2.1037 23.6116 0.3006 -1.5895 174.9889 -5.7022 -2.6006 0.3614 -1.7898 -1.8478 -0.3011 10.8514 0.5595 3.4597 0.7732 3.7132 -0.6045 -11.7126 3.1878 1.1183 6.5954 -1.9388 -1.6642 5.1774 -21.0864 4.7783 7.2203 -50.9359 5.3040 0.0000 0.0000 23.6915 -2.1702 -3.5598 5.6677 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.7633 26.2881 -5.1978 18.8169 49.3921 -13.8164 -0.0000 -0.0000 -24.3086 -5.8826 -13.1909 11.8950 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.4209 1.6480 -46.8577 -4.1643 0.0000 -0.0000 20.8869 -13.8008 44.2409 -29.8794 0.0000 -0.0000 4.1442 -4.6250 17.1808 -6.0470 0.0000 -0.0000 -1.0356 -5.8512 -16.5231 -4.9023 0.0000 -0.0000 - 0.6210 -2.1002 23.6116 0.3064 -1.5815 174.9042 -5.7561 -2.6177 0.3576 -1.7975 -1.8573 -0.3032 10.8847 0.5644 3.4581 0.7824 3.7296 -0.6115 -11.6733 3.1936 1.1320 6.6371 -1.9371 -1.6563 5.1509 -21.0689 4.7952 7.2993 -50.8521 5.4417 0.0000 0.0000 23.8476 -2.1669 -3.4013 5.6894 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.7628 26.3055 -5.2106 18.9596 49.3591 -13.9436 -0.0000 -0.0000 -24.3266 -5.8733 -13.1797 11.8976 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.4225 1.6700 -46.8016 -4.1731 0.0000 -0.0000 20.9081 -13.7873 44.2602 -29.9087 0.0000 -0.0000 4.1732 -4.5993 17.1973 -6.0413 0.0000 -0.0000 -1.0576 -5.8548 -16.4568 -4.8886 0.0000 -0.0000 - 0.6158 -2.0970 23.6117 0.3203 -1.5692 174.8270 -5.7948 -2.6285 0.3538 -1.8075 -1.8649 -0.3078 10.9148 0.5605 3.4568 0.7900 3.7497 -0.6186 -11.6348 3.2044 1.1464 6.6764 -1.9339 -1.6495 5.1290 -21.0572 4.8101 7.3564 -50.7691 5.5564 0.0000 0.0000 23.9946 -2.1632 -3.2425 5.7157 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.7623 26.3248 -5.2188 19.1065 49.3229 -14.0697 -0.0000 -0.0000 -24.3331 -5.8671 -13.1721 11.8997 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.4309 1.6986 -46.7507 -4.1791 0.0000 -0.0000 20.9274 -13.7755 44.2768 -29.9462 0.0000 -0.0000 4.2078 -4.5674 17.2178 -6.0364 0.0000 -0.0000 -1.0771 -5.8580 -16.4021 -4.8784 0.0000 -0.0000 - 0.6105 -2.0939 23.6117 0.3516 -1.5572 174.7579 -5.8060 -2.6363 0.3488 -1.8211 -1.8708 -0.3127 10.9381 0.5480 3.4551 0.7979 3.7734 -0.6260 -11.5968 3.2196 1.1607 6.7140 -1.9295 -1.6433 5.1122 -21.0510 4.8221 7.3866 -50.6887 5.6444 0.0000 0.0000 24.1328 -2.1633 -3.0900 5.7462 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.7613 26.3430 -5.2224 19.2524 49.2877 -14.1923 -0.0000 -0.0000 -24.3277 -5.8642 -13.1679 11.9017 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.4577 1.7287 -46.7048 -4.1858 0.0000 -0.0000 20.9466 -13.7668 44.2914 -29.9850 0.0000 -0.0000 4.2590 -4.5337 17.2407 -6.0337 0.0000 -0.0000 -1.0948 -5.8603 -16.3573 -4.8710 0.0000 -0.0000 - 0.6053 -2.0916 23.6116 0.3572 -1.5486 174.6973 -5.8483 -2.6536 0.3427 -1.8274 -1.8782 -0.3158 10.9641 0.5498 3.4444 0.8031 3.7873 -0.6310 -11.5629 3.2383 1.1743 6.7507 -1.9250 -1.6379 5.1005 -21.0570 4.8271 7.3949 -50.6040 5.7184 0.0000 0.0000 24.2551 -2.1771 -2.9473 5.7827 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.7645 26.3662 -5.2265 19.3788 49.2507 -14.2846 -0.0000 -0.0000 -24.3171 -5.8626 -13.1607 11.9064 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.4575 1.7527 -46.6690 -4.1906 0.0000 -0.0000 20.9666 -13.7574 44.3077 -30.0184 0.0000 -0.0000 4.2798 -4.5070 17.2655 -6.0295 0.0000 -0.0000 -1.1134 -5.8625 -16.3235 -4.8651 0.0000 -0.0000 - 0.5998 -2.0896 23.6116 0.3654 -1.5366 174.6458 -5.8824 -2.6654 0.3359 -1.8356 -1.8841 -0.3201 10.9862 0.5438 3.4337 0.8090 3.8048 -0.6373 -11.5317 3.2614 1.1878 6.7873 -1.9219 -1.6324 5.0905 -21.0738 4.8275 7.3683 -50.5179 5.7594 0.0000 0.0000 24.3661 -2.2072 -2.8259 5.8196 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.7674 26.3889 -5.2257 19.4896 49.2173 -14.3639 -0.0000 -0.0000 -24.2935 -5.8644 -13.1531 11.9105 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.4593 1.7826 -46.6380 -4.1907 0.0000 -0.0000 20.9841 -13.7553 44.3234 -30.0419 0.0000 -0.0000 4.2991 -4.4764 17.2902 -6.0237 0.0000 -0.0000 -1.1306 -5.8649 -16.2990 -4.8614 0.0000 -0.0000 - 0.5942 -2.0879 23.6116 0.3741 -1.5258 174.6041 -5.9125 -2.6768 0.3273 -1.8438 -1.8891 -0.3243 11.0050 0.5346 3.4201 0.8154 3.8231 -0.6443 -11.5017 3.2866 1.2011 6.8229 -1.9192 -1.6268 5.0850 -21.0996 4.8247 7.3025 -50.4347 5.7693 0.0000 0.0000 24.4604 -2.2606 -2.7268 5.8543 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7720 26.4120 -5.2207 19.5792 49.1877 -14.4202 -0.0000 -0.0000 -24.2613 -5.8694 -13.1425 11.9180 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.4628 1.8122 -46.6144 -4.1884 0.0000 -0.0000 21.0006 -13.7594 44.3409 -30.0507 0.0000 -0.0000 4.3160 -4.4478 17.3122 -6.0168 0.0000 -0.0000 -1.1475 -5.8670 -16.2813 -4.8587 0.0000 -0.0000 - 0.5887 -2.0864 23.6116 0.3833 -1.5152 174.5711 -5.9407 -2.6881 0.3175 -1.8506 -1.8926 -0.3282 11.0211 0.5238 3.4036 0.8217 3.8401 -0.6513 -11.4739 3.3158 1.2140 6.8597 -1.9185 -1.6206 5.0799 -21.1340 4.8167 7.1979 -50.3554 5.7473 0.0000 0.0000 24.5341 -2.3426 -2.6527 5.8831 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7748 26.4349 -5.2133 19.6413 49.1647 -14.4527 -0.0000 -0.0000 -24.2180 -5.8778 -13.1279 11.9258 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.4677 1.8430 -46.5965 -4.1821 0.0000 -0.0000 21.0151 -13.7704 44.3600 -30.0438 0.0000 -0.0000 4.3310 -4.4198 17.3307 -6.0103 0.0000 -0.0000 -1.1632 -5.8694 -16.2689 -4.8567 0.0000 -0.0000 - 0.5831 -2.0851 23.6117 0.3934 -1.5055 174.5463 -5.9668 -2.6990 0.3062 -1.8566 -1.8950 -0.3319 11.0346 0.5112 3.3847 0.8287 3.8567 -0.6584 -11.4477 3.3475 1.2266 6.8976 -1.9194 -1.6136 5.0764 -21.1749 4.8056 7.0539 -50.2841 5.6968 0.0000 0.0000 24.5806 -2.4579 -2.6011 5.9036 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7778 26.4581 -5.2023 19.6762 49.1474 -14.4595 -0.0000 -0.0000 -24.1652 -5.8893 -13.1088 11.9358 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.4743 1.8743 -46.5837 -4.1722 0.0000 -0.0000 21.0271 -13.7874 44.3804 -30.0225 0.0000 -0.0000 4.3448 -4.3931 17.3444 -6.0035 0.0000 -0.0000 -1.1779 -5.8720 -16.2595 -4.8547 0.0000 -0.0000 - 0.5776 -2.0840 23.6117 0.4045 -1.4967 174.5284 -5.9915 -2.7099 0.2940 -1.8616 -1.8963 -0.3355 11.0460 0.4977 3.3643 0.8363 3.8723 -0.6656 -11.4226 3.3811 1.2388 6.9367 -1.9220 -1.6059 5.0730 -21.2211 4.7911 6.8737 -50.2233 5.6221 0.0000 0.0000 24.5941 -2.6092 -2.5678 5.9125 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.7792 26.4810 -5.1887 19.6827 49.1367 -14.4412 -0.0000 -0.0000 -24.1024 -5.9040 -13.0846 11.9466 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 2.4824 1.9057 -46.5753 -4.1586 0.0000 -0.0000 21.0363 -13.8085 44.4013 -29.9914 0.0000 -0.0000 4.3580 -4.3680 17.3529 -5.9972 0.0000 -0.0000 -1.1915 -5.8748 -16.2519 -4.8526 0.0000 -0.0000 - 0.5721 -2.0830 23.6117 0.4197 -1.4880 174.5159 -6.0109 -2.7192 0.2817 -1.8668 -1.8961 -0.3390 11.0552 0.4806 3.3430 0.8447 3.8890 -0.6733 -11.3980 3.4158 1.2509 6.9771 -1.9260 -1.5975 5.0692 -21.2698 4.7750 6.6611 -50.1778 5.5280 0.0000 0.0000 24.5684 -2.7965 -2.5473 5.9087 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7812 26.5039 -5.1710 19.6644 49.1315 -14.3992 -0.0000 -0.0000 -24.0302 -5.9211 -13.0565 11.9590 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.4951 1.9379 -46.5698 -4.1424 0.0000 -0.0000 21.0426 -13.8315 44.4212 -29.9575 0.0000 -0.0000 4.3747 -4.3430 17.3570 -5.9918 0.0000 -0.0000 -1.2035 -5.8780 -16.2450 -4.8505 0.0000 -0.0000 - 0.5668 -2.0821 23.6117 0.4359 -1.4805 174.5076 -6.0302 -2.7298 0.2688 -1.8698 -1.8956 -0.3419 11.0624 0.4673 3.3214 0.8535 3.9023 -0.6799 -11.3740 3.4511 1.2616 7.0189 -1.9312 -1.5888 5.0612 -21.3217 4.7539 6.4274 -50.1472 5.4237 0.0000 0.0000 24.4993 -3.0185 -2.5350 5.8914 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.7782 26.5247 -5.1537 19.6206 49.1326 -14.3376 -0.0000 -0.0000 -23.9468 -5.9400 -13.0267 11.9708 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.5079 1.9692 -46.5670 -4.1228 0.0000 -0.0000 21.0447 -13.8525 44.4386 -29.9285 0.0000 -0.0000 4.3919 -4.3198 17.3574 -5.9875 0.0000 -0.0000 -1.2144 -5.8813 -16.2384 -4.8481 0.0000 -0.0000 - 0.5616 -2.0813 23.6117 0.4572 -1.4731 174.5025 -6.0434 -2.7380 0.2569 -1.8726 -1.8935 -0.3440 11.0673 0.4527 3.3008 0.8633 3.9136 -0.6868 -11.3501 3.4870 1.2709 7.0615 -1.9374 -1.5802 5.0489 -21.3749 4.7299 6.1772 -50.1326 5.3119 0.0000 0.0000 24.3849 -3.2704 -2.5258 5.8609 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.7682 26.5414 -5.1388 19.5519 49.1432 -14.2592 -0.0000 -0.0000 -23.8504 -5.9583 -12.9963 11.9797 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.5248 2.0007 -46.5658 -4.1008 0.0000 -0.0000 21.0424 -13.8694 44.4514 -29.9129 0.0000 -0.0000 4.4142 -4.2967 17.3550 -5.9844 0.0000 -0.0000 -1.2236 -5.8847 -16.2321 -4.8460 0.0000 -0.0000 - 0.5566 -2.0807 23.6117 0.4817 -1.4660 174.4994 -6.0531 -2.7466 0.2455 -1.8744 -1.8919 -0.3460 11.0713 0.4412 3.2810 0.8727 3.9243 -0.6918 -11.3261 3.5212 1.2794 7.1051 -1.9437 -1.5728 5.0323 -21.4260 4.7045 5.9168 -50.1404 5.1992 0.0000 0.0000 24.2213 -3.5434 -2.5146 5.8227 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7635 26.5597 -5.1190 19.4798 49.1511 -14.1697 -0.0000 -0.0000 -23.7473 -5.9783 -12.9672 11.9927 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.5432 2.0312 -46.5653 -4.0776 0.0000 -0.0000 21.0364 -13.8794 44.4581 -29.9171 0.0000 -0.0000 4.4393 -4.2742 17.3511 -5.9819 0.0000 -0.0000 -1.2319 -5.8884 -16.2263 -4.8441 0.0000 -0.0000 - 0.5520 -2.0804 23.6116 0.4997 -1.4589 174.4984 -6.0703 -2.7533 0.2355 -1.8751 -1.8910 -0.3479 11.0754 0.4343 3.2632 0.8825 3.9290 -0.6960 -11.3031 3.5557 1.2866 7.1485 -1.9506 -1.5676 5.0079 -21.4776 4.6776 5.6519 -50.1639 5.0833 0.0000 0.0000 24.0144 -3.8286 -2.5049 5.7771 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.7512 26.5736 -5.1036 19.3924 49.1660 -14.0733 -0.0000 -0.0000 -23.6294 -5.9951 -12.9412 12.0012 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.5522 2.0602 -46.5662 -4.0523 0.0000 -0.0000 21.0261 -13.8804 44.4574 -29.9456 0.0000 -0.0000 4.4562 -4.2533 17.3467 -5.9784 0.0000 -0.0000 -1.2401 -5.8925 -16.2223 -4.8427 0.0000 -0.0000 - 0.5476 -2.0802 23.6116 0.5262 -1.4510 174.4992 -6.0756 -2.7559 0.2273 -1.8769 -1.8886 -0.3489 11.0777 0.4233 3.2485 0.8923 3.9350 -0.6997 -11.2798 3.5884 1.2916 7.1918 -1.9568 -1.5646 4.9782 -21.5264 4.6486 5.3920 -50.2061 4.9737 0.0000 0.0000 23.7645 -4.1150 -2.4965 5.7300 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.7402 26.5846 -5.0886 19.3081 49.1824 -13.9752 -0.0000 -0.0000 -23.5019 -6.0092 -12.9207 12.0108 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.5679 2.0892 -46.5689 -4.0272 0.0000 -0.0000 21.0129 -13.8733 44.4508 -29.9989 0.0000 -0.0000 4.4814 -4.2315 17.3421 -5.9754 0.0000 -0.0000 -1.2472 -5.8966 -16.2199 -4.8424 0.0000 -0.0000 - 0.5435 -2.0805 23.6115 0.5515 -1.4438 174.5022 -6.0807 -2.7568 0.2207 -1.8781 -1.8868 -0.3497 11.0799 0.4153 3.2365 0.9007 3.9376 -0.7015 -11.2566 3.6193 1.2951 7.2341 -1.9625 -1.5654 4.9432 -21.5741 4.6198 5.1395 -50.2627 4.8672 0.0000 0.0000 23.4794 -4.3911 -2.4961 5.6847 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7292 26.5937 -5.0751 19.2299 49.1982 -13.8793 -0.0000 -0.0000 -23.3649 -6.0198 -12.9070 12.0221 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.5803 2.1159 -46.5731 -4.0017 0.0000 -0.0000 20.9972 -13.8585 44.4380 -30.0735 0.0000 -0.0000 4.5037 -4.2116 17.3379 -5.9717 0.0000 -0.0000 -1.2543 -5.9011 -16.2202 -4.8428 0.0000 -0.0000 - 0.5397 -2.0811 23.6114 0.5716 -1.4369 174.5081 -6.0897 -2.7547 0.2160 -1.8791 -1.8853 -0.3503 11.0826 0.4089 3.2276 0.9087 3.9359 -0.7024 -11.2352 3.6502 1.2979 7.2754 -1.9693 -1.5713 4.9032 -21.6207 4.5913 4.8985 -50.3298 4.7634 0.0000 0.0000 23.1672 -4.6445 -2.5115 5.6436 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.7177 26.5976 -5.0647 19.1581 49.2181 -13.7893 -0.0000 -0.0000 -23.2155 -6.0237 -12.8996 12.0313 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.5856 2.1405 -46.5804 -3.9755 0.0000 -0.0000 20.9799 -13.8380 44.4217 -30.1627 0.0000 -0.0000 4.5186 -4.1937 17.3339 -5.9661 0.0000 -0.0000 -1.2618 -5.9060 -16.2239 -4.8442 0.0000 -0.0000 - 0.5364 -2.0822 23.6113 0.5894 -1.4310 174.5172 -6.0980 -2.7510 0.2118 -1.8800 -1.8840 -0.3507 11.0843 0.4028 3.2226 0.9154 3.9329 -0.7015 -11.2143 3.6784 1.2986 7.3153 -1.9746 -1.5815 4.8614 -21.6674 4.5651 4.6713 -50.4036 4.6612 0.0000 0.0000 22.8361 -4.8649 -2.5498 5.6092 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -0.7083 26.6010 -5.0564 19.1023 49.2339 -13.7063 -0.0000 -0.0000 -23.0596 -6.0234 -12.8984 12.0446 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.5874 2.1631 -46.5895 -3.9481 0.0000 -0.0000 20.9612 -13.8158 44.4028 -30.2568 0.0000 -0.0000 4.5287 -4.1786 17.3292 -5.9587 0.0000 -0.0000 -1.2702 -5.9115 -16.2303 -4.8461 0.0000 -0.0000 - 0.5332 -2.0835 23.6112 0.6092 -1.4249 174.5300 -6.1005 -2.7425 0.2091 -1.8817 -1.8819 -0.3503 11.0853 0.3938 3.2217 0.9210 3.9279 -0.7000 -11.1948 3.7058 1.2987 7.3541 -1.9804 -1.5971 4.8198 -21.7127 4.5413 4.4642 -50.4805 4.5636 0.0000 0.0000 22.4955 -5.0444 -2.6187 5.5812 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.7008 26.5992 -5.0498 19.0605 49.2534 -13.6335 -0.0000 -0.0000 -22.8941 -6.0157 -12.9040 12.0580 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.5915 2.1856 -46.6035 -3.9201 0.0000 -0.0000 20.9431 -13.7956 44.3874 -30.3453 0.0000 -0.0000 4.5391 -4.1641 17.3232 -5.9506 0.0000 -0.0000 -1.2780 -5.9176 -16.2393 -4.8489 0.0000 -0.0000 - 0.5305 -2.0852 23.6111 0.6249 -1.4218 174.5472 -6.1045 -2.7344 0.2063 -1.8825 -1.8802 -0.3498 11.0852 0.3865 3.2249 0.9252 3.9204 -0.6969 -11.1767 3.7316 1.2973 7.3914 -1.9862 -1.6175 4.7813 -21.7585 4.5203 4.2798 -50.5560 4.4714 0.0000 0.0000 22.1528 -5.1765 -2.7221 5.5594 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6966 26.5955 -5.0451 19.0338 49.2720 -13.5675 -0.0000 -0.0000 -22.7224 -6.0023 -12.9133 12.0728 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 2.5920 2.2050 -46.6194 -3.8897 0.0000 -0.0000 20.9249 -13.7807 44.3743 -30.4172 0.0000 -0.0000 4.5433 -4.1544 17.3155 -5.9409 0.0000 -0.0000 -1.2870 -5.9243 -16.2508 -4.8516 0.0000 -0.0000 - 0.5280 -2.0871 23.6110 0.6395 -1.4194 174.5683 -6.1068 -2.7244 0.2035 -1.8834 -1.8781 -0.3489 11.0845 0.3782 3.2323 0.9279 3.9116 -0.6930 -11.1603 3.7558 1.2956 7.4278 -1.9925 -1.6423 4.7479 -21.8046 4.5041 4.1204 -50.6266 4.3837 0.0000 0.0000 21.8170 -5.2584 -2.8633 5.5408 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6949 26.5894 -5.0405 19.0208 49.2911 -13.5092 -0.0000 -0.0000 -22.5462 -5.9834 -12.9250 12.0902 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 2.5927 2.2241 -46.6389 -3.8567 0.0000 -0.0000 20.9075 -13.7741 44.3680 -30.4653 0.0000 -0.0000 4.5449 -4.1466 17.3054 -5.9308 0.0000 -0.0000 -1.2958 -5.9316 -16.2638 -4.8544 0.0000 -0.0000 - 0.5257 -2.0891 23.6109 0.6530 -1.4186 174.5928 -6.1084 -2.7137 0.2010 -1.8840 -1.8754 -0.3477 11.0834 0.3689 3.2434 0.9289 3.9015 -0.6881 -11.1449 3.7788 1.2938 7.4633 -1.9996 -1.6706 4.7220 -21.8510 4.4939 3.9872 -50.6895 4.2994 0.0000 0.0000 21.4943 -5.2896 -3.0412 5.5229 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6967 26.5831 -5.0341 19.0201 49.3090 -13.4569 -0.0000 -0.0000 -22.3665 -5.9606 -12.9371 12.1086 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.5942 2.2427 -46.6618 -3.8214 0.0000 -0.0000 20.8913 -13.7768 44.3700 -30.4854 0.0000 -0.0000 4.5449 -4.1410 17.2930 -5.9213 0.0000 -0.0000 -1.3038 -5.9395 -16.2779 -4.8571 0.0000 -0.0000 - 0.5236 -2.0911 23.6108 0.6649 -1.4196 174.6198 -6.1097 -2.7044 0.1966 -1.8837 -1.8727 -0.3456 11.0802 0.3612 3.2602 0.9296 3.8901 -0.6822 -11.1312 3.8002 1.2914 7.4985 -2.0079 -1.7019 4.7066 -21.8989 4.4874 3.8871 -50.7410 4.2285 0.0000 0.0000 21.1879 -5.2754 -3.2506 5.5015 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.6970 26.5754 -5.0297 19.0202 49.3288 -13.4032 -0.0000 -0.0000 -22.1857 -5.9337 -12.9474 12.1280 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.5952 2.2610 -46.6826 -3.7811 0.0000 -0.0000 20.8734 -13.7896 44.3754 -30.4786 0.0000 -0.0000 4.5428 -4.1383 17.2791 -5.9120 0.0000 -0.0000 -1.3119 -5.9478 -16.2926 -4.8594 0.0000 -0.0000 - 0.5216 -2.0930 23.6108 0.6760 -1.4215 174.6483 -6.1115 -2.6962 0.1913 -1.8828 -1.8695 -0.3432 11.0770 0.3545 3.2814 0.9289 3.8784 -0.6754 -11.1187 3.8199 1.2888 7.5333 -2.0175 -1.7341 4.7020 -21.9477 4.4863 3.8183 -50.7816 4.1676 0.0000 0.0000 20.9007 -5.2203 -3.4846 5.4738 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.6993 26.5683 -5.0213 19.0237 49.3479 -13.3496 -0.0000 -0.0000 -22.0049 -5.9057 -12.9547 12.1478 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.5962 2.2800 -46.7017 -3.7364 0.0000 -0.0000 20.8536 -13.8103 44.3842 -30.4510 0.0000 -0.0000 4.5403 -4.1367 17.2641 -5.9038 0.0000 -0.0000 -1.3190 -5.9563 -16.3074 -4.8613 0.0000 -0.0000 - 0.5196 -2.0947 23.6108 0.6877 -1.4234 174.6763 -6.1122 -2.6896 0.1853 -1.8816 -1.8655 -0.3403 11.0729 0.3493 3.3085 0.9278 3.8666 -0.6686 -11.1073 3.8380 1.2864 7.5682 -2.0286 -1.7664 4.7090 -21.9966 4.4895 3.7804 -50.8115 4.1191 0.0000 0.0000 20.6327 -5.1331 -3.7336 5.4368 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7005 26.5632 -5.0100 19.0222 49.3661 -13.2906 -0.0000 -0.0000 -21.8265 -5.8776 -12.9576 12.1679 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.5976 2.3012 -46.7151 -3.6860 0.0000 -0.0000 20.8294 -13.8363 44.3914 -30.4132 0.0000 -0.0000 4.5396 -4.1348 17.2487 -5.8968 0.0000 -0.0000 -1.3251 -5.9648 -16.3212 -4.8629 0.0000 -0.0000 - 0.5176 -2.0961 23.6108 0.7006 -1.4250 174.7027 -6.1136 -2.6851 0.1795 -1.8796 -1.8603 -0.3374 11.0695 0.3464 3.3393 0.9259 3.8543 -0.6604 -11.0965 3.8547 1.2838 7.6032 -2.0409 -1.7975 4.7267 -22.0444 4.4948 3.7724 -50.8332 4.0842 0.0000 0.0000 20.3820 -5.0232 -3.9869 5.3888 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.7014 26.5615 -4.9938 19.0145 49.3825 -13.2243 -0.0000 -0.0000 -21.6526 -5.8519 -12.9557 12.1889 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 2.5998 2.3238 -46.7253 -3.6322 0.0000 -0.0000 20.8016 -13.8620 44.3971 -30.3784 0.0000 -0.0000 4.5427 -4.1317 17.2360 -5.8934 0.0000 -0.0000 -1.3291 -5.9725 -16.3357 -4.8645 0.0000 -0.0000 - 0.5155 -2.0971 23.6109 0.7144 -1.4266 174.7262 -6.1161 -2.6837 0.1721 -1.8760 -1.8552 -0.3332 11.0650 0.3473 3.3755 0.9246 3.8423 -0.6521 -11.0860 3.8691 1.2809 7.6380 -2.0551 -1.8263 4.7569 -22.0918 4.5034 3.7848 -50.8479 4.0585 0.0000 0.0000 20.1467 -4.9010 -4.2361 5.3284 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6968 26.5607 -4.9751 18.9896 49.4005 -13.1467 -0.0000 -0.0000 -21.4828 -5.8283 -12.9502 12.2085 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.6007 2.3476 -46.7241 -3.5737 0.0000 -0.0000 20.7662 -13.8845 44.3909 -30.3601 0.0000 -0.0000 4.5492 -4.1279 17.2280 -5.8922 0.0000 -0.0000 -1.3322 -5.9794 -16.3515 -4.8659 0.0000 -0.0000 - 0.5133 -2.0973 23.6110 0.7491 -1.4255 174.7462 -6.0970 -2.6825 0.1669 -1.8725 -1.8495 -0.3295 11.0577 0.3530 3.4151 0.9228 3.8290 -0.6429 -11.0740 3.8822 1.2775 7.6723 -2.0692 -1.8520 4.7882 -22.1328 4.5071 3.8175 -50.8651 4.0390 0.0000 0.0000 19.9220 -4.7731 -4.4723 5.2567 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.6935 26.5627 -4.9493 18.9546 49.4195 -13.0570 -0.0000 -0.0000 -21.3208 -5.8084 -12.9415 12.2304 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.6218 2.3764 -46.7162 -3.5134 0.0000 -0.0000 20.7243 -13.9006 44.3752 -30.3706 0.0000 -0.0000 4.5823 -4.1175 17.2249 -5.8978 0.0000 -0.0000 -1.3314 -5.9847 -16.3681 -4.8683 0.0000 -0.0000 - 0.5111 -2.0972 23.6111 0.7782 -1.4243 174.7622 -6.0890 -2.6856 0.1617 -1.8675 -1.8421 -0.3256 11.0534 0.3629 3.4570 0.9213 3.8152 -0.6324 -11.0621 3.8924 1.2731 7.7056 -2.0844 -1.8733 4.8301 -22.1743 4.5114 3.8529 -50.8788 4.0213 0.0000 0.0000 19.7041 -4.6530 -4.6906 5.1748 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.6820 26.5665 -4.9192 18.9014 49.4377 -12.9592 -0.0000 -0.0000 -21.1639 -5.7946 -12.9309 12.2514 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.6336 2.4045 -46.6986 -3.4499 0.0000 -0.0000 20.6742 -13.9051 44.3442 -30.4176 0.0000 -0.0000 4.6122 -4.1069 17.2293 -5.9054 0.0000 -0.0000 -1.3304 -5.9882 -16.3880 -4.8708 0.0000 -0.0000 - 0.5087 -2.0966 23.6112 0.8097 -1.4221 174.7762 -6.0829 -2.6901 0.1554 -1.8611 -1.8359 -0.3197 11.0508 0.3762 3.4994 0.9205 3.8026 -0.6223 -11.0506 3.8990 1.2682 7.7376 -2.0993 -1.8908 4.8720 -22.2116 4.5112 3.8805 -50.8998 3.9943 0.0000 0.0000 19.4882 -4.5435 -4.8883 5.0857 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6691 26.5723 -4.8828 18.8308 49.4561 -12.8474 -0.0000 -0.0000 -21.0160 -5.7851 -12.9203 12.2754 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.6454 2.4336 -46.6737 -3.3844 0.0000 -0.0000 20.6162 -13.8982 44.2982 -30.5032 0.0000 -0.0000 4.6466 -4.0942 17.2381 -5.9141 0.0000 -0.0000 -1.3297 -5.9904 -16.4104 -4.8734 0.0000 -0.0000 - 0.5063 -2.0956 23.6114 0.8411 -1.4189 174.7884 -6.0815 -2.6967 0.1495 -1.8534 -1.8291 -0.3131 11.0511 0.3918 3.5414 0.9192 3.7916 -0.6125 -11.0382 3.9023 1.2622 7.7674 -2.1143 -1.9040 4.9133 -22.2483 4.5054 3.8884 -50.9257 3.9513 0.0000 0.0000 19.2702 -4.4515 -5.0666 4.9931 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.6545 26.5826 -4.8404 18.7467 49.4709 -12.7226 -0.0000 -0.0000 -20.8791 -5.7827 -12.9108 12.3045 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.6545 2.4635 -46.6403 -3.3164 0.0000 -0.0000 20.5502 -13.8815 44.2371 -30.6232 0.0000 -0.0000 4.6826 -4.0799 17.2513 -5.9236 0.0000 -0.0000 -1.3293 -5.9912 -16.4353 -4.8763 0.0000 -0.0000 - 0.5037 -2.0940 23.6115 0.8887 -1.4144 174.8006 -6.0646 -2.7031 0.1443 -1.8462 -1.8213 -0.3072 11.0499 0.4106 3.5824 0.9193 3.7784 -0.6022 -11.0250 3.9046 1.2557 7.7944 -2.1291 -1.9134 4.9501 -22.2756 4.4918 3.8570 -50.9686 3.8772 0.0000 0.0000 19.0479 -4.3761 -5.2271 4.8997 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.6367 26.5909 -4.7921 18.6494 49.4915 -12.5924 -0.0000 -0.0000 -20.7486 -5.7847 -12.9046 12.3349 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.6799 2.4962 -46.6032 -3.2474 0.0000 -0.0000 20.4784 -13.8597 44.1676 -30.7668 0.0000 -0.0000 4.7383 -4.0617 17.2669 -5.9363 0.0000 -0.0000 -1.3281 -5.9904 -16.4624 -4.8799 0.0000 -0.0000 - 0.5011 -2.0917 23.6117 0.9632 -1.4097 174.8164 -6.0194 -2.7053 0.1376 -1.8394 -1.8161 -0.3012 11.0446 0.4316 3.6202 0.9211 3.7650 -0.5909 -11.0103 3.9036 1.2472 7.8182 -2.1420 -1.9192 4.9818 -22.2939 4.4690 3.7760 -51.0300 3.7673 0.0000 0.0000 18.8168 -4.3189 -5.3751 4.8107 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6183 26.5920 -4.7408 18.5353 49.5256 -12.4492 -0.0000 -0.0000 -20.6255 -5.7872 -12.9037 12.3664 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.7352 2.5311 -46.5669 -3.1797 0.0000 -0.0000 20.4034 -13.8383 44.0958 -30.9175 0.0000 -0.0000 4.8239 -4.0404 17.2784 -5.9511 0.0000 -0.0000 -1.3268 -5.9882 -16.4883 -4.8842 0.0000 -0.0000 - 0.4983 -2.0898 23.6119 0.9929 -1.4049 174.8337 -6.0330 -2.7169 0.1301 -1.8289 -1.8031 -0.2945 11.0536 0.4507 3.6554 0.9226 3.7523 -0.5824 -10.9994 3.9016 1.2391 7.8381 -2.1566 -1.9230 5.0019 -22.3158 4.4376 3.6311 -51.0979 3.6080 0.0000 0.0000 18.5765 -4.2783 -5.5191 4.7289 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6026 26.6040 -4.6824 18.4135 49.5472 -12.2970 -0.0000 -0.0000 -20.5148 -5.7967 -12.9032 12.4049 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.7420 2.5654 -46.5229 -3.1019 0.0000 -0.0000 20.3215 -13.8204 44.0173 -31.0567 0.0000 -0.0000 4.8592 -4.0239 17.2918 -5.9594 0.0000 -0.0000 -1.3302 -5.9869 -16.5193 -4.8876 0.0000 -0.0000 - 0.4955 -2.0872 23.6121 1.0523 -1.4019 174.8583 -6.0128 -2.7233 0.1202 -1.8201 -1.7934 -0.2886 11.0574 0.4703 3.6856 0.9261 3.7385 -0.5732 -10.9871 3.8977 1.2296 7.8543 -2.1702 -1.9246 5.0155 -22.3272 4.3979 3.4077 -51.1874 3.3913 0.0000 0.0000 18.3257 -4.2494 -5.6631 4.6571 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.5860 26.6071 -4.6220 18.2803 49.5836 -12.1376 -0.0000 -0.0000 -20.4111 -5.8058 -12.9086 12.4440 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.7852 2.6010 -46.4839 -3.0255 0.0000 -0.0000 20.2404 -13.8156 43.9473 -31.1647 0.0000 -0.0000 4.9266 -4.0067 17.2947 -5.9693 0.0000 -0.0000 -1.3341 -5.9851 -16.5464 -4.8915 0.0000 -0.0000 - 0.4926 -2.0841 23.6123 1.1379 -1.4022 174.8928 -5.9629 -2.7268 0.1071 -1.8115 -1.7862 -0.2832 11.0556 0.4901 3.7087 0.9302 3.7245 -0.5631 -10.9732 3.8913 1.2183 7.8666 -2.1829 -1.9248 5.0174 -22.3330 4.3464 3.1008 -51.2939 3.1099 0.0000 0.0000 18.0663 -4.2264 -5.8146 4.5950 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -0.5717 26.6049 -4.5572 18.1464 49.6274 -11.9760 -0.0000 -0.0000 -20.3170 -5.8171 -12.9184 12.4865 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.8632 2.6358 -46.4542 -2.9518 0.0000 -0.0000 20.1632 -13.8281 43.8911 -31.2255 0.0000 -0.0000 5.0218 -3.9913 17.2837 -5.9800 0.0000 -0.0000 -1.3394 -5.9833 -16.5688 -4.8958 0.0000 -0.0000 - 0.4896 -2.0816 23.6126 1.1785 -1.4006 174.9313 -5.9694 -2.7349 0.0943 -1.8024 -1.7704 -0.2774 11.0689 0.5027 3.7278 0.9357 3.7129 -0.5596 -10.9651 3.8833 1.2089 7.8753 -2.1967 -1.9248 5.0131 -22.3381 4.2923 2.7035 -51.4090 2.7669 0.0000 0.0000 17.7931 -4.2073 -5.9743 4.5466 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5610 26.6071 -4.4881 18.0011 49.6682 -11.8043 -0.0000 -0.0000 -20.2321 -5.8285 -12.9256 12.5287 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.8940 2.6747 -46.4157 -2.8638 0.0000 -0.0000 20.0804 -13.8606 43.8359 -31.2321 0.0000 -0.0000 5.0648 -3.9792 17.2659 -5.9831 0.0000 -0.0000 -1.3487 -5.9844 -16.5904 -4.8995 0.0000 -0.0000 - 0.4868 -2.0784 23.6130 1.2588 -1.4058 174.9796 -5.9290 -2.7378 0.0757 -1.7933 -1.7625 -0.2736 11.0718 0.5185 3.7417 0.9412 3.6983 -0.5503 -10.9536 3.8761 1.1953 7.8813 -2.2111 -1.9243 4.9995 -22.3363 4.2259 2.2150 -51.5378 2.3534 0.0000 0.0000 17.5148 -4.1836 -6.1487 4.5050 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.5509 26.6027 -4.4207 17.8560 49.7196 -11.6287 -0.0000 -0.0000 -20.1565 -5.8391 -12.9353 12.5711 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9768 2.7077 -46.3943 -2.7865 0.0000 -0.0000 20.0092 -13.9107 43.8043 -31.1827 0.0000 -0.0000 5.1510 -3.9717 17.2320 -5.9889 0.0000 -0.0000 -1.3596 -5.9854 -16.6040 -4.9037 0.0000 -0.0000 - 0.4839 -2.0759 23.6133 1.2975 -1.4090 175.0324 -5.9372 -2.7446 0.0588 -1.7866 -1.7468 -0.2686 11.0874 0.5274 3.7485 0.9483 3.6877 -0.5473 -10.9475 3.8660 1.1832 7.8849 -2.2278 -1.9242 4.9777 -22.3380 4.1562 1.6452 -51.6674 1.8838 0.0000 0.0000 17.2252 -4.1560 -6.3336 4.4736 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.5451 26.6008 -4.3504 17.7015 49.7686 -11.4426 -0.0000 -0.0000 -20.0898 -5.8480 -12.9396 12.6092 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0156 2.7441 -46.3620 -2.6971 0.0000 -0.0000 19.9330 -13.9787 43.7676 -31.0894 0.0000 -0.0000 5.1891 -3.9673 17.1846 -5.9882 0.0000 -0.0000 -1.3732 -5.9902 -16.6104 -4.9079 0.0000 -0.0000 - 0.4811 -2.0731 23.6137 1.3514 -1.4150 175.0904 -5.9263 -2.7463 0.0395 -1.7806 -1.7368 -0.2650 11.0979 0.5377 3.7517 0.9560 3.6765 -0.5438 -10.9405 3.8553 1.1694 7.8872 -2.2455 -1.9244 4.9513 -22.3367 4.0809 0.9954 -51.8015 1.3557 0.0000 0.0000 16.9314 -4.1185 -6.5291 4.4451 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.5416 26.5965 -4.2780 17.5517 49.8198 -11.2575 -0.0000 -0.0000 -20.0312 -5.8562 -12.9414 12.6442 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 3.0760 2.7764 -46.3418 -2.6163 0.0000 -0.0000 19.8664 -14.0543 43.7440 -30.9707 0.0000 -0.0000 5.2435 -3.9656 17.1253 -5.9881 0.0000 -0.0000 -1.3885 -5.9959 -16.6096 -4.9129 0.0000 -0.0000 - 0.4784 -2.0704 23.6140 1.3989 -1.4210 175.1499 -5.9216 -2.7460 0.0211 -1.7760 -1.7269 -0.2625 11.1095 0.5462 3.7507 0.9639 3.6670 -0.5402 -10.9344 3.8436 1.1531 7.8898 -2.2649 -1.9242 4.9185 -22.3362 3.9995 0.2845 -51.9334 0.7849 0.0000 0.0000 16.6325 -4.0737 -6.7296 4.4182 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.5416 26.5946 -4.2066 17.4002 49.8688 -11.0634 -0.0000 -0.0000 -19.9823 -5.8622 -12.9372 12.6746 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.1303 2.8067 -46.3219 -2.5393 0.0000 -0.0000 19.8031 -14.1301 43.7170 -30.8534 0.0000 -0.0000 5.2907 -3.9652 17.0560 -5.9872 0.0000 -0.0000 -1.4051 -6.0036 -16.6007 -4.9187 0.0000 -0.0000 - 0.4760 -2.0677 23.6142 1.4413 -1.4288 175.2091 -5.9208 -2.7425 0.0033 -1.7732 -1.7212 -0.2639 11.1205 0.5533 3.7496 0.9725 3.6611 -0.5365 -10.9283 3.8304 1.1346 7.8931 -2.2863 -1.9238 4.8862 -22.3378 3.9178 -0.4803 -52.0595 0.1780 0.0000 0.0000 16.3316 -4.0240 -6.9300 4.3899 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.5399 26.5926 -4.1367 17.2492 49.9155 -10.8687 -0.0000 -0.0000 -19.9391 -5.8669 -12.9282 12.6980 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 3.1800 2.8292 -46.3097 -2.4743 0.0000 -0.0000 19.7482 -14.1928 43.6866 -30.7669 0.0000 -0.0000 5.3334 -3.9680 16.9832 -5.9871 0.0000 -0.0000 -1.4234 -6.0120 -16.5880 -4.9253 0.0000 -0.0000 - 0.4734 -2.0654 23.6144 1.4698 -1.4270 175.2616 -5.9334 -2.7357 -0.0075 -1.7727 -1.7125 -0.2600 11.1335 0.5660 3.7393 0.9808 3.6518 -0.5346 -10.9244 3.8172 1.1159 7.8988 -2.3097 -1.9229 4.8415 -22.3424 3.8279 -1.2647 -52.1767 -0.4414 0.0000 0.0000 16.0280 -3.9733 -7.1241 4.3592 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.5476 26.5987 -4.0613 17.1056 49.9525 -10.6707 -0.0000 -0.0000 -19.9035 -5.8698 -12.9112 12.7160 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 3.2073 2.8600 -46.2845 -2.4082 0.0000 -0.0000 19.6880 -14.2396 43.6301 -30.7416 0.0000 -0.0000 5.3604 -3.9618 16.9011 -5.9845 0.0000 -0.0000 -1.4400 -6.0229 -16.5608 -4.9342 0.0000 -0.0000 - 0.4711 -2.0633 23.6145 1.4839 -1.4263 175.3069 -5.9606 -2.7262 -0.0151 -1.7735 -1.7081 -0.2595 11.1464 0.5745 3.7324 0.9897 3.6498 -0.5343 -10.9195 3.8025 1.0954 7.9070 -2.3357 -1.9210 4.8066 -22.3536 3.7447 -2.0718 -52.2798 -1.0683 0.0000 0.0000 15.7254 -3.9324 -7.3063 4.3261 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.5508 26.6108 -3.9888 16.9626 49.9782 -10.4714 -0.0000 -0.0000 -19.8736 -5.8730 -12.8902 12.7295 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.2165 2.8794 -46.2679 -2.3604 0.0000 -0.0000 19.6378 -14.2518 43.5619 -30.8000 0.0000 -0.0000 5.3739 -3.9584 16.8251 -5.9822 0.0000 -0.0000 -1.4593 -6.0337 -16.5327 -4.9434 0.0000 -0.0000 - 0.4687 -2.0611 23.6144 1.5062 -1.4178 175.3428 -5.9740 -2.7102 -0.0161 -1.7788 -1.7059 -0.2578 11.1566 0.5898 3.7216 0.9966 3.6458 -0.5331 -10.9132 3.7882 1.0732 7.9194 -2.3622 -1.9176 4.7648 -22.3678 3.6569 -2.8740 -52.3719 -1.6922 0.0000 0.0000 15.4284 -3.9053 -7.4731 4.2877 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.5569 26.6287 -3.9138 16.8315 49.9956 -10.2776 -0.0000 -0.0000 -19.8466 -5.8767 -12.8662 12.7384 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.2274 2.9019 -46.2489 -2.3238 0.0000 -0.0000 19.5887 -14.2315 43.4705 -30.9585 0.0000 -0.0000 5.3987 -3.9451 16.7524 -5.9833 0.0000 -0.0000 -1.4758 -6.0441 -16.4991 -4.9550 0.0000 -0.0000 - 0.4667 -2.0590 23.6142 1.5148 -1.4111 175.3690 -6.0008 -2.6942 -0.0117 -1.7846 -1.7040 -0.2573 11.1644 0.5989 3.7128 1.0051 3.6478 -0.5340 -10.9066 3.7742 1.0494 7.9358 -2.3912 -1.9128 4.7228 -22.3894 3.5677 -3.6549 -52.4492 -2.2930 0.0000 0.0000 15.1360 -3.9045 -7.6202 4.2489 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.5643 26.6508 -3.8383 16.7050 50.0060 -10.0861 -0.0000 -0.0000 -19.8193 -5.8786 -12.8408 12.7417 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.2197 2.9117 -46.2332 -2.3066 0.0000 -0.0000 19.5473 -14.1709 43.3601 -31.2198 0.0000 -0.0000 5.4120 -3.9349 16.6873 -5.9859 0.0000 -0.0000 -1.4943 -6.0532 -16.4638 -4.9665 0.0000 -0.0000 - 0.4645 -2.0569 23.6139 1.5254 -1.3951 175.3824 -6.0222 -2.6730 -0.0004 -1.7940 -1.7041 -0.2563 11.1699 0.6160 3.7007 1.0126 3.6490 -0.5332 -10.8991 3.7601 1.0253 7.9568 -2.4198 -1.9057 4.6845 -22.4154 3.4848 -4.4170 -52.5144 -2.8774 0.0000 0.0000 14.8541 -3.9371 -7.7451 4.2115 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.5731 26.6773 -3.7589 16.5898 50.0094 -9.9057 -0.0000 -0.0000 -19.7891 -5.8817 -12.8167 12.7417 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.2072 2.9266 -46.2159 -2.2995 0.0000 -0.0000 19.5078 -14.0788 43.2337 -31.5772 0.0000 -0.0000 5.4296 -3.9133 16.6320 -5.9901 0.0000 -0.0000 -1.5107 -6.0613 -16.4266 -4.9796 0.0000 -0.0000 - 0.4623 -2.0547 23.6135 1.5337 -1.3762 175.3853 -6.0456 -2.6506 0.0149 -1.8045 -1.7066 -0.2559 11.1760 0.6345 3.6897 1.0171 3.6534 -0.5319 -10.8897 3.7477 0.9999 7.9820 -2.4492 -1.8969 4.6455 -22.4482 3.4021 -5.1443 -52.5663 -3.4341 0.0000 0.0000 14.5850 -4.0120 -7.8490 4.1778 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.5791 26.7092 -3.6792 16.4846 50.0046 -9.7378 -0.0000 -0.0000 -19.7543 -5.8877 -12.7974 12.7410 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.1889 2.9388 -46.1995 -2.3049 0.0000 -0.0000 19.4735 -13.9606 43.0992 -32.0073 0.0000 -0.0000 5.4472 -3.8880 16.5871 -5.9954 0.0000 -0.0000 -1.5276 -6.0676 -16.3895 -4.9928 0.0000 -0.0000 - 0.4601 -2.0524 23.6130 1.5398 -1.3540 175.3786 -6.0671 -2.6250 0.0327 -1.8168 -1.7110 -0.2551 11.1739 0.6545 3.6806 1.0243 3.6560 -0.5320 -10.8791 3.7404 0.9759 8.0116 -2.4790 -1.8869 4.6104 -22.4851 3.3253 -5.8419 -52.6060 -3.9686 0.0000 0.0000 14.3333 -4.1344 -7.9319 4.1512 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5893 26.7527 -3.6007 16.3777 49.9921 -9.5609 -0.0000 -0.0000 -19.7196 -5.8934 -12.7806 12.7431 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.1667 2.9517 -46.1787 -2.3182 0.0000 -0.0000 19.4422 -13.8300 42.9609 -32.4768 0.0000 -0.0000 5.4645 -3.8583 16.5500 -6.0018 0.0000 -0.0000 -1.5438 -6.0722 -16.3513 -5.0060 0.0000 -0.0000 - 0.4578 -2.0500 23.6124 1.5427 -1.3310 175.3633 -6.0930 -2.5999 0.0525 -1.8282 -1.7170 -0.2548 11.1714 0.6731 3.6721 1.0300 3.6611 -0.5314 -10.8674 3.7382 0.9530 8.0443 -2.5095 -1.8761 4.5792 -22.5264 3.2521 -6.5035 -52.6349 -4.4733 0.0000 0.0000 14.1002 -4.3098 -7.9956 4.1346 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6023 26.8023 -3.5231 16.2709 49.9777 -9.3837 -0.0000 -0.0000 -19.6795 -5.8999 -12.7687 12.7463 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.1421 2.9652 -46.1524 -2.3341 0.0000 -0.0000 19.4137 -13.7005 42.8290 -32.9435 0.0000 -0.0000 5.4807 -3.8270 16.5191 -6.0089 0.0000 -0.0000 -1.5602 -6.0755 -16.3108 -5.0186 0.0000 -0.0000 - 0.4553 -2.0474 23.6118 1.5431 -1.3076 175.3432 -6.1221 -2.5797 0.0702 -1.8406 -1.7229 -0.2542 11.1695 0.6967 3.6652 1.0349 3.6684 -0.5328 -10.8563 3.7352 0.9300 8.0801 -2.5377 -1.8637 4.5457 -22.5775 3.1840 -7.1375 -52.6520 -4.9643 0.0000 0.0000 13.8922 -4.5355 -8.0454 4.1290 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6109 26.8522 -3.4420 16.1761 49.9592 -9.2310 -0.0000 -0.0000 -19.6290 -5.9169 -12.7663 12.7534 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.1201 2.9795 -46.1371 -2.3548 0.0000 -0.0000 19.3949 -13.5823 42.7285 -33.3612 0.0000 -0.0000 5.4940 -3.7950 16.5004 -6.0127 0.0000 -0.0000 -1.5791 -6.0765 -16.2781 -5.0303 0.0000 -0.0000 - 0.4526 -2.0446 23.6113 1.5409 -1.2871 175.3188 -6.1569 -2.5626 0.0845 -1.8508 -1.7298 -0.2550 11.1679 0.7168 3.6597 1.0401 3.6770 -0.5321 -10.8462 3.7404 0.9100 8.1173 -2.5670 -1.8517 4.5152 -22.6271 3.1201 -7.7472 -52.6650 -5.4368 0.0000 0.0000 13.7086 -4.8098 -8.0804 4.1359 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6288 26.9057 -3.3574 16.0835 49.9461 -9.0820 -0.0000 -0.0000 -19.5683 -5.9285 -12.7681 12.7592 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.1016 2.9958 -46.1137 -2.3701 0.0000 -0.0000 19.3784 -13.4938 42.6510 -33.6882 0.0000 -0.0000 5.5059 -3.7652 16.4825 -6.0165 0.0000 -0.0000 -1.5982 -6.0770 -16.2415 -5.0408 0.0000 -0.0000 - 0.4498 -2.0415 23.6110 1.5370 -1.2713 175.2928 -6.1965 -2.5527 0.0937 -1.8594 -1.7359 -0.2559 11.1678 0.7346 3.6555 1.0456 3.6879 -0.5319 -10.8378 3.7503 0.8927 8.1553 -2.5950 -1.8404 4.4873 -22.6764 3.0616 -8.3396 -52.6758 -5.8973 0.0000 0.0000 13.5506 -5.1278 -8.1031 4.1562 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6519 26.9617 -3.2712 15.9901 49.9361 -8.9363 -0.0000 -0.0000 -19.5006 -5.9458 -12.7752 12.7685 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.0904 3.0127 -46.0911 -2.3805 0.0000 -0.0000 19.3680 -13.4420 42.6108 -33.8896 0.0000 -0.0000 5.5167 -3.7400 16.4670 -6.0188 0.0000 -0.0000 -1.6186 -6.0769 -16.2052 -5.0499 0.0000 -0.0000 - 0.4467 -2.0381 23.6108 1.5321 -1.2598 175.2655 -6.2389 -2.5482 0.0984 -1.8662 -1.7418 -0.2565 11.1670 0.7509 3.6536 1.0519 3.6990 -0.5335 -10.8300 3.7661 0.8781 8.1922 -2.6225 -1.8304 4.4613 -22.7278 3.0104 -8.9282 -52.6799 -6.3609 0.0000 0.0000 13.4230 -5.4786 -8.1209 4.1863 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6737 27.0225 -3.1899 15.8868 49.9281 -8.7874 -0.0000 -0.0000 -19.4285 -5.9670 -12.7852 12.7816 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0874 3.0322 -46.0695 -2.3826 0.0000 -0.0000 19.3629 -13.4322 42.6114 -33.9483 0.0000 -0.0000 5.5264 -3.7188 16.4522 -6.0186 0.0000 -0.0000 -1.6398 -6.0765 -16.1679 -5.0580 0.0000 -0.0000 - 0.4436 -2.0346 23.6108 1.5266 -1.2544 175.2385 -6.2845 -2.5508 0.0967 -1.8724 -1.7474 -0.2571 11.1689 0.7642 3.6538 1.0591 3.7116 -0.5354 -10.8240 3.7873 0.8662 8.2272 -2.6491 -1.8223 4.4357 -22.7762 2.9648 -9.5189 -52.6843 -6.8305 0.0000 0.0000 13.3239 -5.8508 -8.1337 4.2254 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6963 27.0841 -3.1121 15.7755 49.9260 -8.6386 -0.0000 -0.0000 -19.3510 -5.9906 -12.7970 12.7958 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.0932 3.0519 -46.0500 -2.3771 0.0000 -0.0000 19.3638 -13.4640 42.6521 -33.8642 0.0000 -0.0000 5.5352 -3.7040 16.4380 -6.0157 0.0000 -0.0000 -1.6627 -6.0763 -16.1306 -5.0648 0.0000 -0.0000 - 0.4402 -2.0308 23.6109 1.5212 -1.2530 175.2105 -6.3333 -2.5580 0.0901 -1.8759 -1.7528 -0.2581 11.1734 0.7751 3.6564 1.0664 3.7247 -0.5371 -10.8201 3.8152 0.8572 8.2586 -2.6752 -1.8166 4.4050 -22.8181 2.9212 -10.1154 -52.6921 -7.3108 0.0000 0.0000 13.2529 -6.2298 -8.1436 4.2699 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.7252 27.1465 -3.0331 15.6651 49.9298 -8.4964 -0.0000 -0.0000 -19.2682 -6.0172 -12.8081 12.8095 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.1064 3.0741 -46.0318 -2.3632 0.0000 -0.0000 19.3698 -13.5325 42.7283 -33.6570 0.0000 -0.0000 5.5443 -3.6929 16.4224 -6.0111 0.0000 -0.0000 -1.6857 -6.0769 -16.0902 -5.0708 0.0000 -0.0000 - 0.4368 -2.0269 23.6111 1.5175 -1.2552 175.1831 -6.3838 -2.5689 0.0788 -1.8792 -1.7579 -0.2609 11.1843 0.7834 3.6603 1.0734 3.7399 -0.5383 -10.8191 3.8455 0.8505 8.2860 -2.6992 -1.8133 4.3854 -22.8518 2.8813 -10.7063 -52.7082 -7.7699 0.0000 0.0000 13.1988 -6.6130 -8.1481 4.3201 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.7581 27.2046 -2.9569 15.5486 49.9435 -8.3545 -0.0000 -0.0000 -19.1833 -6.0432 -12.8188 12.8221 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.1266 3.0977 -46.0121 -2.3424 0.0000 -0.0000 19.3786 -13.6295 42.8265 -33.3611 0.0000 -0.0000 5.5549 -3.6852 16.4072 -6.0051 0.0000 -0.0000 -1.7088 -6.0783 -16.0501 -5.0760 0.0000 -0.0000 - 0.4333 -2.0222 23.6114 1.5522 -1.2610 175.1517 -6.3870 -2.5798 0.0675 -1.8853 -1.7609 -0.2626 11.1880 0.7836 3.6685 1.0812 3.7576 -0.5400 -10.8158 3.8812 0.8453 8.3075 -2.7208 -1.8126 4.3531 -22.8702 2.8397 -11.3141 -52.7365 -8.2570 0.0000 0.0000 13.1714 -6.9733 -8.1546 4.3704 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.7877 27.2547 -2.8849 15.4336 49.9714 -8.2255 -0.0000 -0.0000 -19.0947 -6.0704 -12.8295 12.8315 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 3.1910 3.1226 -45.9907 -2.3222 0.0000 -0.0000 19.3921 -13.7424 42.9404 -33.0217 0.0000 -0.0000 5.6103 -3.6766 16.3917 -6.0049 0.0000 -0.0000 -1.7287 -6.0798 -16.0039 -5.0812 0.0000 -0.0000 - 0.4302 -2.0183 23.6117 1.5454 -1.2692 175.1192 -6.4405 -2.5918 0.0547 -1.8916 -1.7672 -0.2633 11.2039 0.7859 3.6726 1.0918 3.7686 -0.5416 -10.8189 3.9240 0.8444 8.3237 -2.7435 -1.8152 4.3209 -22.8785 2.8058 -11.9399 -52.7717 -8.7554 0.0000 0.0000 13.1644 -7.3046 -8.1594 4.4183 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.8247 27.3144 -2.8202 15.3045 49.9948 -8.0784 -0.0000 -0.0000 -19.0152 -6.0954 -12.8308 12.8410 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.2102 3.1401 -45.9768 -2.3027 0.0000 -0.0000 19.4106 -13.8479 43.0594 -32.6878 0.0000 -0.0000 5.6176 -3.6758 16.3805 -5.9955 0.0000 -0.0000 -1.7536 -6.0829 -15.9615 -5.0842 0.0000 -0.0000 - 0.4270 -2.0142 23.6120 1.5450 -1.2751 175.0823 -6.4896 -2.6038 0.0435 -1.8937 -1.7707 -0.2654 11.2219 0.7852 3.6794 1.1005 3.7844 -0.5436 -10.8232 3.9651 0.8441 8.3334 -2.7629 -1.8192 4.2923 -22.8789 2.7722 -12.5533 -52.8160 -9.2305 0.0000 0.0000 13.1687 -7.6077 -8.1665 4.4642 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.8630 27.3644 -2.7576 15.1805 50.0281 -7.9444 -0.0000 -0.0000 -18.9361 -6.1183 -12.8318 12.8462 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.2308 3.1596 -45.9587 -2.2825 0.0000 -0.0000 19.4268 -13.9393 43.1638 -32.4052 0.0000 -0.0000 5.6333 -3.6714 16.3678 -5.9887 0.0000 -0.0000 -1.7751 -6.0876 -15.9128 -5.0866 0.0000 -0.0000 - 0.4239 -2.0097 23.6122 1.5895 -1.2800 175.0401 -6.4801 -2.6083 0.0389 -1.9019 -1.7689 -0.2659 11.2308 0.7698 3.6873 1.1102 3.8047 -0.5484 -10.8254 4.0072 0.8458 8.3369 -2.7773 -1.8246 4.2648 -22.8599 2.7414 -13.1643 -52.8787 -9.7009 0.0000 0.0000 13.1866 -7.8709 -8.1741 4.5072 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.8982 27.4067 -2.6993 15.0622 50.0705 -7.8207 -0.0000 -0.0000 -18.8637 -6.1395 -12.8329 12.8520 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.2938 3.1786 -45.9393 -2.2728 0.0000 -0.0000 19.4434 -14.0047 43.2476 -32.2110 0.0000 -0.0000 5.7007 -3.6607 16.3612 -5.9899 0.0000 -0.0000 -1.7917 -6.0911 -15.8635 -5.0889 0.0000 -0.0000 - 0.4212 -2.0060 23.6123 1.5860 -1.2838 174.9954 -6.5253 -2.6108 0.0335 -1.9122 -1.7772 -0.2657 11.2548 0.7699 3.6895 1.1182 3.8133 -0.5485 -10.8320 4.0552 0.8486 8.3339 -2.7932 -1.8319 4.2320 -22.8389 2.7104 -13.7515 -52.9407 -10.1469 0.0000 0.0000 13.2173 -8.0956 -8.1879 4.5446 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.9350 27.4557 -2.6528 14.9349 50.1081 -7.6872 -0.0000 -0.0000 -18.8004 -6.1567 -12.8276 12.8539 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.2977 3.1870 -45.9269 -2.2716 0.0000 -0.0000 19.4611 -14.0268 43.3044 -32.1300 0.0000 -0.0000 5.7116 -3.6553 16.3619 -5.9794 0.0000 -0.0000 -1.8151 -6.0962 -15.8205 -5.0872 0.0000 -0.0000 - 0.4186 -2.0024 23.6121 1.5864 -1.2816 174.9439 -6.5663 -2.6074 0.0379 -1.9193 -1.7837 -0.2685 11.2772 0.7658 3.6911 1.1257 3.8241 -0.5498 -10.8406 4.1023 0.8533 8.3257 -2.8054 -1.8394 4.1946 -22.8083 2.6813 -14.3078 -53.0127 -10.5675 0.0000 0.0000 13.2597 -8.2812 -8.2062 4.5782 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.9757 27.5006 -2.6061 14.8189 50.1477 -7.5652 -0.0000 -0.0000 -18.7451 -6.1705 -12.8234 12.8563 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.2954 3.1967 -45.9122 -2.2764 0.0000 -0.0000 19.4741 -14.0089 43.3290 -32.1730 0.0000 -0.0000 5.7294 -3.6424 16.3657 -5.9755 0.0000 -0.0000 -1.8318 -6.1013 -15.7738 -5.0845 0.0000 -0.0000 - 0.4162 -1.9990 23.6119 1.5894 -1.2753 174.8892 -6.5991 -2.5980 0.0472 -1.9291 -1.7902 -0.2704 11.2983 0.7586 3.6914 1.1332 3.8362 -0.5525 -10.8513 4.1488 0.8581 8.3131 -2.8135 -1.8464 4.1543 -22.7728 2.6510 -14.8115 -53.0913 -10.9411 0.0000 0.0000 13.3124 -8.4349 -8.2289 4.6079 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.0124 27.5420 -2.5664 14.7066 50.1886 -7.4519 -0.0000 -0.0000 -18.6982 -6.1821 -12.8207 12.8587 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.2877 3.2043 -45.8968 -2.2898 0.0000 -0.0000 19.4834 -13.9529 43.3208 -32.3338 0.0000 -0.0000 5.7495 -3.6249 16.3785 -5.9718 0.0000 -0.0000 -1.8472 -6.1053 -15.7333 -5.0796 0.0000 -0.0000 - 0.4139 -1.9957 23.6115 1.5930 -1.2663 174.8331 -6.6273 -2.5844 0.0597 -1.9404 -1.7969 -0.2722 11.3188 0.7506 3.6885 1.1389 3.8472 -0.5550 -10.8635 4.1949 0.8645 8.2966 -2.8183 -1.8526 4.1201 -22.7348 2.6268 -15.2544 -53.1728 -11.2589 0.0000 0.0000 13.3761 -8.5665 -8.2563 4.6349 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.0495 27.5831 -2.5304 14.5994 50.2277 -7.3432 -0.0000 -0.0000 -18.6621 -6.1919 -12.8216 12.8636 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.2746 3.2090 -45.8823 -2.3113 0.0000 -0.0000 19.4900 -13.8652 43.2866 -32.5907 0.0000 -0.0000 5.7701 -3.6047 16.3978 -5.9697 0.0000 -0.0000 -1.8602 -6.1082 -15.6978 -5.0719 0.0000 -0.0000 - 0.4117 -1.9926 23.6109 1.5963 -1.2550 174.7769 -6.6517 -2.5677 0.0751 -1.9520 -1.8039 -0.2741 11.3374 0.7420 3.6831 1.1437 3.8577 -0.5579 -10.8783 4.2413 0.8716 8.2777 -2.8198 -1.8578 4.0852 -22.6967 2.6041 -15.6237 -53.2559 -11.5167 0.0000 0.0000 13.4538 -8.6778 -8.2872 4.6581 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.0857 27.6229 -2.4985 14.4977 50.2663 -7.2419 -0.0000 -0.0000 -18.6350 -6.1999 -12.8258 12.8701 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 3.2576 3.2126 -45.8679 -2.3376 0.0000 -0.0000 19.4937 -13.7574 43.2347 -32.9146 0.0000 -0.0000 5.7905 -3.5818 16.4240 -5.9701 0.0000 -0.0000 -1.8698 -6.1093 -15.6691 -5.0620 0.0000 -0.0000 - 0.4095 -1.9895 23.6103 1.5988 -1.2424 174.7224 -6.6742 -2.5497 0.0916 -1.9633 -1.8111 -0.2763 11.3539 0.7331 3.6754 1.1471 3.8678 -0.5610 -10.8959 4.2875 0.8798 8.2572 -2.8180 -1.8618 4.0528 -22.6612 2.5857 -15.9103 -53.3375 -11.7066 0.0000 0.0000 13.5448 -8.7799 -8.3212 4.6792 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.1218 27.6625 -2.4698 14.3998 50.3031 -7.1464 -0.0000 -0.0000 -18.6166 -6.2073 -12.8345 12.8787 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.2389 3.2163 -45.8531 -2.3656 0.0000 -0.0000 19.4950 -13.6437 43.1753 -33.2603 0.0000 -0.0000 5.8101 -3.5574 16.4566 -5.9733 0.0000 -0.0000 -1.8755 -6.1084 -15.6483 -5.0495 0.0000 -0.0000 - 0.4073 -1.9864 23.6097 1.5995 -1.2301 174.6720 -6.6955 -2.5331 0.1063 -1.9735 -1.8183 -0.2787 11.3682 0.7244 3.6661 1.1496 3.8778 -0.5643 -10.9170 4.3334 0.8891 8.2362 -2.8130 -1.8647 4.0235 -22.6304 2.5722 -16.1111 -53.4154 -11.8270 0.0000 0.0000 13.6493 -8.8781 -8.3564 4.6986 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.1577 27.7021 -2.4436 14.3049 50.3381 -7.0569 -0.0000 -0.0000 -18.6058 -6.2150 -12.8475 12.8884 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.2211 3.2206 -45.8388 -2.3923 0.0000 -0.0000 19.4955 -13.5384 43.1204 -33.5824 0.0000 -0.0000 5.8277 -3.5333 16.4947 -5.9792 0.0000 -0.0000 -1.8771 -6.1055 -15.6366 -5.0349 0.0000 -0.0000 - 0.4050 -1.9832 23.6090 1.5983 -1.2204 174.6267 -6.7172 -2.5205 0.1174 -1.9823 -1.8254 -0.2809 11.3806 0.7166 3.6563 1.1509 3.8870 -0.5681 -10.9418 4.3807 0.8995 8.2156 -2.8060 -1.8673 3.9971 -22.6046 2.5638 -16.2312 -53.4878 -11.8836 0.0000 0.0000 13.7678 -8.9729 -8.3899 4.7154 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -1.1935 27.7433 -2.4215 14.2103 50.3705 -6.9699 -0.0000 -0.0000 -18.6027 -6.2228 -12.8622 12.8987 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.2068 3.2254 -45.8249 -2.4150 0.0000 -0.0000 19.4963 -13.4548 43.0802 -33.8412 0.0000 -0.0000 5.8433 -3.5116 16.5370 -5.9881 0.0000 -0.0000 -1.8741 -6.1002 -15.6334 -5.0186 0.0000 -0.0000 - 0.4025 -1.9800 23.6085 1.5949 -1.2133 174.5882 -6.7399 -2.5127 0.1245 -1.9890 -1.8323 -0.2833 11.3912 0.7091 3.6466 1.1517 3.8972 -0.5725 -10.9712 4.4275 0.9104 8.1959 -2.7967 -1.8697 3.9717 -22.5863 2.5587 -16.2725 -53.5523 -11.8776 0.0000 0.0000 13.8964 -9.0682 -8.4208 4.7298 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -1.2300 27.7847 -2.4009 14.1208 50.3999 -6.8924 -0.0000 -0.0000 -18.6048 -6.2323 -12.8792 12.9080 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.1980 3.2326 -45.8130 -2.4308 0.0000 -0.0000 19.4983 -13.4035 43.0646 -33.9976 0.0000 -0.0000 5.8570 -3.4922 16.5855 -6.0011 0.0000 -0.0000 -1.8652 -6.0924 -15.6420 -5.0014 0.0000 -0.0000 - 0.3998 -1.9767 23.6080 1.5897 -1.2100 174.5572 -6.7642 -2.5116 0.1253 -1.9933 -1.8390 -0.2859 11.4007 0.7023 3.6385 1.1519 3.9086 -0.5772 -11.0052 4.4739 0.9218 8.1776 -2.7860 -1.8726 3.9486 -22.5748 2.5585 -16.2504 -53.6077 -11.8208 0.0000 0.0000 14.0319 -9.1626 -8.4475 4.7414 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.2673 27.8266 -2.3822 14.0370 50.4257 -6.8246 -0.0000 -0.0000 -18.6112 -6.2426 -12.8964 12.9152 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.1962 3.2420 -45.8041 -2.4381 0.0000 -0.0000 19.5028 -13.3913 43.0797 -34.0298 0.0000 -0.0000 5.8688 -3.4765 16.6386 -6.0175 0.0000 -0.0000 -1.8508 -6.0821 -15.6617 -4.9837 0.0000 -0.0000 - 0.3970 -1.9733 23.6077 1.5827 -1.2115 174.5348 -6.7903 -2.5180 0.1184 -1.9954 -1.8454 -0.2889 11.4104 0.6968 3.6331 1.1510 3.9213 -0.5817 -11.0433 4.5200 0.9333 8.1607 -2.7745 -1.8768 3.9261 -22.5695 2.5624 -16.1826 -53.6531 -11.7279 0.0000 0.0000 14.1694 -9.2520 -8.4686 4.7502 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -1.3077 27.8695 -2.3646 13.9637 50.4461 -6.7691 -0.0000 -0.0000 -18.6212 -6.2540 -12.9113 12.9191 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.2022 3.2532 -45.7993 -2.4364 0.0000 -0.0000 19.5104 -13.4204 43.1274 -33.9302 0.0000 -0.0000 5.8787 -3.4655 16.6945 -6.0369 0.0000 -0.0000 -1.8311 -6.0696 -15.6911 -4.9661 0.0000 -0.0000 - 0.3939 -1.9698 23.6075 1.5743 -1.2174 174.5205 -6.8171 -2.5317 0.1057 -1.9965 -1.8516 -0.2933 11.4190 0.6925 3.6298 1.1508 3.9362 -0.5854 -11.0858 4.5643 0.9446 8.1453 -2.7626 -1.8827 3.9092 -22.5691 2.5749 -16.0945 -53.6880 -11.6160 0.0000 0.0000 14.3045 -9.3335 -8.4831 4.7544 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.3458 27.9111 -2.3515 13.8998 50.4618 -6.7292 -0.0000 -0.0000 -18.6333 -6.2659 -12.9235 12.9182 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.2156 3.2661 -45.7958 -2.4259 0.0000 -0.0000 19.5207 -13.4898 43.2037 -33.7067 0.0000 -0.0000 5.8869 -3.4591 16.7503 -6.0585 0.0000 -0.0000 -1.8065 -6.0555 -15.7274 -4.9484 0.0000 -0.0000 - 0.3908 -1.9662 23.6074 1.5652 -1.2273 174.5105 -6.8455 -2.5531 0.0903 -1.9947 -1.8568 -0.2964 11.4256 0.6885 3.6308 1.1525 3.9530 -0.5909 -11.1321 4.6078 0.9552 8.1311 -2.7511 -1.8911 3.8916 -22.5701 2.5889 -15.9965 -53.7160 -11.4929 0.0000 0.0000 14.4294 -9.4027 -8.4905 4.7549 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.3825 27.9505 -2.3455 13.8450 50.4743 -6.7019 -0.0000 -0.0000 -18.6476 -6.2751 -12.9309 12.9110 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.2354 3.2801 -45.7941 -2.4082 0.0000 -0.0000 19.5347 -13.5924 43.3076 -33.3815 0.0000 -0.0000 5.8964 -3.4557 16.8159 -6.0867 0.0000 -0.0000 -1.7757 -6.0390 -15.7762 -4.9315 0.0000 -0.0000 - 0.3878 -1.9623 23.6074 1.5615 -1.2440 174.5021 -6.8707 -2.5891 0.0752 -1.9859 -1.8546 -0.2986 11.4281 0.6822 3.6384 1.1549 3.9753 -0.5990 -11.1802 4.6462 0.9636 8.1174 -2.7390 -1.9018 3.8707 -22.5727 2.6041 -15.9070 -53.7378 -11.3767 0.0000 0.0000 14.5406 -9.4547 -8.4923 4.7506 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.4216 27.9844 -2.3439 13.8105 50.4830 -6.6921 -0.0000 -0.0000 -18.6648 -6.2813 -12.9338 12.8997 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.2664 3.2910 -45.7872 -2.3863 0.0000 -0.0000 19.5514 -13.7201 43.4268 -32.9850 0.0000 -0.0000 5.9170 -3.4570 16.8962 -6.1262 0.0000 -0.0000 -1.7384 -6.0194 -15.8394 -4.9149 0.0000 -0.0000 - 0.3847 -1.9583 23.6074 1.5639 -1.2618 174.5041 -6.8860 -2.6227 0.0511 -1.9828 -1.8559 -0.3005 11.4342 0.6805 3.6470 1.1556 3.9915 -0.6030 -11.2298 4.6879 0.9726 8.1035 -2.7295 -1.9164 3.8483 -22.5678 2.6218 -15.8407 -53.7566 -11.2776 0.0000 0.0000 14.6350 -9.4880 -8.4874 4.7411 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.4559 28.0213 -2.3455 13.8085 50.4794 -6.7201 -0.0000 -0.0000 -18.6814 -6.2887 -12.9325 12.8856 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.3081 3.3023 -45.7915 -2.3633 0.0000 -0.0000 19.5713 -13.8616 43.5591 -32.5534 0.0000 -0.0000 5.9416 -3.4599 16.9705 -6.1645 0.0000 -0.0000 -1.6996 -5.9991 -15.9062 -4.8980 0.0000 -0.0000 - 0.3818 -1.9540 23.6075 1.5800 -1.2823 174.5075 -6.8854 -2.6611 0.0310 -1.9794 -1.8583 -0.3026 11.4378 0.6853 3.6603 1.1566 4.0083 -0.6096 -11.2794 4.7230 0.9786 8.0892 -2.7194 -1.9330 3.8260 -22.5611 2.6403 -15.7924 -53.7732 -11.1880 0.0000 0.0000 14.7091 -9.5063 -8.4767 4.7265 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.4927 28.0487 -2.3580 13.8197 50.4770 -6.7527 -0.0000 -0.0000 -18.7032 -6.2869 -12.9267 12.8681 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 3.3657 3.3109 -45.7971 -2.3430 0.0000 -0.0000 19.5937 -14.0055 43.6934 -32.1229 0.0000 -0.0000 5.9837 -3.4638 17.0512 -6.2093 0.0000 -0.0000 -1.6574 -5.9767 -15.9796 -4.8808 0.0000 -0.0000 - 0.3789 -1.9501 23.6075 1.5788 -1.2962 174.5182 -6.9053 -2.6930 0.0078 -1.9782 -1.8648 -0.3052 11.4482 0.6959 3.6728 1.1577 4.0246 -0.6135 -11.3325 4.7534 0.9829 8.0743 -2.7101 -1.9514 3.8021 -22.5554 2.6638 -15.7621 -53.7820 -11.1120 0.0000 0.0000 14.7661 -9.5113 -8.4614 4.7077 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5238 28.0763 -2.3729 13.8686 50.4584 -6.8288 -0.0000 -0.0000 -18.7241 -6.2870 -12.9191 12.8504 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.4020 3.3238 -45.8087 -2.3203 0.0000 -0.0000 19.6130 -14.1420 43.8177 -31.7271 0.0000 -0.0000 6.0035 -3.4636 17.1273 -6.2503 0.0000 -0.0000 -1.6148 -5.9548 -16.0565 -4.8626 0.0000 -0.0000 - 0.3762 -1.9463 23.6074 1.5721 -1.3078 174.5286 -6.9295 -2.7241 -0.0099 -1.9792 -1.8728 -0.3025 11.4617 0.7073 3.6848 1.1592 4.0446 -0.6195 -11.3867 4.7787 0.9840 8.0578 -2.7033 -1.9719 3.7686 -22.5497 2.6816 -15.7234 -53.7892 -11.0320 0.0000 0.0000 14.8085 -9.5077 -8.4383 4.6836 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.5590 28.0982 -2.4005 13.9277 50.4364 -6.9019 -0.0000 -0.0000 -18.7529 -6.2777 -12.9071 12.8332 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.4284 3.3347 -45.8228 -2.3024 0.0000 -0.0000 19.6318 -14.2593 43.9271 -31.3923 0.0000 -0.0000 6.0158 -3.4626 17.2028 -6.2879 0.0000 -0.0000 -1.5749 -5.9331 -16.1330 -4.8421 0.0000 -0.0000 - 0.3740 -1.9420 23.6073 1.5924 -1.3257 174.5418 -6.9237 -2.7638 -0.0232 -1.9761 -1.8777 -0.3094 11.4662 0.7345 3.7030 1.1592 4.0552 -0.6222 -11.4379 4.7959 0.9819 8.0396 -2.6944 -1.9927 3.7446 -22.5417 2.7070 -15.6709 -53.7951 -10.9428 0.0000 0.0000 14.8461 -9.5054 -8.4067 4.6544 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.5842 28.1106 -2.4299 14.0261 50.4077 -7.0193 -0.0000 -0.0000 -18.7824 -6.2720 -12.9006 12.8215 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 3.4816 3.3342 -45.8315 -2.2949 0.0000 -0.0000 19.6467 -14.3535 44.0050 -31.1358 0.0000 -0.0000 6.0643 -3.4645 17.2936 -6.3415 0.0000 -0.0000 -1.5318 -5.9074 -16.2259 -4.8199 0.0000 -0.0000 - 0.3719 -1.9383 23.6071 1.5862 -1.3301 174.5613 -6.9449 -2.7853 -0.0365 -1.9819 -1.8837 -0.3052 11.4840 0.7485 3.7123 1.1590 4.0742 -0.6271 -11.4931 4.8072 0.9781 8.0191 -2.6876 -2.0132 3.7148 -22.5401 2.7333 -15.5562 -53.7935 -10.8105 0.0000 0.0000 14.8819 -9.5122 -8.3647 4.6242 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.6122 28.1216 -2.4638 14.1342 50.3707 -7.1421 -0.0000 -0.0000 -18.8163 -6.2625 -12.8929 12.8113 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.4987 3.3409 -45.8523 -2.2894 0.0000 -0.0000 19.6564 -14.4171 44.0589 -30.9744 0.0000 -0.0000 6.0752 -3.4583 17.3672 -6.3793 0.0000 -0.0000 -1.4948 -5.8848 -16.3104 -4.7951 0.0000 -0.0000 - 0.3702 -1.9346 23.6068 1.5803 -1.3334 174.5849 -6.9647 -2.8061 -0.0431 -1.9874 -1.8874 -0.3038 11.4992 0.7686 3.7207 1.1603 4.0892 -0.6327 -11.5501 4.8100 0.9715 7.9967 -2.6798 -2.0332 3.6860 -22.5416 2.7619 -15.3593 -53.7908 -10.6228 0.0000 0.0000 14.9280 -9.5313 -8.3058 4.5923 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.6316 28.1267 -2.5037 14.2541 50.3266 -7.2793 -0.0000 -0.0000 -18.8573 -6.2568 -12.8891 12.8073 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.5107 3.3418 -45.8714 -2.2912 0.0000 -0.0000 19.6585 -14.4486 44.0751 -30.9155 0.0000 -0.0000 6.0868 -3.4520 17.4437 -6.4193 0.0000 -0.0000 -1.4601 -5.8607 -16.4022 -4.7684 0.0000 -0.0000 - 0.3690 -1.9310 23.6063 1.5752 -1.3342 174.6109 -6.9812 -2.8242 -0.0442 -1.9929 -1.8906 -0.3032 11.5138 0.7959 3.7272 1.1592 4.1011 -0.6372 -11.6071 4.8035 0.9610 7.9722 -2.6718 -2.0516 3.6662 -22.5539 2.7965 -15.0493 -53.7791 -10.3543 0.0000 0.0000 14.9948 -9.5797 -8.2314 4.5562 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.6513 28.1246 -2.5458 14.3736 50.2815 -7.4129 -0.0000 -0.0000 -18.9061 -6.2562 -12.8908 12.8082 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.5179 3.3378 -45.8918 -2.3019 0.0000 -0.0000 19.6551 -14.4456 44.0570 -30.9555 0.0000 -0.0000 6.0993 -3.4443 17.5223 -6.4603 0.0000 -0.0000 -1.4279 -5.8358 -16.4992 -4.7395 0.0000 -0.0000 - 0.3683 -1.9274 23.6058 1.5705 -1.3316 174.6421 -6.9931 -2.8356 -0.0404 -2.0010 -1.8932 -0.3025 11.5270 0.8260 3.7295 1.1575 4.1099 -0.6413 -11.6654 4.7890 0.9478 7.9452 -2.6632 -2.0687 3.6511 -22.5751 2.8352 -14.5988 -53.7606 -9.9889 0.0000 0.0000 15.0880 -9.6525 -8.1370 4.5211 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -1.6675 28.1168 -2.5898 14.4827 50.2360 -7.5392 -0.0000 -0.0000 -18.9629 -6.2588 -12.8951 12.8116 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.5200 3.3302 -45.9138 -2.3206 0.0000 -0.0000 19.6447 -14.4089 44.0025 -31.1021 0.0000 -0.0000 6.1101 -3.4352 17.5949 -6.4988 0.0000 -0.0000 -1.3993 -5.8108 -16.5961 -4.7095 0.0000 -0.0000 - 0.3680 -1.9240 23.6051 1.5654 -1.3254 174.6771 -7.0008 -2.8406 -0.0312 -2.0108 -1.8958 -0.3016 11.5386 0.8604 3.7281 1.1544 4.1152 -0.6447 -11.7249 4.7660 0.9313 7.9159 -2.6537 -2.0844 3.6442 -22.6081 2.8788 -13.9948 -53.7318 -9.5157 0.0000 0.0000 15.2130 -9.7522 -8.0220 4.4869 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6825 28.1037 -2.6341 14.5718 50.1919 -7.6477 -0.0000 -0.0000 -19.0297 -6.2669 -12.9014 12.8164 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.5163 3.3189 -45.9381 -2.3478 0.0000 -0.0000 19.6286 -14.3387 43.9145 -31.3521 0.0000 -0.0000 6.1192 -3.4242 17.6661 -6.5359 0.0000 -0.0000 -1.3738 -5.7852 -16.6961 -4.6796 0.0000 -0.0000 - 0.3682 -1.9207 23.6043 1.5590 -1.3156 174.7158 -7.0048 -2.8382 -0.0168 -2.0225 -1.8994 -0.3011 11.5481 0.9000 3.7231 1.1495 4.1163 -0.6470 -11.7853 4.7348 0.9119 7.8840 -2.6441 -2.0994 3.6480 -22.6538 2.9281 -13.2352 -53.6897 -8.9320 0.0000 0.0000 15.3710 -9.8758 -7.8871 4.4555 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.6970 28.0871 -2.6761 14.6345 50.1492 -7.7337 -0.0000 -0.0000 -19.1072 -6.2821 -12.9092 12.8195 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.5060 3.3045 -45.9643 -2.3834 0.0000 -0.0000 19.6073 -14.2363 43.7945 -31.7035 0.0000 -0.0000 6.1250 -3.4112 17.7364 -6.5714 0.0000 -0.0000 -1.3509 -5.7590 -16.7997 -4.6508 0.0000 -0.0000 - 0.3689 -1.9179 23.6035 1.5311 -1.2991 174.7574 -7.0295 -2.8250 0.0040 -2.0348 -1.9244 -0.3097 11.5598 0.9764 3.7157 1.1420 4.1006 -0.6441 -11.8483 4.6982 0.8891 7.8494 -2.6362 -2.1147 3.6602 -22.7146 2.9806 -12.3315 -53.6291 -8.2454 0.0000 0.0000 15.5596 -10.0157 -7.7342 4.4284 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.7118 28.0699 -2.7186 14.6567 50.1082 -7.7838 -0.0000 -0.0000 -19.1961 -6.3023 -12.9131 12.8161 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.4668 3.2889 -45.9948 -2.4247 0.0000 -0.0000 19.5816 -14.1021 43.6469 -32.1547 0.0000 -0.0000 6.1042 -3.3956 17.8069 -6.6008 0.0000 -0.0000 -1.3319 -5.7330 -16.9081 -4.6241 0.0000 -0.0000 - 0.3699 -1.9156 23.6025 1.4779 -1.2756 174.8024 -7.0788 -2.8028 0.0281 -2.0476 -1.9382 -0.3129 11.5733 1.0319 3.7058 1.1347 4.0931 -0.6435 -11.9146 4.6549 0.8644 7.8125 -2.6301 -2.1308 3.6807 -22.7905 3.0387 -11.3122 -53.5462 -7.4773 0.0000 0.0000 15.7728 -10.1618 -7.5699 4.4067 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.7243 28.0541 -2.7555 14.6422 50.0652 -7.8103 -0.0000 -0.0000 -19.2932 -6.3298 -12.9143 12.8024 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.3942 3.2738 -46.0256 -2.4685 0.0000 -0.0000 19.5498 -13.9393 43.4700 -32.7019 0.0000 -0.0000 6.0510 -3.3778 17.8697 -6.6210 0.0000 -0.0000 -1.3173 -5.7084 -17.0138 -4.6003 0.0000 -0.0000 - 0.3713 -1.9135 23.6014 1.4309 -1.2504 174.8469 -7.1146 -2.7760 0.0578 -2.0621 -1.9438 -0.3112 11.5813 1.0750 3.6959 1.1283 4.0883 -0.6447 -11.9817 4.6081 0.8373 7.7731 -2.6255 -2.1491 3.7020 -22.8676 3.0937 -10.2175 -53.4545 -6.6601 0.0000 0.0000 15.9997 -10.2980 -7.3968 4.3933 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.7432 28.0348 -2.7844 14.5928 50.0306 -7.8070 -0.0000 -0.0000 -19.3988 -6.3586 -12.9108 12.7749 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.3237 3.2555 -46.0532 -2.5197 0.0000 -0.0000 19.5154 -13.7520 43.2685 -33.3383 0.0000 -0.0000 6.0041 -3.3588 17.9317 -6.6404 0.0000 -0.0000 -1.3047 -5.6833 -17.1187 -4.5807 0.0000 -0.0000 - 0.3733 -1.9113 23.6002 1.3896 -1.2259 174.8917 -7.1356 -2.7444 0.0922 -2.0792 -1.9459 -0.3115 11.5814 1.1082 3.6923 1.1214 4.0892 -0.6469 -12.0445 4.5552 0.8065 7.7306 -2.6223 -2.1700 3.7403 -22.9559 3.1560 -9.1012 -53.3404 -5.8260 0.0000 0.0000 16.2317 -10.4206 -7.2295 4.3859 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.7586 28.0151 -2.8163 14.4915 50.0009 -7.7563 -0.0000 -0.0000 -19.5178 -6.3851 -12.9012 12.7341 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 3.2560 3.2324 -46.0700 -2.5766 0.0000 -0.0000 19.4766 -13.5463 43.0381 -34.0531 0.0000 -0.0000 5.9645 -3.3411 17.9940 -6.6622 0.0000 -0.0000 -1.2925 -5.6572 -17.2243 -4.5659 0.0000 -0.0000 - 0.3754 -1.9099 23.5990 1.3125 -1.1900 174.9360 -7.1979 -2.7045 0.1282 -2.0955 -1.9588 -0.3088 11.5893 1.1665 3.6833 1.1124 4.0769 -0.6446 -12.1102 4.5029 0.7744 7.6856 -2.6242 -2.1961 3.7756 -23.0476 3.2138 -8.0049 -53.2139 -5.0075 0.0000 0.0000 16.4525 -10.5165 -7.0741 4.3869 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.7778 28.0019 -2.8425 14.3565 49.9673 -7.6805 -0.0000 -0.0000 -19.6426 -6.4092 -12.8816 12.6752 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.1446 3.2161 -46.0956 -2.6333 0.0000 -0.0000 19.4380 -13.3224 42.8035 -34.8347 0.0000 -0.0000 5.8792 -3.3173 18.0462 -6.6692 0.0000 -0.0000 -1.2856 -5.6338 -17.3220 -4.5561 0.0000 -0.0000 - 0.3780 -1.9081 23.5977 1.2532 -1.1570 174.9761 -7.2359 -2.6620 0.1693 -2.1109 -1.9707 -0.3106 11.5877 1.2170 3.6859 1.1041 4.0685 -0.6424 -12.1716 4.4513 0.7399 7.6383 -2.6285 -2.2269 3.8126 -23.1322 3.2653 -6.9786 -53.0885 -4.2383 0.0000 0.0000 16.6499 -10.5796 -6.9392 4.3950 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.7996 27.9892 -2.8600 14.2068 49.9356 -7.5954 -0.0000 -0.0000 -19.7709 -6.4294 -12.8564 12.6002 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0521 3.1952 -46.1125 -2.6965 0.0000 -0.0000 19.4009 -13.0922 42.5595 -35.6564 0.0000 -0.0000 5.8172 -3.2945 18.1088 -6.6824 0.0000 -0.0000 -1.2789 -5.6084 -17.4257 -4.5509 0.0000 -0.0000 - 0.3808 -1.9063 23.5964 1.1902 -1.1237 175.0146 -7.2780 -2.6218 0.2102 -2.1274 -1.9749 -0.3052 11.5866 1.2583 3.6899 1.0969 4.0634 -0.6400 -12.2303 4.4015 0.7037 7.5889 -2.6368 -2.2638 3.8494 -23.2069 3.3145 -6.0754 -52.9716 -3.5592 0.0000 0.0000 16.8143 -10.6088 -6.8344 4.4096 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.8128 27.9790 -2.8835 14.0224 49.9046 -7.4863 -0.0000 -0.0000 -19.9037 -6.4397 -12.8254 12.5098 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.9561 3.1735 -46.1251 -2.7612 0.0000 -0.0000 19.3651 -12.8633 42.3152 -36.4911 0.0000 -0.0000 5.7509 -3.2726 18.1667 -6.6928 0.0000 -0.0000 -1.2753 -5.5837 -17.5237 -4.5498 0.0000 -0.0000 - 0.3840 -1.9041 23.5951 1.1404 -1.0930 175.0502 -7.3032 -2.5818 0.2515 -2.1430 -1.9844 -0.3046 11.5764 1.3085 3.7041 1.0916 4.0539 -0.6357 -12.2847 4.3563 0.6664 7.5377 -2.6492 -2.3068 3.8789 -23.2724 3.3539 -5.3139 -52.8659 -2.9843 0.0000 0.0000 16.9397 -10.6082 -6.7686 4.4261 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -1.8338 27.9744 -2.8966 13.8419 49.8688 -7.3786 -0.0000 -0.0000 -20.0369 -6.4394 -12.7900 12.4080 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 2.8777 3.1503 -46.1348 -2.8280 0.0000 -0.0000 19.3333 -12.6459 42.0824 -37.3024 0.0000 -0.0000 5.7014 -3.2522 18.2260 -6.7054 0.0000 -0.0000 -1.2733 -5.5583 -17.6206 -4.5525 0.0000 -0.0000 - 0.3873 -1.9017 23.5938 1.0901 -1.0642 175.0827 -7.3348 -2.5451 0.2926 -2.1563 -1.9960 -0.3048 11.5702 1.3591 3.7257 1.0851 4.0481 -0.6322 -12.3351 4.3137 0.6286 7.4850 -2.6646 -2.3561 3.9063 -23.3265 3.3890 -4.7198 -52.7804 -2.5274 0.0000 0.0000 17.0192 -10.5842 -6.7431 4.4443 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -1.8539 27.9752 -2.9097 13.6561 49.8268 -7.2658 -0.0000 -0.0000 -20.1710 -6.4298 -12.7526 12.2996 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.8040 3.1273 -46.1396 -2.8929 0.0000 -0.0000 19.3053 -12.4504 41.8681 -38.0497 0.0000 -0.0000 5.6526 -3.2340 18.2859 -6.7163 0.0000 -0.0000 -1.2749 -5.5332 -17.7154 -4.5572 0.0000 -0.0000 - 0.3909 -1.8986 23.5928 1.0526 -1.0422 175.1131 -7.3565 -2.5206 0.3281 -2.1691 -1.9967 -0.2972 11.5642 1.4002 3.7507 1.0810 4.0456 -0.6287 -12.3826 4.2777 0.5906 7.4317 -2.6844 -2.4106 3.9231 -23.3637 3.4147 -4.2946 -52.7238 -2.1930 0.0000 0.0000 17.0514 -10.5449 -6.7561 4.4640 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.8754 27.9785 -2.9202 13.4785 49.7822 -7.1609 -0.0000 -0.0000 -20.3011 -6.4076 -12.7167 12.1873 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.7526 3.1019 -46.1374 -2.9556 0.0000 -0.0000 19.2818 -12.2881 41.6779 -38.6912 0.0000 -0.0000 5.6206 -3.2219 18.3410 -6.7281 0.0000 -0.0000 -1.2801 -5.5086 -17.8031 -4.5628 0.0000 -0.0000 - 0.3945 -1.8950 23.5919 1.0234 -1.0243 175.1430 -7.3757 -2.5015 0.3590 -2.1796 -2.0025 -0.2926 11.5598 1.4491 3.7830 1.0777 4.0429 -0.6243 -12.4273 4.2456 0.5522 7.3781 -2.7052 -2.4697 3.9350 -23.3889 3.4354 -4.0383 -52.6931 -1.9807 0.0000 0.0000 17.0417 -10.4999 -6.8040 4.4811 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.8928 27.9863 -2.9310 13.3134 49.7304 -7.0697 -0.0000 -0.0000 -20.4256 -6.3774 -12.6851 12.0770 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.7200 3.0781 -46.1345 -3.0133 0.0000 -0.0000 19.2631 -12.1665 41.5237 -39.1899 0.0000 -0.0000 5.5989 -3.2135 18.3926 -6.7386 0.0000 -0.0000 -1.2886 -5.4845 -17.8868 -4.5691 0.0000 -0.0000 - 0.3983 -1.8910 23.5913 0.9830 -1.0138 175.1733 -7.4183 -2.4934 0.3833 -2.1844 -2.0223 -0.2961 11.5617 1.5230 3.8246 1.0748 4.0340 -0.6192 -12.4710 4.2179 0.5139 7.3246 -2.7288 -2.5329 3.9439 -23.4093 3.4536 -3.9336 -52.6821 -1.8779 0.0000 0.0000 16.9966 -10.4605 -6.8810 4.4938 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.9078 28.0014 -2.9444 13.1605 49.6667 -6.9870 -0.0000 -0.0000 -20.5457 -6.3411 -12.6592 11.9747 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.6875 3.0512 -46.1330 -3.0648 0.0000 -0.0000 19.2512 -12.0898 41.4112 -39.5160 0.0000 -0.0000 5.5663 -3.2144 18.4427 -6.7454 0.0000 -0.0000 -1.3028 -5.4616 -17.9694 -4.5739 0.0000 -0.0000 - 0.4018 -1.8862 23.5910 0.9710 -1.0065 175.2034 -7.4328 -2.4938 0.4006 -2.1941 -2.0112 -0.2810 11.5680 1.5473 3.8600 1.0754 4.0451 -0.6164 -12.5147 4.1981 0.4786 7.2719 -2.7538 -2.5987 3.9380 -23.4098 3.4626 -3.9491 -52.7037 -1.8678 0.0000 0.0000 16.9216 -10.4290 -6.9740 4.5038 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.9281 28.0161 -2.9503 13.0341 49.6056 -6.9290 -0.0000 -0.0000 -20.6524 -6.3000 -12.6442 11.8795 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.6956 3.0333 -46.1223 -3.1029 0.0000 -0.0000 19.2384 -12.0685 41.3345 -39.6547 0.0000 -0.0000 5.5660 -3.2156 18.4776 -6.7526 0.0000 -0.0000 -1.3174 -5.4412 -18.0361 -4.5784 0.0000 -0.0000 - 0.4057 -1.8810 23.5909 0.9531 -1.0128 175.2377 -7.4673 -2.5125 0.4073 -2.1929 -2.0155 -0.2791 11.5767 1.6104 3.9059 1.0757 4.0431 -0.6120 -12.5581 4.1774 0.4432 7.2197 -2.7769 -2.6684 3.9280 -23.4142 3.4687 -4.0473 -52.7347 -1.9204 0.0000 0.0000 16.8268 -10.4167 -7.0764 4.5125 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.9372 28.0296 -2.9664 12.9098 49.5408 -6.8739 -0.0000 -0.0000 -20.7531 -6.2578 -12.6348 11.8008 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.7136 3.0029 -46.1229 -3.1435 0.0000 -0.0000 19.2392 -12.0919 41.3073 -39.6020 0.0000 -0.0000 5.5611 -3.2326 18.5168 -6.7583 0.0000 -0.0000 -1.3385 -5.4204 -18.1103 -4.5798 0.0000 -0.0000 - 0.4094 -1.8754 23.5912 0.9391 -1.0202 175.2721 -7.5022 -2.5324 0.4104 -2.1944 -2.0165 -0.2728 11.5943 1.6566 3.9491 1.0774 4.0510 -0.6089 -12.6020 4.1673 0.4079 7.1663 -2.8052 -2.7340 3.9237 -23.4093 3.4761 -4.2257 -52.7823 -2.0316 0.0000 0.0000 16.7292 -10.4241 -7.1759 4.5076 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.9642 28.0497 -2.9744 12.8201 49.4707 -6.8335 -0.0000 -0.0000 -20.8424 -6.2218 -12.6406 11.7348 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 2.7441 2.9808 -46.1195 -3.1703 0.0000 -0.0000 19.2397 -12.1621 41.3161 -39.3844 0.0000 -0.0000 5.5601 -3.2503 18.5466 -6.7609 0.0000 -0.0000 -1.3604 -5.4030 -18.1748 -4.5806 0.0000 -0.0000 - 0.4134 -1.8694 23.5916 0.9293 -1.0375 175.3108 -7.5381 -2.5638 0.4062 -2.1925 -2.0214 -0.2703 11.6130 1.7194 3.9925 1.0804 4.0493 -0.6064 -12.6473 4.1587 0.3755 7.1131 -2.8316 -2.8015 3.9099 -23.4050 3.4809 -4.4180 -52.8353 -2.1623 0.0000 0.0000 16.6307 -10.4499 -7.2674 4.5030 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.9758 28.0634 -2.9887 12.7339 49.4055 -6.8088 -0.0000 -0.0000 -20.9172 -6.1932 -12.6544 11.6844 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.7896 2.9519 -46.1207 -3.1945 0.0000 -0.0000 19.2466 -12.2677 41.3574 -39.0270 0.0000 -0.0000 5.5646 -3.2791 18.5696 -6.7634 0.0000 -0.0000 -1.3846 -5.3867 -18.2353 -4.5791 0.0000 -0.0000 - 0.4175 -1.8633 23.5921 0.9288 -1.0586 175.3503 -7.5658 -2.5990 0.3986 -2.1906 -2.0278 -0.2684 11.6342 1.7832 4.0328 1.0832 4.0493 -0.6034 -12.6921 4.1522 0.3444 7.0584 -2.8578 -2.8675 3.8984 -23.4007 3.4862 -4.6019 -52.8916 -2.2878 0.0000 0.0000 16.5391 -10.4945 -7.3439 4.4954 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.9946 28.0735 -3.0067 12.6515 49.3470 -6.7725 -0.0000 -0.0000 -20.9848 -6.1707 -12.6741 11.6513 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.8510 2.9233 -46.1232 -3.2150 0.0000 -0.0000 19.2574 -12.3989 41.4222 -38.5785 0.0000 -0.0000 5.5793 -3.3113 18.5876 -6.7656 0.0000 -0.0000 -1.4089 -5.3722 -18.2909 -4.5767 0.0000 -0.0000 - 0.4216 -1.8570 23.5927 0.9449 -1.0818 175.3911 -7.5724 -2.6331 0.3892 -2.1909 -2.0334 -0.2667 11.6524 1.8431 4.0692 1.0877 4.0484 -0.6008 -12.7361 4.1496 0.3157 7.0017 -2.8844 -2.9312 3.8866 -23.3928 3.4933 -4.7577 -52.9509 -2.3982 0.0000 0.0000 16.4607 -10.5509 -7.4045 4.4862 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -2.0070 28.0764 -3.0282 12.5742 49.2984 -6.7447 -0.0000 -0.0000 -21.0378 -6.1601 -12.7018 11.6317 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.9331 2.8948 -46.1273 -3.2348 0.0000 -0.0000 19.2709 -12.5430 41.4993 -38.0908 0.0000 -0.0000 5.6121 -3.3447 18.6009 -6.7693 0.0000 -0.0000 -1.4313 -5.3591 -18.3417 -4.5740 0.0000 -0.0000 - 0.4258 -1.8512 23.5932 0.9527 -1.1032 175.4312 -7.5878 -2.6651 0.3798 -2.1913 -2.0343 -0.2636 11.6733 1.8922 4.1014 1.0926 4.0527 -0.6005 -12.7802 4.1487 0.2891 6.9418 -2.9122 -2.9916 3.8768 -23.3885 3.5032 -4.8661 -53.0045 -2.4748 0.0000 0.0000 16.3986 -10.6145 -7.4500 4.4732 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.0238 28.0762 -3.0507 12.5018 49.2549 -6.7135 -0.0000 -0.0000 -21.0794 -6.1607 -12.7312 11.6242 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0040 2.8675 -46.1332 -3.2530 0.0000 -0.0000 19.2853 -12.6839 41.5774 -37.6172 0.0000 -0.0000 5.6337 -3.3776 18.6111 -6.7701 0.0000 -0.0000 -1.4527 -5.3482 -18.3888 -4.5713 0.0000 -0.0000 - 0.4301 -1.8457 23.5937 0.9600 -1.1226 175.4693 -7.5993 -2.6919 0.3721 -2.1936 -2.0365 -0.2612 11.6933 1.9398 4.1283 1.0980 4.0557 -0.6004 -12.8226 4.1495 0.2655 6.8779 -2.9415 -3.0483 3.8664 -23.3846 3.5160 -4.9187 -53.0535 -2.5122 0.0000 0.0000 16.3509 -10.6783 -7.4849 4.4611 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.0411 28.0704 -3.0748 12.4310 49.2199 -6.6807 -0.0000 -0.0000 -21.1085 -6.1712 -12.7615 11.6269 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0696 2.8399 -46.1399 -3.2738 0.0000 -0.0000 19.3001 -12.8083 41.6455 -37.2056 0.0000 -0.0000 5.6534 -3.4089 18.6203 -6.7704 0.0000 -0.0000 -1.4717 -5.3387 -18.4322 -4.5692 0.0000 -0.0000 - 0.4345 -1.8410 23.5940 0.9592 -1.1373 175.5041 -7.6150 -2.7119 0.3677 -2.1980 -2.0375 -0.2589 11.7128 1.9792 4.1510 1.1042 4.0620 -0.6019 -12.8628 4.1520 0.2446 6.8095 -2.9735 -3.1002 3.8550 -23.3811 3.5312 -4.9189 -53.0975 -2.5118 0.0000 0.0000 16.3169 -10.7350 -7.5134 4.4480 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.0567 28.0612 -3.1007 12.3641 49.1893 -6.6499 -0.0000 -0.0000 -21.1254 -6.1921 -12.7906 11.6379 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.1179 2.8128 -46.1468 -3.2975 0.0000 -0.0000 19.3135 -12.9045 41.6930 -36.8955 0.0000 -0.0000 5.6622 -3.4365 18.6296 -6.7692 0.0000 -0.0000 -1.4881 -5.3305 -18.4727 -4.5680 0.0000 -0.0000 - 0.4391 -1.8368 23.5942 0.9578 -1.1487 175.5329 -7.6251 -2.7262 0.3686 -2.2050 -2.0416 -0.2575 11.7294 2.0203 4.1690 1.1113 4.0670 -0.6036 -12.8991 4.1547 0.2266 6.7366 -3.0077 -3.1470 3.8470 -23.3756 3.5490 -4.8702 -53.1385 -2.4691 0.0000 0.0000 16.2907 -10.7815 -7.5388 4.4360 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.0747 28.0468 -3.1306 12.2952 49.1665 -6.6089 -0.0000 -0.0000 -21.1328 -6.2169 -12.8158 11.6545 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.1559 2.7835 -46.1527 -3.3278 0.0000 -0.0000 19.3257 -12.9632 41.7141 -36.7135 0.0000 -0.0000 5.6696 -3.4609 18.6420 -6.7686 0.0000 -0.0000 -1.5015 -5.3225 -18.5103 -4.5677 0.0000 -0.0000 - 0.4437 -1.8333 23.5941 0.9522 -1.1515 175.5547 -7.6344 -2.7290 0.3776 -2.2143 -2.0419 -0.2550 11.7439 2.0476 4.1837 1.1191 4.0765 -0.6095 -12.9304 4.1584 0.2125 6.6590 -3.0444 -3.1871 3.8391 -23.3678 3.5692 -4.7823 -53.1744 -2.3925 0.0000 0.0000 16.2695 -10.8148 -7.5674 4.4240 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -2.0909 28.0285 -3.1647 12.2207 49.1520 -6.5594 -0.0000 -0.0000 -21.1292 -6.2412 -12.8357 11.6727 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.1774 2.7576 -46.1590 -3.3640 0.0000 -0.0000 19.3357 -12.9806 41.7069 -36.6746 0.0000 -0.0000 5.6705 -3.4764 18.6603 -6.7675 0.0000 -0.0000 -1.5110 -5.3146 -18.5474 -4.5691 0.0000 -0.0000 - 0.4486 -1.8304 23.5939 0.9457 -1.1530 175.5690 -7.6389 -2.7292 0.3899 -2.2265 -2.0455 -0.2534 11.7555 2.0787 4.1953 1.1273 4.0841 -0.6135 -12.9556 4.1622 0.2016 6.5776 -3.0841 -3.2204 3.8309 -23.3551 3.5909 -4.6739 -53.2104 -2.2973 0.0000 0.0000 16.2504 -10.8321 -7.6012 4.4133 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.1045 28.0082 -3.1987 12.1594 49.1377 -6.5207 -0.0000 -0.0000 -21.1143 -6.2672 -12.8523 11.6940 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.1872 2.7265 -46.1621 -3.4080 0.0000 -0.0000 19.3435 -12.9556 41.6680 -36.7762 0.0000 -0.0000 5.6707 -3.4906 18.6828 -6.7680 0.0000 -0.0000 -1.5182 -5.3059 -18.5812 -4.5708 0.0000 -0.0000 - 0.4535 -1.8281 23.5934 0.9383 -1.1502 175.5746 -7.6407 -2.7250 0.4065 -2.2406 -2.0497 -0.2520 11.7663 2.1089 4.2049 1.1348 4.0917 -0.6174 -12.9742 4.1662 0.1948 6.4937 -3.1258 -3.2460 3.8234 -23.3366 3.6131 -4.5536 -53.2470 -2.1875 0.0000 0.0000 16.2304 -10.8358 -7.6407 4.4026 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.1211 27.9884 -3.2301 12.1126 49.1226 -6.4883 -0.0000 -0.0000 -21.0904 -6.2893 -12.8642 11.7170 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.1855 2.6948 -46.1610 -3.4575 0.0000 -0.0000 19.3485 -12.8933 41.6012 -37.0051 0.0000 -0.0000 5.6699 -3.5001 18.7113 -6.7696 0.0000 -0.0000 -1.5228 -5.2964 -18.6128 -4.5730 0.0000 -0.0000 - 0.4587 -1.8266 23.5929 0.9091 -1.1469 175.5721 -7.6645 -2.7219 0.4264 -2.2569 -2.0778 -0.2606 11.7788 2.1820 4.2139 1.1431 4.0842 -0.6153 -12.9878 4.1673 0.1891 6.4088 -3.1699 -3.2630 3.8129 -23.3193 3.6359 -4.4394 -53.2811 -2.0825 0.0000 0.0000 16.2113 -10.8279 -7.6870 4.3920 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -2.1228 27.9651 -3.2717 12.0648 49.1069 -6.4619 -0.0000 -0.0000 -21.0555 -6.3050 -12.8729 11.7373 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 3.1526 2.6571 -46.1513 -3.5121 0.0000 -0.0000 19.3513 -12.8000 41.5077 -37.3349 0.0000 -0.0000 5.6443 -3.5117 18.7473 -6.7672 0.0000 -0.0000 -1.5292 -5.2859 -18.6444 -4.5743 0.0000 -0.0000 - 0.4636 -1.8257 23.5923 0.8586 -1.1332 175.5610 -7.7160 -2.7119 0.4479 -2.2696 -2.0883 -0.2614 11.7949 2.2189 4.2274 1.1534 4.0941 -0.6254 -12.9978 4.1680 0.1921 6.3247 -3.2163 -3.2712 3.8115 -23.2989 3.6643 -4.3210 -53.3123 -1.9599 0.0000 0.0000 16.1864 -10.8211 -7.7323 4.3834 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.1312 27.9525 -3.3041 12.0370 49.0782 -6.4440 -0.0000 -0.0000 -21.0164 -6.3139 -12.8764 11.7603 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.0882 2.6289 -46.1454 -3.5635 0.0000 -0.0000 19.3517 -12.6861 41.4100 -37.7329 0.0000 -0.0000 5.5931 -3.5134 18.7893 -6.7603 0.0000 -0.0000 -1.5342 -5.2759 -18.6753 -4.5761 0.0000 -0.0000 - 0.4686 -1.8245 23.5916 0.8524 -1.1213 175.5427 -7.7127 -2.7043 0.4697 -2.2854 -2.0833 -0.2560 11.8009 2.2368 4.2364 1.1623 4.1074 -0.6290 -12.9974 4.1694 0.1973 6.2451 -3.2600 -3.2692 3.8067 -23.2678 3.6870 -4.2096 -53.3496 -1.8474 0.0000 0.0000 16.1660 -10.8125 -7.7764 4.3718 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.1368 27.9408 -3.3350 12.0308 49.0505 -6.4400 -0.0000 -0.0000 -20.9707 -6.3140 -12.8816 11.7838 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.0693 2.6007 -46.1322 -3.6192 0.0000 -0.0000 19.3514 -12.5680 41.3082 -38.1547 0.0000 -0.0000 5.5928 -3.5121 18.8344 -6.7603 0.0000 -0.0000 -1.5357 -5.2635 -18.7010 -4.5783 0.0000 -0.0000 - 0.4738 -1.8242 23.5910 0.8013 -1.1102 175.5181 -7.7675 -2.7014 0.4899 -2.2983 -2.1069 -0.2636 11.8195 2.3038 4.2518 1.1700 4.1054 -0.6318 -12.9962 4.1682 0.2070 6.1706 -3.3048 -3.2581 3.8047 -23.2409 3.7135 -4.1091 -53.3830 -1.7421 0.0000 0.0000 16.1494 -10.8105 -7.8103 4.3614 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.1332 27.9343 -3.3686 12.0320 49.0113 -6.4467 -0.0000 -0.0000 -20.9193 -6.3076 -12.8833 11.8052 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.0005 2.5700 -46.1151 -3.6684 0.0000 -0.0000 19.3501 -12.4507 41.2117 -38.5582 0.0000 -0.0000 5.5410 -3.5165 18.8898 -6.7507 0.0000 -0.0000 -1.5426 -5.2512 -18.7321 -4.5786 0.0000 -0.0000 - 0.4787 -1.8233 23.5905 0.7965 -1.0989 175.4900 -7.7693 -2.6988 0.5064 -2.3103 -2.0976 -0.2562 11.8267 2.3158 4.2644 1.1795 4.1233 -0.6366 -12.9876 4.1678 0.2221 6.1049 -3.3459 -3.2372 3.8072 -23.2016 3.7388 -4.0075 -53.4245 -1.6361 0.0000 0.0000 16.1388 -10.8198 -7.8283 4.3519 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -2.1274 27.9287 -3.3985 12.0475 48.9758 -6.4616 -0.0000 -0.0000 -20.8640 -6.2924 -12.8878 11.8252 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.9843 2.5455 -46.1053 -3.7176 0.0000 -0.0000 19.3524 -12.3498 41.1420 -38.9040 0.0000 -0.0000 5.5411 -3.5157 18.9369 -6.7465 0.0000 -0.0000 -1.5448 -5.2387 -18.7504 -4.5799 0.0000 -0.0000 - 0.4839 -1.8230 23.5901 0.7678 -1.0939 175.4585 -7.8044 -2.7073 0.5189 -2.3190 -2.1038 -0.2576 11.8418 2.3625 4.2805 1.1866 4.1283 -0.6376 -12.9775 4.1661 0.2402 6.0496 -3.3861 -3.2073 3.8109 -23.1683 3.7663 -3.9115 -53.4601 -1.5428 0.0000 0.0000 16.1424 -10.8405 -7.8291 4.3412 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -2.1132 27.9270 -3.4294 12.0711 48.9330 -6.4863 -0.0000 -0.0000 -20.8049 -6.2744 -12.8914 11.8424 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.9463 2.5162 -46.0942 -3.7595 0.0000 -0.0000 19.3563 -12.2686 41.0946 -39.1584 0.0000 -0.0000 5.5137 -3.5246 18.9918 -6.7359 0.0000 -0.0000 -1.5516 -5.2261 -18.7734 -4.5800 0.0000 -0.0000 - 0.4888 -1.8225 23.5900 0.7648 -1.0881 175.4264 -7.8114 -2.7114 0.5260 -2.3251 -2.0972 -0.2506 11.8507 2.3795 4.2982 1.1941 4.1427 -0.6435 -12.9646 4.1662 0.2651 6.0073 -3.4203 -3.1694 3.8238 -23.1273 3.7925 -3.7975 -53.4976 -1.4301 0.0000 0.0000 16.1543 -10.8788 -7.8053 4.3322 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -2.1017 27.9316 -3.4550 12.1021 48.8903 -6.5092 -0.0000 -0.0000 -20.7464 -6.2527 -12.8950 11.8578 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.9395 2.4962 -46.0861 -3.7916 0.0000 -0.0000 19.3600 -12.2178 41.0776 -39.3026 0.0000 -0.0000 5.5119 -3.5304 19.0373 -6.7228 0.0000 -0.0000 -1.5567 -5.2151 -18.7860 -4.5812 0.0000 -0.0000 - 0.4939 -1.8223 23.5901 0.7600 -1.0902 175.3952 -7.8232 -2.7248 0.5278 -2.3290 -2.0922 -0.2490 11.8606 2.4056 4.3178 1.1998 4.1530 -0.6461 -12.9499 4.1659 0.2929 5.9788 -3.4511 -3.1239 3.8404 -23.0894 3.8223 -3.6838 -53.5311 -1.3278 0.0000 0.0000 16.1831 -10.9275 -7.7599 4.3240 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -2.0827 27.9359 -3.4801 12.1359 48.8491 -6.5370 -0.0000 -0.0000 -20.6857 -6.2332 -12.8984 11.8696 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.9377 2.4712 -46.0846 -3.8194 0.0000 -0.0000 19.3691 -12.1940 41.0931 -39.3271 0.0000 -0.0000 5.5066 -3.5455 19.0874 -6.7057 0.0000 -0.0000 -1.5648 -5.2043 -18.8035 -4.5823 0.0000 -0.0000 - 0.4990 -1.8224 23.5903 0.7566 -1.0970 175.3655 -7.8350 -2.7426 0.5252 -2.3288 -2.0880 -0.2466 11.8683 2.4338 4.3366 1.2042 4.1605 -0.6490 -12.9339 4.1674 0.3247 5.9650 -3.4782 -3.0725 3.8573 -23.0521 3.8495 -3.5576 -53.5620 -1.2212 0.0000 0.0000 16.2244 -10.9844 -7.6937 4.3181 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.0627 27.9420 -3.5037 12.1673 48.8108 -6.5580 -0.0000 -0.0000 -20.6266 -6.2173 -12.9001 11.8785 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.9414 2.4469 -46.0881 -3.8371 0.0000 -0.0000 19.3794 -12.1969 41.1381 -39.2394 0.0000 -0.0000 5.4999 -3.5666 19.1294 -6.6837 0.0000 -0.0000 -1.5738 -5.1956 -18.8140 -4.5841 0.0000 -0.0000 - 0.5043 -1.8229 23.5907 0.7551 -1.1082 175.3381 -7.8448 -2.7633 0.5181 -2.3257 -2.0837 -0.2443 11.8731 2.4613 4.3544 1.2072 4.1664 -0.6509 -12.9164 4.1708 0.3599 5.9665 -3.5012 -3.0162 3.8761 -23.0163 3.8762 -3.4253 -53.5885 -1.1155 0.0000 0.0000 16.2775 -11.0456 -7.6114 4.3143 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.0406 27.9473 -3.5253 12.1944 48.7792 -6.5733 -0.0000 -0.0000 -20.5679 -6.2072 -12.9004 11.8837 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 2.9507 2.4225 -46.0973 -3.8466 0.0000 -0.0000 19.3915 -12.2219 41.2082 -39.0583 0.0000 -0.0000 5.4928 -3.5932 19.1651 -6.6580 0.0000 -0.0000 -1.5832 -5.1887 -18.8202 -4.5869 0.0000 -0.0000 - 0.5097 -1.8237 23.5913 0.7566 -1.1231 175.3130 -7.8501 -2.7836 0.5076 -2.3205 -2.0786 -0.2424 11.8737 2.4843 4.3715 1.2086 4.1703 -0.6515 -12.8962 4.1770 0.3973 5.9833 -3.5194 -2.9560 3.8973 -22.9825 3.9025 -3.2919 -53.6092 -1.0134 0.0000 0.0000 16.3396 -11.1069 -7.5192 4.3126 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.0176 27.9505 -3.5457 12.2136 48.7578 -6.5782 -0.0000 -0.0000 -20.5101 -6.2043 -12.8987 11.8854 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.9653 2.3972 -46.1130 -3.8504 0.0000 -0.0000 19.4058 -12.2617 41.2984 -38.8115 0.0000 -0.0000 5.4863 -3.6248 19.1956 -6.6290 0.0000 -0.0000 -1.5927 -5.1833 -18.8230 -4.5910 0.0000 -0.0000 - 0.5151 -1.8250 23.5919 0.7616 -1.1402 175.2895 -7.8494 -2.8035 0.4968 -2.3137 -2.0730 -0.2395 11.8693 2.5041 4.3852 1.2093 4.1729 -0.6525 -12.8730 4.1869 0.4380 6.0145 -3.5346 -2.8937 3.9189 -22.9473 3.9270 -3.1621 -53.6287 -0.9162 0.0000 0.0000 16.4050 -11.1634 -7.4212 4.3141 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.9948 27.9502 -3.5625 12.2265 48.7477 -6.5751 -0.0000 -0.0000 -20.4534 -6.2098 -12.8954 11.8853 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.9832 2.3726 -46.1294 -3.8477 0.0000 -0.0000 19.4194 -12.3102 41.3967 -38.5311 0.0000 -0.0000 5.4816 -3.6589 19.2213 -6.5988 0.0000 -0.0000 -1.6010 -5.1796 -18.8222 -4.5964 0.0000 -0.0000 - 0.5207 -1.8266 23.5926 0.7701 -1.1593 175.2677 -7.8418 -2.8196 0.4853 -2.3065 -2.0668 -0.2375 11.8599 2.5171 4.3980 1.2083 4.1745 -0.6528 -12.8448 4.2011 0.4804 6.0591 -3.5465 -2.8301 3.9399 -22.9134 3.9496 -3.0444 -53.6430 -0.8320 0.0000 0.0000 16.4722 -11.2122 -7.3259 4.3170 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.9711 27.9460 -3.5775 12.2324 48.7501 -6.5638 -0.0000 -0.0000 -20.3970 -6.2237 -12.8902 11.8838 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0035 2.3464 -46.1503 -3.8430 0.0000 -0.0000 19.4341 -12.3577 41.4991 -38.2491 0.0000 -0.0000 5.4786 -3.6958 19.2432 -6.5667 0.0000 -0.0000 -1.6091 -5.1769 -18.8190 -4.6028 0.0000 -0.0000 - 0.5266 -1.8284 23.5931 0.7959 -1.1832 175.2445 -7.8115 -2.8392 0.4756 -2.2978 -2.0588 -0.2317 11.8406 2.5324 4.4044 1.2057 4.1688 -0.6493 -12.8091 4.2208 0.5236 6.1158 -3.5557 -2.7664 3.9577 -22.8761 3.9662 -2.9436 -53.6584 -0.7636 0.0000 0.0000 16.5364 -11.2503 -7.2373 4.3212 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.9441 27.9361 -3.5901 12.2385 48.7651 -6.5529 -0.0000 -0.0000 -20.3405 -6.2458 -12.8857 11.8840 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0396 2.3158 -46.1653 -3.8376 0.0000 -0.0000 19.4469 -12.3988 41.5922 -37.9924 0.0000 -0.0000 5.4966 -3.7358 19.2674 -6.5411 0.0000 -0.0000 -1.6142 -5.1735 -18.8157 -4.6100 0.0000 -0.0000 - 0.5322 -1.8309 23.5937 0.8060 -1.1960 175.2237 -7.7976 -2.8405 0.4689 -2.2922 -2.0538 -0.2321 11.8226 2.5318 4.4155 1.2060 4.1739 -0.6523 -12.7708 4.2423 0.5695 6.1831 -3.5639 -2.7030 3.9782 -22.8402 3.9867 -2.8685 -53.6706 -0.7107 0.0000 0.0000 16.5926 -11.2811 -7.1583 4.3276 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.9286 27.9208 -3.5989 12.2320 48.7950 -6.5192 -0.0000 -0.0000 -20.2872 -6.2664 -12.8786 11.8851 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.0521 2.2969 -46.1864 -3.8255 0.0000 -0.0000 19.4556 -12.4283 41.6785 -37.7850 0.0000 -0.0000 5.4912 -3.7666 19.2844 -6.5067 0.0000 -0.0000 -1.6193 -5.1729 -18.8092 -4.6183 0.0000 -0.0000 - 0.5382 -1.8336 23.5942 0.8182 -1.2133 175.2013 -7.7810 -2.8450 0.4631 -2.2865 -2.0478 -0.2303 11.8020 2.5329 4.4232 1.2043 4.1743 -0.6522 -12.7243 4.2676 0.6140 6.2593 -3.5703 -2.6406 3.9934 -22.8070 4.0007 -2.8159 -53.6790 -0.6783 0.0000 0.0000 16.6429 -11.3042 -7.0937 4.3326 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.9092 27.9023 -3.6049 12.2354 48.8307 -6.4959 -0.0000 -0.0000 -20.2329 -6.2916 -12.8732 11.8918 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.0632 2.2705 -46.2022 -3.8161 0.0000 -0.0000 19.4627 -12.4417 41.7478 -37.6338 0.0000 -0.0000 5.4903 -3.8019 19.3049 -6.4769 0.0000 -0.0000 -1.6236 -5.1711 -18.8040 -4.6263 0.0000 -0.0000 - 0.5442 -1.8364 23.5946 0.8314 -1.2289 175.1776 -7.7644 -2.8478 0.4599 -2.2819 -2.0422 -0.2281 11.7800 2.5342 4.4292 1.2037 4.1745 -0.6520 -12.6714 4.2959 0.6584 6.3433 -3.5771 -2.5805 4.0064 -22.7728 4.0111 -2.7900 -53.6896 -0.6651 0.0000 0.0000 16.6841 -11.3216 -7.0403 4.3374 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.8908 27.8808 -3.6077 12.2506 48.8703 -6.4813 -0.0000 -0.0000 -20.1787 -6.3160 -12.8704 11.9046 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.0706 2.2446 -46.2129 -3.8061 0.0000 -0.0000 19.4659 -12.4409 41.8000 -37.5401 0.0000 -0.0000 5.4914 -3.8350 19.3275 -6.4503 0.0000 -0.0000 -1.6261 -5.1690 -18.7997 -4.6345 0.0000 -0.0000 - 0.5502 -1.8393 23.5950 0.8435 -1.2420 175.1529 -7.7513 -2.8474 0.4587 -2.2788 -2.0375 -0.2263 11.7586 2.5349 4.4357 1.2044 4.1749 -0.6526 -12.6115 4.3265 0.7024 6.4318 -3.5827 -2.5225 4.0151 -22.7386 4.0169 -2.7833 -53.7005 -0.6675 0.0000 0.0000 16.7174 -11.3382 -6.9971 4.3403 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.8711 27.8560 -3.6073 12.2804 48.9139 -6.4806 -0.0000 -0.0000 -20.1246 -6.3345 -12.8709 11.9251 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.0727 2.2205 -46.2190 -3.7951 0.0000 -0.0000 19.4654 -12.4291 41.8374 -37.4949 0.0000 -0.0000 5.4920 -3.8651 19.3519 -6.4260 0.0000 -0.0000 -1.6275 -5.1671 -18.7964 -4.6424 0.0000 -0.0000 - 0.5563 -1.8422 23.5953 0.8547 -1.2547 175.1280 -7.7430 -2.8479 0.4584 -2.2771 -2.0336 -0.2248 11.7396 2.5374 4.4422 1.2068 4.1776 -0.6535 -12.5460 4.3572 0.7444 6.5257 -3.5896 -2.4669 4.0239 -22.7058 4.0214 -2.7996 -53.7137 -0.6872 0.0000 0.0000 16.7439 -11.3569 -6.9608 4.3425 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.8517 27.8306 -3.6039 12.3355 48.9527 -6.5011 -0.0000 -0.0000 -20.0704 -6.3451 -12.8766 11.9528 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0719 2.1963 -46.2199 -3.7832 0.0000 -0.0000 19.4614 -12.4112 41.8633 -37.4781 0.0000 -0.0000 5.4933 -3.8945 19.3785 -6.4050 0.0000 -0.0000 -1.6278 -5.1649 -18.7952 -4.6502 0.0000 -0.0000 - 0.5625 -1.8450 23.5956 0.8656 -1.2686 175.1035 -7.7403 -2.8507 0.4572 -2.2769 -2.0294 -0.2230 11.7249 2.5423 4.4498 1.2103 4.1795 -0.6541 -12.4751 4.3891 0.7847 6.6226 -3.5976 -2.4145 4.0311 -22.6744 4.0220 -2.8284 -53.7278 -0.7175 0.0000 0.0000 16.7664 -11.3811 -6.9281 4.3417 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.8327 27.8066 -3.5971 12.4220 48.9847 -6.5484 -0.0000 -0.0000 -20.0163 -6.3437 -12.8872 11.9872 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.0710 2.1706 -46.2170 -3.7705 0.0000 -0.0000 19.4553 -12.3938 41.8840 -37.4648 0.0000 -0.0000 5.4963 -3.9248 19.4070 -6.3881 0.0000 -0.0000 -1.6270 -5.1625 -18.7964 -4.6578 0.0000 -0.0000 - 0.5687 -1.8477 23.5959 0.8763 -1.2839 175.0811 -7.7435 -2.8565 0.4544 -2.2775 -2.0249 -0.2212 11.7148 2.5503 4.4584 1.2154 4.1822 -0.6548 -12.4002 4.4208 0.8228 6.7219 -3.6070 -2.3656 4.0379 -22.6444 4.0202 -2.8669 -53.7443 -0.7569 0.0000 0.0000 16.7864 -11.4122 -6.8952 4.3388 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.8129 27.7856 -3.5879 12.5447 49.0052 -6.6272 -0.0000 -0.0000 -19.9628 -6.3279 -12.9035 12.0277 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.0720 2.1447 -46.2115 -3.7555 0.0000 -0.0000 19.4475 -12.3848 41.9065 -37.4268 0.0000 -0.0000 5.5007 -3.9563 19.4356 -6.3747 0.0000 -0.0000 -1.6252 -5.1604 -18.7995 -4.6659 0.0000 -0.0000 - 0.5752 -1.8502 23.5962 0.8873 -1.3033 175.0624 -7.7515 -2.8672 0.4484 -2.2790 -2.0206 -0.2200 11.7093 2.5607 4.4694 1.2224 4.1874 -0.6564 -12.3228 4.4494 0.8582 6.8234 -3.6180 -2.3201 4.0462 -22.6182 4.0177 -2.9112 -53.7618 -0.8022 0.0000 0.0000 16.8059 -11.4529 -6.8607 4.3335 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.7940 27.7664 -3.5745 12.7102 49.0122 -6.7440 -0.0000 -0.0000 -19.9092 -6.2952 -12.9266 12.0715 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.0776 2.1165 -46.2012 -3.7373 0.0000 -0.0000 19.4379 -12.3921 41.9332 -37.3364 0.0000 -0.0000 5.5068 -3.9922 19.4637 -6.3640 0.0000 -0.0000 -1.6232 -5.1589 -18.8057 -4.6743 0.0000 -0.0000 - 0.5817 -1.8525 23.5966 0.9074 -1.3272 175.0482 -7.7552 -2.8862 0.4390 -2.2798 -2.0127 -0.2157 11.7067 2.5804 4.4757 1.2292 4.1843 -0.6530 -12.2426 4.4804 0.8910 6.9264 -3.6312 -2.2791 4.0533 -22.5877 4.0114 -2.9608 -53.7869 -0.8562 0.0000 0.0000 16.8255 -11.4979 -6.8210 4.3273 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.7692 27.7554 -3.5635 12.9169 49.0011 -6.8976 -0.0000 -0.0000 -19.8577 -6.2459 -12.9555 12.1181 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.0996 2.0856 -46.2011 -3.7192 0.0000 -0.0000 19.4325 -12.4186 41.9843 -37.1709 0.0000 -0.0000 5.5255 -4.0318 19.4870 -6.3600 0.0000 -0.0000 -1.6181 -5.1580 -18.8109 -4.6843 0.0000 -0.0000 - 0.5883 -1.8547 23.5971 0.9279 -1.3534 175.0404 -7.7611 -2.9043 0.4261 -2.2814 -2.0066 -0.2134 11.7074 2.5960 4.4878 1.2382 4.1886 -0.6538 -12.1628 4.5074 0.9212 7.0307 -3.6469 -2.2419 4.0631 -22.5604 4.0062 -3.0126 -53.8140 -0.9131 0.0000 0.0000 16.8443 -11.5488 -6.7783 4.3204 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -1.7472 27.7488 -3.5505 13.1646 48.9732 -7.0830 -0.0000 -0.0000 -19.8087 -6.1761 -12.9898 12.1636 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 3.1278 2.0567 -46.1981 -3.6936 0.0000 -0.0000 19.4250 -12.4726 42.0487 -36.9159 0.0000 -0.0000 5.5432 -4.0745 19.5053 -6.3545 0.0000 -0.0000 -1.6132 -5.1590 -18.8176 -4.6957 0.0000 -0.0000 - 0.5951 -1.8569 23.5977 0.9578 -1.3862 175.0380 -7.7617 -2.9302 0.4113 -2.2801 -1.9972 -0.2090 11.7111 2.6192 4.4926 1.2438 4.1817 -0.6454 -12.0812 4.5406 0.9478 7.1348 -3.6675 -2.2102 4.0714 -22.5243 3.9936 -3.0648 -53.8510 -0.9717 0.0000 0.0000 16.8600 -11.6007 -6.7314 4.3141 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.7245 27.7536 -3.5502 13.4353 48.9311 -7.2728 -0.0000 -0.0000 -19.7697 -6.0929 -13.0278 12.1978 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.1731 2.0239 -46.2233 -3.6658 0.0000 -0.0000 19.4255 -12.5456 42.1600 -36.5663 0.0000 -0.0000 5.5740 -4.1228 19.5211 -6.3575 0.0000 -0.0000 -1.6040 -5.1603 -18.8264 -4.7092 0.0000 -0.0000 - 0.6019 -1.8595 23.5984 0.9716 -1.4167 175.0449 -7.7752 -2.9456 0.3910 -2.2836 -1.9928 -0.2094 11.7151 2.6280 4.5160 1.2569 4.1983 -0.6571 -12.0068 4.5553 0.9733 7.2429 -3.6867 -2.1803 4.0872 -22.5063 3.9950 -3.1276 -53.8796 -1.0394 0.0000 0.0000 16.8743 -11.6523 -6.6900 4.3076 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.7053 27.7536 -3.5284 13.7710 48.8670 -7.5373 -0.0000 -0.0000 -19.7200 -5.9778 -13.0728 12.2430 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.2062 1.9974 -46.2069 -3.6279 0.0000 -0.0000 19.4136 -12.6583 42.2434 -36.1291 0.0000 -0.0000 5.5780 -4.1742 19.5205 -6.3434 0.0000 -0.0000 -1.6013 -5.1658 -18.8294 -4.7237 0.0000 -0.0000 - 0.6092 -1.8619 23.5992 1.0149 -1.4592 175.0571 -7.7551 -2.9750 0.3677 -2.2823 -1.9838 -0.2032 11.7113 2.6540 4.5252 1.2649 4.1953 -0.6547 -11.9304 4.5735 0.9945 7.3511 -3.7095 -2.1554 4.0984 -22.4774 3.9881 -3.1945 -53.9209 -1.1149 0.0000 0.0000 16.8822 -11.6966 -6.6516 4.3029 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.6851 27.7579 -3.5140 14.1368 48.7945 -7.8163 -0.0000 -0.0000 -19.6783 -5.8548 -13.1240 12.2758 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.2783 1.9603 -46.2167 -3.5933 0.0000 -0.0000 19.4117 -12.7850 42.3685 -35.6179 0.0000 -0.0000 5.6191 -4.2350 19.5205 -6.3426 0.0000 -0.0000 -1.5934 -5.1696 -18.8361 -4.7403 0.0000 -0.0000 - 0.6164 -1.8653 23.6000 1.0210 -1.4932 175.0762 -7.7748 -2.9862 0.3456 -2.2835 -1.9767 -0.2061 11.7151 2.6591 4.5458 1.2758 4.2063 -0.6602 -11.8622 4.5886 1.0143 7.4603 -3.7368 -2.1338 4.1117 -22.4529 3.9872 -3.2748 -53.9593 -1.1978 0.0000 0.0000 16.8809 -11.7337 -6.6217 4.3002 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.6649 27.7692 -3.5013 14.5209 48.7069 -8.1117 -0.0000 -0.0000 -19.6377 -5.7167 -13.1779 12.2987 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.3102 1.9335 -46.2314 -3.5466 0.0000 -0.0000 19.4063 -12.9273 42.5049 -35.0609 0.0000 -0.0000 5.6103 -4.2935 19.5039 -6.3257 0.0000 -0.0000 -1.5887 -5.1778 -18.8358 -4.7580 0.0000 -0.0000 - 0.6240 -1.8689 23.6007 1.0313 -1.5350 175.0981 -7.7872 -3.0056 0.3223 -2.2793 -1.9672 -0.2031 11.7128 2.6754 4.5571 1.2829 4.2051 -0.6581 -11.7949 4.6017 1.0299 7.5704 -3.7666 -2.1157 4.1231 -22.4267 3.9831 -3.3636 -54.0013 -1.2879 0.0000 0.0000 16.8691 -11.7598 -6.6036 4.2984 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.6468 27.7808 -3.4928 14.9230 48.6150 -8.4137 -0.0000 -0.0000 -19.6013 -5.5648 -13.2365 12.3158 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.3492 1.8978 -46.2559 -3.5011 0.0000 -0.0000 19.4052 -13.0727 42.6563 -34.4818 0.0000 -0.0000 5.6075 -4.3605 19.4902 -6.3132 0.0000 -0.0000 -1.5832 -5.1848 -18.8403 -4.7759 0.0000 -0.0000 - 0.6319 -1.8728 23.6015 1.0457 -1.5763 175.1226 -7.7882 -3.0195 0.3009 -2.2751 -1.9577 -0.2001 11.7037 2.6926 4.5686 1.2888 4.1998 -0.6566 -11.7303 4.6106 1.0432 7.6808 -3.7985 -2.1000 4.1350 -22.4011 3.9815 -3.4634 -54.0431 -1.3857 0.0000 0.0000 16.8461 -11.7750 -6.5998 4.2973 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.6289 27.7873 -3.4830 15.3412 48.5244 -8.7306 -0.0000 -0.0000 -19.5645 -5.4034 -13.3003 12.3252 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 3.3916 1.8621 -46.2789 -3.4557 0.0000 -0.0000 19.4038 -13.2189 42.8045 -33.9108 0.0000 -0.0000 5.6063 -4.4282 19.4714 -6.2980 0.0000 -0.0000 -1.5778 -5.1919 -18.8424 -4.7942 0.0000 -0.0000 - 0.6400 -1.8771 23.6022 1.0599 -1.6161 175.1473 -7.7829 -3.0263 0.2819 -2.2714 -1.9483 -0.1973 11.6896 2.7082 4.5811 1.2933 4.1926 -0.6545 -11.6685 4.6152 1.0533 7.7910 -3.8315 -2.0864 4.1460 -22.3753 3.9808 -3.5717 -54.0852 -1.4883 0.0000 0.0000 16.8104 -11.7789 -6.6097 4.2972 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.6135 27.7891 -3.4739 15.7676 48.4377 -9.0508 -0.0000 -0.0000 -19.5297 -5.2292 -13.3685 12.3291 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 3.4306 1.8265 -46.3023 -3.4106 0.0000 -0.0000 19.4020 -13.3572 42.9463 -33.3736 0.0000 -0.0000 5.6023 -4.4955 19.4500 -6.2794 0.0000 -0.0000 -1.5731 -5.1988 -18.8426 -4.8120 0.0000 -0.0000 - 0.6482 -1.8819 23.6028 1.0728 -1.6537 175.1713 -7.7729 -3.0266 0.2664 -2.2679 -1.9386 -0.1942 11.6709 2.7234 4.5939 1.2961 4.1818 -0.6524 -11.6090 4.6152 1.0615 7.9001 -3.8668 -2.0736 4.1564 -22.3514 3.9814 -3.6817 -54.1241 -1.5899 0.0000 0.0000 16.7629 -11.7737 -6.6336 4.2966 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5994 27.7832 -3.4660 16.1926 48.3608 -9.3687 -0.0000 -0.0000 -19.4956 -5.0607 -13.4410 12.3298 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.4635 1.7910 -46.3243 -3.3669 0.0000 -0.0000 19.3994 -13.4816 43.0754 -32.8899 0.0000 -0.0000 5.5948 -4.5615 19.4285 -6.2581 0.0000 -0.0000 -1.5690 -5.2051 -18.8422 -4.8288 0.0000 -0.0000 - 0.6568 -1.8867 23.6034 1.0943 -1.6939 175.1901 -7.7500 -3.0301 0.2583 -2.2592 -1.9257 -0.1878 11.6431 2.7523 4.5933 1.2956 4.1512 -0.6379 -11.5502 4.6152 1.0667 8.0079 -3.9018 -2.0627 4.1616 -22.3227 3.9791 -3.7911 -54.1643 -1.6940 0.0000 0.0000 16.7068 -11.7591 -6.6689 4.2949 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5785 27.7715 -3.4566 16.6284 48.2904 -9.7062 -0.0000 -0.0000 -19.4582 -4.8917 -13.5195 12.3283 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 3.5014 1.7487 -46.3531 -3.3302 0.0000 -0.0000 19.4014 -13.5835 43.2003 -32.4747 0.0000 -0.0000 5.5993 -4.6290 19.4194 -6.2422 0.0000 -0.0000 -1.5638 -5.2092 -18.8485 -4.8446 0.0000 -0.0000 - 0.6651 -1.8921 23.6039 1.1059 -1.7234 175.2092 -7.7300 -3.0138 0.2490 -2.2592 -1.9167 -0.1858 11.6177 2.7619 4.6135 1.2970 4.1391 -0.6391 -11.4938 4.6085 1.0707 8.1114 -3.9414 -2.0511 4.1765 -22.3023 3.9854 -3.8881 -54.1945 -1.7770 0.0000 0.0000 16.6400 -11.7430 -6.7107 4.2929 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5714 27.7482 -3.4536 17.0333 48.2421 -9.9972 -0.0000 -0.0000 -19.4304 -4.7097 -13.5959 12.3249 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 3.5201 1.7173 -46.3687 -3.2887 0.0000 -0.0000 19.3962 -13.6729 43.2938 -32.1251 0.0000 -0.0000 5.5860 -4.6875 19.3993 -6.2145 0.0000 -0.0000 -1.5614 -5.2154 -18.8454 -4.8586 0.0000 -0.0000 - 0.6736 -1.8977 23.6044 1.1154 -1.7514 175.2238 -7.7109 -2.9988 0.2440 -2.2573 -1.9047 -0.1801 11.5908 2.7799 4.6285 1.2968 4.1217 -0.6375 -11.4397 4.5904 1.0709 8.2122 -3.9782 -2.0394 4.1844 -22.2918 3.9892 -3.9626 -54.2159 -1.8454 0.0000 0.0000 16.5705 -11.7244 -6.7599 4.2869 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.5564 27.7085 -3.4457 17.4459 48.2050 -10.3134 -0.0000 -0.0000 -19.3961 -4.5375 -13.6785 12.3198 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.5319 1.6839 -46.3753 -3.2523 0.0000 -0.0000 19.3898 -13.7443 43.3649 -31.8461 0.0000 -0.0000 5.5713 -4.7444 19.3867 -6.1880 0.0000 -0.0000 -1.5588 -5.2215 -18.8454 -4.8714 0.0000 -0.0000 - 0.6821 -1.9034 23.6048 1.1246 -1.7785 175.2349 -7.6914 -2.9830 0.2423 -2.2538 -1.8909 -0.1741 11.5624 2.8031 4.6391 1.2953 4.0941 -0.6301 -11.3857 4.5741 1.0696 8.3083 -4.0166 -2.0279 4.1938 -22.2791 3.9939 -4.0164 -54.2344 -1.8952 0.0000 0.0000 16.4992 -11.7053 -6.8080 4.2794 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.5406 27.6650 -3.4417 17.8473 48.1786 -10.6190 -0.0000 -0.0000 -19.3659 -4.3696 -13.7597 12.3170 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.5383 1.6493 -46.3867 -3.2179 0.0000 -0.0000 19.3858 -13.7979 43.4291 -31.6252 0.0000 -0.0000 5.5570 -4.7995 19.3828 -6.1632 0.0000 -0.0000 -1.5562 -5.2276 -18.8507 -4.8834 0.0000 -0.0000 - 0.6904 -1.9092 23.6052 1.1337 -1.8037 175.2440 -7.6720 -2.9666 0.2406 -2.2505 -1.8763 -0.1678 11.5357 2.8295 4.6494 1.2929 4.0656 -0.6209 -11.3318 4.5533 1.0668 8.3986 -4.0559 -2.0161 4.2086 -22.2704 4.0026 -4.0444 -54.2468 -1.9210 0.0000 0.0000 16.4292 -11.6889 -6.8530 4.2696 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.5239 27.6116 -3.4365 18.2453 48.1624 -10.9271 -0.0000 -0.0000 -19.3365 -4.2088 -13.8411 12.3148 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.5406 1.6159 -46.3926 -3.1848 0.0000 -0.0000 19.3818 -13.8417 43.4785 -31.4494 0.0000 -0.0000 5.5426 -4.8518 19.3830 -6.1394 0.0000 -0.0000 -1.5531 -5.2353 -18.8582 -4.8948 0.0000 -0.0000 - 0.6986 -1.9152 23.6055 1.1431 -1.8263 175.2525 -7.6523 -2.9479 0.2422 -2.2454 -1.8590 -0.1605 11.5069 2.8574 4.6574 1.2914 4.0301 -0.6115 -11.2781 4.5337 1.0631 8.4835 -4.0958 -2.0043 4.2172 -22.2628 4.0073 -4.0400 -54.2547 -1.9246 0.0000 0.0000 16.3640 -11.6725 -6.8935 4.2568 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.5032 27.5573 -3.4396 18.6247 48.1525 -11.2173 -0.0000 -0.0000 -19.3149 -4.0536 -13.9183 12.3144 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.5395 1.5859 -46.4018 -3.1488 0.0000 -0.0000 19.3770 -13.8781 43.5246 -31.3044 0.0000 -0.0000 5.5283 -4.9004 19.3877 -6.1165 0.0000 -0.0000 -1.5489 -5.2447 -18.8697 -4.9066 0.0000 -0.0000 - 0.7066 -1.9213 23.6059 1.1523 -1.8492 175.2620 -7.6339 -2.9316 0.2406 -2.2418 -1.8420 -0.1531 11.4830 2.8877 4.6653 1.2895 3.9986 -0.6021 -11.2246 4.5080 1.0577 8.5624 -4.1355 -1.9917 4.2323 -22.2601 4.0161 -4.0098 -54.2591 -1.9030 0.0000 0.0000 16.3037 -11.6599 -6.9267 4.2428 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -1.4813 27.4935 -3.4405 19.0070 48.1461 -11.5162 -0.0000 -0.0000 -19.2957 -3.9082 -13.9946 12.3145 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5371 1.5557 -46.4030 -3.1137 0.0000 -0.0000 19.3718 -13.9142 43.5582 -31.1773 0.0000 -0.0000 5.5141 -4.9484 19.3935 -6.0960 0.0000 -0.0000 -1.5437 -5.2562 -18.8834 -4.9187 0.0000 -0.0000 - 0.7143 -1.9276 23.6063 1.1617 -1.8713 175.2734 -7.6169 -2.9168 0.2396 -2.2354 -1.8211 -0.1447 11.4579 2.9226 4.6664 1.2883 3.9558 -0.5880 -11.1708 4.4886 1.0527 8.6355 -4.1765 -1.9798 4.2414 -22.2521 4.0208 -3.9582 -54.2651 -1.8689 0.0000 0.0000 16.2507 -11.6459 -6.9527 4.2284 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.4578 27.4343 -3.4488 19.3747 48.1395 -11.7988 -0.0000 -0.0000 -19.2852 -3.7687 -14.0636 12.3140 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 3.5332 1.5275 -46.4118 -3.0757 0.0000 -0.0000 19.3668 -13.9478 43.5958 -31.0591 0.0000 -0.0000 5.5002 -4.9945 19.4010 -6.0786 0.0000 -0.0000 -1.5362 -5.2697 -18.9007 -4.9315 0.0000 -0.0000 - 0.7217 -1.9340 23.6066 1.1718 -1.8927 175.2880 -7.5985 -2.9015 0.2373 -2.2301 -1.8016 -0.1370 11.4348 2.9537 4.6694 1.2877 3.9227 -0.5793 -11.1166 4.4638 1.0468 8.7033 -4.2165 -1.9667 4.2540 -22.2514 4.0278 -3.8906 -54.2670 -1.8203 0.0000 0.0000 16.2053 -11.6312 -6.9742 4.2129 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.4298 27.3728 -3.4577 19.7447 48.1242 -12.0864 -0.0000 -0.0000 -19.2824 -3.6404 -14.1318 12.3151 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5289 1.5016 -46.4143 -3.0348 0.0000 -0.0000 19.3580 -13.9834 43.6226 -30.9510 0.0000 -0.0000 5.4865 -5.0390 19.4070 -6.0630 0.0000 -0.0000 -1.5269 -5.2849 -18.9203 -4.9463 0.0000 -0.0000 - 0.7289 -1.9406 23.6069 1.1827 -1.9134 175.3056 -7.5777 -2.8861 0.2352 -2.2247 -1.7820 -0.1291 11.4102 2.9819 4.6707 1.2879 3.8926 -0.5731 -11.0606 4.4408 1.0412 8.7664 -4.2572 -1.9536 4.2684 -22.2526 4.0364 -3.8236 -54.2680 -1.7739 0.0000 0.0000 16.1689 -11.6145 -6.9928 4.1953 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.3976 27.3183 -3.4732 20.1058 48.0959 -12.3610 -0.0000 -0.0000 -19.2924 -3.5222 -14.1959 12.3177 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5235 1.4774 -46.4158 -2.9917 0.0000 -0.0000 19.3458 -14.0163 43.6416 -30.8566 0.0000 -0.0000 5.4732 -5.0820 19.4114 -6.0500 0.0000 -0.0000 -1.5152 -5.3008 -18.9413 -4.9618 0.0000 -0.0000 - 0.7358 -1.9474 23.6072 1.1948 -1.9320 175.3268 -7.5572 -2.8690 0.2317 -2.2177 -1.7626 -0.1228 11.3880 3.0060 4.6700 1.2888 3.8684 -0.5672 -11.0074 4.4172 1.0356 8.8260 -4.2963 -1.9397 4.2776 -22.2496 4.0391 -3.7493 -54.2775 -1.7179 0.0000 0.0000 16.1336 -11.5955 -7.0069 4.1828 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.3684 27.2588 -3.4807 20.4806 48.0617 -12.6572 -0.0000 -0.0000 -19.3015 -3.4133 -14.2592 12.3145 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.5161 1.4560 -46.4189 -2.9457 0.0000 -0.0000 19.3280 -14.0409 43.6502 -30.7898 0.0000 -0.0000 5.4604 -5.1219 19.4143 -6.0388 0.0000 -0.0000 -1.5011 -5.3163 -18.9651 -4.9777 0.0000 -0.0000 - 0.7425 -1.9544 23.6073 1.2070 -1.9520 175.3490 -7.5317 -2.8543 0.2311 -2.2127 -1.7442 -0.1152 11.3624 3.0312 4.6652 1.2898 3.8428 -0.5625 -10.9510 4.3981 1.0306 8.8824 -4.3355 -1.9261 4.2883 -22.2477 4.0433 -3.6984 -54.2873 -1.6849 0.0000 0.0000 16.1072 -11.5715 -7.0237 4.1701 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.3354 27.2108 -3.4993 20.8357 48.0118 -12.9253 -0.0000 -0.0000 -19.3257 -3.3102 -14.3192 12.3129 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.5056 1.4309 -46.4188 -2.9028 0.0000 -0.0000 19.3059 -14.0490 43.6394 -30.7697 0.0000 -0.0000 5.4484 -5.1629 19.4156 -6.0313 0.0000 -0.0000 -1.4849 -5.3295 -18.9884 -4.9928 0.0000 -0.0000 - 0.7490 -1.9618 23.6074 1.2204 -1.9685 175.3734 -7.5050 -2.8353 0.2296 -2.2059 -1.7272 -0.1096 11.3380 3.0512 4.6594 1.2898 3.8216 -0.5572 -10.8966 4.3833 1.0278 8.9375 -4.3730 -1.9133 4.2929 -22.2377 4.0408 -3.6602 -54.3089 -1.6594 0.0000 0.0000 16.0793 -11.5433 -7.0388 4.1651 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.3077 27.1662 -3.5085 21.2038 47.9481 -13.2108 -0.0000 -0.0000 -19.3489 -3.2181 -14.3800 12.3055 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.4895 1.4079 -46.4205 -2.8592 0.0000 -0.0000 19.2754 -14.0327 43.6055 -30.8198 0.0000 -0.0000 5.4365 -5.1997 19.4162 -6.0248 0.0000 -0.0000 -1.4668 -5.3391 -19.0138 -5.0067 0.0000 -0.0000 - 0.7552 -1.9694 23.6074 1.2346 -1.9811 175.3959 -7.4726 -2.8133 0.2332 -2.2000 -1.7127 -0.1041 11.3090 3.0670 4.6537 1.2905 3.8063 -0.5546 -10.8408 4.3732 1.0240 8.9907 -4.4107 -1.8990 4.2975 -22.2271 4.0384 -3.6548 -54.3346 -1.6634 0.0000 0.0000 16.0589 -11.5105 -7.0556 4.1581 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.2799 27.1289 -3.5220 21.5597 47.8702 -13.4803 -0.0000 -0.0000 -19.3822 -3.1319 -14.4397 12.3024 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 3.4661 1.3853 -46.4191 -2.8193 0.0000 -0.0000 19.2371 -13.9840 43.5402 -30.9635 0.0000 -0.0000 5.4252 -5.2319 19.4163 -6.0197 0.0000 -0.0000 -1.4466 -5.3438 -19.0375 -5.0184 0.0000 -0.0000 - 0.7613 -1.9773 23.6073 1.2503 -1.9890 175.4161 -7.4347 -2.7863 0.2406 -2.1939 -1.7008 -0.0992 11.2771 3.0779 4.6495 1.2908 3.7962 -0.5534 -10.7852 4.3659 1.0219 9.0445 -4.4446 -1.8866 4.2984 -22.2141 4.0329 -3.6787 -54.3657 -1.6936 0.0000 0.0000 16.0408 -11.4767 -7.0764 4.1572 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.2519 27.0958 -3.5360 21.9049 47.7819 -13.7448 -0.0000 -0.0000 -19.4159 -3.0527 -14.5009 12.2968 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.4345 1.3634 -46.4163 -2.7834 0.0000 -0.0000 19.1905 -13.8957 43.4396 -31.2221 0.0000 -0.0000 5.4149 -5.2586 19.4169 -6.0150 0.0000 -0.0000 -1.4249 -5.3420 -19.0604 -5.0268 0.0000 -0.0000 - 0.7674 -1.9855 23.6071 1.2562 -1.9965 175.4306 -7.4030 -2.7658 0.2558 -2.1924 -1.6918 -0.0935 11.2477 3.1023 4.6384 1.2891 3.7783 -0.5477 -10.7288 4.3652 1.0203 9.0984 -4.4781 -1.8755 4.3013 -22.1977 4.0254 -3.7298 -54.4029 -1.7432 0.0000 0.0000 16.0238 -11.4437 -7.0960 4.1601 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.2338 27.0693 -3.5513 22.2315 47.6867 -13.9839 -0.0000 -0.0000 -19.4538 -2.9704 -14.5620 12.2909 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.3849 1.3325 -46.4104 -2.7620 0.0000 -0.0000 19.1422 -13.7609 43.3012 -31.6102 0.0000 -0.0000 5.3966 -5.2854 19.4237 -6.0140 0.0000 -0.0000 -1.4022 -5.3325 -19.0840 -5.0308 0.0000 -0.0000 - 0.7729 -1.9947 23.6067 1.2325 -1.9899 175.4417 -7.4055 -2.7288 0.2733 -2.1848 -1.6935 -0.0945 11.2201 3.1201 4.6381 1.2869 3.7684 -0.5427 -10.6755 4.3749 1.0199 9.1529 -4.5127 -1.8664 4.2927 -22.1804 4.0111 -3.8045 -54.4407 -1.8199 0.0000 0.0000 16.0112 -11.4097 -7.1161 4.1652 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.2101 27.0580 -3.5683 22.5405 47.5710 -14.2216 -0.0000 -0.0000 -19.4863 -2.9124 -14.6233 12.2866 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 3.2877 1.3135 -46.4052 -2.7330 0.0000 -0.0000 19.0800 -13.5818 43.1253 -32.1366 0.0000 -0.0000 5.3402 -5.2999 19.4341 -6.0033 0.0000 -0.0000 -1.3810 -5.3180 -19.1111 -5.0299 0.0000 -0.0000 - 0.7781 -2.0034 23.6063 1.2551 -1.9807 175.4478 -7.3480 -2.6897 0.2967 -2.1781 -1.6856 -0.0868 11.1777 3.1165 4.6416 1.2864 3.7717 -0.5484 -10.6196 4.3832 1.0238 9.2079 -4.5416 -1.8586 4.2962 -22.1534 4.0113 -3.9158 -54.4905 -1.9292 0.0000 0.0000 16.0045 -11.3796 -7.1323 4.1726 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.2027 27.0352 -3.5686 22.8479 47.4650 -14.4639 -0.0000 -0.0000 -19.5090 -2.8530 -14.6896 12.2817 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 3.2328 1.2936 -46.3893 -2.7194 0.0000 -0.0000 19.0160 -13.3664 42.9099 -32.7951 0.0000 -0.0000 5.3357 -5.3069 19.4355 -5.9968 0.0000 -0.0000 -1.3579 -5.2964 -19.1224 -5.0249 0.0000 -0.0000 - 0.7828 -2.0130 23.6057 1.2419 -1.9579 175.4474 -7.3285 -2.6438 0.3293 -2.1746 -1.6881 -0.0865 11.1444 3.1261 4.6484 1.2841 3.7729 -0.5475 -10.5656 4.3990 1.0256 9.2634 -4.5706 -1.8541 4.2977 -22.1306 4.0038 -4.0232 -54.5343 -2.0322 0.0000 0.0000 15.9989 -11.3587 -7.1444 4.1810 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.1979 27.0227 -3.5804 23.1130 47.3559 -14.6691 -0.0000 -0.0000 -19.5289 -2.7971 -14.7523 12.2781 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.1288 1.2832 -46.3730 -2.7068 0.0000 -0.0000 18.9489 -13.1170 42.6702 -33.5738 0.0000 -0.0000 5.2899 -5.3015 19.4480 -5.9860 0.0000 -0.0000 -1.3340 -5.2705 -19.1412 -5.0163 0.0000 -0.0000 - 0.7872 -2.0228 23.6050 1.2360 -1.9329 175.4452 -7.2978 -2.5987 0.3627 -2.1697 -1.6885 -0.0827 11.1070 3.1308 4.6593 1.2819 3.7753 -0.5468 -10.5113 4.4217 1.0284 9.3186 -4.5977 -1.8533 4.3001 -22.0989 3.9973 -4.1382 -54.5855 -2.1453 0.0000 0.0000 15.9976 -11.3415 -7.1481 4.1902 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.1949 27.0117 -3.5919 23.3552 47.2492 -14.8671 -0.0000 -0.0000 -19.5375 -2.7503 -14.8141 12.2758 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 3.0276 1.2723 -46.3543 -2.7015 0.0000 -0.0000 18.8837 -12.8463 42.4115 -34.4421 0.0000 -0.0000 5.2518 -5.2922 19.4615 -5.9767 0.0000 -0.0000 -1.3100 -5.2405 -19.1592 -5.0040 0.0000 -0.0000 - 0.7910 -2.0334 23.6044 1.2003 -1.9015 175.4428 -7.2996 -2.5540 0.3974 -2.1615 -1.6907 -0.0801 11.0717 3.1393 4.6740 1.2809 3.7776 -0.5467 -10.4589 4.4464 1.0333 9.3711 -4.6224 -1.8556 4.3159 -22.0715 4.0005 -4.2594 -54.6285 -2.2588 0.0000 0.0000 16.0037 -11.3285 -7.1495 4.1968 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.1995 27.0104 -3.5945 23.5725 47.1335 -15.0561 -0.0000 -0.0000 -19.5334 -2.7169 -14.8691 12.2708 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 2.8906 1.2658 -46.3353 -2.6964 0.0000 -0.0000 18.8194 -12.5656 42.1449 -35.3648 0.0000 -0.0000 5.1778 -5.2786 19.4755 -5.9618 0.0000 -0.0000 -1.2873 -5.2096 -19.1795 -4.9894 0.0000 -0.0000 - 0.7942 -2.0435 23.6037 1.2199 -1.8708 175.4423 -7.2342 -2.5093 0.4326 -2.1563 -1.6906 -0.0745 11.0289 3.1377 4.6946 1.2778 3.7845 -0.5448 -10.4036 4.4825 1.0359 9.4252 -4.6487 -1.8640 4.3145 -22.0233 3.9925 -4.3488 -54.6910 -2.3597 0.0000 0.0000 16.0071 -11.3248 -7.1319 4.2045 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.2051 26.9967 -3.6169 23.7543 47.0505 -15.2146 -0.0000 -0.0000 -19.5219 -2.6809 -14.9267 12.2751 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.8155 1.2637 -46.3144 -2.6993 0.0000 -0.0000 18.7660 -12.2981 41.8852 -36.2882 0.0000 -0.0000 5.1660 -5.2577 19.4879 -5.9567 0.0000 -0.0000 -1.2607 -5.1788 -19.1973 -4.9739 0.0000 -0.0000 - 0.7966 -2.0542 23.6030 1.2170 -1.8346 175.4459 -7.1930 -2.4636 0.4654 -2.1487 -1.6939 -0.0715 10.9885 3.1380 4.7206 1.2765 3.7939 -0.5436 -10.3508 4.5189 1.0395 9.4754 -4.6724 -1.8755 4.3243 -21.9794 3.9945 -4.4322 -54.7440 -2.4523 0.0000 0.0000 16.0167 -11.3221 -7.1139 4.2078 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.2133 26.9911 -3.6331 23.9093 46.9624 -15.3676 -0.0000 -0.0000 -19.4953 -2.6601 -14.9757 12.2751 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.7183 1.2710 -46.2939 -2.6957 0.0000 -0.0000 18.7155 -12.0514 41.6397 -37.1701 0.0000 -0.0000 5.1254 -5.2321 19.4952 -5.9464 0.0000 -0.0000 -1.2340 -5.1519 -19.2159 -4.9593 0.0000 -0.0000 - 0.7985 -2.0651 23.6025 1.2185 -1.8032 175.4566 -7.1453 -2.4268 0.4936 -2.1390 -1.6936 -0.0671 10.9460 3.1368 4.7483 1.2761 3.8028 -0.5425 -10.2987 4.5588 1.0436 9.5220 -4.6957 -1.8913 4.3392 -21.9310 4.0016 -4.4979 -54.7973 -2.5290 0.0000 0.0000 16.0278 -11.3210 -7.0899 4.2077 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.2218 26.9873 -3.6530 24.0342 46.8824 -15.5041 -0.0000 -0.0000 -19.4591 -2.6422 -15.0173 12.2752 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 2.6343 1.2781 -46.2772 -2.6920 0.0000 -0.0000 18.6750 -11.8382 41.4205 -37.9584 0.0000 -0.0000 5.0888 -5.2096 19.4988 -5.9387 0.0000 -0.0000 -1.2068 -5.1293 -19.2373 -4.9460 0.0000 -0.0000 - 0.7995 -2.0766 23.6022 1.1902 -1.7699 175.4760 -7.1352 -2.3933 0.5143 -2.1246 -1.6957 -0.0629 10.9130 3.1370 4.7773 1.2757 3.8157 -0.5424 -10.2514 4.5979 1.0475 9.5647 -4.7194 -1.9100 4.3601 -21.8883 4.0169 -4.5422 -54.8410 -2.5827 0.0000 0.0000 16.0379 -11.3226 -7.0646 4.2041 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.2315 26.9877 -3.6769 24.1237 46.8067 -15.6195 -0.0000 -0.0000 -19.4136 -2.6479 -15.0508 12.2756 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.5262 1.2930 -46.2689 -2.6789 0.0000 -0.0000 18.6415 -11.6659 41.2371 -38.6147 0.0000 -0.0000 5.0144 -5.1871 19.4926 -5.9235 0.0000 -0.0000 -1.1810 -5.1147 -19.2590 -4.9351 0.0000 -0.0000 - 0.7999 -2.0878 23.6020 1.1762 -1.7452 175.5032 -7.1043 -2.3714 0.5311 -2.1112 -1.6941 -0.0609 10.8734 3.1329 4.8105 1.2792 3.8293 -0.5442 -10.2059 4.6408 1.0518 9.6030 -4.7428 -1.9319 4.3739 -21.8373 4.0310 -4.5702 -54.8907 -2.6280 0.0000 0.0000 16.0472 -11.3151 -7.0368 4.1979 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.2448 26.9950 -3.7026 24.1915 46.7350 -15.7153 -0.0000 -0.0000 -19.3655 -2.6579 -15.0752 12.2776 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.4454 1.3075 -46.2574 -2.6614 0.0000 -0.0000 18.6152 -11.5437 41.0845 -39.1099 0.0000 -0.0000 4.9574 -5.1697 19.4844 -5.9156 0.0000 -0.0000 -1.1528 -5.1059 -19.2849 -4.9276 0.0000 -0.0000 - 0.8000 -2.0984 23.6020 1.1919 -1.7342 175.5414 -7.0389 -2.3618 0.5364 -2.0971 -1.6890 -0.0550 10.8301 3.1269 4.8384 1.2811 3.8405 -0.5416 -10.1602 4.6828 1.0547 9.6361 -4.7641 -1.9556 4.3890 -21.7824 4.0460 -4.5783 -54.9405 -2.6549 0.0000 0.0000 16.0545 -11.3062 -7.0128 4.1874 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.2518 26.9974 -3.7292 24.2447 46.6758 -15.8123 -0.0000 -0.0000 -19.3089 -2.6769 -15.0956 12.2792 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.4125 1.3139 -46.2562 -2.6478 0.0000 -0.0000 18.6015 -11.4691 40.9741 -39.4323 0.0000 -0.0000 4.9353 -5.1626 19.4688 -5.9155 0.0000 -0.0000 -1.1238 -5.1024 -19.3122 -4.9233 0.0000 -0.0000 - 0.7993 -2.1089 23.6021 1.1882 -1.7210 175.5857 -6.9977 -2.3522 0.5380 -2.0825 -1.6846 -0.0532 10.7935 3.1158 4.8691 1.2844 3.8585 -0.5443 -10.1204 4.7214 1.0584 9.6646 -4.7846 -1.9793 4.4071 -21.7336 4.0680 -4.5740 -54.9815 -2.6657 0.0000 0.0000 16.0576 -11.2936 -6.9935 4.1745 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.2609 27.0083 -3.7575 24.2720 46.6174 -15.8819 -0.0000 -0.0000 -19.2551 -2.7044 -15.1081 12.2810 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.3676 1.3309 -46.2593 -2.6217 0.0000 -0.0000 18.5900 -11.4398 40.8998 -39.5938 0.0000 -0.0000 4.8894 -5.1536 19.4443 -5.9108 0.0000 -0.0000 -1.0950 -5.1069 -19.3374 -4.9228 0.0000 -0.0000 - 0.7983 -2.1191 23.6024 1.1661 -1.7147 175.6367 -6.9794 -2.3526 0.5324 -2.0673 -1.6781 -0.0505 10.7625 3.1035 4.8961 1.2886 3.8765 -0.5479 -10.0859 4.7587 1.0614 9.6875 -4.8061 -2.0036 4.4173 -21.6890 4.0865 -4.5575 -55.0182 -2.6651 0.0000 0.0000 16.0562 -11.2741 -6.9798 4.1598 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.2675 27.0223 -3.7880 24.2809 46.5635 -15.9360 -0.0000 -0.0000 -19.2029 -2.7379 -15.1128 12.2821 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 2.3145 1.3444 -46.2683 -2.5919 0.0000 -0.0000 18.5837 -11.4464 40.8563 -39.6144 0.0000 -0.0000 4.8240 -5.1527 19.4147 -5.9045 0.0000 -0.0000 -1.0693 -5.1175 -19.3643 -4.9241 0.0000 -0.0000 - 0.7974 -2.1279 23.6027 1.1761 -1.7194 175.6869 -6.9280 -2.3599 0.5258 -2.0488 -1.6761 -0.0465 10.7235 3.1005 4.9133 1.2926 3.8853 -0.5481 -10.0524 4.7909 1.0642 9.7063 -4.8219 -2.0244 4.4376 -21.6400 4.1139 -4.5482 -55.0572 -2.6648 0.0000 0.0000 16.0526 -11.2531 -6.9718 4.1454 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.2727 27.0325 -3.8170 24.2789 46.5250 -15.9765 -0.0000 -0.0000 -19.1545 -2.7715 -15.1169 12.2855 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.3078 1.3498 -46.2797 -2.5686 0.0000 -0.0000 18.5854 -11.4801 40.8416 -39.5270 0.0000 -0.0000 4.8021 -5.1581 19.3911 -5.9111 0.0000 -0.0000 -1.0416 -5.1283 -19.3936 -4.9279 0.0000 -0.0000 - 0.7961 -2.1358 23.6030 1.1829 -1.7250 175.7381 -6.8807 -2.3685 0.5146 -2.0356 -1.6728 -0.0450 10.6892 3.0936 4.9315 1.2970 3.8974 -0.5499 -10.0244 4.8188 1.0662 9.7206 -4.8367 -2.0437 4.4509 -21.5967 4.1354 -4.5284 -55.0916 -2.6532 0.0000 0.0000 16.0448 -11.2279 -6.9692 4.1309 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.2764 27.0436 -3.8438 24.2705 46.4905 -16.0077 -0.0000 -0.0000 -19.1123 -2.8084 -15.1174 12.2890 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.3040 1.3571 -46.2912 -2.5425 0.0000 -0.0000 18.5872 -11.5321 40.8413 -39.3738 0.0000 -0.0000 4.7779 -5.1645 19.3622 -5.9147 0.0000 -0.0000 -1.0178 -5.1424 -19.4183 -4.9326 0.0000 -0.0000 - 0.7949 -2.1432 23.6033 1.1596 -1.7322 175.7872 -6.8707 -2.3823 0.4977 -2.0270 -1.6578 -0.0401 10.6660 3.0695 4.9497 1.3036 3.9179 -0.5572 -10.0046 4.8397 1.0682 9.7311 -4.8506 -2.0598 4.4628 -21.5652 4.1579 -4.5094 -55.1164 -2.6374 0.0000 0.0000 16.0343 -11.2042 -6.9717 4.1174 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.2853 27.0551 -3.8644 24.2567 46.4607 -16.0250 -0.0000 -0.0000 -19.0762 -2.8432 -15.1150 12.2903 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 2.2726 1.3608 -46.3071 -2.5171 0.0000 -0.0000 18.5909 -11.5870 40.8519 -39.1947 0.0000 -0.0000 4.7217 -5.1760 19.3274 -5.9097 0.0000 -0.0000 -1.0018 -5.1582 -19.4358 -4.9360 0.0000 -0.0000 - 0.7938 -2.1487 23.6036 1.1633 -1.7373 175.8264 -6.8397 -2.3877 0.4904 -2.0141 -1.6590 -0.0419 10.6414 3.0686 4.9558 1.3046 3.9227 -0.5552 -9.9858 4.8584 1.0701 9.7386 -4.8595 -2.0721 4.4679 -21.5320 4.1762 -4.4985 -55.1417 -2.6347 0.0000 0.0000 16.0263 -11.1784 -6.9788 4.1051 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.2822 27.0660 -3.8810 24.2499 46.4341 -16.0513 -0.0000 -0.0000 -19.0467 -2.8812 -15.1147 12.2964 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.2731 1.3677 -46.3152 -2.4963 0.0000 -0.0000 18.5929 -11.6413 40.8633 -39.0261 0.0000 -0.0000 4.7060 -5.1797 19.3113 -5.9194 0.0000 -0.0000 -0.9810 -5.1701 -19.4604 -4.9404 0.0000 -0.0000 diff --git a/ink-theater/mocap/zombie.bvh b/ink-theater/mocap/zombie.bvh deleted file mode 100644 index 9a0ffe8d..00000000 --- a/ink-theater/mocap/zombie.bvh +++ /dev/null @@ -1,946 +0,0 @@ -HIERARCHY -ROOT Hips -{ - OFFSET 0.00 0.00 0.00 - CHANNELS 6 Xposition Yposition Zposition Xrotation Yrotation Zrotation - JOINT Spine - { - OFFSET 0.00000 1.15266 1.72900 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine1 - { - OFFSET 0.00000 0.40032 2.27031 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine2 - { - OFFSET 0.00000 0.20092 2.29656 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Spine3 - { - OFFSET 0.00000 0.00000 2.30533 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Neck - { - OFFSET 0.00000 -0.86449 6.05149 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT Head - { - OFFSET 0.00000 -0.55043 3.12167 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 0.00000 3.73175 - } - } - } - JOINT RightShoulder - { - OFFSET -0.78828 -1.31380 4.25672 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightArm - { - OFFSET -3.91513 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightForeArm - { - OFFSET -6.91491 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHand - { - OFFSET -6.09622 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightHandEnd - { - OFFSET -1.74995 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET -1.74995 0.00000 0.00000 - } - } - JOINT RightHandThumb1 - { - OFFSET -0.69998 -1.16663 -0.46665 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET -1.69032 -0.45292 0.00000 - } - } - } - } - } - } - JOINT LeftShoulder - { - OFFSET 0.78828 -1.31380 4.25672 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftArm - { - OFFSET 3.91513 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftForeArm - { - OFFSET 6.91491 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHand - { - OFFSET 6.09622 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftHandEnd - { - OFFSET 1.74995 0.00000 0.00000 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 1.74995 0.00000 0.00000 - } - } - JOINT LeftHandThumb1 - { - OFFSET 0.69998 -1.16663 -0.46665 - CHANNELS 3 Yrotation Xrotation Zrotation - End Site - { - OFFSET 1.69032 -0.45292 0.00000 - } - } - } - } - } - } - } - } - } - } - JOINT RightUpLeg - { - OFFSET -2.33857 0.00000 -0.68318 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightLeg - { - OFFSET 0.00000 0.00000 -10.74496 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightFoot - { - OFFSET 0.00000 0.00000 -10.93085 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT RightToeBase - { - OFFSET 0.00000 -4.08727 -1.48765 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.89187 -0.00000 - } - } - } - } - } - JOINT LeftUpLeg - { - OFFSET 2.33857 0.00000 -0.68318 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftLeg - { - OFFSET 0.00000 0.00000 -10.74496 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftFoot - { - OFFSET 0.00000 0.00000 -10.93085 - CHANNELS 3 Xrotation Yrotation Zrotation - JOINT LeftToeBase - { - OFFSET 0.00000 -4.08727 -1.48765 - CHANNELS 3 Xrotation Yrotation Zrotation - End Site - { - OFFSET 0.00000 -1.89187 -0.00000 - } - } - } - } - } -} -MOTION -Frames: 779 -Frame Time: 0.0333333 - 0.1081 -113.8641 24.4236 -6.3750 0.7993 174.1813 -0.0953 1.7897 0.3053 -0.3614 0.2761 0.1877 0.7990 -0.1400 4.9767 -1.4096 -0.8139 1.4970 -2.5341 -3.3677 -3.3142 3.3078 -1.2990 -7.1278 -6.4106 -0.5739 -2.4492 -10.4508 -2.0339 10.0589 0.0000 0.0000 12.1538 0.0637 4.7831 -15.3322 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -9.3109 1.9097 0.2116 -6.0004 0.1782 -15.5610 -0.0000 0.0000 2.3711 6.2266 11.8306 4.9716 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -15.1304 1.0672 -2.8595 12.2683 0.0000 0.0000 -4.2579 0.8079 4.6097 1.6031 0.0000 0.0000 -6.0430 1.7069 2.9203 1.2763 0.0000 0.0000 -5.2588 0.9797 4.8866 -10.1323 0.0000 -0.0000 - 0.1079 -113.8686 24.4224 -6.3199 0.8366 174.0418 -0.0988 1.7864 0.3152 -0.3659 0.2548 0.1921 0.8374 -0.0605 5.0930 -1.3909 -0.8112 1.4935 -2.4917 -3.2868 -3.4655 3.1313 -1.3927 -7.4013 -6.2072 -0.6167 -2.3347 -10.3995 -1.9826 10.0459 0.0000 0.0000 12.1126 -0.1044 4.8419 -15.1945 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.1497 2.0464 0.1636 -5.9267 0.1111 -15.3938 -0.0000 0.0000 2.3954 6.2524 11.7179 4.9499 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -15.1482 1.0814 -2.8012 12.3519 0.0000 0.0000 -4.2833 0.8585 4.6873 1.6347 0.0000 0.0000 -6.0401 1.7337 2.9826 1.3849 0.0000 0.0000 -5.3472 0.9041 4.9651 -10.0684 0.0000 -0.0000 - 0.1079 -113.8732 24.4215 -6.2277 0.8769 173.8209 -0.1314 1.7244 0.3367 -0.4035 0.1958 0.1984 0.9460 0.1383 5.2991 -1.3283 -0.7790 1.4777 -2.3977 -3.2255 -3.7001 2.8417 -1.4821 -7.8039 -5.8961 -0.7868 -2.2646 -10.3788 -1.8077 10.2038 0.0000 0.0000 11.9409 -0.2890 4.8491 -15.1174 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.9047 2.2548 0.0294 -5.9347 0.0171 -15.1029 -0.0000 0.0000 2.4298 6.3042 11.6357 4.9176 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -15.1107 1.0909 -2.7461 12.3784 0.0000 0.0000 -4.2626 0.8808 4.8474 1.6268 0.0000 0.0000 -5.9833 1.7663 3.0944 1.4746 0.0000 0.0000 -5.4348 0.7095 5.0934 -9.7424 0.0000 -0.0000 - 0.1087 -113.8780 24.4217 -6.1983 0.8995 173.6527 -0.1730 1.6524 0.3534 -0.4412 0.1469 0.2049 1.0357 0.3317 5.4612 -1.2835 -0.7393 1.4601 -2.3881 -3.2217 -3.9204 2.6532 -1.5105 -8.1725 -5.6820 -0.9430 -2.2244 -10.4151 -1.6737 10.3028 0.0000 0.0000 11.8120 -0.3784 4.8122 -15.1513 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -8.7325 2.4736 -0.0639 -6.0416 -0.0278 -14.8610 -0.0000 0.0000 2.4736 6.2846 11.6479 4.9282 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.0763 1.0885 -2.7506 12.2973 0.0000 0.0000 -4.1855 0.8665 5.0169 1.5819 0.0000 0.0000 -5.9804 1.7815 3.2145 1.5295 0.0000 0.0000 -5.4654 0.5082 5.1784 -9.3226 0.0000 -0.0000 - 0.1126 -113.8820 24.4232 -6.2059 0.8844 173.6270 -0.1447 1.6194 0.3491 -0.4358 0.1161 0.2028 1.0627 0.4618 5.5006 -1.3030 -0.7140 1.4457 -2.5604 -3.2676 -4.0955 2.6712 -1.5104 -8.4456 -5.6464 -0.9554 -2.1580 -10.4357 -1.7398 10.1353 0.0000 0.0000 11.8452 -0.3624 4.8209 -15.2210 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.7125 2.6046 -0.0595 -6.1169 0.0532 -14.7231 -0.0000 0.0000 2.5316 6.1832 11.6645 5.0114 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -15.0272 1.0639 -2.8288 12.1615 0.0000 0.0000 -4.0980 0.8639 5.1121 1.5446 0.0000 0.0000 -6.0331 1.7547 3.3263 1.6007 0.0000 0.0000 -5.4608 0.4466 5.1188 -9.1174 0.0000 -0.0000 - 0.1191 -113.8873 24.4242 -6.2037 0.8718 173.6878 -0.0783 1.6291 0.3364 -0.4107 0.1146 0.2037 1.0969 0.5531 5.4640 -1.3474 -0.6890 1.4309 -2.8110 -3.3321 -4.2654 2.7535 -1.5447 -8.6774 -5.6406 -0.8803 -2.0806 -10.3911 -1.9316 9.8328 0.0000 0.0000 11.8949 -0.3322 4.8781 -15.2454 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -8.7370 2.6204 -0.0728 -6.0662 0.2219 -14.5694 -0.0000 0.0000 2.5795 6.1085 11.5625 5.1285 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.0200 1.0471 -2.8934 12.1447 0.0000 0.0000 -4.0730 0.8946 5.1055 1.5409 0.0000 0.0000 -6.1119 1.7225 3.4608 1.7210 0.0000 0.0000 -5.4639 0.5086 4.9229 -9.1574 0.0000 -0.0000 - 0.1270 -113.8938 24.4235 -6.1692 0.8867 173.7455 -0.0330 1.6651 0.3303 -0.3987 0.1193 0.2063 1.1832 0.6688 5.4343 -1.3650 -0.6728 1.4083 -2.9620 -3.3869 -4.4362 2.7403 -1.6216 -8.9088 -5.5296 -0.8501 -2.0683 -10.3024 -2.0641 9.6841 0.0000 0.0000 11.7575 -0.3727 4.8768 -15.2365 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -8.6663 2.5952 -0.1534 -5.9543 0.3668 -14.3747 -0.0000 0.0000 2.5829 6.1113 11.3590 5.2133 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -15.0685 1.0516 -2.8718 12.2890 0.0000 0.0000 -4.1167 0.9260 5.0262 1.5453 0.0000 0.0000 -6.1595 1.7152 3.5784 1.8385 0.0000 0.0000 -5.4793 0.5657 4.7369 -9.2128 0.0000 -0.0000 - 0.1354 -113.8993 24.4220 -6.1299 0.9141 173.7782 0.0097 1.7316 0.3281 -0.3870 0.1454 0.2107 1.2507 0.7500 5.4053 -1.3832 -0.6862 1.3833 -3.0033 -3.3937 -4.5680 2.6890 -1.7032 -9.1335 -5.3831 -0.8729 -2.1530 -10.2161 -2.1009 9.7342 0.0000 0.0000 11.5122 -0.4515 4.7769 -15.2629 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.5323 2.6400 -0.1482 -5.9049 0.4273 -14.2983 -0.0000 0.0000 2.5516 6.1151 11.1850 5.2588 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.1266 1.0617 -2.8062 12.4568 0.0000 0.0000 -4.1744 0.9404 4.9402 1.5292 0.0000 0.0000 -6.1623 1.7242 3.6221 1.8893 0.0000 0.0000 -5.4836 0.5683 4.6650 -9.1666 0.0000 -0.0000 - 0.1446 -113.9027 24.4214 -6.1217 0.9239 173.7954 0.0877 1.8197 0.3242 -0.3425 0.1909 0.2120 1.2284 0.7530 5.3502 -1.4490 -0.7131 1.3659 -3.0773 -3.3501 -4.6595 2.7479 -1.7501 -9.3423 -5.3531 -0.9081 -2.3161 -10.1288 -2.1131 9.8424 0.0000 0.0000 11.3886 -0.4703 4.6843 -15.3389 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.5045 2.7765 0.0646 -5.9261 0.4239 -14.4273 -0.0000 0.0000 2.5444 6.0657 11.0956 5.3035 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.1490 1.0508 -2.7957 12.5043 0.0000 0.0000 -4.1904 0.9591 4.9201 1.5015 0.0000 0.0000 -6.1437 1.7153 3.6007 1.8537 0.0000 0.0000 -5.4617 0.5734 4.6850 -9.1236 0.0000 -0.0000 - 0.1555 -113.9041 24.4225 -6.1303 0.9028 173.7754 0.1828 1.8866 0.3192 -0.2681 0.2338 0.2152 1.1435 0.7296 5.2899 -1.5380 -0.7207 1.3570 -3.2150 -3.2997 -4.7414 2.8966 -1.7515 -9.5261 -5.4248 -0.9779 -2.4983 -10.0440 -2.0962 9.9275 0.0000 0.0000 11.4197 -0.3887 4.6730 -15.3994 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.6315 2.9479 0.3627 -5.9474 0.3674 -14.5987 -0.0000 0.0000 2.5856 6.0268 11.0244 5.3775 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -15.1119 1.0024 -2.8698 12.4137 0.0000 0.0000 -4.1506 0.9933 5.0003 1.4921 0.0000 0.0000 -6.0990 1.6664 3.5664 1.7544 0.0000 0.0000 -5.4261 0.6161 4.7408 -9.1558 0.0000 -0.0000 - 0.1678 -113.9039 24.4238 -6.1127 0.8701 173.6864 0.2698 1.9221 0.3197 -0.2019 0.2428 0.2151 1.0444 0.7669 5.2767 -1.5990 -0.7141 1.3439 -3.2723 -3.2875 -4.8068 2.9666 -1.7232 -9.6638 -5.4416 -1.1257 -2.6070 -10.0079 -1.9732 9.9807 0.0000 0.0000 11.4302 -0.2846 4.6694 -15.3788 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.7670 3.1035 0.5368 -5.9558 0.2356 -14.5922 -0.0000 0.0000 2.6208 6.0238 10.9111 5.4741 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.0203 0.9289 -2.9451 12.2675 0.0000 0.0000 -4.0881 1.0312 5.1389 1.5100 0.0000 0.0000 -6.0138 1.5959 3.5373 1.6516 0.0000 0.0000 -5.4063 0.6597 4.8392 -9.1872 0.0000 -0.0000 - 0.1817 -113.9026 24.4244 -6.0681 0.8413 173.5454 0.3459 1.9508 0.3214 -0.1437 0.2418 0.2164 0.9297 0.8412 5.3118 -1.6323 -0.7239 1.3279 -3.1987 -3.2925 -4.8357 2.8972 -1.7053 -9.7597 -5.3540 -1.3126 -2.6099 -10.0330 -1.7475 9.9759 0.0000 0.0000 11.3313 -0.2768 4.6114 -15.3292 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.7797 3.2601 0.5709 -6.0512 0.0335 -14.4394 -0.0000 0.0000 2.6269 5.9368 10.7812 5.5605 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -14.9046 0.8433 -2.9509 12.1214 0.0000 0.0000 -4.0257 1.0680 5.2640 1.5266 0.0000 0.0000 -5.9224 1.5235 3.4590 1.6071 0.0000 0.0000 -5.4196 0.6713 5.0362 -9.1769 0.0000 -0.0000 - 0.1977 -113.9036 24.4251 -6.0477 0.8277 173.3990 0.4168 1.9713 0.3288 -0.0958 0.2420 0.2218 0.8235 0.9505 5.3813 -1.6669 -0.7235 1.3160 -3.1826 -3.3199 -4.8728 2.8104 -1.7119 -9.8493 -5.3065 -1.4887 -2.6017 -10.0639 -1.5407 9.8900 0.0000 0.0000 11.2267 -0.3784 4.5980 -15.3700 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -8.7598 3.3749 0.5611 -6.2975 -0.1516 -14.3093 -0.0000 0.0000 2.6551 5.6786 10.6350 5.6174 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -14.8320 0.7597 -2.9143 11.9929 0.0000 0.0000 -3.9584 1.1084 5.3582 1.5160 0.0000 0.0000 -5.8935 1.4593 3.3438 1.6240 0.0000 0.0000 -5.4466 0.6715 5.2863 -9.1938 0.0000 -0.0000 - 0.2175 -113.9081 24.4267 -6.0625 0.8167 173.3018 0.4898 1.9512 0.3395 -0.0598 0.2210 0.2287 0.7666 1.1505 5.4653 -1.7029 -0.6751 1.3119 -3.3799 -3.4139 -4.9738 2.8148 -1.7200 -9.9486 -5.4271 -1.6361 -2.6725 -10.0571 -1.4732 9.7325 0.0000 0.0000 11.2313 -0.4631 4.7449 -15.5049 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.8501 3.3987 0.5370 -6.6121 -0.2946 -14.2666 -0.0000 0.0000 2.7444 5.3657 10.4129 5.6587 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -14.7986 0.6779 -2.9409 11.8650 0.0000 0.0000 -3.8767 1.1527 5.4629 1.4924 0.0000 0.0000 -5.9064 1.3899 3.2082 1.6263 0.0000 0.0000 -5.4511 0.6957 5.5090 -9.2646 0.0000 -0.0000 - 0.2420 -113.9146 24.4288 -6.1188 0.7917 173.2982 0.5363 1.9180 0.3488 -0.0271 0.1817 0.2321 0.7414 1.3984 5.4928 -1.7408 -0.6109 1.2994 -3.6654 -3.5618 -5.0923 2.8594 -1.7095 -10.0361 -5.6160 -1.7818 -2.7589 -10.0446 -1.4897 9.5578 0.0000 0.0000 11.3061 -0.4324 4.9555 -15.6011 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.9955 3.4111 0.5091 -6.8569 -0.5092 -14.2754 -0.0000 0.0000 2.8518 5.1706 10.1253 5.7091 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -14.7801 0.5899 -3.0923 11.7029 0.0000 0.0000 -3.7873 1.2071 5.5951 1.4869 0.0000 0.0000 -5.9499 1.2958 3.0909 1.5855 0.0000 0.0000 -5.4294 0.7562 5.6147 -9.3178 0.0000 -0.0000 - 0.2712 -113.9187 24.4312 -6.1838 0.7218 173.3996 0.5738 1.9106 0.3473 0.0200 0.1645 0.2314 0.6859 1.5568 5.4148 -1.7911 -0.5919 1.2639 -3.8391 -3.6634 -5.1571 2.8636 -1.6903 -10.0971 -5.6888 -1.9671 -2.7721 -10.0770 -1.4197 9.4497 0.0000 0.0000 11.3496 -0.3483 5.0395 -15.6018 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -9.0535 3.5225 0.5176 -6.9983 -0.8424 -14.3179 -0.0000 0.0000 2.9184 5.1070 9.8719 5.7745 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -14.6764 0.4705 -3.3916 11.4085 0.0000 0.0000 -3.6681 1.2830 5.7672 1.4936 0.0000 0.0000 -6.0082 1.1494 3.0084 1.5642 0.0000 0.0000 -5.4171 0.8449 5.5847 -9.3146 0.0000 -0.0000 - 0.3040 -113.9178 24.4351 -6.2027 0.5965 173.5468 0.6404 1.8950 0.3414 0.0654 0.1558 0.2291 0.6454 1.6328 5.2974 -1.8441 -0.6020 1.2190 -3.9517 -3.6616 -5.1907 2.8679 -1.6676 -10.1435 -5.6461 -2.2122 -2.7639 -10.1461 -1.1994 9.4622 0.0000 0.0000 11.3388 -0.3198 5.0073 -15.6028 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -9.0539 3.6723 0.5602 -7.1105 -1.1401 -14.3977 -0.0000 0.0000 2.9446 5.1060 9.7146 5.8473 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -14.3949 0.3047 -3.8132 10.9068 0.0000 0.0000 -3.4737 1.3685 6.0077 1.4820 0.0000 0.0000 -6.0238 0.9457 2.9523 1.5817 0.0000 0.0000 -5.4212 0.9492 5.4913 -9.2978 0.0000 -0.0000 - 0.3365 -113.9197 24.4398 -6.2969 0.4872 173.6508 0.6294 1.8357 0.3489 0.0604 0.1206 0.2295 0.7110 1.7393 5.2503 -1.8797 -0.5737 1.1906 -4.1902 -3.5924 -5.2512 2.9499 -1.6351 -10.1711 -5.6337 -2.4874 -2.8312 -10.2082 -0.9222 9.5500 0.0000 0.0000 11.3347 -0.3452 5.0212 -15.6599 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.1270 3.7503 0.6247 -7.2266 -1.2801 -14.5397 -0.0000 0.0000 2.9665 5.1227 9.6310 5.9137 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -14.1569 0.1386 -4.2702 10.3084 0.0000 0.0000 -3.2189 1.4388 6.3281 1.4592 0.0000 0.0000 -6.1252 0.7455 2.8820 1.6036 0.0000 0.0000 -5.4087 1.0492 5.4572 -9.2844 0.0000 -0.0000 - 0.3671 -113.9236 24.4443 -6.4370 0.4124 173.6916 0.6172 1.7661 0.3623 0.0542 0.0781 0.2329 0.7682 1.8603 5.2666 -1.9300 -0.5312 1.1820 -4.4935 -3.4743 -5.3009 3.0863 -1.6238 -10.1646 -5.6417 -2.7079 -2.9592 -10.2472 -0.6994 9.6659 0.0000 0.0000 11.3585 -0.3574 5.0988 -15.6979 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.2215 3.7795 0.7939 -7.2939 -1.3138 -14.7738 -0.0000 0.0000 2.9839 5.1279 9.5914 5.9692 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -13.9771 -0.0118 -4.6763 9.6998 0.0000 0.0000 -2.9590 1.4990 6.6685 1.4574 0.0000 0.0000 -6.2349 0.5773 2.7071 1.5421 0.0000 0.0000 -5.3609 1.1321 5.5859 -9.2435 0.0000 -0.0000 - 0.3962 -113.9254 24.4480 -6.5563 0.3549 173.7085 0.7425 1.7732 0.3632 0.1447 0.0846 0.2348 0.5653 1.8609 5.2572 -2.0550 -0.5572 1.1694 -4.6096 -3.2832 -5.2667 3.1725 -1.6809 -10.1513 -5.5162 -2.8398 -3.0702 -10.2937 -0.5314 9.8511 0.0000 0.0000 11.3684 -0.3494 5.1112 -15.6855 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.1495 3.8904 1.1794 -7.3183 -1.3813 -15.1205 -0.0000 0.0000 3.0062 5.1058 9.6134 6.0033 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -13.7905 -0.1538 -4.9849 9.1210 0.0000 0.0000 -2.7302 1.5731 6.9429 1.4778 0.0000 0.0000 -6.2929 0.4361 2.4608 1.4302 0.0000 0.0000 -5.3089 1.1955 5.8200 -9.1867 0.0000 -0.0000 - 0.4245 -113.9241 24.4511 -6.6041 0.2989 173.7199 1.0447 1.8445 0.3445 0.3275 0.1453 0.2362 0.1010 1.7419 5.2112 -2.2406 -0.6437 1.1497 -4.4992 -3.0370 -5.1999 3.1748 -1.8003 -10.1790 -5.2329 -2.9265 -3.1606 -10.3840 -0.3740 10.1244 0.0000 0.0000 11.3523 -0.3721 5.0428 -15.7032 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -8.9216 4.0557 1.7004 -7.3737 -1.4745 -15.4890 -0.0000 0.0000 3.0566 5.1093 9.6551 6.0432 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.5463 -0.2912 -5.2286 8.5856 0.0000 0.0000 -2.5248 1.6552 7.1577 1.4785 0.0000 0.0000 -6.2901 0.3082 2.2985 1.3590 0.0000 0.0000 -5.2849 1.2546 5.9939 -9.1846 0.0000 -0.0000 - 0.4524 -113.9256 24.4536 -6.6868 0.2585 173.7179 1.3061 1.8805 0.3278 0.4810 0.1864 0.2402 -0.3043 1.6803 5.1956 -2.3890 -0.6867 1.1422 -4.4342 -2.8256 -5.2233 3.1543 -1.9163 -10.2495 -4.9913 -3.0136 -3.2897 -10.5014 -0.2404 10.3785 0.0000 0.0000 11.3526 -0.4129 5.0415 -15.7572 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -8.7815 4.1169 2.1288 -7.4525 -1.5209 -15.6992 -0.0000 0.0000 3.0966 5.1777 9.6128 6.1403 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.3915 -0.4175 -5.4512 8.1336 0.0000 0.0000 -2.3338 1.7153 7.3608 1.4421 0.0000 0.0000 -6.3792 0.1850 2.3129 1.3836 0.0000 0.0000 -5.2934 1.3317 6.0002 -9.2583 0.0000 -0.0000 - 0.4813 -113.9279 24.4557 -6.8190 0.2188 173.7207 1.4024 1.8469 0.3222 0.5379 0.1604 0.2445 -0.3886 1.7428 5.2307 -2.4609 -0.6473 1.1619 -4.6199 -2.6795 -5.3622 3.1787 -1.9933 -10.3255 -4.9351 -3.0639 -3.4753 -10.5797 -0.1703 10.4975 0.0000 0.0000 11.4037 -0.4200 5.1456 -15.7653 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.8530 4.0183 2.3915 -7.4679 -1.5046 -15.6937 -0.0000 0.0000 3.0625 5.2468 9.4515 6.2781 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -13.3137 -0.5487 -5.6766 7.7308 0.0000 0.0000 -2.1587 1.7487 7.5617 1.3985 0.0000 0.0000 -6.5395 0.0457 2.4217 1.4455 0.0000 0.0000 -5.3227 1.4315 5.8772 -9.3370 0.0000 -0.0000 - 0.5112 -113.9254 24.4578 -6.9318 0.1647 173.7479 1.4438 1.8108 0.3221 0.5552 0.1254 0.2494 -0.2962 1.7886 5.2641 -2.5070 -0.5860 1.1844 -4.9254 -2.5413 -5.5078 3.2517 -2.0666 -10.3943 -4.9745 -3.0396 -3.6613 -10.6049 -0.1501 10.5043 0.0000 0.0000 11.4782 -0.3872 5.2181 -15.7367 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.9929 3.8708 2.6129 -7.4061 -1.4634 -15.5674 -0.0000 0.0000 2.9690 5.2323 9.2725 6.3708 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -13.1951 -0.6883 -5.9296 7.3190 0.0000 0.0000 -1.9928 1.7768 7.7697 1.3804 0.0000 0.0000 -6.6699 -0.1081 2.5668 1.5106 0.0000 0.0000 -5.3723 1.5348 5.6769 -9.3563 0.0000 -0.0000 - 0.5391 -113.9220 24.4599 -7.0765 0.1103 173.8044 1.5004 1.7886 0.3099 0.5916 0.0895 0.2526 -0.3083 1.8261 5.2803 -2.5722 -0.5594 1.1946 -5.1048 -2.4027 -5.5820 3.3337 -2.1640 -10.4357 -4.9819 -3.0162 -3.8077 -10.6388 -0.1128 10.4753 0.0000 0.0000 11.5239 -0.3674 5.1930 -15.7386 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -9.0599 3.7849 2.8326 -7.3342 -1.4552 -15.4014 -0.0000 0.0000 2.9042 5.1802 9.1987 6.3858 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -13.0942 -0.8156 -6.2861 6.8878 0.0000 0.0000 -1.8180 1.8023 8.0516 1.3822 0.0000 0.0000 -6.8866 -0.2577 2.8123 1.6793 0.0000 0.0000 -5.4660 1.6338 5.3587 -9.3408 0.0000 -0.0000 - 0.5602 -113.9209 24.4613 -7.3134 0.0922 173.8970 1.5364 1.7373 0.3023 0.6262 0.0372 0.2543 -0.4650 1.9318 5.2979 -2.6329 -0.5211 1.1745 -5.0942 -2.3241 -5.5511 3.3976 -2.2423 -10.3682 -4.9733 -3.0902 -3.8873 -10.7173 0.0050 10.3926 0.0000 0.0000 11.5094 -0.4141 5.1503 -15.6963 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.1022 3.7662 2.9864 -7.2589 -1.5049 -15.2073 -0.0000 0.0000 2.8837 5.1867 9.2018 6.3797 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -13.0908 -0.8844 -6.7933 6.4506 0.0000 0.0000 -1.6622 1.8048 8.4522 1.3913 0.0000 0.0000 -7.2744 -0.3605 3.1222 1.9691 0.0000 0.0000 -5.5875 1.7264 4.9549 -9.3258 0.0000 -0.0000 - 0.5737 -113.9114 24.4628 -7.5119 0.0539 174.0700 1.5665 1.6190 0.2975 0.6664 -0.0543 0.2495 -0.6076 2.0895 5.3202 -2.6699 -0.4409 1.1371 -5.0102 -2.3101 -5.4068 3.4476 -2.2327 -10.1049 -5.0435 -3.2214 -3.9167 -10.7642 0.1934 10.2263 0.0000 0.0000 11.4503 -0.5246 5.1314 -15.5529 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.1851 3.8129 3.0490 -7.1458 -1.5839 -15.0243 -0.0000 0.0000 2.8609 5.2140 9.1103 6.3424 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.9642 -0.9378 -7.3920 5.9078 0.0000 0.0000 -1.5036 1.7633 8.8663 1.4027 0.0000 0.0000 -7.5866 -0.4453 3.2587 2.2115 0.0000 0.0000 -5.6944 1.8067 4.6395 -9.3021 0.0000 -0.0000 - 0.5776 -113.8918 24.4651 -7.6344 -0.0110 174.2775 1.5928 1.4765 0.2951 0.7114 -0.1514 0.2394 -0.6477 2.1985 5.3588 -2.7014 -0.3554 1.1126 -4.9711 -2.2938 -5.1600 3.4806 -2.1285 -9.6509 -5.2219 -3.2975 -3.9258 -10.6973 0.3718 10.0763 0.0000 0.0000 11.3663 -0.6369 5.0976 -15.4640 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -9.2684 3.9385 3.0493 -7.0044 -1.6115 -14.9159 -0.0000 0.0000 2.8553 5.1510 8.7910 6.1625 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -12.7285 -0.9906 -7.8671 5.3534 0.0000 0.0000 -1.3255 1.6959 9.1247 1.4133 0.0000 0.0000 -7.7389 -0.5103 3.2043 2.3311 0.0000 0.0000 -5.7572 1.8506 4.4824 -9.2675 0.0000 -0.0000 - 0.5691 -113.8764 24.4671 -7.7922 -0.0409 174.3972 1.5864 1.3288 0.2915 0.7107 -0.2325 0.2362 -0.6151 2.3108 5.4648 -2.7265 -0.2983 1.1158 -4.9942 -2.2622 -4.8483 3.4543 -2.0050 -9.0939 -5.4167 -3.3204 -3.8783 -10.5534 0.4774 10.0662 0.0000 0.0000 11.2585 -0.6810 5.0620 -15.5458 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.2769 4.0911 2.9499 -6.8495 -1.5536 -14.8993 -0.0000 0.0000 2.9265 5.0091 8.3387 5.8590 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.6905 -0.9993 -8.0444 5.0559 0.0000 0.0000 -1.1845 1.6443 9.1763 1.4132 0.0000 0.0000 -7.9760 -0.5213 3.2595 2.5248 0.0000 0.0000 -5.8183 1.8489 4.3268 -9.2649 0.0000 -0.0000 - 0.5478 -113.8785 24.4664 -8.1405 0.0304 174.4152 1.4032 1.1957 0.2941 0.5931 -0.2774 0.2439 -0.4284 2.4749 5.6243 -2.7236 -0.2473 1.1251 -5.1090 -2.2363 -4.5006 3.3516 -1.9453 -8.5175 -5.5060 -3.3753 -3.6765 -10.4325 0.5246 10.2132 0.0000 0.0000 11.1418 -0.6392 5.0533 -15.6459 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -9.1930 4.2340 2.7346 -6.6602 -1.4976 -15.0639 -0.0000 0.0000 3.0609 4.9065 8.0359 5.6780 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -13.1352 -0.8968 -8.0100 5.1904 0.0000 0.0000 -1.2027 1.6252 9.1311 1.4279 0.0000 0.0000 -8.6458 -0.4452 3.6926 3.0907 0.0000 0.0000 -5.9669 1.8099 3.9160 -9.2596 0.0000 -0.0000 - 0.5238 -113.8699 24.4658 -8.2209 0.0291 174.5245 1.2784 1.0830 0.2754 0.4443 -0.3168 0.2471 0.0908 2.5750 5.7249 -2.6997 -0.1836 1.1277 -5.4189 -2.1931 -4.1593 3.2901 -1.9557 -7.9892 -5.4345 -3.3655 -3.2880 -10.3631 0.4081 10.4798 0.0000 0.0000 11.0647 -0.5312 5.0169 -15.6694 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -8.9834 4.3181 2.4513 -6.5000 -1.4160 -15.6003 -0.0000 0.0000 3.2437 4.8633 8.0603 5.7906 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -13.2758 -0.8070 -8.1101 5.3539 0.0000 0.0000 -1.3058 1.5838 9.1283 1.5074 0.0000 0.0000 -9.1488 -0.4091 4.2013 3.9189 0.0000 0.0000 -6.2535 1.7481 3.3197 -9.1398 0.0000 -0.0000 - 0.5021 -113.8364 24.4680 -7.8530 -0.1389 174.7733 1.2859 1.0395 0.2351 0.3500 -0.3771 0.2338 0.9553 2.4808 5.7527 -2.6782 -0.1314 1.1350 -6.0019 -2.0842 -3.8862 3.3926 -1.9830 -7.5773 -5.2680 -3.1073 -2.7560 -10.3157 -0.0444 10.9344 0.0000 0.0000 11.0031 -0.4128 4.8847 -15.7487 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.6246 4.3169 2.0932 -6.5286 -1.1746 -16.6011 -0.0000 0.0000 3.5537 4.7728 8.3179 6.0536 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -12.7683 -0.8186 -8.4451 5.3288 0.0000 0.0000 -1.3604 1.4759 9.2010 1.6564 0.0000 0.0000 -9.1185 -0.4810 4.4512 4.7340 0.0000 0.0000 -6.6249 1.6582 2.8081 -8.9073 0.0000 -0.0000 - 0.4755 -113.7997 24.4713 -7.3143 -0.3492 174.9201 1.3289 1.0471 0.2004 0.2475 -0.4552 0.2191 1.9319 2.3206 5.8624 -2.6263 -0.1085 1.1704 -6.7146 -1.9474 -3.6787 3.5825 -1.9996 -7.2946 -5.0785 -2.6065 -2.0708 -10.3172 -0.8323 11.7287 0.0000 0.0000 10.8030 -0.4240 4.7009 -15.7531 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.1698 4.1792 1.5349 -6.7701 -0.7473 -17.9089 -0.0000 0.0000 3.9753 4.5627 8.5628 6.2166 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -12.0786 -0.8637 -8.7864 5.2939 0.0000 0.0000 -1.3653 1.3218 9.3738 1.7805 0.0000 0.0000 -8.8102 -0.5710 4.4893 5.3954 0.0000 0.0000 -6.9915 1.5361 2.6024 -8.7640 0.0000 -0.0000 - 0.4335 -113.7907 24.4702 -7.0713 -0.4264 174.7200 1.1485 1.0393 0.2037 0.0420 -0.5627 0.2168 2.8125 2.3458 6.1881 -2.4911 -0.0960 1.2267 -7.3277 -1.8605 -3.4293 3.6350 -2.0244 -7.0503 -4.8586 -2.1420 -1.1675 -10.4781 -1.6075 12.9671 0.0000 0.0000 10.4237 -0.7343 4.5555 -15.1607 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.7422 3.9795 0.7589 -7.0350 -0.4256 -19.3844 -0.0000 0.0000 4.2174 4.2402 8.6103 6.1825 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -11.8975 -0.8186 -8.9017 5.4415 0.0000 0.0000 -1.4055 1.1753 9.6804 1.8047 0.0000 0.0000 -8.8246 -0.5574 4.6134 6.0095 0.0000 0.0000 -7.3349 1.3822 2.6669 -8.8566 0.0000 -0.0000 - 0.3762 -113.7941 24.4656 -6.9879 -0.4506 174.2563 0.8407 0.9449 0.2294 -0.2336 -0.7291 0.2178 3.6254 2.5630 6.6863 -2.3082 -0.0626 1.2877 -7.8067 -1.8164 -3.0755 3.5071 -2.0691 -6.7501 -4.5754 -1.8805 -0.1338 -10.8497 -2.1032 14.6949 0.0000 0.0000 10.1227 -1.3249 4.5360 -13.7945 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.3739 3.8297 -0.0292 -7.1907 -0.4031 -21.2209 -0.0000 0.0000 4.0855 3.7346 8.3496 5.9128 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -11.8781 -0.7529 -8.8934 5.4599 0.0000 0.0000 -1.3598 1.0257 10.1270 1.7929 0.0000 0.0000 -8.9869 -0.4982 4.8630 6.5810 0.0000 0.0000 -7.6995 1.1921 2.8569 -9.0847 0.0000 -0.0000 - 0.3055 -113.7827 24.4620 -6.8583 -0.5466 173.7264 0.5192 0.7912 0.2605 -0.4737 -0.9344 0.2124 4.4203 2.7349 7.2399 -2.1640 -0.0055 1.3826 -8.3430 -1.6978 -2.7160 3.4242 -2.1398 -6.4049 -4.2665 -1.6583 0.7834 -11.2888 -2.4787 16.9674 0.0000 0.0000 10.1618 -1.9950 4.8255 -12.1498 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.0525 3.6796 -0.5968 -7.2598 -0.3597 -23.8300 -0.0000 0.0000 3.9280 2.8753 7.6929 5.3252 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -11.6362 -0.7488 -8.8504 5.1903 0.0000 0.0000 -1.1187 0.8210 10.5865 1.8414 0.0000 0.0000 -8.9907 -0.4710 5.1428 7.0356 0.0000 0.0000 -8.0976 0.9311 3.0561 -9.2547 0.0000 -0.0000 - 0.2146 -113.7491 24.4600 -6.5889 -0.6581 173.1520 0.3084 0.6734 0.2933 -0.6506 -1.1082 0.2105 5.1145 2.6983 7.8375 -2.0668 0.0722 1.5554 -9.0510 -1.4073 -2.4855 3.5878 -2.2864 -6.0916 -3.9527 -1.2150 1.4549 -11.5916 -3.0200 19.8109 0.0000 0.0000 10.4429 -2.6564 5.5257 -10.6821 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.7711 3.3353 -0.8592 -7.3076 0.2291 -27.5415 -0.0000 0.0000 4.3167 1.7072 6.6633 4.4354 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -11.2110 -0.6957 -8.6350 4.9362 0.0000 0.0000 -0.9066 0.5392 10.9293 1.8720 0.0000 0.0000 -8.6881 -0.3687 5.3291 7.2782 0.0000 0.0000 -8.4654 0.5566 3.3893 -9.3209 0.0000 -0.0000 - 0.0962 -113.7070 24.4558 -6.3048 -0.6753 172.4968 0.1178 0.5923 0.3359 -0.7987 -1.2284 0.2171 5.6748 2.5723 8.4952 -1.9546 0.1693 1.7800 -9.8686 -1.0304 -2.3667 3.9419 -2.5337 -5.8388 -3.5662 -0.6317 1.9883 -11.8261 -3.5971 23.1973 0.0000 0.0000 10.6672 -3.4756 6.2204 -9.3601 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.5412 2.7424 -0.8570 -7.3609 1.4209 -32.3714 -0.0000 0.0000 5.2400 0.6570 5.3544 3.3244 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -10.9599 -0.4583 -8.2306 5.0533 0.0000 0.0000 -0.9939 0.2110 11.2048 1.7151 0.0000 0.0000 -8.2966 -0.0781 5.3859 7.3797 0.0000 0.0000 -8.7546 0.0822 3.9486 -9.3403 0.0000 -0.0000 - -0.0447 -113.6536 24.4496 -5.9181 -0.6943 171.9228 -0.0431 0.4366 0.3691 -0.9350 -1.3082 0.2230 6.2438 2.4989 9.0984 -1.8304 0.2814 1.9854 -10.6589 -0.7783 -2.2717 4.3139 -2.7859 -5.6042 -3.0212 -0.2071 2.4960 -12.3398 -3.9518 27.0729 0.0000 0.0000 10.7695 -4.4923 6.2827 -8.1242 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.3119 2.0397 -0.8146 -7.5012 2.8394 -37.8369 -0.0000 0.0000 5.9863 0.0568 3.8376 1.9195 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.7791 -0.1009 -7.9390 5.5595 0.0000 0.0000 -1.2888 -0.1236 11.5206 1.3981 0.0000 0.0000 -7.7737 0.2988 5.4476 7.4301 0.0000 0.0000 -8.9704 -0.3941 4.4364 -9.2966 0.0000 -0.0000 - -0.2002 -113.5902 24.4400 -5.5231 -0.7352 171.6508 -0.2472 0.2563 0.3686 -1.0882 -1.2759 0.2285 6.8530 2.4159 9.4268 -1.7561 0.3463 2.1479 -11.3097 -0.7949 -2.1930 4.6258 -2.9008 -5.3286 -2.3309 -0.0221 2.9085 -13.2048 -4.2420 31.4551 0.0000 0.0000 10.8921 -5.2998 5.8877 -7.0001 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.9656 1.2773 -1.0768 -7.8748 4.3096 -43.1706 -0.0000 0.0000 6.0013 -0.2495 2.1989 0.1732 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.9771 0.3717 -7.6610 6.9120 0.0000 0.0000 -1.8728 -0.4581 11.5414 1.1599 0.0000 0.0000 -7.3273 0.6814 5.9209 7.6139 0.0000 0.0000 -9.1698 -0.7853 4.2448 -9.0880 0.0000 -0.0000 - -0.3706 -113.5380 24.4125 -5.3886 -0.3778 171.6793 -0.5787 0.5047 0.3602 -1.3004 -0.9603 0.2697 7.2368 2.1599 9.3516 -1.7458 0.2569 2.2682 -11.6975 -1.0863 -2.1683 4.8772 -2.8780 -4.9800 -1.5566 0.1528 3.2219 -13.9431 -4.7451 36.1774 0.0000 0.0000 11.1968 -5.5498 6.0020 -5.7705 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.3888 0.2595 -1.9044 -8.4765 5.8867 -47.7814 -0.0000 0.0000 5.4503 -0.6163 0.5439 -1.5135 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -12.5032 1.3226 -6.3920 10.2424 0.0000 0.0000 -3.4700 -0.8987 10.4078 1.1154 0.0000 0.0000 -7.4361 1.4102 7.1812 8.1228 0.0000 0.0000 -9.4042 -1.1555 3.0646 -8.6302 0.0000 -0.0000 - -0.5488 -113.5011 24.3496 -5.4202 0.7703 171.9271 -0.9567 1.6518 0.3508 -1.4622 -0.4224 0.3457 7.2203 1.8345 8.9286 -1.7703 -0.0141 2.3431 -11.8254 -1.6381 -2.2298 5.1172 -2.8552 -4.5900 -0.7475 0.4999 3.5243 -14.2410 -5.4653 40.8741 0.0000 0.0000 11.7852 -5.4432 7.1969 -4.3205 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6027 -1.2194 -3.1975 -9.2110 7.4459 -51.7204 -0.0000 0.0000 4.8214 -1.0645 -1.1854 -2.6001 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -15.4680 2.9640 -3.7314 15.7711 0.0000 0.0000 -6.2213 -1.6143 7.9891 1.0574 0.0000 0.0000 -8.0260 2.8967 8.8454 8.9188 0.0000 0.0000 -9.7158 -1.6660 1.4091 -7.9670 0.0000 -0.0000 - -0.7089 -113.4341 24.2685 -4.8851 2.2253 172.3606 -0.9363 3.2918 0.2988 -1.3991 0.0817 0.4074 7.1132 1.6834 8.3727 -1.8188 -0.3148 2.3633 -11.9192 -2.3520 -2.4043 5.4319 -2.9227 -4.2638 -0.0178 0.8695 3.8126 -14.4300 -6.3963 45.3161 0.0000 0.0000 12.6369 -5.2473 9.0769 -3.0731 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -3.8885 -2.8854 -4.6056 -9.9581 8.6618 -55.4441 -0.0000 0.0000 4.2413 -1.3512 -3.1739 -3.1262 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -18.2377 4.7522 -1.0175 22.0284 0.0000 0.0000 -8.7670 -2.5105 5.3615 0.7723 0.0000 0.0000 -7.8948 4.7975 10.0012 9.5261 0.0000 0.0000 -10.0611 -2.2952 0.1115 -7.3199 0.0000 -0.0000 - -0.8332 -113.3218 24.2060 -3.8270 3.2017 172.7720 -0.6184 4.5182 0.2409 -1.2037 0.3940 0.4405 7.3038 1.7482 7.9206 -1.9058 -0.4908 2.3747 -12.1760 -2.9537 -2.6742 5.8885 -3.0228 -4.0704 0.4560 0.9656 4.0611 -14.7896 -7.6249 49.5167 0.0000 0.0000 13.5613 -4.8025 10.8784 -2.2971 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.5900 -4.1241 -5.7987 -10.5360 9.5544 -59.3318 -0.0000 0.0000 3.5673 -1.3302 -5.3627 -3.6271 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -20.2383 5.8663 0.8536 27.9464 0.0000 0.0000 -9.8167 -3.2934 2.7934 0.3831 0.0000 0.0000 -6.8134 6.2849 10.3497 9.7346 0.0000 0.0000 -10.3777 -2.8383 -0.5127 -6.8979 0.0000 -0.0000 - -0.9263 -113.1823 24.1753 -2.7535 3.5326 172.9422 -0.3236 5.0819 0.2371 -1.0521 0.5044 0.4455 7.6347 1.8430 7.6948 -1.9867 -0.5470 2.3868 -12.3671 -3.1856 -2.8801 6.4449 -3.0511 -3.9777 0.6794 0.7700 4.5055 -14.9645 -8.8514 53.4135 0.0000 0.0000 14.2545 -4.0069 12.2172 -1.5927 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.8468 -4.8014 -6.7464 -10.6252 10.6543 -63.1894 -0.0000 0.0000 2.7051 -1.0948 -7.4451 -4.2117 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -21.8896 6.0581 1.9261 33.1432 0.0000 0.0000 -9.6929 -3.7384 -0.0204 0.1629 0.0000 0.0000 -5.4153 7.0670 10.3582 9.6999 0.0000 0.0000 -10.6654 -3.1853 -0.6903 -6.6345 0.0000 -0.0000 - -0.9969 -113.0391 24.1642 -2.0473 3.4644 172.9430 -0.2784 5.2816 0.2461 -0.9921 0.5215 0.4400 7.8104 1.7490 7.5664 -1.9931 -0.5910 2.3754 -12.2899 -3.0170 -2.8550 6.9920 -3.0134 -3.8754 0.6469 0.4838 5.4258 -14.5593 -9.7295 56.8025 0.0000 0.0000 14.5195 -3.3297 12.9042 -0.6971 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3986 -5.0535 -7.6036 -10.1784 11.7428 -66.6784 -0.0000 0.0000 1.9487 -0.9241 -8.9693 -4.5314 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -23.4475 5.5947 2.4541 37.1729 0.0000 0.0000 -9.6627 -3.6809 -2.9826 0.1293 0.0000 0.0000 -4.3929 7.3036 10.5290 9.8119 0.0000 0.0000 -11.0463 -3.3988 -0.8660 -6.3004 0.0000 -0.0000 - -1.0449 -112.8938 24.1611 -1.5294 3.2032 172.9917 -0.3148 5.3800 0.2383 -0.9969 0.5485 0.4281 7.9233 1.4866 7.3462 -1.9421 -0.6718 2.3441 -12.1813 -2.6946 -2.6817 7.4758 -2.9583 -3.6918 0.3432 0.1783 6.6728 -13.7790 -10.6030 59.6697 0.0000 0.0000 14.2666 -3.5090 12.4520 0.0118 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.9457 -5.0914 -8.5304 -9.5213 12.1454 -69.7261 -0.0000 0.0000 1.6970 -0.9512 -9.6634 -4.3514 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -24.6270 4.8283 2.7013 39.7107 0.0000 0.0000 -10.1153 -3.1986 -5.4663 0.1356 0.0000 0.0000 -3.6027 7.2209 10.9135 10.0915 0.0000 0.0000 -11.5219 -3.5189 -1.2924 -5.8849 0.0000 -0.0000 - -1.0733 -112.7509 24.1622 -1.1153 2.8873 173.1300 -0.4073 5.4467 0.2408 -1.0385 0.5987 0.4190 8.2275 1.2534 7.0445 -1.9201 -0.7367 2.3241 -12.3832 -2.4962 -2.5968 7.8954 -2.8846 -3.4521 -0.3302 -0.0561 7.8125 -12.8541 -12.4533 62.1206 0.0000 0.0000 13.6253 -4.4580 10.5938 0.1118 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.5339 -5.2950 -9.5679 -8.8497 12.1039 -72.4039 -0.0000 0.0000 1.9894 -1.0014 -9.5570 -3.8908 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -25.5837 3.9993 2.9288 40.8861 0.0000 0.0000 -10.2312 -2.7892 -6.7589 0.1824 0.0000 0.0000 -2.8627 6.9996 11.3568 10.2812 0.0000 0.0000 -11.9381 -3.4500 -1.8817 -5.6043 0.0000 -0.0000 - -1.0964 -112.6243 24.1653 -0.8864 2.7065 173.1489 -0.5351 5.5419 0.2647 -1.1223 0.6743 0.4234 8.5883 1.1382 6.8314 -1.9587 -0.7494 2.3414 -12.7897 -2.3880 -2.6414 8.2074 -2.8146 -3.2456 -1.1204 -0.1556 8.6952 -11.7104 -14.8827 64.2723 0.0000 0.0000 12.8102 -5.3691 7.8567 -0.2157 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.2403 -5.9362 -10.6342 -8.0928 12.4143 -74.6909 -0.0000 0.0000 2.5289 -0.9620 -8.9097 -3.5075 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -26.7434 3.3490 3.2387 41.0321 0.0000 0.0000 -9.4945 -2.8506 -6.5405 0.3046 0.0000 0.0000 -2.2350 6.8863 11.8640 10.1858 0.0000 0.0000 -12.1397 -3.1602 -2.4208 -5.5008 0.0000 -0.0000 - -1.1207 -112.5244 24.1659 -1.0506 2.7337 173.0261 -0.7966 5.6895 0.2655 -1.2192 0.7807 0.4441 8.6902 1.0834 6.7309 -2.0068 -0.7226 2.3080 -13.0988 -2.1709 -2.5963 8.3646 -2.8071 -3.1638 -1.7234 -0.2185 9.5539 -10.1625 -16.3635 66.1722 0.0000 0.0000 12.0345 -5.4852 5.2055 -0.3990 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -6.9829 -6.8396 -11.5792 -7.1949 13.2034 -76.5597 -0.0000 0.0000 3.0790 -0.9078 -8.0569 -3.3271 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -28.3251 2.9992 3.4111 40.2295 0.0000 0.0000 -8.3018 -3.2431 -5.1631 0.4417 0.0000 0.0000 -2.0985 6.9505 12.3660 10.0541 0.0000 0.0000 -12.2170 -2.8692 -2.7735 -5.3590 0.0000 -0.0000 - -1.1281 -112.4168 24.1676 -1.2165 2.6923 173.0914 -0.9607 5.8061 0.2346 -1.2726 0.8300 0.4409 8.6190 1.0170 6.5290 -2.0295 -0.6742 2.1467 -13.2699 -1.7629 -2.3496 8.4443 -2.8168 -3.2154 -2.0230 -0.4707 10.5166 -8.4808 -16.2782 67.7694 0.0000 0.0000 11.4336 -4.9641 3.1936 -0.2644 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.6293 -7.5857 -12.3350 -6.2771 13.9555 -78.0998 -0.0000 0.0000 3.5539 -0.8009 -7.2229 -3.2590 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -29.5233 2.7994 3.1150 38.3030 0.0000 0.0000 -7.1575 -3.6524 -3.4999 0.4990 0.0000 0.0000 -1.9978 6.9230 12.5478 10.0539 0.0000 0.0000 -12.3546 -2.7768 -2.9794 -5.0907 0.0000 -0.0000 - -1.1011 -112.2699 24.1747 -1.1374 2.3205 173.6199 -1.0230 5.7602 0.2045 -1.2938 0.8086 0.4019 8.7431 0.8446 6.0811 -2.0178 -0.5820 1.9048 -13.5131 -1.2177 -2.0301 8.6089 -2.6456 -3.3090 -2.2071 -0.9738 11.3940 -7.1529 -15.7339 68.9454 0.0000 0.0000 11.0795 -4.4601 1.5794 -0.2066 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -8.1143 -7.9527 -12.9059 -5.5126 14.3892 -79.4909 -0.0000 0.0000 3.8587 -0.4155 -6.4102 -3.2095 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -29.8447 2.5269 2.2623 35.3083 0.0000 0.0000 -6.0845 -3.9507 -2.3237 0.3769 0.0000 0.0000 -1.5739 6.5150 12.2202 10.2339 0.0000 0.0000 -12.6715 -2.8007 -3.1669 -4.8901 0.0000 -0.0000 - -1.0554 -112.0908 24.1802 -0.8503 1.8549 174.3902 -1.0258 5.6500 0.1975 -1.3195 0.7384 0.3464 9.0631 0.6326 5.5744 -1.9925 -0.4272 1.6778 -13.8076 -0.5334 -1.7332 8.9371 -2.1590 -3.3461 -2.3983 -1.5033 12.0863 -6.3986 -15.7143 69.6255 0.0000 0.0000 10.9956 -4.1061 -0.2181 -0.4962 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.4570 -8.2136 -13.3766 -4.8798 14.9726 -80.7113 -0.0000 0.0000 3.8986 0.2709 -5.5239 -3.1966 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -29.5578 2.2871 1.1214 31.7403 0.0000 0.0000 -5.1338 -4.1466 -1.7062 -0.0241 0.0000 -0.0000 -0.8523 5.9799 11.6577 10.4483 0.0000 0.0000 -13.0846 -2.7408 -3.3975 -4.9127 0.0000 -0.0000 - -1.0182 -111.9192 24.1710 -0.7678 1.7099 175.0743 -1.1237 5.6243 0.1888 -1.3711 0.6636 0.3056 9.2352 0.5257 5.2031 -1.9715 -0.1893 1.4743 -13.9827 0.3806 -1.3836 9.3443 -1.4709 -3.3314 -2.5544 -1.9532 12.6869 -6.0838 -15.8147 69.9608 0.0000 0.0000 11.1157 -3.5259 -2.2913 -0.9396 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.6294 -8.6443 -13.7965 -4.2607 15.9616 -81.6818 -0.0000 0.0000 3.8389 0.8275 -4.5259 -3.2601 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -29.4379 2.3442 -0.0964 28.1489 0.0000 0.0000 -4.4360 -4.1987 -1.1693 -0.5838 0.0000 -0.0000 -0.4392 5.7362 11.2382 10.7521 0.0000 0.0000 -13.5319 -2.5619 -3.6802 -5.0521 0.0000 -0.0000 - -0.9848 -111.7589 24.1512 -0.9016 1.7875 175.7531 -1.2449 5.5851 0.1621 -1.4255 0.6018 0.2796 9.2086 0.5315 4.8798 -1.9790 0.1365 1.2257 -14.0287 1.6157 -0.9335 9.7003 -0.8104 -3.3211 -2.7082 -2.3887 13.1761 -5.9860 -15.5991 70.2231 0.0000 0.0000 11.3990 -2.6431 -4.2509 -1.2684 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.6876 -9.1710 -14.1876 -3.4944 17.1002 -82.4652 -0.0000 0.0000 3.9900 1.0578 -3.6214 -3.3307 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -29.4761 2.6163 -1.3925 24.7229 0.0000 0.0000 -3.8194 -3.9102 -0.4152 -1.0084 0.0000 -0.0000 -0.3793 5.6614 11.0081 11.2256 0.0000 0.0000 -14.0515 -2.2777 -4.1192 -5.1451 0.0000 -0.0000 - -0.9319 -111.5804 24.1323 -1.0794 1.7742 176.6972 -1.4022 5.4345 0.1478 -1.4680 0.5052 0.2406 9.2331 0.5382 4.4356 -1.9976 0.5568 0.9379 -14.0673 3.1452 -0.4889 9.9766 -0.2440 -3.2999 -3.0122 -2.8298 13.3424 -5.9959 -15.5088 70.5266 0.0000 0.0000 11.9044 -1.8922 -5.7813 -1.5038 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.7016 -9.6204 -14.5848 -2.4875 18.0793 -83.2536 -0.0000 0.0000 4.4840 1.3337 -3.0591 -3.3391 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -29.3712 2.8351 -2.5821 21.6391 0.0000 0.0000 -3.1847 -3.1614 0.3497 -1.2921 0.0000 -0.0000 -0.3600 5.3990 10.7468 11.8069 0.0000 0.0000 -14.6615 -1.8370 -4.7718 -5.1938 0.0000 -0.0000 - -0.8545 -111.3598 24.1166 -1.0735 1.6371 177.8552 -1.4952 5.2118 0.1625 -1.5072 0.3789 0.1959 9.3669 0.4950 3.9267 -1.9990 1.0314 0.6884 -14.0818 4.9448 -0.1327 10.2599 0.3042 -3.1724 -3.4499 -3.0686 13.1623 -6.0930 -15.7630 70.7737 0.0000 0.0000 12.5742 -1.6150 -6.8724 -1.7073 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.5578 -9.8384 -15.0188 -1.3319 18.7256 -84.0920 -0.0000 0.0000 5.1786 1.9528 -2.7133 -3.3356 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -28.8929 2.9392 -3.3495 19.1894 0.0000 0.0000 -2.9986 -2.1659 0.8892 -1.6537 0.0000 -0.0000 0.0902 4.9657 10.3238 12.1320 0.0000 0.0000 -15.2362 -1.2579 -5.5020 -5.3047 0.0000 -0.0000 - -0.7719 -111.1149 24.0936 -1.1528 1.7090 178.9308 -1.6627 5.0645 0.2223 -1.5883 0.2736 0.1664 9.4456 0.5187 3.4889 -1.9931 1.5371 0.5033 -14.0385 6.9679 0.2217 10.6231 0.8850 -2.8535 -3.8364 -3.0975 12.9284 -6.3018 -15.6401 70.8900 0.0000 0.0000 13.1733 -1.5806 -7.7152 -1.8072 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.1139 -9.6532 -15.4040 -0.2096 18.8793 -84.8767 -0.0000 0.0000 5.9071 2.6415 -2.1578 -3.3928 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -28.4696 3.1985 -3.6294 17.5550 0.0000 0.0000 -3.4338 -1.2993 1.3811 -2.0621 0.0000 -0.0000 0.7765 4.7945 9.6999 11.9027 0.0000 0.0000 -15.6433 -0.7561 -5.9812 -5.4602 0.0000 -0.0000 - -0.6892 -110.8594 24.0625 -1.4997 1.9954 179.8270 -1.9879 4.8856 0.3428 -1.7415 0.2104 0.1494 9.4933 0.7119 3.1218 -2.0057 2.0792 0.3034 -14.0592 9.1443 0.7390 11.0067 1.4814 -2.3208 -4.0971 -3.2475 12.7876 -6.6823 -14.6660 71.0524 0.0000 0.0000 13.5186 -1.3330 -8.5246 -1.8213 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.5539 -8.9393 -15.6184 0.8622 18.6145 -85.5114 -0.0000 0.0000 6.5891 3.1503 -1.1353 -3.4860 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -28.2955 3.6299 -3.5572 16.6066 0.0000 0.0000 -3.6667 -0.6803 1.8476 -2.2295 0.0000 -0.0000 1.4840 4.9079 8.8480 11.1224 0.0000 0.0000 -15.9040 -0.4068 -6.0644 -5.5157 0.0000 -0.0000 - -0.5964 -110.5791 24.0297 -1.9535 2.3033 -179.4030 -2.3753 4.5656 0.5191 -1.9523 0.1462 0.1330 9.6411 1.0600 2.7900 -2.0199 2.6431 0.0520 -14.2343 11.4266 1.4991 11.2609 2.1208 -1.5741 -4.3554 -3.6612 12.5595 -7.2500 -13.6112 71.4409 0.0000 0.0000 13.7254 -0.7402 -9.3447 -1.8934 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.1338 -7.9189 -15.6433 1.9211 18.2476 -86.0059 -0.0000 0.0000 7.2206 3.6018 0.2701 -3.5949 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -28.2501 4.0231 -3.0746 16.5341 0.0000 0.0000 -3.1950 -0.2278 1.8633 -2.0201 0.0000 -0.0000 2.2956 5.0349 7.8466 10.0433 0.0000 0.0000 -16.0766 -0.0238 -5.8839 -5.4429 0.0000 -0.0000 - -0.4880 -110.2597 23.9916 -2.4267 2.6077 -178.7666 -2.7803 4.1653 0.6881 -2.1674 0.0621 0.1177 9.7882 1.5141 2.5507 -2.0022 3.1729 -0.2071 -14.4493 13.8275 2.4833 11.2857 2.8759 -0.6518 -4.6604 -4.0912 12.1564 -7.9079 -13.3240 71.9884 0.0000 0.0000 13.9696 -0.0937 -9.9467 -2.0044 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.8209 -7.0808 -15.5728 2.9218 18.0104 -86.3492 -0.0000 0.0000 7.7686 4.1270 1.8410 -3.7208 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -28.2156 4.2748 -2.3968 17.5200 0.0000 0.0000 -2.8312 -0.0882 1.3479 -1.6056 0.0000 -0.0000 3.1350 5.0835 6.9387 9.0746 0.0000 0.0000 -16.2495 0.5093 -5.6899 -5.4046 0.0000 -0.0000 - -0.3632 -109.9021 23.9446 -2.9950 2.8907 -178.3387 -3.2168 3.6303 0.8351 -2.4211 -0.0169 0.1147 9.8276 2.0659 2.4227 -1.9751 3.6620 -0.4566 -14.6759 16.3633 3.6612 11.1426 3.8173 0.3341 -4.8495 -4.4901 11.8395 -8.5756 -13.2403 72.4882 0.0000 0.0000 14.2612 0.2162 -10.1382 -2.0237 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.4258 -6.5683 -15.3856 3.8037 17.5725 -86.5808 -0.0000 0.0000 8.2213 4.5376 3.5286 -3.7923 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -27.8738 4.3233 -2.1286 18.6497 0.0000 0.0000 -3.1462 -0.3618 0.8497 -1.2889 0.0000 -0.0000 3.7795 5.0263 6.3922 8.4901 0.0000 0.0000 -16.5541 1.1089 -5.6315 -5.4831 0.0000 -0.0000 - -0.2110 -109.5085 23.9060 -3.6899 2.7678 -178.1740 -3.7922 2.5437 1.0310 -2.7945 -0.2340 0.0811 10.0549 2.8571 2.3766 -2.0170 4.1389 -0.7181 -15.2384 19.1152 5.0701 11.0047 5.0079 1.2963 -4.8144 -5.3357 11.7873 -9.3110 -12.1546 72.9874 0.0000 0.0000 14.4759 0.1368 -10.1059 -1.9467 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.0452 -5.8114 -14.9064 4.6315 16.3056 -86.8415 -0.0000 0.0000 8.5656 4.7886 5.4172 -3.6803 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -26.9062 3.7945 -2.5275 18.4355 0.0000 0.0000 -2.9393 -0.5418 0.7233 -1.1236 0.0000 -0.0000 4.1112 4.4489 6.3456 8.3966 0.0000 0.0000 -17.0806 1.8356 -5.6843 -5.5627 0.0000 -0.0000 - -0.0295 -109.0662 23.8971 -4.1231 2.0428 -178.3369 -4.2462 0.7502 1.2423 -3.2506 -0.7988 -0.0071 10.6841 3.9443 2.4862 -2.1759 4.6541 -0.9753 -16.3852 22.2469 6.8381 10.9683 6.4371 2.3254 -4.8491 -6.5954 11.8756 -9.9723 -10.5860 73.5457 0.0000 0.0000 14.6248 0.0270 -10.1554 -1.8892 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.9157 -4.3931 -14.1341 5.4532 14.3789 -87.1024 -0.0000 0.0000 8.7420 5.1585 7.3364 -3.4378 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -25.3300 2.4669 -3.0479 16.8794 0.0000 0.0000 -1.0894 0.0449 0.6978 -0.8107 0.0000 -0.0000 4.6008 3.1497 6.6576 8.6813 0.0000 0.0000 -17.5914 2.8821 -5.6734 -5.7013 0.0000 -0.0000 - 0.1475 -108.5926 23.9081 -4.2192 1.4971 -178.7638 -4.3166 -0.9515 1.3704 -3.4398 -1.7564 -0.1698 11.0189 5.3318 2.8245 -2.4066 5.2762 -1.2013 -17.8559 25.6007 9.0370 10.8710 7.8379 3.5567 -5.2896 -7.3122 12.0679 -10.1981 -10.3313 73.8257 0.0000 0.0000 14.7869 0.0365 -10.3938 -1.8682 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -5.8031 -2.9402 -13.4329 6.0292 12.8184 -87.0096 -0.0000 0.0000 8.7687 5.6448 8.7513 -3.2901 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -24.3037 1.1625 -2.5040 16.3940 0.0000 0.0000 0.8578 1.2027 -0.0147 -0.1644 0.0000 -0.0000 5.3635 2.0399 6.9672 9.2198 0.0000 0.0000 -17.6066 4.0867 -5.5023 -6.3088 0.0000 -0.0000 - 0.2792 -108.1334 23.9143 -4.3622 2.1294 -178.9868 -3.9914 -1.6820 1.3705 -3.1803 -2.5651 -0.2954 10.2393 6.7490 3.1783 -2.6129 6.0291 -1.4957 -19.2382 28.5247 11.4263 10.4673 8.7741 4.8623 -5.9327 -6.7424 12.5751 -9.9974 -11.4444 73.4260 0.0000 0.0000 14.8310 -0.1805 -10.7909 -1.8113 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -5.3815 -2.4020 -13.2551 6.2535 12.4799 -86.2669 -0.0000 0.0000 8.7490 5.8420 9.1203 -3.2644 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -24.9118 1.0791 -0.6964 19.0529 0.0000 0.0000 0.3084 2.0656 -1.5947 0.4883 0.0000 0.0000 5.8715 2.2139 6.9086 9.9823 0.0000 0.0000 -16.9018 5.1155 -5.4030 -7.5651 0.0000 -0.0000 - 0.3790 -107.6876 23.9153 -4.6411 3.5689 -178.2594 -3.5499 -1.6443 1.2267 -2.7099 -2.7801 -0.3310 8.8886 7.7903 3.0585 -2.7973 6.8099 -1.9728 -20.5321 30.2885 13.5296 9.8496 9.1689 5.8609 -6.4557 -5.3222 13.4059 -9.7820 -12.0499 72.3979 0.0000 0.0000 14.6375 -0.5941 -11.3449 -1.7723 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.8156 -2.8276 -13.5805 6.3575 13.0661 -85.1803 -0.0000 0.0000 8.6897 5.5209 8.4904 -3.2104 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -26.0255 2.0436 1.2076 23.1100 0.0000 0.0000 -2.4535 2.3772 -3.5609 0.6777 0.0000 0.0000 5.9844 3.0867 6.6289 11.0006 0.0000 0.0000 -15.7482 6.2690 -6.1091 -8.9556 0.0000 -0.0000 - 0.4955 -107.2311 23.9270 -4.9835 4.4956 -176.5491 -3.3089 -1.6997 1.0582 -2.4575 -2.8358 -0.3634 8.1077 8.5714 2.3461 -3.0101 7.3798 -2.5082 -21.9791 30.7657 14.9496 9.3212 9.3684 6.2902 -6.8667 -4.2546 13.9965 -9.8228 -11.0525 71.2659 0.0000 0.0000 14.3632 -0.5690 -11.9908 -1.8503 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.4893 -3.2884 -14.0449 6.6124 13.6070 -84.4299 -0.0000 0.0000 8.4835 5.0030 7.5233 -3.1538 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -26.2846 2.7308 2.4481 25.9744 0.0000 0.0000 -5.1735 2.6622 -5.8276 0.5204 0.0000 0.0000 5.8314 3.1070 6.6938 12.3900 0.0000 0.0000 -14.5425 7.9694 -8.0439 -9.9029 0.0000 -0.0000 - 0.6456 -106.7521 23.9448 -5.3443 4.3464 -174.7179 -3.4525 -2.1793 0.9679 -2.4832 -3.0372 -0.4284 8.0920 8.9756 1.5708 -3.2423 7.6441 -2.8624 -23.5227 30.3969 15.6913 8.9448 9.6538 6.2085 -7.2056 -4.0897 14.1192 -10.2522 -9.4384 70.2783 0.0000 0.0000 14.2838 -0.0643 -12.3614 -2.0012 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3611 -3.2310 -14.4304 6.9527 13.9432 -84.2008 -0.0000 0.0000 8.1429 4.5936 6.8830 -3.2786 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -25.6870 2.3402 2.9381 27.1025 0.0000 0.0000 -6.8192 3.3096 -8.1341 0.4660 0.0000 0.0000 5.4975 1.8375 7.2006 14.1000 0.0000 0.0000 -13.5316 9.5777 -10.4947 -10.5442 0.0000 -0.0000 - 0.8018 -106.2510 23.9538 -5.3968 3.6996 -173.5932 -3.5764 -2.6832 0.8825 -2.5542 -3.2859 -0.4931 8.1694 8.7633 1.2186 -3.4534 7.6746 -2.9126 -24.7368 29.6371 15.9783 8.4706 9.9018 5.8792 -7.4097 -4.1850 14.2905 -10.9853 -8.7045 69.2431 0.0000 0.0000 14.4985 0.0621 -11.9444 -2.1446 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.1886 -3.0929 -14.9068 7.1798 14.8728 -83.8987 -0.0000 0.0000 7.8495 4.3136 6.7625 -3.5771 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -24.4076 1.3174 2.7062 27.1837 0.0000 0.0000 -8.0936 4.1750 -9.6991 0.6804 0.0000 0.0000 5.4131 0.1538 7.6792 15.9436 0.0000 0.0000 -12.9341 10.0370 -12.2051 -11.2649 0.0000 -0.0000 - 0.9318 -105.7635 23.9530 -5.3613 3.3883 -173.2652 -3.6050 -2.8463 0.7795 -2.5101 -3.3936 -0.5094 7.9061 8.2430 1.2374 -3.6387 7.6244 -2.8104 -25.3570 28.4714 15.8997 7.6974 9.8309 5.5803 -7.4156 -3.9885 14.8454 -11.6162 -8.7869 68.2831 0.0000 0.0000 14.8027 -0.5331 -10.6875 -2.1990 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.9661 -3.2718 -15.5834 7.2450 16.3357 -83.0747 -0.0000 0.0000 7.8046 4.3870 7.0777 -3.7779 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -23.0485 0.6492 1.8580 27.0431 0.0000 0.0000 -9.6521 4.9254 -9.9239 1.0554 0.0000 0.0000 5.0133 -0.9899 7.8658 18.5418 0.0000 0.0000 -12.5667 9.7944 -12.8172 -11.7627 0.0000 -0.0000 - 1.0370 -105.3089 23.9549 -5.2058 3.5043 -173.3318 -3.3656 -2.8514 0.6857 -2.3536 -3.4167 -0.4976 7.4221 8.0427 1.3261 -3.8428 7.5530 -2.7345 -25.4971 26.5783 15.3811 6.7850 9.4357 5.4945 -7.4061 -3.5918 15.3572 -11.6530 -8.9040 67.9848 0.0000 0.0000 14.8507 -0.9560 -9.1226 -2.1164 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.8604 -3.4552 -16.2197 7.2650 17.1657 -82.0502 -0.0000 0.0000 7.9896 5.2269 7.6665 -3.6864 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -21.6633 0.4821 0.8834 26.9332 0.0000 0.0000 -11.1766 5.4745 -9.3521 1.4580 0.0000 0.0000 3.7083 -1.7648 7.9866 22.9282 0.0000 0.0000 -11.6681 10.7498 -13.0974 -11.2767 0.0000 -0.0000 - 1.1427 -104.8953 23.9537 -5.0845 3.5564 -173.4393 -3.0569 -3.0163 0.5876 -2.1629 -3.4647 -0.4746 6.9488 8.3199 1.3629 -4.0867 7.4464 -2.7450 -25.3637 23.8790 14.4306 5.9983 8.8874 5.5727 -7.4931 -3.2583 15.4043 -11.1165 -8.8561 68.5891 0.0000 0.0000 14.4585 -0.5757 -8.0832 -1.9781 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.7960 -3.2150 -16.5228 7.2181 16.6591 -81.3624 -0.0000 0.0000 8.1827 6.5332 8.2349 -3.4789 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -20.4844 0.1807 0.4229 26.8947 0.0000 0.0000 -12.2724 5.9910 -9.0933 1.7435 0.0000 0.0000 1.0842 -2.9363 8.4105 29.2825 0.0000 0.0000 -10.1956 13.3036 -13.5120 -9.6749 0.0000 -0.0000 - 1.2556 -104.5086 23.9413 -4.9257 3.3731 -173.5837 -2.7686 -3.3770 0.4997 -2.0209 -3.4146 -0.4266 6.6353 8.7046 1.3686 -4.2977 7.2975 -2.7435 -25.0187 20.8594 13.2067 5.3385 8.2480 5.5427 -7.5263 -2.8364 15.1871 -10.4682 -8.9753 69.5924 0.0000 0.0000 13.7285 0.0905 -8.1477 -1.8885 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.5814 -2.7116 -16.5875 6.8879 15.6754 -80.9586 -0.0000 0.0000 8.1327 7.2177 8.3377 -3.3965 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -19.4318 -0.5411 0.6838 27.0236 0.0000 0.0000 -13.1358 6.5312 -9.4484 1.7973 0.0000 0.0000 -2.0701 -4.6489 9.3197 35.9770 0.0000 0.0000 -9.7240 14.9002 -13.0656 -8.1293 0.0000 -0.0000 - 1.3566 -104.1314 23.9340 -4.6741 3.2617 -173.9494 -2.6225 -3.7372 0.4497 -1.9649 -3.2544 -0.3585 6.6273 9.0730 1.4933 -4.3733 7.1531 -2.7026 -24.6034 18.2560 11.9749 4.6967 7.5002 5.1917 -7.2543 -2.2715 15.1365 -10.0491 -9.0138 70.5012 0.0000 0.0000 12.8567 0.3649 -9.1638 -1.9134 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2875 -2.3155 -16.6776 6.2989 15.3697 -80.4371 -0.0000 0.0000 7.7544 6.4788 7.8267 -3.4624 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -18.3649 -1.2161 1.2387 27.3554 0.0000 0.0000 -13.9382 6.8991 -9.6139 1.6419 0.0000 0.0000 -4.8525 -6.3618 10.8109 41.0588 0.0000 0.0000 -11.7156 13.1743 -10.3566 -7.6791 0.0000 -0.0000 - 1.4308 -103.7554 23.9494 -4.3323 3.4037 -174.6713 -2.5915 -4.0189 0.4409 -1.9882 -3.1310 -0.3063 6.8944 9.5135 1.8580 -4.3249 7.0784 -2.6299 -24.3606 16.5062 11.0095 4.2160 6.7636 4.5903 -6.9396 -1.6353 15.3359 -9.5249 -8.8779 71.2572 0.0000 0.0000 12.0445 0.5228 -10.2980 -2.0074 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.1213 -2.1786 -16.8189 5.7942 15.7730 -79.7201 -0.0000 0.0000 7.1883 4.7615 7.1497 -3.5888 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -17.1780 -1.4153 1.4369 27.6750 0.0000 0.0000 -14.5889 6.9577 -8.7783 1.4224 0.0000 0.0000 -6.9247 -7.7661 12.9624 43.3921 0.0000 0.0000 -14.5328 8.8558 -5.8680 -7.7016 0.0000 -0.0000 - 1.4857 -103.3775 23.9811 -3.9285 3.6483 -175.7181 -2.5563 -4.2753 0.4313 -1.9793 -3.0747 -0.2440 7.1819 9.9551 2.4197 -4.2513 7.0546 -2.5221 -24.4153 15.6024 10.4618 4.1128 6.1589 3.9780 -6.9450 -1.0010 15.5867 -8.5143 -8.9388 72.0122 0.0000 0.0000 11.4321 0.9736 -10.8787 -1.9981 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.1248 -2.1822 -16.8375 5.6362 16.0917 -79.1111 -0.0000 0.0000 6.7286 3.4529 6.9236 -3.6522 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.7596 -1.2502 0.9906 27.5690 0.0000 0.0000 -15.0738 6.8410 -7.0181 1.2098 0.0000 0.0000 -8.4179 -9.0781 15.5634 43.0318 0.0000 0.0000 -15.6970 5.1655 -1.5872 -7.4338 0.0000 -0.0000 - 1.5315 -103.0036 24.0073 -3.5334 3.9114 -176.9205 -2.4539 -4.4138 0.4169 -1.9068 -3.0563 -0.2078 7.3338 10.2831 3.1192 -4.2077 7.0854 -2.4404 -24.6434 15.1833 10.2689 4.2947 5.6755 3.5231 -7.1303 -0.4313 15.7999 -7.3022 -9.4061 72.7302 0.0000 0.0000 11.0754 1.3956 -10.9602 -1.8468 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2542 -2.3124 -16.6509 5.8020 16.0207 -78.8431 -0.0000 0.0000 6.5716 3.3412 7.2376 -3.5984 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -14.2037 -0.9614 0.2175 27.0417 0.0000 0.0000 -15.6051 6.7363 -5.0355 0.9850 0.0000 0.0000 -9.6416 -10.3537 18.0761 40.8631 0.0000 0.0000 -15.3242 3.9877 1.0240 -7.1987 0.0000 -0.0000 - 1.5623 -102.6473 24.0123 -3.2426 4.2097 -178.1085 -2.3615 -4.4719 0.3917 -1.8193 -2.9973 -0.1649 7.4154 10.5532 3.8028 -4.1766 7.1372 -2.3707 -24.8304 14.9373 10.2548 4.5113 5.2639 3.2313 -7.1189 0.1146 16.0187 -6.4560 -10.0044 73.2580 0.0000 0.0000 10.8902 1.3866 -10.9472 -1.6845 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -3.5156 -2.5499 -16.4018 6.0602 15.9274 -78.7797 -0.0000 0.0000 6.6368 4.0524 7.6767 -3.5343 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -12.9013 -0.6704 -0.2227 26.6893 0.0000 0.0000 -16.3347 6.6134 -3.5182 0.8206 0.0000 0.0000 -10.9701 -11.3474 19.7732 37.7841 0.0000 0.0000 -14.6239 4.1670 1.7629 -7.3168 0.0000 -0.0000 - 1.5624 -102.3137 23.9947 -3.0117 4.5890 -179.2447 -2.2587 -4.5208 0.3740 -1.7681 -2.9541 -0.1268 7.5177 10.8901 4.4664 -4.1254 7.2230 -2.3162 -24.8919 14.7649 10.3076 4.7105 4.9388 3.0436 -6.9221 0.6426 16.2812 -6.0357 -10.4184 73.5646 0.0000 0.0000 10.7201 1.2218 -10.9921 -1.6129 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.8553 -2.7452 -16.2332 6.2020 15.9762 -78.6744 -0.0000 0.0000 6.7304 4.9040 7.8161 -3.5700 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -12.0833 -0.3315 0.0586 27.0733 0.0000 0.0000 -17.2736 6.3427 -2.6851 0.8436 0.0000 0.0000 -12.5274 -11.8086 20.0042 34.2413 0.0000 0.0000 -13.8213 4.3404 1.3048 -7.5933 0.0000 -0.0000 - 1.5243 -101.9958 23.9578 -2.8905 5.0381 179.6774 -2.2132 -4.5765 0.3568 -1.7632 -2.9626 -0.0875 7.6317 11.2796 5.0853 -4.0675 7.3241 -2.2271 -24.8215 14.7097 10.3680 4.9360 4.6719 2.9168 -6.8103 1.0368 16.5450 -5.6775 -10.5730 73.7367 0.0000 0.0000 10.5118 1.3045 -11.0197 -1.5972 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1063 -2.7048 -16.1390 6.1991 15.8174 -78.4989 -0.0000 0.0000 6.8159 5.6302 7.5827 -3.7069 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -11.7488 0.1358 0.7289 28.1094 0.0000 0.0000 -18.4078 5.9422 -2.2108 1.0448 0.0000 0.0000 -14.3199 -11.7619 18.7407 30.3756 0.0000 0.0000 -12.5666 4.6627 0.4143 -7.9503 0.0000 -0.0000 - 1.4538 -101.6664 23.9112 -2.7801 5.4467 178.6797 -2.2373 -4.6867 0.3333 -1.7636 -2.9755 -0.0699 7.7294 11.6284 5.6640 -3.9918 7.4077 -2.1324 -24.5845 14.7081 10.3753 5.1248 4.3731 2.8330 -6.8329 1.1767 16.7597 -5.1990 -10.5406 73.8223 0.0000 0.0000 10.3697 1.5020 -11.0438 -1.5717 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.2220 -2.4809 -16.0022 6.2225 15.4120 -78.4036 -0.0000 0.0000 6.9701 6.2236 7.1950 -3.8696 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.3943 0.6955 1.2312 29.1279 0.0000 0.0000 -19.6292 5.5682 -1.6738 1.2649 0.0000 0.0000 -15.9431 -11.4729 16.8089 26.1049 0.0000 0.0000 -10.9834 5.6725 -0.6965 -8.7075 0.0000 -0.0000 - 1.3525 -101.3067 23.8697 -2.6406 5.7665 177.7587 -2.3749 -4.8748 0.2918 -1.8181 -2.9561 -0.0492 7.9228 11.8868 6.1544 -3.8777 7.4606 -2.0328 -24.2450 14.6335 10.3009 5.2680 4.0352 2.7801 -6.8835 1.1365 16.8636 -4.6707 -10.5080 73.8726 0.0000 0.0000 10.3309 1.4729 -11.1391 -1.5339 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.3305 -2.2169 -15.7749 6.4011 15.2242 -78.4254 -0.0000 0.0000 7.1608 6.6275 6.9907 -4.0444 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -10.7225 1.3265 1.4861 29.7177 0.0000 0.0000 -20.7647 5.2222 -0.9891 1.3774 0.0000 0.0000 -17.1628 -11.0631 14.9427 21.4401 0.0000 0.0000 -9.3782 7.2467 -1.9762 -10.0606 0.0000 -0.0000 - 1.2188 -100.9164 23.8410 -2.4130 5.9845 176.9029 -2.5325 -5.1267 0.2403 -1.8976 -2.9529 -0.0432 8.1909 12.0867 6.5677 -3.7452 7.4668 -1.9353 -23.9283 14.4364 10.1718 5.4738 3.7569 2.7276 -6.9743 1.1143 16.8436 -4.1096 -10.7240 73.9856 0.0000 0.0000 10.2176 1.2444 -11.3095 -1.5150 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.4790 -1.9841 -15.5290 6.6813 15.4438 -78.4280 -0.0000 0.0000 7.2547 6.8691 7.1663 -4.2837 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.6774 1.9940 1.7416 29.8894 0.0000 0.0000 -21.6964 4.7391 -0.3746 1.3902 0.0000 0.0000 -18.1237 -10.5575 13.0250 16.9226 0.0000 0.0000 -7.6748 8.8782 -2.8744 -11.4968 0.0000 -0.0000 - 1.0561 -100.5109 23.8196 -2.1855 6.0762 176.1164 -2.6458 -5.4557 0.1967 -1.9148 -2.9594 -0.0481 8.3289 12.2412 6.9257 -3.6467 7.4252 -1.8478 -23.5964 14.0968 9.9743 5.6601 3.4500 2.6385 -7.1466 1.1867 16.7878 -3.4553 -11.1461 74.1473 0.0000 0.0000 9.9034 1.0834 -11.4852 -1.5450 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.5785 -1.7164 -15.3210 6.9678 15.6096 -78.3764 -0.0000 0.0000 7.2461 7.2165 7.5694 -4.5633 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -8.4877 2.6467 2.0188 29.8275 0.0000 0.0000 -22.4237 4.1004 0.1116 1.3781 0.0000 0.0000 -19.3409 -10.0748 11.0841 13.5441 0.0000 0.0000 -6.1175 10.0909 -2.8489 -12.0906 0.0000 -0.0000 - 0.8726 -100.0914 23.8021 -1.9820 6.0046 175.2676 -2.6510 -5.9041 0.1647 -1.8866 -2.9835 -0.0402 8.1980 12.4520 7.3619 -3.5628 7.3413 -1.7648 -23.0085 13.4219 9.6289 5.4910 2.7184 2.5364 -7.2410 1.3178 16.8088 -2.7633 -11.3216 74.1558 0.0000 0.0000 9.5803 0.9871 -11.5629 -1.6368 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.6462 -1.2345 -15.0697 7.2443 15.4249 -78.4543 -0.0000 0.0000 7.2725 7.7924 7.8686 -4.8621 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -7.2147 3.2517 2.1487 29.5495 0.0000 0.0000 -22.9475 3.4439 0.7524 1.3471 0.0000 0.0000 -20.8421 -9.7258 10.1548 11.6822 0.0000 0.0000 -5.5426 10.5682 -2.2858 -11.6560 0.0000 -0.0000 - 0.6755 -99.6473 23.7893 -1.8952 5.7839 174.1041 -2.7332 -6.4138 0.1467 -1.8737 -3.1089 -0.0315 7.8641 12.8643 8.1015 -3.4121 7.1874 -1.6516 -22.0911 12.0541 9.0875 4.8867 1.2790 2.5205 -7.0889 1.4187 16.8850 -2.1239 -10.8294 73.9127 0.0000 0.0000 9.4618 0.6161 -11.4642 -1.7354 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.8699 -0.4118 -14.6834 7.4520 15.3196 -78.7195 -0.0000 0.0000 7.2925 8.2068 7.9420 -5.2775 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.9493 3.8154 2.2267 29.0175 0.0000 0.0000 -23.2508 2.7528 1.7376 1.1896 0.0000 0.0000 -22.2239 -9.5078 10.6240 10.5832 0.0000 0.0000 -6.0282 10.2952 -1.7823 -10.8414 0.0000 -0.0000 - 0.4708 -99.1694 23.7736 -1.9385 5.4222 172.6932 -2.9829 -6.7718 0.1115 -1.9497 -3.4064 -0.0431 7.5256 13.3923 9.0708 -3.2134 6.8746 -1.4496 -21.0702 9.8580 8.3404 4.2707 -0.6161 2.6307 -6.7116 1.3111 16.8200 -1.5768 -9.7081 73.6724 0.0000 0.0000 9.3831 -0.1774 -11.3033 -1.7695 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -5.2932 0.6195 -14.2718 7.4484 15.6114 -78.9184 -0.0000 0.0000 7.0492 7.8621 7.8417 -5.9063 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.6869 4.3108 2.4194 28.2910 0.0000 0.0000 -23.3822 1.8934 2.8103 0.8300 0.0000 0.0000 -23.2222 -9.3486 11.1279 9.4539 0.0000 0.0000 -6.4117 9.8519 -1.2788 -10.1971 0.0000 -0.0000 - 0.2573 -98.6458 23.7389 -1.9231 4.9133 171.5213 -3.2483 -6.9039 0.0441 -2.0496 -3.5949 -0.0469 7.2569 13.6095 9.8049 -3.0680 6.3350 -1.1546 -20.1301 7.2176 7.3787 4.0390 -2.4054 2.7275 -6.2674 0.9279 16.4719 -1.1176 -8.5197 73.7483 0.0000 0.0000 9.0953 -0.9209 -11.3009 -1.7640 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.6914 1.5088 -14.0216 7.2150 15.8262 -78.8520 -0.0000 0.0000 6.4580 6.6710 7.4183 -6.5737 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.1920 4.7296 2.5557 27.5647 0.0000 0.0000 -23.4746 0.9285 3.6196 0.3795 0.0000 0.0000 -23.8344 -9.0228 10.4127 8.3991 0.0000 0.0000 -6.0309 9.8011 -0.4622 -9.6790 0.0000 -0.0000 - 0.0239 -98.0606 23.6808 -1.7624 4.2717 170.8406 -3.4824 -6.9600 -0.0508 -2.1097 -3.5026 -0.0359 7.0391 13.3123 10.0908 -2.9831 5.6688 -0.8507 -19.2870 4.7194 6.2944 4.0747 -3.8046 2.6327 -5.8288 0.4556 15.9768 -0.7352 -7.8121 74.1083 0.0000 0.0000 8.7470 -1.0788 -11.4029 -1.7652 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.9020 2.0638 -13.8589 6.9286 15.3382 -78.7045 -0.0000 0.0000 5.8246 5.2362 6.4412 -6.9807 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.3468 5.1310 2.3841 26.9399 0.0000 0.0000 -23.5701 -0.0150 4.2254 -0.0576 0.0000 -0.0000 -23.9171 -8.2679 9.1111 7.5918 0.0000 0.0000 -5.4955 9.7640 0.3394 -9.2348 0.0000 -0.0000 - -0.2476 -97.4020 23.6144 -1.5344 3.7237 170.1876 -3.8075 -6.8338 -0.1966 -2.2648 -3.5534 -0.0550 6.9594 12.8425 10.2854 -2.8582 5.0432 -0.5507 -18.6657 2.6220 5.3160 4.1092 -4.9304 2.3576 -5.4162 -0.0082 15.5963 -0.3445 -7.5047 74.5358 0.0000 0.0000 8.6016 -0.9129 -11.3539 -1.6929 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.0478 2.5541 -13.4806 6.7147 14.0736 -78.7711 -0.0000 0.0000 5.5220 4.2439 5.2932 -7.1039 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.6621 5.8788 1.9428 26.3578 0.0000 0.0000 -23.5722 -1.1662 5.1340 -0.6089 0.0000 -0.0000 -22.9206 -6.9569 8.4086 6.2977 0.0000 0.0000 -4.6675 8.8196 0.5925 -9.2822 0.0000 -0.0000 - -0.5712 -96.6670 23.5529 -1.2342 3.7418 169.0875 -4.3518 -5.9868 -0.3986 -2.6695 -4.2239 -0.1845 7.2323 12.6826 10.7410 -2.6719 4.4803 -0.2136 -18.4630 0.6746 4.5295 4.2127 -6.0105 2.0389 -4.9855 -1.0710 15.3823 0.0217 -6.6806 74.9878 0.0000 0.0000 8.5229 -1.1465 -11.3014 -1.5030 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -6.3302 3.3305 -12.8152 6.5146 12.2727 -79.0271 -0.0000 0.0000 5.5332 3.8830 4.7580 -7.1325 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.5441 7.6190 1.3256 25.9810 0.0000 0.0000 -23.3523 -2.8435 6.7493 -1.4517 0.0000 -0.0000 -20.7172 -5.0622 7.8465 4.0371 0.0000 0.0000 -1.9474 7.0114 0.8168 -9.8980 0.0000 -0.0000 - -0.9477 -95.8360 23.5113 -0.1942 4.9143 167.8951 -4.8686 -3.8860 -0.5238 -3.1821 -5.1892 -0.4247 7.9450 13.1172 11.1764 -2.5112 3.8277 0.1245 -18.4418 -1.6606 3.6286 4.6234 -7.3777 1.7089 -4.3478 -3.4011 15.0955 0.1731 -4.7925 75.4414 0.0000 0.0000 8.3177 -1.6526 -11.5343 -1.3652 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.7935 4.2648 -12.2856 6.3253 10.2556 -79.1984 -0.0000 0.0000 5.5221 3.9020 4.9399 -7.1609 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 4.7925 11.0366 0.3601 26.1358 0.0000 0.0000 -22.7089 -4.8273 8.8660 -2.6075 0.0000 -0.0000 -17.5706 -2.1635 5.9667 1.7774 0.0000 0.0000 2.8709 5.6149 2.4259 -10.2162 0.0000 -0.0000 - -1.3557 -94.9052 23.5171 2.0446 7.1748 167.2462 -5.0691 -1.2325 -0.4529 -3.4804 -5.2673 -0.5105 8.6758 14.1326 11.1649 -2.3812 2.9938 0.3734 -17.8961 -4.9431 2.2531 5.2731 -9.4795 1.2994 -3.4915 -6.1642 14.5536 0.3929 -3.1624 75.5599 0.0000 0.0000 8.3000 -1.5189 -11.5168 -1.3874 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.3061 4.9172 -12.3406 6.3080 8.6272 -79.2205 -0.0000 0.0000 5.2936 3.9493 5.1527 -7.1319 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 8.0917 15.8214 -0.9305 26.7779 0.0000 0.0000 -21.1899 -6.5024 10.6781 -4.2250 0.0000 -0.0000 -14.0684 1.9265 2.2491 1.2699 0.0000 0.0000 6.4639 5.6589 6.0505 -9.6400 0.0000 -0.0000 - -1.7512 -93.9502 23.5933 4.3510 9.3792 166.8545 -5.3388 0.4061 -0.1768 -3.5375 -4.2990 -0.2891 8.7740 15.5297 11.0952 -2.1265 2.2279 0.5312 -16.5996 -9.4053 0.5778 5.7864 -12.3654 0.8032 -2.6188 -7.5909 13.8385 1.4092 -3.3576 75.1368 0.0000 0.0000 8.6491 -0.9758 -10.5458 -1.3154 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.8716 5.2072 -12.7591 6.6786 8.1422 -79.4020 -0.0000 0.0000 4.9190 3.8497 4.8851 -7.0472 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 11.1597 20.2092 -1.5020 27.9471 0.0000 0.0000 -18.3153 -7.5699 11.5167 -6.5406 0.0000 -0.0000 -10.9109 6.0829 -0.6320 2.2764 0.0000 0.0000 6.1670 5.6898 9.3161 -8.9162 0.0000 -0.0000 - -2.0806 -93.0525 23.7256 6.0046 10.3035 165.8941 -5.7386 0.8988 0.2583 -3.4832 -3.5471 -0.0781 8.2781 16.6496 11.5901 -1.7345 1.7639 0.6870 -15.2562 -14.4113 -0.7774 5.8946 -15.2021 0.2252 -2.0600 -7.1161 13.3853 3.4842 -5.0673 74.4701 0.0000 0.0000 8.8621 -1.2744 -9.2820 -1.0027 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.5770 5.3469 -12.8137 7.3478 8.7332 -80.0234 -0.0000 0.0000 4.5087 3.5758 4.4190 -6.9987 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 12.1838 22.8633 -0.2202 30.5782 0.0000 0.0000 -14.1206 -8.0963 11.6609 -8.9334 0.0000 -0.0000 -7.4606 8.7767 -0.7692 2.3768 0.0000 0.0000 3.8759 4.1986 10.2829 -8.7096 0.0000 -0.0000 - -2.3358 -92.2535 23.8441 7.5154 10.2041 164.2837 -5.7628 1.3296 0.7021 -3.3254 -3.1445 0.0558 7.8079 16.7642 12.2957 -1.4436 1.3341 0.9484 -14.5405 -18.6720 -1.6523 5.5504 -16.8335 -0.5219 -1.9619 -6.1598 13.4119 5.7255 -6.4431 74.0020 0.0000 0.0000 8.4541 -2.2842 -9.2654 -0.7743 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -9.2044 5.0674 -12.4191 7.6998 9.3271 -80.9338 -0.0000 0.0000 4.2262 3.2682 4.2665 -7.0026 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 10.5795 24.2880 2.3387 36.2899 0.0000 0.0000 -9.1876 -8.1131 11.8899 -9.4927 0.0000 -0.0000 -3.3723 10.2504 0.0391 1.0059 0.0000 0.0000 2.2444 2.2917 10.3418 -8.7458 0.0000 -0.0000 - -2.5527 -91.5830 23.8757 9.1266 10.6052 162.7390 -5.4328 2.8015 1.2049 -3.1300 -2.1628 0.2658 7.7967 15.7859 12.4775 -1.3876 0.6195 1.3040 -14.4482 -21.0482 -2.4811 4.9146 -17.0949 -1.4432 -2.0219 -6.1235 13.4763 6.8449 -6.5311 73.8655 0.0000 0.0000 7.8211 -2.2383 -10.4957 -0.9366 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.4151 4.0934 -12.1986 7.0365 8.8758 -81.7571 -0.0000 0.0000 4.2686 3.1680 4.4441 -6.9500 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 6.5401 25.8866 4.8603 45.2984 0.0000 0.0000 -4.5309 -7.8771 11.7345 -6.8391 0.0000 -0.0000 0.2654 12.1016 -0.3409 -0.4544 0.0000 -0.0000 1.5673 1.1445 11.4095 -8.6589 0.0000 -0.0000 - -2.7477 -91.0355 23.8330 10.4919 11.9927 161.8182 -5.2509 5.0497 1.7567 -3.0401 -0.4751 0.6518 8.2624 14.2830 11.9862 -1.4058 -0.1404 1.6325 -14.4833 -21.3864 -3.5050 4.3119 -16.8070 -2.3996 -1.7137 -6.6050 13.3021 6.5742 -6.3587 73.8675 0.0000 0.0000 7.8678 -0.7309 -10.9677 -1.0470 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -9.4110 2.9761 -12.3805 5.5960 7.3781 -82.3550 -0.0000 0.0000 4.6493 3.3782 4.4684 -6.6933 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 1.0574 27.8130 6.9321 55.0619 0.0000 0.0000 -1.9280 -8.2101 9.4994 -3.6807 0.0000 -0.0000 2.8077 14.7067 -2.2290 -1.4337 0.0000 -0.0000 0.8748 0.4868 13.5052 -8.5293 0.0000 -0.0000 - -2.8872 -90.5713 23.8041 11.3229 12.8370 161.5811 -5.2571 6.5418 2.1663 -3.0192 0.6273 0.8982 8.9099 13.3326 11.3490 -1.2776 -0.4899 1.7739 -14.2261 -20.6030 -4.4041 4.0014 -16.5552 -3.2636 -1.0136 -6.6559 13.1735 5.9627 -7.2283 73.7345 0.0000 0.0000 8.7143 0.0713 -9.4445 -0.6505 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -9.7071 2.4685 -12.5189 4.4299 5.7381 -83.0750 -0.0000 0.0000 5.1193 3.6672 3.8403 -6.0570 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.2797 28.2169 8.4128 62.6488 0.0000 0.0000 -3.0408 -8.8143 4.6145 -3.6056 0.0000 -0.0000 4.9764 16.4398 -4.0734 -2.4354 0.0000 -0.0000 0.0698 -0.2816 14.8961 -8.4799 0.0000 -0.0000 - -2.9616 -90.1791 23.8298 11.4569 12.4872 161.9527 -5.3551 6.9347 2.3754 -3.0671 0.7984 0.9157 9.5433 12.8129 10.7578 -1.0237 -0.3908 1.6840 -13.6655 -19.3885 -4.7195 4.0482 -16.3110 -3.9179 -0.4851 -6.1688 13.3657 6.0714 -9.0343 73.3652 0.0000 0.0000 9.4770 -1.3729 -7.3877 0.0856 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.0183 2.6734 -12.2164 3.7598 4.7479 -84.3691 -0.0000 0.0000 5.3317 3.7243 2.7312 -5.2112 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.9590 26.5356 8.7642 66.8541 0.0000 0.0000 -6.8215 -7.7729 -0.7201 -4.8610 0.0000 -0.0000 6.5431 16.5984 -4.3125 -2.9307 0.0000 -0.0000 -0.6810 -0.8085 14.3360 -8.5180 0.0000 -0.0000 - -2.9897 -89.8543 23.8808 11.2335 11.7341 162.8456 -5.3394 7.2192 2.4252 -3.0811 0.7376 0.8598 9.9682 12.0378 10.1695 -0.8149 -0.2382 1.5662 -13.0584 -17.8439 -4.5208 4.4868 -15.8166 -4.2035 -0.4996 -5.6788 13.6330 6.9034 -10.6305 72.8953 0.0000 0.0000 9.4750 -3.2990 -6.8857 0.4926 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.0831 2.9548 -11.9242 2.4162 4.4384 -86.1431 -0.0000 0.0000 5.1320 3.3941 2.0573 -4.7351 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -13.0370 24.0589 8.2189 67.7164 0.0000 0.0000 -10.2202 -5.1491 -3.4071 -4.2106 0.0000 -0.0000 7.0408 16.0762 -3.0574 -2.0049 0.0000 -0.0000 -1.8250 -0.6126 12.2300 -8.7745 0.0000 -0.0000 - -2.9859 -89.5790 23.9194 10.9928 11.1626 163.9713 -5.1492 7.8327 2.3850 -2.9917 0.9484 0.8717 10.2133 10.8644 9.6895 -0.7124 -0.2698 1.5653 -12.6773 -16.0911 -4.1838 5.2846 -14.9900 -4.0025 -0.7831 -5.4714 13.6212 7.8362 -10.9262 72.5621 0.0000 0.0000 8.9150 -3.2841 -7.9590 0.2239 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.6392 2.8754 -12.2517 -0.1350 4.2951 -87.9614 -0.0000 0.0000 4.7825 2.8321 2.4724 -4.9057 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -16.6213 21.7124 7.7263 65.6775 0.0000 0.0000 -11.9623 -3.4325 -2.9134 -2.0259 0.0000 -0.0000 6.9059 15.5724 -1.6355 -0.1621 0.0000 -0.0000 -3.4522 -0.2625 9.9565 -9.2190 0.0000 -0.0000 - -2.9610 -89.3174 23.9431 10.9382 10.6253 164.9796 -4.8326 8.3349 2.3417 -2.8554 1.2474 0.9124 10.5329 9.7680 9.3357 -0.6297 -0.3811 1.6561 -12.5593 -14.4065 -3.8667 6.1537 -14.0829 -3.4420 -0.9535 -5.3628 13.4157 8.5288 -10.0816 72.4373 0.0000 0.0000 8.4190 -1.6119 -9.1755 -0.0834 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3763 2.5219 -13.0028 -2.4690 4.0936 -89.5536 -0.0000 0.0000 4.6339 2.6284 3.4892 -5.2718 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -19.3122 19.6933 7.3822 60.6755 0.0000 0.0000 -12.1639 -3.9591 -1.3604 -0.7305 0.0000 -0.0000 7.2700 15.0848 -0.9887 1.0109 0.0000 0.0000 -4.8042 -0.6328 8.3847 -9.4028 0.0000 -0.0000 - -2.9368 -89.0503 23.9590 10.8689 10.1772 165.9096 -4.6836 8.4612 2.3561 -2.7759 1.4535 0.9291 11.0823 9.1126 8.9209 -0.5357 -0.3927 1.6677 -12.5495 -13.0641 -3.5522 6.7136 -13.4479 -2.8713 -0.9264 -5.3339 13.3750 8.9155 -9.3791 72.2639 0.0000 0.0000 8.3393 -0.6208 -9.5663 -0.1170 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.7419 2.1902 -13.5273 -3.1185 4.0142 -90.9642 -0.0000 0.0000 4.7410 3.2135 4.1878 -5.2626 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -20.9749 18.5459 5.9957 52.7224 0.0000 0.0000 -10.4705 -5.3060 -0.6129 -0.6221 0.0000 -0.0000 8.2080 14.6579 -1.3069 0.9963 0.0000 0.0000 -5.3556 -1.6397 7.6250 -8.9996 0.0000 -0.0000 - -2.9262 -88.7735 23.9642 10.6963 10.0458 166.9703 -4.6193 8.4253 2.3624 -2.7632 1.6089 0.9286 11.6094 8.8471 8.4027 -0.4673 -0.3127 1.5676 -12.5128 -12.1542 -3.3586 6.8353 -13.1259 -2.6258 -0.8720 -5.4131 13.5044 9.0611 -9.8964 71.8557 0.0000 0.0000 8.5749 -1.4519 -9.4166 -0.1809 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2523 1.9448 -13.6485 -2.4341 4.1634 -92.2875 -0.0000 0.0000 4.9241 4.1419 4.3982 -4.9445 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -21.7141 18.6910 2.3696 42.7649 0.0000 0.0000 -6.1837 -5.9531 -0.4162 -0.4716 0.0000 -0.0000 9.2442 14.4640 -2.3016 0.4741 0.0000 0.0000 -5.5066 -2.4099 7.3731 -8.3558 0.0000 -0.0000 - -2.9160 -88.4965 23.9651 10.2939 10.0732 168.1322 -4.6298 8.2255 2.3459 -2.8161 1.7849 0.9446 12.0193 8.7382 7.9569 -0.4313 -0.2700 1.4620 -12.5249 -11.5943 -3.5042 6.5909 -12.6620 -2.8861 -0.7707 -5.7810 13.5268 8.9427 -10.7846 71.3786 0.0000 0.0000 8.7959 -2.8881 -9.4036 -0.3666 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3801 1.9031 -13.6797 -1.9953 4.2699 -93.3946 -0.0000 0.0000 4.9885 4.6320 4.5754 -4.7776 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -21.8652 19.3315 -3.2380 32.0499 0.0000 0.0000 0.5332 -6.2173 0.4561 -0.2711 0.0000 -0.0000 9.8848 14.3167 -3.0418 0.2061 0.0000 0.0000 -5.9813 -2.4598 6.8921 -7.9121 0.0000 -0.0000 - -2.8785 -88.2122 23.9702 9.7057 9.9639 169.3100 -4.7910 7.9530 2.4046 -2.9556 1.8430 0.9508 12.4660 8.4457 7.6098 -0.3681 -0.3319 1.4424 -12.5904 -10.9857 -4.0945 6.1658 -11.5150 -3.7606 -0.5163 -6.4257 13.3366 8.6885 -10.5979 71.1686 0.0000 0.0000 8.7691 -3.3053 -9.6212 -0.5243 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.7300 2.0862 -13.8538 -2.2400 4.2273 -94.0648 -0.0000 0.0000 4.9167 4.4751 4.8076 -4.8798 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -21.3226 19.3750 -9.5039 21.0480 0.0000 0.0000 7.5116 -5.8597 2.8468 -1.0362 0.0000 -0.0000 10.1319 13.9295 -2.9938 0.4302 0.0000 0.0000 -6.9277 -2.1294 5.7323 -7.6199 0.0000 -0.0000 - -2.7941 -87.8833 23.9620 9.3213 10.0069 170.6459 -4.9284 8.3961 2.6014 -3.0392 1.6331 0.8928 12.7577 7.5523 7.1755 -0.2515 -0.4550 1.4810 -12.3766 -9.8352 -5.0317 5.9116 -9.6464 -5.2443 -0.2619 -6.7620 13.0862 8.6750 -9.9046 71.2903 0.0000 0.0000 8.6143 -2.5497 -9.8004 -0.5627 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.4253 1.9277 -14.0499 -1.8740 4.6042 -94.3055 -0.0000 0.0000 4.8464 4.2299 4.6846 -4.9296 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -20.1700 18.9403 -14.2081 10.9414 0.0000 0.0000 11.2487 -4.2728 6.1827 -3.0992 0.0000 -0.0000 10.4926 13.5816 -2.7281 1.0692 0.0000 0.0000 -8.1256 -1.8194 4.1440 -7.3225 0.0000 -0.0000 - -2.6705 -87.5069 23.9322 9.0989 10.3815 172.1933 -4.9936 9.5048 2.8465 -2.9572 1.2877 0.7833 12.6441 6.2456 6.6045 -0.1414 -0.5334 1.5083 -11.7927 -8.2323 -6.0695 6.0616 -7.6114 -6.9874 -0.1626 -6.6205 12.8661 8.9370 -10.0442 71.5281 0.0000 0.0000 8.6144 -1.7926 -9.9350 -0.5157 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.8112 1.3026 -14.1026 -0.5638 5.3178 -94.3901 -0.0000 0.0000 4.9728 4.4520 4.3324 -4.7484 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -19.7972 18.9711 -14.2023 4.6221 0.0000 0.0000 10.0527 -2.5802 7.6596 -5.3895 0.0000 -0.0000 10.9504 13.4283 -2.6431 2.0737 0.0000 0.0000 -9.5053 -1.5033 2.4584 -7.0944 0.0000 -0.0000 - -2.5154 -87.0962 23.9148 9.1304 10.3208 173.7423 -4.8047 9.9595 2.8656 -2.7919 1.0663 0.6887 12.4567 5.0350 6.0446 -0.0728 -0.5215 1.4954 -11.1727 -6.6825 -6.7934 6.4164 -6.0409 -8.3460 -0.1800 -6.4287 12.6987 9.1476 -10.9733 71.7285 0.0000 0.0000 8.8465 -1.8512 -10.1976 -0.3658 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.8353 0.9124 -13.9949 0.2997 5.5306 -94.5068 -0.0000 0.0000 5.3972 4.9768 4.4795 -4.5108 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -20.2059 19.4193 -11.8655 2.9928 0.0000 0.0000 6.9201 -1.6637 8.1043 -6.5759 0.0000 -0.0000 11.8892 12.7490 -2.7138 2.9260 0.0000 0.0000 -10.8893 -1.0521 0.9248 -6.9756 0.0000 -0.0000 - -2.3268 -86.6536 23.9153 9.3916 9.7278 175.0658 -4.5925 9.6401 2.7595 -2.6512 1.0147 0.6189 12.5426 3.9696 5.5621 0.0158 -0.4824 1.4829 -10.7196 -5.4463 -6.9430 6.6944 -5.1149 -8.8805 -0.2588 -6.3474 12.5943 9.1705 -11.7765 71.9164 0.0000 0.0000 9.1255 -2.3405 -10.5298 -0.1623 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.3854 0.8658 -13.8054 0.4055 5.4772 -94.5853 -0.0000 0.0000 5.8949 5.4242 5.1687 -4.3911 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -21.1310 19.8374 -9.8355 5.2287 0.0000 0.0000 4.9493 -2.0592 9.1804 -6.4855 0.0000 -0.0000 13.4857 11.4604 -3.2548 3.0669 0.0000 0.0000 -12.0047 -0.5826 0.0876 -6.8694 0.0000 -0.0000 - -2.0909 -86.1648 23.9120 9.7436 8.9551 176.2141 -4.5945 9.0423 2.7121 -2.6420 1.0746 0.5791 12.9622 3.0315 5.1233 0.1596 -0.4648 1.4670 -10.4405 -4.5191 -6.6726 6.9395 -4.5224 -8.7577 -0.3889 -6.4466 12.5492 9.0621 -11.9395 72.0683 0.0000 0.0000 9.3173 -2.4806 -10.7595 -0.1410 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.2358 0.5040 -13.5903 1.6650 6.2234 -94.6144 -0.0000 0.0000 6.1263 5.8023 5.5373 -4.3473 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -22.1643 19.9679 -7.0900 9.7873 0.0000 0.0000 3.8373 -3.2354 9.1500 -5.6071 0.0000 -0.0000 15.5673 9.8416 -4.4932 2.5272 0.0000 0.0000 -12.8470 -0.1284 0.1653 -6.8235 0.0000 -0.0000 - -1.8007 -85.6402 23.8858 9.7621 8.1973 177.1694 -4.9950 8.2229 2.7773 -2.8619 1.2149 0.5773 13.5699 2.4283 4.7704 0.2662 -0.4310 1.4065 -10.3397 -3.7516 -6.2807 7.2566 -3.8974 -8.4666 -0.5597 -6.9593 12.5606 8.8533 -11.5658 72.1112 0.0000 0.0000 9.4938 -2.1495 -10.9248 -0.3852 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.2086 -0.1322 -13.3564 5.0327 7.7475 -94.6556 -0.0000 0.0000 6.0621 6.1514 5.1063 -4.2629 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -23.6875 19.4353 -2.9759 15.9205 0.0000 0.0000 1.7749 -4.7882 6.8037 -4.4589 0.0000 -0.0000 17.3917 8.0703 -5.7774 1.8844 0.0000 0.0000 -13.7393 0.4199 0.6334 -6.9111 0.0000 -0.0000 - -1.4607 -85.0741 23.8207 9.4937 7.6256 177.8410 -5.5688 7.3701 2.9457 -3.1875 1.3228 0.5949 14.0046 2.2065 4.4450 0.2615 -0.3066 1.2840 -10.2475 -2.9685 -5.8808 7.5743 -3.1901 -8.2506 -0.6922 -7.7520 12.5911 8.6285 -10.9788 72.2153 0.0000 0.0000 9.6922 -1.8162 -11.0555 -0.5253 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -10.5510 -0.4416 -13.1339 8.7507 9.2427 -94.5955 -0.0000 0.0000 6.0310 6.2653 4.3880 -4.0638 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -25.7272 18.1474 2.1601 23.4134 0.0000 0.0000 -1.1636 -7.6143 3.0741 -3.3870 0.0000 -0.0000 18.9183 6.3947 -6.6003 1.4067 0.0000 0.0000 -14.9571 1.0653 0.9709 -6.9200 0.0000 -0.0000 - -1.0797 -84.4300 23.7034 9.4218 7.4637 178.4741 -5.9710 6.8762 3.1703 -3.3750 1.3153 0.5750 14.0603 2.2727 4.0182 0.2130 -0.0870 1.0473 -10.0232 -2.1338 -5.4479 7.8099 -2.4853 -7.9891 -0.8364 -8.3986 12.5669 8.5141 -10.5758 72.5087 0.0000 0.0000 9.8812 -1.7701 -11.0434 -0.3040 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.4773 -0.3189 -12.8794 10.9411 10.0419 -94.3504 -0.0000 0.0000 6.1820 6.2073 4.1293 -3.7459 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -26.6705 16.6460 6.6027 30.4576 0.0000 0.0000 -3.3436 -11.5249 1.0568 -2.4901 0.0000 -0.0000 20.7888 4.9732 -7.2756 0.9854 0.0000 0.0000 -16.4848 1.8581 1.1104 -6.7174 0.0000 -0.0000 - -0.6613 -83.7134 23.5296 9.3169 7.6943 179.2244 -6.4377 6.4430 3.4029 -3.6165 1.3520 0.5910 14.1294 2.8116 3.5260 0.1640 0.2013 0.7598 -10.0100 -1.2491 -4.9787 8.0645 -1.6251 -7.5477 -1.1408 -9.0530 12.4051 8.2610 -10.6148 72.7491 0.0000 0.0000 10.1161 -1.9600 -11.2031 -0.0886 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -13.8117 -0.0484 -12.5357 12.3484 9.8388 -94.1955 -0.0000 0.0000 6.2540 6.4769 4.3123 -3.4422 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -25.9255 15.3628 9.2958 35.2083 0.0000 0.0000 -4.4523 -13.5876 2.3669 -1.5277 0.0000 -0.0000 22.5180 3.7440 -7.3820 1.0688 0.0000 0.0000 -18.3415 3.1386 0.6394 -6.6004 0.0000 -0.0000 - -0.1853 -82.9638 23.2967 8.7131 7.9018 179.6090 -7.1300 5.4550 3.5851 -4.1051 1.1863 0.6110 14.3133 4.3133 3.4763 -0.0283 0.5710 0.4869 -10.5263 -0.1303 -4.4325 8.5225 -0.3511 -7.0463 -1.5523 -10.2401 12.1309 7.3523 -11.2985 72.7539 0.0000 0.0000 10.6069 -2.3048 -12.1603 -0.3735 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.4241 0.3851 -11.9402 14.0210 8.9755 -94.3251 -0.0000 0.0000 6.1300 6.8363 4.1932 -3.3136 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -25.0195 13.4642 11.5794 38.5446 0.0000 0.0000 -6.8437 -11.9540 4.0170 -0.3990 0.0000 -0.0000 23.2149 2.5016 -5.8095 2.4129 0.0000 0.0000 -20.7571 5.0390 -0.8509 -6.6262 0.0000 -0.0000 - 0.3860 -82.2043 23.0275 7.8789 7.1921 179.0547 -7.6220 3.7037 3.7008 -4.5612 0.0619 0.4059 14.1226 6.7088 4.0888 -0.5415 1.0244 0.2428 -11.3360 1.3905 -3.7185 9.1099 1.1926 -6.7234 -1.8303 -12.0730 12.0157 5.5276 -12.4607 72.6949 0.0000 0.0000 11.7073 -2.7052 -13.8340 -1.0288 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -15.4835 1.6595 -10.9584 14.5994 8.2535 -94.2828 -0.0000 0.0000 6.1056 5.9641 3.4387 -3.2092 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -24.9969 9.2601 15.2558 42.4621 0.0000 0.0000 -11.5385 -8.5956 1.8749 0.3465 0.0000 0.0000 23.1624 0.5150 -2.7523 5.0712 0.0000 0.0000 -23.7901 7.1258 -2.4443 -6.2498 0.0000 -0.0000 - 1.0455 -81.4464 22.8010 7.5031 5.0625 178.0442 -7.4607 1.8960 3.6915 -4.6492 -2.3108 -0.1579 13.3472 8.9016 4.8143 -1.2676 1.4440 -0.0133 -11.9767 2.8980 -2.9293 9.5238 2.4335 -6.6626 -2.0193 -13.8902 12.3356 3.1690 -13.6768 72.6363 0.0000 0.0000 13.9024 -2.6478 -14.9906 -1.4308 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.4684 4.2974 -9.9949 13.0923 8.1693 -93.5121 -0.0000 0.0000 6.3253 3.6228 2.6810 -3.0156 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -24.6659 2.7203 19.2479 46.5987 0.0000 0.0000 -15.9947 -5.9188 -3.6719 0.5443 0.0000 0.0000 23.2087 -2.8347 -0.1975 8.7433 0.0000 0.0000 -26.7305 8.8942 -2.5509 -5.5090 0.0000 -0.0000 - 1.7146 -80.7381 22.7258 7.3173 2.1577 177.9602 -7.2751 0.7599 3.4187 -4.7622 -4.4486 -0.7188 12.9272 9.3449 4.7472 -1.8400 1.6618 -0.2418 -12.4686 3.4006 -2.4010 9.5530 2.9697 -6.7029 -2.5664 -14.8438 12.8848 0.7599 -14.7750 72.3274 0.0000 0.0000 17.3158 -1.5430 -14.3699 -1.1879 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.5033 7.4222 -9.8141 11.7870 8.2828 -92.2572 -0.0000 0.0000 6.5265 1.7580 2.9296 -2.9850 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -23.1330 -3.5743 20.9174 48.4462 0.0000 0.0000 -18.2925 -4.0441 -8.5652 0.6199 0.0000 0.0000 22.2937 -7.1665 0.7697 14.1868 0.0000 0.0000 -28.0386 10.1438 -1.5153 -5.6082 0.0000 -0.0000 - 2.3207 -80.1431 22.8383 6.5125 -0.5134 179.4773 -7.7200 0.1959 2.7759 -5.3674 -4.6661 -0.8448 13.3278 7.7694 3.6503 -2.0291 1.5504 -0.3912 -13.0931 2.2236 -2.3778 9.2405 2.9132 -6.5588 -3.5171 -14.6597 13.0645 -1.8789 -16.1809 71.8119 0.0000 0.0000 21.2567 0.1155 -12.2868 -0.7950 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.9707 9.2954 -10.5235 12.8384 7.8304 -91.2620 -0.0000 0.0000 6.4657 1.8138 5.1933 -3.3703 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -21.1464 -7.5943 19.6524 46.7230 0.0000 0.0000 -18.5775 -1.9402 -10.6306 0.7235 0.0000 0.0000 18.1885 -11.7504 0.9721 22.6602 0.0000 0.0000 -26.3601 10.4423 -1.4106 -7.1910 0.0000 -0.0000 - 2.8428 -79.6733 23.0538 5.2493 -2.7230 -178.0117 -8.1463 -0.3319 1.8381 -5.6538 -3.2414 -0.5257 13.0761 5.3358 2.1573 -1.9789 1.1704 -0.4600 -13.7286 -0.1297 -2.8080 8.7181 2.5246 -6.1464 -4.3363 -13.2601 12.4795 -4.9495 -18.6104 71.6499 0.0000 0.0000 24.5230 0.6490 -9.9401 -0.6387 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.2374 9.4985 -11.8677 14.8739 7.2131 -90.7890 -0.0000 0.0000 6.1694 3.0830 9.2014 -4.1618 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -19.3161 -9.8968 16.9157 42.7651 0.0000 0.0000 -17.8315 0.2579 -11.2349 0.7315 0.0000 0.0000 10.8786 -16.0111 0.4919 33.6528 0.0000 0.0000 -22.2162 8.5263 -2.4269 -8.8686 0.0000 -0.0000 - 3.2626 -79.2833 23.2590 4.5796 -4.4331 -175.6000 -7.5464 -1.0162 1.0004 -5.0170 -1.9301 -0.2578 11.6607 3.6453 0.8414 -2.0417 0.7710 -0.5171 -14.1666 -2.5907 -3.4538 7.9530 1.8629 -5.7899 -4.8662 -10.7518 11.3944 -8.0707 -21.8318 72.0750 0.0000 0.0000 26.2494 -1.2674 -7.6484 -0.4541 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.2627 8.7703 -13.2653 15.8301 8.0506 -90.6419 -0.0000 0.0000 5.8532 3.3291 12.8293 -4.7358 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -17.3785 -11.5937 14.6067 38.8651 0.0000 0.0000 -16.9196 1.6564 -12.0383 0.7322 0.0000 0.0000 2.8499 -18.8911 -1.3036 44.8613 0.0000 0.0000 -18.4694 5.2574 -2.6527 -9.1228 0.0000 -0.0000 - 3.5625 -78.9407 23.4042 4.6817 -5.2535 -174.0693 -6.1682 -1.6157 0.5212 -4.0877 -1.4065 -0.1668 10.4007 3.0147 0.0370 -2.2868 0.5634 -0.5909 -14.4927 -4.5192 -4.1565 6.9571 0.9489 -5.9101 -5.4962 -7.8920 10.3739 -10.7501 -24.3373 72.6780 0.0000 0.0000 26.4529 -4.5884 -4.9918 -0.0558 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7996 8.0969 -13.9824 15.9543 10.5322 -90.6427 -0.0000 0.0000 5.5501 2.3198 14.1567 -4.5596 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -15.3398 -12.5270 13.0473 36.1494 0.0000 0.0000 -16.3039 2.2497 -12.2913 0.8862 0.0000 0.0000 -4.1023 -19.6403 -3.3058 54.3800 0.0000 0.0000 -17.5205 3.5498 -1.9580 -8.6830 0.0000 -0.0000 - 3.7674 -78.6347 23.4972 4.8459 -5.2783 -173.8513 -5.0337 -2.1155 0.3162 -3.4678 -1.4039 -0.1558 10.0349 3.1135 0.1354 -2.4738 0.5170 -0.5778 -14.7412 -5.7848 -4.8773 6.1507 -0.0436 -6.5810 -6.3493 -5.7243 9.7947 -12.7995 -24.9526 72.9908 0.0000 0.0000 25.8564 -6.4809 -1.8860 0.2828 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.4687 7.9014 -13.9813 16.1805 12.7990 -90.6214 -0.0000 0.0000 5.0617 1.9082 12.7944 -4.4096 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -13.6332 -12.4745 11.4315 34.3934 0.0000 0.0000 -16.1041 2.6617 -10.6273 1.0771 0.0000 0.0000 -9.7472 -19.0527 -3.5716 61.0463 0.0000 0.0000 -18.8606 3.6680 -1.4169 -8.6325 0.0000 -0.0000 - 3.9207 -78.3465 23.5611 4.6637 -4.9890 -174.9231 -4.6174 -2.6620 0.2446 -3.2698 -1.6160 -0.1399 10.3603 3.5549 1.0335 -2.4559 0.5140 -0.3716 -14.8227 -6.4283 -5.5116 6.0537 -1.0208 -7.4576 -7.0699 -4.6398 9.7090 -14.1912 -24.2110 73.0526 0.0000 0.0000 25.1811 -5.6957 1.1002 0.2269 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7538 7.8303 -13.7503 16.4152 13.7949 -90.3141 -0.0000 0.0000 4.5000 2.4802 10.1381 -4.7875 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -12.5199 -11.9389 9.7952 33.2975 0.0000 0.0000 -16.2877 3.0947 -7.6286 1.1467 0.0000 0.0000 -14.2823 -18.4677 -1.4434 64.2623 0.0000 0.0000 -20.0772 3.7769 -0.9151 -8.6371 0.0000 -0.0000 - 4.0450 -78.0511 23.6109 4.4255 -4.7340 -176.5575 -4.5728 -3.2709 0.2281 -3.2261 -1.8321 -0.1279 10.9019 3.9436 2.0523 -2.2797 0.5366 -0.1319 -14.7070 -6.7837 -5.8881 6.7003 -2.1740 -8.1190 -7.4602 -4.1259 9.9630 -14.7971 -23.7400 73.0035 0.0000 0.0000 24.8980 -3.8584 3.1222 -0.0649 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.1262 7.4340 -13.5762 16.2564 14.2883 -89.5780 -0.0000 0.0000 4.2446 3.0580 7.9920 -5.1723 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -11.5858 -11.5285 8.7400 32.5870 0.0000 0.0000 -16.6591 3.4739 -4.8784 1.1928 0.0000 0.0000 -17.6725 -18.3752 1.8716 64.2578 0.0000 0.0000 -19.9110 3.1854 0.4668 -8.0567 0.0000 -0.0000 - 4.1403 -77.7386 23.6583 4.4851 -4.5133 -177.8802 -4.4518 -3.7360 0.1912 -3.1278 -1.9093 -0.1211 11.4613 4.1373 2.5673 -2.0473 0.5399 -0.0237 -14.4880 -7.3909 -5.9982 7.6135 -3.6936 -8.3448 -7.6107 -3.4973 10.3023 -14.5830 -24.1839 72.7724 0.0000 0.0000 25.0873 -2.9182 3.7762 -0.1292 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.6939 6.7005 -13.4087 15.8898 15.0217 -88.6479 -0.0000 0.0000 4.3792 3.2943 7.2076 -5.1398 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -10.2271 -11.2036 8.0908 31.7586 0.0000 0.0000 -17.0165 3.8916 -2.7858 1.3439 0.0000 0.0000 -19.9867 -18.2871 4.6277 61.7213 0.0000 0.0000 -18.7954 2.7858 2.6484 -7.2874 0.0000 -0.0000 - 4.2108 -77.4030 23.7155 5.0409 -4.2871 -178.6711 -3.9978 -3.9474 0.1165 -2.9193 -1.8174 -0.1015 11.9555 4.1912 2.6910 -1.7801 0.4117 0.0073 -14.1909 -8.5028 -5.9807 8.2737 -5.3396 -8.1886 -7.6390 -2.5242 10.5302 -13.7304 -24.8682 72.2823 0.0000 0.0000 25.3455 -2.6459 3.4423 0.2656 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.4242 5.7926 -13.1975 15.6122 15.6127 -87.9757 -0.0000 0.0000 4.5154 3.4721 7.2867 -4.8505 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.0523 -10.7636 7.3143 30.4255 0.0000 0.0000 -17.3122 4.3780 -0.8988 1.4978 0.0000 0.0000 -21.2768 -17.9305 6.1206 57.3958 0.0000 0.0000 -17.2084 3.2498 4.3061 -7.0699 0.0000 -0.0000 - 4.2705 -77.0458 23.7771 5.8483 -4.2160 -179.3292 -3.3580 -4.1038 0.0549 -2.6171 -1.5836 -0.0485 12.2331 4.1032 2.9259 -1.4716 0.0801 0.1659 -13.7454 -9.8038 -5.9645 8.4419 -6.6036 -7.8531 -7.5248 -1.4599 10.5405 -12.5021 -25.1033 71.7969 0.0000 0.0000 25.0580 -1.8567 2.6866 1.1040 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.9222 4.8032 -13.1015 15.4013 15.9093 -87.6932 -0.0000 0.0000 4.2930 3.5080 7.2400 -4.7523 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -5.3932 -10.4237 6.5597 28.7338 0.0000 0.0000 -17.5560 4.7598 0.8196 1.5199 0.0000 0.0000 -21.9133 -17.6759 6.7456 52.1949 0.0000 0.0000 -15.1875 4.4511 4.5190 -7.2917 0.0000 -0.0000 - 4.3149 -76.6755 23.8290 6.5296 -4.2759 179.8322 -2.7777 -4.3236 0.0206 -2.3367 -1.3504 0.0204 12.3116 3.9596 3.4800 -1.1614 -0.3190 0.4409 -13.2020 -10.8496 -5.9279 8.2257 -7.2978 -7.5240 -7.2402 -0.7040 10.4037 -11.0571 -24.8859 71.7234 0.0000 0.0000 23.9827 -0.8853 1.6060 2.1924 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -3.2100 3.8603 -13.2178 15.2141 16.7573 -87.4741 -0.0000 0.0000 3.8780 3.2334 6.9594 -4.9887 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.8315 -10.2271 6.2505 27.0802 0.0000 0.0000 -17.7871 4.9274 2.2093 1.4887 0.0000 0.0000 -22.3729 -17.5795 7.0927 46.9261 0.0000 0.0000 -13.1212 6.0050 3.5455 -7.5010 0.0000 -0.0000 - 4.3270 -76.3075 23.8648 6.7198 -4.2175 178.7986 -2.5414 -4.5541 -0.0125 -2.2134 -1.2642 0.0686 12.4130 3.9780 4.1178 -0.9023 -0.5589 0.6950 -12.7556 -11.4922 -5.8261 7.9683 -7.6893 -7.2710 -6.8354 -0.4263 10.4139 -9.5115 -24.3849 72.0518 0.0000 0.0000 22.5165 -1.0025 0.1644 3.2564 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.6486 3.1943 -13.4558 15.0566 18.4420 -86.9496 -0.0000 0.0000 3.6501 3.0864 7.1286 -5.3009 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.9612 -9.8626 6.2928 25.8232 0.0000 0.0000 -18.0999 4.9045 3.4451 1.5339 0.0000 0.0000 -23.1305 -17.2719 7.4093 41.8776 0.0000 0.0000 -11.3910 7.6765 1.8611 -8.0313 0.0000 -0.0000 - 4.3049 -75.9346 23.8880 6.6138 -3.9606 177.7207 -2.5169 -4.7403 -0.0687 -2.1841 -1.2739 0.0847 12.6000 4.1451 4.6523 -0.6950 -0.6071 0.8340 -12.5160 -11.7575 -5.7026 7.9949 -8.0672 -7.1160 -6.3801 -0.2564 10.8182 -7.9776 -23.7904 72.3660 0.0000 0.0000 21.2728 -2.1434 -1.1467 4.2261 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.2816 2.8677 -13.6986 14.8289 20.0999 -86.0790 -0.0000 0.0000 3.6582 3.7227 7.8062 -5.4915 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.3785 -9.2093 6.3647 25.0101 0.0000 0.0000 -18.5841 4.7441 4.6791 1.6474 0.0000 0.0000 -23.9352 -16.6850 7.7850 36.7668 0.0000 0.0000 -9.6084 9.5640 -0.3445 -9.2303 0.0000 -0.0000 - 4.2638 -75.5365 23.8960 6.5057 -3.7051 176.8275 -2.4548 -4.9031 -0.1234 -2.1526 -1.2363 0.0977 12.7475 4.2232 4.9807 -0.5217 -0.5948 0.9223 -12.4243 -11.7762 -5.7079 8.3072 -8.4025 -7.0958 -5.8894 0.1257 11.3705 -6.5330 -23.2977 72.5666 0.0000 0.0000 20.4748 -2.9823 -1.8575 5.1705 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.7876 2.6346 -14.0461 14.3680 21.2172 -85.0503 -0.0000 0.0000 3.7349 5.0489 8.3118 -5.7790 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.6346 -8.5243 6.3955 24.4320 0.0000 0.0000 -19.2595 4.5152 5.7135 1.7790 0.0000 0.0000 -24.3553 -16.0470 8.2545 31.3663 0.0000 0.0000 -7.4900 11.3783 -2.7959 -10.3100 0.0000 -0.0000 - 4.2115 -75.1100 23.8875 6.2801 -3.5795 176.3990 -2.4515 -4.9661 -0.1995 -2.1222 -1.1395 0.1005 12.7789 4.0469 5.0309 -0.3838 -0.6365 0.9734 -12.3727 -11.7064 -5.8719 8.5870 -8.5904 -7.2076 -5.2826 0.4853 11.6315 -5.2520 -22.8086 72.9898 0.0000 0.0000 19.9521 -2.9798 -2.2058 5.8301 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.1133 2.4087 -14.5865 13.7159 22.5098 -83.9783 -0.0000 0.0000 3.8643 6.4818 8.2822 -6.4653 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 2.8720 -7.9926 6.2343 23.7561 0.0000 0.0000 -19.9781 4.2589 6.4310 1.9247 0.0000 0.0000 -24.4774 -15.2441 8.5557 25.7345 0.0000 0.0000 -5.3673 12.0699 -5.2860 -10.4467 0.0000 -0.0000 - 4.1523 -74.6681 23.8720 5.6457 -3.6613 176.6257 -2.7038 -4.9340 -0.3559 -2.2560 -1.0783 0.0753 12.7729 3.6509 4.7126 -0.3006 -0.7075 0.9113 -12.3143 -11.7633 -6.0535 8.5717 -8.6481 -7.3996 -4.5017 0.2545 11.5744 -4.2052 -21.8421 73.7362 0.0000 0.0000 19.4555 -2.7996 -2.6932 5.9594 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.4092 2.3427 -15.1523 13.0245 24.2661 -82.9140 -0.0000 0.0000 4.0086 7.4504 7.9532 -7.4700 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 3.9436 -7.6950 5.4546 22.6064 0.0000 0.0000 -20.4562 3.9587 7.0909 2.0464 0.0000 0.0000 -24.7124 -14.1229 8.2843 19.8524 0.0000 0.0000 -2.6186 11.6900 -7.8339 -10.1591 0.0000 -0.0000 - 4.0954 -74.2006 23.8498 4.7227 -4.0840 177.4377 -3.1527 -4.9508 -0.5906 -2.4822 -0.9912 0.0364 12.6910 3.0403 4.0953 -0.2745 -0.8281 0.7843 -12.2921 -11.9790 -6.2572 8.3522 -8.6251 -7.6311 -3.7715 -0.4656 11.4465 -3.2856 -20.5540 74.3674 0.0000 0.0000 18.9478 -2.6680 -3.2707 5.8176 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.5962 2.4934 -15.5665 12.4018 25.4991 -82.0928 -0.0000 0.0000 3.9209 7.6494 7.6045 -8.3931 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 5.1926 -7.7468 3.9036 20.6412 0.0000 0.0000 -20.6487 3.6236 8.0252 2.0859 0.0000 0.0000 -24.9338 -12.9100 7.6640 13.7434 0.0000 0.0000 1.9760 12.3241 -9.5583 -10.1046 0.0000 -0.0000 - 4.0368 -73.6748 23.8081 3.9436 -4.6904 178.4920 -3.4899 -4.9756 -0.8550 -2.6187 -0.7870 0.0234 12.4576 2.3094 3.4926 -0.3358 -1.0853 0.7549 -12.4709 -12.1880 -6.6852 8.1935 -8.5216 -7.9571 -3.2973 -1.1851 11.1554 -2.2892 -19.5553 74.6842 0.0000 0.0000 18.5626 -1.9658 -3.4475 5.6786 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -5.6517 2.7958 -16.0909 11.7772 26.0384 -81.5288 -0.0000 0.0000 3.6198 7.6866 7.4123 -9.1619 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 7.2083 -7.9698 1.9072 17.8029 0.0000 0.0000 -20.7939 3.1728 9.3855 2.0872 0.0000 0.0000 -24.4757 -11.5969 7.2956 8.1803 0.0000 0.0000 6.3855 15.0095 -8.1920 -9.7336 0.0000 -0.0000 - 3.9511 -73.0944 23.7500 3.0905 -4.9018 179.2476 -3.8605 -4.5594 -1.1052 -2.7973 -0.6504 0.0301 12.3207 1.6826 3.2097 -0.5525 -1.4184 0.8706 -13.1256 -12.2845 -7.3411 8.1118 -8.3006 -8.3941 -2.8749 -2.1860 10.4547 -1.1680 -18.6657 75.1064 0.0000 0.0000 18.4937 -0.4593 -3.0345 5.3388 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.8615 3.6271 -16.9368 10.8959 26.7685 -80.7730 -0.0000 0.0000 3.5942 8.5775 7.6622 -10.2366 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 9.3624 -7.7405 -0.1282 14.8608 0.0000 0.0000 -21.0201 2.3558 11.0937 2.1640 0.0000 0.0000 -23.1063 -9.6227 7.3740 3.7088 0.0000 0.0000 6.4602 16.6131 -3.1284 -8.8846 0.0000 -0.0000 - 3.8328 -72.4808 23.6831 1.7174 -4.7185 179.2845 -4.5848 -3.6048 -1.2722 -3.2389 -0.8346 -0.0021 12.4962 1.0903 3.2009 -0.9105 -1.6739 1.0112 -14.2398 -12.2110 -7.8320 7.8099 -7.8816 -8.8551 -2.3698 -3.8911 9.6748 0.3004 -17.5928 75.8059 0.0000 0.0000 18.7985 1.1888 -2.3492 4.7642 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.2406 5.2926 -17.3416 9.8254 26.9813 -79.9832 -0.0000 0.0000 3.8799 9.7485 8.2223 -11.4987 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 10.5582 -6.9985 -1.7926 12.9059 0.0000 0.0000 -21.3080 1.1969 12.8851 2.2408 0.0000 0.0000 -21.2510 -7.1792 7.3817 -0.3250 0.0000 -0.0000 4.6232 12.8483 1.5779 -9.1942 0.0000 -0.0000 - 3.6977 -71.8399 23.5995 0.1474 -4.2697 178.8655 -5.4377 -2.1262 -1.2951 -3.8331 -1.0763 -0.0706 12.8649 0.0630 3.1203 -1.2980 -1.8384 1.0770 -15.4866 -11.8779 -7.9333 6.9390 -7.1645 -9.3265 -1.9438 -6.1095 9.5338 2.3532 -16.3565 76.2268 0.0000 0.0000 18.8939 1.7354 -1.9011 4.5518 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.2888 7.1300 -16.1381 9.0315 23.9635 -80.4054 -0.0000 0.0000 3.4333 9.0298 8.1949 -11.5877 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 10.8879 -5.8886 -3.0568 12.3519 0.0000 0.0000 -21.9267 0.0106 14.6109 2.0245 0.0000 0.0000 -19.8788 -4.9778 6.5956 -3.5544 0.0000 -0.0000 6.8836 5.6079 2.3880 -11.2516 0.0000 -0.0000 - 3.5239 -71.1624 23.5214 -0.7783 -2.6837 178.6864 -5.9296 0.1592 -1.2507 -4.3425 -0.8043 -0.0389 13.4785 -1.1354 2.9104 -1.6421 -1.9728 1.0987 -16.7116 -11.1992 -8.0323 5.4740 -6.1898 -10.0177 -1.5763 -8.5566 10.1678 4.7633 -14.5205 75.9604 0.0000 0.0000 17.6633 0.3756 -1.9165 4.6764 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -5.7774 8.2305 -13.4392 8.1226 16.9486 -82.3999 -0.0000 0.0000 1.5696 5.9973 6.6445 -10.2214 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 11.3803 -3.5242 -4.4968 12.8993 0.0000 0.0000 -23.0211 -1.2730 16.1367 1.2936 0.0000 0.0000 -19.5318 -2.4732 4.1009 -4.3073 0.0000 -0.0000 12.6171 0.2400 2.4384 -11.4536 0.0000 -0.0000 - 3.2573 -70.3938 23.5119 -0.3203 0.6229 178.5976 -5.7914 2.4569 -1.1332 -4.4902 -0.1479 0.1253 14.2202 -0.8456 3.2120 -1.8738 -1.8803 1.1136 -17.6911 -9.9962 -8.5555 4.0224 -5.2973 -11.2013 -0.8197 -10.6382 11.0332 7.4089 -11.7334 75.4562 0.0000 0.0000 14.5426 -2.0901 -2.2426 3.8529 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -5.0803 8.3710 -10.8139 6.1422 9.5795 -84.5696 -0.0000 -0.0000 -0.9834 3.0179 3.8672 -9.0951 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 13.1505 0.9011 -6.2615 14.0171 0.0000 0.0000 -23.5831 -3.1424 17.3256 0.0144 0.0000 0.0000 -18.6305 1.3133 0.7329 -2.8758 0.0000 -0.0000 16.4864 -0.5469 5.4141 -8.1621 0.0000 -0.0000 - 2.9074 -69.5382 23.6144 0.6869 4.3616 177.6716 -5.6298 3.2583 -0.8325 -4.3704 -0.1457 0.2202 14.5459 1.7380 4.5524 -1.8925 -1.1820 1.0830 -18.2401 -8.0462 -9.1428 3.3750 -4.8832 -12.8210 0.3261 -11.1996 11.8622 10.9421 -8.8682 75.3219 0.0000 0.0000 10.4236 -3.3660 -3.1935 1.4612 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.9137 8.0632 -9.2986 3.7847 5.9882 -85.7595 -0.0000 -0.0000 -3.4783 1.6492 1.3193 -8.7961 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 15.0965 6.2552 -7.4445 15.7319 0.0000 0.0000 -22.1738 -5.4211 18.3031 -2.0186 0.0000 -0.0000 -16.1572 5.6170 -0.8165 -1.7956 0.0000 -0.0000 15.4578 -0.1666 9.4720 -5.7611 0.0000 -0.0000 - 2.5600 -68.6986 23.7794 0.7493 6.6839 175.9836 -5.9026 2.3382 -0.4011 -4.2168 -0.9744 0.1433 13.8568 4.7378 6.5072 -1.7326 -0.0011 1.0091 -18.5768 -5.4580 -9.0896 3.5800 -5.0546 -14.2974 1.2962 -9.7317 12.9170 15.4569 -7.5458 75.5000 0.0000 0.0000 7.1788 -1.4467 -6.0314 -0.8927 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.4497 7.7966 -8.5698 1.7990 6.3819 -85.9651 -0.0000 -0.0000 -5.5195 1.2179 -0.1478 -8.7794 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 14.8692 10.4879 -7.3264 18.6948 0.0000 0.0000 -19.0578 -7.1473 19.6008 -5.0356 0.0000 -0.0000 -13.5923 8.6426 -0.4253 -2.3096 0.0000 -0.0000 12.4683 -1.9067 11.6716 -5.7347 0.0000 -0.0000 - 2.2579 -67.9487 23.9096 -0.0428 7.9654 174.5143 -6.0356 1.4582 -0.0481 -4.0296 -1.6268 0.0792 12.4538 6.3010 8.1600 -1.7127 0.9527 0.9613 -19.2190 -3.1151 -8.4827 3.8722 -5.5473 -15.0053 1.9944 -7.7565 14.0573 19.2890 -8.0542 75.5380 0.0000 0.0000 5.9229 2.7910 -10.8558 -0.9447 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.1122 7.4907 -8.1026 -0.5087 8.0597 -85.8266 -0.0000 -0.0000 -6.9189 1.1613 -0.9609 -8.4674 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 12.2838 13.6937 -6.9080 23.5848 0.0000 0.0000 -15.7731 -8.1987 21.6594 -8.6214 0.0000 -0.0000 -12.2595 10.5890 0.7193 -3.0124 0.0000 -0.0000 10.5373 -3.8053 11.7033 -6.4994 0.0000 -0.0000 - 1.9748 -67.2527 23.9596 -0.3369 9.7056 173.4195 -5.4400 1.9896 0.1721 -3.5837 -1.2964 0.2035 11.0649 6.6975 9.1055 -2.0522 1.1798 1.0860 -20.2278 -2.0079 -8.0464 3.6522 -6.0753 -14.8207 2.8372 -7.1427 14.5777 20.9516 -9.5030 75.1619 0.0000 0.0000 6.1326 5.0881 -15.2290 0.6431 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.4095 6.7818 -8.0120 -3.6859 8.8656 -85.5630 -0.0000 -0.0000 -7.9909 1.6026 -2.1819 -7.7567 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 8.4315 17.6654 -6.4997 31.1996 0.0000 0.0000 -11.9639 -10.0557 24.1089 -11.6555 0.0000 -0.0000 -11.2804 12.9915 1.5581 -2.9220 0.0000 -0.0000 9.2108 -4.3766 11.8817 -6.4190 0.0000 -0.0000 - 1.6940 -66.5683 23.9427 0.3899 12.1263 171.9171 -4.3075 3.5594 0.3390 -2.9703 -0.2449 0.4676 10.0756 6.8005 9.8332 -2.5997 0.8414 1.4796 -21.1322 -2.0184 -8.1452 3.1003 -6.6054 -14.0916 3.8751 -7.8235 14.2887 20.8143 -11.5307 74.6513 0.0000 0.0000 6.7640 2.6373 -16.3786 0.8369 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.4318 5.6886 -8.5692 -7.1721 8.6182 -84.8875 -0.0000 -0.0000 -9.1479 2.1654 -4.1504 -6.9944 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.8910 22.6696 -3.8691 41.8110 0.0000 0.0000 -4.9567 -13.6583 26.3152 -12.8410 0.0000 -0.0000 -9.4418 16.2107 1.8876 -2.8914 0.0000 -0.0000 7.4586 -5.0375 13.2636 -5.7913 0.0000 -0.0000 - 1.4389 -65.9151 23.8873 1.6228 14.6194 169.7638 -3.3118 5.5411 0.5876 -2.4294 0.8051 0.7348 9.5310 6.8388 10.6475 -3.0213 0.3025 2.0604 -21.6588 -2.2716 -8.6006 2.6721 -7.1747 -13.2558 4.7157 -8.4263 13.7507 20.1750 -14.0251 74.4745 0.0000 0.0000 7.3464 -1.2559 -13.2474 -0.2365 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.6439 4.4517 -9.6695 -10.0578 8.2662 -83.7955 -0.0000 -0.0000 -10.0694 2.1225 -6.0221 -6.5860 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.8354 26.9773 2.1223 53.4298 0.0000 0.0000 4.9087 -17.1543 27.9406 -10.7860 0.0000 -0.0000 -6.9613 19.6105 1.9562 -3.6834 0.0000 -0.0000 5.9446 -6.6383 14.8722 -5.5196 0.0000 -0.0000 - 1.2550 -65.3199 23.8407 2.8802 16.3710 168.0667 -2.6362 7.3691 0.7501 -2.0496 1.5299 0.9129 9.5544 6.6841 11.0284 -3.1691 -0.1449 2.5379 -22.0108 -2.4034 -9.1669 2.4722 -7.7154 -12.6404 5.1128 -8.3984 13.4536 19.8930 -16.1867 74.8094 0.0000 0.0000 7.8431 -2.1969 -8.0358 -0.7854 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.1573 3.4276 -10.9345 -12.1206 8.2221 -82.8252 -0.0000 -0.0000 -9.9797 1.6668 -6.9100 -6.5549 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -12.7279 28.6403 8.9973 63.3244 0.0000 0.0000 10.8155 -18.0518 27.2015 -7.5490 0.0000 -0.0000 -4.6435 22.2242 2.0116 -4.2762 0.0000 -0.0000 4.9497 -7.8041 15.4420 -5.5637 0.0000 -0.0000 - 1.1647 -64.7943 23.8476 3.5620 16.9090 167.9277 -2.2071 8.5375 0.7062 -1.8743 1.9654 0.9685 10.0323 6.2703 10.3981 -3.1431 -0.3852 2.6372 -22.2990 -2.6251 -9.7088 2.4140 -8.1988 -12.3566 5.2544 -8.1627 13.4213 20.1204 -17.2080 75.6303 0.0000 0.0000 8.0914 -1.1416 -4.0539 -0.8006 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -7.5852 2.8694 -11.9314 -13.4189 8.5501 -82.4580 -0.0000 -0.0000 -8.8887 1.7284 -7.1455 -6.3511 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -18.8220 27.4744 13.6411 70.3222 0.0000 0.0000 8.0220 -16.8854 22.3321 -5.8470 0.0000 -0.0000 -3.2404 23.3867 2.9632 -3.3266 0.0000 -0.0000 3.2873 -7.6985 13.9951 -5.6061 0.0000 -0.0000 - 1.1720 -64.3233 23.9181 3.3403 16.0710 169.2754 -2.0626 8.9318 0.5764 -1.9000 2.0807 0.9125 10.5740 5.4813 8.9591 -3.0328 -0.5285 2.4164 -22.3039 -3.0571 -10.1394 2.4969 -8.5653 -12.3408 5.1407 -7.8809 13.4113 20.8390 -17.6642 76.5985 0.0000 0.0000 7.9526 -0.4965 -3.3283 -0.4487 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -7.5459 2.6089 -12.5408 -13.6909 9.3999 -82.6497 -0.0000 -0.0000 -7.6223 2.1676 -7.5933 -5.6721 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -22.9959 24.1930 14.9457 73.7186 0.0000 0.0000 -0.1040 -13.8607 13.3164 -4.6662 0.0000 -0.0000 -2.6596 22.7895 4.9989 -1.2750 0.0000 -0.0000 0.6476 -7.1529 10.6105 -5.7156 0.0000 -0.0000 - 1.2528 -63.8820 24.0246 2.7036 14.3046 171.2593 -2.1129 8.9753 0.4984 -1.9798 2.0261 0.8128 10.9420 4.3040 7.4097 -2.8250 -0.8148 2.1739 -21.9294 -3.5616 -10.5132 2.6708 -8.6425 -12.3806 4.5137 -7.3322 13.2019 21.7294 -18.4611 77.1819 0.0000 0.0000 7.5293 -0.2406 -6.1494 0.1109 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.3064 2.1836 -13.3120 -12.5738 10.5617 -82.8958 -0.0000 -0.0000 -6.5402 2.0550 -8.1281 -5.0639 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -26.1037 19.9760 13.9257 73.3933 0.0000 0.0000 -6.5800 -8.8810 3.3642 -3.2225 0.0000 -0.0000 -2.0688 20.9506 6.7145 0.4191 0.0000 0.0000 -1.8038 -6.8355 6.9045 -5.8065 0.0000 -0.0000 - 1.3576 -63.4699 24.1163 2.2171 12.6963 173.3128 -2.1295 9.3369 0.4544 -1.9806 2.1730 0.7624 11.2338 3.0038 6.0967 -2.6042 -1.3653 2.0899 -21.3958 -4.0998 -10.9553 2.8141 -8.3675 -12.2196 3.4301 -6.6841 12.6477 22.0740 -19.2063 77.2357 0.0000 0.0000 7.0568 0.7296 -10.8470 0.4828 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.2904 1.4169 -14.8203 -10.3780 11.2440 -82.8775 -0.0000 -0.0000 -5.2456 1.6579 -7.8056 -5.0842 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -28.8697 16.4444 12.3034 70.2385 0.0000 0.0000 -9.4185 -4.2675 -3.7851 -2.1307 0.0000 -0.0000 -1.2628 19.1314 7.4850 1.5034 0.0000 0.0000 -3.4962 -6.5363 3.9581 -5.5213 0.0000 -0.0000 - 1.4535 -63.0776 24.1638 2.0780 11.8384 175.2033 -1.8954 10.1158 0.3897 -1.8819 2.6088 0.7765 11.5554 1.9583 4.8994 -2.5032 -1.9677 2.0535 -20.8461 -4.7888 -11.3615 2.9641 -7.9540 -11.6999 2.3925 -6.4526 11.8489 21.5169 -18.8649 77.1459 0.0000 0.0000 6.6844 2.1250 -14.4086 0.5716 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -7.1354 0.7719 -16.4269 -7.9530 10.8319 -82.9315 -0.0000 -0.0000 -3.8064 2.2142 -6.3000 -5.4926 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -31.2744 14.4366 10.9937 65.0283 0.0000 0.0000 -10.7283 -2.4461 -6.8369 -1.4293 0.0000 -0.0000 -0.2207 18.0430 7.5623 2.2889 0.0000 0.0000 -4.8531 -6.1578 1.8894 -4.8907 0.0000 -0.0000 - 1.5279 -62.6714 24.1762 2.0932 11.5648 176.7228 -1.5989 10.8619 0.3373 -1.7611 3.0733 0.7977 11.8561 1.3944 3.7262 -2.4630 -2.3000 1.8803 -20.2047 -5.5214 -11.4417 3.3032 -7.6050 -10.9648 1.6995 -6.7178 11.1241 20.4535 -17.6356 77.2396 0.0000 0.0000 6.5220 2.6003 -14.4481 0.3364 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.2523 0.6850 -16.9809 -5.6787 9.7827 -83.4839 -0.0000 -0.0000 -2.7262 3.5902 -4.6528 -5.9083 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -33.1256 13.7277 9.8465 57.8453 0.0000 0.0000 -10.3244 -3.3132 -6.1661 -0.9981 0.0000 -0.0000 1.1878 17.6002 7.1553 2.4986 0.0000 0.0000 -6.1413 -5.9634 0.5462 -4.4032 0.0000 -0.0000 - 1.5759 -62.2268 24.1663 2.0289 11.5914 177.7659 -1.6235 11.2596 0.3594 -1.7486 3.3600 0.7978 12.1875 1.3100 2.7505 -2.2899 -2.2775 1.5753 -19.4187 -5.9062 -11.1497 3.8498 -7.2379 -10.4302 1.1720 -7.0163 10.7246 19.2140 -16.9077 77.2330 0.0000 0.0000 6.7800 1.7062 -11.4024 -0.0291 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.2607 0.9501 -16.8347 -3.1014 9.9951 -84.0347 -0.0000 -0.0000 -1.7944 4.7271 -3.3292 -6.5431 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -34.2376 13.7665 8.1902 48.6008 0.0000 0.0000 -6.3649 -4.7877 -2.6124 -1.0656 0.0000 -0.0000 2.8515 17.5390 6.3457 2.0113 0.0000 0.0000 -7.2056 -5.9156 -0.1485 -4.1889 0.0000 -0.0000 - 1.6033 -61.7481 24.1321 1.7603 11.8462 178.3877 -2.1473 11.3678 0.5084 -1.9534 3.4898 0.8230 12.7659 1.5724 2.1444 -1.9525 -2.0311 1.2397 -18.6013 -5.6812 -10.7469 4.4831 -6.7072 -10.3905 0.6470 -7.2196 10.5351 17.5291 -17.3603 76.7223 0.0000 0.0000 7.6157 0.2335 -8.0827 -0.1078 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.3579 1.1398 -17.2605 0.1804 13.3870 -83.8809 -0.0000 -0.0000 -0.0484 6.4756 -1.2356 -7.8742 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -34.6168 14.0734 5.7027 37.5857 0.0000 0.0000 1.3073 -5.8840 2.9968 -1.3967 0.0000 -0.0000 4.3190 17.7359 5.3635 1.4594 0.0000 0.0000 -8.1874 -5.7955 -0.2684 -4.0342 0.0000 -0.0000 - 1.6315 -61.2312 24.0803 1.3795 12.0885 178.7259 -2.9760 11.1897 0.8193 -2.3385 3.5201 0.8550 13.6492 2.0326 1.7754 -1.6319 -1.6907 0.9154 -17.8530 -4.9933 -10.3974 5.2013 -6.0563 -10.6858 0.1974 -7.7315 10.3175 15.3049 -18.5071 75.7654 0.0000 0.0000 8.9191 -0.7368 -6.3623 0.0798 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.2085 1.4990 -18.1157 3.5064 18.8136 -83.4855 -0.0000 0.0000 2.9276 10.3839 1.8278 -9.7441 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -34.0444 14.1404 2.0472 25.2684 0.0000 0.0000 11.0496 -7.3370 9.7680 -1.5053 0.0000 -0.0000 5.4870 17.8932 4.5754 1.3972 0.0000 0.0000 -9.5655 -5.7429 -0.1758 -3.9705 0.0000 -0.0000 - 1.6853 -60.6381 24.0142 1.1359 12.1510 178.9762 -3.7513 10.9302 1.2074 -2.7041 3.3711 0.8603 14.4333 2.5086 1.4155 -1.4078 -1.3206 0.6234 -17.0945 -4.1166 -10.0354 6.0599 -5.3911 -10.8993 -0.1872 -8.4906 9.8999 13.1545 -20.0448 74.8091 0.0000 0.0000 10.3474 -0.7429 -6.1620 0.3082 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.2668 2.3349 -18.0561 6.5964 21.3762 -83.9404 -0.0000 0.0000 5.6409 13.9161 3.9493 -10.5721 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -32.2846 13.5116 -2.8604 12.9831 0.0000 0.0000 19.1924 -8.9851 16.7136 -1.5719 0.0000 -0.0000 6.7804 17.7835 4.1819 1.7789 0.0000 0.0000 -11.5111 -5.8339 -0.3986 -4.1065 0.0000 -0.0000 - 1.7705 -59.9663 23.9223 0.9687 12.2361 179.1465 -4.4264 10.9471 1.6355 -2.9607 3.0237 0.8274 14.8213 2.9182 1.1014 -1.1968 -0.9427 0.4159 -16.3928 -3.2691 -9.5597 6.9160 -4.6004 -10.7287 -0.6691 -9.0919 9.3167 11.4177 -21.9058 73.9546 0.0000 0.0000 11.7085 -0.1008 -6.8617 0.4310 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -5.1941 3.2296 -16.9043 9.7570 18.3343 -85.2567 -0.0000 0.0000 6.6934 13.4203 4.7407 -9.6563 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -30.7926 12.0599 -5.3728 4.3113 0.0000 0.0000 19.8511 -10.3876 20.0036 -2.0416 0.0000 -0.0000 8.1153 17.5720 4.2915 2.5644 0.0000 0.0000 -13.8033 -5.5185 -1.0839 -4.2141 0.0000 -0.0000 - 1.8690 -59.2431 23.8081 0.8838 12.2600 179.1108 -5.0159 10.8855 1.9577 -3.1760 2.7613 0.8089 15.1580 3.2139 0.9972 -1.0189 -0.6356 0.3033 -15.9938 -2.3942 -8.8406 7.5670 -3.5535 -10.1177 -1.1817 -9.4950 8.8147 9.6328 -23.4613 72.9983 0.0000 0.0000 13.0737 0.8131 -7.9408 0.3102 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.1035 3.9581 -15.9588 12.3401 13.7316 -86.0789 -0.0000 0.0000 7.0601 11.1759 5.5072 -8.7134 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -30.4473 10.3916 -4.8674 1.2331 0.0000 0.0000 12.2620 -10.0488 17.7365 -1.9077 0.0000 -0.0000 9.3647 17.2285 4.8314 3.8078 0.0000 0.0000 -16.2552 -4.4082 -1.9356 -4.1445 0.0000 -0.0000 - 1.9732 -58.4625 23.6774 1.0762 11.9916 179.1216 -5.2967 10.7091 2.0726 -3.2583 2.6288 0.7739 15.4274 3.0125 0.8287 -0.9402 -0.4149 0.1925 -15.8597 -1.3760 -7.7539 8.0283 -2.3591 -9.1380 -1.6487 -9.6300 8.5920 7.8095 -24.6246 71.9667 0.0000 0.0000 14.5452 1.9405 -8.7664 0.0440 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.6895 4.2571 -15.7775 14.1010 12.6843 -86.0089 -0.0000 0.0000 7.6391 11.3209 6.9497 -8.5218 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -30.4867 8.9055 -4.9341 2.3981 0.0000 0.0000 4.8513 -7.2348 13.8344 -1.1809 0.0000 -0.0000 10.9472 16.5383 5.2561 5.2971 0.0000 0.0000 -18.8360 -3.1602 -2.6526 -4.2184 0.0000 -0.0000 - 2.0859 -57.6327 23.5345 0.7492 11.1428 -179.9932 -5.6939 10.2681 2.0663 -3.4548 2.6203 0.7171 15.6428 2.1582 0.0283 -0.9592 -0.2768 -0.0546 -16.1413 -0.3119 -6.4778 8.2188 -1.2423 -7.9523 -2.4197 -9.5398 8.4545 6.5270 -25.5608 71.0303 0.0000 0.0000 15.8005 2.7160 -9.2625 -0.0167 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.5636 4.2767 -15.8296 15.0322 13.9223 -85.5440 -0.0000 0.0000 8.0241 13.0952 8.3891 -8.6861 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -30.3120 7.8719 -5.2944 4.6410 0.0000 0.0000 4.8314 -5.4020 10.8704 -1.5880 0.0000 -0.0000 12.0743 15.0542 5.4485 7.1621 0.0000 0.0000 -21.5941 -2.4961 -3.5988 -4.5178 0.0000 -0.0000 - 2.2216 -56.7783 23.3753 -0.8248 9.5296 -178.0639 -6.7521 9.0465 2.2259 -4.1990 2.7748 0.7028 16.2492 1.1966 -1.3773 -1.0832 -0.2396 -0.4235 -17.2741 0.5042 -5.4871 7.8445 -0.3521 -6.8117 -3.6590 -9.8481 7.9204 5.4443 -25.1077 70.3495 0.0000 0.0000 16.1734 2.1193 -10.5837 0.0841 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.3822 4.7328 -15.7410 15.0630 13.1144 -85.0343 -0.0000 0.0000 7.6775 13.0032 9.4152 -8.8394 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -29.9737 6.7345 -5.4140 5.3908 0.0000 0.0000 11.3198 -4.3447 10.0846 -2.0901 0.0000 -0.0000 11.7265 12.4493 6.0975 9.6285 0.0000 0.0000 -24.5381 -1.7065 -5.3317 -4.4865 0.0000 -0.0000 - 2.4216 -55.8988 23.2237 -3.0251 6.5712 -176.5227 -8.3590 6.5254 2.6704 -5.6524 2.8240 0.7433 17.9318 0.3765 -2.4553 -1.5629 -0.2888 -0.6881 -19.4200 0.8745 -4.8454 6.8490 0.2158 -5.8694 -5.0206 -11.2525 6.9951 3.3874 -21.8071 69.9121 0.0000 0.0000 15.7335 0.8559 -13.6394 -0.2373 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.1992 6.6930 -15.3034 13.7645 9.3240 -84.4062 -0.0000 0.0000 6.8093 10.3478 10.4591 -8.9741 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -29.3460 3.6254 -4.7095 3.9944 0.0000 0.0000 18.0714 0.0176 9.5793 -1.6211 0.0000 -0.0000 10.3428 8.2865 7.8970 12.4646 0.0000 0.0000 -27.5480 0.2728 -7.3188 -3.9535 0.0000 -0.0000 - 2.7147 -54.9215 23.1573 -3.2153 1.5182 -177.0816 -8.4668 3.1549 2.8767 -6.7422 1.9622 0.5414 19.6067 -1.6495 -2.2145 -2.5852 -0.2545 -0.5622 -21.5965 1.0196 -3.8756 5.5937 0.2451 -4.9842 -5.7069 -12.5991 6.5825 -0.0001 -17.1212 69.5600 0.0000 0.0000 15.7549 1.4149 -16.5411 -0.8859 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -2.9061 9.8670 -14.1334 11.1231 5.8900 -83.4985 -0.0000 0.0000 5.6321 6.8198 10.9693 -8.7098 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -25.9678 -2.8796 -3.0554 0.7385 0.0000 0.0000 21.0500 5.1274 7.2664 -0.6027 0.0000 -0.0000 11.2873 2.0238 10.6745 14.6452 0.0000 0.0000 -29.8010 2.6820 -8.1185 -4.1059 0.0000 -0.0000 - 3.0173 -53.9428 23.2155 -2.0793 -4.0060 -179.2587 -6.7154 1.3174 2.4286 -5.7745 0.4569 0.0393 17.9388 -6.1808 -0.8754 -3.4723 -0.1702 0.0401 -22.3469 1.0023 -2.2154 4.2383 -0.4869 -3.8153 -5.2703 -11.4228 7.0985 -3.6007 -15.4603 69.3221 0.0000 0.0000 17.3518 4.9324 -15.0563 -1.0729 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.3888 11.5994 -12.2372 8.0435 6.3319 -82.0104 -0.0000 0.0000 4.1935 3.5073 9.6349 -7.7780 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -21.2694 -10.1442 -2.3432 -2.1470 0.0000 -0.0000 20.4709 5.7430 6.2113 0.4001 0.0000 0.0000 13.6257 -4.1367 13.2210 17.2587 0.0000 0.0000 -30.0094 3.1232 -6.9558 -6.2278 0.0000 -0.0000 - 3.2116 -53.1851 23.3764 -2.8766 -6.9596 178.4015 -5.1991 1.0136 1.6135 -4.1267 -0.7330 -0.2798 13.8830 -8.5851 0.0048 -3.6203 -1.0050 0.7378 -22.1391 -0.8621 -1.2810 2.6328 -1.5750 -2.1962 -4.5502 -8.7112 7.5446 -6.7133 -18.6017 68.9335 0.0000 0.0000 20.6379 8.9807 -8.4373 -1.2357 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.1404 8.8397 -10.9556 5.2064 9.6038 -79.1410 -0.0000 0.0000 2.6949 0.9787 7.1609 -6.8673 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -19.8777 -14.0895 -4.1636 -2.2113 0.0000 -0.0000 18.0739 2.5315 9.2290 0.6616 0.0000 0.0000 11.4343 -7.4451 14.1869 23.8735 0.0000 0.0000 -27.3516 1.1995 -4.7147 -9.4331 0.0000 -0.0000 - 3.3150 -52.5733 23.5636 -4.3630 -7.6907 177.5908 -4.2749 0.6935 0.8149 -3.0743 -1.1107 -0.3424 10.6899 -7.9829 -0.3293 -3.3991 -2.1988 1.1118 -21.9502 -4.5197 -1.7314 0.9842 -2.7144 -0.7441 -4.3908 -6.1976 7.4793 -9.6988 -23.9805 67.8010 0.0000 0.0000 24.8432 11.4856 -1.1743 -1.5657 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.4195 3.3958 -11.2390 2.3149 10.6517 -74.8427 -0.0000 0.0000 1.2680 0.1231 5.6752 -6.6517 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -20.0352 -15.0084 -7.2572 -1.2138 0.0000 -0.0000 16.1849 -0.1715 13.5287 0.3867 0.0000 0.0000 5.3317 -9.3294 14.2594 34.5349 0.0000 0.0000 -22.2744 -0.1738 -2.7607 -11.1799 0.0000 -0.0000 - 3.4134 -51.9833 23.7026 -5.1397 -8.6080 178.3871 -3.4365 -0.3899 0.3481 -2.4869 -1.1384 -0.3550 8.9584 -7.2497 -1.2481 -3.3193 -2.8658 1.1496 -21.7267 -7.8396 -2.6872 -0.0124 -3.7309 -0.2952 -4.5662 -4.7012 7.1146 -12.9243 -27.1758 66.3168 0.0000 0.0000 28.5530 13.0983 3.3545 -1.8687 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -2.7703 0.0273 -11.9463 -0.9048 7.2710 -70.8487 -0.0000 -0.0000 -0.2353 1.2811 4.3508 -6.9294 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -19.4802 -15.7485 -9.4642 -0.8692 0.0000 -0.0000 14.5723 -1.2618 15.4688 0.0891 0.0000 0.0000 -1.5349 -12.3525 14.5835 46.4435 0.0000 0.0000 -17.5553 -0.2195 -1.1622 -10.5473 0.0000 -0.0000 - 3.5138 -51.3584 23.7967 -5.0091 -10.4300 179.2931 -2.5724 -2.1023 0.1892 -2.0562 -1.4285 -0.4112 8.1863 -7.4082 -1.5673 -3.4908 -3.1798 1.1914 -21.0115 -9.4014 -3.3641 0.1966 -4.3300 -0.8754 -4.8725 -4.0726 6.7116 -15.7818 -27.0080 65.1639 0.0000 0.0000 30.8466 14.5519 5.6275 -1.9044 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -2.8130 -0.1266 -11.7736 -4.8337 4.2914 -68.7432 -0.0000 -0.0000 -1.9609 2.2166 0.7413 -6.6290 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -17.5269 -17.4536 -10.7127 -1.4447 0.0000 -0.0000 12.9297 -2.9154 15.9249 -0.2085 0.0000 -0.0000 -7.1090 -16.6491 15.3289 56.5184 0.0000 0.0000 -15.7268 -0.6281 0.5053 -10.1685 0.0000 -0.0000 - 3.5725 -50.7153 23.8909 -4.5071 -11.9238 179.4013 -2.0930 -3.3820 0.1560 -1.7683 -1.8376 -0.4599 8.0549 -8.1740 -0.9440 -3.5489 -3.4802 1.4881 -19.7900 -9.4984 -3.6474 1.3830 -4.3358 -1.8456 -5.3905 -3.4638 6.3110 -17.5023 -25.8881 64.3922 0.0000 0.0000 31.7229 15.2591 7.4402 -1.2928 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -2.9418 0.4452 -10.7936 -9.0513 6.3566 -68.1996 -0.0000 -0.0000 -3.7917 -0.0244 -4.1006 -5.9597 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -14.8585 -18.9127 -12.1847 -2.1528 0.0000 -0.0000 11.6495 -5.9035 17.7308 -0.6543 0.0000 -0.0000 -11.2144 -20.4498 16.5145 63.0560 0.0000 0.0000 -16.4271 -1.9444 1.4885 -11.0054 0.0000 -0.0000 - 3.5876 -50.0882 23.9997 -3.8355 -12.4210 179.3436 -1.9843 -4.0665 0.1272 -1.6700 -1.8994 -0.4445 8.3372 -8.7323 -0.2178 -3.2333 -3.8563 1.9052 -18.4440 -9.3934 -3.8673 2.7850 -3.8276 -2.6274 -6.0575 -2.7778 5.7828 -17.9775 -25.7378 63.8946 0.0000 0.0000 31.5180 14.7807 9.4411 -0.4305 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -3.5495 -0.1426 -9.9931 -12.0228 10.5584 -67.7676 -0.0000 -0.0000 -5.2764 -4.2297 -7.3844 -6.3175 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -12.3133 -19.3355 -14.7162 -2.1639 0.0000 -0.0000 10.6256 -8.1474 21.1224 -1.0435 0.0000 -0.0000 -14.5930 -22.7713 17.2650 66.1449 0.0000 0.0000 -17.9463 -2.9657 1.2349 -11.2971 0.0000 -0.0000 - 3.5771 -49.4885 24.1093 -2.9085 -12.3029 179.9947 -1.9061 -4.5853 0.0413 -1.6291 -1.5982 -0.3969 8.6960 -8.8595 -0.1118 -2.7755 -4.1170 2.1414 -17.2137 -9.6178 -4.0814 3.8201 -3.2313 -3.0767 -6.5133 -2.4962 5.2684 -17.6008 -25.9135 63.7607 0.0000 0.0000 30.5779 13.7404 10.6715 0.0493 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.3207 -1.0880 -9.7437 -13.2513 10.9650 -67.4640 -0.0000 -0.0000 -6.0028 -5.9416 -7.8121 -6.9532 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.1098 -19.0750 -17.4404 -1.4897 0.0000 -0.0000 9.0671 -8.3605 23.7994 -1.2300 0.0000 -0.0000 -17.9376 -23.7517 16.5782 66.6341 0.0000 0.0000 -19.2272 -2.4216 0.9734 -10.2229 0.0000 -0.0000 - 3.5431 -48.9185 24.2028 -1.9263 -12.0071 -178.9420 -1.7013 -5.0551 -0.0909 -1.5256 -1.3279 -0.3714 8.8937 -8.8472 -0.3545 -2.4527 -4.1296 2.1421 -16.1319 -9.6593 -4.0835 4.2908 -3.0682 -3.3459 -6.6119 -2.3146 4.9665 -16.5330 -25.4009 63.9559 0.0000 0.0000 29.1794 12.7388 10.3726 0.1879 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.8509 -1.5187 -9.4171 -13.5029 7.7579 -67.8484 -0.0000 -0.0000 -6.3597 -3.8960 -6.8065 -7.2543 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.1302 -18.5973 -18.8586 -0.6072 0.0000 -0.0000 7.0153 -7.8305 24.6226 -1.2853 0.0000 -0.0000 -21.2577 -23.8981 15.1798 65.0382 0.0000 0.0000 -19.9808 -1.1715 2.1703 -8.9589 0.0000 -0.0000 - 3.4893 -48.3876 24.2732 -1.2610 -11.6544 -178.3475 -1.4999 -5.3926 -0.1737 -1.4121 -1.3214 -0.3774 8.9978 -8.7853 -0.2889 -2.2557 -3.9844 2.1150 -15.3348 -9.2579 -3.9509 4.1634 -3.5084 -3.6823 -6.4952 -1.7920 4.9038 -14.8743 -24.0394 64.2716 0.0000 0.0000 27.3140 11.4677 8.9331 0.4859 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -5.2968 -1.8816 -8.6177 -13.7529 5.5866 -68.8516 -0.0000 -0.0000 -6.6718 -1.5457 -6.1495 -7.5098 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -6.3577 -18.0671 -18.8193 0.0630 0.0000 0.0000 5.2897 -7.8666 24.6359 -1.2806 0.0000 -0.0000 -24.2843 -23.7228 14.5564 61.5062 0.0000 0.0000 -19.9968 -1.2825 4.2490 -8.0504 0.0000 -0.0000 - 3.4319 -47.8926 24.3225 -0.9060 -11.2703 -178.3072 -1.3314 -5.5973 -0.1936 -1.3179 -1.4127 -0.3742 9.1066 -8.5744 0.2027 -2.1061 -3.8837 2.1934 -14.9395 -8.8919 -4.0540 3.5675 -4.3968 -4.3442 -6.2725 -1.1821 5.0171 -12.9046 -22.2377 64.5334 0.0000 0.0000 24.8059 9.4629 6.9542 0.8813 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -5.8701 -2.4920 -7.7955 -14.2727 6.1461 -70.1012 -0.0000 -0.0000 -6.8904 -1.9783 -5.6427 -7.8584 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -4.6859 -17.5966 -18.2098 0.2919 0.0000 0.0000 3.9354 -8.0254 24.6546 -1.1635 0.0000 -0.0000 -26.8636 -23.3217 14.6137 56.1969 0.0000 0.0000 -19.2464 -2.4232 5.1033 -7.3097 0.0000 -0.0000 - 3.3727 -47.4181 24.3567 -0.7009 -10.8736 -178.3562 -1.1452 -5.6691 -0.2095 -1.1873 -1.4311 -0.3398 9.1615 -8.2815 0.8014 -2.0374 -3.9128 2.3402 -14.8993 -8.9678 -4.6106 2.8242 -5.4822 -5.3866 -6.1360 -0.6096 5.2259 -10.5920 -20.9961 64.6298 0.0000 0.0000 21.7104 6.8357 4.4568 0.8753 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.4629 -3.0137 -7.4491 -14.8966 7.4641 -71.1207 -0.0000 -0.0000 -7.2942 -3.3567 -5.0454 -8.1614 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -3.1080 -17.2178 -17.5758 0.2391 0.0000 0.0000 2.5091 -7.5507 24.4977 -0.8937 0.0000 -0.0000 -28.9365 -22.2531 13.8975 49.2834 0.0000 0.0000 -18.2239 -2.0471 3.6498 -8.0937 0.0000 -0.0000 - 3.2922 -46.9524 24.3804 -0.6974 -10.5166 -178.5179 -0.9415 -5.6121 -0.2304 -1.0717 -1.4165 -0.3085 9.1449 -8.1681 1.4208 -2.0639 -4.0371 2.5474 -15.0961 -9.2345 -5.4008 2.2027 -6.4967 -6.5604 -6.1324 0.1967 5.4526 -7.7026 -20.6153 64.8746 0.0000 0.0000 17.8753 3.5854 1.2926 0.6225 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.8040 -3.2106 -7.4401 -15.5235 7.7108 -71.7667 -0.0000 -0.0000 -8.1138 -3.1721 -4.5593 -8.3410 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.8322 -16.8138 -16.6817 0.3463 0.0000 0.0000 0.9980 -6.8647 24.1032 -0.5535 0.0000 -0.0000 -30.3849 -20.3530 11.7069 40.9295 0.0000 0.0000 -16.8680 0.2140 0.8641 -11.1028 0.0000 -0.0000 - 3.1824 -46.4857 24.3898 -0.9755 -10.2928 -179.0955 -0.8181 -5.5446 -0.2704 -0.9964 -1.3967 -0.2796 9.1300 -8.3542 2.1738 -2.1059 -4.2353 2.8616 -15.4144 -9.3137 -6.0604 1.8203 -7.2162 -7.5115 -6.3647 1.3143 5.7395 -4.1375 -20.8397 65.4776 0.0000 0.0000 13.2674 0.2601 -2.7870 0.4589 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.0917 -3.4091 -7.5168 -15.8853 7.0520 -72.0865 -0.0000 -0.0000 -8.9377 -2.0949 -4.1534 -8.5329 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.9388 -16.3466 -15.3862 0.8239 0.0000 0.0000 -0.4636 -6.6149 23.8522 -0.1929 0.0000 -0.0000 -31.2315 -18.1398 8.7352 31.7743 0.0000 0.0000 -15.0568 1.7207 -1.7947 -12.7517 0.0000 -0.0000 - 3.0547 -45.9877 24.3829 -1.2080 -10.1246 -179.8926 -0.6620 -5.5329 -0.3344 -0.9149 -1.2445 -0.2356 9.1448 -8.6472 2.9437 -2.1259 -4.4917 3.2033 -15.6672 -9.2421 -6.4646 1.7487 -7.6184 -8.0952 -6.5658 2.0217 6.1528 -0.4559 -21.1234 66.1647 0.0000 0.0000 8.6422 -1.3516 -7.6297 0.0505 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.5837 -3.8232 -7.7491 -15.9362 6.1982 -72.2351 -0.0000 -0.0000 -9.1224 -1.6888 -3.4924 -8.6744 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.1152 -15.8433 -14.1978 1.3240 0.0000 0.0000 -2.0410 -6.4975 23.9787 0.1492 0.0000 0.0000 -31.4361 -16.0616 6.1480 22.8280 0.0000 0.0000 -13.1788 2.1601 -3.7467 -11.2065 0.0000 -0.0000 - 2.9242 -45.4327 24.3610 -1.2906 -9.9820 179.3900 -0.4950 -5.5897 -0.4150 -0.8112 -0.9600 -0.1877 9.1060 -8.8674 3.4910 -2.1278 -4.6985 3.4385 -15.7037 -9.0919 -6.6189 1.9937 -7.8797 -8.3985 -6.3310 1.9667 6.6634 2.8967 -21.3288 66.5038 0.0000 0.0000 5.3066 0.0737 -11.8207 -0.6527 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.2083 -4.3182 -8.0812 -16.0063 5.7825 -72.4008 -0.0000 -0.0000 -8.6750 -1.6217 -2.5467 -8.5167 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 1.5616 -15.3973 -13.5129 1.5588 0.0000 0.0000 -3.7674 -6.0251 24.3478 0.3242 0.0000 0.0000 -31.3236 -14.2407 4.6420 15.0340 0.0000 0.0000 -10.7002 3.5977 -4.7588 -9.4824 0.0000 -0.0000 - 2.7953 -44.8298 24.3238 -1.5733 -9.9376 178.5120 -0.4706 -5.6685 -0.5154 -0.7809 -0.7877 -0.1731 8.9979 -9.0157 3.8759 -2.1093 -4.7118 3.5150 -15.5827 -8.6994 -6.4219 2.3707 -8.0995 -8.5017 -5.5803 1.4536 7.3793 5.8881 -21.5263 66.4466 0.0000 0.0000 3.6682 3.1720 -14.3641 -0.9852 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.7738 -4.6662 -8.0977 -16.2770 5.8231 -72.6974 -0.0000 -0.0000 -8.0899 -1.2361 -1.7602 -8.1871 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.8872 -15.0219 -12.9534 1.8358 0.0000 0.0000 -5.4283 -5.4727 24.8240 0.2473 0.0000 0.0000 -31.4917 -12.7269 3.9988 9.0819 0.0000 0.0000 -6.7919 5.7118 -4.2651 -9.4201 0.0000 -0.0000 - 2.6713 -44.1893 24.2661 -2.1964 -9.8852 177.2465 -0.6038 -5.5851 -0.6557 -0.8533 -0.7859 -0.1794 8.8963 -9.1400 4.2104 -2.1044 -4.5456 3.4894 -15.4835 -8.0005 -5.8950 2.6639 -8.2127 -8.4366 -4.5813 0.5226 8.3972 8.3160 -21.9045 66.1062 0.0000 0.0000 2.9395 5.2412 -15.8068 -0.7529 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.1729 -4.6887 -7.6699 -16.5677 5.4910 -73.1511 -0.0000 -0.0000 -7.5371 -1.3431 -1.3441 -8.0700 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 3.8217 -14.5390 -12.0052 2.4661 0.0000 0.0000 -7.1936 -5.1210 25.2955 0.1327 0.0000 0.0000 -32.1210 -11.5699 3.7764 5.4071 0.0000 0.0000 -2.1517 6.9519 -2.3815 -9.6013 0.0000 -0.0000 - 2.5645 -43.4726 24.1829 -2.7417 -9.6132 175.8697 -0.8032 -5.2657 -0.7820 -0.9511 -0.7130 -0.1602 8.8651 -9.0460 4.4017 -2.1541 -4.3463 3.3912 -15.4760 -7.2573 -5.3955 2.8570 -8.1851 -8.2949 -3.5847 -0.8233 9.3297 10.2126 -22.7148 65.7594 0.0000 0.0000 2.4801 5.0888 -16.6301 -0.4463 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -9.3359 -4.4740 -7.2848 -16.7635 4.7290 -73.6706 -0.0000 -0.0000 -6.9053 -2.3936 -1.2640 -8.0423 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 5.0007 -13.8181 -10.8186 3.1749 0.0000 0.0000 -9.4878 -4.5891 25.6599 0.2715 0.0000 0.0000 -32.5805 -10.7413 4.0743 4.1973 0.0000 0.0000 1.3312 7.4850 -0.7795 -9.3473 0.0000 -0.0000 - 2.4870 -42.6301 24.0685 -3.0566 -9.3031 174.3093 -1.1862 -4.9868 -0.8320 -1.0821 -0.5740 -0.1208 8.8796 -8.5243 4.5449 -2.1634 -4.1232 3.2383 -15.5028 -6.6669 -5.0568 2.9455 -8.0803 -8.1802 -2.7044 -1.7512 9.7103 12.4447 -23.8737 66.1394 0.0000 0.0000 2.4882 3.6148 -16.4242 -0.4882 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.3227 -4.3343 -7.1270 -16.6528 4.5616 -74.1478 -0.0000 -0.0000 -6.4081 -2.8629 -1.7515 -7.7662 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 6.7614 -13.0164 -9.8257 3.8480 0.0000 0.0000 -12.1065 -3.9141 26.2872 0.6859 0.0000 0.0000 -31.8406 -10.4776 4.6821 4.3731 0.0000 0.0000 3.1997 7.2815 -0.7788 -9.8091 0.0000 -0.0000 - 2.4234 -41.6854 23.9153 -3.8045 -9.0710 171.9916 -2.0237 -4.7381 -0.9663 -1.4814 -0.6129 -0.1116 8.8745 -7.9313 4.9082 -2.0581 -3.7146 3.0612 -15.5765 -6.1122 -4.4520 2.7363 -7.9476 -7.9693 -2.0740 -1.8280 9.6116 15.6464 -24.3347 68.0884 0.0000 0.0000 2.8971 2.3762 -15.6296 -0.6956 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.3117 -3.9035 -6.4656 -15.5019 3.7665 -74.8222 -0.0000 -0.0000 -6.3389 -1.2297 -3.0731 -7.5934 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.9568 -11.9986 -8.9046 5.3562 0.0000 0.0000 -14.7339 -4.0598 27.5696 1.2042 0.0000 0.0000 -29.7571 -10.7436 4.9393 3.7384 0.0000 0.0000 5.7744 5.4642 -1.5350 -11.0246 0.0000 -0.0000 - 2.3106 -40.6777 23.7495 -4.8109 -7.4350 169.4394 -3.2034 -3.0143 -1.3052 -2.2781 -0.5495 -0.0892 8.9535 -7.8284 5.0027 -1.9855 -3.1387 2.7719 -15.7639 -5.6150 -3.4159 2.2233 -7.7704 -7.4177 -1.8589 -2.4677 9.1604 18.9664 -22.7784 71.5020 0.0000 0.0000 2.8738 2.1110 -15.6159 -0.8105 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.1491 -1.8723 -4.7639 -12.9213 -1.3257 -76.1687 -0.0000 -0.0000 -6.4492 2.0897 -5.5346 -7.8907 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 7.8468 -9.1061 -8.0236 8.5412 0.0000 0.0000 -17.9811 -5.3168 28.9911 1.5952 0.0000 0.0000 -26.7594 -9.4608 4.1900 1.2851 0.0000 0.0000 10.5558 2.3439 -0.6050 -10.9339 0.0000 -0.0000 - 2.0879 -39.5491 23.6503 -3.9449 -2.5271 168.4015 -4.0091 1.4176 -1.4567 -3.1182 0.4882 0.1001 9.2908 -7.4800 3.9088 -2.0524 -2.6051 2.2028 -15.7429 -5.6485 -2.8106 1.9379 -7.4034 -6.6292 -2.0950 -4.6308 7.9947 21.5050 -20.3102 75.3015 0.0000 0.0000 2.3423 2.5647 -16.0131 -0.8956 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.2585 1.6666 -3.1519 -9.7000 -9.7787 -77.6539 -0.0000 -0.0000 -6.3112 6.0358 -9.6415 -7.9280 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 8.2335 -2.2691 -8.2959 13.1146 0.0000 0.0000 -21.9193 -6.7379 29.9141 1.2124 0.0000 0.0000 -22.2718 -3.8026 2.7053 -2.0326 0.0000 -0.0000 15.2573 -0.5749 2.5537 -8.4696 0.0000 -0.0000 - 1.7801 -38.3156 23.6920 -0.9275 4.0493 168.7854 -4.2447 5.3598 -1.0084 -3.4006 2.2379 0.4713 9.5470 -4.1255 2.2593 -2.0193 -2.1733 1.4220 -14.9838 -6.4233 -3.5185 2.3542 -6.5731 -6.0990 -2.7192 -6.0290 5.9939 24.0050 -20.4154 78.9847 0.0000 0.0000 2.2594 2.8590 -14.8923 -0.9740 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.2732 3.7151 -3.5048 -5.8717 -13.9343 -78.2763 -0.0000 -0.0000 -5.4406 9.6317 -13.9684 -7.2413 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 9.7435 6.9394 -9.9133 19.4097 0.0000 0.0000 -23.6834 -7.7832 30.6553 -0.6698 0.0000 -0.0000 -17.0951 4.6174 1.2630 -3.3823 0.0000 -0.0000 15.6221 -2.3452 5.6440 -5.6402 0.0000 -0.0000 - 1.5039 -37.2090 23.8703 1.2570 7.7579 168.7112 -4.5761 5.4664 -0.4587 -3.3048 2.5685 0.6355 9.3640 1.0508 2.0331 -1.6109 -1.2108 0.7592 -13.9463 -6.3442 -4.5387 3.0869 -5.4037 -6.0037 -3.5494 -3.4733 4.3498 26.9669 -24.0010 82.6182 0.0000 0.0000 3.0602 1.8876 -13.2365 -0.7404 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.0985 3.1267 -5.5329 -0.7767 -10.1721 -78.2750 -0.0000 -0.0000 -3.2097 11.2387 -14.8944 -7.6885 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 7.9438 13.1735 -8.2096 29.4967 0.0000 0.0000 -19.3460 -8.9699 30.5732 -3.7200 0.0000 -0.0000 -13.6891 9.8720 1.1332 -1.8342 0.0000 -0.0000 11.6587 -2.9407 6.5724 -4.8138 0.0000 -0.0000 - 1.3019 -36.3221 24.0559 2.5104 8.0935 166.8422 -4.3254 3.7324 -0.1598 -2.9789 1.6249 0.5211 8.6521 3.9811 3.3972 -1.1285 0.2171 0.4332 -13.1774 -4.1593 -4.1390 3.3500 -4.1235 -5.6487 -4.6363 2.2947 4.4804 28.9493 -28.0998 85.6576 0.0000 0.0000 4.3055 -0.4215 -14.2618 -0.2867 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.7830 1.7039 -7.5607 5.0197 -3.8624 -78.2698 -0.0000 0.0000 0.6242 10.7047 -9.3240 -9.8619 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.1668 15.2286 -1.2981 43.1947 0.0000 0.0000 -8.4398 -12.5363 29.7681 -5.3363 0.0000 -0.0000 -10.9452 11.1233 3.7285 -0.5288 0.0000 -0.0000 7.8897 -3.7335 5.3446 -5.3824 0.0000 -0.0000 - 1.1212 -35.5910 24.1231 3.6855 8.6270 164.2401 -3.5887 3.8300 0.0569 -2.5632 0.9696 0.4154 7.8854 4.6512 4.3960 -0.9619 1.1052 0.2287 -12.6516 -1.4889 -2.4690 3.0233 -2.7831 -4.2572 -6.2656 6.6082 5.5588 28.0422 -29.2413 87.1052 0.0000 0.0000 5.6078 -2.2039 -17.0877 -0.0998 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -2.2737 0.3293 -8.8231 10.6428 -0.9197 -78.3664 -0.0000 0.0000 4.7939 11.9520 1.4311 -10.8335 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.5666 16.1671 6.3236 56.4424 0.0000 0.0000 2.1522 -16.9954 28.4187 -4.7671 0.0000 -0.0000 -8.2839 12.5908 7.1284 -0.7663 0.0000 -0.0000 6.0711 -5.3269 4.0275 -5.2656 0.0000 -0.0000 - 0.9819 -34.8873 24.1125 5.3140 10.1318 163.3673 -2.9684 5.8668 0.1615 -2.2650 1.3499 0.4091 7.9859 4.5221 3.3976 -0.9388 1.2696 -0.1756 -12.2798 -0.4623 -0.7811 2.8065 -1.7016 -2.2385 -7.6976 6.6712 5.8401 24.2962 -27.4449 86.8649 0.0000 0.0000 7.5773 -1.5374 -16.4021 -0.0178 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.0621 -0.7569 -9.3475 15.1314 -0.9695 -78.3235 -0.0000 0.0000 7.2929 15.2308 10.8480 -10.7962 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -14.4077 17.4422 10.8685 66.2275 0.0000 0.0000 4.0711 -18.2000 23.6335 -4.9555 0.0000 -0.0000 -4.9346 15.4569 8.0314 -2.0098 0.0000 -0.0000 4.8428 -6.6610 3.5125 -4.6010 0.0000 -0.0000 - 0.9188 -34.2128 24.1107 6.2549 11.1905 164.9176 -3.0671 7.6318 0.2409 -2.2740 2.1911 0.4398 9.0425 4.4425 1.0373 -0.7594 1.2434 -0.8553 -11.9580 -1.1837 0.1710 3.2992 -1.3913 -0.8322 -8.3488 4.7155 5.2769 19.7427 -27.4227 85.1816 0.0000 0.0000 11.2396 0.9203 -9.7969 -0.1580 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -1.5143 -0.8526 -9.1689 16.8831 -0.1508 -78.3113 -0.0000 0.0000 7.8761 16.6635 13.7586 -10.1476 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -19.1813 18.1381 11.4190 71.6120 0.0000 0.0000 -1.5974 -14.1144 14.6327 -5.3504 0.0000 -0.0000 -1.8428 17.5390 6.7953 -2.7175 0.0000 -0.0000 3.1155 -6.5702 2.5624 -5.0830 0.0000 -0.0000 - 0.9227 -33.6008 24.1566 6.3075 10.9012 167.5283 -3.3597 8.1672 0.2595 -2.3860 2.5229 0.4164 10.1437 4.5757 -0.7821 -0.4181 1.4204 -1.4956 -11.5553 -2.3725 0.3038 4.1618 -1.9692 -0.6975 -8.8044 4.1919 4.8820 15.6802 -32.5324 81.4613 0.0000 0.0000 16.4284 1.8105 -2.0982 -0.3350 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.7408 0.1194 -8.7354 16.2418 3.0555 -78.6396 -0.0000 0.0000 7.2144 14.8807 10.3375 -9.2627 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -22.6175 17.3807 9.7215 72.1616 0.0000 0.0000 -6.9550 -7.0109 5.4993 -4.0668 0.0000 -0.0000 0.2767 17.6560 6.4067 -2.1779 0.0000 -0.0000 1.1805 -5.5898 -0.1107 -6.5321 0.0000 -0.0000 - 0.9676 -33.0556 24.2389 5.9881 9.7205 169.8972 -3.3976 8.0804 0.2367 -2.3837 2.3091 0.3427 10.6664 4.6450 -1.3783 -0.0851 1.5919 -1.7666 -11.0485 -3.1009 -0.1347 4.6172 -2.8812 -1.4307 -9.1529 4.9464 4.6778 10.9297 -37.5511 76.1346 0.0000 0.0000 20.7923 -0.1673 2.7416 0.2967 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.2347 1.3328 -8.5979 15.2219 6.9051 -79.3902 -0.0000 0.0000 5.9995 11.4287 5.4147 -9.6410 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -25.3423 15.6037 8.0137 68.5021 0.0000 0.0000 -9.0917 -2.0169 -0.5285 -2.2237 0.0000 -0.0000 1.4099 16.5039 7.7847 -0.7599 0.0000 -0.0000 -0.7342 -5.2586 -3.8991 -7.0588 0.0000 -0.0000 - 1.0331 -32.5584 24.3262 5.4858 8.4645 171.9107 -3.3288 8.0345 0.2228 -2.3272 2.1656 0.3134 10.8807 4.3536 -1.4489 0.1652 1.4934 -1.7018 -10.6111 -3.2922 -0.8798 4.4863 -3.2889 -2.3573 -8.9264 5.0042 4.0912 5.1828 -36.7301 71.6335 0.0000 0.0000 22.4669 -1.5688 5.7593 0.5130 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0023 1.7390 -8.7837 14.6795 9.8140 -80.4749 -0.0000 0.0000 4.8873 9.0258 2.6310 -10.1870 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -27.3722 13.9338 6.5003 61.3751 0.0000 0.0000 -9.7165 -0.1733 -3.0099 -1.1861 0.0000 -0.0000 1.9632 15.0544 8.8361 0.8238 0.0000 0.0000 -2.8558 -5.8441 -6.8397 -6.1470 0.0000 -0.0000 - 1.0892 -32.0805 24.3842 4.9547 7.6112 173.7171 -3.2482 8.1544 0.1682 -2.2381 2.2369 0.3202 11.0685 3.8487 -1.5792 0.3401 1.3268 -1.5700 -10.4423 -2.9146 -1.6846 4.1352 -2.8492 -3.2420 -8.4199 4.4913 3.3247 0.0162 -32.1313 69.2650 0.0000 0.0000 22.3939 -0.4864 8.1974 -0.1706 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0489 1.0682 -9.0744 14.4448 11.6047 -81.3948 -0.0000 0.0000 4.1718 9.0208 1.6442 -9.8287 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -28.5987 13.2077 4.5616 51.6205 0.0000 0.0000 -8.6611 -0.5889 -2.3727 -0.5418 0.0000 -0.0000 2.5188 13.9718 8.3810 1.9887 0.0000 0.0000 -4.6832 -5.9656 -8.2482 -5.3681 0.0000 -0.0000 - 1.1056 -31.6010 24.3996 4.6830 7.2701 174.9610 -2.9274 8.1993 0.0970 -2.0678 2.2471 0.3015 11.1408 3.5556 -1.6731 0.3671 1.4344 -1.5606 -10.4583 -1.7985 -2.2835 3.8011 -1.8304 -4.1104 -8.1153 4.3104 2.8635 -4.1247 -28.6950 67.8629 0.0000 0.0000 22.3660 0.3342 9.9841 -0.5711 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0710 0.1840 -9.0836 14.4039 11.9911 -81.9522 -0.0000 0.0000 4.1899 10.4334 1.7169 -9.1514 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -29.1313 13.3602 1.9200 40.4009 0.0000 0.0000 -4.2720 -2.4566 0.9933 0.2280 0.0000 0.0000 3.5345 13.5552 7.2672 2.4694 0.0000 0.0000 -5.7518 -5.1489 -8.6592 -5.6057 0.0000 -0.0000 - 1.0808 -31.1100 24.3810 4.5844 7.3623 175.3203 -2.4633 8.0276 0.0882 -1.8643 2.0809 0.2619 10.9773 3.6908 -1.4483 0.2299 1.8348 -1.6248 -10.4223 -0.0457 -2.5259 3.4823 -0.6989 -4.8257 -8.1297 4.3236 2.7506 -7.4965 -28.0901 66.4382 0.0000 0.0000 23.2546 -0.7677 10.6879 -0.2105 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.3206 -0.1553 -8.6209 14.7303 11.1857 -82.4486 -0.0000 0.0000 5.1690 11.6534 2.2980 -8.5782 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -29.2379 13.7129 -1.9269 28.4668 0.0000 0.0000 3.9555 -3.6080 6.7631 0.2448 0.0000 0.0000 4.8509 13.7824 6.3509 2.3995 0.0000 0.0000 -6.6937 -4.7273 -8.4543 -5.7244 0.0000 -0.0000 - 1.0460 -30.5802 24.3333 4.6921 7.8786 175.1192 -2.0166 8.0648 0.1086 -1.6010 1.7746 0.2229 10.5940 4.0964 -0.9386 0.0765 2.3165 -1.6720 -10.1743 1.8621 -2.4168 3.2455 0.1805 -5.0966 -8.3350 4.4227 2.8468 -10.0880 -28.8414 64.8862 0.0000 0.0000 24.8776 -1.8223 10.3528 0.1495 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.5737 -0.4053 -7.9543 15.4159 10.6643 -82.9768 -0.0000 0.0000 6.5841 12.2686 2.8605 -7.8314 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -28.9319 13.6729 -7.4503 16.9182 0.0000 0.0000 13.1510 -2.2806 13.6790 -1.3915 0.0000 -0.0000 6.4401 14.5548 5.6005 2.1910 0.0000 0.0000 -8.2619 -5.4018 -8.0297 -4.4673 0.0000 -0.0000 - 1.0319 -30.0233 24.2632 4.8847 8.6807 174.9544 -1.7227 8.5721 0.1523 -1.3253 1.4123 0.1920 10.2643 4.5461 -0.4835 0.0320 2.7490 -1.7198 -9.9174 3.2546 -2.0420 3.2027 0.6885 -4.8322 -8.6414 4.8162 3.0586 -11.8175 -29.4727 63.3175 0.0000 0.0000 26.6731 -1.0494 9.6036 0.1053 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.7281 -1.0171 -7.4779 16.0934 11.0674 -83.2073 -0.0000 0.0000 7.5956 12.5448 3.3407 -7.0004 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -29.2006 12.9396 -12.0080 8.4464 0.0000 0.0000 17.8793 -0.8823 18.1380 -3.7180 0.0000 -0.0000 7.8595 15.4870 5.5307 2.6642 0.0000 0.0000 -10.3839 -5.5511 -8.5724 -2.4255 0.0000 -0.0000 - 1.0453 -29.4828 24.2012 4.8830 9.0521 175.2044 -1.5122 8.7885 0.1614 -1.1568 1.1287 0.1660 10.2061 4.9838 -0.2801 0.0248 3.0923 -1.8105 -9.8826 3.8347 -1.5474 3.3683 0.9004 -4.2498 -8.8947 5.1868 3.2527 -12.9099 -29.3901 61.9759 0.0000 0.0000 28.0111 0.2165 8.7855 0.1861 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.8117 -1.3774 -7.3002 16.4783 11.5624 -82.9676 -0.0000 0.0000 7.9827 12.6457 4.0311 -6.5741 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -30.3634 11.6578 -13.3437 4.0078 0.0000 0.0000 16.2441 -2.1788 17.6794 -4.8568 0.0000 -0.0000 8.5960 15.6904 6.7049 4.2289 0.0000 0.0000 -12.5323 -3.9386 -10.5958 -1.4319 0.0000 -0.0000 - 1.0812 -28.9422 24.1571 4.6717 8.6639 176.0131 -1.2726 8.4771 0.0151 -1.0021 0.9583 0.1402 10.1208 5.1425 -0.2742 -0.0166 3.2483 -1.8776 -9.8026 3.9482 -1.1050 3.7935 1.0351 -3.6440 -8.9926 5.5603 3.3324 -13.5166 -29.1399 60.9303 0.0000 0.0000 28.5778 0.2027 7.7710 0.6796 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.7702 -1.2664 -7.3141 16.7927 12.0693 -82.7065 -0.0000 0.0000 8.0974 12.5453 4.6342 -6.4831 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -31.8260 10.1492 -13.9787 2.8186 0.0000 0.0000 11.4341 -3.8659 14.1406 -3.8814 0.0000 -0.0000 9.0699 14.9199 7.8889 6.0670 0.0000 0.0000 -14.2375 -2.2227 -12.5895 -2.5467 0.0000 -0.0000 - 1.1294 -28.3795 24.1351 4.1674 7.7215 177.3602 -1.1634 7.8010 -0.2383 -0.9324 0.9416 0.1209 9.9858 4.8754 -0.4654 -0.0342 3.2039 -1.8867 -9.6568 4.0839 -0.8294 4.4030 1.4159 -3.1614 -8.9175 5.7166 3.2043 -13.8036 -28.7922 60.4230 0.0000 0.0000 28.3551 -0.7146 6.5138 1.2244 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.4802 -1.1193 -7.4116 17.2280 12.8129 -82.7966 -0.0000 0.0000 8.0830 11.8915 4.5767 -6.3045 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -33.3294 8.6583 -16.0316 3.9827 0.0000 0.0000 8.6047 -4.1937 9.7466 -2.3253 0.0000 -0.0000 9.5169 13.5191 8.2571 7.4426 0.0000 0.0000 -15.5130 -2.0580 -13.6748 -4.6741 0.0000 -0.0000 - 1.1790 -27.7984 24.1276 3.2115 6.7468 179.0896 -1.4325 7.0262 -0.3793 -1.0987 1.0640 0.1207 10.0868 4.4123 -0.9348 0.0021 3.0922 -1.9052 -9.7428 4.5638 -0.7312 5.0424 2.3049 -2.8304 -8.7906 5.3025 2.8945 -13.8995 -28.0674 60.5431 0.0000 0.0000 27.6410 -1.3031 5.3142 1.4599 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0583 -1.2585 -7.6589 17.7444 13.6335 -83.0638 -0.0000 0.0000 7.8682 10.5670 4.1811 -6.0785 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -34.6416 7.4415 -19.1254 5.9159 0.0000 0.0000 9.8585 -4.0924 5.0775 -2.0592 0.0000 -0.0000 9.5910 11.9758 8.3460 8.5847 0.0000 0.0000 -16.5093 -2.5055 -14.6985 -6.1793 0.0000 -0.0000 - 1.2250 -27.1904 24.1116 1.9267 5.9947 -179.2488 -2.0306 6.2917 -0.3009 -1.4280 1.1284 0.1147 10.3536 4.0083 -1.4512 -0.0068 3.0902 -1.9618 -10.0573 5.6904 -0.6295 5.6856 3.7484 -2.6298 -8.7446 4.3959 2.6587 -13.7835 -27.1580 60.8903 0.0000 0.0000 26.9787 -1.3186 4.2679 1.3702 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.1116 -1.4071 -8.1402 18.3310 14.9251 -83.2144 -0.0000 0.0000 7.7680 9.7508 4.3295 -6.1141 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -35.4311 6.3255 -21.7479 7.3978 0.0000 0.0000 12.7309 -4.2160 1.1130 -2.8090 0.0000 -0.0000 9.3536 10.5731 8.6408 9.7398 0.0000 0.0000 -17.4525 -1.9277 -16.2136 -6.8275 0.0000 -0.0000 - 1.2633 -26.5239 24.0688 0.6237 5.2163 -178.0091 -2.7617 5.4018 -0.2300 -1.7439 0.9303 0.0743 10.4911 3.6719 -1.6499 -0.1170 3.2795 -2.0337 -10.4072 7.7923 -0.2404 6.3463 5.5903 -2.4491 -8.7496 3.3753 2.7764 -13.3909 -26.2546 61.0612 0.0000 0.0000 26.7744 -1.1803 3.0966 1.1876 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.1096 -1.3217 -8.7221 19.0002 17.5614 -83.2390 -0.0000 0.0000 8.1579 10.8544 4.9839 -6.3779 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -35.2956 4.9141 -22.3463 8.6909 0.0000 0.0000 13.9837 -4.3573 -0.4096 -3.1325 0.0000 -0.0000 9.3331 9.2065 9.1892 10.7103 0.0000 0.0000 -18.5373 -0.6022 -17.8414 -7.6189 0.0000 -0.0000 - 1.2845 -25.7910 23.9912 -0.7462 4.4556 -176.7649 -3.6610 4.3057 -0.2264 -2.1571 0.6601 0.0183 10.6729 3.3481 -1.8400 -0.2027 3.6079 -2.1707 -11.0264 10.8182 0.4384 6.7635 7.6996 -2.1708 -8.7694 2.0860 3.1543 -12.8503 -24.6056 61.1332 0.0000 0.0000 26.8735 -1.1801 1.2757 1.2717 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3662 -1.2368 -9.1830 19.5716 20.4312 -83.2634 -0.0000 0.0000 8.7074 12.6973 5.3686 -6.6098 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -33.9278 3.5031 -20.8578 9.8632 0.0000 0.0000 13.6541 -4.0069 1.2034 -2.1483 0.0000 -0.0000 9.4119 7.8826 9.8560 11.6545 0.0000 0.0000 -19.5671 0.5499 -19.4662 -8.8212 0.0000 -0.0000 - 1.2962 -25.0162 23.8828 -2.6531 3.7600 -174.7725 -5.1162 2.8570 0.1015 -3.0471 0.5935 -0.0056 11.6009 3.2893 -2.6254 -0.2004 3.9565 -2.4871 -12.3671 14.3602 1.0691 6.5907 9.9845 -1.8815 -8.9121 -0.2416 3.2975 -12.5113 -21.1179 61.3779 0.0000 0.0000 26.6688 -1.4323 -1.7557 1.7946 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3758 -0.7662 -9.4843 19.8309 20.2579 -83.2478 -0.0000 0.0000 8.7184 12.2742 5.6341 -6.6575 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -31.3975 2.2932 -19.1193 9.2421 0.0000 0.0000 13.5756 -1.4172 4.5731 -0.2136 0.0000 -0.0000 8.6451 6.3891 10.5597 13.3218 0.0000 0.0000 -20.4817 1.7736 -21.6673 -9.4683 0.0000 -0.0000 - 1.3434 -24.1771 23.7807 -4.4889 1.6968 -172.4938 -6.8671 -0.1704 0.6287 -4.4126 0.1596 -0.0684 13.4583 3.9201 -3.4110 -0.3189 4.2979 -2.8657 -14.2447 18.0579 1.5779 6.0131 12.1432 -1.7739 -9.3856 -3.3654 3.0600 -12.4802 -16.6633 61.4132 0.0000 0.0000 25.9779 -1.7670 -6.0175 2.4082 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2354 1.4477 -9.5857 19.6972 16.0444 -83.0487 -0.0000 0.0000 8.2756 9.3987 6.2699 -6.5996 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -27.3456 -0.6001 -18.7369 4.7703 0.0000 0.0000 14.3378 4.2698 6.7484 0.9957 0.0000 0.0000 7.2352 3.1044 11.8281 16.2239 0.0000 0.0000 -21.9844 3.2958 -24.6714 -9.2475 0.0000 -0.0000 - 1.4295 -23.2243 23.7243 -4.3659 -2.4281 -171.6645 -7.3819 -4.5384 0.5750 -5.1429 -2.0730 -0.5118 14.5822 4.8954 -2.6994 -0.7460 4.8327 -2.9464 -15.7577 21.1809 2.5393 5.5111 13.6872 -1.7461 -10.2264 -4.7297 3.2881 -12.2208 -14.9245 60.1986 0.0000 0.0000 25.3742 -1.7998 -9.9652 2.3775 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0392 4.9564 -9.2141 19.4893 11.7475 -82.9215 -0.0000 0.0000 7.8453 6.8695 6.3806 -6.3575 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -21.4583 -6.4469 -17.4290 -2.3018 0.0000 -0.0000 15.8110 8.9002 5.3961 0.7533 0.0000 0.0000 6.8855 -2.7070 14.1518 20.7681 0.0000 0.0000 -23.9604 4.0957 -27.3534 -9.9041 0.0000 -0.0000 - 1.5048 -22.3365 23.7563 -3.5566 -6.5036 -173.2674 -6.5616 -7.5340 0.3087 -4.5717 -4.9193 -1.0635 13.6919 4.1557 -0.5550 -1.2617 5.5035 -2.6243 -17.0407 22.5192 4.4871 4.9274 13.9497 -1.3917 -10.7444 -3.4785 4.9373 -12.0409 -16.6456 58.0003 0.0000 0.0000 25.0861 -2.0137 -11.1932 1.5448 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.5505 7.4194 -8.0169 19.2804 10.5547 -83.1921 -0.0000 0.0000 7.4200 5.5258 4.7643 -5.8703 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -17.8813 -11.8716 -13.6454 -4.8143 0.0000 -0.0000 15.6158 9.4116 2.2234 -0.0265 0.0000 -0.0000 5.3373 -8.4814 16.1400 28.8987 0.0000 0.0000 -23.4860 3.3362 -27.8658 -12.9308 0.0000 -0.0000 - 1.5725 -21.6095 23.8789 -2.8774 -8.6130 -175.2103 -5.0255 -8.1247 0.2746 -3.4469 -5.5132 -1.0918 12.2912 1.6485 0.6613 -1.5120 5.3452 -2.1480 -18.1017 20.6097 6.3291 4.0374 12.6476 -0.5690 -10.3670 -1.5801 7.2899 -12.5235 -19.3574 56.1786 0.0000 0.0000 24.8138 -3.0918 -9.0126 0.5815 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.2825 6.2709 -6.6441 19.1789 11.5724 -83.7149 -0.0000 0.0000 6.5854 3.3330 2.1403 -5.3064 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -16.8243 -14.6067 -13.9105 -2.1019 0.0000 -0.0000 12.4332 8.7227 3.6829 -0.3729 0.0000 -0.0000 0.4749 -12.5038 15.0813 41.3115 0.0000 0.0000 -16.7126 3.2238 -26.2118 -15.9859 0.0000 -0.0000 - 1.6443 -20.9509 24.0033 -1.7263 -8.9942 -174.8585 -3.4601 -7.3086 0.1914 -2.6177 -4.1947 -0.8416 11.4598 -0.3071 -0.1465 -1.4678 4.1639 -1.7802 -17.7633 15.5026 6.1662 3.4100 10.1425 0.2323 -9.1963 -0.5374 8.3199 -12.9803 -21.4885 55.8341 0.0000 0.0000 24.1079 -4.7803 -5.2617 -0.0974 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.8999 2.4776 -6.2080 19.3170 12.2393 -83.9292 -0.0000 0.0000 5.4215 0.2926 0.7145 -5.1088 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -14.7998 -15.1668 -16.9914 -0.1280 0.0000 -0.0000 9.2394 8.7498 6.9221 -0.1750 0.0000 -0.0000 -6.7104 -14.8358 10.7302 54.6964 0.0000 0.0000 -5.3607 5.7081 -23.9894 -14.0421 0.0000 -0.0000 - 1.7160 -20.2956 24.0981 -0.2833 -9.1861 -173.2303 -2.2368 -6.6111 0.0707 -2.1480 -2.9029 -0.6211 11.1261 -1.0113 -1.2944 -1.3750 2.7809 -1.4477 -16.1451 9.3482 4.0752 3.8174 6.8766 0.2405 -7.9823 -0.1397 7.2151 -12.3222 -23.1169 57.1750 0.0000 0.0000 22.6737 -6.0215 -2.7619 -0.6233 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.8302 0.5065 -6.7321 19.2663 11.3900 -83.3847 -0.0000 0.0000 4.5435 -0.7142 1.2194 -5.4837 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -11.1169 -15.8204 -17.4047 -1.2571 0.0000 -0.0000 7.6474 8.8590 6.7888 0.2564 0.0000 0.0000 -13.8967 -16.3009 5.8288 65.3591 0.0000 0.0000 2.1486 8.0735 -21.7784 -11.2641 0.0000 -0.0000 - 1.7306 -19.6657 24.1753 0.8098 -9.4545 -172.9959 -1.4694 -6.5483 0.0267 -1.8616 -2.4922 -0.4818 11.1404 -0.6041 -1.0261 -1.3244 1.7929 -0.9928 -14.3914 4.0308 1.5684 4.9328 3.4298 -0.6863 -7.3650 0.7277 5.4202 -10.6238 -24.7611 59.2591 0.0000 0.0000 20.5143 -6.0806 -3.1968 -0.9252 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.2990 1.7826 -7.3496 18.5817 10.6473 -82.2392 -0.0000 0.0000 4.0404 0.5671 1.9096 -6.2397 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.5612 -16.6217 -14.1201 -2.7052 0.0000 -0.0000 6.6844 8.1098 4.2382 0.8873 0.0000 0.0000 -19.5929 -17.2683 3.2598 72.0551 0.0000 0.0000 1.7166 7.6859 -18.1220 -12.0090 0.0000 -0.0000 - 1.6900 -19.0962 24.2303 1.3136 -9.6711 -174.6052 -1.1939 -7.0206 0.0766 -1.7013 -2.6628 -0.4071 11.5481 0.3276 0.3207 -1.1169 1.3215 -0.4947 -13.3090 0.3920 -0.2539 5.6811 0.6468 -1.8628 -7.1500 2.3426 4.5782 -8.9731 -25.9488 61.2137 0.0000 0.0000 18.1058 -5.1181 -5.8686 -0.6828 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.9746 3.5709 -7.5372 17.2125 11.7769 -80.8570 -0.0000 0.0000 3.3318 0.4791 1.3223 -6.9486 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.3367 -17.0605 -10.9878 -2.2642 0.0000 -0.0000 5.0356 7.3357 3.3995 1.4637 0.0000 0.0000 -23.8788 -18.1717 3.2308 74.7482 0.0000 0.0000 -2.5488 4.1971 -12.5648 -12.6363 0.0000 -0.0000 - 1.6310 -18.5607 24.2596 1.7141 -9.7034 -176.2641 -1.1200 -7.6263 0.1263 -1.6086 -2.8104 -0.3666 12.2672 1.0242 1.3760 -0.6972 1.1590 -0.1600 -12.9246 -1.4076 -1.2300 5.6878 -0.8262 -2.6484 -6.8491 3.7535 4.7029 -7.9375 -25.7046 62.7555 0.0000 0.0000 16.5985 -3.8286 -8.2583 -0.0164 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.9288 3.6858 -7.5775 15.8306 14.3240 -79.5888 -0.0000 0.0000 2.4169 -2.7282 0.1200 -7.5155 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -3.4883 -17.2156 -10.5413 -1.4039 0.0000 -0.0000 3.1500 7.7749 5.0930 1.4539 0.0000 0.0000 -27.3442 -18.6785 3.4607 73.8666 0.0000 0.0000 -4.9195 0.3477 -6.4657 -11.1523 0.0000 -0.0000 - 1.5618 -18.0285 24.2862 2.2009 -9.5701 -176.9059 -0.9899 -8.0284 0.0981 -1.5615 -2.8524 -0.3555 12.9277 1.1902 1.7255 -0.3299 1.1400 -0.0307 -12.8538 -1.6781 -1.6094 5.5051 -1.0973 -3.0167 -6.3671 4.0001 4.9768 -7.2118 -24.2116 63.7470 0.0000 0.0000 16.7660 -3.1480 -8.4819 0.4242 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.8224 2.9600 -7.7325 15.2178 16.3021 -78.8129 -0.0000 0.0000 1.9752 -6.0650 -0.5502 -8.0422 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.2885 -17.1709 -10.8059 -1.6283 0.0000 -0.0000 1.7464 8.9518 6.3539 0.8044 0.0000 0.0000 -30.0639 -18.3619 2.8508 69.7209 0.0000 0.0000 -5.1934 -1.7247 -0.9084 -9.7366 0.0000 -0.0000 - 1.4700 -17.5131 24.3231 2.2378 -9.2640 -177.0822 -0.9903 -8.1565 0.0421 -1.5557 -2.8962 -0.3692 13.2213 1.0551 1.8096 -0.1971 1.1929 -0.0024 -12.8511 -0.9931 -1.5972 5.6558 -0.7367 -3.2178 -6.0568 3.4275 5.1894 -6.5093 -23.3139 64.0924 0.0000 0.0000 17.7892 -3.4243 -7.3556 0.4498 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.6053 2.6978 -7.8722 15.3672 16.6257 -78.6982 -0.0000 0.0000 2.1714 -6.5023 -0.6513 -8.4044 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.3254 -16.7606 -9.6755 -1.9545 0.0000 -0.0000 0.6455 9.6111 5.6324 0.0836 0.0000 0.0000 -31.9000 -17.4973 2.3853 62.3972 0.0000 0.0000 -5.1236 -2.8182 2.9619 -9.0992 0.0000 -0.0000 - 1.3669 -17.0041 24.3575 2.0014 -8.8474 -177.2557 -1.0066 -8.1771 0.0067 -1.5402 -2.8760 -0.3775 13.2170 0.9140 1.8428 -0.1733 1.2791 -0.0264 -12.8672 -0.0911 -1.4227 5.9517 -0.2031 -3.3717 -6.0761 3.0795 5.5113 -5.8984 -24.1819 64.0560 0.0000 0.0000 18.1711 -4.2100 -6.8442 0.4790 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.4386 2.5597 -7.9072 15.8196 15.8985 -79.0112 -0.0000 0.0000 2.5588 -4.7839 -0.6936 -8.5907 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.2469 -16.0637 -8.4737 -1.3599 0.0000 -0.0000 -0.8667 9.5340 4.8920 -0.1725 0.0000 -0.0000 -32.4627 -16.7410 2.9588 52.5227 0.0000 0.0000 -4.5669 -3.5244 3.3017 -8.3190 0.0000 -0.0000 - 1.2781 -16.4809 24.3698 1.7539 -8.6496 -177.2132 -1.1012 -8.3480 -0.0798 -1.5685 -2.7735 -0.3897 13.2572 0.8233 1.7120 -0.0970 1.3888 -0.1026 -12.9494 0.5056 -1.3316 5.9310 0.2247 -3.5310 -6.1421 3.1435 5.8661 -5.4500 -25.4212 64.0729 0.0000 0.0000 17.5248 -4.8229 -7.3482 0.5580 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.2513 2.0916 -7.9955 16.2439 15.0004 -79.3382 -0.0000 0.0000 2.8588 -3.1054 -0.5769 -8.6721 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.8947 -15.6000 -8.8193 -0.1822 0.0000 -0.0000 -2.9006 9.2976 5.5481 -0.0108 0.0000 -0.0000 -32.1820 -16.3151 4.4715 41.3445 0.0000 0.0000 -2.9683 -3.4158 -0.7502 -7.5787 0.0000 -0.0000 - 1.1932 -15.9298 24.3613 1.5113 -8.7348 -176.8478 -1.3316 -8.6717 -0.2761 -1.6731 -2.6395 -0.4120 13.4377 0.7216 1.4412 -0.0068 1.5006 -0.2122 -13.1038 0.7327 -1.4109 5.6569 0.3348 -3.7748 -6.0150 3.1186 6.0802 -4.8549 -25.0280 64.2271 0.0000 0.0000 16.7494 -5.0699 -7.9619 0.4406 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0250 1.8878 -8.1373 16.4967 13.9930 -79.5132 -0.0000 0.0000 3.1053 -1.8899 -0.1864 -8.7026 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.4929 -15.4420 -9.7035 1.0401 0.0000 0.0000 -5.0487 9.2222 6.3314 0.1486 0.0000 0.0000 -31.4911 -15.7725 6.6704 29.6800 0.0000 0.0000 -0.0705 -1.4543 -7.5609 -7.4896 0.0000 -0.0000 - 1.0798 -15.3379 24.3350 1.2308 -8.7939 -176.4892 -1.5827 -9.0273 -0.5026 -1.7597 -2.3640 -0.4122 13.4716 0.6451 1.2124 0.0079 1.5405 -0.2981 -13.2170 0.6486 -1.6128 5.5852 0.0973 -4.1203 -5.7078 2.9466 6.1351 -3.9957 -23.3994 64.2867 0.0000 0.0000 16.3867 -5.2955 -8.1088 0.1679 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0096 2.2405 -8.1749 16.6159 12.8003 -79.6683 -0.0000 0.0000 3.2668 -0.7245 -0.0632 -8.6262 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.0711 -15.1895 -9.6614 2.3877 0.0000 0.0000 -7.1874 9.2627 6.0381 0.0362 0.0000 0.0000 -30.4044 -14.6147 9.0092 18.2202 0.0000 0.0000 4.3887 3.4995 -13.7847 -8.0093 0.0000 -0.0000 - 0.9310 -14.6933 24.2887 1.0248 -8.6296 -176.3664 -1.6896 -9.2790 -0.6704 -1.7433 -1.9276 -0.3768 13.2099 0.6213 1.0968 -0.0464 1.4761 -0.3225 -13.2684 0.2596 -1.8855 5.8520 -0.3193 -4.4348 -5.4330 3.0274 6.1001 -3.1909 -22.6277 64.2178 0.0000 0.0000 15.9309 -5.7025 -8.1739 -0.0591 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 0.2054 2.6094 -8.1815 16.7861 12.0164 -79.8128 -0.0000 0.0000 3.2996 0.1717 -0.3034 -8.4736 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 3.8489 -14.6308 -9.2286 3.9047 0.0000 0.0000 -9.4126 9.2069 5.5188 -0.1859 0.0000 -0.0000 -29.2797 -12.8289 8.8557 8.8348 0.0000 0.0000 8.2345 9.6869 -15.5205 -8.5631 0.0000 -0.0000 - 0.7762 -14.0248 24.2361 0.6817 -8.2852 -176.3628 -1.8170 -9.0197 -0.7739 -1.7707 -1.6848 -0.3593 13.0131 0.5219 0.9824 -0.1684 1.3535 -0.3100 -13.5961 -0.3610 -2.1529 6.1163 -0.7868 -4.5774 -5.3838 3.0133 6.0410 -2.7566 -22.7850 64.2266 0.0000 0.0000 15.0130 -6.2475 -8.6515 -0.2372 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 0.2460 2.8957 -8.3760 17.0059 11.8574 -79.6575 -0.0000 0.0000 3.3548 0.6871 -0.1902 -8.4537 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 4.5874 -13.8428 -9.3663 5.3821 0.0000 0.0000 -11.6072 8.8458 5.6875 -0.2207 0.0000 -0.0000 -29.2530 -10.9626 6.2369 3.7684 0.0000 0.0000 7.9844 12.1782 -12.1788 -9.0839 0.0000 -0.0000 - 0.6198 -13.3419 24.1764 0.1763 -7.9469 -176.3948 -1.9730 -8.3872 -0.8936 -1.8888 -1.7020 -0.3678 12.9467 0.3065 0.8639 -0.3621 1.1893 -0.2741 -14.1800 -1.0254 -2.3450 6.1601 -1.4236 -4.5794 -5.4361 2.5204 6.0752 -2.6419 -22.5129 64.1730 0.0000 0.0000 14.2179 -6.6172 -9.1964 -0.4826 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.1986 3.2805 -8.6878 17.1498 11.6525 -79.2635 -0.0000 0.0000 3.5716 1.0983 0.2955 -8.5571 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 5.3539 -13.0482 -9.4551 6.5023 0.0000 0.0000 -13.5971 8.2589 5.9232 -0.2032 0.0000 -0.0000 -30.6456 -9.1556 6.4883 3.5496 0.0000 0.0000 5.3879 9.2153 -8.2625 -9.6690 0.0000 -0.0000 - 0.4388 -12.5846 24.0965 -0.3141 -7.3978 -177.0920 -2.2630 -7.7602 -0.9386 -1.9784 -1.6476 -0.3347 12.8108 0.3420 1.1070 -0.4954 0.9678 -0.1416 -14.4824 -1.7939 -2.5584 6.1389 -2.5401 -4.5795 -5.2142 1.9741 6.1793 -2.5581 -21.9134 63.8458 0.0000 0.0000 14.1347 -6.5910 -9.0141 -0.6936 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.3359 3.6031 -8.8546 17.4189 10.9276 -79.0208 -0.0000 0.0000 3.8515 1.3954 0.4492 -8.5149 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 6.5818 -11.9565 -8.4187 7.2975 0.0000 0.0000 -15.4922 7.5585 5.6592 -0.5059 0.0000 -0.0000 -31.4006 -7.5012 9.5278 4.9918 0.0000 0.0000 3.8212 6.4544 -3.7859 -9.8171 0.0000 -0.0000 - 0.2256 -11.7246 24.0017 -1.0823 -6.3354 -179.1475 -3.0845 -7.0720 -1.0172 -2.3309 -1.5055 -0.2397 12.8197 1.0079 2.1557 -0.4433 0.7896 0.1731 -14.4550 -3.1670 -2.8951 6.2441 -4.3411 -4.5592 -4.6970 1.6962 6.1969 -2.2337 -21.9974 63.5696 0.0000 0.0000 14.3996 -6.5655 -8.1603 -0.6843 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.1309 4.1037 -8.8170 18.0826 10.3310 -78.7137 -0.0000 0.0000 4.1795 1.8241 0.8159 -8.3683 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 7.6679 -9.9727 -7.1429 8.5318 0.0000 0.0000 -17.6563 6.3895 6.1506 -0.8098 0.0000 -0.0000 -29.5609 -5.9032 11.9749 3.8184 0.0000 0.0000 4.5883 8.1056 1.0246 -10.0211 0.0000 -0.0000 - 0.0074 -10.7659 23.8885 -2.0545 -5.0688 177.6185 -4.4516 -6.0555 -1.1982 -3.0366 -1.5955 -0.1710 13.1654 1.9835 3.7156 -0.2899 0.6852 0.5886 -14.5009 -5.6083 -3.1973 6.4195 -6.6148 -4.3476 -4.1737 1.0470 6.0413 -1.4779 -21.9775 64.1115 0.0000 0.0000 14.2621 -7.1229 -7.8291 -0.4881 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.0535 5.3538 -8.7016 18.7697 10.8499 -77.6307 -0.0000 0.0000 4.8446 3.5446 2.6960 -8.4603 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 8.0971 -7.2712 -6.7174 10.9232 0.0000 0.0000 -20.2965 4.5413 8.4558 -0.4453 0.0000 -0.0000 -25.3643 -4.1662 8.8120 -0.8471 0.0000 -0.0000 7.4885 9.6613 6.6197 -11.0014 0.0000 -0.0000 - -0.1813 -9.7237 23.7728 -2.0095 -3.5056 174.7184 -5.3981 -3.6653 -1.1924 -3.7320 -1.8059 -0.1723 13.8507 2.3430 4.4486 -0.2746 0.3230 0.8721 -14.6420 -8.9359 -3.3823 6.3726 -8.6056 -3.9331 -3.8054 -1.1815 5.6332 -0.5232 -19.9759 65.6690 0.0000 0.0000 13.7218 -7.6867 -8.6582 -0.3686 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.5125 7.2982 -8.6385 18.4430 11.5681 -75.6538 -0.0000 0.0000 5.9628 6.9256 5.2665 -8.7361 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 8.9790 -4.0466 -6.4674 14.2576 0.0000 0.0000 -22.8758 2.8229 10.7608 -0.1295 0.0000 -0.0000 -20.2041 -2.0829 2.8545 -5.9270 0.0000 -0.0000 12.9601 5.1411 10.4092 -11.1758 0.0000 -0.0000 - -0.3966 -8.6791 23.7384 -0.7688 -0.8250 173.7925 -5.6995 0.1932 -1.0698 -4.2920 -0.8583 0.0013 14.7889 1.5772 3.5481 -0.4429 -0.5156 0.8887 -14.3678 -11.7475 -3.6883 5.9484 -9.5847 -3.5266 -3.5179 -4.5301 4.9211 0.1925 -17.2229 67.2673 0.0000 0.0000 13.5550 -7.1915 -9.3174 -0.3712 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -2.9903 9.0287 -8.7609 17.1457 10.8702 -73.6650 -0.0000 0.0000 6.8327 9.7773 5.8473 -8.5828 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 10.0763 0.1539 -5.9780 18.7799 0.0000 0.0000 -24.1574 1.7968 10.7655 -1.8249 0.0000 -0.0000 -16.7825 1.9133 1.9100 -6.6384 0.0000 -0.0000 17.0267 -2.7909 9.1027 -9.0716 0.0000 -0.0000 - -0.6533 -7.7095 23.8692 0.4804 2.3491 174.0714 -5.8755 3.1287 -0.8259 -4.5634 1.0850 0.4014 15.0946 1.1481 2.1059 -0.4700 -1.3567 0.7508 -13.3956 -12.6634 -4.4223 5.5835 -9.5128 -3.4617 -3.3004 -6.2587 3.9037 1.3204 -18.2489 67.8975 0.0000 0.0000 14.0145 -6.3497 -8.2660 -0.3004 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -2.6151 8.9895 -9.1284 16.3695 10.3143 -72.6597 -0.0000 0.0000 6.7631 9.8936 3.8839 -7.7851 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 9.2763 4.5153 -4.6288 25.9251 0.0000 0.0000 -22.2119 0.3405 8.8646 -5.8207 0.0000 -0.0000 -15.1208 6.3216 3.5793 -3.8390 0.0000 -0.0000 15.6938 -5.5760 7.5159 -7.4606 0.0000 -0.0000 - -0.8942 -6.8827 24.1109 0.6989 3.9449 173.4740 -6.1085 3.1482 -0.4565 -4.4192 1.9825 0.6083 13.9331 2.1807 1.7743 -0.2371 -1.2532 0.6489 -12.4607 -11.6671 -5.1817 5.8274 -8.7128 -4.0177 -3.0264 -4.6733 3.3415 3.1263 -23.6476 67.1887 0.0000 0.0000 14.2637 -7.0841 -6.9948 -0.0115 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.6629 7.0642 -9.5230 16.5868 12.2756 -72.6833 -0.0000 0.0000 6.0248 8.0844 2.3320 -7.4307 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 4.1948 7.0605 -1.3432 37.0883 0.0000 0.0000 -16.1163 -2.6979 7.3272 -8.9740 0.0000 -0.0000 -13.5495 8.2448 4.7891 -2.2471 0.0000 -0.0000 11.9218 -2.6541 7.3514 -8.0806 0.0000 -0.0000 - -1.1160 -6.2253 24.2905 0.4150 4.5002 171.6443 -5.7917 2.3411 -0.1206 -3.8777 1.6044 0.5272 11.8470 3.3484 2.6608 -0.1308 -0.4358 0.6503 -12.3586 -9.4481 -5.2671 6.3578 -7.6019 -4.8378 -2.5873 -1.4282 3.9555 4.1743 -28.1698 65.6576 0.0000 0.0000 13.5191 -8.7329 -8.0474 0.0470 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.4173 4.7858 -9.9019 16.6672 15.3437 -73.0338 -0.0000 0.0000 5.2432 6.7956 3.2165 -7.7609 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.3115 8.1590 2.6776 50.6712 0.0000 0.0000 -7.6940 -5.8141 7.1127 -7.9158 0.0000 -0.0000 -11.9460 8.9392 5.9934 -2.4426 0.0000 -0.0000 9.0117 -0.7397 7.1706 -9.0973 0.0000 -0.0000 - -1.3191 -5.6657 24.3244 0.9284 5.7699 170.4772 -4.6811 3.4935 -0.0395 -3.2357 1.3993 0.4588 10.4868 3.5984 3.1216 -0.3610 -0.0138 0.6081 -12.9104 -7.3690 -4.9309 6.2990 -6.5800 -5.2118 -2.3591 0.1268 4.6582 3.7998 -28.1296 64.4367 0.0000 0.0000 12.4132 -8.1739 -10.3207 -0.4202 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.7672 3.4079 -10.3201 15.3695 15.6961 -73.2780 -0.0000 0.0000 4.7193 7.1929 4.2699 -7.7584 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -12.3192 9.7970 4.9448 62.7595 0.0000 0.0000 -2.0413 -6.6859 5.8840 -5.3113 0.0000 -0.0000 -10.3949 10.9478 9.8344 -2.3446 0.0000 -0.0000 7.2721 -2.0293 3.8980 -8.9621 0.0000 -0.0000 - -1.4629 -5.1145 24.2936 2.0807 7.6025 171.4577 -3.6529 6.1691 -0.1208 -2.8724 2.0733 0.5023 10.6366 3.2301 1.8810 -0.7058 -0.2974 0.3625 -13.2119 -6.5004 -4.8833 5.7279 -6.1783 -4.9164 -2.2650 -1.1237 4.2540 2.6062 -25.8109 63.9323 0.0000 0.0000 12.1629 -5.3786 -10.1458 -0.8496 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.0793 3.2995 -10.7548 12.9080 12.9204 -73.2200 -0.0000 0.0000 4.2039 7.7633 2.6251 -7.1993 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -17.8494 12.5447 4.2673 70.7996 0.0000 0.0000 -2.4431 -4.9240 1.6639 -3.9998 0.0000 -0.0000 -8.3547 13.8510 14.0610 -1.8738 0.0000 -0.0000 5.3251 -2.9076 -1.1734 -8.1367 0.0000 -0.0000 - -1.5255 -4.5566 24.3062 2.6971 8.7660 174.1149 -3.3603 8.3467 -0.1765 -2.8017 3.1558 0.5868 11.4596 2.7885 -0.4832 -0.8796 -0.7310 -0.1421 -12.9110 -6.7078 -5.1446 5.7279 -6.7787 -4.1858 -2.1840 -2.8874 3.1336 1.6584 -25.7041 63.5038 0.0000 0.0000 12.8298 -4.5649 -6.9669 -1.2164 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -2.1108 3.8684 -11.1548 10.6577 11.0642 -72.6657 -0.0000 0.0000 3.3117 6.6275 -1.3293 -6.8439 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -21.5990 15.0432 1.3577 73.7944 0.0000 0.0000 -5.9618 -1.0647 -3.6836 -3.3579 0.0000 -0.0000 -5.8852 15.7174 14.9337 -1.9198 0.0000 -0.0000 3.3580 -1.0379 -4.8260 -7.8355 0.0000 -0.0000 - -1.5282 -4.0336 24.3830 2.5529 8.8396 176.8655 -3.5206 9.4144 -0.2179 -2.8012 3.8117 0.6133 11.9344 2.6021 -2.6204 -0.8136 -0.7939 -0.7100 -12.5333 -7.2122 -5.1107 6.5653 -8.0552 -3.2976 -2.2417 -3.2900 2.4003 1.3379 -27.8181 62.4736 0.0000 0.0000 13.2763 -7.4501 -5.0323 -1.0801 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.7058 4.2685 -11.4251 9.5638 12.3074 -71.7219 -0.0000 0.0000 2.1805 4.1574 -4.7734 -7.7525 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -24.9356 16.0619 -1.2331 72.3845 0.0000 0.0000 -7.9895 2.2613 -6.5923 -3.0621 0.0000 -0.0000 -3.9037 15.9630 13.7018 -2.1469 0.0000 -0.0000 1.9884 1.9627 -6.8277 -7.8446 0.0000 -0.0000 - -1.4952 -3.5682 24.4889 2.3975 8.3686 178.6757 -3.5050 9.9951 -0.2456 -2.7329 3.9181 0.5829 12.0954 2.5622 -3.7917 -0.6607 -0.5770 -1.0931 -12.5511 -7.2532 -4.5251 7.2934 -9.1404 -2.3919 -2.4898 -3.1316 2.3616 0.9144 -28.3320 61.0350 0.0000 0.0000 12.7688 -9.9358 -7.1171 -0.9109 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -1.6287 4.3571 -11.5313 9.5943 13.9890 -71.0110 -0.0000 0.0000 1.6591 2.9279 -5.8156 -8.8953 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -28.0086 15.7630 -1.8539 67.6741 0.0000 0.0000 -7.5098 3.0271 -5.8013 -2.9403 0.0000 -0.0000 -2.5430 15.3636 13.7455 -1.9223 0.0000 -0.0000 1.1489 4.6227 -8.8265 -7.4064 0.0000 -0.0000 - -1.4338 -3.1564 24.5901 2.2235 7.6986 179.8917 -3.4898 10.3156 -0.2109 -2.7044 3.8561 0.5593 12.4765 2.4855 -4.1872 -0.5718 -0.3557 -1.2751 -12.8355 -6.4734 -3.7399 7.2029 -9.3154 -1.6131 -2.8301 -3.4938 2.5604 -0.0890 -26.0116 59.4240 0.0000 0.0000 12.1164 -8.6521 -11.0062 -0.7790 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.4165 4.3821 -11.4756 10.4871 13.7178 -71.0249 -0.0000 0.0000 2.2582 4.0084 -4.9636 -8.7500 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -30.4698 14.9953 -1.5474 60.0070 0.0000 0.0000 -5.7032 2.0881 -2.5142 -2.4823 0.0000 -0.0000 -1.6807 14.3755 15.3109 -1.3166 0.0000 -0.0000 0.4851 7.0441 -11.3818 -6.9450 0.0000 -0.0000 - -1.3541 -2.7680 24.6727 1.8662 6.7555 -178.6929 -3.5830 10.1161 -0.2259 -2.7218 3.7309 0.5292 13.0053 2.4277 -4.3382 -0.5539 -0.0122 -1.4230 -13.1385 -4.9340 -3.0773 6.6515 -8.5821 -1.2017 -3.0283 -3.9580 2.7790 -1.5581 -23.2722 57.3810 0.0000 0.0000 12.3185 -5.9525 -12.8854 -0.3691 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.1950 4.2067 -11.2043 11.9691 12.8897 -71.3956 -0.0000 0.0000 3.6329 5.3897 -3.2483 -7.8702 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -31.7502 14.4747 -2.3074 49.5513 0.0000 0.0000 -3.9683 1.1733 1.4503 -1.9207 0.0000 -0.0000 -1.0147 13.0539 16.1062 -0.8353 0.0000 -0.0000 -0.2006 8.8764 -13.5766 -6.9966 0.0000 -0.0000 - -1.2823 -2.3839 24.7230 1.4546 5.9760 -177.0159 -3.5500 9.6904 -0.3230 -2.6542 3.4360 0.4653 13.2679 2.6077 -4.3712 -0.5468 0.6096 -1.6260 -13.4973 -2.9250 -2.5994 6.2132 -7.5331 -1.3071 -3.0296 -3.9588 3.1549 -3.3754 -21.8409 54.7105 0.0000 0.0000 13.1428 -5.6539 -12.1492 -0.3933 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.1476 3.7699 -10.7811 13.5228 13.3378 -71.5569 -0.0000 0.0000 5.2353 5.3560 -1.4605 -7.2280 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -32.0030 14.5342 -4.3153 37.4953 0.0000 0.0000 -3.2645 1.0092 4.6811 -1.8436 0.0000 -0.0000 -0.3695 12.0439 15.3933 -0.6276 0.0000 -0.0000 -0.8922 9.2031 -14.7315 -6.8701 0.0000 -0.0000 - -1.2245 -2.0031 24.7313 1.1003 5.8714 -175.6447 -3.3621 9.5738 -0.3255 -2.4749 3.0091 0.4014 13.3149 3.1700 -4.0256 -0.5586 1.3124 -1.7792 -13.9399 -0.8843 -2.2959 5.9156 -6.6736 -1.8296 -3.0413 -3.9127 3.7166 -5.5302 -21.0408 51.5718 0.0000 0.0000 13.9817 -7.3577 -10.6065 -0.6676 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.0908 3.6365 -10.2993 14.7418 13.8847 -71.4409 -0.0000 0.0000 6.6538 4.7372 -0.1202 -6.8819 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -32.2487 14.9090 -6.3017 25.7345 0.0000 0.0000 -3.2882 1.4561 5.8736 -2.0076 0.0000 -0.0000 0.3770 11.9036 14.0585 -0.6759 0.0000 -0.0000 -1.6181 8.0645 -14.8153 -6.1930 0.0000 -0.0000 - -1.1623 -1.6069 24.7092 1.0980 6.2516 -174.8192 -2.9143 9.7830 -0.2328 -2.1881 2.5296 0.3617 13.3541 4.0258 -3.2138 -0.6382 1.8733 -1.8236 -14.2509 0.6946 -2.0999 5.6609 -6.0488 -2.4960 -3.0839 -4.1333 4.2356 -7.7547 -20.1748 48.5589 0.0000 0.0000 14.7572 -8.2497 -9.1684 -0.7390 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.8825 4.1495 -9.7232 15.7691 12.8203 -71.2105 -0.0000 0.0000 7.5235 4.6315 0.6876 -6.5428 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -32.9988 15.1546 -7.9250 16.0795 0.0000 0.0000 -2.9056 1.8646 4.7500 -1.9895 0.0000 -0.0000 1.7867 12.2809 12.5377 -1.1926 0.0000 -0.0000 -2.4739 6.4835 -14.2210 -6.3266 0.0000 -0.0000 - -1.0873 -1.1863 24.6803 1.4076 6.6318 -174.0988 -2.2608 10.0250 -0.2169 -1.7643 2.0852 0.3220 13.3433 4.8618 -2.3889 -0.7580 2.3130 -1.8226 -14.3436 1.5924 -1.9139 5.5743 -5.5298 -2.9753 -3.0195 -4.2080 4.5505 -9.5657 -19.7315 46.2776 0.0000 0.0000 15.5879 -7.7690 -7.9308 -0.6972 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.5139 4.8521 -9.0829 16.6716 10.7662 -70.8157 -0.0000 0.0000 7.8102 4.5654 1.1378 -6.0815 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -34.4058 15.2391 -10.2660 9.9860 0.0000 0.0000 -2.1528 1.5146 3.0502 -1.7971 0.0000 -0.0000 3.8093 12.5198 10.6611 -2.0934 0.0000 -0.0000 -3.3265 5.3579 -13.4657 -8.1653 0.0000 -0.0000 - -1.0108 -0.7573 24.6649 1.7091 6.8561 -173.0757 -1.5281 10.1254 -0.3110 -1.2858 1.8282 0.2870 13.2281 5.4049 -1.9911 -0.8347 2.6537 -1.8580 -14.3878 2.1016 -1.7039 5.6701 -5.1288 -3.1349 -2.8516 -3.9453 4.6923 -10.6641 -19.7369 45.0426 0.0000 0.0000 16.2037 -7.4977 -7.4973 -0.6127 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.1421 5.1660 -8.5705 17.2860 9.5810 -70.2872 -0.0000 0.0000 7.9353 4.0105 1.4114 -5.5950 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -36.3184 15.4201 -13.8216 7.4724 0.0000 0.0000 -1.7348 0.8676 2.6024 -1.4648 0.0000 -0.0000 5.7734 12.4283 8.8343 -2.8744 0.0000 -0.0000 -3.9307 5.0398 -13.0574 -9.9909 0.0000 -0.0000 - -0.9342 -0.3175 24.6637 1.8646 6.9021 -171.8918 -0.8436 10.0892 -0.4114 -0.9120 1.7441 0.2657 13.1173 5.5634 -1.8477 -0.8650 2.8684 -1.8996 -14.4106 2.5734 -1.5032 5.7843 -4.8199 -3.1659 -2.8034 -3.6686 4.8232 -11.1124 -19.5859 44.5292 0.0000 0.0000 16.4326 -7.8771 -8.3208 -0.3380 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0310 5.0797 -8.2640 17.6765 9.8083 -70.0083 -0.0000 0.0000 8.2142 3.6547 1.7179 -5.3466 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -38.3057 15.5685 -16.7054 7.2669 0.0000 0.0000 -1.3497 1.0058 2.4569 -1.1507 0.0000 -0.0000 7.3666 12.0268 7.6172 -3.2297 0.0000 -0.0000 -4.5434 5.3465 -13.1657 -9.3651 0.0000 -0.0000 - -0.8417 0.1618 24.6704 2.1277 6.4755 -170.9146 -0.1866 9.7793 -0.4926 -0.5648 1.5688 0.2298 12.9496 5.4466 -1.5268 -0.9043 2.9693 -1.8399 -14.3279 3.0811 -1.3238 5.8723 -4.4789 -3.2843 -2.9376 -3.4991 5.0635 -11.2451 -19.3208 44.0709 0.0000 0.0000 16.6139 -8.0711 -9.5787 0.0925 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0110 4.9068 -8.0303 18.0848 10.6612 -70.2227 -0.0000 0.0000 8.4155 4.0461 2.0963 -5.5236 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -39.6793 15.0675 -17.6256 8.2721 0.0000 0.0000 -0.5984 1.8449 1.2165 -1.0492 0.0000 -0.0000 8.9257 11.0162 6.8221 -3.2856 0.0000 -0.0000 -5.6434 5.6777 -13.4187 -7.0746 0.0000 -0.0000 - -0.7355 0.6696 24.6788 2.1619 5.6881 -170.1202 0.2709 9.2596 -0.5966 -0.3063 1.2997 0.1887 12.6924 5.2585 -1.0095 -0.9874 3.0152 -1.7034 -14.3064 3.5091 -1.1845 5.9130 -4.0937 -3.4666 -3.0488 -3.3588 5.3843 -11.3830 -19.4200 43.4373 0.0000 0.0000 17.0496 -7.9723 -10.1103 0.4114 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0379 4.7423 -7.8157 18.4503 11.3724 -70.7101 -0.0000 0.0000 8.1930 4.3082 2.3564 -5.9304 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -40.3195 13.9721 -17.8875 9.7180 0.0000 0.0000 0.4120 2.3263 -0.0690 -1.1688 0.0000 -0.0000 9.9632 9.6136 6.4474 -2.8687 0.0000 -0.0000 -7.1128 5.7168 -13.8498 -5.7906 0.0000 -0.0000 - -0.6281 1.1770 24.6795 1.3955 5.0359 -169.4729 0.2977 8.7702 -0.5677 -0.3399 1.1861 0.1915 12.5073 5.2489 -0.5409 -1.1300 3.0071 -1.5641 -14.6399 3.7691 -1.1600 5.7638 -3.7815 -3.6298 -2.9928 -3.5913 5.6632 -11.6184 -19.5103 42.9755 0.0000 0.0000 17.4889 -8.0501 -9.9934 0.5577 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0486 4.6920 -7.7368 18.5247 11.5623 -71.1431 -0.0000 0.0000 7.6876 3.5679 2.4708 -6.1625 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -40.4861 12.6483 -18.7826 10.5553 0.0000 0.0000 1.8707 2.1241 -0.2195 -1.3650 0.0000 -0.0000 9.8247 8.4875 6.9752 -1.8444 0.0000 -0.0000 -8.4941 5.8737 -14.8236 -6.0470 0.0000 -0.0000 - -0.5119 1.7117 24.6549 -0.0872 4.4598 -169.2682 -0.2452 8.3719 -0.2776 -0.6524 1.1228 0.2218 12.5278 5.4307 -0.0075 -1.3530 2.9342 -1.3976 -15.3553 3.9060 -1.2435 5.4620 -3.5919 -3.7998 -2.8541 -4.5021 5.9155 -11.8020 -18.9313 42.8960 0.0000 0.0000 17.6652 -8.1071 -9.8956 0.7517 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0098 5.0895 -7.8324 18.3798 11.2865 -71.4131 -0.0000 0.0000 7.3244 2.5240 2.6063 -6.1103 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -40.2301 10.7342 -19.9796 10.1407 0.0000 0.0000 4.1701 1.3025 0.0011 -1.4822 0.0000 -0.0000 8.9419 7.5765 8.2544 -0.6640 0.0000 -0.0000 -10.0129 6.4175 -16.0031 -6.3652 0.0000 -0.0000 - -0.3895 2.3395 24.5919 -1.5083 3.5933 -169.4398 -1.0402 7.8914 0.0479 -1.0295 0.8923 0.2288 12.6651 5.5010 0.6436 -1.6083 2.8328 -1.1651 -16.2751 4.0179 -1.2782 5.2552 -3.4725 -3.9800 -2.7458 -5.5875 6.2830 -11.7727 -18.1615 42.9516 0.0000 0.0000 17.7693 -7.8190 -9.8460 1.0327 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.1748 5.8737 -8.0516 18.1946 11.0657 -71.4793 -0.0000 0.0000 7.1839 2.2193 2.7616 -5.9933 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -38.8182 8.0759 -20.4224 9.1570 0.0000 0.0000 6.5169 -0.5461 -0.0888 -1.5772 0.0000 -0.0000 8.4892 6.3448 9.4969 0.2342 0.0000 0.0000 -12.0982 7.0176 -16.8986 -5.9658 0.0000 -0.0000 - -0.3035 3.0620 24.4843 -3.0286 2.9289 -169.0090 -2.0536 7.4053 0.3342 -1.5533 0.7872 0.2349 13.0228 5.4999 0.7745 -1.7767 2.7372 -1.0850 -17.4027 4.0968 -1.3132 5.0760 -3.4028 -4.0797 -2.6363 -6.6091 6.6487 -11.4765 -17.5612 43.1194 0.0000 0.0000 17.8306 -7.7803 -9.8735 1.1889 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.2256 6.5120 -8.5324 17.9554 10.9052 -71.2067 -0.0000 0.0000 6.9517 2.3097 2.8383 -5.9816 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -35.9787 6.0694 -19.4017 8.5362 0.0000 0.0000 8.1234 -2.6522 0.7926 -1.9503 0.0000 -0.0000 8.1042 5.2647 10.4679 1.4113 0.0000 0.0000 -14.3085 7.5979 -18.1364 -5.6141 0.0000 -0.0000 - -0.2736 3.8630 24.3295 -5.2305 2.7803 -167.3061 -3.6388 6.6220 0.9066 -2.5993 1.0004 0.2954 14.1118 6.1281 -0.0895 -1.8649 2.6622 -1.3283 -18.8266 4.1264 -1.6049 4.7003 -3.3269 -4.1600 -2.5900 -8.4670 6.7189 -10.8179 -15.9097 43.6353 0.0000 0.0000 17.3852 -8.4618 -10.7406 1.1523 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.2047 7.2421 -9.2817 17.7251 9.6146 -70.6624 -0.0000 0.0000 6.4368 1.8191 3.2797 -6.1044 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -32.0128 5.3246 -17.4933 7.2380 0.0000 0.0000 9.9993 -2.1254 3.5867 -2.3126 0.0000 -0.0000 6.8473 4.6389 11.3502 3.5305 0.0000 0.0000 -16.2905 8.6266 -20.4023 -5.7704 0.0000 -0.0000 - -0.2372 4.8140 24.1496 -6.7117 1.1770 -165.7118 -5.4738 3.7318 1.6041 -4.0634 0.5524 0.2748 16.0907 7.8954 -0.7583 -2.0750 2.6883 -1.6155 -20.2465 4.3614 -1.9469 4.4431 -3.0751 -4.3763 -2.8789 -11.3940 6.6866 -9.7003 -12.6788 44.0916 0.0000 0.0000 16.3498 -8.9802 -12.4814 1.0124 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.6048 9.1121 -9.7820 17.6727 7.1077 -70.0507 -0.0000 0.0000 5.7745 0.8750 4.6165 -6.4006 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -26.6653 2.7282 -15.6902 3.4592 0.0000 0.0000 12.4142 2.3628 5.9492 -1.5559 0.0000 -0.0000 6.1175 2.1662 12.5994 6.1067 0.0000 0.0000 -18.9774 10.1139 -22.9199 -5.9216 0.0000 -0.0000 - -0.1259 5.9806 24.0064 -4.5999 -3.6826 -166.4000 -5.7831 -1.5432 1.5834 -4.6920 -1.9507 -0.2132 17.2647 8.9382 0.4546 -2.4573 3.0577 -1.3890 -20.9436 5.3396 -1.3999 4.7451 -2.6384 -4.4823 -3.4535 -12.7295 7.1727 -8.2736 -11.0203 44.0081 0.0000 0.0000 15.3062 -8.4027 -13.0370 0.7562 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.3239 11.6928 -9.4265 17.5341 6.2855 -69.6109 -0.0000 0.0000 5.3593 0.1343 6.2325 -6.7288 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -19.4048 -4.7351 -13.8204 -1.6507 0.0000 -0.0000 14.1613 6.8420 5.9060 -0.2725 0.0000 -0.0000 8.7732 -4.5679 15.6049 8.9189 0.0000 0.0000 -22.7228 11.4651 -24.5811 -6.0129 0.0000 -0.0000 - 0.0486 7.0632 23.9771 -2.3562 -9.3930 -169.3105 -5.2322 -5.1631 1.1262 -4.2186 -4.3401 -0.6749 16.0620 5.9345 2.9144 -2.7112 3.4904 -0.5839 -20.9726 6.7410 0.3790 5.0144 -2.3814 -3.8455 -3.6100 -10.5350 8.3405 -7.2177 -13.7852 44.3013 0.0000 0.0000 14.6259 -7.8132 -10.5407 0.2179 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.4096 12.6176 -8.4312 16.6624 8.8532 -69.3739 -0.0000 0.0000 5.4896 -0.5783 6.8056 -6.7177 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -16.1338 -12.6457 -12.7805 -1.2922 0.0000 -0.0000 12.4545 7.8737 6.2330 0.1363 0.0000 0.0000 10.0941 -12.2945 19.7763 15.5268 0.0000 0.0000 -25.2731 11.5119 -24.8805 -7.1664 0.0000 -0.0000 - 0.1473 7.9425 24.0752 -1.5941 -11.4819 -171.7289 -4.2045 -5.5460 0.7863 -3.2053 -3.9793 -0.5168 13.6137 1.9806 4.0093 -2.5809 2.8143 0.1789 -20.4691 6.5383 1.7837 4.4060 -2.5487 -2.3215 -2.9053 -6.7760 9.3176 -6.7204 -19.5813 45.7473 0.0000 0.0000 14.3192 -8.7490 -6.4674 -0.1530 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.4294 9.0945 -7.9751 15.5152 12.5032 -69.2828 -0.0000 0.0000 5.7331 -1.7014 6.3415 -6.2500 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.9646 -15.4246 -14.7318 3.7767 0.0000 0.0000 7.7218 7.1388 9.2216 -0.1817 0.0000 -0.0000 6.5867 -16.1542 17.4717 27.9011 0.0000 0.0000 -23.6514 9.7861 -21.0850 -9.8097 0.0000 -0.0000 - 0.1553 8.7580 24.1897 -0.4564 -10.6833 -171.4125 -2.7288 -4.5685 0.4534 -2.3003 -2.4998 -0.2481 11.5769 0.0914 3.2362 -2.3091 1.5812 0.5002 -19.3426 4.5277 1.5805 3.4232 -3.3039 -0.9392 -1.7154 -4.0982 9.2013 -5.8819 -23.9693 48.2194 0.0000 0.0000 14.1632 -10.3109 -4.5001 0.0734 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.1649 3.2758 -8.3759 14.9689 13.2415 -69.1779 -0.0000 0.0000 5.4016 -2.4104 6.2236 -5.8726 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -13.8636 -14.8160 -15.4850 6.7684 0.0000 0.0000 4.0562 6.9719 10.2997 -0.4431 0.0000 -0.0000 -0.3766 -16.7264 10.5200 43.5581 0.0000 0.0000 -16.9529 9.9087 -16.5110 -11.7411 0.0000 -0.0000 - 0.1731 9.5752 24.2387 1.2823 -10.8647 -170.2967 -1.4519 -4.9697 0.3137 -1.7441 -1.9528 -0.1534 10.5335 -0.4998 2.6654 -2.1714 0.8129 0.6906 -17.9146 2.3927 0.3747 3.3898 -4.4142 -0.8206 -0.7938 -3.2511 8.3535 -4.3570 -24.3637 50.7522 0.0000 0.0000 14.0888 -10.1374 -5.8020 0.5071 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.6373 0.3639 -8.8334 13.8301 10.6609 -68.8367 -0.0000 0.0000 4.4800 -1.4768 6.0247 -6.0527 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.8456 -15.8319 -14.1242 6.2898 0.0000 0.0000 2.2895 7.7978 8.8154 -0.2680 0.0000 -0.0000 -7.7663 -18.2454 5.4045 57.8207 0.0000 0.0000 -9.8183 10.6904 -15.3678 -11.8458 0.0000 -0.0000 - 0.1855 10.3844 24.2331 2.9958 -12.4155 -170.7827 -0.8104 -6.5654 0.3061 -1.4655 -2.6289 -0.1903 10.3412 -0.6589 3.7968 -2.1085 0.5127 1.1351 -16.5032 1.0719 -0.8668 4.5941 -5.3422 -1.8074 -0.5681 -3.2389 7.8184 -3.0283 -22.7325 51.9798 0.0000 0.0000 14.2846 -8.0231 -7.9517 1.0392 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.9977 1.3454 -8.8381 10.5842 8.8582 -68.3166 -0.0000 0.0000 3.1050 0.0871 3.9270 -6.1773 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.5051 -18.4137 -12.0657 4.8424 0.0000 0.0000 0.9968 8.2305 7.9336 -0.0142 0.0000 -0.0000 -13.8975 -21.3465 3.5861 67.9186 0.0000 0.0000 -7.4391 8.8654 -15.9865 -12.0030 0.0000 -0.0000 - 0.1342 11.1394 24.2221 3.7518 -13.3154 -172.7580 -0.9799 -7.6426 0.3113 -1.4273 -3.3713 -0.2185 10.6365 -0.6663 5.8141 -1.8990 0.2428 1.7856 -15.2181 0.2977 -1.8370 5.9405 -5.8020 -2.9694 -0.6473 -3.2252 7.6771 -2.3939 -21.8379 52.2803 0.0000 0.0000 14.6482 -6.6020 -8.2937 1.2099 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.9151 3.0342 -8.5830 6.0870 10.1828 -67.7889 -0.0000 0.0000 1.2132 -0.2120 -0.2651 -6.0008 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -2.4519 -19.6296 -10.9349 5.0862 0.0000 0.0000 -1.1988 7.8782 9.4466 -0.0627 0.0000 -0.0000 -18.9593 -23.3524 3.9099 73.1465 0.0000 0.0000 -9.6080 5.2422 -14.8715 -12.3647 0.0000 -0.0000 - 0.0031 11.8592 24.2366 4.1280 -12.6453 -174.5559 -1.3695 -7.8313 0.2776 -1.4566 -3.3796 -0.1541 11.0204 -0.5218 7.3198 -1.5182 -0.1709 2.3467 -14.0715 -0.3188 -2.6003 6.4872 -5.9209 -3.8182 -0.4762 -3.2789 7.4018 -2.0925 -21.8483 52.7888 0.0000 0.0000 15.0219 -7.5918 -6.5995 0.7860 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.4051 3.2636 -8.4101 2.5508 12.3587 -67.2094 -0.0000 -0.0000 -0.8087 -2.5525 -4.4097 -6.3099 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.3809 -18.7079 -9.8964 6.9345 0.0000 0.0000 -3.8391 7.4483 10.8499 -0.3240 0.0000 -0.0000 -22.8060 -22.6861 4.5827 73.5482 0.0000 0.0000 -12.2493 1.5456 -10.6742 -11.7821 0.0000 -0.0000 - -0.1751 12.5552 24.2678 4.6894 -11.4279 -175.6843 -1.4160 -7.7633 0.2212 -1.4259 -3.1606 -0.0847 11.1874 -0.4302 8.1457 -1.1660 -0.4526 2.6815 -13.1494 -0.6707 -3.0988 6.4354 -6.0729 -4.4019 -0.1617 -3.4115 7.0946 -1.6492 -22.1126 53.5920 0.0000 0.0000 15.3989 -9.3368 -4.6058 0.4178 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.0559 2.7032 -8.3089 1.0376 12.5759 -66.7928 -0.0000 -0.0000 -2.0651 -4.3881 -5.8455 -6.8739 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.1688 -17.1346 -7.4112 9.5147 0.0000 0.0000 -6.2578 7.0910 9.7935 -0.5480 0.0000 -0.0000 -25.4802 -20.6183 4.7973 69.8446 0.0000 0.0000 -13.0363 -1.4581 -5.0026 -9.7904 0.0000 -0.0000 - -0.3732 13.1972 24.2849 4.9099 -10.4332 -176.6964 -1.3687 -7.6575 0.1873 -1.4140 -3.1817 -0.0813 11.1620 -0.5751 8.6269 -0.9809 -0.5147 2.8506 -12.6445 -0.7224 -3.2654 6.3422 -6.4062 -4.7826 -0.1609 -3.2953 7.1883 -1.2357 -23.1337 54.2632 0.0000 0.0000 15.4077 -9.4048 -4.1022 0.4771 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.9140 2.3216 -8.1200 0.7417 11.1545 -66.6394 -0.0000 -0.0000 -2.1733 -3.7997 -4.3614 -6.8842 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 1.7796 -15.7227 -4.6698 12.5486 0.0000 0.0000 -8.6359 6.4936 7.9836 -0.6538 0.0000 -0.0000 -27.4703 -18.5289 4.8920 62.7366 0.0000 0.0000 -13.0049 -3.4440 -0.2526 -7.8509 0.0000 -0.0000 - -0.5737 13.8076 24.2727 4.7643 -9.5775 -177.5583 -1.4694 -7.4170 0.1836 -1.4195 -3.1384 -0.0849 11.0904 -0.9337 8.7589 -0.9149 -0.6299 2.9513 -12.5192 -0.9155 -3.3267 6.2758 -6.7434 -4.9697 -0.5039 -2.8940 7.5750 -1.2622 -25.4333 54.7529 0.0000 0.0000 14.5861 -7.6344 -5.2331 0.7927 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.5386 1.8902 -7.9636 0.5959 10.0019 -66.6175 -0.0000 -0.0000 -1.5098 -1.6786 -1.9052 -6.4191 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.0997 -14.3265 -3.3116 15.1878 0.0000 0.0000 -10.8469 5.7705 7.5193 -0.7794 0.0000 -0.0000 -28.4260 -16.6849 5.2855 52.4401 0.0000 0.0000 -12.8623 -4.2403 1.7733 -7.6888 0.0000 -0.0000 - -0.7457 14.4313 24.2429 4.6751 -9.0797 -178.0646 -1.6458 -7.2539 0.1509 -1.4593 -2.8950 -0.0804 11.1295 -1.4151 8.6445 -0.8797 -0.9652 3.0673 -12.6019 -1.5291 -3.5775 6.1122 -6.9924 -5.0942 -0.7752 -2.7222 7.8013 -1.6081 -27.8238 55.2754 0.0000 0.0000 13.1892 -5.7090 -6.7618 1.0406 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.8843 1.3386 -8.0497 0.5107 9.7405 -66.5668 -0.0000 -0.0000 -0.7707 -0.1822 -0.0543 -5.9646 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 2.9970 -13.3341 -2.7999 16.7499 0.0000 0.0000 -12.3651 5.1790 7.7356 -1.1134 0.0000 -0.0000 -28.0265 -15.5127 6.3701 39.5549 0.0000 0.0000 -10.5876 -3.5914 -0.1444 -8.6688 0.0000 -0.0000 - -0.8901 15.0416 24.2139 4.1440 -9.0192 -178.4578 -2.2133 -7.0935 -0.1035 -1.7504 -2.6637 -0.0826 11.5115 -2.1587 8.5242 -0.8812 -1.3352 3.2096 -13.0115 -2.3126 -3.9293 5.9776 -7.3004 -5.2855 -0.8915 -3.3129 7.8997 -1.5869 -28.5256 55.8958 0.0000 0.0000 12.0926 -4.8717 -7.6516 1.0168 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.2401 1.5957 -8.1273 0.6674 9.3732 -66.3731 -0.0000 -0.0000 -0.4478 -0.0870 1.1117 -5.8319 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 3.6995 -12.8839 -2.3010 17.5244 0.0000 0.0000 -13.3151 4.7295 7.6587 -1.6221 0.0000 -0.0000 -27.3388 -14.8876 8.8035 25.2236 0.0000 0.0000 -3.7342 -1.0940 -5.6954 -9.8005 0.0000 -0.0000 - -1.0468 15.6401 24.1721 3.1382 -9.1694 -178.7505 -3.0311 -7.0340 -0.5931 -2.2089 -2.3105 -0.0874 11.9804 -3.1658 8.2642 -0.9621 -1.5660 3.2607 -13.6286 -3.0030 -4.1726 6.1135 -7.7342 -5.5652 -1.0156 -4.3274 8.1751 -0.9008 -27.7654 56.4694 0.0000 0.0000 11.6106 -4.9542 -7.9693 0.9140 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -6.5707 2.7087 -7.9260 0.9396 8.5361 -66.0247 -0.0000 -0.0000 -0.4252 -0.5626 2.0840 -5.9234 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 4.2056 -12.5402 -2.4213 17.5873 0.0000 0.0000 -14.3858 4.5679 8.1184 -1.8829 0.0000 -0.0000 -26.9187 -13.7478 9.6885 11.0019 0.0000 0.0000 6.0561 4.0439 -10.3573 -10.9914 0.0000 -0.0000 - -1.1953 16.2997 24.1028 2.8389 -9.4579 -178.7136 -3.2667 -7.1986 -0.8289 -2.2331 -1.7581 -0.0861 11.9288 -4.0566 7.6249 -1.1069 -1.7538 3.1655 -14.0609 -3.6304 -4.5114 6.4231 -8.1552 -5.9792 -1.1607 -5.0485 8.4555 0.0430 -27.1754 56.8703 0.0000 0.0000 11.2912 -5.3226 -8.0770 0.9048 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.6415 3.4837 -7.7910 1.2472 7.8560 -65.8004 -0.0000 -0.0000 -0.1800 -0.5361 2.8413 -5.9414 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 6.1832 -12.2858 -3.3592 16.5050 0.0000 0.0000 -15.5612 4.7341 9.6555 -1.6235 0.0000 -0.0000 -26.8042 -12.9092 3.1829 1.4552 0.0000 0.0000 10.1566 10.8363 -7.6737 -11.7064 0.0000 -0.0000 - -1.3053 16.9465 24.0393 2.6553 -9.6251 -178.6631 -3.1797 -6.9901 -0.8507 -2.1322 -1.5446 -0.0816 11.8088 -4.5172 7.1431 -1.3298 -1.9136 3.0868 -14.6172 -4.0413 -5.0609 6.4391 -8.4379 -6.5841 -1.2733 -5.5545 8.6396 0.5043 -26.7863 56.9369 0.0000 0.0000 10.8659 -5.7144 -8.0117 0.8305 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -6.6355 4.0202 -7.9070 1.6697 7.1722 -66.1525 -0.0000 0.0000 0.5261 0.1501 3.1786 -5.9006 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 8.1848 -12.0146 -4.2331 15.4971 0.0000 0.0000 -16.3510 4.7954 11.2019 -1.2553 0.0000 -0.0000 -28.7446 -12.8027 0.3284 0.2475 0.0000 0.0000 6.0279 12.3778 -7.5395 -11.0349 0.0000 -0.0000 - -1.4154 17.5876 23.9961 2.3150 -9.6957 -179.7911 -3.0018 -6.8748 -0.7827 -2.0056 -1.7571 -0.0789 11.8175 -4.2942 7.6267 -1.5188 -1.9135 3.2089 -15.1602 -4.1057 -5.5835 6.1682 -8.5649 -7.2167 -1.1786 -5.6385 8.8355 0.4459 -26.6532 56.7671 0.0000 0.0000 10.4738 -5.8864 -7.5836 0.5867 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -6.6804 4.3242 -8.1211 2.3965 7.0172 -66.8489 -0.0000 0.0000 1.3107 0.7856 3.3084 -5.9705 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 9.4380 -11.4733 -3.6690 15.7480 0.0000 0.0000 -16.7778 4.4985 12.0921 -1.6166 0.0000 -0.0000 -31.2755 -13.1315 1.7846 3.9070 0.0000 0.0000 1.1653 8.3410 -9.1806 -10.1902 0.0000 -0.0000 - -1.5607 18.2835 23.9715 1.8465 -9.2879 177.8400 -2.9481 -6.7430 -0.6188 -1.9019 -2.0672 -0.0613 11.8260 -3.4558 8.5938 -1.5935 -1.7651 3.3632 -15.3814 -4.1837 -5.7758 6.0177 -8.6018 -7.5408 -0.8897 -5.6331 9.1470 0.5438 -26.6866 56.8948 0.0000 0.0000 10.2959 -5.8820 -6.8890 0.2923 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -6.7377 4.3971 -8.2220 3.3630 7.5231 -67.1630 -0.0000 0.0000 1.9028 0.8356 3.8922 -6.0955 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 10.0794 -10.0567 -2.3203 17.2753 0.0000 0.0000 -17.1456 4.0124 13.0844 -3.2012 0.0000 -0.0000 -32.5671 -13.5743 3.2242 7.6386 0.0000 0.0000 1.8919 4.2532 -8.1419 -12.5061 0.0000 -0.0000 - -1.7406 19.0767 23.9553 1.2137 -8.3137 175.4393 -3.3377 -6.4375 -0.4558 -2.0276 -2.1209 -0.0240 11.7528 -2.3365 9.0163 -1.5293 -1.5805 3.2870 -15.2345 -4.5453 -5.6644 6.2503 -8.6400 -7.4834 -0.5479 -5.8208 9.3429 1.6300 -26.4112 57.7880 0.0000 0.0000 10.5893 -6.3887 -6.1451 0.0602 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -6.7537 4.4003 -8.2088 4.4033 8.2408 -66.8838 -0.0000 0.0000 2.5776 0.7561 5.0939 -6.0618 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 10.1640 -7.8449 -1.5187 19.6053 0.0000 0.0000 -17.2697 3.4508 14.5280 -5.4976 0.0000 -0.0000 -32.6021 -13.4922 4.4266 10.3314 0.0000 0.0000 6.2495 4.7706 -7.0663 -16.0460 0.0000 -0.0000 - -1.9286 19.9919 23.9143 0.5529 -7.4557 173.3659 -4.1201 -6.2945 -0.3754 -2.4055 -2.1172 -0.0028 11.6469 -1.2619 8.9960 -1.2762 -1.3457 3.0822 -14.9094 -4.8932 -5.4916 6.6400 -8.6739 -7.3176 -0.1467 -5.7408 9.1904 3.6699 -25.3716 59.2192 0.0000 0.0000 11.4652 -7.8676 -5.6384 -0.0204 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.7707 4.3006 -8.0558 5.5569 8.9812 -66.6223 -0.0000 0.0000 3.5365 1.2216 6.2931 -5.8836 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 10.0365 -5.7515 -0.4278 22.3926 0.0000 0.0000 -16.6662 2.4997 15.3668 -7.9502 0.0000 -0.0000 -31.0739 -13.2696 5.4675 12.2341 0.0000 0.0000 8.3200 7.2584 -8.9857 -18.0106 0.0000 -0.0000 - -2.1495 20.9805 23.8139 -0.3478 -6.2258 171.2766 -5.3427 -5.6224 -0.4672 -3.1392 -2.4151 -0.0384 12.0227 -0.3250 9.1516 -0.9844 -0.9770 2.9105 -14.9510 -4.9278 -5.2674 6.6603 -8.5926 -7.2692 0.1266 -5.7451 9.0658 5.3063 -23.2521 60.3527 0.0000 0.0000 12.2128 -9.4103 -6.0018 0.1213 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.9381 4.6421 -7.5625 6.7854 8.7458 -66.7958 -0.0000 0.0000 4.4092 2.0853 7.2579 -5.7931 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 9.4034 -3.2085 1.1730 25.6632 0.0000 0.0000 -16.0010 0.9443 15.7574 -10.8525 0.0000 -0.0000 -28.3985 -12.1629 5.6751 12.9893 0.0000 0.0000 7.9979 7.3789 -11.8294 -17.1689 0.0000 -0.0000 - -2.4825 22.0237 23.6773 -0.7197 -2.6244 169.6948 -6.6131 -2.8760 -0.5488 -4.1914 -2.8098 -0.0877 13.2237 1.0499 9.2206 -0.9733 -0.4960 2.6221 -15.5610 -4.9469 -4.9623 6.3034 -8.2939 -7.3042 -0.2027 -7.0837 9.4488 5.3380 -20.8994 60.5309 0.0000 0.0000 11.7742 -9.3979 -7.6473 0.1430 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.2318 6.1637 -6.9724 7.7933 6.2821 -66.9187 -0.0000 0.0000 4.7735 3.0180 8.1500 -5.9197 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 8.7660 2.4953 0.5221 29.3011 0.0000 0.0000 -16.2497 -0.7372 18.2603 -14.5362 0.0000 -0.0000 -25.5488 -7.6392 4.1085 13.1598 0.0000 0.0000 7.1702 5.3184 -10.7759 -12.6048 0.0000 -0.0000 - -2.9582 23.1391 23.5906 0.2614 3.7630 168.7815 -7.3022 0.9684 -0.3434 -5.0728 -2.6808 0.0057 14.3471 4.2516 9.1236 -1.3385 -0.0101 2.1281 -16.0450 -5.2250 -4.8253 6.2748 -7.8414 -7.3321 -1.1130 -9.4833 10.0566 3.8479 -20.4112 59.9571 0.0000 0.0000 9.9545 -7.2675 -9.5164 -0.3844 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.2028 8.3941 -7.0482 8.3783 2.9536 -66.5213 -0.0000 0.0000 4.7079 3.9128 8.0866 -6.1051 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 8.1988 12.4726 -3.0301 34.2600 0.0000 0.0000 -15.4514 -2.7737 23.7046 -18.1181 0.0000 -0.0000 -23.1215 0.6577 1.9445 13.9437 0.0000 0.0000 5.8289 3.5142 -5.4904 -7.8108 0.0000 -0.0000 - -3.4606 24.2583 23.6373 1.9373 9.9949 166.7444 -7.1644 2.5789 0.1118 -5.0214 -2.4750 0.2037 13.5964 9.7092 10.1923 -1.6851 0.6741 1.7268 -15.7726 -5.3086 -4.9131 6.8938 -7.3930 -7.3375 -1.8204 -10.6115 10.2293 1.8246 -22.2488 59.3390 0.0000 0.0000 8.0080 -4.7256 -9.5350 -1.3713 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.5269 9.7569 -7.7244 8.6897 2.7949 -66.3296 -0.0000 0.0000 4.6892 3.9719 5.6685 -5.9726 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 5.0880 22.8795 -2.7951 42.0243 0.0000 0.0000 -8.7191 -6.0283 28.4920 -19.5797 0.0000 -0.0000 -20.2982 8.5695 2.2839 13.7340 0.0000 0.0000 3.4835 2.1789 -0.7936 -5.9565 0.0000 -0.0000 - -3.8373 25.2937 23.7928 4.2338 13.5438 162.5041 -5.8693 2.1816 0.6016 -3.8613 -2.4710 0.3725 11.0750 13.7781 12.8949 -1.7400 1.9083 1.7435 -15.2078 -4.0981 -4.5687 7.4977 -7.0627 -7.1876 -1.9115 -8.3041 10.1232 0.4431 -24.2379 59.3243 0.0000 0.0000 7.6977 -4.1080 -7.8507 -2.2365 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.5376 9.8387 -7.9127 8.8584 7.5032 -66.9451 -0.0000 0.0000 4.9951 2.2362 1.7288 -5.6697 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.9776 28.7004 6.4274 51.3065 0.0000 0.0000 4.8583 -11.7947 30.0537 -15.2100 0.0000 -0.0000 -14.9544 13.4658 3.8403 9.5640 0.0000 0.0000 2.0699 0.9572 1.9687 -6.6582 0.0000 -0.0000 - -4.0095 26.1808 23.9176 6.7930 14.1894 158.6503 -3.6848 2.0967 0.9017 -2.4508 -2.1206 0.4751 9.0755 14.0776 14.6085 -1.7641 3.1410 1.7878 -15.0620 -1.9881 -3.5502 7.3601 -6.6222 -6.6675 -1.7662 -4.1668 10.1632 -0.5484 -23.9333 59.9853 0.0000 0.0000 9.4235 -5.4479 -6.2103 -2.2675 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.6637 9.1029 -7.6017 9.1464 13.8042 -67.5884 -0.0000 0.0000 5.6264 0.3266 -0.9808 -5.3020 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -8.6009 28.1213 18.0660 59.5672 0.0000 0.0000 15.5322 -18.0656 29.4651 -8.1518 0.0000 -0.0000 -8.0022 15.9037 2.1002 3.5016 0.0000 0.0000 2.6306 0.2607 5.5539 -7.3839 0.0000 -0.0000 - -4.0358 26.8685 23.9703 8.1024 14.0358 158.8146 -2.0664 3.3094 0.8818 -1.7741 -1.4002 0.4780 8.9424 12.8480 12.9606 -1.9382 3.5975 1.3086 -15.5554 -0.6574 -2.5866 6.6196 -5.7906 -5.8928 -2.0740 -2.2643 10.2271 -2.6283 -21.2637 60.3936 0.0000 0.0000 12.1795 -6.7228 -4.6743 -1.5357 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -3.8056 8.3534 -7.8055 9.6902 16.6079 -67.8496 -0.0000 0.0000 6.5628 0.9602 -1.0952 -4.2096 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -12.5628 24.8446 23.7007 66.4582 0.0000 0.0000 14.0372 -19.8090 26.2179 -5.3140 0.0000 -0.0000 -3.9378 17.0568 1.3704 1.5307 0.0000 0.0000 2.5383 -0.5198 5.2044 -6.9477 0.0000 -0.0000 - -3.9841 27.4094 24.0020 7.5337 14.0966 162.3547 -1.8900 4.9875 0.6694 -1.9571 -0.5617 0.4651 10.1759 11.5032 9.3843 -2.0288 3.4522 0.5448 -16.1100 -0.2890 -2.2221 6.1124 -4.7031 -5.2880 -3.0369 -2.8578 10.0689 -5.9715 -19.4527 59.8780 0.0000 0.0000 14.9399 -6.7916 -2.5962 -0.9706 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.6703 8.0790 -8.6910 10.8892 15.5831 -68.3409 -0.0000 0.0000 7.2206 3.4570 -0.1107 -2.9560 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.9494 21.5132 23.5913 70.9270 0.0000 0.0000 3.6170 -16.8724 19.3150 -6.0049 0.0000 -0.0000 -4.1964 17.3639 3.5387 4.9634 0.0000 0.0000 -0.1725 -1.7085 0.1067 -6.4004 0.0000 -0.0000 - -3.8525 27.9379 24.0527 6.4075 13.1270 165.1268 -2.4355 5.5168 0.6445 -2.2761 -0.2017 0.4425 11.4102 10.5945 7.1525 -1.8208 3.2704 0.1215 -16.1094 -0.1018 -2.2840 6.3249 -3.7445 -5.0954 -4.2437 -3.1685 9.6165 -9.4299 -20.4760 58.5370 0.0000 0.0000 17.3663 -6.3070 -0.3360 -1.0913 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.4204 7.9018 -9.4000 12.8697 15.0666 -69.5893 -0.0000 0.0000 7.0349 4.3939 -0.0007 -2.3819 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -19.4419 17.0530 22.7161 71.7845 0.0000 0.0000 -6.2586 -12.8207 10.2310 -6.4090 0.0000 -0.0000 -4.6634 16.1835 4.1163 8.2495 0.0000 0.0000 -3.2574 -2.7418 -2.9997 -6.2102 0.0000 -0.0000 - -3.7168 28.5002 24.1194 6.0903 11.8272 165.2529 -2.7112 5.2869 0.7794 -2.3083 -0.4094 0.4038 11.9212 10.5351 7.1046 -1.5008 3.3898 0.1031 -15.7490 0.0928 -2.3023 6.9703 -3.2660 -5.0968 -5.0499 -2.3993 9.2041 -12.2004 -22.0005 57.0885 0.0000 0.0000 19.2140 -6.1692 1.0032 -1.4107 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.6476 7.8140 -9.4060 15.0683 17.7414 -71.1732 -0.0000 0.0000 6.4720 2.8301 0.0486 -2.5336 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -22.7630 12.5035 23.2690 69.2241 0.0000 0.0000 -12.1821 -9.1765 1.9752 -4.6110 0.0000 -0.0000 -3.2672 14.9375 3.5429 8.7886 0.0000 0.0000 -4.9772 -3.3481 -3.0728 -5.9462 0.0000 -0.0000 - -3.6131 29.0464 24.1543 6.3754 11.0757 164.4277 -2.4217 5.2771 0.8621 -2.1022 -0.7000 0.3643 11.8983 10.9904 7.6049 -1.3576 3.6366 0.1083 -15.4146 -0.0848 -2.1086 7.6048 -3.2341 -4.9462 -5.2778 -1.6629 9.0557 -14.0739 -21.6290 56.4544 0.0000 0.0000 20.2705 -6.2543 0.9496 -1.4215 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.4040 8.0137 -9.1352 16.9576 22.0564 -72.2795 -0.0000 0.0000 6.5384 2.0303 1.2640 -2.7986 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -25.6974 9.7490 23.2108 63.9476 0.0000 0.0000 -15.6185 -5.8340 -2.8213 -2.4538 0.0000 -0.0000 -1.5718 14.4591 3.1661 9.0966 0.0000 0.0000 -6.4968 -3.6878 -2.2499 -5.5969 0.0000 -0.0000 - -3.5266 29.5591 24.1371 6.6812 10.8549 164.0853 -1.9983 5.6700 0.7995 -1.8654 -0.7409 0.3535 11.8097 11.4138 7.6303 -1.3645 3.7731 -0.0071 -15.1538 -0.5738 -1.8222 8.0136 -3.2809 -4.6127 -5.2258 -1.2443 8.9822 -15.4013 -20.3770 56.6658 0.0000 0.0000 20.7910 -5.7536 0.1486 -1.1907 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0802 8.5487 -9.0307 18.5108 24.8403 -72.9338 -0.0000 0.0000 7.4076 3.9949 2.6597 -2.6650 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -28.5772 9.1005 20.9451 56.8756 0.0000 0.0000 -16.8230 -4.1369 -3.0432 -2.1455 0.0000 -0.0000 -0.6784 14.4689 3.3273 10.6937 0.0000 0.0000 -8.7706 -3.9820 -2.1866 -5.4785 0.0000 -0.0000 - -3.4342 30.0889 24.1008 7.2269 10.6949 163.6477 -1.6149 6.0757 0.7116 -1.6167 -0.6929 0.3588 11.8247 11.6624 7.6642 -1.3051 3.8750 -0.0833 -14.8437 -0.8552 -1.5248 8.1734 -3.0728 -4.2910 -5.1714 -0.6196 8.7651 -16.4330 -20.3099 57.2630 0.0000 0.0000 21.2674 -4.7476 -0.5411 -1.0459 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.6522 9.1105 -8.8595 20.3256 25.3796 -73.7103 -0.0000 0.0000 8.2354 6.1172 2.8544 -2.4076 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -30.9053 9.2876 17.1893 48.6721 0.0000 0.0000 -14.5122 -3.8947 0.6765 -3.5008 0.0000 -0.0000 0.8679 14.6416 3.3039 11.5580 0.0000 0.0000 -10.6907 -4.2763 -2.1118 -5.3969 0.0000 -0.0000 - -3.3260 30.6682 24.0780 8.2600 10.4029 162.7288 -1.1377 6.3585 0.6810 -1.2801 -0.7545 0.3392 11.8267 11.8246 8.0091 -1.1438 4.0780 -0.0764 -14.4579 -0.5922 -1.1678 8.1740 -2.6095 -4.0893 -5.1638 0.0684 8.5085 -17.0145 -21.4441 57.9340 0.0000 0.0000 22.0619 -3.9992 -0.9311 -0.9808 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 1.4561 9.5357 -8.2587 22.4407 25.5970 -74.5503 -0.0000 0.0000 8.5249 5.7403 2.1214 -2.2096 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -31.9017 9.4377 12.6842 39.4430 0.0000 0.0000 -8.0191 -3.3276 7.2910 -5.3658 0.0000 -0.0000 4.0045 14.9612 2.6878 10.4216 0.0000 0.0000 -11.4745 -4.5035 -1.3211 -5.1363 0.0000 -0.0000 - -3.1995 31.2664 24.0546 9.1804 10.2206 162.2719 -0.6966 6.6910 0.6740 -0.9297 -0.8854 0.2984 11.7010 11.9242 8.1505 -1.0097 4.3570 -0.1507 -14.0394 0.1029 -0.7613 8.2071 -2.0717 -4.0044 -5.1393 0.3080 8.3991 -17.1152 -22.6471 58.3456 0.0000 0.0000 23.3284 -3.6516 -1.3982 -0.7390 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.9098 9.7730 -7.4020 24.3825 27.0556 -75.1519 -0.0000 0.0000 8.6393 4.1254 1.8109 -2.1408 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -32.0393 9.6019 7.2886 29.7448 0.0000 0.0000 1.6974 -1.5454 15.4109 -7.4154 0.0000 -0.0000 7.4194 15.3062 1.6189 8.7016 0.0000 0.0000 -11.8873 -4.6545 -0.5338 -4.9860 0.0000 -0.0000 - -3.0565 31.8415 24.0074 9.3812 10.4311 162.9122 -0.5607 7.1117 0.6773 -0.7032 -0.9919 0.2637 11.5394 12.0835 7.8916 -0.9522 4.6371 -0.3417 -13.7119 0.9893 -0.4755 8.3934 -1.5419 -4.0716 -5.0582 0.1043 8.3583 -17.0788 -23.4003 58.1525 0.0000 0.0000 25.0051 -3.3153 -2.3775 -0.3795 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 1.9713 9.8437 -6.8682 26.0167 28.9166 -75.5457 -0.0000 0.0000 8.9464 3.8679 2.3941 -2.1014 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -32.4394 9.7494 1.7366 20.7388 0.0000 0.0000 11.0689 2.0092 22.4739 -9.3608 0.0000 -0.0000 9.7357 15.5141 0.7110 7.8136 0.0000 0.0000 -12.7480 -4.7210 -0.8226 -5.0212 0.0000 -0.0000 - -2.8944 32.3943 23.9393 9.1333 10.7694 164.0395 -0.5522 7.3287 0.7416 -0.5779 -1.1522 0.2397 11.4660 12.4993 7.6989 -0.9291 4.9446 -0.5153 -13.5906 1.9195 -0.3717 8.7072 -0.9962 -4.3103 -4.8786 -0.1940 8.3094 -17.2278 -23.6751 57.3321 0.0000 0.0000 26.7736 -2.7965 -3.9677 -0.1159 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 1.8654 9.9663 -6.8255 27.4461 29.6187 -75.9537 -0.0000 0.0000 9.3411 4.9591 3.1484 -2.1025 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -33.2197 9.4168 -1.6993 13.4481 0.0000 0.0000 15.0249 5.7231 25.7829 -10.6107 0.0000 -0.0000 11.4007 15.4825 0.0296 7.3513 0.0000 0.0000 -13.7973 -4.6116 -1.7305 -4.8849 0.0000 -0.0000 - -2.7196 32.9583 23.8634 8.9623 11.0001 164.9500 -0.4300 7.2714 0.8268 -0.3719 -1.4119 0.2115 11.3776 13.0920 7.9330 -0.9213 5.3095 -0.6084 -13.6474 2.8647 -0.2606 9.0715 -0.4958 -4.5757 -4.5661 -0.4267 8.3724 -17.5219 -23.5641 56.2254 0.0000 0.0000 28.2160 -2.1149 -5.8212 0.1373 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 1.7502 10.4337 -6.8365 28.4969 29.4696 -76.3321 -0.0000 0.0000 9.6357 5.7136 3.2668 -2.1657 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -33.8380 8.7026 -2.1983 8.4550 0.0000 0.0000 12.3765 7.0259 24.1677 -10.3425 0.0000 -0.0000 13.3049 15.3318 -0.8721 6.6001 0.0000 0.0000 -14.5678 -4.3372 -2.1882 -4.7873 0.0000 -0.0000 - -2.5381 33.5487 23.7871 8.7826 11.2223 165.7634 -0.2574 7.1060 0.8870 -0.1274 -1.7070 0.1875 11.1687 13.7295 8.3455 -0.9527 5.6506 -0.6510 -13.7492 3.7212 -0.0432 9.3699 -0.1121 -4.6940 -4.1792 -0.7456 8.5108 -17.6956 -23.3989 55.2433 0.0000 0.0000 29.1208 -1.4976 -7.3936 0.4857 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.7504 11.1358 -6.5452 28.9385 29.7696 -76.6113 -0.0000 0.0000 9.8447 5.2108 2.6454 -2.1724 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -34.1265 8.0439 -2.4099 5.5329 0.0000 0.0000 7.2404 6.8745 18.9466 -8.4862 0.0000 -0.0000 15.2745 15.1285 -1.7767 5.7980 0.0000 0.0000 -15.2139 -3.9806 -2.4786 -5.3122 0.0000 -0.0000 - -2.3584 34.1372 23.7108 8.0376 11.7038 166.9433 -0.3365 6.9447 1.0030 -0.0702 -1.9261 0.1924 10.9685 14.4240 8.5632 -1.0372 5.8786 -0.7207 -13.8739 4.3964 0.1177 9.4394 0.2523 -4.7227 -3.8047 -1.4073 8.4934 -17.6600 -23.2539 54.5513 0.0000 0.0000 29.6623 -1.3344 -8.3128 0.6609 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 1.8211 11.6512 -6.2051 29.0653 30.7593 -76.8120 -0.0000 0.0000 9.9025 3.7402 1.5025 -2.1446 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -34.4802 7.8429 -4.0336 3.7559 0.0000 0.0000 4.6194 6.6783 13.2310 -6.7886 0.0000 -0.0000 16.4032 14.9093 -2.2292 5.4795 0.0000 0.0000 -15.9950 -3.5961 -3.3796 -5.9364 0.0000 -0.0000 - -2.1866 34.7168 23.6382 6.7429 12.2667 168.5563 -0.6282 6.6086 1.1966 -0.1517 -2.1842 0.1866 10.9081 15.2606 8.5724 -1.1867 6.0097 -0.8041 -14.1312 5.0429 0.1125 9.2688 0.7474 -4.8347 -3.5486 -2.4410 8.3495 -17.5772 -23.1016 53.7359 0.0000 0.0000 30.4341 -1.1848 -8.5592 0.4884 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 1.7939 12.0538 -6.1221 29.2219 31.8953 -76.8200 -0.0000 0.0000 9.7457 2.1013 0.0030 -2.2545 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -34.7001 8.3201 -5.8106 2.6751 0.0000 0.0000 5.4534 6.1175 9.6352 -6.2456 0.0000 -0.0000 16.6980 14.5229 -2.1817 5.6535 0.0000 0.0000 -16.8169 -3.0143 -4.9423 -5.5050 0.0000 -0.0000 - -2.0307 35.3062 23.5740 5.0478 12.6041 170.1866 -1.0236 5.7828 1.3833 -0.3171 -2.6375 0.1373 10.8982 16.3097 8.7172 -1.4327 6.1842 -0.8533 -14.7086 5.8281 0.0779 9.0175 1.3095 -5.0265 -3.1609 -4.0730 8.3639 -17.8685 -22.7822 52.3909 0.0000 0.0000 31.8588 -0.4078 -8.3389 0.3571 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.5765 12.9991 -5.9733 29.1908 33.2364 -76.4020 -0.0000 0.0000 9.4927 1.1820 -1.6259 -2.4444 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -34.5927 9.4060 -6.2718 3.1390 0.0000 0.0000 6.9746 4.8754 9.7000 -5.8825 0.0000 -0.0000 16.4083 13.8724 -1.7803 6.1827 0.0000 0.0000 -17.4297 -2.0074 -6.6282 -4.2638 0.0000 -0.0000 - -1.8829 35.9339 23.5033 2.7308 12.7758 171.6276 -1.7346 4.4035 1.5688 -0.6784 -3.2908 0.0602 10.7124 17.8438 9.2164 -1.7392 6.3718 -0.8471 -15.6406 6.5311 0.0429 8.7447 1.7333 -5.1917 -2.4321 -6.3190 8.4473 -18.4523 -22.6179 50.5751 0.0000 0.0000 33.7781 -0.1085 -7.6240 0.5999 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.3245 14.3413 -5.3754 28.8644 35.3404 -75.7425 -0.0000 0.0000 9.2852 0.9833 -2.9960 -2.3893 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -34.3115 10.8027 -5.1822 5.2669 0.0000 0.0000 8.2134 2.9015 11.9131 -4.7835 0.0000 -0.0000 15.4515 13.0726 -1.0724 6.9285 0.0000 0.0000 -17.8391 -0.6989 -8.2743 -4.3567 0.0000 -0.0000 - -1.7129 36.6067 23.4095 -0.4148 12.8300 173.2307 -2.9655 2.5428 1.9238 -1.4304 -4.1324 -0.0507 10.5718 20.3021 9.7123 -2.0676 6.2870 -0.8522 -16.9502 6.6413 -0.2357 8.2973 2.0123 -5.3139 -1.5508 -9.1929 8.0934 -18.1842 -22.2549 49.2061 0.0000 0.0000 35.2869 -2.3828 -5.5012 1.3630 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 1.0431 15.2840 -4.8641 28.5747 37.7201 -74.7735 -0.0000 0.0000 9.1435 0.4349 -3.7064 -1.9955 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -33.8030 11.9131 -3.9990 6.5647 0.0000 0.0000 11.6387 1.1338 13.1676 -3.3203 0.0000 -0.0000 13.7386 12.0390 -0.1242 7.7815 0.0000 0.0000 -18.3258 0.4177 -10.1392 -6.8176 0.0000 -0.0000 - -1.4810 37.2990 23.3426 -4.0828 11.7350 174.9053 -4.4287 -0.5767 2.5067 -2.5528 -5.8677 -0.3590 10.9147 24.6490 9.7720 -2.5642 5.7041 -0.9526 -18.9783 5.8219 -0.8449 7.6815 2.3105 -5.3118 -0.8543 -13.5041 7.4378 -15.6494 -20.0911 49.1965 0.0000 0.0000 35.4713 -6.4983 -0.5964 3.2746 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.3764 16.3636 -5.2877 27.9060 38.3380 -72.1106 -0.0000 0.0000 9.0999 -0.4524 -3.3914 -1.5320 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -32.7017 11.2332 -4.5874 4.3949 0.0000 0.0000 17.6394 1.0569 12.1968 -1.6997 0.0000 -0.0000 11.3543 9.7337 1.4982 9.0282 0.0000 0.0000 -18.9639 1.1785 -12.3478 -9.3227 0.0000 -0.0000 - -1.1688 38.0239 23.3627 -7.0780 8.7608 175.3980 -5.1692 -4.5324 2.9332 -3.2247 -9.9094 -1.1875 10.4554 30.7044 10.2268 -3.3477 4.8006 -1.0098 -21.5450 4.4709 -1.2628 7.2296 2.5224 -4.9889 -0.1907 -18.7562 7.6476 -10.5152 -16.4113 49.5608 0.0000 0.0000 34.2249 -8.8607 7.2230 6.2274 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.5843 18.6276 -6.3749 26.3423 36.5226 -67.0092 -0.0000 0.0000 8.9819 0.0897 -2.2864 -1.0413 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -30.6108 7.6335 -5.2599 -0.5648 0.0000 -0.0000 22.5727 1.9861 9.3226 -0.3128 0.0000 -0.0000 9.3334 5.6036 4.1752 10.8845 0.0000 0.0000 -19.1291 1.9271 -14.4020 -10.6661 0.0000 -0.0000 - -0.8368 38.7428 23.4589 -9.1517 5.5651 173.6474 -4.7818 -6.7061 2.9261 -2.8071 -14.4970 -2.0414 7.6621 33.4742 12.4955 -4.2189 4.4934 -0.7057 -24.0947 3.8513 -0.6484 6.6562 2.1290 -4.3347 1.2079 -22.2550 9.5251 -3.8071 -14.1242 49.0900 0.0000 0.0000 31.4719 -8.1108 15.4457 7.9046 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.7823 21.6963 -7.1394 24.0816 34.0682 -61.4563 -0.0000 0.0000 8.5905 2.2937 -1.4157 -0.5278 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -29.4642 2.8077 -4.3989 -3.1876 0.0000 -0.0000 22.8151 2.7782 7.5536 0.2747 0.0000 0.0000 7.9172 1.5260 7.6178 13.3841 0.0000 0.0000 -18.0565 2.5749 -15.5035 -12.1728 0.0000 -0.0000 - -0.5526 39.3614 23.5894 -10.9836 4.0850 170.4386 -4.2350 -6.3837 2.6014 -2.4269 -13.5132 -1.6507 6.4846 26.7843 14.2445 -4.9709 5.1028 0.0853 -26.9818 4.6002 1.3865 4.9125 0.9215 -3.5986 3.3227 -21.4066 12.6078 2.8488 -15.5150 48.5858 0.0000 0.0000 26.7095 -6.5925 19.1313 6.4022 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.3978 23.3632 -7.3792 21.7249 33.6120 -58.4902 -0.0000 0.0000 8.0819 3.1675 -1.6029 -0.4676 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -30.5345 -0.8371 -4.0789 -1.2602 0.0000 -0.0000 19.6459 3.3280 9.3365 0.2152 0.0000 0.0000 5.9458 -0.6700 10.9272 16.8575 0.0000 0.0000 -15.8527 2.6701 -15.6098 -15.1090 0.0000 -0.0000 - -0.2817 39.9226 23.7290 -11.5997 3.4681 168.3228 -3.5156 -4.9957 1.9893 -2.3232 -7.9760 -0.5795 7.8557 15.3547 13.8233 -5.2165 4.8292 1.0427 -29.8288 5.1516 3.7000 1.7525 -0.5892 -2.9400 5.1365 -15.9496 15.5701 8.5405 -20.7069 49.3337 0.0000 0.0000 20.0788 -7.3517 14.8297 3.3208 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.4309 20.5888 -7.9772 20.6460 36.9445 -59.0776 -0.0000 0.0000 7.3383 -0.0559 -2.3107 -1.5945 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -30.4611 -2.8387 -3.8437 0.9437 0.0000 0.0000 17.1955 3.3441 10.6331 -0.0183 0.0000 -0.0000 3.9718 -2.3367 13.0520 21.8303 0.0000 0.0000 -12.9647 2.5775 -16.0771 -17.8563 0.0000 -0.0000 - 0.0284 40.4558 23.8681 -11.2420 2.0010 168.8711 -2.3530 -3.8730 1.4132 -1.9907 -4.6801 -0.0713 9.3785 8.4105 12.3354 -4.9312 3.0639 1.6339 -32.1833 3.5422 3.7921 -1.3713 -2.1783 -2.3127 6.2721 -10.5610 17.4947 13.4523 -25.6318 50.5704 0.0000 0.0000 13.3944 -8.8209 5.2082 0.9669 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 4.0501 14.5434 -9.9641 20.5256 40.7387 -60.3090 -0.0000 0.0000 5.7820 -4.8689 -1.2098 -3.5001 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -28.3494 -4.3202 -3.7605 1.2564 0.0000 0.0000 15.8067 3.4326 9.2912 -0.0399 0.0000 -0.0000 1.1904 -5.7397 13.4391 29.6031 0.0000 0.0000 -9.3276 3.3525 -17.7909 -17.4660 0.0000 -0.0000 - 0.3663 40.9476 23.9653 -11.2242 -0.5269 171.4942 -1.5435 -3.4019 1.0037 -1.7652 -3.6665 -0.0081 10.8112 4.4367 10.5590 -4.5804 1.0611 1.9878 -33.6946 0.3890 1.3121 -2.8520 -4.2471 -2.1725 7.1518 -8.3376 18.1272 18.3641 -27.0961 50.9967 0.0000 0.0000 8.7642 -5.6514 -4.5997 -0.4661 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 4.6656 10.6730 -12.5138 19.8558 39.8223 -60.0507 -0.0000 0.0000 4.2586 -5.9712 2.2915 -4.6530 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -25.9961 -6.1705 -4.2065 0.3734 0.0000 0.0000 14.3561 3.5864 6.5096 0.0092 0.0000 0.0000 -3.9808 -10.9778 11.8730 39.9070 0.0000 0.0000 -4.9022 5.4364 -19.4478 -13.8807 0.0000 -0.0000 - 0.6827 41.4098 24.0071 -11.8647 -3.1868 174.3346 -1.5429 -3.3933 0.7451 -1.7768 -3.3677 -0.0342 11.8509 1.5470 9.3768 -4.3979 -0.7467 2.4114 -33.4296 -3.4555 -2.8823 -2.7277 -6.5759 -2.7552 7.9510 -8.9349 17.4369 22.9569 -25.9862 50.5737 0.0000 0.0000 6.5181 1.2107 -12.1084 -0.5439 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.6387 9.7597 -14.3485 18.8705 35.0290 -59.4097 -0.0000 0.0000 3.6319 -2.1293 6.0148 -5.1226 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -24.2970 -8.2572 -4.7653 -1.0200 0.0000 -0.0000 13.1001 3.6086 3.8517 -0.1369 0.0000 -0.0000 -10.7752 -16.0886 9.4873 49.7937 0.0000 0.0000 -1.6420 7.8659 -18.8941 -11.3904 0.0000 -0.0000 - 0.9028 41.8922 24.0515 -11.7965 -4.7734 176.0246 -1.5055 -3.2795 0.6832 -1.7703 -2.8922 0.0230 12.6807 -0.6116 9.0016 -4.1603 -2.4530 3.0297 -31.2616 -7.2532 -7.2187 -1.8590 -8.3819 -3.5341 8.3078 -10.7407 15.5138 26.2281 -24.3523 50.2131 0.0000 0.0000 5.6063 5.8009 -15.3488 -0.4174 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.9793 9.1485 -15.1961 18.0100 30.8070 -59.0896 -0.0000 0.0000 3.4504 2.0556 7.4658 -5.4313 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -22.1300 -9.6381 -4.8682 -2.3383 0.0000 -0.0000 12.2244 3.6674 2.1456 -0.3920 0.0000 -0.0000 -15.8436 -19.0957 8.3089 56.3509 0.0000 0.0000 -2.2224 8.9429 -15.0109 -11.4383 0.0000 -0.0000 - 0.9781 42.4018 24.1469 -10.4041 -5.0134 176.6939 -0.8043 -2.9994 0.6905 -1.4926 -2.1819 0.1415 13.3520 -2.2347 8.8709 -3.6158 -3.9932 3.6676 -27.8981 -10.2080 -9.8877 -0.4004 -9.0251 -3.8787 7.9259 -12.3119 12.9289 27.6092 -23.6075 50.6672 0.0000 0.0000 5.1718 5.8118 -14.0186 -1.1577 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 2.8573 7.4535 -15.3672 16.7101 29.2367 -58.2562 -0.0000 0.0000 3.1857 1.8046 6.4929 -5.3734 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -19.3086 -9.7802 -4.5847 -2.4325 0.0000 -0.0000 10.8671 3.8823 1.3563 -0.5556 0.0000 -0.0000 -17.7710 -19.7729 8.9976 58.6339 0.0000 0.0000 -5.6563 7.6918 -9.3771 -12.2447 0.0000 -0.0000 - 0.9286 42.8970 24.2809 -8.6737 -4.2842 177.1748 0.1317 -2.6997 0.6380 -1.0862 -1.6059 0.1951 13.7351 -3.4181 8.3966 -2.8583 -5.0207 4.0272 -24.2806 -11.8001 -10.3227 1.6808 -8.6135 -3.8016 7.1838 -13.2881 10.6229 27.1495 -24.0913 51.5996 0.0000 0.0000 5.3266 3.0587 -10.2932 -1.6053 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.7618 5.6107 -15.0375 14.5250 28.3225 -56.2680 -0.0000 0.0000 2.6874 -1.5906 5.1596 -5.1512 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -17.0168 -8.7079 -4.1161 -0.9173 0.0000 -0.0000 8.6381 4.0855 0.8188 -0.6556 0.0000 -0.0000 -18.4201 -18.6591 10.1488 57.3500 0.0000 0.0000 -8.5796 5.5189 -5.0124 -12.5194 0.0000 -0.0000 - 0.8333 43.3611 24.4120 -7.3474 -3.0971 178.0622 0.8088 -2.4723 0.5203 -0.7796 -1.2357 0.1911 14.0873 -4.2222 7.6404 -2.1903 -5.4085 4.0489 -21.2482 -12.1008 -9.6104 3.7215 -8.0055 -3.7584 6.5338 -13.8004 9.1474 25.4636 -25.6452 52.1713 0.0000 0.0000 6.5858 -1.1202 -6.3144 -1.2002 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.9448 4.5151 -14.3211 11.7828 25.7744 -54.0170 -0.0000 0.0000 2.0367 -3.3745 4.5725 -4.8763 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.2256 -6.9880 -3.5967 0.6678 0.0000 0.0000 6.5053 4.2318 -0.0336 -0.7881 0.0000 -0.0000 -19.4201 -16.6241 10.5585 53.7506 0.0000 0.0000 -9.7009 4.2492 -3.5425 -11.6164 0.0000 -0.0000 - 0.7620 43.8090 24.5183 -6.1663 -2.0684 179.3099 1.3672 -2.4323 0.4110 -0.5266 -1.0231 0.1747 14.6957 -4.6703 7.0868 -1.7567 -5.4322 3.9680 -19.2160 -11.8173 -9.1175 5.0038 -7.9686 -4.2306 6.0250 -13.8365 8.5204 23.2655 -27.9603 51.8595 0.0000 0.0000 8.9404 -6.2552 -2.4659 -0.4008 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.2567 3.8713 -13.5876 8.9972 21.9662 -52.5867 -0.0000 0.0000 1.3050 -2.3739 3.6587 -4.6598 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -12.9458 -5.4908 -3.3976 0.9296 0.0000 0.0000 5.1425 4.4837 -1.0185 -0.8533 0.0000 -0.0000 -20.4586 -14.7834 10.6104 48.4461 0.0000 0.0000 -9.5484 3.9118 -4.5248 -9.5968 0.0000 -0.0000 - 0.7322 44.2266 24.5824 -5.2332 -1.7660 -179.3640 1.9751 -2.7405 0.3611 -0.2646 -0.9538 0.1513 15.1234 -4.9356 6.9211 -1.4932 -5.4660 3.9971 -17.9273 -11.8379 -9.4551 5.4561 -8.5394 -5.4180 5.6198 -13.2521 8.4080 20.9837 -30.7739 50.9962 0.0000 0.0000 11.5811 -10.1696 1.5352 0.4144 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.3988 3.1172 -13.2235 6.2651 18.6773 -51.9595 -0.0000 0.0000 0.5411 -1.5310 1.4884 -4.4904 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.5916 -4.9013 -3.8430 0.3737 0.0000 0.0000 4.1423 4.7611 -1.6684 -0.7715 0.0000 -0.0000 -21.5329 -13.9612 11.1242 41.8713 0.0000 0.0000 -8.7380 3.9846 -6.8290 -7.5380 0.0000 -0.0000 - 0.7380 44.5820 24.5875 -5.2265 -2.5014 -178.0802 2.3796 -3.4522 0.3831 -0.0935 -1.0246 0.1153 14.7774 -5.2779 6.8809 -1.2671 -5.6800 4.1466 -16.9195 -12.7558 -10.5063 5.4128 -9.3253 -7.0230 5.3991 -12.2589 8.3655 18.8541 -33.5801 50.4799 0.0000 0.0000 13.6003 -10.9948 5.3296 0.8511 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.9756 2.1835 -13.1989 3.6295 16.6956 -51.6454 -0.0000 -0.0000 -0.3143 -2.8393 -1.0812 -4.3504 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.4748 -5.4858 -5.0674 0.0459 0.0000 0.0000 3.1064 4.8898 -1.6986 -0.7045 0.0000 -0.0000 -23.6940 -14.2198 12.1310 34.6705 0.0000 0.0000 -7.0489 4.3221 -9.9532 -6.6082 0.0000 -0.0000 - 0.7718 44.9025 24.5441 -6.0034 -4.0190 -176.9671 2.4271 -4.3220 0.4580 -0.0788 -1.1003 0.0712 14.0277 -5.7947 6.7375 -1.0262 -6.1203 4.3607 -16.0747 -14.5536 -11.8393 5.2834 -10.0528 -8.4010 5.2738 -11.5734 8.0638 16.9646 -35.5879 50.7620 0.0000 0.0000 14.7751 -9.8860 7.9260 0.6424 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.4916 1.1960 -13.4164 1.3447 15.5961 -51.2012 -0.0000 -0.0000 -1.4629 -4.9788 -2.9198 -4.4935 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -9.4265 -6.9337 -6.7225 -0.0622 0.0000 -0.0000 2.1703 4.9320 -1.3116 -0.7745 0.0000 -0.0000 -26.8706 -14.8708 12.9874 27.0028 0.0000 0.0000 -3.2016 5.3837 -13.4341 -8.1466 0.0000 -0.0000 - 0.8140 45.2827 24.4821 -6.1796 -5.7265 -176.1964 2.7459 -5.1253 0.5581 0.0270 -0.9397 0.0574 13.5242 -6.4117 6.4939 -0.7803 -6.7875 4.6274 -15.4575 -16.6880 -13.0860 5.4763 -10.6806 -9.0549 5.1035 -11.8151 7.4176 15.2403 -36.4508 51.4983 0.0000 0.0000 15.5752 -9.1996 8.9104 0.1045 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.9696 -0.0029 -14.0134 -0.1886 14.9466 -50.3856 -0.0000 -0.0000 -2.8256 -6.0937 -4.0047 -5.0376 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -8.5389 -8.7349 -7.7940 -0.4644 0.0000 -0.0000 1.2971 5.0712 -1.1431 -0.7963 0.0000 -0.0000 -29.0947 -15.3539 13.2446 18.9890 0.0000 0.0000 3.0208 7.7477 -15.8052 -12.5786 0.0000 -0.0000 - 0.8419 45.7477 24.4172 -5.6577 -7.3126 -175.8547 3.3618 -5.8774 0.6807 0.3052 -0.5762 0.0636 13.2744 -6.9255 6.2575 -0.5294 -7.5250 4.9009 -15.0294 -18.5521 -14.0565 6.0775 -11.2398 -9.0297 4.9627 -12.7054 6.6461 13.6533 -37.1165 52.1203 0.0000 0.0000 16.6096 -9.2903 9.3424 -0.1624 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -2.3193 -1.4479 -14.9455 -0.7007 14.5294 -49.5236 -0.0000 -0.0000 -3.8161 -6.1865 -4.6946 -5.7161 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.7842 -10.5391 -7.8688 -0.7408 0.0000 -0.0000 0.0807 5.3563 -1.3202 -0.6119 0.0000 -0.0000 -30.3247 -15.7108 12.9840 12.3360 0.0000 0.0000 8.4118 10.6185 -15.4842 -16.3526 0.0000 -0.0000 - 0.8414 46.2446 24.3659 -5.5346 -8.4354 -176.0729 3.7444 -6.1766 0.7320 0.4309 -0.3073 0.0781 13.1515 -7.2254 6.1977 -0.2735 -8.0770 5.1339 -14.7449 -19.8321 -14.6358 6.6535 -11.6684 -8.7400 5.0066 -13.3199 6.1031 12.3898 -38.8238 52.4066 0.0000 0.0000 17.9664 -9.2086 10.0830 0.3227 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -2.5447 -2.5237 -15.7836 -0.3186 14.1207 -49.3253 -0.0000 -0.0000 -3.9572 -5.9931 -4.7814 -5.9404 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.6591 -11.7972 -7.7852 -0.2195 0.0000 -0.0000 -1.5708 5.5591 -1.0519 -0.4650 0.0000 -0.0000 -31.8965 -15.6860 13.6645 8.4034 0.0000 0.0000 9.8509 11.7874 -12.9874 -15.7448 0.0000 -0.0000 - 0.8150 46.7721 24.3241 -5.9842 -9.1054 -177.0266 3.7477 -6.0509 0.6842 0.3612 -0.2213 0.1047 13.2243 -7.1936 6.4540 -0.0506 -8.2983 5.3046 -14.5126 -20.6155 -14.8307 6.8882 -11.8313 -8.5041 5.1809 -13.4238 5.9889 11.7756 -41.3110 52.3989 0.0000 0.0000 19.1536 -8.8429 10.3299 1.2047 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.6909 -2.8794 -16.2841 0.4303 14.0603 -49.9214 -0.0000 -0.0000 -3.4868 -5.7270 -4.0686 -5.5485 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.2102 -12.4976 -7.9094 0.8822 0.0000 0.0000 -3.3933 5.4538 -0.0050 -0.5610 0.0000 -0.0000 -33.7495 -15.3379 16.1548 6.6305 0.0000 0.0000 8.3134 10.6483 -9.8461 -12.3669 0.0000 -0.0000 - 0.7714 47.3909 24.2701 -6.0634 -9.6390 -178.4130 3.8564 -5.9501 0.6460 0.4051 -0.1199 0.1435 13.4175 -6.8273 6.7704 0.0813 -8.3097 5.3417 -14.2135 -21.0016 -14.8264 7.0621 -11.7695 -8.4013 5.4246 -13.7038 6.1624 12.0618 -43.0109 52.4915 0.0000 0.0000 19.5399 -8.5270 9.3482 1.5679 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -2.6263 -2.7882 -16.6166 1.0988 15.0341 -50.7060 -0.0000 -0.0000 -3.0423 -5.5202 -3.2556 -5.0232 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.1042 -13.0268 -7.7461 2.0701 0.0000 0.0000 -5.4331 5.2056 1.2386 -0.5766 0.0000 -0.0000 -34.7110 -15.2293 19.0262 6.1881 0.0000 0.0000 6.4605 10.1921 -6.5440 -10.5641 0.0000 -0.0000 - 0.7211 48.1023 24.1804 -5.9710 -10.4941 -179.7940 4.0076 -6.1919 0.6841 0.4952 0.0508 0.1659 13.3798 -6.3888 6.7483 0.1679 -8.2121 5.2035 -13.8411 -20.9129 -14.8297 7.5935 -11.6451 -8.4062 5.8842 -14.2458 6.2841 13.5112 -43.4133 53.3945 0.0000 0.0000 18.8517 -8.0655 7.9400 1.5547 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -2.1663 -2.5648 -16.8288 1.7898 17.1525 -51.3910 -0.0000 -0.0000 -2.8544 -5.6764 -3.0225 -4.8758 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -2.6967 -13.7929 -6.9167 3.5626 0.0000 0.0000 -7.9052 5.1192 1.9335 -0.2645 0.0000 -0.0000 -34.7860 -15.6552 20.8884 6.5065 0.0000 0.0000 5.4759 11.5151 -4.0841 -11.2305 0.0000 -0.0000 - 0.6623 48.8662 24.0519 -6.9874 -11.6034 178.3928 3.2580 -6.4408 0.6303 0.2038 0.0977 0.1683 13.3718 -6.0832 6.5976 0.3019 -7.9704 5.0127 -13.5761 -20.3927 -14.6600 8.4112 -11.3739 -8.4134 6.5556 -14.5623 6.3677 16.0491 -42.8762 55.0876 0.0000 0.0000 17.2307 -7.2173 6.5792 2.0076 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -1.4010 -1.7014 -16.5841 2.9434 19.5517 -52.3047 -0.0000 -0.0000 -2.6566 -5.9658 -3.0803 -5.0267 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.4252 -14.7354 -5.3199 5.5329 0.0000 0.0000 -10.5242 4.9514 2.0907 -0.0671 0.0000 -0.0000 -34.5289 -16.1258 21.1825 6.1228 0.0000 0.0000 6.1557 10.8708 -3.5112 -11.5872 0.0000 -0.0000 - 0.5518 49.7545 23.9396 -7.9236 -11.3977 175.8536 1.9633 -5.1792 0.0977 -0.4286 0.1586 0.2192 14.5550 -5.8135 6.7170 0.4099 -7.6603 4.8010 -13.5913 -19.9658 -13.8767 9.0974 -10.6681 -8.2809 6.9379 -15.7712 7.1566 18.2683 -40.5965 55.3873 0.0000 0.0000 15.2045 -6.0418 4.0301 2.4332 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.5532 0.8422 -15.5952 4.6182 21.2246 -53.3310 -0.0000 -0.0000 -2.3642 -5.9581 -3.1999 -5.0005 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.3300 -14.1373 -3.5529 6.8861 0.0000 0.0000 -12.8759 3.8876 2.9432 -0.3350 0.0000 -0.0000 -31.6804 -14.9292 18.7498 3.0847 0.0000 0.0000 9.2733 5.7294 -2.2423 -10.4293 0.0000 -0.0000 - 0.3433 50.9359 23.8997 -4.8977 -8.3544 173.9495 2.2368 -1.2327 -0.6200 -0.5170 0.8893 0.3674 17.1535 -5.1781 6.4117 0.3368 -7.5408 4.3006 -13.3389 -20.0330 -12.7651 9.5884 -9.6112 -8.2759 6.7721 -19.3307 8.7539 18.8749 -36.6194 52.5981 0.0000 0.0000 13.2789 -4.6101 0.1526 1.5912 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.4239 4.4052 -14.3239 6.3859 22.9007 -53.4651 -0.0000 -0.0000 -2.4823 -6.2260 -3.9620 -4.9315 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 5.0021 -9.7225 -2.6759 6.4779 0.0000 0.0000 -15.0658 1.7875 4.9059 -0.5875 0.0000 -0.0000 -22.3167 -10.3743 13.0002 -3.2340 0.0000 -0.0000 14.6484 -0.5467 3.3417 -8.2055 0.0000 -0.0000 - 0.0494 52.2065 23.9145 -0.1713 -3.7209 173.7147 3.3922 3.0895 -0.8108 0.1455 2.5455 0.5312 18.7699 -3.9458 4.5650 0.2235 -7.5450 3.2801 -11.7800 -19.8892 -12.3453 10.2587 -8.4954 -9.1005 6.3342 -23.2515 9.3993 18.3685 -34.3028 49.1027 0.0000 0.0000 11.4229 -3.3163 -2.1773 -0.7605 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 1.6918 6.4822 -13.5369 8.3497 26.6758 -52.6054 -0.0000 -0.0000 -3.2500 -7.2670 -5.5701 -5.5634 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 12.2512 -3.1434 -3.8542 6.8529 0.0000 0.0000 -17.1352 -0.1709 6.2894 -0.7030 0.0000 -0.0000 -12.2002 -4.0961 7.3210 -8.4998 0.0000 -0.0000 18.6474 -3.0608 9.3399 -5.9499 0.0000 -0.0000 - -0.3148 53.1315 24.0199 0.3189 -0.2127 175.3741 3.2841 4.9295 -0.9006 0.3024 3.9349 0.5253 18.3686 -3.0901 1.3631 0.3762 -6.9701 1.9809 -9.4018 -18.2228 -12.5846 11.3554 -6.8496 -10.8144 5.3132 -23.8213 7.9788 17.1684 -36.3285 47.1852 0.0000 0.0000 9.8718 -3.2307 -1.1271 -3.3270 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 2.8933 7.5636 -12.8728 11.3631 31.2251 -52.4853 -0.0000 -0.0000 -3.7289 -7.8494 -6.4266 -6.6554 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 11.7193 1.4703 -5.6813 12.5057 0.0000 0.0000 -18.2202 -0.8248 5.7418 -1.6349 0.0000 -0.0000 -9.8065 0.5228 2.7346 -8.6298 0.0000 -0.0000 17.3544 -2.0146 13.1289 -5.4266 0.0000 -0.0000 - -0.6688 53.7586 24.1814 -2.2038 0.5878 176.3889 2.3570 4.2583 -0.9030 -0.1128 3.9441 0.3775 16.7983 -2.8045 -1.2025 0.8587 -5.4973 1.0002 -6.4936 -14.1167 -12.1171 13.0013 -4.2728 -12.1641 3.5925 -19.6184 5.3853 15.7022 -41.7899 45.9511 0.0000 0.0000 9.5453 -5.1681 -0.4654 -4.0285 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.7029 8.6694 -11.5352 16.2345 34.6100 -54.7031 -0.0000 -0.0000 -2.7837 -6.4458 -4.8467 -6.8174 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 4.0744 3.2093 -4.1117 24.1427 0.0000 0.0000 -16.6653 -1.1471 3.5276 -4.0539 0.0000 -0.0000 -12.0484 2.2225 2.2504 -5.9944 0.0000 -0.0000 13.5243 -1.9121 13.2908 -5.7576 0.0000 -0.0000 - -0.9944 54.3657 24.2920 -3.8899 1.1786 173.9270 1.5718 3.7587 -0.7670 -0.5666 3.2139 0.2863 15.5641 -2.0740 -1.4546 1.3438 -3.8052 0.5763 -3.1527 -7.9983 -9.8516 14.4986 -1.2601 -11.5624 1.8828 -14.5576 3.5952 12.5058 -44.9093 42.5587 0.0000 0.0000 10.9747 -7.6087 -4.3120 -3.4213 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.8970 9.7358 -9.3796 22.2311 36.5469 -58.3252 -0.0000 -0.0000 -0.3546 -3.4237 -0.7681 -6.0986 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -5.5068 4.6987 0.7573 38.7407 0.0000 0.0000 -11.9651 -2.8626 2.9337 -6.7049 0.0000 -0.0000 -13.3018 3.1870 5.9683 -3.6600 0.0000 -0.0000 10.6551 -4.0600 11.9761 -5.5455 0.0000 -0.0000 - -1.3127 55.1235 24.3076 -2.5392 3.7245 169.4656 1.6673 5.0500 -0.7457 -0.6078 3.0719 0.3493 15.4303 -0.5419 -0.3408 1.5965 -2.4907 0.3134 -0.2393 -1.4760 -6.3184 15.0735 0.7813 -8.7825 1.2593 -13.1187 3.0444 6.3121 -41.6055 37.2540 0.0000 0.0000 13.8262 -7.7969 -8.7880 -2.7699 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.5249 10.2810 -7.1911 27.0272 38.2659 -60.6031 -0.0000 0.0000 2.4923 0.6141 4.5840 -5.6366 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.6907 7.5935 7.2982 52.2823 0.0000 0.0000 -6.4623 -4.4422 4.8113 -6.8687 0.0000 -0.0000 -10.7792 6.1141 9.2270 -3.0465 0.0000 -0.0000 8.9331 -5.8356 13.3332 -4.9140 0.0000 -0.0000 - -1.5770 55.9203 24.2576 -0.2795 6.8309 166.4599 1.8137 6.8499 -0.8229 -0.5421 3.5722 0.4550 15.7535 1.1781 0.0518 1.6829 -1.4762 -0.2189 1.1862 3.6150 -2.8056 15.3164 1.0154 -5.3236 2.0702 -14.3152 2.9672 -1.4270 -35.0387 32.4593 0.0000 0.0000 17.5771 -6.3187 -7.6945 -1.8326 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.0973 10.5635 -5.6139 28.7377 40.0473 -59.8368 -0.0000 0.0000 4.4155 4.5267 8.4993 -5.6166 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -18.0866 10.4780 12.6618 62.6648 0.0000 0.0000 -3.7754 -4.5064 6.6121 -4.2518 0.0000 -0.0000 -7.0663 10.3146 10.2690 -3.7708 0.0000 -0.0000 7.2698 -6.0858 15.4767 -4.6205 0.0000 -0.0000 - -1.7364 56.5993 24.2157 0.1712 8.6489 166.4587 1.4761 7.6836 -0.9053 -0.6672 3.7744 0.4499 15.7812 2.4258 -0.8050 1.7164 -0.4977 -1.0106 1.1923 6.2538 -0.3314 15.7020 0.5805 -2.7607 3.2614 -14.7852 2.7299 -9.0723 -29.8592 28.4144 0.0000 0.0000 21.0667 -6.4505 -1.2280 -1.4499 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.0684 11.6967 -4.3748 27.3300 40.1340 -56.3403 -0.0000 0.0000 4.5013 5.4995 8.2046 -5.2631 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -23.2000 11.5655 14.6377 69.1328 0.0000 0.0000 -4.6825 -3.9722 5.9067 -2.0573 0.0000 -0.0000 -5.0169 13.1263 10.6967 -4.4611 0.0000 -0.0000 5.4220 -6.2592 14.8849 -4.7158 0.0000 -0.0000 - -1.7697 57.1894 24.2372 -0.5242 8.6957 168.2481 1.1848 7.6464 -0.9876 -0.8007 3.4157 0.3422 15.5205 3.0182 -2.0087 1.7182 0.3808 -1.7307 0.9438 7.0844 0.7419 15.6503 0.7907 -1.6165 3.5052 -13.6687 2.3680 -15.5271 -26.2945 24.2212 0.0000 0.0000 23.1936 -8.1645 4.9391 -2.3083 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 3.4621 13.9124 -2.9761 24.0572 38.4065 -51.7117 -0.0000 0.0000 2.7079 2.6270 3.5514 -4.7980 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -27.1936 10.8114 13.8249 71.2804 0.0000 0.0000 -7.0171 -3.2723 2.6096 -2.2265 0.0000 -0.0000 -4.2492 13.6966 11.8536 -3.9732 0.0000 -0.0000 3.5408 -6.8559 11.6497 -4.7723 0.0000 -0.0000 - -1.7068 57.7709 24.3052 -0.9211 7.9039 170.1321 1.2099 7.5369 -1.0498 -0.7899 3.0290 0.2322 15.1638 3.1958 -2.8162 1.7254 0.8777 -2.1756 1.1892 7.3252 0.7984 15.0835 1.7184 -1.7529 2.5120 -12.0985 2.3146 -20.2832 -22.4216 20.1388 0.0000 0.0000 23.9584 -8.8204 7.2745 -4.2988 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.8105 15.8349 -1.1992 19.9186 37.5161 -47.3374 -0.0000 0.0000 0.0515 -2.6138 -2.8545 -5.6986 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -29.5726 9.2572 12.3968 69.5721 0.0000 0.0000 -8.4402 -1.9997 -1.3692 -3.2181 0.0000 -0.0000 -3.5646 13.0190 13.0038 -2.3540 0.0000 -0.0000 1.3941 -7.0579 8.5128 -4.6310 0.0000 -0.0000 - -1.6057 58.3398 24.3650 -1.1878 7.1763 171.7241 1.2081 7.6908 -1.0908 -0.7761 2.8939 0.1725 14.7693 3.1199 -3.3212 1.7765 1.0032 -2.4630 1.6432 7.7230 0.4537 14.7737 2.8289 -2.5905 0.9590 -10.5276 2.4533 -23.6911 -18.1612 17.0942 0.0000 0.0000 24.4153 -7.9884 6.5601 -5.9732 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 3.5534 16.3061 0.8640 15.4251 39.0379 -43.4425 -0.0000 -0.0000 -2.2181 -7.8674 -7.8728 -7.8609 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -31.4943 7.7860 11.4598 65.1772 0.0000 0.0000 -7.9565 -0.5905 -4.0999 -3.4354 0.0000 -0.0000 -2.8858 12.1347 13.7758 -0.5666 0.0000 -0.0000 -0.9569 -6.6806 6.2208 -4.2785 0.0000 -0.0000 - -1.4968 58.8780 24.3956 -1.7045 6.5427 173.1657 0.9746 7.8933 -1.0893 -0.8615 2.7356 0.1171 14.4955 2.8823 -3.8227 1.8283 1.0967 -2.7660 1.7858 8.5460 0.2387 15.0499 3.8627 -3.2115 -0.6454 -8.7873 2.3790 -26.4158 -14.6313 15.4077 0.0000 0.0000 25.4806 -7.0349 5.5990 -6.2633 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.7881 16.0870 2.7398 11.3976 40.4880 -39.9998 -0.0000 -0.0000 -3.4202 -10.1970 -10.3130 -8.4661 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -33.5211 6.7836 10.5887 58.6600 0.0000 0.0000 -5.6404 0.1874 -4.6834 -3.1386 0.0000 -0.0000 -2.3318 11.2611 14.5426 0.6910 0.0000 0.0000 -3.1261 -6.2945 3.9395 -3.7329 0.0000 -0.0000 - -1.3876 59.4105 24.4037 -2.1627 5.9987 174.3870 0.6271 7.9788 -1.0522 -0.9754 2.3728 0.0352 14.4631 2.7457 -4.2930 1.8474 1.4236 -3.1164 1.6978 9.7594 0.5183 15.4066 4.8405 -2.9870 -2.0656 -7.3397 2.1227 -29.0903 -12.0247 14.9061 0.0000 0.0000 27.2951 -6.2727 5.6860 -5.7140 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 2.0149 16.1186 4.0509 9.6737 39.0647 -38.3470 -0.0000 -0.0000 -3.3469 -8.9936 -10.9358 -6.5517 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -34.9434 6.5075 9.2197 49.9809 0.0000 0.0000 -1.6384 0.2681 -2.9428 -2.7703 0.0000 -0.0000 -1.7361 10.4325 15.2216 1.7479 0.0000 0.0000 -5.0477 -5.9392 1.8543 -3.3469 0.0000 -0.0000 - -1.2900 59.9613 24.3861 -2.4288 5.8490 175.3766 0.2096 7.9641 -1.0073 -1.1040 2.0008 -0.0374 14.5510 2.9172 -4.5841 1.9110 1.9745 -3.4273 1.6890 11.1415 1.2067 15.3823 5.7548 -2.0897 -3.1575 -6.6265 1.9215 -31.9036 -9.8272 15.0110 0.0000 0.0000 29.9237 -4.4208 6.5067 -5.0699 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 1.5877 15.9237 4.7683 10.6416 35.8661 -38.8398 -0.0000 -0.0000 -2.4560 -6.4288 -11.0033 -4.5859 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -35.5536 7.0548 7.1359 39.7098 0.0000 0.0000 3.7983 -0.3004 0.6185 -2.3648 0.0000 -0.0000 -1.1007 9.9369 15.6340 3.0617 0.0000 0.0000 -6.9527 -5.2965 0.4244 -3.4389 0.0000 -0.0000 - -1.2100 60.5265 24.3427 -2.7703 6.0493 176.2228 -0.3167 7.7839 -0.8835 -1.3193 1.7096 -0.0736 14.6921 3.3310 -4.6485 2.0097 2.5713 -3.6350 1.6297 12.5193 1.8555 15.0969 6.6976 -1.1912 -3.9134 -6.4196 1.8939 -34.5202 -7.6252 15.0410 0.0000 0.0000 33.5576 -1.3186 7.9889 -4.4543 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 1.3778 15.1807 5.0718 12.0225 33.6389 -39.7743 -0.0000 -0.0000 -1.6267 -4.8540 -11.3102 -3.9047 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -35.9728 7.9297 4.0581 29.0748 0.0000 0.0000 9.6024 -1.7677 4.9276 -2.0913 0.0000 -0.0000 -0.3999 9.8258 15.7660 4.1547 0.0000 0.0000 -8.7335 -4.5469 -0.5626 -3.6376 0.0000 -0.0000 - -1.1384 61.1222 24.2871 -3.0230 6.3296 177.0337 -0.7245 7.4916 -0.6839 -1.4551 1.3350 -0.1119 14.8157 3.8031 -4.4998 2.0265 3.0844 -3.7582 1.2767 13.8942 2.1276 14.9138 7.8980 -0.8388 -4.3465 -6.2505 1.9612 -36.8443 -5.8111 14.6870 0.0000 0.0000 38.1384 1.6943 10.2833 -3.8096 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 1.0664 14.6301 5.2579 12.0155 33.1846 -39.9011 -0.0000 -0.0000 -1.3097 -4.1987 -11.3607 -3.0851 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -36.1902 8.5782 -0.1415 19.3121 0.0000 0.0000 13.8404 -4.0577 9.1144 -2.0042 0.0000 -0.0000 0.9723 9.9621 15.1602 4.2058 0.0000 0.0000 -9.9940 -3.9801 -1.0900 -3.4998 0.0000 -0.0000 - -1.0643 61.7722 24.2273 -2.9453 6.7531 178.1552 -0.7982 7.3493 -0.5602 -1.3361 0.8974 -0.1782 14.7003 4.1866 -4.3271 1.9236 3.4819 -3.8504 0.8420 15.2907 1.9887 14.9270 9.3164 -1.2127 -4.4086 -6.0084 1.8993 -39.1287 -5.3036 13.9253 -0.0000 0.0000 43.5772 4.5807 12.7454 -3.3502 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.6606 14.6119 5.5342 11.0888 33.7521 -39.4364 -0.0000 -0.0000 -1.5328 -4.4212 -11.1837 -1.5322 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -36.1852 9.1277 -4.7070 11.9207 0.0000 0.0000 15.0403 -6.3492 12.2177 -1.7215 0.0000 -0.0000 3.2720 10.3115 13.5127 3.2990 0.0000 0.0000 -10.5877 -3.3608 -1.0483 -3.2656 0.0000 -0.0000 - -0.9797 62.4416 24.1695 -3.2369 7.3524 179.9732 -0.9672 7.2434 -0.5031 -1.2639 0.7410 -0.2074 14.4569 4.3812 -4.4255 1.7927 3.7315 -3.9815 0.4868 16.6116 1.5138 14.8395 10.5551 -2.0738 -4.3451 -6.0942 1.6680 -41.1586 -6.0451 12.7382 -0.0000 0.0001 49.7247 8.0578 14.4884 -2.7708 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.3162 14.8406 5.8111 10.4956 34.5070 -39.2125 -0.0000 -0.0000 -2.1646 -5.9290 -11.4674 -1.2356 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -36.6952 9.8570 -8.9586 7.1640 0.0000 0.0000 13.9530 -7.2238 12.7676 -1.4601 0.0000 -0.0000 5.2417 10.6078 11.5930 2.4844 0.0000 0.0000 -10.8180 -2.4113 -1.1108 -3.2222 0.0000 -0.0000 - -0.8775 63.1173 24.1120 -4.0839 7.9880 -177.7537 -1.4011 7.1439 -0.3170 -1.3975 0.7773 -0.2091 14.3135 4.4036 -4.7444 1.6892 3.7931 -4.0953 0.0764 17.7598 0.8812 14.4211 11.4486 -2.9553 -4.3468 -6.6305 1.5477 -42.2765 -7.0941 11.3230 -0.0000 0.0001 55.5611 10.6989 15.8479 -0.9372 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.1527 15.3836 5.8358 10.5488 34.9243 -39.4210 -0.0000 -0.0000 -3.0831 -6.9015 -11.7993 -2.9402 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -37.4197 10.4475 -12.8262 3.7134 0.0000 0.0000 11.9921 -5.8901 9.8554 -1.5939 0.0000 -0.0000 6.4527 10.6887 10.1413 2.1966 0.0000 0.0000 -11.0586 -1.3025 -1.8421 -3.1445 0.0000 -0.0000 - -0.7637 63.8497 24.0476 -4.6459 8.4608 -175.6139 -1.6844 7.0764 -0.0797 -1.4789 0.6357 -0.2341 14.2096 4.2004 -4.8515 1.5751 3.7585 -4.0699 -0.4339 18.7771 0.4205 13.8585 12.2682 -3.5960 -4.0927 -7.3513 1.7860 -42.2382 -8.0715 10.2547 -0.0000 0.0001 59.5175 10.9009 17.9874 2.2480 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.2283 16.4279 5.6600 11.2245 34.9357 -40.0857 -0.0000 -0.0000 -3.9664 -6.3577 -11.8198 -4.6255 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -37.1621 10.6001 -16.0106 1.3452 0.0000 0.0000 9.3080 -3.2622 4.6614 -1.4354 0.0000 -0.0000 7.8001 10.4262 9.2322 2.4340 0.0000 0.0000 -11.6304 -0.1359 -3.1068 -3.0685 0.0000 -0.0000 - -0.6645 64.6515 23.9663 -5.0370 8.7469 -173.1944 -2.0288 6.7994 -0.0358 -1.5685 0.4491 -0.2708 14.1313 3.7352 -4.8107 1.4498 3.6923 -3.9441 -0.9363 19.7358 0.2172 13.3888 13.0287 -4.0495 -3.5120 -8.1347 2.1653 -41.2247 -9.4045 9.7259 -0.0000 0.0001 60.9693 10.1181 20.7190 5.5240 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.4120 17.2941 5.5105 13.3045 35.0637 -41.8131 -0.0000 -0.0000 -4.1870 -5.6525 -11.7574 -5.2962 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -35.6516 11.3050 -18.8153 1.0361 0.0000 0.0000 6.5866 -1.1095 0.9244 -0.9892 0.0000 -0.0000 8.6747 9.6692 9.2766 4.2220 0.0000 0.0000 -12.8313 1.4623 -5.4336 -3.5322 0.0000 -0.0000 - -0.5714 65.5018 23.8239 -6.1396 8.7274 -169.3844 -3.0107 6.1219 -0.0188 -2.1297 0.6019 -0.2564 14.3152 2.9662 -5.2504 1.3409 3.4357 -3.8633 -1.5943 20.4926 -0.0469 12.9122 13.3234 -4.4524 -3.2245 -9.1885 2.3426 -39.5453 -10.7581 9.2990 -0.0000 0.0001 60.2664 10.8503 22.0889 7.6965 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.5074 17.4854 5.1744 17.1771 35.0774 -44.7398 -0.0000 -0.0000 -3.4526 -5.1061 -10.3646 -5.6034 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -33.0920 13.2405 -21.6510 1.9617 0.0000 0.0000 6.6574 -0.0229 0.1356 -1.2607 0.0000 -0.0000 7.8104 8.0328 10.5920 8.4019 0.0000 0.0000 -14.8186 3.6484 -9.8602 -4.2901 0.0000 -0.0000 - -0.4342 66.3965 23.5953 -7.6731 7.3302 -165.0628 -4.6977 4.1108 0.3987 -3.3803 0.8777 -0.1937 15.2825 2.0581 -5.7282 1.0746 2.9791 -3.7340 -3.2427 20.9591 -0.4162 12.1884 13.0810 -4.8891 -3.6185 -11.1792 2.6648 -37.6476 -10.2466 9.1266 -0.0000 0.0001 57.0982 12.2136 21.2574 8.4990 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0333 18.5371 4.1414 21.0097 33.3385 -46.7688 -0.0000 -0.0000 -2.3555 -3.7625 -5.3922 -5.9805 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -29.8295 13.9370 -24.2614 1.6501 0.0000 0.0000 11.3448 1.3066 0.0693 -1.4754 0.0000 -0.0000 5.6906 4.5603 11.8316 13.8305 0.0000 0.0000 -17.7572 5.7657 -14.6586 -4.5067 0.0000 -0.0000 - -0.2386 67.3676 23.3913 -7.3437 3.2847 -163.4882 -6.1000 -0.9581 0.9036 -5.0117 -0.0606 -0.2725 17.6212 1.6132 -4.3454 0.4023 2.8431 -3.1851 -6.6253 21.4863 -0.2187 11.3311 12.7134 -5.4099 -4.2835 -14.0428 4.0531 -35.6370 -7.3055 10.0147 -0.0000 0.0001 49.9282 10.1485 20.4993 7.9835 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.5329 21.9810 2.6475 22.7241 29.7545 -45.7305 -0.0000 -0.0000 -1.5255 -1.9022 2.6787 -6.2097 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -25.4468 9.3450 -26.3434 -1.7256 0.0000 -0.0000 17.7106 3.4036 -0.6936 -0.5305 0.0000 -0.0000 4.9431 -1.7524 12.8058 18.5510 0.0000 0.0000 -21.0517 7.4118 -17.0530 -5.0317 0.0000 -0.0000 - -0.0454 68.3520 23.3485 -5.1148 -1.7519 -165.6822 -6.1871 -6.6489 0.8207 -5.6761 -3.8437 -0.9737 19.3551 1.9064 -0.4167 -0.3777 3.6016 -2.1070 -10.4195 21.6797 0.9273 10.6145 12.2872 -5.9697 -4.3845 -15.6828 6.8060 -33.4420 -5.5913 11.4631 -0.0000 0.0000 38.7770 4.4455 20.3891 4.0102 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.4214 24.8941 1.8017 23.0480 28.0442 -43.8985 -0.0000 -0.0000 -0.3302 -0.6470 9.6417 -5.7248 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -20.7571 1.1841 -27.3403 -5.9487 0.0000 -0.0000 20.5507 5.3775 -0.3950 0.6033 0.0000 0.0000 6.1884 -8.9369 15.0378 23.0664 0.0000 0.0000 -21.8339 8.4464 -17.2051 -8.1040 0.0000 -0.0000 - 0.0678 69.0905 23.5066 -4.9670 -3.9461 -169.1877 -5.7686 -9.1207 0.5923 -5.0192 -7.0618 -1.4532 18.2394 1.8559 3.9651 -0.7760 4.3360 -0.8864 -12.7596 19.9583 1.9722 9.5982 10.8895 -6.4579 -3.8938 -15.6224 10.1229 -31.7100 -8.0117 12.6722 0.0000 0.0000 26.9667 -0.5501 16.9531 -4.5705 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.1280 23.6460 1.5030 22.7681 30.0349 -43.7793 -0.0000 0.0000 1.6651 0.4287 12.5267 -4.7459 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -19.7386 -2.9573 -27.6926 -5.7291 0.0000 -0.0000 17.8652 5.9518 2.4985 1.1049 0.0000 0.0000 3.8702 -12.4523 16.1648 30.6443 0.0000 0.0000 -17.1627 8.8127 -16.0935 -13.4960 0.0000 -0.0000 - 0.1528 69.6724 23.7646 -5.2223 -2.8845 -170.1118 -4.5905 -8.8974 0.3880 -3.5043 -6.3721 -1.0611 15.1210 0.8100 5.9080 -0.9675 3.6444 -0.0442 -13.4864 14.2617 1.4070 8.0695 7.6385 -7.0902 -2.7860 -14.9795 12.6971 -28.8389 -13.3585 13.3881 0.0000 0.0000 18.3801 -3.2243 7.5713 -10.2990 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.2810 18.3076 0.3328 22.0497 32.3391 -44.2669 -0.0000 0.0000 3.0197 2.2950 12.9496 -4.4029 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -18.9484 -2.2669 -28.9027 -3.8359 0.0000 -0.0000 14.4101 4.4959 5.5894 0.9022 0.0000 0.0000 -1.9734 -13.3243 13.9156 41.1781 0.0000 0.0000 -7.9113 9.9038 -15.7735 -16.2526 0.0000 -0.0000 - 0.3119 70.2051 23.9782 -4.4639 -1.5971 -168.1176 -2.7067 -8.0382 0.2711 -2.2372 -4.2604 -0.5869 12.3103 0.1535 5.3904 -1.3774 1.8379 0.3772 -14.1088 4.9718 -1.1684 6.0191 2.3789 -8.1891 -0.4678 -13.9292 13.6554 -20.1892 -18.1053 16.6902 0.0000 0.0000 14.7824 -2.7728 -5.2488 -8.4038 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.9045 13.2295 -2.0936 19.6834 29.7623 -42.8035 -0.0000 0.0000 2.5775 3.8510 12.7789 -4.9060 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -16.7192 -0.9204 -29.9006 -2.8575 0.0000 -0.0000 12.6836 2.7255 5.5650 0.3742 0.0000 0.0000 -8.8903 -14.5184 9.6298 51.7659 0.0000 0.0000 -0.0465 11.2778 -17.4212 -14.3130 0.0000 -0.0000 - 0.5090 70.6952 24.1072 -3.3103 -1.4116 -166.3583 -0.8845 -7.5987 0.3220 -1.4465 -2.9582 -0.3321 11.0750 0.0100 5.0747 -1.8844 -0.1126 0.8801 -15.7248 -4.7952 -5.1284 3.2400 -3.2168 -9.6701 3.0132 -12.2276 13.5559 -8.3307 -18.6582 24.5859 0.0000 0.0000 14.4555 0.3715 -13.2659 -0.9176 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.7762 11.7084 -5.0320 14.9547 22.4491 -39.2950 -0.0000 0.0000 1.1247 2.7762 9.9560 -4.9016 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -14.4471 -1.1863 -29.4645 -2.3458 0.0000 -0.0000 11.1630 2.2671 3.6309 -0.1304 0.0000 -0.0000 -15.2760 -16.6880 6.2900 59.8764 0.0000 0.0000 2.4573 12.1839 -19.6830 -12.3046 0.0000 -0.0000 - 0.6513 71.1455 24.1714 -2.4792 -1.6280 -166.7813 0.1666 -7.2567 0.4654 -0.9651 -2.6184 -0.1939 11.0565 -0.3886 6.1694 -2.1718 -1.6288 1.7591 -17.4218 -12.1813 -9.0185 0.6376 -6.4108 -11.0174 5.8376 -10.1212 13.0546 -2.0849 -17.2971 33.3710 0.0000 0.0000 13.9737 1.2103 -15.9779 3.0430 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.7054 11.2116 -7.4949 9.1740 16.8685 -36.3006 -0.0000 0.0000 0.1402 -1.1644 3.1310 -4.1323 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -12.7286 -2.3471 -28.0312 -2.1133 0.0000 -0.0000 9.5027 3.0641 2.8410 -0.4765 0.0000 -0.0000 -20.1713 -18.9889 5.6877 64.1211 0.0000 0.0000 1.6048 12.7143 -20.3131 -11.4937 0.0000 -0.0000 - 0.7126 71.5685 24.1994 -1.9217 -1.6247 -168.4760 0.5416 -6.9693 0.5894 -0.6437 -2.6905 -0.1336 11.4739 -1.4422 7.5920 -2.1719 -2.4948 2.6318 -17.6548 -15.2848 -10.9628 -0.2058 -6.7932 -12.1786 6.3593 -8.7749 13.1224 -1.6529 -17.8367 40.4126 0.0000 0.0000 12.8564 1.8826 -16.4459 1.8810 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -1.8604 9.1777 -8.6142 3.8310 15.6140 -35.1695 -0.0000 -0.0000 -0.0128 -5.4806 -3.5477 -4.8200 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.9000 -3.4107 -26.3891 -2.6926 0.0000 -0.0000 8.6700 3.9993 3.2622 -0.7267 0.0000 -0.0000 -23.5396 -20.3117 6.4295 64.3997 0.0000 0.0000 0.7585 12.9587 -18.4927 -10.7362 0.0000 -0.0000 - 0.7209 71.9611 24.2275 -1.4066 -1.4351 -169.9302 0.7702 -7.1207 0.6262 -0.4109 -2.9716 -0.1584 11.8703 -2.5727 8.3775 -2.0641 -2.6679 3.0275 -16.6509 -14.4731 -10.8253 0.8110 -5.8111 -13.3491 5.7691 -9.4189 14.3283 -3.0128 -18.7797 44.9197 0.0000 0.0000 13.4701 4.0124 -11.2468 0.4618 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.6757 6.5989 -8.8799 0.6467 14.8460 -35.2233 -0.0000 -0.0000 -0.3272 -7.6746 -5.6100 -7.0794 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -8.8932 -4.0615 -24.4100 -3.7824 0.0000 -0.0000 8.5393 4.4329 2.9630 -0.9710 0.0000 -0.0000 -25.8326 -20.0233 6.2607 61.0272 0.0000 0.0000 0.3028 13.9025 -14.9484 -9.7989 0.0000 -0.0000 - 0.6856 72.3050 24.2853 -1.3267 -0.9985 -170.9925 0.8972 -7.5291 0.5881 -0.3012 -3.3736 -0.2187 12.1653 -3.0274 8.7708 -1.9304 -2.3597 3.0230 -15.8951 -12.1364 -10.0246 2.0846 -4.8103 -14.2846 5.8113 -10.8319 15.8919 -4.4301 -18.7302 47.4602 0.0000 0.0000 16.4398 3.7200 -2.2770 1.4936 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.3743 5.0697 -8.9963 -0.4086 11.6996 -36.3001 -0.0000 -0.0000 -1.6052 -7.7292 -5.0304 -9.4842 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -7.7010 -3.9370 -22.2283 -4.1491 0.0000 -0.0000 7.9481 4.4368 2.0041 -1.2316 0.0000 -0.0000 -27.2270 -18.2074 5.2322 54.1804 0.0000 0.0000 -1.0657 15.5135 -10.6130 -8.9735 0.0000 -0.0000 - 0.6109 72.6102 24.3633 -1.8615 -0.2472 -172.1267 0.8724 -7.6316 0.5752 -0.2871 -3.6329 -0.2548 12.2631 -2.9521 9.1160 -1.8053 -1.9937 2.9732 -15.7685 -10.2959 -9.5017 2.4077 -4.1684 -14.7293 6.4222 -11.0820 16.5988 -6.4119 -20.0523 49.1286 0.0000 0.0000 20.2775 -1.1419 4.2046 3.9956 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.2751 4.1258 -9.0805 -1.5979 8.2162 -38.4032 -0.0000 -0.0000 -3.3788 -7.9110 -6.0543 -10.9060 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -7.7581 -3.0066 -20.4798 -3.2005 0.0000 -0.0000 6.6239 4.2230 1.6658 -1.4340 0.0000 -0.0000 -27.8556 -15.7259 4.5938 44.6480 0.0000 0.0000 -2.4468 15.6138 -7.4461 -7.8935 0.0000 -0.0000 - 0.5291 72.9097 24.4260 -2.5166 0.3745 -173.2393 0.9684 -7.4147 0.5851 -0.2330 -3.5401 -0.2489 11.9396 -3.0367 9.1331 -1.8413 -1.8706 2.9893 -15.7379 -9.2705 -9.2469 2.2847 -3.9323 -14.6069 6.4958 -10.2848 16.2261 -8.4053 -23.7919 50.4602 0.0000 0.0000 23.6019 -5.2208 5.5264 5.4018 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.3286 2.8023 -9.1683 -4.0074 7.0206 -41.1502 -0.0000 -0.0000 -4.6650 -9.3424 -8.5534 -11.2236 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.3150 -2.0674 -19.3485 -1.6272 0.0000 -0.0000 5.2891 3.9428 1.8325 -1.5290 0.0000 -0.0000 -28.1654 -13.6298 4.4352 34.1743 0.0000 0.0000 -1.6893 14.3351 -8.2264 -8.0016 0.0000 -0.0000 - 0.4594 73.2335 24.4575 -2.7498 0.3891 -174.2445 1.3457 -7.3500 0.5797 -0.0876 -3.1655 -0.2375 11.3526 -3.4405 8.5844 -2.0432 -1.9764 2.9561 -15.4915 -8.8436 -8.9985 2.6244 -4.2753 -14.0244 5.7587 -9.5719 15.5754 -9.3661 -27.4511 51.6066 0.0000 0.0000 25.6439 -4.4844 3.4538 4.3645 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -6.1212 1.4437 -9.3901 -6.3430 7.3810 -43.9963 -0.0000 -0.0000 -5.0906 -10.2462 -10.1565 -11.2314 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -8.4146 -1.8715 -18.5267 -0.2715 0.0000 -0.0000 4.0829 3.7268 1.9185 -1.5640 0.0000 -0.0000 -28.2133 -12.4147 4.1391 24.2440 0.0000 0.0000 1.2101 14.7822 -13.0224 -11.2793 0.0000 -0.0000 - 0.3858 73.6077 24.4605 -2.3846 -0.2194 -175.5187 1.7915 -7.7203 0.5718 0.0967 -2.7227 -0.2416 10.9629 -3.7795 7.7267 -2.1282 -2.1693 2.8460 -14.9383 -9.1195 -8.7974 3.4658 -4.9945 -13.2237 4.9896 -8.9922 15.0260 -9.1009 -28.9202 53.0153 0.0000 0.0000 26.1074 -1.8467 1.5551 3.2351 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -6.1060 0.5960 -9.7854 -7.4132 7.6130 -46.9845 -0.0000 -0.0000 -4.8705 -9.7655 -9.8936 -11.1443 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -7.4687 -2.5055 -17.7068 0.3210 0.0000 0.0000 2.8300 3.4795 2.2258 -1.6020 0.0000 -0.0000 -27.9388 -12.0369 3.3529 16.0769 0.0000 0.0000 4.8993 17.6560 -18.3957 -15.0226 0.0000 -0.0000 - 0.2843 74.0179 24.4506 -1.8465 -0.8845 -177.3520 1.9321 -8.0219 0.5565 0.1880 -2.3663 -0.2632 11.0976 -3.9290 6.8676 -1.9299 -2.3406 2.7304 -14.1045 -9.9104 -8.6533 4.3818 -5.5422 -12.3757 4.4607 -8.1036 14.4591 -8.1570 -29.0058 54.4054 0.0000 0.0000 25.5420 -1.1040 1.5793 3.0156 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.2834 0.2090 -10.1358 -7.3709 7.7694 -50.2973 -0.0000 -0.0000 -4.4916 -8.8780 -8.9055 -10.8057 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.8673 -3.2398 -16.7203 0.1524 0.0000 0.0000 1.8222 3.0452 3.0831 -1.5936 0.0000 -0.0000 -28.0170 -11.9064 2.3622 11.0273 0.0000 0.0000 7.1002 19.9815 -20.6393 -15.3072 0.0000 -0.0000 - 0.1602 74.4370 24.4383 -1.3557 -1.4040 -179.6835 1.9895 -7.9412 0.4981 0.2145 -2.1696 -0.2873 11.4983 -4.0788 6.0663 -1.6265 -2.4621 2.5878 -13.0611 -10.5759 -8.2816 5.2839 -5.7283 -11.4652 3.9623 -7.3806 13.9541 -7.2803 -29.0479 55.0255 0.0000 0.0000 24.6971 -1.5575 2.4064 2.7973 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -6.3536 0.0399 -10.2212 -6.7132 8.5149 -53.5489 -0.0000 -0.0000 -4.3628 -8.2613 -8.0058 -10.5293 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.1948 -3.7340 -15.5575 -0.2438 0.0000 -0.0000 1.2042 2.5055 4.1812 -1.4569 0.0000 -0.0000 -28.8020 -11.8552 1.9883 9.3726 0.0000 0.0000 7.0694 20.3138 -19.7876 -14.0770 0.0000 -0.0000 - 0.0254 74.8792 24.4198 -0.7643 -2.1335 177.4425 2.3109 -7.8201 0.4345 0.3356 -2.1121 -0.3196 11.8289 -4.2807 5.3382 -1.3627 -2.5667 2.4173 -11.9196 -10.7374 -7.5087 6.2558 -5.8404 -10.3528 3.4076 -7.2311 13.5718 -6.8625 -29.5936 54.5278 0.0000 0.0000 23.8786 -1.6326 2.6902 2.4322 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.1003 0.0366 -10.0678 -5.3975 9.3446 -56.2488 -0.0000 -0.0000 -4.4935 -7.5077 -6.7091 -10.7544 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -2.5335 -4.2742 -14.1142 -0.2828 0.0000 -0.0000 0.4597 1.9614 5.3559 -1.2353 0.0000 -0.0000 -29.6378 -12.2638 1.8295 9.9470 0.0000 0.0000 6.2026 20.1946 -18.2152 -13.6172 0.0000 -0.0000 - -0.1216 75.3720 24.3938 -0.1510 -3.1949 173.9694 2.6891 -7.8046 0.3607 0.4710 -2.0644 -0.3559 12.2650 -4.5314 4.6712 -1.0401 -2.6442 2.2620 -10.8463 -10.6582 -6.4885 7.1690 -6.0600 -8.9379 2.8770 -7.2439 13.1273 -6.7171 -30.5324 53.2730 0.0000 0.0000 22.9051 -2.6074 2.4694 2.2094 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.7144 0.2205 -9.8340 -3.2962 9.3824 -58.3254 -0.0000 -0.0000 -4.5005 -6.3795 -4.9168 -11.2020 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.8436 -4.8814 -12.4564 0.1305 0.0000 0.0000 -0.6391 1.2268 6.9887 -1.0426 0.0000 -0.0000 -29.7738 -13.1835 0.7232 11.1416 0.0000 0.0000 5.5999 20.8739 -18.4214 -13.5316 0.0000 -0.0000 - -0.2822 75.9187 24.3604 0.0907 -4.4009 170.1016 2.6475 -7.7281 0.2599 0.4616 -1.9472 -0.3947 12.9769 -4.8566 3.9077 -0.6263 -2.6829 2.0903 -9.8415 -10.7013 -5.3921 7.9686 -6.2190 -7.3246 2.4982 -7.2387 12.6121 -6.5604 -31.1822 51.6542 0.0000 0.0000 21.5558 -5.2556 2.1496 1.6489 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -5.4324 0.5154 -9.6175 -0.8085 9.0688 -59.8564 -0.0000 -0.0000 -4.0047 -5.1655 -3.2383 -11.2757 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.6039 -5.3723 -10.8429 0.7393 0.0000 0.0000 -1.6735 0.2271 9.1689 -0.8826 0.0000 -0.0000 -29.2790 -14.2307 -2.4001 11.9324 0.0000 0.0000 5.4000 21.5433 -21.5299 -13.0316 0.0000 -0.0000 - -0.4414 76.5355 24.3115 0.1045 -5.7543 166.0585 2.4447 -7.6063 0.1819 0.4268 -1.7100 -0.4287 13.5747 -5.2769 3.0219 -0.2556 -2.7496 1.8868 -8.7226 -10.8403 -4.3086 8.8530 -6.1777 -5.7668 2.3773 -7.5451 12.1926 -6.4971 -30.9804 49.3215 0.0000 0.0000 20.1221 -7.3896 1.8058 0.6474 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.1263 0.7615 -9.4881 1.4238 9.8176 -60.8471 -0.0000 -0.0000 -3.0009 -3.7884 -1.7362 -10.8168 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.1159 -5.8116 -9.1509 1.2695 0.0000 0.0000 -2.5776 -0.7486 11.4015 -0.6998 0.0000 -0.0000 -27.9160 -15.2232 -8.2496 12.0073 0.0000 0.0000 5.1359 21.6998 -26.2530 -12.3273 0.0000 -0.0000 - -0.5782 77.2349 24.2278 -0.0704 -7.5107 161.7040 2.3142 -7.6432 0.1145 0.4575 -1.4112 -0.4506 13.8159 -5.7672 2.3482 0.0542 -2.8999 1.7600 -7.5311 -10.8583 -3.3285 9.8037 -6.1092 -4.4394 2.5008 -8.0209 11.8895 -6.8211 -30.1020 45.6319 0.0000 0.0000 19.1749 -7.6258 1.6363 0.0363 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.7889 0.9632 -9.5542 3.3217 12.0229 -61.3508 -0.0000 -0.0000 -1.7569 -2.1278 -0.2598 -10.1056 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.9276 -6.4393 -6.7797 1.6765 0.0000 0.0000 -3.8103 -1.5369 13.3619 -0.5275 0.0000 -0.0000 -25.2418 -16.5265 -15.0993 11.4326 0.0000 0.0000 5.0716 21.8137 -30.7588 -11.2014 0.0000 -0.0000 - -0.6879 77.9867 24.1114 -0.7840 -9.5196 156.9779 1.9616 -7.4692 -0.0932 0.2747 -1.3029 -0.4670 14.2724 -6.4598 1.9990 0.3697 -3.0548 1.7543 -6.6918 -10.7770 -2.5301 10.4825 -6.2150 -3.2867 2.6237 -8.5834 11.6392 -7.5105 -28.5139 40.8568 0.0000 0.0000 18.6113 -7.6744 1.6488 -0.1745 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.7369 1.5960 -9.7586 5.3153 14.0008 -61.4754 -0.0000 -0.0000 -0.5357 -0.7963 1.1311 -9.4895 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 5.7270 -7.1784 -3.6686 1.8521 0.0000 0.0000 -5.1700 -2.4278 15.1897 -0.4210 0.0000 -0.0000 -21.5115 -18.2218 -20.1220 10.4927 0.0000 0.0000 5.6562 21.7195 -33.3773 -9.5249 0.0000 -0.0000 - -0.7918 78.7185 24.0046 -2.2991 -10.8349 152.3960 0.9821 -5.9718 -0.4139 -0.3812 -1.3468 -0.4814 15.4369 -7.8572 1.3707 0.5031 -3.2477 1.6911 -6.5641 -10.7647 -1.9394 10.8766 -6.3593 -2.3312 2.2728 -10.2862 11.4020 -8.2251 -25.3964 36.0337 0.0000 0.0000 17.8310 -8.8182 1.0706 -0.8640 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.0286 3.4217 -9.6949 7.5782 13.7219 -61.3254 -0.0000 0.0000 0.5250 -0.0155 2.4138 -9.0617 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 6.6414 -7.4392 -0.5623 1.8126 0.0000 0.0000 -5.9524 -3.6371 16.6485 -0.3922 0.0000 -0.0000 -18.5771 -19.3629 -22.4058 10.5257 0.0000 0.0000 5.3123 20.6675 -32.8112 -8.0861 0.0000 -0.0000 - -0.9417 79.3747 23.9528 -4.1624 -10.2463 148.6254 -0.2684 -2.4495 -0.6970 -1.3090 -0.6944 -0.4007 16.5410 -10.3545 0.0449 0.1137 -3.8132 1.4804 -7.0246 -10.5588 -1.7748 11.4420 -6.3405 -1.9921 0.9690 -13.4871 10.7629 -9.0189 -21.3131 31.4858 0.0000 0.0000 17.0399 -10.1394 -0.0776 -2.1139 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.3228 6.4474 -9.1429 9.8272 11.5320 -60.9585 -0.0000 0.0000 1.2910 1.1088 3.4271 -8.6681 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 5.7865 -6.2383 1.6301 2.2185 0.0000 0.0000 -6.4898 -5.0474 17.6152 -0.4903 0.0000 -0.0000 -18.5811 -18.4438 -22.9739 13.4107 0.0000 0.0000 1.9907 18.1845 -29.4228 -6.7974 0.0000 -0.0000 - -1.1882 79.9448 23.9459 -5.7208 -7.7702 144.9831 -0.8561 1.2811 -0.8855 -1.7605 1.2252 -0.1115 15.8945 -12.3055 -1.2685 -0.6514 -4.8405 1.3845 -7.7111 -9.6314 -2.5252 12.1783 -6.3483 -2.6635 -1.0226 -15.9225 9.0381 -10.5562 -19.1766 26.7279 0.0000 0.0000 17.0432 -11.0453 0.0211 -3.3633 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -5.2609 9.1078 -8.6866 11.6093 9.9127 -60.5825 -0.0000 0.0000 1.7105 2.7754 3.8601 -8.3005 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.8108 -3.3084 3.0466 4.2739 0.0000 0.0000 -7.6733 -6.7835 19.2891 -0.7163 0.0000 -0.0000 -20.7400 -15.7236 -22.3001 18.0538 0.0000 0.0000 -2.8459 14.9356 -25.1333 -5.4815 0.0000 -0.0000 - -1.5357 80.4428 23.9678 -6.1452 -4.4125 139.5885 -0.5223 3.5807 -0.7938 -1.4743 2.5049 0.1453 13.9119 -10.6910 -1.2294 -1.2955 -5.3429 1.5615 -8.7949 -8.0780 -4.2186 12.1915 -6.6306 -4.0504 -2.1721 -15.5618 6.8891 -12.9901 -20.1189 21.8190 0.0000 0.0000 17.3785 -11.8716 2.0664 -4.5436 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -4.9698 9.8594 -9.1044 12.3879 9.9291 -60.1828 -0.0000 0.0000 1.8712 3.6830 3.8227 -8.0935 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.5803 0.8261 5.1255 8.0855 0.0000 0.0000 -8.5313 -9.3784 22.5304 -0.7833 0.0000 -0.0000 -21.5048 -12.9158 -18.9322 20.5988 0.0000 0.0000 -5.9058 12.4156 -21.6087 -5.1010 0.0000 -0.0000 - -1.9435 80.8764 24.0150 -5.5957 -1.2373 131.9837 -0.0216 4.6589 -0.5450 -1.1381 1.9654 0.2453 12.5645 -6.3021 0.5444 -1.7019 -4.3385 1.7531 -10.4285 -5.9450 -5.7703 10.9428 -7.0588 -5.3174 -1.5166 -12.9959 5.8957 -14.5410 -21.8901 18.2385 0.0000 0.0000 16.5695 -12.0248 3.5513 -5.9340 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.7158 9.4664 -9.9547 11.8191 9.8990 -59.3956 -0.0000 0.0000 1.9211 3.1373 3.6216 -7.8264 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.5739 4.7083 7.1902 11.7186 0.0000 0.0000 -6.8928 -12.6301 26.3787 -0.4363 0.0000 -0.0000 -20.1333 -10.8301 -13.8414 20.1474 0.0000 0.0000 -7.0996 10.4712 -17.9140 -5.4489 0.0000 -0.0000 - -2.3276 81.2470 24.0924 -5.2197 1.0964 124.1095 0.1425 4.9061 -0.3755 -1.0903 0.7698 0.2527 12.1846 -2.0559 2.2419 -2.0680 -2.4899 1.5191 -12.3174 -3.7103 -6.0476 9.1118 -7.2154 -5.9126 -0.2531 -11.1188 6.2037 -13.3311 -21.2645 17.6267 0.0000 0.0000 14.8280 -11.2253 1.7855 -6.6999 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.4760 9.7156 -9.9581 10.3969 8.2180 -58.4521 -0.0000 0.0000 2.1059 2.6409 2.8013 -6.9332 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.8621 6.9374 6.8569 12.7647 0.0000 0.0000 -3.4740 -15.2546 27.6026 -0.1178 0.0000 -0.0000 -18.5001 -9.6927 -9.4530 18.4590 0.0000 0.0000 -7.6787 8.3844 -13.5242 -5.6600 0.0000 -0.0000 - -2.6209 81.5382 24.2051 -6.1437 2.9319 118.2337 -0.4762 4.8700 -0.3274 -1.4722 0.0033 0.1847 12.5067 0.3198 2.1637 -2.5297 -1.2605 0.8708 -14.3081 -2.3266 -5.2467 7.8404 -6.8834 -5.8257 0.0794 -11.8681 6.9417 -11.4507 -17.5130 18.2369 0.0000 0.0000 14.1543 -10.0029 -1.1560 -5.3425 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.3576 11.0594 -8.9945 9.0688 5.7892 -57.9869 -0.0000 0.0000 2.4851 3.4598 1.0123 -5.6235 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -13.3787 7.1224 3.1461 10.1251 0.0000 0.0000 -1.7968 -15.8177 23.7400 -0.2567 0.0000 -0.0000 -18.3210 -10.0294 -5.9419 16.8832 0.0000 0.0000 -7.7718 6.7898 -10.7085 -5.6568 0.0000 -0.0000 - -2.8037 81.7721 24.3375 -7.6261 4.4844 114.3007 -1.5984 5.6530 -0.3199 -2.1212 -0.0394 0.1184 13.3022 0.3536 0.8053 -2.8860 -1.2372 0.2712 -16.1447 -1.8865 -4.3326 7.5291 -6.3239 -5.4184 -0.6700 -13.6382 7.4832 -12.2069 -13.5246 17.5601 0.0000 0.0000 15.4834 -9.5213 -1.7771 -2.7287 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -4.5026 12.4476 -8.1418 8.3065 4.9461 -58.0590 -0.0000 0.0000 2.6947 4.0001 -0.8293 -5.1844 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -13.8806 6.1423 -1.3289 4.9881 0.0000 0.0000 -2.6902 -13.1952 16.9126 -0.4107 0.0000 -0.0000 -18.2203 -11.2520 -2.0460 14.4906 0.0000 0.0000 -6.8708 6.3884 -10.4809 -5.7725 0.0000 -0.0000 - -2.9265 82.0110 24.4661 -8.2181 5.5197 110.3190 -2.4446 7.3355 -0.1951 -2.5884 0.2964 0.1194 14.1079 -0.7211 -0.2488 -2.9953 -1.7023 0.0289 -17.5289 -1.8514 -3.9750 7.5783 -5.8712 -5.1702 -1.5964 -14.2368 7.7617 -15.3907 -11.3046 15.9808 0.0000 0.0000 18.0126 -11.0583 -0.4811 -0.6541 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.6824 13.0577 -8.1617 7.8976 6.1046 -58.2570 -0.0000 0.0000 2.3805 2.0770 -1.3940 -6.3434 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -13.8342 5.7725 -2.4743 1.4043 0.0000 0.0000 -3.6421 -9.3675 11.6170 -0.3962 0.0000 -0.0000 -15.9271 -11.8401 1.9458 9.9697 0.0000 0.0000 -5.0019 6.4203 -9.9324 -5.8775 0.0000 -0.0000 - -3.0377 82.2786 24.5727 -7.9921 5.6990 105.2632 -2.5550 8.4117 0.1236 -2.6618 0.5327 0.1451 14.5792 -1.0626 -0.5702 -3.0195 -1.8887 -0.0261 -18.3767 -1.9430 -4.1666 7.3823 -5.3989 -5.3436 -1.9345 -14.0913 7.8814 -18.2426 -9.4688 15.3632 0.0000 0.0000 20.4145 -13.6743 0.8801 0.4492 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.6268 13.0647 -8.6451 7.4786 7.6501 -58.6852 -0.0000 0.0000 1.8208 -1.3168 -0.8382 -7.9306 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -14.4660 6.5445 -1.9008 2.1127 0.0000 0.0000 -3.1637 -7.1831 11.7331 -0.2502 0.0000 -0.0000 -11.4166 -11.6222 4.2656 3.9346 0.0000 0.0000 -2.9332 5.9815 -6.2369 -5.7689 0.0000 -0.0000 - -3.1633 82.5475 24.6233 -7.5201 5.6380 100.1735 -2.2096 8.6192 0.3465 -2.4396 0.8448 0.1720 14.3925 -0.6663 -0.9619 -3.0767 -1.8182 -0.2131 -18.6001 -1.9308 -4.3834 7.0349 -4.4576 -5.7653 -1.9081 -14.2052 7.8437 -19.4361 -6.8706 16.3727 0.0000 0.0000 22.2332 -15.2219 1.5663 1.0675 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.3258 12.7897 -8.9444 7.0180 8.7355 -59.8334 -0.0000 0.0000 1.6398 -3.1816 -0.7837 -8.7143 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -16.2054 8.2347 -1.6140 5.9873 0.0000 0.0000 -1.5354 -6.0980 14.9423 0.0422 0.0000 0.0000 -7.5197 -10.9903 5.5930 -0.6676 0.0000 -0.0000 -1.4966 5.1217 -1.6950 -5.5554 0.0000 -0.0000 - -3.2861 82.8109 24.6284 -6.7054 5.6030 96.0019 -1.7508 8.8611 0.2877 -2.1676 1.3338 0.1842 13.9839 -0.4359 -1.8328 -3.0915 -1.6781 -0.5763 -18.3842 -1.3519 -4.0933 6.8489 -2.8628 -5.8209 -2.2367 -14.4258 7.7112 -20.1834 -4.3345 17.8519 0.0000 0.0000 23.8823 -15.1195 1.7145 1.7506 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.0431 12.4225 -9.1869 6.6868 9.5876 -61.5638 -0.0000 0.0000 1.9077 -2.6512 -1.6969 -8.9686 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -18.1103 10.6847 -1.2366 10.3779 0.0000 0.0000 0.0303 -4.1476 16.0072 -0.0252 0.0000 -0.0000 -5.6053 -9.8452 8.0076 -2.2108 0.0000 -0.0000 -1.0699 4.4192 0.2998 -5.3945 0.0000 -0.0000 - -3.3747 83.0515 24.6296 -5.9507 5.4634 92.1949 -1.5698 9.1271 0.1665 -2.0557 1.5309 0.1544 13.9798 -0.4777 -2.6987 -3.0084 -1.3266 -0.9336 -18.0072 0.1517 -3.1070 6.8750 -0.9093 -4.9968 -3.0134 -14.2952 7.6636 -21.7069 -2.9856 18.8162 0.0000 0.0000 25.7416 -14.5436 1.6614 2.4069 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -3.9230 11.9109 -9.5850 6.6573 10.5354 -63.4763 -0.0000 0.0000 2.1488 -1.4758 -2.5992 -9.2732 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -19.6164 12.8103 -0.3376 14.0511 0.0000 0.0000 1.1705 -1.1011 13.3333 -0.5896 0.0000 -0.0000 -4.9014 -8.8111 11.7602 -1.5753 0.0000 -0.0000 -1.5727 3.8266 0.2880 -5.1213 0.0000 -0.0000 - -3.4086 83.2567 24.6458 -5.5180 5.1798 87.8056 -1.6798 9.0881 0.1934 -2.0888 1.2084 0.0716 14.2160 -0.3926 -3.1159 -2.9075 -0.6936 -1.1731 -17.5607 2.4815 -1.5509 7.1294 0.9126 -3.4678 -3.6242 -13.9157 7.8741 -23.6320 -2.4839 19.4803 0.0000 0.0000 27.7232 -14.5349 1.5456 2.8646 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.9101 11.2864 -9.7399 7.1416 11.4852 -65.6255 -0.0000 0.0000 2.0935 -0.9613 -2.7803 -9.4566 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -20.6613 14.0342 0.5387 16.5812 0.0000 0.0000 2.8669 1.3164 8.8202 -0.9795 0.0000 -0.0000 -4.2665 -8.3111 15.4950 -0.2063 0.0000 -0.0000 -2.7119 3.0681 0.8841 -4.7981 0.0000 -0.0000 - -3.3935 83.4192 24.6629 -5.3267 4.9428 82.8159 -1.8833 8.7421 0.2901 -2.1400 0.7144 -0.0198 14.2017 -0.0875 -3.2588 -2.8957 -0.0123 -1.3836 -17.1204 4.8732 0.2367 7.6379 2.4048 -1.8234 -3.8676 -13.6104 8.3020 -24.9881 -2.0705 20.3750 0.0000 0.0000 29.6064 -14.6713 1.4936 3.4127 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.9470 10.7499 -9.3354 8.2005 11.9361 -68.1356 -0.0000 0.0000 1.9541 -0.5368 -2.3054 -9.0812 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -21.1779 14.7489 -0.0464 17.4909 0.0000 0.0000 4.9478 1.6569 5.3802 -1.0085 0.0000 -0.0000 -3.5228 -8.1894 18.4122 1.2817 0.0000 0.0000 -4.0875 2.3246 2.9241 -4.7942 0.0000 -0.0000 - -3.3436 83.5248 24.6638 -5.2834 4.6278 77.8305 -1.8438 8.3551 0.3612 -2.1248 0.4096 -0.0809 13.8911 0.2560 -3.4855 -2.9718 0.4076 -1.5994 -16.7686 6.5609 1.8163 8.0877 3.7664 -0.3645 -4.2931 -13.3833 8.5243 -25.5503 -1.8381 21.5541 0.0000 0.0000 31.4279 -13.8876 1.5792 4.2572 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.9274 10.3492 -8.8297 9.3842 11.7653 -70.6288 -0.0000 0.0000 1.9534 0.4702 -1.4356 -8.3291 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -20.8023 15.2991 -2.6056 16.9036 0.0000 0.0000 6.0718 1.2861 4.7663 -1.3492 0.0000 -0.0000 -2.6335 -8.2565 21.2194 2.8089 0.0000 0.0000 -5.4335 1.8205 5.0690 -4.9788 0.0000 -0.0000 - -3.2872 83.5848 24.6432 -5.0413 4.4294 73.0706 -1.8789 8.2444 0.4640 -2.1590 0.2631 -0.1158 13.7253 0.5753 -3.8377 -3.0758 0.5815 -1.7792 -16.6711 7.6512 3.0379 8.0563 5.2371 1.0034 -5.2929 -13.2552 8.2646 -25.8503 -1.8508 22.8065 0.0000 0.0000 33.4720 -12.0684 1.7302 5.1959 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.8492 9.9439 -8.7366 10.2316 11.6538 -72.6334 -0.0000 0.0000 2.0880 1.5298 -0.5841 -7.6624 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -20.2158 15.7981 -5.6662 15.9171 0.0000 0.0000 5.8598 1.8806 6.3068 -2.3097 0.0000 -0.0000 -1.9812 -8.1820 24.3866 4.3908 0.0000 0.0000 -6.7582 1.3645 6.6428 -4.8455 0.0000 -0.0000 - -3.2238 83.6397 24.6073 -4.3463 4.3521 68.3007 -2.1328 8.2015 0.5885 -2.3531 0.1831 -0.1316 13.9155 0.9229 -4.1297 -3.2075 0.7753 -1.9092 -17.0689 8.9598 4.1846 7.6130 6.7537 2.3873 -6.4845 -13.2517 7.8474 -26.4943 -1.6283 23.9099 0.0000 0.0000 36.0587 -10.0749 1.8906 6.0017 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.8486 9.5246 -8.9349 10.8320 12.1748 -74.1114 -0.0000 0.0000 2.4208 1.8292 -0.1967 -7.0350 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -19.9888 16.2857 -7.8630 15.2891 0.0000 0.0000 5.4075 2.6030 7.6899 -3.1361 0.0000 -0.0000 -1.4667 -7.5770 27.2549 5.5736 0.0000 0.0000 -7.9298 0.7911 8.5432 -4.4796 0.0000 -0.0000 - -3.1450 83.7153 24.5587 -3.1747 4.3013 63.3298 -2.4530 7.8693 0.6390 -2.5776 0.0819 -0.1477 14.1441 1.5252 -4.3095 -3.4487 1.1768 -2.0530 -18.0536 10.7397 5.5617 7.1215 8.0984 3.7320 -7.3761 -13.2614 7.7354 -27.6636 -1.0124 24.6675 -0.0000 0.0000 39.2831 -8.5018 2.2108 6.6941 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -3.9605 9.0930 -9.0622 11.4466 12.9515 -75.2543 -0.0000 0.0000 3.1485 1.5633 -0.1625 -6.1647 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -20.3116 16.7573 -10.0387 15.1300 0.0000 0.0000 5.9223 2.1110 7.4558 -3.1290 0.0000 -0.0000 -0.9890 -6.2777 29.3617 6.0884 0.0000 0.0000 -8.7540 0.2792 11.3538 -4.3344 0.0000 -0.0000 - -3.0566 83.7930 24.4960 -1.7796 4.0590 58.2432 -2.4416 7.2151 0.5508 -2.5976 -0.1542 -0.2047 13.9521 2.5506 -4.4237 -3.8334 1.7675 -2.2789 -19.4014 12.4341 7.1120 6.6167 9.2400 4.9970 -8.0056 -13.0898 7.8292 -29.1171 -0.5345 25.1156 -0.0000 0.0000 42.9131 -7.2026 2.8757 7.3892 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.9407 8.5174 -9.0676 11.9560 13.2333 -76.1119 -0.0000 0.0000 4.2023 1.5477 0.1983 -5.1547 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -20.9724 16.9917 -13.3928 15.4252 0.0000 0.0000 6.7831 1.1158 5.5342 -2.5278 0.0000 -0.0000 -0.6827 -4.6731 30.9841 6.6446 0.0000 0.0000 -9.5456 0.0043 14.6311 -4.3064 0.0000 -0.0000 - -2.9742 83.8492 24.4185 -0.2761 3.7306 53.1565 -2.1993 6.4009 0.3721 -2.4433 -0.4578 -0.2719 13.3479 3.7406 -4.5870 -4.2605 2.4329 -2.5264 -20.8953 13.7010 8.5905 5.8273 10.2926 6.2046 -8.4533 -12.7866 7.8324 -30.7526 -0.3641 25.6264 -0.0000 0.0000 46.5447 -6.0071 3.8741 8.1900 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.6911 7.7320 -9.0860 12.1585 13.0435 -76.5170 -0.0000 0.0000 5.0713 2.0522 1.1280 -4.3837 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -21.9844 16.7723 -17.2295 16.0600 0.0000 0.0000 6.6976 1.0662 2.0928 -2.0054 0.0000 -0.0000 -1.0897 -3.3152 32.8071 8.2730 0.0000 0.0000 -10.8309 -0.1843 17.5847 -4.0338 0.0000 -0.0000 - -2.8945 83.8614 24.3347 1.0771 3.6041 48.1368 -2.0362 5.4214 0.1848 -2.2981 -0.7702 -0.3420 12.6775 4.4800 -4.8800 -4.5648 3.0830 -2.7555 -22.5831 14.7525 9.9368 4.6405 11.2359 7.2943 -8.4899 -12.3910 7.9505 -32.7860 -0.2694 26.3261 -0.0000 0.0001 49.9648 -5.1153 5.0885 9.0891 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4461 6.8819 -9.0863 12.1523 13.1700 -76.3282 -0.0000 0.0000 5.3561 2.6133 1.8846 -3.9379 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -23.0195 15.6447 -20.3886 16.3088 0.0000 0.0000 5.9771 1.3035 -2.3997 -1.7868 0.0000 -0.0000 -2.1875 -2.7269 34.7729 10.9747 0.0000 0.0000 -12.5432 -0.3676 20.2420 -3.6834 0.0000 -0.0000 - -2.8033 83.8059 24.2499 2.0938 3.6305 43.2759 -1.9245 4.4370 0.0502 -2.1554 -1.0101 -0.4241 12.0876 4.3653 -5.3496 -4.7251 3.6305 -2.9803 -24.4552 15.5967 11.0934 3.2063 11.9054 8.1044 -8.1494 -11.7278 8.3802 -35.1031 -0.5121 26.9142 -0.0000 0.0001 53.1564 -4.6519 6.3152 9.8545 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.2718 6.0866 -9.0640 12.0476 14.1581 -75.6746 -0.0000 0.0000 5.3445 2.5656 1.7966 -3.6405 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -23.5736 13.4407 -22.8250 15.8251 0.0000 0.0000 5.2894 0.5489 -5.9192 -1.5748 0.0000 -0.0000 -3.2363 -2.8154 36.0007 13.9023 0.0000 0.0000 -14.2424 -0.2708 23.0538 -3.4752 0.0000 -0.0000 - -2.7058 83.6644 24.1583 2.9008 3.5311 38.7569 -1.6835 3.6787 -0.0453 -1.9211 -1.0767 -0.4844 11.5168 3.7480 -5.9902 -4.8858 3.9538 -3.1802 -26.2622 15.8901 11.8199 1.7413 12.2486 8.4896 -7.9900 -10.8639 8.6978 -37.0684 -1.6167 27.2552 -0.0000 0.0001 56.0243 -4.3028 7.2285 10.2714 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -2.9680 5.3488 -9.2399 11.7819 15.7483 -74.8367 -0.0000 0.0000 5.5696 2.1243 1.3037 -3.5832 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -23.5920 10.4478 -24.2183 15.0040 0.0000 0.0000 4.7728 -0.1264 -6.6657 -1.3744 0.0000 -0.0000 -3.8132 -3.1731 36.0661 16.7483 0.0000 0.0000 -15.9479 0.4866 25.4301 -3.1519 0.0000 -0.0000 - -2.6157 83.4375 24.0609 3.6577 3.3544 34.5722 -1.3685 2.8564 -0.0650 -1.7301 -1.0215 -0.5220 11.1263 3.2342 -6.6256 -5.1663 4.0716 -3.3259 -27.9937 15.8015 12.1313 0.3403 12.3566 8.4603 -8.2551 -10.2643 8.7027 -38.4875 -3.2428 27.6225 -0.0000 0.0001 58.4046 -3.7309 7.6977 10.4594 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -2.5334 4.9299 -9.7916 11.4258 16.9457 -73.8337 -0.0000 0.0000 5.9104 2.0236 1.3110 -3.9332 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -23.4441 7.0717 -23.2657 14.1056 0.0000 0.0000 4.6444 1.1314 -5.6426 -1.2694 0.0000 -0.0000 -4.0191 -3.7598 35.1543 19.6297 0.0000 0.0000 -17.7615 2.0674 26.5104 -2.8455 0.0000 -0.0000 - -2.5317 83.1441 23.9819 4.4208 3.5052 30.3996 -1.2609 1.5478 0.0155 -1.7557 -1.1613 -0.5680 11.1304 2.8287 -7.0081 -5.4977 4.2670 -3.4245 -30.0398 15.8768 12.5780 -1.1270 12.1904 8.2718 -8.5454 -10.0128 9.1209 -39.9145 -4.7663 27.9679 -0.0000 0.0001 60.4164 -3.1055 8.0547 10.6695 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.1927 5.1105 -10.4629 11.3294 16.7874 -72.6040 -0.0000 0.0000 5.8130 1.9926 1.8478 -4.3908 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -23.7038 3.9083 -19.5790 13.5549 0.0000 0.0000 4.6584 3.3439 -5.1370 -0.9723 0.0000 -0.0000 -4.0912 -4.8533 33.5722 22.5121 0.0000 0.0000 -19.2140 4.5567 26.4241 -3.3663 0.0000 -0.0000 - -2.4404 82.7906 23.9464 5.0786 3.8598 25.8822 -1.2658 0.0221 0.1636 -1.8039 -1.6526 -0.6678 11.2513 2.2705 -6.9564 -5.7522 4.6777 -3.4320 -32.2250 15.9141 13.4725 -2.9725 11.4335 8.3422 -8.3615 -9.4361 10.4963 -41.6242 -6.7114 27.7738 -0.0000 0.0001 62.1669 -3.0157 8.7012 10.8942 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.8896 5.4748 -10.9474 11.7054 15.4940 -71.3936 -0.0000 0.0000 5.2758 1.1106 2.2418 -4.4218 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -24.5002 1.6650 -15.3427 14.2344 0.0000 0.0000 4.1126 3.8205 -4.9629 -0.5921 0.0000 -0.0000 -3.8628 -6.3695 31.4224 25.4365 0.0000 0.0000 -19.5342 7.8292 25.6973 -4.8848 0.0000 -0.0000 - -2.3429 82.3544 23.9473 5.4735 3.5585 21.0416 -1.0052 -0.9046 0.2317 -1.5277 -2.0278 -0.7075 10.9392 1.8874 -6.3987 -5.8694 4.9282 -3.2751 -33.4739 14.8090 14.1551 -5.2838 9.8693 8.9649 -7.6489 -8.0725 12.1093 -42.9075 -10.0549 26.9240 -0.0000 0.0001 63.1238 -3.7571 9.6083 10.9555 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.4238 5.1369 -11.4072 12.3167 14.6050 -70.6242 -0.0000 0.0000 4.9500 -0.1097 2.5705 -4.1603 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -25.2563 0.6809 -12.8957 16.4013 0.0000 0.0000 2.5625 2.7215 -3.1420 -0.3563 0.0000 -0.0000 -2.9154 -7.6565 28.8276 28.5727 0.0000 0.0000 -17.9541 11.0951 23.3842 -6.6941 0.0000 -0.0000 - -2.2684 81.8244 23.9568 5.5922 2.2438 16.1504 -0.5558 -0.9144 0.2231 -1.1442 -1.7983 -0.5978 10.3025 2.2160 -5.4331 -5.8826 4.6435 -2.9345 -33.2079 11.9567 13.8281 -7.5374 7.6841 9.9776 -6.5334 -6.4933 13.0572 -42.9516 -14.2596 26.3089 -0.0000 0.0001 62.2761 -4.8262 10.4349 10.7521 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.0743 4.0563 -12.1355 12.7032 15.2203 -70.2453 -0.0000 0.0000 5.0479 0.1351 3.6534 -4.3628 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -25.5258 0.3676 -10.7257 19.3284 0.0000 0.0000 0.3133 2.4555 -0.6171 -0.2402 0.0000 -0.0000 -1.2531 -8.4466 26.0696 31.6638 0.0000 0.0000 -14.0444 13.2573 17.5682 -8.4272 0.0000 -0.0000 - -2.2518 81.2290 23.9554 5.4424 0.7854 11.5539 -0.3554 -0.5883 0.2612 -1.0332 -1.1974 -0.4129 9.8381 3.0521 -4.3357 -5.7926 3.9816 -2.5237 -32.0472 8.0357 12.5504 -9.0875 5.3254 10.8316 -5.1385 -5.2302 13.5327 -41.6159 -17.8016 26.8056 -0.0000 0.0001 59.2042 -5.3512 10.9403 10.2222 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.2151 3.1452 -13.0492 12.4063 16.7054 -69.6514 -0.0000 0.0000 5.0852 1.9182 5.2334 -5.2395 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -25.2748 -0.5146 -6.5496 22.0096 0.0000 0.0000 -2.1581 3.5046 -0.0198 -0.1122 0.0000 -0.0000 0.6668 -9.5187 22.9561 34.1830 0.0000 0.0000 -8.4875 14.1821 8.1520 -10.6649 0.0000 -0.0000 - -2.2937 80.6242 23.9363 4.9859 -0.0135 7.6645 -0.4679 -0.4605 0.3558 -1.1738 -0.7230 -0.2556 9.7841 3.7731 -3.4632 -5.5321 3.3285 -2.1939 -30.8091 4.2546 10.8903 -9.7716 3.1536 11.1119 -3.8205 -3.9959 14.1614 -39.3408 -20.2362 28.2055 -0.0000 0.0001 54.5716 -5.2776 11.1937 9.4535 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.6827 2.7381 -13.7828 11.1262 17.9343 -68.6039 -0.0000 0.0000 4.7414 2.9412 5.7909 -5.9523 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -24.5733 -2.0965 -1.7133 24.2351 0.0000 0.0000 -4.4365 4.4291 -1.0503 0.1016 0.0000 0.0000 2.2644 -11.3619 18.5036 36.1013 0.0000 0.0000 -2.1620 15.0724 -3.0578 -13.4326 0.0000 -0.0000 - -2.3683 80.0618 23.9059 4.2836 -0.2779 4.7703 -0.6378 -0.3965 0.4040 -1.3419 -0.4833 -0.1693 10.0520 4.0093 -2.8304 -5.1320 2.8306 -1.9532 -29.7937 1.5670 9.3664 -9.7967 1.4107 10.7990 -2.8172 -2.6656 14.8497 -36.7000 -22.0449 30.1235 -0.0000 0.0001 49.3513 -5.3955 11.3351 8.6207 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -2.0769 2.2770 -14.3309 8.9548 18.7483 -67.4378 -0.0000 0.0000 4.0467 2.0918 4.5077 -5.7987 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -23.5219 -3.4617 1.1296 26.1327 0.0000 0.0000 -6.4871 4.6078 -1.3826 0.2685 0.0000 0.0000 2.8628 -13.4980 12.2508 37.9201 0.0000 0.0000 4.2788 16.2354 -14.2595 -14.3638 0.0000 -0.0000 - -2.4510 79.5682 23.8779 3.6061 -0.4581 2.7637 -0.7612 -0.2286 0.3908 -1.4648 -0.2665 -0.0876 10.3856 3.8871 -2.0660 -4.7179 2.3720 -1.6420 -28.9680 0.4237 8.2771 -9.4805 0.5318 10.1117 -1.8571 -1.8049 15.1755 -34.1205 -23.0251 32.3611 -0.0000 0.0000 44.4140 -6.1272 11.2969 7.7604 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.3647 1.2562 -15.0870 6.5785 19.5246 -66.5657 -0.0000 0.0000 3.0716 1.1223 2.3370 -5.3664 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -22.3307 -4.2029 1.9377 27.5575 0.0000 0.0000 -8.2971 4.8119 -0.4546 0.3328 0.0000 0.0000 1.9858 -15.3407 5.4632 40.1242 0.0000 0.0000 8.3772 16.5546 -22.5715 -12.2967 0.0000 -0.0000 - -2.5282 79.1295 23.8701 2.9605 -0.4873 1.2766 -0.8199 -0.2722 0.3909 -1.5487 -0.1232 0.0098 10.6977 3.6738 -0.8611 -4.3386 1.9913 -1.1696 -28.3581 0.8042 7.7624 -9.0744 0.7248 9.2311 -0.7486 -1.6795 15.3422 -31.7514 -22.7174 34.0696 -0.0000 0.0000 40.6625 -7.0151 11.0622 6.8298 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -2.9168 -0.3389 -16.1388 5.0023 20.1333 -66.3286 -0.0000 0.0000 2.0235 1.4356 0.8663 -5.4315 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -20.7935 -4.8737 2.5215 28.0724 0.0000 0.0000 -9.6307 5.4047 0.3454 0.3517 0.0000 0.0000 0.0191 -17.0557 -0.2822 42.6408 0.0000 0.0000 7.9270 16.0220 -24.6133 -10.6406 0.0000 -0.0000 - -2.5872 78.7233 23.8929 2.1989 -0.1373 0.0693 -0.8187 -0.7777 0.4056 -1.5753 -0.2500 0.0803 11.0563 3.4525 0.6225 -3.9465 1.8258 -0.6360 -27.9951 2.3078 7.8323 -8.6346 1.3619 8.2144 0.1370 -1.6875 15.9431 -29.3436 -21.8962 34.3412 -0.0000 0.0000 38.3735 -7.5918 10.7539 5.8784 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.9825 -2.1347 -17.1862 4.6553 20.1660 -66.7585 -0.0000 0.0000 1.3566 2.4144 0.6629 -5.8385 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -18.6486 -5.7677 3.4668 27.4846 0.0000 0.0000 -10.3465 5.8914 0.5072 0.3399 0.0000 0.0000 -2.4157 -18.9433 -4.4527 44.6888 0.0000 0.0000 4.3758 14.6212 -20.2973 -11.0621 0.0000 -0.0000 - -2.6152 78.3419 23.9375 1.2748 0.3525 -0.9263 -0.6877 -1.4872 0.3997 -1.5118 -0.5629 0.0998 11.3678 3.2495 2.0020 -3.5519 1.8368 -0.1925 -27.7113 4.0703 8.2066 -8.0854 1.5817 7.2147 0.5662 -1.4419 17.0941 -26.5466 -21.7521 33.7683 0.0000 0.0000 36.4720 -8.1903 10.2758 5.0762 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -5.3852 -3.8089 -18.0478 5.0271 19.9183 -67.4305 -0.0000 0.0000 1.3936 3.0817 1.4125 -5.9450 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -16.0267 -6.4530 4.0483 26.2011 0.0000 0.0000 -10.7146 6.0523 0.8833 0.2870 0.0000 0.0000 -5.0190 -20.7713 -7.0759 45.3808 0.0000 0.0000 0.8946 12.0003 -13.3524 -11.0153 0.0000 -0.0000 - -2.6074 77.9913 23.9784 0.4264 0.6076 -1.8499 -0.4577 -2.0889 0.3917 -1.3873 -0.7711 0.1166 11.4444 3.1433 3.1334 -3.2695 1.8360 0.1606 -27.2893 5.1752 8.4604 -7.4495 1.2991 6.5180 0.8190 -1.2293 18.3096 -23.3594 -22.4612 33.9060 0.0000 0.0000 33.5142 -9.2436 9.3892 4.4983 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.7527 -5.2260 -18.7798 5.3249 20.0446 -67.8778 -0.0000 0.0000 1.8705 3.3679 2.6197 -5.6874 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -13.6185 -6.6512 4.1516 25.0674 0.0000 0.0000 -11.1938 6.1550 1.8131 0.2726 0.0000 0.0000 -7.7532 -22.2410 -8.1041 44.2620 0.0000 0.0000 -1.0339 9.0904 -7.7505 -9.8214 0.0000 -0.0000 - -2.5653 77.6656 23.9978 -0.2962 0.6310 -2.8533 -0.1238 -2.5979 0.4139 -1.2403 -0.7879 0.1657 11.3191 3.1586 4.1697 -3.1290 1.7104 0.4887 -26.7069 5.3796 8.4702 -6.8708 0.9905 6.2230 1.2584 -1.2135 19.0914 -19.9479 -23.3063 35.5749 0.0000 0.0000 29.1563 -10.5883 8.2445 3.9586 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.8753 -6.3810 -19.3537 5.2216 20.5009 -68.0675 -0.0000 0.0000 2.1192 3.5987 3.5946 -5.5474 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -11.7768 -6.5996 4.6182 24.6536 0.0000 0.0000 -11.9523 6.2277 2.5246 0.3554 0.0000 0.0000 -10.2167 -23.4063 -7.4154 41.1322 0.0000 0.0000 -1.7708 7.2589 -5.0097 -9.5494 0.0000 -0.0000 - -2.4878 77.3556 23.9974 -0.9595 0.5348 -3.7777 0.2073 -3.0553 0.4548 -1.1042 -0.7265 0.2246 11.2779 3.1934 5.1611 -3.0107 1.5221 0.8247 -26.1234 5.0373 8.3065 -6.4067 0.8634 6.1447 1.6867 -1.1167 19.3150 -16.3296 -24.0065 38.2018 0.0000 0.0000 24.2941 -11.8590 7.1617 3.1703 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.7814 -7.4381 -19.7121 4.8165 20.7874 -68.2727 -0.0000 0.0000 1.7586 3.6292 3.8206 -5.7431 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -10.4071 -6.4099 5.6249 24.9284 0.0000 0.0000 -12.8779 6.0678 2.6037 0.4170 0.0000 0.0000 -12.1802 -24.2246 -5.3190 35.9771 0.0000 0.0000 -1.3754 7.2389 -5.1997 -10.1366 0.0000 -0.0000 - -2.3736 77.0502 23.9879 -1.6630 0.3463 -4.2482 0.4705 -3.4225 0.4653 -0.9784 -0.6265 0.2589 11.4405 3.1250 5.9917 -2.8141 1.2877 1.1535 -25.5664 4.5780 7.9294 -5.9821 0.6826 6.0489 1.7997 -0.7723 19.1543 -12.6361 -24.8696 40.7161 0.0000 0.0000 20.0952 -12.8886 6.1383 1.9452 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.6375 -8.4597 -20.0276 4.2293 21.0178 -68.5260 -0.0000 0.0000 0.9175 3.2980 3.4425 -6.0348 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.1496 -5.9544 6.3532 25.4646 0.0000 0.0000 -13.9015 5.7530 2.5048 0.3488 0.0000 0.0000 -13.6561 -24.4284 -2.2969 28.9936 0.0000 0.0000 0.9622 8.7744 -8.2353 -9.9640 0.0000 -0.0000 - -2.2240 76.7359 23.9725 -2.3686 0.1494 -4.1374 0.6904 -3.7796 0.3950 -0.8864 -0.3835 0.2908 11.6390 2.8533 6.5443 -2.5933 0.9842 1.4362 -24.8771 4.0216 7.3287 -5.5440 0.3358 5.8265 1.7231 -0.4972 18.8831 -9.0730 -25.9055 42.6058 0.0000 0.0000 17.2177 -13.5001 5.0280 0.5225 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -10.4625 -9.3969 -20.3597 3.5404 21.5645 -68.7909 -0.0000 0.0000 0.0373 2.8038 3.0860 -6.2173 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.8384 -5.3034 6.4667 25.9664 0.0000 0.0000 -15.0520 5.5018 2.4632 0.2884 0.0000 0.0000 -14.7880 -23.7939 1.2394 20.8400 0.0000 0.0000 5.6943 10.9047 -13.3239 -9.1992 0.0000 -0.0000 - -2.0435 76.4046 23.9491 -2.9726 0.0652 -3.6792 0.8773 -4.1735 0.2495 -0.8066 -0.0049 0.3069 11.6675 2.3761 6.8037 -2.4274 0.5844 1.6489 -23.9706 3.2134 6.6279 -5.1442 -0.0739 5.5656 1.9318 -0.7224 18.5849 -5.5888 -26.2579 44.3834 0.0000 0.0000 15.5025 -13.6783 4.0129 -0.4453 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -11.2467 -10.2109 -20.5364 3.0328 22.1879 -69.1151 -0.0000 -0.0000 -0.5814 2.4311 3.1815 -6.2748 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.5109 -4.6958 6.4187 26.3642 0.0000 0.0000 -16.2905 5.3116 2.2687 0.4322 0.0000 0.0000 -15.8485 -22.1986 3.7918 12.7360 0.0000 0.0000 11.2737 12.8923 -17.3296 -9.5173 0.0000 -0.0000 - -1.8498 76.0491 23.9204 -3.6378 0.2486 -3.1814 1.1179 -4.5367 0.1032 -0.6887 0.3772 0.3139 11.6046 1.6453 6.8186 -2.2916 0.0825 1.8455 -22.9519 2.2143 5.8807 -4.8197 -0.3924 5.3939 2.4598 -1.3894 18.1191 -2.2705 -25.6832 46.4639 0.0000 0.0000 14.4705 -13.5767 3.3266 -0.6470 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -12.0185 -11.0463 -20.6412 2.8571 22.4213 -69.3876 -0.0000 -0.0000 -0.9381 2.2098 3.6100 -6.2199 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.8497 -4.3419 6.4734 26.3955 0.0000 0.0000 -17.4312 5.1234 1.9167 0.6804 0.0000 0.0000 -16.9086 -20.0642 2.4262 6.0540 0.0000 0.0000 14.4715 14.9709 -15.6484 -11.4389 0.0000 -0.0000 - -1.6765 75.6648 23.8937 -4.6882 0.9608 -2.8521 1.6167 -4.8462 0.0557 -0.4386 0.6000 0.3033 11.5828 0.6102 6.7758 -2.1348 -0.5804 2.1549 -22.0024 1.3027 4.9756 -4.5625 -0.4871 5.3118 2.9941 -2.1845 17.3098 0.2251 -25.0902 48.4989 0.0000 0.0000 13.8974 -13.3077 2.8299 -0.5081 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -12.8451 -12.1116 -21.1598 2.8247 22.5382 -69.2172 -0.0000 -0.0000 -1.2276 1.9618 4.0225 -6.0820 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.2855 -4.5094 6.5182 25.5902 0.0000 0.0000 -18.2061 4.9648 1.6757 0.7644 0.0000 0.0000 -17.9363 -18.4793 -1.4344 2.2678 0.0000 0.0000 13.9814 15.9249 -9.5512 -13.3800 0.0000 -0.0000 - -1.5271 75.2769 23.8699 -5.7654 2.1804 -2.8423 2.2207 -5.0803 0.0106 -0.1616 0.6363 0.2882 11.6475 -0.6554 6.8266 -2.0001 -1.4049 2.6107 -21.3143 0.5459 3.9887 -4.4419 -0.3685 5.2742 3.3834 -3.1459 16.3439 1.4738 -25.0769 50.0525 0.0000 0.0000 13.8845 -12.7499 2.2922 -0.5408 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -13.6129 -13.3075 -22.0710 2.7461 22.7020 -68.5593 -0.0000 -0.0000 -1.4519 1.3486 4.3488 -5.9330 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.6772 -5.1186 6.4129 24.0355 0.0000 0.0000 -18.5767 4.7249 1.9612 0.7194 0.0000 0.0000 -19.4837 -17.6687 -2.0598 2.2036 0.0000 0.0000 12.2270 14.3847 -6.3142 -13.9524 0.0000 -0.0000 - -1.3979 74.8868 23.8427 -6.5218 3.8012 -3.2415 2.7481 -5.2058 -0.1012 0.0266 0.5454 0.2742 11.7743 -2.0646 6.8474 -1.9168 -2.3036 3.0626 -20.9011 -0.3113 3.1498 -4.5260 -0.2816 5.3183 3.7348 -4.4614 15.5680 1.9821 -25.2357 51.3847 0.0000 0.0000 14.3483 -11.7844 1.7730 -0.7219 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -14.1933 -14.3910 -22.8501 2.7920 22.4317 -67.7797 -0.0000 -0.0000 -1.4248 0.3450 4.8456 -5.7724 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.5725 -6.0345 6.3257 21.9702 0.0000 0.0000 -18.6501 4.3401 2.8354 0.8205 0.0000 0.0000 -21.2099 -17.7081 0.9728 4.4549 0.0000 0.0000 11.0034 12.1193 -7.4021 -13.4083 0.0000 -0.0000 - -1.2735 74.4794 23.8091 -6.8508 5.4474 -3.8582 2.9774 -5.0591 -0.2115 0.0917 0.3770 0.2447 12.0500 -3.4716 6.5755 -1.8272 -3.1641 3.3790 -20.7786 -1.3759 2.4262 -4.6825 -0.4018 5.4232 3.9494 -5.9951 15.0608 2.4804 -25.3137 52.8032 0.0000 0.0000 14.9089 -10.4427 1.2078 -0.8554 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -14.6603 -15.1887 -23.4106 3.0796 21.4581 -67.0636 -0.0000 -0.0000 -1.1906 -0.5170 5.5378 -5.4860 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 6.2342 -6.8877 6.2882 19.6201 0.0000 0.0000 -18.5975 3.8870 3.9503 1.0148 0.0000 0.0000 -22.7236 -18.2085 3.8016 7.4581 0.0000 0.0000 10.5139 10.8768 -8.6358 -13.0362 0.0000 -0.0000 - -1.1225 74.0427 23.7704 -6.8547 6.6969 -4.4910 2.8589 -4.6534 -0.2598 0.0569 0.2358 0.2126 12.5442 -4.7091 6.0895 -1.6890 -3.8981 3.6072 -21.0633 -2.3500 1.5862 -4.6172 -0.5257 5.4125 3.8385 -7.2015 14.6481 3.0988 -25.7067 54.0033 0.0000 0.0000 15.3229 -8.9173 0.3061 -1.0120 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -15.1517 -15.7077 -24.1206 3.3439 20.4929 -66.4003 -0.0000 -0.0000 -1.0775 -0.7797 5.9715 -5.0784 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 8.5557 -7.2741 6.3244 17.3993 0.0000 0.0000 -18.5808 3.3497 4.8378 0.9275 0.0000 0.0000 -24.0824 -18.3252 4.5076 11.4428 0.0000 0.0000 10.3817 10.6539 -7.5981 -13.0920 0.0000 -0.0000 - -0.9224 73.5714 23.7173 -6.5150 7.4955 -5.4156 2.5170 -4.1807 -0.2638 -0.0608 0.1032 0.1904 13.0865 -5.6303 5.8073 -1.5849 -4.4550 3.8164 -21.6885 -2.9895 0.7434 -4.1842 -0.4148 5.2138 3.6714 -7.8150 14.3190 3.7858 -26.0009 54.7660 0.0000 0.0000 15.6433 -7.5281 -0.8545 -1.2748 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.5557 -16.0460 -24.8403 3.4607 20.0970 -66.1345 -0.0000 -0.0000 -1.1981 -0.6894 5.7662 -4.7999 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 10.1530 -7.1347 6.9084 16.0349 0.0000 0.0000 -18.8484 2.6961 5.3233 0.5630 0.0000 0.0000 -24.9454 -17.8449 4.2613 16.5016 0.0000 0.0000 9.7601 10.1957 -5.4034 -12.4852 0.0000 -0.0000 - -0.6684 73.0752 23.6363 -5.5705 7.8317 -6.8557 2.0095 -3.4973 -0.3383 -0.3563 -0.0523 0.1767 13.4413 -6.3704 5.7506 -1.6275 -4.8303 3.9210 -22.3654 -3.4358 0.3807 -3.5788 -0.2421 5.0479 3.8061 -8.3980 14.2909 4.7625 -24.8575 55.4874 0.0000 0.0000 15.7958 -6.4053 -1.8567 -1.3708 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -15.6960 -16.0302 -24.9198 3.8100 19.5892 -66.6905 -0.0000 -0.0000 -1.2523 -0.6615 5.2205 -4.8906 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.4814 -6.4782 8.0872 16.0270 0.0000 0.0000 -19.7377 2.0802 5.6311 0.3734 0.0000 0.0000 -24.8649 -16.7986 4.0729 20.9529 0.0000 0.0000 7.6795 8.4876 -3.4936 -11.3113 0.0000 -0.0000 - -0.3639 72.5770 23.5400 -3.9173 7.3718 -8.2778 1.1736 -2.0905 -0.5364 -0.8813 -0.1175 0.1466 13.6554 -7.2662 5.4257 -1.8131 -5.1194 3.8090 -23.0227 -3.7861 0.6358 -3.1748 -0.2250 5.1010 3.9742 -9.6536 14.6393 5.7201 -22.3875 56.1570 0.0000 0.0000 15.5703 -5.2485 -2.7927 -1.1396 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.5814 -15.3564 -24.3031 4.4420 18.2134 -67.8240 -0.0000 -0.0000 -0.9793 -0.6797 4.7938 -5.2618 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 9.4034 -5.0960 8.9000 17.1162 0.0000 0.0000 -21.2029 1.5025 5.8997 0.4129 0.0000 0.0000 -24.7451 -14.6218 2.1843 23.7471 0.0000 0.0000 3.6449 6.3834 -0.6094 -10.6715 0.0000 -0.0000 - -0.0265 72.0747 23.4696 -2.2447 6.2957 -8.9159 0.2800 -0.2722 -0.7628 -1.4246 0.1419 0.1266 13.8902 -8.3549 4.6278 -2.0267 -5.3929 3.5757 -23.8721 -3.7811 0.9726 -3.1999 -0.1544 5.1853 3.6543 -11.1649 15.0787 5.7121 -21.0078 56.0418 0.0000 0.0000 15.1673 -3.6926 -3.9898 -0.9416 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -15.3262 -14.3952 -23.8353 4.6854 16.8581 -68.8725 -0.0000 -0.0000 -0.6169 -0.7064 4.2744 -5.5332 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 7.9848 -3.1704 8.9068 18.4864 0.0000 0.0000 -22.3832 0.5808 5.8664 0.1347 0.0000 0.0000 -25.6263 -11.3392 -2.7227 26.1138 0.0000 0.0000 -1.0827 5.2932 4.7142 -9.9464 0.0000 -0.0000 - 0.3029 71.5471 23.4543 -1.3239 5.6181 -9.0489 -0.1056 0.7192 -0.8598 -1.6386 0.5257 0.1503 14.0710 -8.9576 3.8949 -2.1957 -5.5508 3.4012 -24.9438 -3.3286 0.8906 -3.5200 0.2148 4.9803 3.1749 -11.8999 15.2898 4.5014 -21.6010 54.9809 0.0000 0.0000 15.2189 -2.3240 -4.6897 -1.1391 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -14.9355 -14.0698 -24.0578 4.2366 16.9856 -69.7885 -0.0000 -0.0000 -0.5210 -1.0164 3.1893 -5.5037 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 7.4132 -1.6640 9.2941 19.7538 0.0000 0.0000 -22.3271 -0.7163 5.3137 -0.7305 0.0000 -0.0000 -26.8803 -8.7147 -6.7386 29.2655 0.0000 0.0000 -4.6211 5.0788 9.2692 -8.6758 0.0000 -0.0000 - 0.6085 70.9877 23.4944 -1.0757 5.5495 -9.6145 -0.0152 0.7124 -0.7769 -1.5506 0.6412 0.1603 14.0648 -8.6818 3.6955 -2.3249 -5.4198 3.2749 -25.8643 -2.7100 0.6146 -3.6965 0.6117 4.5035 3.2308 -11.5861 15.3381 3.4107 -22.1394 53.8018 0.0000 0.0000 16.2000 -2.1734 -3.7227 -1.5422 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -14.3219 -14.3514 -24.4251 3.8331 18.1288 -71.0087 -0.0000 -0.0000 -0.6203 -1.6040 1.8171 -5.4756 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 7.4297 -0.7907 10.7061 21.2802 0.0000 0.0000 -21.1490 -1.6471 4.7201 -1.8178 0.0000 -0.0000 -27.1070 -7.9229 -6.0527 31.9757 0.0000 0.0000 -6.5527 4.4821 9.7192 -7.6115 0.0000 -0.0000 - 0.9113 70.4205 23.5734 -0.8447 5.2297 -10.7878 0.0154 0.7549 -0.6739 -1.5389 0.5673 0.1562 13.8555 -7.9721 3.6719 -2.4251 -5.0498 3.0885 -26.2026 -2.1230 0.6276 -3.4209 0.7176 4.0824 3.8199 -10.9794 15.5047 3.3381 -21.3809 53.2897 0.0000 0.0000 17.7073 -2.9852 -1.8206 -1.6349 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -13.4810 -14.2093 -24.3833 4.2128 18.7916 -72.3223 -0.0000 -0.0000 -0.6655 -1.7628 0.9291 -5.7616 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 6.7727 0.3365 11.9037 23.6908 0.0000 0.0000 -19.7089 -1.6111 4.7518 -2.7228 0.0000 -0.0000 -26.0063 -7.7269 -2.5057 32.7206 0.0000 0.0000 -7.9730 3.0286 7.9002 -7.3691 0.0000 -0.0000 - 1.2226 69.8878 23.6813 -0.2262 4.0798 -12.0716 -0.4581 1.4703 -0.6126 -1.7763 0.6431 0.1684 13.6266 -7.3588 3.3665 -2.4736 -4.6287 2.8519 -26.0574 -1.4238 0.9268 -2.8394 0.7852 3.9153 4.1258 -10.7028 15.8598 3.3325 -20.8207 53.0475 0.0000 0.0000 19.1316 -3.3434 -1.1969 -1.3921 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -12.5020 -13.1766 -24.1172 5.0350 18.5670 -73.0688 -0.0000 -0.0000 -0.5612 -1.1962 0.7216 -6.1796 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 4.3608 2.1846 12.2218 27.7813 0.0000 0.0000 -18.1272 -1.5283 5.5308 -3.3214 0.0000 -0.0000 -24.5200 -6.5274 0.4686 31.5731 0.0000 0.0000 -9.2203 1.6426 6.9621 -7.5447 0.0000 -0.0000 - 1.5105 69.4252 23.8034 0.6355 2.5829 -13.2679 -1.2096 2.4417 -0.5278 -2.1152 0.9204 0.2126 13.4831 -6.8510 2.9555 -2.4762 -4.2521 2.6640 -25.8344 -0.4702 1.2182 -2.3325 1.1503 3.8795 3.7196 -10.4913 16.1366 2.5352 -21.6165 52.6359 0.0000 0.0000 20.4808 -2.4889 -2.5194 -1.2157 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -11.6014 -11.9540 -23.9937 5.6619 18.0795 -73.1630 -0.0000 -0.0000 -0.2962 -0.5703 0.7374 -6.3292 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.1066 3.8950 12.8893 34.0739 0.0000 0.0000 -15.5669 -2.4615 6.6586 -3.3621 0.0000 -0.0000 -23.4255 -4.7146 2.0316 29.8387 0.0000 0.0000 -9.6977 0.7917 7.4417 -7.5735 0.0000 -0.0000 - 1.7428 69.0322 23.9039 1.3178 1.2207 -14.5834 -1.7214 3.3527 -0.4014 -2.3226 1.1609 0.2743 13.2766 -6.1262 2.7619 -2.5052 -3.8600 2.5310 -25.6328 0.4867 1.4428 -2.0670 1.6584 3.8178 3.0309 -9.9440 16.0807 1.4200 -22.5558 52.4769 0.0000 0.0000 22.0778 -0.8060 -4.0576 -1.2383 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -10.9190 -11.3178 -23.9349 6.0073 17.5705 -73.0672 -0.0000 0.0000 0.1442 -0.4487 0.6118 -6.1760 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.9484 4.7494 14.1529 41.6846 0.0000 0.0000 -12.4030 -2.9190 7.0143 -2.9817 0.0000 -0.0000 -22.4612 -3.2445 3.8956 28.3431 0.0000 0.0000 -9.6633 0.0257 7.5972 -7.5788 0.0000 -0.0000 - 1.9134 68.6677 23.9687 1.3956 0.1352 -15.9397 -1.7610 4.2512 -0.3091 -2.3148 1.2708 0.3194 12.9839 -5.2121 2.7389 -2.5776 -3.3896 2.3653 -25.2914 1.2293 1.7459 -1.9315 2.0319 3.7212 2.4225 -9.1182 15.7650 0.4307 -22.7695 52.7674 0.0000 0.0000 24.0801 1.3319 -4.1850 -1.2032 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.3419 -11.0002 -23.6445 6.0625 17.0875 -72.8662 -0.0000 0.0000 0.3564 -0.4209 0.1686 -6.0689 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.1053 5.0003 14.5377 48.3279 0.0000 0.0000 -10.9917 -0.4469 3.8376 -3.2223 0.0000 -0.0000 -20.9128 -2.1352 6.4125 26.8469 0.0000 0.0000 -9.9614 -0.8279 6.9507 -7.7307 0.0000 -0.0000 - 2.0259 68.3133 24.0241 1.0689 -0.3647 -17.1016 -1.6662 4.8697 -0.2429 -2.2229 1.2557 0.3323 12.9107 -4.3954 2.7874 -2.5961 -2.9048 2.2060 -24.8597 1.9141 2.0954 -1.8379 2.3529 3.5848 1.7215 -8.1713 15.4635 -1.2281 -23.5751 52.4432 0.0000 0.0000 26.8000 3.8704 -3.1778 -1.0928 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -9.5637 -10.2964 -23.0196 5.2702 17.4913 -72.3102 -0.0000 -0.0000 -0.5014 0.3172 -1.0360 -6.1662 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -11.8151 4.8465 13.1669 51.9816 0.0000 0.0000 -11.7909 4.5500 -4.3062 -3.4777 0.0000 -0.0000 -18.9440 -1.3705 8.1409 25.2973 0.0000 0.0000 -10.6614 -1.3731 6.7260 -7.7926 0.0000 -0.0000 - 2.0927 67.9828 24.0928 0.6971 -0.1020 -18.1307 -1.6152 4.9598 -0.1540 -2.1496 1.1184 0.3250 13.1421 -3.8280 3.0845 -2.4883 -2.5031 2.1844 -24.5042 2.6685 2.3167 -1.8017 2.7624 3.3667 0.8269 -6.9717 15.2043 -4.2819 -26.1332 50.5199 0.0000 0.0000 30.8685 6.5258 -1.8614 -0.9991 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -8.3901 -9.2106 -22.0692 3.1559 19.8722 -71.4760 -0.0000 -0.0000 -3.0598 2.2007 -3.2650 -6.2007 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -13.6038 4.2608 10.6302 51.9990 0.0000 0.0000 -12.9086 9.4471 -13.5987 -2.0893 0.0000 -0.0000 -17.0194 -1.2347 8.8682 24.0884 0.0000 0.0000 -11.2358 -1.6054 7.1788 -7.7167 0.0000 -0.0000 - 2.1377 67.6980 24.1606 0.5823 0.5039 -19.1202 -1.6216 4.8383 -0.0732 -2.1062 0.9094 0.3206 13.4004 -3.4815 3.5953 -2.3499 -2.2781 2.3110 -24.2260 3.2816 2.3829 -1.8051 3.1115 3.1761 -0.0257 -5.6095 14.7846 -8.2545 -29.3877 47.4597 0.0000 0.0000 36.4522 9.0194 -0.2433 -0.8750 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -7.0366 -8.1993 -20.7746 0.2983 23.9961 -70.6072 -0.0000 -0.0000 -7.2545 5.1406 -5.9883 -5.8835 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -15.2883 3.5565 7.9811 49.6592 0.0000 0.0000 -14.2318 11.3335 -17.5631 -0.0175 0.0000 -0.0000 -15.5260 -1.6116 9.7378 23.3424 0.0000 0.0000 -11.5980 -1.8812 7.2475 -7.8166 0.0000 -0.0000 - 2.1770 67.4458 24.2088 0.4991 0.9141 -19.7588 -1.4700 5.0669 -0.0715 -2.0382 0.7815 0.3226 13.4753 -3.3994 3.9619 -2.3129 -2.2306 2.4175 -23.8701 3.5401 2.3768 -1.7650 3.2600 3.1539 -0.5025 -4.7150 14.0039 -12.2947 -31.8769 44.7908 -0.0000 0.0000 42.6890 11.6097 1.6495 -0.7858 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -5.6791 -7.3435 -19.2173 -2.4047 28.0182 -69.8708 -0.0000 -0.0000 -12.2537 8.3364 -8.6618 -5.3488 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -16.7688 3.2739 5.4966 46.2393 0.0000 0.0000 -15.7216 9.5375 -14.8464 0.7739 0.0000 0.0000 -14.2433 -1.8210 10.8067 22.6678 0.0000 0.0000 -12.0542 -2.1946 6.7624 -8.0966 0.0000 -0.0000 - 2.2165 67.2019 24.2375 0.1942 0.9013 -19.7816 -1.1804 5.7404 -0.1208 -1.9329 0.8274 0.3314 13.5021 -3.5301 3.9833 -2.3603 -2.2765 2.4658 -23.3659 3.6098 2.2745 -1.6391 3.3534 3.2191 -0.8082 -4.4482 13.0136 -16.2927 -34.0872 42.6954 -0.0000 0.0000 48.9174 14.9109 3.0625 -0.9936 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.5254 -6.5890 -17.8183 -4.6850 31.2135 -69.1218 -0.0000 -0.0000 -17.3235 11.1090 -11.3460 -4.8528 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -17.8123 3.5926 3.2065 41.9974 0.0000 0.0000 -15.8008 6.4780 -9.7710 0.3726 0.0000 0.0000 -12.9453 -1.3480 11.1464 21.8008 0.0000 0.0000 -12.5489 -2.3559 6.6235 -8.2174 0.0000 -0.0000 - 2.2529 66.9643 24.2568 -0.2173 0.6311 -19.4232 -0.9673 6.4255 -0.1567 -1.8290 0.9411 0.3487 13.6501 -3.6220 3.9401 -2.3603 -2.2913 2.5115 -22.8353 3.7679 2.0596 -1.4565 3.5638 3.1472 -1.3340 -4.1857 12.1590 -20.4350 -36.8630 40.1056 -0.0000 0.0001 55.1859 18.8038 3.7263 -1.4584 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.8209 -6.1838 -16.8220 -6.5573 34.4270 -68.2516 -0.0000 -0.0000 -22.2455 13.4663 -13.8732 -4.3658 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -18.5445 4.0312 1.3675 36.9505 0.0000 0.0000 -14.5769 4.9234 -6.3005 -0.1688 0.0000 -0.0000 -11.6604 -0.4479 10.7853 20.8219 0.0000 0.0000 -12.7919 -2.5202 6.8994 -8.1169 0.0000 -0.0000 - 2.2778 66.7422 24.2738 -0.5369 0.3486 -18.9264 -0.8780 6.8203 -0.1557 -1.7679 1.0024 0.3601 13.8931 -3.5354 3.9747 -2.2576 -2.2052 2.5396 -22.4050 3.9853 1.8331 -1.2849 3.8375 2.9053 -2.1489 -3.4901 11.5779 -24.3755 -39.8229 36.8016 -0.0000 0.0001 61.3185 22.1847 4.4497 -1.7439 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -3.6522 -6.3359 -16.0019 -7.8417 38.0472 -67.4667 -0.0000 -0.0000 -26.9264 15.7825 -15.7919 -3.7386 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -19.2110 4.1184 0.2501 31.4518 0.0000 0.0000 -13.0126 4.7081 -4.9145 -0.3629 0.0000 -0.0000 -10.4052 0.3756 10.5924 19.7538 0.0000 0.0000 -12.7877 -2.9262 6.6950 -7.9777 0.0000 -0.0000 - 2.2820 66.5283 24.2937 -0.7838 0.1669 -18.0065 -0.7933 7.0284 -0.1517 -1.7154 1.0399 0.3486 14.1460 -3.4534 3.7896 -2.1133 -2.0627 2.4433 -22.0360 4.1179 1.6790 -1.1621 4.0467 2.6155 -2.9383 -2.7357 11.0752 -27.4448 -42.0587 34.0457 -0.0000 0.0001 66.4802 23.9691 5.8765 -1.4974 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.6999 -6.7197 -15.1418 -8.5834 41.0581 -67.0213 -0.0000 -0.0000 -31.1227 18.0046 -17.2055 -3.0822 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -19.8050 3.9512 -0.6355 26.0203 0.0000 0.0000 -11.3411 4.3450 -4.1403 -0.3981 0.0000 -0.0000 -9.0873 0.9709 10.6514 18.5107 0.0000 0.0000 -12.7346 -3.4113 5.6719 -7.7624 0.0000 -0.0000 - 2.2633 66.3032 24.3185 -1.1441 0.0355 -16.4005 -0.6127 7.2873 -0.1609 -1.6426 1.1194 0.3249 14.4226 -3.5990 3.1952 -1.9741 -1.9304 2.2440 -21.6206 4.2123 1.5346 -1.0218 4.2062 2.3132 -3.5030 -2.3657 10.5446 -29.4433 -43.2449 32.5537 -0.0000 0.0001 70.2111 24.4471 7.5779 -0.8543 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.7105 -6.9707 -14.3738 -9.0582 42.9244 -66.8537 -0.0000 -0.0000 -34.7490 19.7652 -18.5497 -2.6424 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -20.2291 3.9109 -2.0779 21.2379 0.0000 0.0000 -9.6516 3.4388 -2.8352 -0.7168 0.0000 -0.0000 -7.5607 1.5122 10.3177 17.0859 0.0000 0.0000 -12.6279 -3.6277 4.4016 -7.3836 0.0000 -0.0000 - 2.2264 66.0663 24.3424 -1.6052 -0.1297 -14.4964 -0.3916 7.6418 -0.1762 -1.5701 1.1621 0.2823 14.7208 -3.8755 2.5885 -1.8451 -1.8099 2.0310 -21.1366 4.3694 1.3502 -0.7700 4.4169 1.9704 -3.8528 -2.2867 10.2101 -30.7934 -43.4407 31.6922 -0.0000 0.0001 72.7560 24.9840 8.8765 -0.3293 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.6800 -7.1020 -13.7880 -9.3958 44.2104 -66.8778 -0.0000 -0.0000 -37.8979 20.8591 -19.7094 -2.4683 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -20.7487 4.0350 -3.7870 17.6661 0.0000 0.0000 -8.2359 2.5418 -0.9093 -1.2769 0.0000 -0.0000 -5.9204 2.0681 9.4293 15.6568 0.0000 0.0000 -12.4319 -3.5597 3.4212 -7.0737 0.0000 -0.0000 - 2.1784 65.8330 24.3544 -2.0184 -0.4039 -12.8784 -0.1866 8.0020 -0.1763 -1.4618 1.1585 0.2525 14.8686 -4.0754 2.2651 -1.7418 -1.7020 1.9295 -20.6151 4.5513 1.1850 -0.4317 4.7230 1.6282 -4.0952 -2.1509 10.2010 -31.6344 -42.9593 30.9483 -0.0000 0.0001 74.2474 26.1122 9.6618 -0.2086 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -3.7126 -7.3080 -13.2873 -9.5173 45.4445 -67.1209 -0.0000 -0.0000 -40.5651 21.5689 -20.2152 -2.3627 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -21.7301 4.1702 -4.5257 15.5879 0.0000 0.0000 -7.2931 2.0914 0.9678 -1.5843 0.0000 -0.0000 -4.3905 2.6197 8.4720 14.3882 0.0000 0.0000 -12.3272 -3.4312 2.7358 -7.0379 0.0000 -0.0000 - 2.1183 65.6017 24.3541 -2.4279 -0.7566 -11.5081 0.1460 8.2850 -0.1943 -1.2895 1.1665 0.2357 14.7741 -4.1261 2.1412 -1.7051 -1.6037 1.8761 -20.0515 4.6734 1.0598 -0.1447 5.0849 1.3434 -4.1483 -2.0677 10.2891 -31.7014 -42.1270 30.8900 -0.0000 0.0001 74.2757 26.8380 10.1093 -0.2303 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.8167 -7.6279 -12.8399 -9.4819 46.3454 -67.5210 -0.0000 -0.0000 -42.6123 22.4337 -20.0736 -2.0398 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -22.9064 4.2881 -4.0444 14.6242 0.0000 0.0000 -6.6103 2.1203 2.0873 -1.5369 0.0000 -0.0000 -2.9345 3.1225 7.7253 13.3101 0.0000 0.0000 -12.4335 -3.2769 2.0683 -7.0810 0.0000 -0.0000 - 2.0464 65.3578 24.3499 -2.8179 -1.2299 -10.0426 0.5359 8.5189 -0.2202 -1.0928 1.2268 0.2272 14.5761 -4.1297 2.0090 -1.7291 -1.5140 1.7987 -19.4873 4.8809 0.9545 0.0189 5.4581 1.0227 -3.8972 -2.3277 10.2900 -31.1240 -41.1280 31.7855 -0.0000 0.0001 72.8056 26.3501 10.1694 -0.0309 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.8931 -7.8020 -12.4578 -9.4352 46.4915 -68.0586 -0.0000 -0.0000 -44.0722 23.7364 -19.5408 -1.3405 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -23.9865 4.5528 -3.2575 14.2441 0.0000 0.0000 -5.9657 2.1916 2.3209 -1.5169 0.0000 -0.0000 -1.4728 3.6301 7.0521 12.2283 0.0000 0.0000 -12.5218 -2.9663 1.2526 -6.9964 0.0000 -0.0000 - 1.9623 65.0849 24.3478 -3.1899 -1.7609 -8.4694 0.8847 8.6822 -0.2109 -0.9215 1.2626 0.2117 14.4615 -4.1770 1.9103 -1.7602 -1.3922 1.7234 -19.0640 5.3790 0.8989 0.1285 5.8381 0.5697 -3.5159 -2.7808 10.4013 -30.5248 -40.1809 32.5378 -0.0000 0.0001 70.9509 25.3565 9.6264 0.2857 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.9496 -7.7702 -12.0187 -9.2911 46.3344 -68.7402 -0.0000 -0.0000 -45.4687 25.3240 -18.4409 -0.3781 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -24.7866 4.9430 -2.8620 14.1118 0.0000 0.0000 -5.4497 1.8347 2.1679 -1.6798 0.0000 -0.0000 0.2048 4.1172 6.2326 10.8508 0.0000 0.0000 -12.4331 -2.4716 0.4161 -6.9507 0.0000 -0.0000 - 1.8642 64.7864 24.3386 -3.3899 -2.2944 -6.9205 1.0884 8.7649 -0.1853 -0.7838 1.2205 0.1901 14.4243 -4.2567 1.9640 -1.7644 -1.2548 1.7052 -18.9210 6.1111 0.9044 0.2549 6.2593 0.0348 -3.2102 -3.0882 10.6969 -30.2508 -39.5546 32.2251 -0.0000 0.0001 69.9893 24.9108 8.6804 0.3544 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.1319 -7.8416 -11.5322 -8.9560 46.6124 -69.3039 -0.0000 -0.0000 -47.4342 26.8155 -16.7225 0.4205 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -25.4027 5.3393 -2.8888 14.0679 0.0000 0.0000 -5.1556 1.2658 2.1926 -1.7615 0.0000 -0.0000 1.8641 4.5104 5.1426 9.3694 0.0000 0.0000 -12.4403 -1.9513 -0.1669 -7.0897 0.0000 -0.0000 - 1.7467 64.4742 24.3146 -3.3014 -2.8440 -5.2706 1.1801 8.7982 -0.1542 -0.6964 1.1993 0.1816 14.4182 -4.3677 2.0653 -1.7823 -1.1682 1.7238 -19.0666 6.8318 0.8872 0.3458 6.7298 -0.4765 -2.9938 -3.3235 10.9081 -30.1311 -39.2862 31.2340 -0.0000 0.0001 70.1469 24.7889 7.8449 0.2016 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.3493 -8.0459 -11.2365 -8.7363 46.9265 -69.4917 -0.0000 -0.0000 -49.9126 27.8610 -15.3067 0.6637 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -25.8381 5.7568 -3.1530 13.9176 0.0000 0.0000 -4.8049 0.9859 2.3037 -1.5868 0.0000 -0.0000 3.0607 4.7509 3.9590 8.3567 0.0000 0.0000 -12.7957 -1.4962 -0.6826 -7.2154 0.0000 -0.0000 - 1.6063 64.1498 24.2841 -2.9174 -3.3949 -3.4763 1.1831 8.7553 -0.0686 -0.7131 1.2588 0.1903 14.5207 -4.5189 2.1059 -1.8584 -1.1359 1.7260 -19.4287 7.4745 0.8711 0.3076 7.1993 -0.9333 -2.7008 -3.8829 10.9525 -30.0200 -39.0167 30.3996 -0.0000 0.0001 70.9155 24.2215 7.3567 0.1619 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.4574 -8.0207 -11.2135 -8.8561 46.6084 -69.3148 -0.0000 -0.0000 -52.4502 28.3953 -15.0212 0.3901 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -26.1368 6.1794 -3.3248 13.7356 0.0000 0.0000 -3.9049 0.6589 1.9986 -1.3281 0.0000 -0.0000 3.7100 4.8067 2.9889 7.9167 0.0000 0.0000 -13.3095 -0.9690 -1.5226 -7.1841 0.0000 -0.0000 - 1.4433 63.7951 24.2536 -2.3355 -3.8113 -1.8598 1.0504 8.5403 0.0634 -0.8175 1.2886 0.1987 14.7478 -4.7124 2.2045 -1.9600 -1.0817 1.7215 -19.9499 8.1647 1.0581 0.1286 7.5846 -1.2998 -2.3113 -4.6667 11.1652 -30.0715 -38.6487 29.6331 -0.0000 0.0001 72.1275 23.4785 6.8481 0.3343 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.3953 -7.6123 -11.1426 -9.1380 45.9886 -69.0018 -0.0000 -0.0000 -54.9189 28.5477 -15.1595 0.0117 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -26.4537 6.3850 -3.0707 14.0110 0.0000 0.0000 -2.1109 -0.4323 1.3989 -1.2111 0.0000 -0.0000 4.2142 4.6320 2.2477 7.5359 0.0000 0.0000 -13.8379 -0.2321 -2.4794 -7.1824 0.0000 -0.0000 - 1.2622 63.3883 24.2084 -1.6172 -4.1689 -0.5309 0.7381 8.2298 0.1751 -0.9060 1.2140 0.1878 14.9363 -4.8272 2.4039 -2.0195 -0.9828 1.7218 -20.6311 8.7501 1.4504 -0.1551 7.8104 -1.5058 -1.9517 -5.2354 11.6570 -30.4095 -38.4824 28.4974 -0.0000 0.0001 73.8656 23.4273 5.7198 0.4526 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -4.5273 -7.4501 -10.9870 -9.2349 46.1886 -68.3470 -0.0000 -0.0000 -57.6556 28.6604 -14.3058 -0.1779 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -26.7385 6.4393 -2.5036 14.9332 0.0000 0.0000 0.6189 -1.7813 1.3300 -1.2302 0.0000 -0.0000 4.8242 4.3735 1.5101 6.9604 0.0000 0.0000 -14.5882 0.5931 -3.1035 -7.2985 0.0000 -0.0000 - 1.0621 62.9201 24.1371 -0.7780 -4.7096 0.9045 0.3554 7.9638 0.3050 -1.0481 1.2303 0.1955 15.1080 -4.7973 2.4659 -2.0650 -0.9238 1.6800 -21.5157 8.9343 1.7328 -0.5913 7.8360 -1.5679 -1.5735 -5.6815 12.0310 -30.8501 -38.3420 27.4942 -0.0000 0.0001 75.7647 24.0832 3.8168 0.3026 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.8514 -7.5562 -10.9831 -9.3320 46.5445 -67.5332 -0.0000 -0.0000 -60.2966 28.8344 -12.5490 -0.3588 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -26.4896 6.6852 -1.8549 15.7819 0.0000 0.0000 3.8411 -2.0155 1.7843 -1.2161 0.0000 -0.0000 5.4742 4.2210 0.6541 6.3910 0.0000 0.0000 -15.5017 1.3456 -3.5799 -7.3498 0.0000 -0.0000 - 0.8329 62.3956 24.0543 0.3333 -5.2581 2.4155 -0.2005 7.5030 0.6236 -1.4107 1.4961 0.2575 15.5313 -4.7339 2.3940 -2.2044 -0.9444 1.5947 -22.6491 8.8881 1.8562 -1.3075 7.7167 -1.5841 -1.1012 -6.4533 12.1547 -30.9890 -37.4816 27.4283 -0.0000 0.0001 77.2939 24.7631 1.5539 -0.0266 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -4.9545 -6.7997 -11.0054 -9.6686 45.0894 -67.3538 -0.0000 -0.0001 -62.0099 28.8184 -10.9843 -0.8391 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -25.8680 6.8372 -0.6572 16.2072 0.0000 0.0000 6.1570 -1.2396 1.4127 -1.0049 0.0000 -0.0000 5.9919 3.9564 -0.1917 5.7822 0.0000 0.0000 -16.2065 2.1745 -4.1777 -7.3600 0.0000 -0.0000 - 0.5554 61.8208 23.9815 1.4984 -4.8771 3.0287 -0.7955 6.1737 1.0683 -1.9253 1.5987 0.3162 16.1079 -4.7464 2.7666 -2.4721 -0.9278 1.6258 -23.9502 9.0426 2.2578 -2.3612 7.5197 -1.5418 -0.8032 -7.2066 12.5710 -30.6290 -35.9462 27.7200 -0.0000 0.0001 78.5818 25.2377 -0.5893 -0.3934 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.5475 -4.6572 -10.5725 -10.2563 41.5599 -68.0120 -0.0000 -0.0001 -62.6625 28.3034 -9.6832 -1.6859 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -25.6670 5.5782 1.4916 17.1777 0.0000 0.0000 6.1049 -0.8001 -0.5101 -0.5549 0.0000 -0.0000 6.5391 2.7136 -0.5772 5.1585 0.0000 0.0000 -17.1077 3.3444 -4.3519 -7.6339 0.0000 -0.0000 - 0.2269 61.2409 23.9133 2.4884 -3.2481 2.2831 -1.0240 4.1763 1.2767 -2.1474 0.9108 0.2487 16.0759 -4.6719 3.9404 -2.7591 -0.8787 1.8961 -25.2039 9.0082 2.9972 -3.6615 7.0649 -1.3197 -0.8490 -6.9404 13.6334 -30.2297 -35.1453 26.8805 -0.0000 0.0001 80.2493 25.8387 -2.4154 -0.8179 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.0852 -2.8609 -9.9132 -10.9962 38.4759 -68.3295 -0.0000 -0.0001 -62.9173 27.7107 -8.2429 -2.8300 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -26.5799 2.5290 3.3959 19.7941 0.0000 0.0000 3.7082 -0.8640 -2.5298 0.0636 0.0000 0.0000 6.4188 0.2266 0.5303 6.3233 0.0000 0.0000 -19.2757 4.8405 -4.2517 -8.1384 0.0000 -0.0000 - -0.1292 60.7184 23.8497 3.2068 -1.3261 1.5997 -0.6296 2.5832 0.9936 -1.8007 -0.2057 0.1021 15.1635 -4.2503 5.2019 -2.9216 -1.1683 2.2846 -26.2006 7.4529 3.1068 -5.1181 5.9277 -0.9032 -0.7461 -5.5221 14.8400 -30.8731 -36.1967 24.3655 -0.0000 0.0001 82.5217 26.6930 -3.8235 -1.3411 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.8703 -3.4159 -10.0888 -12.1217 37.4261 -67.4494 -0.0000 -0.0001 -62.7660 27.6913 -8.1533 -4.2720 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -27.7556 -0.6498 3.3426 23.0012 0.0000 0.0000 0.6807 -0.4361 -3.2423 0.6693 0.0000 0.0000 4.3488 -2.7841 2.3961 11.7050 0.0000 0.0000 -22.2449 6.1765 -4.7868 -8.4058 0.0000 -0.0000 - -0.4889 60.2580 23.8200 3.3890 0.2088 2.5257 0.1660 1.6121 0.5220 -1.2888 -0.6489 0.0707 14.2225 -3.7558 5.5633 -2.8963 -1.9753 2.5569 -26.8124 3.8176 1.5918 -6.7424 3.7708 -0.3844 0.1167 -3.8210 15.3731 -33.1566 -38.6671 20.8877 -0.0000 0.0001 84.9858 27.6048 -4.6842 -1.8317 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -3.7349 -5.9395 -11.8407 -13.9084 37.0842 -65.8078 -0.0000 -0.0001 -61.5743 27.7142 -11.3682 -5.9455 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -27.6570 -2.6933 1.6398 24.8303 0.0000 0.0000 -1.5919 0.6767 -3.4070 1.0792 0.0000 0.0000 0.4752 -5.6438 1.8381 20.5223 0.0000 0.0000 -23.6578 6.3966 -5.2999 -8.3881 0.0000 -0.0000 - -0.8178 59.8304 23.8615 3.2786 1.1901 4.5893 0.6930 1.1987 0.2407 -1.0413 -0.4280 0.1225 13.9223 -3.5555 5.2199 -2.6758 -3.0638 2.7810 -27.0424 -0.6769 -1.2290 -8.4135 0.7833 0.1455 1.3884 -2.4799 14.9453 -35.9270 -41.6894 17.5459 -0.0000 0.0001 87.1570 28.5744 -5.4322 -2.2041 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.5110 -8.1565 -14.4508 -15.5565 35.7402 -64.7522 -0.0000 -0.0000 -59.2850 26.6557 -16.6515 -7.6147 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -26.2733 -3.7002 -0.4965 24.7200 0.0000 0.0000 -2.9858 1.5897 -3.5946 1.2678 0.0000 0.0000 -4.1116 -7.6049 -0.4896 29.5442 0.0000 0.0000 -22.5934 5.0403 -5.6156 -7.7069 0.0000 -0.0000 - -1.0796 59.3977 23.9766 3.0172 1.6641 5.9290 0.8524 1.1309 0.1724 -1.0101 -0.1826 0.1939 14.0703 -3.5470 5.2161 -2.3092 -4.0663 3.1252 -26.8355 -4.6009 -4.0827 -9.5952 -2.2288 0.5193 2.1391 -1.6584 14.1595 -37.4253 -44.5992 15.2233 -0.0000 0.0001 88.7904 29.7540 -7.1532 -2.7972 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.3422 -8.9338 -16.3870 -15.8140 33.8410 -65.0893 -0.0000 -0.0000 -56.4251 24.9587 -20.4346 -9.1037 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -24.1138 -4.2685 -2.4572 23.3170 0.0000 0.0000 -3.8410 1.7048 -2.9701 1.2955 0.0000 0.0000 -7.7472 -8.6328 -1.8542 36.1703 0.0000 0.0000 -21.1014 2.4969 -4.5684 -6.2282 0.0000 -0.0000 - -1.2586 58.9668 24.1102 2.8807 1.6027 5.6835 0.7056 1.1595 0.1786 -1.0238 -0.1625 0.2554 14.2076 -3.3777 5.9361 -1.9206 -4.7502 3.5864 -26.0672 -7.3975 -6.0967 -9.7122 -4.5960 0.4183 2.1999 -1.1233 13.6123 -37.1176 -46.9507 14.6073 -0.0000 0.0001 89.5617 31.2144 -10.2523 -3.9580 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -3.3405 -8.5803 -17.0598 -14.8566 31.7040 -66.5194 -0.0000 -0.0000 -52.8389 24.1752 -21.1690 -9.9719 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -22.0511 -4.4170 -4.4540 21.8462 0.0000 0.0000 -4.4936 1.2657 -0.6326 1.3007 0.0000 0.0000 -10.0999 -8.9686 -1.4272 39.9294 0.0000 0.0000 -20.6824 0.0061 -1.2711 -6.0682 0.0000 -0.0000 - -1.3783 58.5500 24.2122 2.6703 1.1383 4.6854 0.6501 1.0580 0.2134 -0.9938 -0.1947 0.3049 14.1372 -2.9613 6.7712 -1.6181 -5.1020 3.9249 -24.7615 -9.3761 -7.3236 -8.7417 -6.2139 -0.1348 2.2551 -0.8188 13.3473 -35.2296 -48.2329 16.5388 -0.0000 0.0001 88.7193 32.7409 -13.2483 -5.2825 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.4539 -7.9046 -17.0825 -13.7472 28.5788 -68.2292 -0.0000 -0.0000 -48.0483 24.8633 -19.7389 -9.4699 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -20.2045 -4.1462 -6.4343 20.9766 0.0000 0.0000 -5.2227 0.7265 2.5101 1.4391 0.0000 0.0000 -11.5810 -8.9557 -0.0505 41.4123 0.0000 0.0000 -20.7851 -1.6793 2.2455 -7.3317 0.0000 -0.0000 - -1.4738 58.1517 24.2785 2.3113 0.6681 3.9330 0.7332 0.7825 0.2519 -0.9678 -0.1373 0.3353 13.9942 -2.6397 7.0831 -1.3846 -5.2542 4.0169 -23.1137 -10.9445 -8.0151 -7.1653 -7.2104 -0.6536 2.5667 -0.7938 13.0845 -31.6292 -48.0777 21.5079 -0.0000 0.0001 85.3005 33.7199 -13.6565 -5.8725 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.7745 -7.4015 -17.1700 -12.7547 24.5321 -69.4903 -0.0000 -0.0000 -42.3545 25.8380 -16.5877 -7.5240 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -18.5175 -3.8624 -7.8615 20.5841 0.0000 0.0000 -6.1028 0.2809 4.7900 1.6682 0.0000 0.0000 -12.8097 -9.0768 1.3412 41.2575 0.0000 0.0000 -20.6730 -2.1145 2.9986 -8.0498 0.0000 -0.0000 - -1.5604 57.7688 24.3257 1.9501 0.4652 3.5316 0.7578 0.4630 0.2537 -0.9855 -0.0597 0.3327 13.9151 -2.6913 6.8731 -1.1290 -5.3566 3.9833 -21.3700 -12.1550 -8.2586 -5.4290 -7.6962 -0.8109 2.7136 -0.9250 12.6166 -26.6753 -46.6008 28.5880 -0.0000 0.0001 79.0370 33.2505 -10.8754 -5.5491 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.3535 -7.0945 -17.4605 -11.4050 20.5960 -70.4156 -0.0000 -0.0000 -35.8089 25.2179 -12.2868 -5.4772 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -17.0194 -3.8913 -8.6650 20.3584 0.0000 0.0000 -6.9753 0.0988 5.9605 1.8000 0.0000 0.0000 -14.0024 -9.5825 2.6170 39.7288 0.0000 0.0000 -20.1864 -1.2920 0.6226 -7.8907 0.0000 -0.0000 - -1.6387 57.3993 24.3560 1.6396 0.4374 3.2740 0.7135 0.2166 0.2197 -1.0005 0.0008 0.3101 13.8954 -2.9501 6.4577 -0.8352 -5.4767 3.9559 -19.8393 -13.0819 -8.3550 -3.7484 -7.9198 -0.8312 2.3748 -0.9746 12.0412 -21.9473 -44.5665 35.5127 -0.0000 0.0001 71.0751 31.3731 -7.2662 -4.9669 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -5.1303 -6.9810 -18.0370 -9.4140 17.0464 -71.7440 -0.0000 -0.0000 -27.3624 21.8734 -9.2523 -4.8026 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -15.6601 -4.0903 -9.3076 20.2154 0.0000 0.0000 -7.7892 0.3342 6.8358 1.7832 0.0000 0.0000 -15.1606 -10.2393 3.8762 37.0885 0.0000 0.0000 -19.3457 0.0333 -2.7501 -7.5073 0.0000 -0.0000 - -1.7074 57.0450 24.3649 1.3097 0.3432 3.1017 0.7495 0.0643 0.1876 -0.9766 0.1155 0.2984 13.9067 -3.0615 6.0450 -0.5603 -5.6136 3.9400 -18.7101 -13.9820 -8.7332 -2.3022 -8.2792 -1.0642 1.8244 -0.7770 11.6375 -18.8181 -42.8745 40.5523 -0.0000 0.0001 63.3356 29.5097 -5.3243 -4.9067 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.1793 -7.2442 -19.1623 -6.6751 13.5428 -73.5842 -0.0000 -0.0000 -17.0837 15.7715 -7.9534 -5.4950 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -14.3841 -4.1814 -9.9068 20.2780 0.0000 0.0000 -8.7301 0.8504 7.7153 1.7519 0.0000 0.0000 -16.3887 -10.6347 5.0460 33.7967 0.0000 0.0000 -18.2170 1.4253 -5.1724 -7.7603 0.0000 -0.0000 - -1.7628 56.7055 24.3605 1.0436 0.1231 2.7561 0.8426 0.0037 0.1791 -0.9506 0.2703 0.3122 13.9406 -2.9671 5.7801 -0.3376 -5.7255 3.9227 -17.8700 -14.9379 -9.4002 -1.2437 -8.8770 -1.4805 1.4425 -0.3556 11.5368 -17.0673 -41.5049 43.8332 -0.0000 0.0001 57.0924 28.5742 -5.4756 -5.5835 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.7777 -8.0838 -20.6290 -3.1451 11.7647 -75.0463 -0.0000 -0.0000 -7.7706 9.5015 -5.6741 -6.0841 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -13.3601 -4.1585 -10.0711 20.6345 0.0000 0.0000 -9.8229 1.3366 8.3557 1.7756 0.0000 0.0000 -17.8155 -10.6613 6.2348 30.1749 0.0000 0.0000 -16.7415 3.1662 -6.0515 -9.9485 0.0000 -0.0000 - -1.8045 56.3643 24.3551 0.9137 -0.0156 1.8876 0.9093 -0.0500 0.1780 -0.9470 0.3636 0.3267 13.9549 -2.8607 5.7626 -0.1521 -5.7859 3.9488 -17.1124 -15.8108 -9.9354 -0.5086 -9.4059 -1.8313 1.2511 0.0628 11.5982 -15.4243 -39.5220 46.7157 -0.0000 0.0001 52.2818 27.8782 -6.6185 -6.3897 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -9.3920 -9.1325 -21.5162 0.4136 12.6337 -75.9034 -0.0000 -0.0000 -1.7737 6.3478 -1.4491 -5.9047 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.5258 -4.2661 -9.7386 21.0118 0.0000 0.0000 -10.8114 1.6496 8.9058 1.7719 0.0000 0.0000 -19.2876 -10.6263 7.6597 26.4434 0.0000 0.0000 -15.2158 4.7764 -5.5872 -13.6086 0.0000 -0.0000 - -1.8419 55.9986 24.3489 0.8591 0.1629 0.6632 0.9087 -0.2840 0.1789 -0.9256 0.3980 0.3312 13.9315 -2.8324 5.8942 -0.0047 -5.8312 4.0055 -16.4224 -16.5404 -10.1360 0.1087 -9.6574 -2.0084 1.2487 0.1425 11.5673 -13.3935 -36.2075 50.0759 -0.0000 0.0000 48.0868 26.6171 -7.3082 -6.6977 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -10.3234 -9.8957 -21.5675 3.4142 14.1594 -76.3378 -0.0000 0.0000 0.8837 6.2649 3.4512 -5.8570 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -11.4965 -4.6951 -9.3781 20.9621 0.0000 0.0000 -11.5838 1.8121 9.7430 1.7188 0.0000 0.0000 -20.7601 -10.8390 9.1402 23.1981 0.0000 0.0000 -14.4335 4.9747 -4.3519 -14.6071 0.0000 -0.0000 - -1.8835 55.5917 24.3411 0.5932 0.6159 -0.4339 1.0388 -0.7468 0.1999 -0.8384 0.4474 0.3275 13.8802 -2.7697 5.9847 0.0966 -5.8829 4.0259 -15.9039 -17.2112 -10.1741 0.6776 -9.7513 -2.1301 1.2854 -0.0093 11.4186 -11.5214 -32.5888 53.2557 -0.0000 0.0000 44.1509 25.2378 -6.9430 -6.6379 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.4332 -10.1375 -21.3088 5.6309 15.0087 -76.3753 -0.0000 0.0000 1.4820 7.1302 7.1852 -6.2760 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.8111 -5.3500 -9.2822 20.3367 0.0000 0.0000 -12.2814 1.8235 10.8050 1.7064 0.0000 0.0000 -22.1660 -11.2307 10.3324 20.9510 0.0000 0.0000 -14.5417 3.9598 -3.4120 -12.2325 0.0000 -0.0000 - -1.9258 55.1572 24.3327 0.2644 1.1021 -1.3587 1.2319 -1.2248 0.2385 -0.7193 0.4868 0.3322 13.8060 -2.5958 6.0638 0.1377 -5.9025 4.0082 -15.6019 -17.7894 -10.2395 1.1196 -9.8236 -2.3220 1.1539 -0.0059 11.2989 -10.1587 -30.2537 55.5150 -0.0000 0.0000 40.6514 24.3324 -6.0522 -6.7937 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -9.9783 -9.8220 -20.9508 7.0710 15.5202 -76.3256 -0.0000 0.0000 1.5255 7.2523 8.6655 -6.5253 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -7.9048 -5.9901 -9.2007 19.5602 0.0000 0.0000 -12.9649 1.7325 11.6913 1.7148 0.0000 0.0000 -23.7657 -11.5717 11.2156 19.6224 0.0000 0.0000 -14.6257 3.3365 -3.6130 -10.6729 0.0000 -0.0000 - -1.9599 54.7076 24.3204 0.0550 1.4265 -2.3754 1.4183 -1.4732 0.2712 -0.6286 0.4527 0.3364 13.7247 -2.3506 6.2666 0.1245 -5.8348 4.0132 -15.5088 -18.1539 -10.3502 1.4161 -9.8637 -2.6261 0.7422 0.2841 11.3411 -9.1295 -29.2869 56.8724 0.0000 0.0000 37.7330 23.6854 -5.3954 -7.2097 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.3922 -9.2337 -20.4287 8.1090 16.0792 -76.4693 -0.0000 0.0000 1.6534 6.5969 8.3093 -6.3634 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -6.2511 -6.4070 -8.9585 19.0848 0.0000 0.0000 -13.6689 1.7156 12.3877 1.6322 0.0000 0.0000 -25.5824 -11.6770 11.9137 18.7068 0.0000 0.0000 -13.9812 3.5108 -4.3270 -11.1471 0.0000 -0.0000 - -1.9866 54.2334 24.2919 -0.0931 1.6165 -3.4108 1.5653 -1.5433 0.2957 -0.5477 0.4364 0.3491 13.6697 -2.0606 6.5040 0.0919 -5.7208 4.0180 -15.5843 -18.3055 -10.5292 1.6516 -9.9220 -3.0136 0.2850 0.7120 11.5325 -8.3203 -28.4984 57.7597 0.0000 0.0000 35.3342 23.0345 -5.1660 -7.4030 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -8.8806 -8.7464 -19.9504 8.9220 16.4744 -76.6204 -0.0000 0.0000 1.7152 6.1513 7.3761 -6.2442 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -4.7477 -6.6054 -8.6903 18.9491 0.0000 0.0000 -14.6026 1.8083 13.1707 1.4945 0.0000 0.0000 -27.3344 -11.4539 12.5159 17.8618 0.0000 0.0000 -13.2428 3.6241 -4.2361 -10.8392 0.0000 -0.0000 - -2.0126 53.7225 24.2447 -0.2432 1.7868 -4.2597 1.6548 -1.5932 0.3341 -0.4780 0.5020 0.3698 13.6270 -1.6834 6.6376 0.0772 -5.6154 3.9751 -15.7525 -18.3618 -10.8288 1.8807 -10.0754 -3.4117 0.0242 1.1981 11.7313 -7.7305 -27.5402 58.4235 0.0000 0.0000 33.5271 22.7118 -5.1750 -7.2166 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.3833 -8.4434 -19.7543 9.4277 16.6405 -76.5328 -0.0000 0.0000 1.5779 6.3309 6.7561 -6.3988 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -3.1688 -6.7170 -8.4250 18.9422 0.0000 0.0000 -15.8026 1.6955 14.0712 1.4465 0.0000 0.0000 -28.6885 -10.8742 13.3744 16.8277 0.0000 0.0000 -13.1555 3.4205 -3.2545 -9.0274 0.0000 -0.0000 - -2.0399 53.1924 24.1879 0.0011 2.0397 -5.1217 1.5237 -1.6643 0.3830 -0.4959 0.5410 0.3897 13.4880 -1.2843 6.7739 0.0373 -5.4726 3.9140 -15.9692 -18.3430 -11.1152 2.0806 -10.2537 -3.7752 0.0588 1.5259 11.7953 -7.4070 -26.7631 59.0330 0.0000 0.0000 32.4132 22.3257 -5.3509 -7.0684 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.8762 -8.0517 -19.6161 9.7845 16.7653 -76.3818 -0.0000 0.0000 1.4225 6.4857 6.5470 -6.5766 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.9428 -6.8893 -8.0297 18.9664 0.0000 0.0000 -16.9038 1.1237 14.9249 1.4594 0.0000 0.0000 -29.9037 -10.1171 14.7601 15.3282 0.0000 0.0000 -13.0663 3.2884 -2.3422 -8.0750 0.0000 -0.0000 - -2.0648 52.6514 24.1232 0.8491 2.3453 -6.1530 1.1528 -1.6915 0.3883 -0.6485 0.4856 0.4030 13.2253 -0.9252 7.0094 -0.1145 -5.2699 3.8511 -16.2779 -18.2165 -11.2259 2.2009 -10.4777 -4.1425 0.1502 1.4923 11.8136 -7.2705 -26.4020 59.5157 0.0000 0.0000 32.0038 21.0215 -5.8100 -7.2483 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -7.4632 -7.3782 -19.2157 10.2636 16.8146 -76.4283 -0.0000 0.0000 1.4165 6.0641 6.5988 -6.4775 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.2262 -7.1139 -7.6474 18.8322 0.0000 0.0000 -17.7617 0.4598 15.7524 1.3706 0.0000 0.0000 -31.3860 -9.2558 16.0266 13.5715 0.0000 0.0000 -12.1884 3.0338 -1.5151 -8.2507 0.0000 -0.0000 - -2.0831 52.0560 24.0445 1.7532 2.4670 -6.9875 0.7343 -1.6110 0.3518 -0.7980 0.5244 0.4294 12.9292 -0.4934 7.1344 -0.3364 -5.0310 3.7088 -16.6887 -18.1804 -11.3460 2.1921 -11.0832 -4.5778 0.2899 1.1858 11.9389 -7.2863 -26.0614 59.7257 0.0000 0.0000 32.0131 19.3396 -6.1894 -7.4350 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.0664 -6.5814 -18.6624 10.7061 16.6153 -76.6133 -0.0000 0.0000 1.4994 5.6374 6.7011 -6.2057 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.2002 -7.1382 -7.5332 18.2224 0.0000 0.0000 -18.7843 0.3184 16.5853 1.1467 0.0000 0.0000 -32.6825 -7.8910 16.3405 12.3037 0.0000 0.0000 -11.2547 1.6970 -0.1276 -7.7056 0.0000 -0.0000 - -2.0892 51.3453 23.9562 2.1049 2.1580 -7.6034 0.3647 -1.3390 0.3173 -0.9230 0.6916 0.4772 12.7720 0.3029 7.1783 -0.4755 -4.7349 3.4834 -17.0578 -18.4987 -11.7137 2.0608 -12.2273 -5.0845 0.6288 1.1608 12.1422 -7.1616 -25.6016 59.8550 0.0000 0.0000 31.8302 18.8614 -5.8451 -7.1604 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.4878 -5.6327 -18.1250 10.9167 16.3188 -76.7760 -0.0000 0.0000 1.5043 5.9238 6.5350 -6.0914 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.7942 -6.6212 -7.3984 17.2601 0.0000 0.0000 -20.1345 0.4409 17.3057 0.8888 0.0000 0.0000 -32.3635 -5.6518 16.1552 11.3907 0.0000 0.0000 -10.6782 -0.9203 0.8347 -7.3661 0.0000 -0.0000 - -2.0910 50.5296 23.8529 2.6122 1.6955 -8.9956 -0.4997 -1.0714 0.2712 -1.2645 0.6927 0.5347 12.6973 1.4683 7.7025 -0.4683 -4.2977 3.3600 -17.2780 -19.1148 -12.0423 1.9908 -13.4147 -5.5461 0.9620 1.6024 12.3447 -6.2807 -25.0755 60.5234 0.0000 0.0000 30.8741 19.0915 -5.2034 -6.5314 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.8424 -4.1050 -17.2835 11.3538 16.1107 -76.9549 -0.0000 0.0000 1.4528 6.1372 6.0671 -6.2030 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.5261 -5.7586 -6.5235 16.8957 0.0000 0.0000 -21.3694 -0.2761 17.9938 0.6748 0.0000 0.0000 -30.2631 -3.3355 15.8816 9.5154 0.0000 0.0000 -8.3275 -3.3587 -0.0850 -9.5539 0.0000 -0.0000 - -2.0944 49.6541 23.7263 3.7124 0.9010 -11.6682 -1.9679 -0.3681 0.1306 -1.9355 0.4025 0.5780 12.6201 2.7173 8.8687 -0.4982 -3.7957 3.4041 -17.5445 -19.8566 -11.8795 2.1394 -14.0271 -5.7868 1.0710 1.3641 12.7014 -4.7587 -23.5242 62.0176 0.0000 0.0000 29.2477 17.7663 -5.7176 -5.7988 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.4692 -1.8245 -15.8504 12.4530 15.4934 -76.9924 -0.0000 0.0000 1.5575 5.1228 5.8426 -6.2449 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 3.9125 -4.2112 -5.3435 18.0533 0.0000 0.0000 -22.5848 -2.0733 19.4958 0.3733 0.0000 0.0000 -27.4470 -1.4189 14.3137 5.9548 0.0000 0.0000 -1.5528 -4.3397 -1.3706 -12.0352 0.0000 -0.0000 - -2.0890 48.7368 23.6073 4.2070 -1.3601 -14.3898 -3.2604 1.9932 -0.0152 -2.6688 0.3177 0.6443 12.7067 3.9944 9.8236 -0.7404 -3.4518 3.3651 -18.1863 -20.7997 -11.5351 2.2487 -14.1384 -5.8178 1.2891 -0.7360 13.2675 -3.8164 -20.4261 63.5909 0.0000 0.0000 27.9779 15.2716 -7.5141 -5.0629 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -5.2670 0.5932 -14.3917 13.6121 13.7405 -76.3849 -0.0000 0.0000 1.9234 3.8885 6.0452 -5.9487 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 3.6074 -0.6746 -5.2372 21.0190 0.0000 0.0000 -24.3006 -3.5560 22.1340 -0.4219 0.0000 -0.0000 -24.5814 1.2262 10.5396 1.9488 0.0000 0.0000 7.9167 -4.0427 -0.1313 -10.4627 0.0000 -0.0000 - -2.0667 47.8042 23.5773 3.2272 -5.0277 -15.9047 -3.8230 5.4419 -0.0186 -3.1209 0.9774 0.8216 12.9887 5.7897 10.0044 -1.1105 -3.2354 3.0244 -19.0382 -21.7248 -11.7239 1.8450 -14.2486 -5.9881 2.1575 -3.7795 13.6917 -4.2905 -17.8024 64.4683 0.0000 0.0000 27.8231 14.4251 -8.5052 -4.3695 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.6939 2.4918 -13.7932 14.0224 11.4004 -74.9685 -0.0000 0.0000 2.3526 4.3935 5.8215 -5.4623 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 3.1146 4.7582 -5.9030 25.9553 0.0000 0.0000 -25.3961 -3.7867 24.4611 -2.1150 0.0000 -0.0000 -21.9713 5.1672 6.8428 -0.0461 0.0000 -0.0000 13.5117 -3.1445 2.8381 -7.3569 0.0000 -0.0000 - -2.0463 46.9256 23.7033 1.9268 -7.6951 -16.8999 -3.8802 6.9529 0.0720 -3.1940 1.6892 1.0275 13.0452 8.3978 10.2566 -1.3566 -2.6280 2.5992 -19.4659 -21.5185 -12.2050 1.0691 -14.2276 -6.7173 3.0749 -5.4166 13.5110 -5.3433 -19.2176 64.6412 0.0000 0.0000 28.3411 15.0095 -7.8860 -3.7357 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.6249 4.1740 -13.8477 13.8801 10.1265 -73.4693 -0.0000 0.0000 2.7332 5.8026 4.3253 -5.0160 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 1.3353 9.0561 -4.7331 32.9175 0.0000 0.0000 -22.2950 -4.6519 24.7918 -4.2628 0.0000 -0.0000 -19.6980 8.2779 6.4296 0.3522 0.0000 0.0000 12.3086 -2.7796 4.2882 -6.5511 0.0000 -0.0000 - -2.0663 46.1523 23.9409 1.4892 -7.3671 -18.6351 -3.6870 5.3047 0.2180 -3.0421 1.2476 1.0351 12.5453 10.7734 11.5198 -1.4149 -1.3375 2.4327 -19.0205 -18.8250 -11.7099 0.8631 -13.2974 -7.8844 2.8048 -4.6989 12.9551 -6.0607 -25.6382 63.8346 0.0000 0.0000 28.9927 13.0797 -7.9588 -2.9519 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -2.5705 6.2399 -13.4786 13.9244 10.9670 -72.7617 -0.0000 0.0000 3.2526 5.2471 2.1489 -4.6726 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.3685 9.4989 -0.4954 40.7828 0.0000 0.0000 -13.5050 -9.7298 23.1553 -4.3202 0.0000 -0.0000 -17.1535 8.2187 8.9104 0.6992 0.0000 0.0000 8.5676 -3.1911 3.2648 -7.8236 0.0000 -0.0000 - -2.1112 45.4792 24.1720 1.7554 -5.4952 -20.6273 -3.3643 2.9822 0.4031 -2.7973 0.0003 0.8757 11.8247 11.5606 13.1543 -1.4253 0.1284 2.5232 -17.9528 -13.6434 -9.7614 1.7954 -11.0677 -8.7851 1.2175 -3.1572 12.8010 -7.4734 -33.9527 61.1501 0.0000 0.0000 30.3333 7.0032 -10.3515 -2.2389 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.8915 8.0156 -12.4221 14.5543 13.2870 -73.0916 -0.0000 0.0000 4.1212 2.8532 1.0686 -4.4304 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.2789 7.7877 3.5811 47.0238 0.0000 0.0000 -4.9411 -17.3728 21.1132 -1.1194 0.0000 -0.0000 -14.7571 6.4442 11.2290 0.4534 0.0000 0.0000 6.2768 -3.5040 1.8526 -9.0272 0.0000 -0.0000 - -2.1590 44.8512 24.3308 1.7387 -4.0535 -21.1515 -2.9761 2.0827 0.4988 -2.5527 -0.8248 0.7258 11.6408 10.7957 13.8072 -1.4303 1.1224 2.5509 -16.7931 -7.6474 -7.2216 3.1379 -8.1047 -9.0049 -0.4601 -2.7480 12.9387 -10.8673 -40.0215 56.9106 0.0000 0.0000 33.0051 0.3753 -12.5068 -1.9462 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.5135 8.2483 -11.5227 15.8265 15.3375 -74.2183 -0.0000 0.0000 5.2538 2.0599 2.0993 -3.9697 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.4249 7.0563 3.8784 50.3230 0.0000 0.0000 -4.1696 -20.4520 17.4329 -0.0161 0.0000 -0.0000 -12.8274 5.3992 12.4907 0.8763 0.0000 0.0000 4.7314 -3.5878 0.4230 -9.2417 0.0000 -0.0000 - -2.1983 44.2293 24.4191 1.2873 -3.4568 -19.8581 -2.7595 2.2862 0.4931 -2.4583 -0.9275 0.6566 12.0236 9.6255 13.2840 -1.3141 1.6404 2.3824 -15.6191 -2.5693 -5.0288 4.0457 -5.4475 -8.7398 -1.8178 -3.0897 12.8156 -15.0410 -43.7288 52.4091 0.0000 0.0000 36.7437 -3.2839 -11.2445 -0.9646 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.4538 7.1022 -11.2105 17.6625 16.0920 -75.7654 -0.0000 0.0000 6.2352 4.1727 4.6204 -3.5873 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -9.0115 8.0546 0.2001 50.5111 0.0000 0.0000 -10.1862 -17.0352 10.8634 -1.8532 0.0000 -0.0000 -11.0271 5.6197 13.4821 1.7560 0.0000 0.0000 2.5559 -3.7020 -1.8141 -9.2744 0.0000 -0.0000 - -2.2180 43.6084 24.4690 0.8912 -3.2237 -18.1124 -2.8996 2.4995 0.5252 -2.5027 -0.9855 0.5969 12.5146 9.0508 12.5595 -1.0445 2.0780 2.1430 -14.4340 0.9221 -3.4721 4.6895 -3.6751 -8.2186 -3.1705 -3.1169 12.4329 -18.9105 -46.7144 48.0964 -0.0000 0.0000 40.1712 -6.0775 -7.7729 0.3449 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.6793 6.3089 -10.8652 19.4852 15.6423 -77.3442 -0.0000 0.0000 6.7513 6.7933 7.0222 -3.7020 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -9.3068 9.7127 -4.9925 47.8276 0.0000 0.0000 -15.9165 -11.2354 3.7557 -2.1512 0.0000 -0.0000 -8.9437 6.3278 14.0188 1.8022 0.0000 0.0000 0.5974 -3.9250 -4.0519 -9.4754 0.0000 -0.0000 - -2.2207 42.9885 24.5057 0.2981 -2.8822 -16.9293 -3.0063 2.3849 0.6347 -2.5433 -1.3545 0.4912 13.0411 9.1954 12.2744 -0.7447 2.5456 1.9615 -13.5142 2.9430 -2.3535 5.5668 -2.7071 -7.5522 -4.4518 -2.8581 12.1845 -22.6513 -48.7804 44.1029 -0.0000 0.0000 42.1197 -10.7258 -5.0013 0.9555 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -1.8739 6.7916 -10.0332 20.5182 14.8519 -78.6343 -0.0000 0.0000 6.7787 6.8903 7.8343 -3.8381 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -9.5986 11.1828 -9.2769 43.2492 0.0000 0.0000 -18.2572 -7.6740 -1.4843 -0.6559 0.0000 -0.0000 -6.3612 6.9340 12.9728 1.1613 0.0000 0.0000 -0.4403 -4.2679 -4.4867 -9.4768 0.0000 -0.0000 - -2.2108 42.3899 24.5221 -0.6787 -2.5811 -16.1298 -2.8681 2.3208 0.7494 -2.4997 -1.6735 0.3965 13.6467 9.5176 12.2592 -0.5083 2.8518 1.8686 -12.9519 3.7789 -1.5116 6.6578 -2.2341 -6.8853 -5.2378 -2.6942 12.1798 -26.0708 -49.1077 41.2449 -0.0000 0.0000 42.5854 -15.6302 -3.3915 0.8387 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.7849 7.5957 -9.1852 20.6954 14.5921 -79.5293 -0.0000 0.0000 6.4063 4.9321 6.7058 -3.8801 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.8114 12.3539 -11.9188 37.7533 0.0000 0.0000 -18.2462 -6.2834 -3.8864 0.2946 0.0000 0.0000 -3.8418 7.4951 11.0084 1.1871 0.0000 0.0000 -1.5471 -4.8419 -3.5434 -9.2019 0.0000 -0.0000 - -2.1837 41.8369 24.5119 -1.5906 -2.4769 -15.3968 -2.7087 2.4284 0.8025 -2.4170 -1.6801 0.3746 14.1070 9.5671 12.2628 -0.3288 2.9096 1.8800 -12.4897 3.8766 -0.9594 7.5770 -2.1042 -6.2513 -5.4327 -2.4961 12.1019 -28.3423 -48.3764 40.0934 -0.0000 0.0000 42.3314 -17.4870 -1.9397 0.4986 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.4571 7.8605 -8.8030 20.6688 14.7254 -80.1180 -0.0000 0.0000 5.9695 3.2907 4.5209 -4.2734 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -10.5439 13.1827 -13.0119 32.0912 0.0000 0.0000 -16.4471 -5.2798 -3.6920 0.2676 0.0000 0.0000 -1.9055 8.1062 10.0452 2.0281 0.0000 0.0000 -3.3605 -5.6046 -3.3475 -8.8724 0.0000 -0.0000 - -2.1447 41.3251 24.4985 -2.1794 -2.2321 -14.7973 -2.5961 2.4537 0.8306 -2.3466 -1.6397 0.3690 14.3316 9.2719 12.2387 -0.2120 2.8660 1.9520 -12.0319 3.6785 -0.6308 8.1763 -2.2155 -5.5563 -5.3499 -2.2658 11.7850 -29.0701 -47.6514 40.4002 -0.0000 0.0000 41.8570 -15.6417 -0.5402 0.0749 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.1945 7.8477 -8.6866 20.9672 14.5978 -80.5405 -0.0000 0.0000 5.8911 2.8253 2.6355 -4.7957 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -12.0432 13.3823 -13.0363 26.6583 0.0000 0.0000 -12.8646 -4.3441 -1.8363 0.0416 0.0000 0.0000 -0.2281 8.4378 10.3892 2.6725 0.0000 0.0000 -5.1713 -6.1716 -4.4245 -8.4437 0.0000 -0.0000 - -2.1049 40.8447 24.5021 -2.5517 -1.7086 -14.2037 -2.5160 2.4371 0.8965 -2.2840 -1.7194 0.3298 14.5755 8.6632 11.9990 -0.1765 2.7688 2.0173 -11.7968 3.3888 -0.3789 8.5918 -2.4033 -4.8557 -5.3005 -2.2771 11.5336 -28.6504 -46.8498 41.4661 -0.0000 0.0000 41.2371 -12.5995 -0.0506 -0.4433 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.1276 7.8740 -8.6155 21.4291 14.0340 -80.8668 -0.0000 0.0000 6.2482 3.4406 2.1028 -4.8690 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -14.0508 12.9858 -12.7205 21.7484 0.0000 0.0000 -8.0181 -4.2714 0.7067 -0.1523 0.0000 -0.0000 1.3231 8.3595 10.8805 3.0260 0.0000 0.0000 -6.5258 -6.1524 -5.6843 -7.8992 0.0000 -0.0000 - -2.0765 40.3917 24.5129 -2.8571 -1.0759 -13.1411 -2.4112 2.5861 0.9550 -2.2685 -1.7499 0.2798 15.0074 7.7265 11.3680 -0.1584 2.5553 2.0141 -11.8650 3.0018 -0.2319 8.8924 -2.5467 -4.3395 -5.2319 -2.5239 11.5407 -27.7701 -45.4374 42.6847 -0.0000 0.0000 40.4825 -10.7829 -0.4732 -0.5190 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.2121 7.5325 -8.7586 21.7989 13.4609 -81.1618 -0.0000 0.0000 6.7541 5.1883 3.0278 -4.4991 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -16.2841 12.3209 -12.2677 17.7492 0.0000 0.0000 -2.6964 -5.3495 2.9456 -0.3573 0.0000 -0.0000 2.5145 7.9650 11.2488 3.8722 0.0000 0.0000 -7.9774 -5.4674 -7.0762 -7.5896 0.0000 -0.0000 - -2.0565 39.9570 24.5083 -2.9764 -0.5623 -11.4723 -2.3898 2.8765 0.9391 -2.2600 -1.6424 0.2516 15.3874 6.6144 10.4894 -0.0918 2.2618 1.9647 -11.9777 2.5993 -0.3110 9.0278 -2.6196 -4.0800 -5.0742 -2.6414 11.6282 -26.8530 -43.8288 43.5365 -0.0000 0.0000 39.7561 -10.4098 -0.5619 0.0527 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.3476 6.6557 -9.1794 22.0886 13.0358 -81.5076 -0.0000 0.0000 7.1297 7.6390 4.5125 -4.1917 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -18.8908 11.7599 -11.4129 14.9683 0.0000 0.0000 2.3721 -6.3850 4.3615 -0.7323 0.0000 -0.0000 3.1333 7.4114 12.0120 5.4508 0.0000 0.0000 -9.8552 -4.4609 -9.3395 -7.6419 0.0000 -0.0000 - -2.0405 39.5057 24.4891 -3.1817 -0.0557 -9.5508 -2.1912 3.0994 0.8442 -2.1312 -1.5220 0.2306 15.4379 5.4620 9.6843 -0.0129 1.9977 1.9507 -11.8557 2.4229 -0.5694 9.0533 -2.6037 -3.9955 -4.8806 -2.4376 11.6257 -26.1279 -42.9487 43.7051 -0.0000 0.0000 39.1606 -10.7294 0.2523 0.7056 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.3786 5.7745 -9.6251 22.3082 12.6823 -81.9474 -0.0000 0.0000 7.3337 9.6059 5.3411 -4.1005 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -21.4494 11.3124 -10.3681 13.2422 0.0000 0.0000 6.6626 -6.0497 5.2749 -1.4145 0.0000 -0.0000 3.7893 6.7193 13.0345 7.2422 0.0000 0.0000 -11.7916 -3.5594 -12.2064 -7.5639 0.0000 -0.0000 - -2.0314 39.0220 24.4689 -3.5757 0.5402 -7.5883 -1.8023 3.2081 0.6950 -1.8891 -1.4665 0.2011 15.2723 4.3049 9.0242 0.0372 1.7606 1.9732 -11.5472 2.5007 -0.8515 9.0948 -2.4972 -3.9971 -4.6655 -2.1534 11.6169 -25.7820 -42.8443 43.2720 -0.0000 0.0000 38.6128 -11.1536 1.2361 0.9530 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.1910 5.1686 -9.9534 22.3326 12.5576 -82.4539 -0.0000 0.0000 7.4435 10.2634 4.9821 -4.0053 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -23.7019 10.7898 -9.7458 12.3123 0.0000 0.0000 9.9558 -4.7985 6.0248 -2.1028 0.0000 -0.0000 4.6525 5.8221 13.8661 9.1208 0.0000 0.0000 -13.6157 -2.8238 -14.9352 -7.0471 0.0000 -0.0000 - -2.0322 38.5126 24.4490 -3.9450 1.1658 -5.4199 -1.4946 3.1878 0.5240 -1.6961 -1.3975 0.1688 15.1808 3.2575 8.2946 0.1282 1.5043 1.9500 -11.2820 2.5547 -1.1122 9.1918 -2.3936 -4.0641 -4.4851 -1.9935 11.6326 -25.5775 -42.8140 42.6977 0.0000 0.0000 37.9501 -11.2068 1.8685 0.9573 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.9784 4.4484 -10.2849 22.2568 12.8263 -82.9971 -0.0000 0.0000 7.4500 10.1059 4.0261 -3.9532 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -25.6721 10.1063 -9.7588 11.8193 0.0000 0.0000 12.0961 -4.4989 6.2988 -2.2523 0.0000 -0.0000 5.4745 4.7022 14.3364 11.0848 0.0000 0.0000 -15.3553 -2.0223 -17.4136 -6.5493 0.0000 -0.0000 - -2.0335 37.9867 24.4158 -4.0523 1.6755 -2.9976 -1.4745 2.9954 0.3894 -1.6639 -1.2737 0.1403 15.2785 2.4902 7.4063 0.2908 1.2755 1.8325 -11.1799 2.4252 -1.4053 9.3328 -2.3850 -4.1618 -4.3544 -2.0032 11.5808 -24.9964 -42.1470 42.5947 0.0000 0.0000 36.9573 -10.8045 2.4273 1.0955 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.0234 3.5946 -10.6892 22.2729 13.0831 -83.4969 -0.0000 0.0000 7.3029 9.8407 3.4780 -4.0872 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -27.4168 9.3369 -9.8841 11.2007 0.0000 0.0000 12.9813 -5.6172 5.7125 -1.9626 0.0000 -0.0000 6.1232 3.5474 14.4696 12.8269 0.0000 0.0000 -16.9468 -1.2556 -19.8670 -6.5173 0.0000 -0.0000 - -2.0252 37.4402 24.3617 -3.9518 1.9722 -0.6229 -1.6190 2.7546 0.2926 -1.6996 -1.1676 0.1141 15.4162 1.9819 6.5569 0.4178 1.1451 1.6901 -11.1905 2.1822 -1.7224 9.5445 -2.4102 -4.2365 -4.1826 -2.1846 11.5258 -24.0894 -40.7803 42.9075 0.0000 0.0000 35.6663 -10.4063 3.0740 1.3335 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.2235 3.0832 -11.0708 22.3124 12.9629 -83.8669 -0.0000 0.0000 7.0515 9.4199 3.5034 -4.2429 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -28.8370 8.5583 -9.7717 10.1381 0.0000 0.0000 13.0905 -6.7878 4.6948 -1.9329 0.0000 -0.0000 6.7666 2.6089 14.4265 14.1328 0.0000 0.0000 -18.3908 -0.8607 -22.2357 -6.7203 0.0000 -0.0000 - -2.0083 36.8602 24.2957 -3.8038 1.9918 1.4804 -1.6988 2.7225 0.1542 -1.6726 -1.0953 0.0911 15.3806 1.5981 5.9474 0.4295 1.0247 1.5839 -11.2352 1.9366 -2.0250 9.7941 -2.4339 -4.2790 -3.8669 -2.4327 11.5215 -23.3281 -39.3708 43.1470 0.0000 0.0000 34.3469 -10.4731 3.6145 1.5412 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -1.2432 2.9361 -11.4334 22.2213 12.8730 -84.0620 -0.0000 0.0000 6.7665 8.7636 3.4670 -4.2081 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -29.8031 7.7895 -9.9290 8.9318 0.0000 0.0000 13.3000 -7.1116 4.3453 -2.2709 0.0000 -0.0000 7.6100 1.9880 14.3971 15.0551 0.0000 0.0000 -19.6034 -0.5428 -24.3176 -6.8790 0.0000 -0.0000 - -1.9808 36.2468 24.2216 -3.4000 1.6602 3.4289 -1.8340 2.9335 0.0130 -1.6580 -0.9257 0.1014 15.1981 1.3068 5.3885 0.3641 0.8614 1.5064 -11.3766 1.7010 -2.3128 9.9524 -2.5664 -4.3302 -3.5457 -2.6747 11.4430 -22.6573 -38.3605 43.2821 0.0000 0.0000 33.0905 -10.8398 4.1876 1.8858 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.1333 2.7157 -11.8522 22.1394 13.1476 -84.1293 -0.0000 0.0000 6.4847 8.1555 3.2369 -4.1192 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -30.4942 7.0390 -10.6996 7.9616 0.0000 0.0000 13.4996 -6.4503 5.0596 -2.4383 0.0000 -0.0000 8.4662 1.7332 14.2035 15.5982 0.0000 0.0000 -20.3288 0.3459 -26.0342 -7.2603 0.0000 -0.0000 - -1.9406 35.6057 24.1308 -2.5693 1.2989 5.4445 -2.1612 2.9420 -0.0735 -1.7835 -0.6722 0.1183 15.0614 1.1445 4.7315 0.2342 0.7822 1.3428 -11.7515 1.5131 -2.5643 9.9435 -2.8553 -4.4027 -3.2440 -3.1629 11.3184 -21.6704 -36.9119 43.8304 0.0000 0.0000 31.6387 -10.8678 5.1876 2.4616 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.1690 2.4822 -12.2729 22.2084 13.1998 -84.0960 -0.0000 0.0000 6.2437 7.5997 3.4445 -4.1647 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -30.9820 6.0799 -11.4099 7.0293 0.0000 0.0000 12.9594 -5.5351 5.5989 -2.1793 0.0000 -0.0000 9.1388 1.5411 13.6581 15.7707 0.0000 0.0000 -20.7939 1.6024 -27.5729 -8.0146 0.0000 -0.0000 - -1.8898 34.9390 24.0209 -1.4093 1.3076 7.4324 -2.6344 2.5137 -0.1415 -2.0017 -0.4949 0.1139 14.9963 0.9726 4.0199 -0.0105 0.8248 1.1419 -12.4199 1.4140 -2.7217 9.7062 -3.1990 -4.4517 -2.8171 -4.0290 11.4773 -20.4542 -34.2255 44.7024 0.0000 0.0000 30.0499 -9.8572 6.6083 3.0203 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.3090 2.6502 -12.6299 22.2554 12.7341 -83.9104 -0.0000 0.0000 6.1206 6.9514 4.1374 -4.1901 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -31.4182 4.7109 -11.7034 6.1926 0.0000 0.0000 12.5301 -5.9690 5.0612 -1.8771 0.0000 -0.0000 9.5833 1.0570 13.1096 15.7912 0.0000 0.0000 -21.5301 2.3990 -29.0797 -8.7440 0.0000 -0.0000 - -1.8242 34.2306 23.9005 -0.0539 1.4931 9.2960 -3.1569 2.1069 -0.2539 -2.2295 -0.4003 0.0882 14.8504 0.6362 3.3005 -0.3209 0.8156 0.9538 -13.3291 1.1988 -2.7862 8.9746 -3.7221 -4.3738 -2.3289 -4.9330 11.8859 -19.1674 -31.0783 45.4481 0.0000 0.0000 28.6767 -7.7184 8.3446 3.6669 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.3816 2.9589 -13.0045 22.1719 12.6255 -83.6090 -0.0000 0.0000 6.1793 6.4468 4.5586 -4.0701 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -31.8435 3.1825 -12.5546 6.0743 0.0000 0.0000 14.2027 -8.0483 4.8428 -1.9807 0.0000 -0.0000 9.8416 0.4203 12.9419 15.9123 0.0000 0.0000 -22.2535 3.0311 -30.6174 -9.3472 0.0000 -0.0000 - -1.7234 33.4509 23.7510 1.6224 1.3145 11.3028 -3.8401 2.0590 -0.2901 -2.5601 -0.1437 0.0895 14.6069 0.2944 2.3317 -0.5720 0.6848 0.6973 -14.4139 0.5073 -2.8063 7.4091 -4.8844 -4.0034 -1.9617 -5.7579 11.9445 -17.3718 -28.1589 46.5359 0.0000 0.0000 27.2475 -5.5180 10.6793 5.0098 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -1.5899 3.0206 -13.4048 22.1844 13.2898 -83.3226 -0.0000 0.0000 6.3127 6.3667 4.6703 -4.0517 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -32.0362 2.0198 -13.8756 6.8718 0.0000 0.0000 17.8657 -8.8775 6.2426 -2.1134 0.0000 -0.0000 9.9574 0.1254 12.7523 16.0722 0.0000 0.0000 -22.3453 4.4563 -32.2619 -10.3672 0.0000 -0.0000 - -1.5957 32.5916 23.5490 3.4559 1.4093 13.5432 -4.7343 1.4338 -0.1089 -3.1036 0.2501 0.1061 14.6046 0.2044 1.0587 -0.8662 0.5878 0.3172 -15.8074 -0.8781 -2.7145 5.0637 -6.8605 -3.2344 -1.6511 -6.9784 11.6804 -15.0218 -24.4484 48.1654 0.0000 0.0000 25.3349 -4.2416 13.6394 6.9626 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -1.9239 3.7403 -13.6279 22.0571 13.2958 -82.9157 -0.0000 0.0000 6.2823 6.4845 5.2118 -4.2504 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -31.9765 0.6956 -13.1380 8.4508 0.0000 0.0000 19.5110 -5.3018 7.0257 -1.4921 0.0000 -0.0000 9.9200 -0.5470 12.4987 16.5757 0.0000 0.0000 -22.6007 6.1104 -34.3240 -11.7817 0.0000 -0.0000 - -1.4920 31.6785 23.3532 4.4274 2.9577 15.4371 -5.2264 -0.4724 0.1344 -3.5992 0.3173 0.0620 15.0247 0.0267 -0.1024 -1.4945 0.4053 -0.0041 -17.6821 -3.0760 -2.6303 2.5262 -9.1600 -2.0223 -0.6985 -8.6273 12.1025 -13.3117 -19.3341 49.1258 0.0000 0.0000 23.4559 -3.5528 16.7794 8.5708 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.5806 6.0707 -13.8150 20.9935 11.9366 -81.9565 -0.0000 0.0000 5.9067 6.4864 5.4169 -4.1777 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -32.0378 -1.9161 -8.8369 11.6845 0.0000 0.0000 15.7445 1.1026 4.2812 0.0573 0.0000 0.0000 9.6472 -3.1748 13.2548 18.8751 0.0000 0.0000 -23.8826 6.6050 -37.0672 -12.7078 0.0000 -0.0000 - -1.4280 30.7600 23.3055 3.8483 5.1536 16.6383 -4.4783 -1.9444 0.2071 -3.4305 -0.0232 -0.0819 15.2535 -1.0686 -0.9568 -2.3524 -0.3662 -0.0092 -19.8653 -6.4354 -3.1611 0.3567 -11.2823 -0.4695 0.9595 -9.1844 13.4895 -12.5568 -15.8310 48.5559 0.0000 0.0000 22.3756 -2.8147 20.0806 9.4000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0661 8.5220 -14.5552 19.1400 11.3598 -80.5877 -0.0000 0.0000 5.3030 6.2374 3.2821 -3.6086 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -31.8218 -5.0174 -4.3860 16.2596 0.0000 0.0000 9.7523 5.2765 -0.3403 1.2427 0.0000 0.0000 8.7723 -7.3670 14.2290 24.3634 0.0000 0.0000 -23.1618 6.7973 -39.5703 -13.1322 0.0000 -0.0000 - -1.3683 29.8991 23.4908 2.8234 6.1811 17.6601 -2.9000 -1.4213 0.0602 -2.6295 -0.0101 -0.1632 14.6687 -2.7385 -1.7542 -2.8361 -1.9319 0.2273 -21.7582 -11.1544 -5.0891 -1.4153 -13.3270 0.9757 2.5815 -7.8179 14.3178 -11.0839 -16.1022 48.3272 0.0000 0.0000 20.8476 -3.1672 23.1206 9.8443 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.4485 8.6612 -16.0186 18.1294 13.3841 -79.4927 -0.0000 0.0000 4.6371 5.5118 -0.3358 -3.3862 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -30.3480 -6.3226 -3.6547 19.0707 0.0000 0.0000 5.7616 5.0066 -2.6400 1.2603 0.0000 0.0000 6.0374 -10.8530 12.5921 32.3535 0.0000 0.0000 -15.1087 9.7431 -40.3344 -13.1341 0.0000 -0.0000 - -1.2840 29.0983 23.7828 2.4811 5.6982 18.7994 -1.5684 -0.0302 -0.1460 -1.9224 0.4755 -0.1197 13.3669 -3.4004 -2.4656 -2.7048 -3.4541 0.4852 -22.5732 -16.1479 -7.9401 -2.5840 -15.2220 1.2555 3.1810 -5.4229 13.4277 -6.6678 -18.4257 50.4627 0.0000 0.0000 16.8987 -4.9021 23.0727 9.3917 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 1.4689 6.4630 -17.5647 19.1267 16.4893 -79.3911 -0.0000 0.0000 3.8740 4.1616 -0.7648 -4.2216 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -27.6225 -5.7296 -5.2060 18.9384 0.0000 0.0000 4.0855 3.8038 -2.1522 0.9487 0.0000 0.0000 1.9445 -12.4583 8.9147 39.4072 0.0000 0.0000 -1.2206 17.0271 -39.8804 -10.5969 0.0000 -0.0000 - -1.1769 28.3108 24.0124 2.5120 4.8265 19.3220 -1.0933 0.4679 -0.1180 -1.6873 0.7799 -0.0277 12.3156 -2.8597 -2.4217 -2.4452 -4.0307 0.7366 -22.1074 -19.0536 -10.0084 -2.3614 -16.3695 0.0291 2.6380 -3.5476 12.0684 0.1143 -19.4135 53.9769 0.0000 0.0000 11.3999 -5.0859 16.1591 6.6381 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.2249 4.9199 -18.3265 20.9254 17.7804 -80.2529 -0.0000 0.0000 3.2447 3.2378 4.2687 -5.2007 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -24.3328 -5.3006 -5.8030 17.3860 0.0000 0.0000 2.6982 4.7491 -1.2750 0.9192 0.0000 0.0000 -1.0488 -13.3773 6.4784 43.1939 0.0000 0.0000 6.9856 23.4070 -37.7475 -7.7815 0.0000 -0.0000 - -1.0722 27.5330 24.1460 2.1881 4.5595 18.6511 -1.1944 -0.3464 0.0922 -1.7870 0.5490 0.0314 12.0391 -1.9806 -1.3611 -2.3655 -3.7949 0.9919 -20.6267 -18.9188 -10.5694 -0.3993 -16.3906 -1.4741 1.9872 -3.3285 11.7352 5.6981 -18.5589 56.0307 0.0000 0.0000 7.6547 -1.3574 3.5258 3.0609 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.9819 5.4880 -17.9897 21.4460 17.0930 -81.2524 -0.0000 0.0000 3.2549 3.7680 10.6397 -5.2215 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -21.2393 -6.0957 -4.5425 16.2835 0.0000 0.0000 0.6985 6.4326 -1.5442 0.9918 0.0000 0.0000 -2.1904 -15.1946 6.7477 44.1335 0.0000 0.0000 3.3760 24.0651 -31.4279 -8.1182 0.0000 -0.0000 - -0.9911 26.8121 24.2214 1.7932 4.7124 17.5646 -1.5517 -1.4323 0.2175 -1.9680 0.1793 0.0481 12.1304 -1.4131 -0.2909 -2.2681 -3.3920 1.1546 -18.6393 -17.0894 -10.1022 2.0405 -15.5652 -2.3824 1.9220 -4.2707 11.8992 9.0186 -17.8479 56.7424 0.0000 0.0000 6.8103 3.2134 -7.3364 1.7752 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.6621 6.4031 -17.1310 20.4257 15.9874 -81.8507 -0.0000 0.0000 3.7591 5.0825 12.7432 -4.5204 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -19.1580 -7.2203 -3.1000 16.5679 0.0000 0.0000 -1.3299 6.8871 -2.2453 0.8810 0.0000 0.0000 -2.9065 -17.6027 8.5433 42.9011 0.0000 0.0000 -5.4092 19.1461 -22.9656 -8.9080 0.0000 -0.0000 - -0.9170 26.1579 24.2698 1.5004 4.1951 17.2239 -1.7983 -1.6750 0.1919 -2.0781 0.2489 0.0757 12.2320 -1.1006 -0.1539 -1.9207 -3.0981 1.0785 -16.7807 -15.3938 -9.3706 3.4713 -14.6440 -2.8562 2.1105 -5.1274 11.5126 11.3334 -18.8903 57.8782 0.0000 0.0000 7.4366 4.1315 -11.4011 2.1006 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -2.2138 5.9992 -16.3380 18.8378 14.7160 -82.0128 -0.0000 0.0000 4.0731 5.5804 9.5525 -3.9416 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -17.6329 -7.3624 -2.3929 17.8631 0.0000 0.0000 -3.3559 6.8796 -2.6347 0.6772 0.0000 0.0000 -4.2400 -19.1114 9.2915 39.9863 0.0000 0.0000 -10.7677 14.2717 -16.1760 -8.7507 0.0000 -0.0000 - -0.8335 25.5599 24.2917 1.1192 3.0020 17.4000 -1.8384 -1.3945 0.1300 -2.1039 0.5258 0.1171 12.4616 -0.5597 -0.4898 -1.4247 -2.7663 0.8505 -15.3983 -14.2595 -8.7794 3.8854 -14.0900 -3.2089 2.2864 -5.3925 10.8642 13.2537 -21.2375 59.3524 0.0000 0.0000 8.1031 0.6344 -9.8543 2.6651 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.9572 4.8636 -15.8345 17.0024 13.6314 -81.7027 -0.0000 0.0000 3.7391 4.8052 4.2852 -3.7901 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -16.1110 -6.7459 -1.7556 19.5630 0.0000 0.0000 -5.7008 7.5431 -2.9588 0.5265 0.0000 0.0000 -5.8790 -19.5467 8.8541 35.9090 0.0000 0.0000 -12.7767 11.4675 -11.8186 -9.2001 0.0000 -0.0000 - -0.7479 25.0196 24.2876 0.5767 2.1957 16.9767 -1.8246 -1.5939 0.0914 -2.0977 0.6066 0.1484 12.8672 0.1898 -0.3100 -1.0003 -2.3503 0.7157 -14.4780 -13.2129 -8.3144 4.0077 -13.7152 -3.5282 2.6185 -5.1861 10.7148 14.3721 -23.5885 60.1972 0.0000 0.0000 8.4668 -3.2053 -6.4006 3.1437 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -3.7046 4.2074 -15.5825 14.6021 14.0915 -81.0724 -0.0000 0.0000 3.0037 3.7242 -0.0084 -3.9240 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -14.6505 -6.5317 -0.9675 21.1321 0.0000 0.0000 -7.9879 8.2263 -3.0373 0.4111 0.0000 0.0000 -7.3974 -20.1121 9.2032 31.1314 0.0000 0.0000 -13.9270 9.0703 -10.1727 -9.3399 0.0000 -0.0000 - -0.6619 24.5311 24.2778 0.0656 2.0608 15.7684 -1.8542 -2.2563 0.0654 -2.0892 0.5423 0.1733 13.2272 0.8344 0.3933 -0.7070 -2.0192 0.7557 -13.8345 -12.2044 -7.8926 4.1255 -13.3288 -3.7927 3.0238 -4.8857 10.9456 14.8864 -25.2167 60.5064 0.0000 0.0000 8.6227 -3.9028 -3.3142 3.1282 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3520 3.9831 -15.4027 12.0673 16.1769 -80.4800 -0.0000 0.0000 2.2950 3.0801 -2.4424 -4.1511 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -13.2135 -6.8796 -0.3214 21.9614 0.0000 0.0000 -9.6219 8.2921 -2.4956 0.3151 0.0000 0.0000 -9.2877 -21.1080 10.4044 26.3870 0.0000 0.0000 -14.6235 8.1852 -10.9368 -9.6003 0.0000 -0.0000 - -0.5605 24.0648 24.2760 -0.4554 2.0425 14.6108 -1.7589 -2.8408 0.0296 -2.0155 0.6385 0.2148 13.3432 1.2067 0.9403 -0.5049 -1.8415 0.8238 -13.2693 -11.4897 -7.5335 4.2446 -13.0812 -3.9515 3.2060 -4.7538 10.9642 15.7016 -25.9491 61.0748 0.0000 0.0000 8.5305 -2.6905 -1.2658 2.8878 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -4.9772 3.5911 -15.1977 10.3008 17.6966 -80.1786 -0.0000 0.0000 1.7687 2.8189 -2.9913 -4.4133 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -11.3433 -7.2544 0.3662 21.8501 0.0000 0.0000 -10.7211 8.3122 -1.8998 0.2673 0.0000 0.0000 -11.8203 -21.7808 10.3800 22.1933 0.0000 0.0000 -14.3042 10.0447 -12.4482 -12.9919 0.0000 -0.0000 - -0.4335 23.5979 24.2739 -1.2646 2.0025 13.8838 -1.3933 -3.4317 -0.0083 -1.7991 0.9219 0.2582 13.2431 1.4187 1.1107 -0.3745 -1.7467 0.8540 -12.7467 -10.9859 -7.2870 4.5306 -13.0638 -3.9577 3.1289 -4.5638 10.7148 16.8348 -26.3459 61.8371 0.0000 0.0000 8.3157 -2.1617 -0.6472 2.9564 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -5.5808 2.9751 -15.1367 9.4668 17.2632 -80.1093 -0.0000 0.0000 1.4769 2.8938 -2.0663 -4.6737 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.9076 -7.6236 1.4893 21.2895 0.0000 0.0000 -11.7603 8.6007 -2.0167 0.2656 0.0000 0.0000 -14.5432 -21.8916 8.1790 18.8087 0.0000 0.0000 -13.7568 12.1670 -13.1735 -17.1107 0.0000 -0.0000 - -0.2813 23.1321 24.2701 -2.3352 1.9787 13.0718 -0.8403 -4.1016 -0.0139 -1.4838 1.2065 0.2983 13.1351 1.6259 1.3077 -0.2777 -1.6655 0.9025 -12.4120 -10.4849 -7.1362 5.0349 -13.1139 -3.8625 3.0523 -4.0620 10.6192 17.4983 -27.0846 62.0984 0.0000 0.0000 8.2689 -2.4997 -1.2036 3.2328 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.1214 2.3763 -15.3109 9.0586 16.1208 -80.0984 -0.0000 0.0000 1.5216 3.3277 -0.8604 -4.8222 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.2572 -7.9226 2.7910 20.8438 0.0000 0.0000 -12.8537 8.6508 -2.3131 0.3076 0.0000 0.0000 -16.9765 -21.6233 5.1834 16.3449 0.0000 0.0000 -14.1850 12.2344 -13.0728 -15.8871 0.0000 -0.0000 - -0.1072 22.6740 24.2686 -3.3096 1.7622 11.8322 -0.3237 -4.5038 0.0148 -1.1883 1.3794 0.3370 13.1347 1.9371 1.7488 -0.1816 -1.5740 1.0004 -12.2858 -10.0151 -7.0217 5.4991 -13.1152 -3.8010 3.0915 -3.4337 10.7730 17.5972 -27.9834 61.8801 0.0000 0.0000 8.3496 -2.5092 -1.8409 3.4193 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.5856 1.8637 -15.5145 8.8019 15.6673 -80.1618 -0.0000 0.0000 1.8616 3.7756 -0.2155 -4.8148 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -3.7860 -7.7560 3.7397 20.6403 0.0000 0.0000 -13.9536 8.3378 -1.8790 0.3723 0.0000 0.0000 -19.1543 -20.9232 2.8336 14.3782 0.0000 0.0000 -14.9550 11.5758 -12.8483 -11.7351 0.0000 -0.0000 - 0.0939 22.2106 24.2620 -4.1730 1.1619 10.5149 0.1896 -4.4807 0.0450 -0.9289 1.4753 0.3762 13.1629 2.3476 2.1791 -0.1116 -1.4146 1.0583 -12.1725 -9.6399 -6.8928 5.7705 -13.1165 -3.8216 3.1564 -2.9740 10.8624 17.7739 -28.3277 61.8540 0.0000 0.0000 8.3152 -1.9989 -1.8205 3.4774 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.9190 1.4718 -15.5159 8.7707 15.4973 -80.3421 -0.0000 0.0000 2.1412 4.0459 0.0156 -4.7949 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.4465 -7.0012 4.4847 20.6777 0.0000 0.0000 -15.2085 8.1307 -1.1161 0.3941 0.0000 0.0000 -21.1143 -19.6148 1.0197 12.4905 0.0000 0.0000 -14.9335 12.0553 -12.4393 -9.9481 0.0000 -0.0000 - 0.3216 21.7257 24.2369 -5.1856 0.4626 9.4656 0.8284 -4.3711 0.0685 -0.6284 1.4967 0.3842 13.1187 2.7518 2.3939 -0.0951 -1.1624 1.0188 -11.9156 -9.2192 -6.7220 6.0008 -13.1294 -3.8492 3.2482 -2.6397 10.7385 18.1290 -28.1427 62.1538 0.0000 0.0000 8.2442 -1.7166 -1.4444 3.4123 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.9997 1.3211 -15.3435 8.8863 15.0128 -80.5234 -0.0000 0.0000 2.0733 4.3645 0.1731 -4.8498 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.9465 -6.1300 5.4785 21.0304 0.0000 0.0000 -16.6859 8.0974 -0.9248 0.3829 0.0000 0.0000 -22.7713 -17.9839 -0.5917 11.0137 0.0000 0.0000 -14.5388 13.1840 -11.7481 -10.4909 0.0000 -0.0000 - 0.5635 21.2253 24.1937 -6.1580 -0.0169 8.4372 1.3626 -4.3615 0.1037 -0.3693 1.4182 0.3717 13.0979 3.0815 2.5321 -0.0801 -0.8790 0.9580 -11.5900 -8.6641 -6.4866 6.3253 -13.0674 -3.7902 3.3870 -2.3456 10.5909 18.1377 -28.1236 62.2557 0.0000 0.0000 8.3836 -2.0802 -1.2491 3.3082 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -6.8407 1.4292 -15.1450 8.9656 14.7505 -80.6122 -0.0000 0.0000 1.8550 4.7921 0.2004 -4.9174 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.1368 -5.4066 6.6285 21.6532 0.0000 0.0000 -18.1998 7.9197 -1.0272 0.4547 0.0000 0.0000 -24.2333 -16.4147 -1.7225 10.2785 0.0000 0.0000 -14.7334 13.5778 -11.2087 -10.2338 0.0000 -0.0000 - 0.8111 20.7141 24.1444 -6.7558 -0.3260 7.0916 1.4988 -4.2997 0.1189 -0.2853 1.2962 0.3688 13.2289 3.3864 2.7783 -0.0040 -0.6384 0.9434 -11.2986 -8.1241 -6.1577 6.7015 -12.9223 -3.6045 3.4360 -2.2707 10.5607 17.7847 -28.3715 62.0378 0.0000 0.0000 8.6075 -2.7715 -1.2230 3.3388 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -6.6931 1.6355 -14.9905 9.1835 15.1121 -80.6322 -0.0000 0.0000 1.8818 5.0305 0.1491 -4.9852 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 4.9485 -4.5972 7.5236 22.1754 0.0000 0.0000 -19.5826 7.6089 -0.6012 0.5506 0.0000 0.0000 -25.5047 -14.9993 -2.5750 9.7343 0.0000 0.0000 -15.1868 13.3923 -10.7962 -9.0431 0.0000 -0.0000 - 1.0656 20.1792 24.0942 -7.0699 -0.6289 5.5622 1.3343 -4.0963 0.0864 -0.3362 1.2432 0.3838 13.4721 3.7014 3.0015 0.1119 -0.4600 0.9315 -11.0398 -7.7422 -5.7569 7.0978 -12.8071 -3.2877 3.2892 -2.4945 10.5623 17.6082 -28.3688 61.9638 0.0000 0.0000 8.6378 -3.1271 -1.1562 3.5214 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.7603 1.7659 -14.9057 9.8202 15.4188 -80.5968 -0.0000 0.0000 2.2910 4.9775 0.4875 -5.0758 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 6.6457 -3.5416 8.0808 22.3419 0.0000 0.0000 -20.8348 7.3330 0.2820 0.4582 0.0000 0.0000 -26.3760 -13.6690 -3.6489 8.8994 0.0000 0.0000 -15.2564 13.6851 -10.0586 -8.6232 0.0000 -0.0000 - 1.3172 19.6238 24.0328 -7.2285 -0.7501 4.1503 1.0891 -3.9147 0.0391 -0.4053 1.2646 0.3975 13.6726 3.9471 2.9972 0.1976 -0.3104 0.8649 -10.8762 -7.4775 -5.3591 7.5074 -12.7611 -2.8807 3.0939 -2.7730 10.5519 17.6344 -28.1351 62.1459 0.0000 0.0000 8.6266 -2.9592 -1.0788 3.6689 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -6.9780 1.7591 -14.9208 10.7153 15.1344 -80.4505 -0.0000 0.0000 2.8823 4.9641 1.4693 -5.0858 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 8.2228 -2.5968 8.6187 22.3950 0.0000 0.0000 -21.9457 6.9668 0.9529 0.2338 0.0000 0.0000 -27.0059 -12.5602 -4.5334 8.3124 0.0000 0.0000 -15.5740 14.5026 -9.3112 -8.7891 0.0000 -0.0000 - 1.5500 19.0699 23.9566 -7.0917 -0.4724 2.8689 0.8287 -3.8064 -0.0196 -0.5141 1.2336 0.3935 13.7901 4.0568 2.8258 0.2035 -0.1645 0.7634 -10.9635 -7.2266 -5.0043 7.8204 -12.6897 -2.4712 3.0245 -3.0275 10.6361 17.3557 -28.0708 62.1347 0.0000 0.0000 8.8728 -2.9825 -1.1143 3.6816 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.1230 1.7747 -14.9818 11.4014 14.5348 -80.1721 -0.0000 0.0000 3.3767 5.2189 2.6353 -4.9850 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 9.3504 -2.0686 9.2962 22.5979 0.0000 0.0000 -22.8319 6.3623 1.3788 0.0955 0.0000 0.0000 -27.7046 -11.8222 -4.5451 8.4537 0.0000 0.0000 -16.8372 14.8734 -9.1755 -8.7150 0.0000 -0.0000 - 1.7677 18.5170 23.8815 -6.4997 0.0851 1.7045 0.4208 -3.6472 -0.1356 -0.7394 1.1158 0.3760 13.9384 4.0881 2.5826 0.1039 -0.0406 0.6531 -11.3276 -6.9880 -4.7062 7.9835 -12.5382 -2.1252 3.0163 -3.6910 10.8191 16.7004 -27.8960 61.6701 0.0000 0.0000 9.2116 -3.7359 -1.3023 3.6477 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -7.0715 2.0722 -15.0119 11.7295 13.8673 -79.8332 -0.0000 0.0000 3.6543 5.5173 3.3805 -4.9125 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 10.0066 -1.7585 9.7131 22.6961 0.0000 0.0000 -23.3865 5.6112 2.1152 -0.1602 0.0000 -0.0000 -28.4489 -11.3027 -4.0897 8.8269 0.0000 0.0000 -18.2624 14.2782 -9.0910 -8.8052 0.0000 -0.0000 - 1.9908 17.9294 23.8227 -5.6067 0.6754 0.9100 -0.2007 -3.4320 -0.3191 -1.0231 1.0905 0.3648 14.1925 4.0891 2.1556 -0.0993 0.0219 0.5038 -11.8935 -6.7167 -4.4977 8.1959 -12.3788 -1.8661 2.9382 -4.9112 10.9459 16.1064 -27.2185 60.9844 0.0000 0.0000 9.2552 -4.4428 -1.5825 3.6648 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.9138 2.6628 -15.0736 11.9836 13.1083 -79.5416 -0.0000 0.0000 3.7802 5.5698 3.7193 -4.9591 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 10.6942 -1.3879 9.4402 22.2443 0.0000 0.0000 -23.4568 4.8513 3.2537 -0.9452 0.0000 -0.0000 -28.8337 -10.6514 -3.6338 8.9024 0.0000 0.0000 -18.9844 13.0370 -8.2376 -9.3862 0.0000 -0.0000 - 2.2224 17.2788 23.7696 -4.7013 1.3202 0.4665 -0.8129 -3.2631 -0.5129 -1.2808 1.2013 0.3682 14.4304 4.0454 1.5888 -0.3689 0.0716 0.3241 -12.7384 -6.2677 -4.3633 8.6423 -12.2169 -1.6819 2.8004 -6.0488 11.0376 15.6519 -26.7923 60.1240 0.0000 0.0000 9.0700 -4.1960 -1.8453 3.7827 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -6.7660 3.2583 -15.2921 12.3182 12.4707 -79.3514 -0.0000 0.0000 3.8938 5.5522 4.0946 -5.0679 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 11.7966 -1.0950 8.8595 21.2761 0.0000 0.0000 -23.0130 4.2162 4.2729 -2.0685 0.0000 -0.0000 -28.3443 -9.8511 -2.8103 8.7562 0.0000 0.0000 -19.8596 11.1701 -6.8271 -9.6958 0.0000 -0.0000 - 2.4366 16.5935 23.6958 -3.3101 2.2749 -0.1396 -1.6027 -3.1149 -0.6922 -1.6611 1.1671 0.3581 14.5996 3.9995 1.2307 -0.7206 0.1772 0.1913 -14.1433 -5.6113 -4.1854 9.1175 -11.9238 -1.5254 2.6650 -6.8243 11.3733 14.8504 -27.3066 58.6051 0.0000 0.0000 9.0273 -3.7921 -2.0560 4.0026 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -6.6504 3.9019 -15.6403 12.5708 11.8841 -79.2104 -0.0000 0.0000 4.0452 5.9568 4.6739 -5.2090 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 12.4295 -1.2396 8.7442 20.4233 0.0000 0.0000 -22.3716 3.8814 4.8533 -3.0012 0.0000 -0.0000 -27.4098 -9.3998 -1.6569 8.2802 0.0000 0.0000 -21.5956 8.2568 -5.3936 -9.3416 0.0000 -0.0000 - 2.6360 15.8973 23.6146 -1.1890 2.9775 -0.6732 -2.6888 -2.3519 -0.9152 -2.3374 0.9425 0.3366 14.9607 4.1525 0.9491 -1.2615 0.2635 0.0654 -16.3015 -5.0291 -4.0272 9.2168 -11.4706 -1.4151 2.5534 -8.3379 12.0574 13.2600 -27.8188 55.7464 0.0000 0.0000 9.3791 -4.5272 -2.2597 4.1647 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.4775 5.0121 -16.1199 12.6407 10.4980 -79.0302 -0.0000 0.0000 4.1406 6.7684 5.1960 -5.3979 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 12.2510 -1.2226 8.3686 19.7480 0.0000 0.0000 -21.7342 3.6011 5.4347 -3.8611 0.0000 -0.0000 -26.4914 -8.9608 -1.3906 6.5573 0.0000 0.0000 -22.0979 5.2923 -3.4953 -9.0033 0.0000 -0.0000 - 2.8604 15.1698 23.5725 0.9285 2.3390 0.3784 -3.5825 -0.4337 -1.1565 -3.0748 1.0850 0.3785 15.7235 4.8521 0.0115 -2.0767 0.2040 -0.2634 -19.1555 -4.6525 -4.3381 8.7895 -10.9585 -1.6612 2.7382 -11.4644 12.7932 10.6743 -27.3763 51.1582 0.0000 0.0000 10.3546 -5.9746 -2.0985 4.1188 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.1012 6.4445 -17.0462 12.6092 8.2788 -78.9617 -0.0000 0.0000 4.0341 7.4015 5.2086 -5.5357 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 12.3669 -0.0316 6.1134 18.7856 0.0000 0.0000 -20.7294 2.8746 6.2924 -5.1643 0.0000 -0.0000 -25.4760 -7.3173 -2.7480 3.1619 0.0000 0.0000 -18.6248 5.3606 -0.8167 -9.3277 0.0000 -0.0000 - 3.1258 14.3899 23.5899 2.1085 0.4283 3.5721 -3.2911 1.6536 -1.2575 -3.1399 1.8955 0.5240 16.2414 6.5516 -1.4625 -3.0298 0.2641 -0.8141 -22.2537 -3.7260 -5.3758 7.8804 -10.1603 -2.7913 3.6369 -14.7553 13.2976 6.8712 -27.4642 44.7034 0.0000 0.0000 12.2299 -6.9847 -0.9231 4.0475 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -5.1951 7.2117 -18.6577 12.4099 7.0675 -79.5563 -0.0000 0.0000 3.5895 7.6436 4.1314 -5.6198 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 13.8348 1.9826 2.4161 17.8292 0.0000 0.0000 -18.9067 1.9631 6.8078 -6.7369 0.0000 -0.0000 -23.9981 -4.2867 -5.2556 -0.5187 0.0000 -0.0000 -12.4442 9.5454 1.7433 -10.1698 0.0000 -0.0000 - 3.3770 13.6261 23.6712 3.0956 -1.1040 6.8070 -2.1846 2.2955 -1.1075 -2.4938 2.4223 0.6314 15.8975 9.0814 -1.9242 -3.8429 1.1256 -1.2296 -25.0949 -0.9499 -6.2889 6.3671 -8.4333 -4.9783 5.0700 -16.1871 13.6612 1.7629 -29.6611 36.3924 0.0000 0.0000 14.6805 -7.9972 0.9445 4.1710 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.5396 7.3200 -20.2840 11.9885 7.6528 -81.1636 -0.0000 0.0000 2.6298 7.6910 1.7476 -5.9850 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 14.5308 3.2333 0.1126 18.6057 0.0000 0.0000 -16.3576 1.6304 6.3371 -8.0845 0.0000 -0.0000 -23.2152 -1.5551 -7.5495 -2.0817 0.0000 -0.0000 -7.6970 13.4715 2.7269 -11.1351 0.0000 -0.0000 - 3.5506 12.9208 23.8341 4.6425 -1.1566 7.7532 -1.3151 1.6351 -0.7755 -1.9636 1.8298 0.6262 14.9533 11.7818 -0.3422 -4.3668 2.6887 -1.1738 -27.2742 3.8022 -5.7215 4.1674 -5.3560 -7.4683 6.3233 -16.0361 14.0022 -3.3875 -32.4219 27.7079 0.0000 0.0000 16.4264 -9.9720 1.9160 4.1508 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.5753 7.7296 -20.6916 12.0134 8.5032 -83.2950 -0.0000 0.0000 1.3146 7.0849 -1.1083 -6.6724 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 12.2836 3.4286 0.3656 22.0189 0.0000 0.0000 -12.9726 1.1241 5.7133 -9.4455 0.0000 -0.0000 -23.3975 -0.5939 -8.2713 -1.8896 0.0000 -0.0000 -5.8900 13.1963 1.9229 -12.3737 0.0000 -0.0000 - 3.6627 12.2557 24.0534 6.6332 -0.1403 6.5082 -1.0341 0.6239 -0.4056 -1.7798 0.7342 0.5969 13.6217 14.1815 2.2255 -4.6065 4.0558 -0.8768 -28.4273 8.9118 -3.5504 1.5400 -1.4342 -8.9269 6.7662 -15.8685 14.0459 -6.5114 -33.9565 21.5359 0.0000 0.0000 16.4122 -11.8917 1.0067 3.1897 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.2016 8.2401 -19.4257 13.2434 8.4304 -85.1660 -0.0000 0.0000 0.9369 4.9754 -3.1796 -7.0267 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 7.6499 3.2370 1.5274 27.2305 0.0000 0.0000 -8.0476 -1.7144 6.4053 -10.6001 0.0000 -0.0000 -23.9313 -1.3649 -8.2755 -1.4888 0.0000 -0.0000 -5.8063 10.4881 1.3683 -13.4038 0.0000 -0.0000 - 3.7850 11.6112 24.2642 8.3408 0.7803 4.9369 -0.9832 0.1196 -0.1042 -1.7085 0.2814 0.6153 12.3657 15.5038 3.8828 -4.6156 4.7359 -0.7515 -28.6142 12.9491 -0.7455 -0.8562 2.0905 -8.8263 6.3272 -15.9265 13.6551 -8.3917 -34.8043 18.0246 0.0000 0.0000 15.3359 -12.7638 -1.2069 1.2885 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0035 7.8600 -17.3807 15.5338 7.9362 -86.2137 -0.0000 0.0000 2.7812 2.1939 -3.8306 -6.4824 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 2.6156 3.5991 1.7265 33.0891 0.0000 0.0000 -1.7359 -7.2106 8.8963 -9.6208 0.0000 -0.0000 -24.2173 -2.4221 -8.2424 -1.1061 0.0000 -0.0000 -5.7584 9.2619 1.6970 -13.8404 0.0000 -0.0000 - 3.9504 10.9929 24.4175 9.2852 0.9858 3.9002 -0.9236 0.5226 0.1045 -1.6308 0.6441 0.6806 11.7235 15.3739 4.2268 -4.4392 4.9520 -0.8292 -28.2594 15.8637 1.9467 -2.1103 4.5625 -7.8434 5.6315 -15.5031 13.1034 -11.8333 -35.6842 14.7378 0.0000 0.0000 14.7429 -14.3846 -3.0691 -0.5609 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.6475 6.5915 -15.7192 18.0652 7.8394 -86.1589 -0.0000 0.0000 6.0861 1.2785 -3.0206 -5.7318 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -1.7800 5.0490 0.8165 39.0591 0.0000 0.0000 3.3380 -12.5346 11.7811 -6.5577 0.0000 -0.0000 -23.9982 -2.6675 -7.5884 -0.3342 0.0000 -0.0000 -5.4998 9.7175 1.6411 -13.9953 0.0000 -0.0000 - 4.1244 10.4116 24.5286 9.6088 0.8543 2.8167 -0.8821 1.4863 0.2266 -1.5840 0.9817 0.7093 11.6635 14.5493 4.3598 -4.1628 5.0647 -0.8698 -27.6338 18.1099 4.2312 -1.9921 6.3871 -6.7939 5.2310 -14.7172 12.6861 -17.4230 -35.8210 10.4005 0.0000 0.0000 15.5537 -17.9465 -3.2446 -1.6099 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -1.1573 5.4736 -14.4288 19.9268 7.5204 -85.2205 -0.0000 0.0000 8.5842 2.9606 -1.8847 -6.0299 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -5.7430 6.9547 -0.4252 44.6247 0.0000 0.0000 3.8085 -15.1550 12.0992 -4.4347 0.0000 -0.0000 -23.2726 -2.4810 -6.3137 0.6694 0.0000 0.0000 -5.4209 9.4320 0.8626 -14.0670 0.0000 -0.0000 - 4.2727 9.8611 24.6404 9.5567 0.9384 1.5317 -0.8902 2.3909 0.2841 -1.5556 0.9087 0.6983 11.8984 13.7652 4.7997 -3.8255 5.1510 -0.7934 -26.5698 19.8654 5.9156 -1.2015 8.0445 -5.9295 5.1091 -14.1598 12.3371 -22.6345 -34.2287 6.4939 0.0000 0.0000 17.5967 -20.0286 -1.8722 -1.6376 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.0245 5.1362 -12.8155 20.8925 6.2761 -84.1681 -0.0000 0.0000 9.1552 4.4344 -1.9715 -7.1618 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -9.3967 8.5482 -2.1440 48.5340 0.0000 0.0000 0.1226 -14.7616 8.4818 -4.3242 0.0000 -0.0000 -22.0973 -2.5560 -5.2822 1.3964 0.0000 0.0000 -5.4174 8.2255 0.2561 -14.1616 0.0000 -0.0000 - 4.3969 9.3302 24.7621 9.1741 1.4553 0.7370 -0.8469 2.8671 0.2813 -1.4893 0.7476 0.6547 12.3124 12.9558 5.1365 -3.3775 5.1806 -0.7315 -24.8898 21.0956 6.8285 -0.3047 9.3789 -5.2023 5.0765 -13.7151 11.8535 -25.5368 -31.3469 4.4981 0.0000 0.0000 20.2488 -17.0136 0.3458 -1.0518 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.6737 5.1721 -10.9296 21.3479 5.6249 -83.6536 -0.0000 0.0000 8.6574 3.1944 -3.1208 -7.9668 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -12.3372 9.7098 -5.0432 49.6365 0.0000 0.0000 -3.8184 -12.2178 3.0198 -4.7264 0.0000 -0.0000 -20.5688 -3.0263 -4.5839 1.7227 0.0000 0.0000 -5.1066 7.9302 -0.3000 -14.5124 0.0000 -0.0000 - 4.5118 8.8107 24.8743 8.4463 2.2185 0.6527 -0.6987 3.0516 0.2147 -1.3803 0.7056 0.6011 12.9250 11.8967 5.1124 -2.8232 5.1430 -0.7291 -22.8645 21.7564 7.0075 0.7869 10.0670 -4.5953 5.0808 -12.9827 11.2562 -26.9602 -28.0129 3.9217 0.0000 0.0000 23.0462 -10.9097 2.7908 -0.3088 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.5833 5.0443 -9.3645 21.6439 7.0033 -83.7898 -0.0000 0.0000 8.4219 0.8031 -4.2825 -8.1979 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -14.3807 10.7730 -8.8853 48.0267 0.0000 0.0000 -5.7564 -9.5296 -1.1839 -4.0930 0.0000 -0.0000 -18.7291 -3.6117 -3.5394 1.8276 0.0000 0.0000 -4.5728 8.6288 -1.6296 -14.6643 0.0000 -0.0000 - 4.6128 8.2948 24.9701 7.3941 3.0068 0.8181 -0.4145 3.2998 0.0908 -1.2791 0.6276 0.5323 13.6727 10.7021 4.9178 -2.2720 4.9675 -0.7174 -20.9158 21.8164 6.7481 2.2234 10.2162 -4.1124 5.0000 -12.0652 10.7096 -28.5006 -24.6426 3.8406 0.0000 0.0000 25.7517 -6.4095 4.7534 0.5226 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6084 4.8538 -8.3719 21.8715 9.0897 -84.1793 -0.0000 0.0000 8.7059 0.1527 -5.1131 -8.2531 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.6349 11.7712 -12.8158 44.2736 0.0000 0.0000 -6.2535 -8.2730 -2.7358 -2.8097 0.0000 -0.0000 -16.6052 -4.1514 -1.8958 1.9791 0.0000 0.0000 -4.1566 8.7715 -3.7166 -13.4950 0.0000 -0.0000 - 4.6822 7.7999 25.0518 6.5535 3.8403 0.9129 -0.3048 3.6486 -0.0469 -1.2638 0.5132 0.4633 14.3610 9.4722 4.6486 -1.8061 4.6170 -0.6800 -19.0927 21.3127 6.3063 3.7914 10.1712 -3.7138 4.5897 -11.2372 10.2818 -30.5564 -21.6371 4.0666 0.0000 0.0000 28.3743 -4.0509 6.2924 1.1604 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.4397 4.8512 -7.7436 22.0701 9.9128 -84.4638 -0.0000 0.0000 8.9512 1.1169 -5.5749 -8.2786 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -16.8115 12.3411 -16.1233 38.7214 0.0000 0.0000 -5.5604 -8.2500 -1.6914 -1.7858 0.0000 -0.0000 -15.0218 -4.7926 0.2237 2.6862 0.0000 0.0000 -3.8515 7.7790 -6.1819 -10.9417 0.0000 -0.0000 - 4.7100 7.3318 25.1212 6.0608 4.9486 0.9803 -0.3531 3.7120 -0.1492 -1.3433 0.4476 0.4062 14.8228 8.2502 4.3013 -1.3854 4.1977 -0.6429 -17.1816 20.4572 5.6972 5.2453 10.0488 -3.4020 3.8032 -10.4510 9.8813 -32.5391 -19.3970 4.7436 0.0000 0.0000 31.1000 -1.2281 8.0939 1.2334 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.1461 4.8835 -7.2514 22.4043 9.7418 -84.7282 -0.0000 0.0000 8.9019 1.8540 -5.6551 -8.1557 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -18.0047 12.0084 -18.2752 31.4311 0.0000 0.0000 -3.1620 -7.8593 0.9527 -1.1263 0.0000 -0.0000 -14.2526 -5.8571 2.3690 4.0742 0.0000 0.0000 -3.4012 6.1528 -8.7374 -8.7795 0.0000 -0.0000 - 4.7038 6.8731 25.1716 5.7570 6.1920 1.0219 -0.5274 3.4611 -0.1778 -1.4551 0.3579 0.3612 15.1150 7.1730 4.0266 -0.9493 3.8272 -0.5945 -15.1173 19.5180 4.8571 6.5869 9.8409 -3.2703 2.8758 -9.5664 9.4003 -33.9017 -17.8513 5.8838 0.0000 0.0000 33.9785 2.7603 9.9894 0.9045 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0053 4.7179 -6.8409 22.9926 10.1469 -85.2447 -0.0000 0.0000 8.7294 1.9367 -5.4208 -7.8742 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -19.0186 10.9406 -18.8402 22.8536 0.0000 0.0000 0.2934 -6.1868 3.5043 -0.7073 0.0000 -0.0000 -13.8027 -7.1687 3.9153 5.5979 0.0000 0.0000 -2.9906 4.2882 -10.8395 -8.3143 0.0000 -0.0000 - 4.6900 6.3806 25.1952 5.1261 6.7499 1.1820 -0.5597 3.6515 -0.1564 -1.4618 0.2154 0.3213 15.3101 6.3046 3.9092 -0.4852 3.5060 -0.4961 -12.8897 18.5564 3.7767 7.9234 9.6234 -3.4295 2.0733 -8.6010 8.7927 -34.6575 -16.7088 7.3272 0.0000 0.0000 36.8186 6.3032 11.1634 0.7308 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0090 4.3428 -6.5022 23.8589 11.4946 -86.1389 -0.0000 0.0000 8.5248 2.1322 -5.0462 -7.5942 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -19.6183 10.4397 -18.3241 14.6073 0.0000 0.0000 3.2942 -4.5352 4.8854 -0.6455 0.0000 -0.0000 -12.5307 -7.7461 4.4926 6.4427 0.0000 0.0000 -3.1112 2.6683 -11.8301 -8.7817 0.0000 -0.0000 - 4.6759 5.8544 25.2008 4.2484 6.4559 1.7357 -0.4918 4.4110 -0.1306 -1.3735 0.0904 0.2977 15.4659 5.6616 3.7964 -0.0327 3.2068 -0.4021 -10.4761 17.4707 2.4380 9.2309 9.2965 -3.9475 1.4426 -7.8031 8.0961 -35.0854 -15.8666 8.9497 -0.0000 0.0000 39.3717 8.6417 11.5720 0.9381 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0853 4.0194 -6.1746 24.9284 12.7204 -87.2614 -0.0000 0.0000 8.2365 2.4443 -4.5610 -7.3626 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -20.6146 11.1461 -17.9185 8.9739 0.0000 0.0000 5.0085 -4.3843 5.2450 -0.8194 0.0000 -0.0000 -10.4575 -7.4223 4.4902 6.5013 0.0000 0.0000 -3.7466 2.0381 -12.0984 -9.0405 0.0000 -0.0000 - 4.6542 5.3144 25.2042 3.2483 5.9096 2.7234 -0.3259 5.0960 -0.1162 -1.2234 0.0106 0.2736 15.5729 5.2308 3.6147 0.4024 2.9567 -0.3616 -7.8532 16.1919 0.8218 10.4015 8.5591 -4.8523 0.9093 -7.1821 7.3771 -35.2120 -15.4742 10.7545 -0.0000 0.0000 41.4079 10.3745 11.8566 1.2292 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.2686 3.9600 -5.7376 26.1352 13.1930 -88.4974 -0.0000 0.0000 7.9626 2.4331 -3.9241 -7.1139 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -22.3859 12.5416 -17.9568 6.7406 0.0000 0.0000 5.6611 -5.0520 5.3221 -0.9475 0.0000 -0.0000 -7.9296 -6.9144 4.3784 5.9980 0.0000 0.0000 -4.4423 2.4365 -12.4091 -8.9958 0.0000 -0.0000 - 4.6209 4.7538 25.2015 1.9034 5.3847 4.0062 0.0657 5.5294 -0.1394 -0.9602 -0.0565 0.2425 15.6242 4.8767 3.4468 0.8534 2.7556 -0.3239 -5.0614 14.5546 -1.0160 11.4138 7.4011 -6.1123 0.4274 -6.4400 6.6694 -34.7636 -15.6052 12.7194 -0.0000 0.0000 42.7598 11.8424 12.2958 1.3291 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.5758 3.9392 -5.2050 27.4604 13.3080 -89.8775 -0.0000 0.0000 7.8113 2.3937 -3.3141 -6.8735 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -24.2960 14.1757 -17.5566 7.0476 0.0000 0.0000 5.9107 -4.8016 5.1322 -1.0150 0.0000 -0.0000 -4.8592 -6.5270 3.9813 5.1501 0.0000 0.0000 -5.0455 3.1114 -12.7570 -9.0106 0.0000 -0.0000 - 4.5649 4.1579 25.1867 0.2429 4.8899 5.5876 0.5692 5.8642 -0.1695 -0.6485 -0.0490 0.2219 15.7848 4.4466 3.2483 1.3266 2.4342 -0.2370 -2.3862 12.3874 -2.8848 12.3283 6.1526 -7.5956 0.0475 -5.6263 5.8562 -33.6267 -15.9770 15.0073 -0.0000 0.0000 43.3593 12.8877 12.6752 1.2715 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.8780 3.7489 -4.7736 28.7720 13.3106 -91.2506 -0.0000 0.0000 7.6447 2.7449 -2.9185 -6.7470 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -25.6204 15.6805 -16.1132 8.3310 0.0000 0.0000 6.3358 -2.9780 4.2833 -1.0609 0.0000 -0.0000 -1.5258 -6.3347 3.0734 4.4243 0.0000 0.0000 -5.8600 3.5741 -12.9900 -8.9643 0.0000 -0.0000 - 4.4777 3.5387 25.1616 -1.1436 4.5103 7.4422 0.7504 6.0482 -0.1344 -0.5318 0.0890 0.2220 16.2597 3.9355 2.9312 1.7794 1.9308 -0.1144 -0.2165 9.7801 -4.5518 13.1520 4.9991 -9.0788 -0.2194 -5.1553 4.9518 -32.0858 -16.1896 17.6050 -0.0000 0.0000 43.3962 13.7549 12.8578 1.1494 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.0671 3.6048 -4.5867 29.8141 12.9254 -92.2532 -0.0000 0.0000 7.3308 3.0142 -2.6499 -6.7534 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -26.3587 16.7267 -13.8174 9.2076 0.0000 0.0000 7.1740 -0.6616 3.3673 -1.1208 0.0000 -0.0000 1.1257 -6.5164 2.1782 4.4293 0.0000 0.0000 -7.0949 4.0134 -13.5608 -8.6208 0.0000 -0.0000 - 4.3593 2.9067 25.1252 -1.9471 4.3717 9.2135 0.4247 5.9956 -0.0305 -0.6939 0.1855 0.2276 16.9644 3.4105 2.6561 2.1818 1.4005 0.0443 1.2938 7.1164 -5.8618 13.8509 3.8138 -10.3601 -0.4106 -5.0800 4.2394 -30.4617 -16.1742 20.1072 -0.0000 0.0000 43.1684 14.8511 12.9136 0.9807 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -1.2111 3.7986 -4.5588 30.5271 12.3616 -92.7122 -0.0000 0.0000 6.9993 2.7300 -2.2772 -6.8472 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -26.8253 17.1550 -10.6405 9.1867 0.0000 0.0000 7.8392 0.5676 3.1069 -1.2125 0.0000 -0.0000 2.7652 -7.1713 2.0578 5.2625 0.0000 0.0000 -8.6397 4.6081 -14.8920 -8.1866 0.0000 -0.0000 - 4.2136 2.2524 25.0690 -2.4371 4.3901 10.5804 -0.1416 5.8700 0.0690 -0.9167 0.0464 0.2046 17.5339 2.8866 2.6405 2.5406 0.9530 0.2345 2.2453 4.6873 -6.8011 14.4133 2.4990 -11.3680 -0.5302 -5.0013 3.8864 -28.6762 -16.1414 22.2116 -0.0000 0.0000 42.8056 15.8742 12.8073 0.8703 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -1.3565 4.1400 -4.6106 31.0048 12.2856 -92.7411 -0.0000 0.0000 6.8346 2.3399 -1.6887 -7.0327 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -27.0587 17.0805 -7.4459 8.6097 0.0000 0.0000 7.6550 0.2497 3.6855 -1.1880 0.0000 -0.0000 3.9468 -8.1355 2.7532 6.5331 0.0000 0.0000 -10.3486 5.2337 -16.6858 -7.9649 0.0000 -0.0000 - 4.0489 1.5838 24.9830 -2.6900 4.2271 11.6755 -0.6662 5.8162 0.1139 -1.0912 -0.0931 0.1906 17.7961 2.4051 2.7148 2.8094 0.5088 0.4415 2.6756 2.4782 -7.5034 14.8098 1.1627 -12.1217 -0.5497 -4.8242 3.6996 -26.4986 -16.0155 24.1318 -0.0000 0.0000 42.2381 16.2038 12.3640 1.0089 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -1.4848 4.1994 -4.8762 31.1836 12.6192 -92.3692 -0.0000 0.0000 6.8118 2.3556 -0.9408 -7.2710 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -27.0755 16.8648 -6.2317 7.8768 0.0000 0.0000 7.0997 -0.5803 5.0793 -1.0802 0.0000 -0.0000 4.8563 -8.9879 3.5995 8.0227 0.0000 0.0000 -12.1516 5.8795 -18.3427 -7.8509 0.0000 -0.0000 - 3.8713 0.9128 24.8630 -2.4997 3.6602 12.6272 -1.1732 5.7904 0.1766 -1.3269 0.0317 0.2155 17.9303 2.0855 2.7063 2.9162 0.0580 0.6064 2.5138 0.4457 -8.0749 15.0223 -0.1232 -12.6749 -0.3407 -5.0053 3.5682 -24.1491 -15.2760 26.1992 -0.0000 0.0000 41.3523 15.9091 11.5503 1.3672 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.6427 4.0250 -5.3651 30.8933 12.5846 -91.4669 -0.0000 0.0000 6.7990 2.5877 -0.2068 -7.3919 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -27.0539 16.6849 -6.9931 7.0539 0.0000 0.0000 7.0890 -0.9451 6.4337 -1.2160 0.0000 -0.0000 5.4248 -9.4257 4.1672 9.4876 0.0000 0.0000 -13.8505 6.6895 -19.6141 -7.6526 0.0000 -0.0000 - 3.6799 0.2117 24.7138 -1.9944 2.7740 13.2396 -1.7641 5.7756 0.3147 -1.6196 0.2012 0.2570 18.0561 1.9985 2.7482 2.8880 -0.2880 0.7383 1.8443 -1.3012 -8.5715 15.1898 -1.4479 -13.0596 0.1633 -5.6878 3.6700 -22.1170 -13.9443 28.1916 -0.0000 0.0000 40.1612 15.5264 10.6079 1.7435 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -1.8777 4.0321 -5.8623 30.1492 12.1919 -90.0635 -0.0000 0.0000 6.8062 2.7791 0.2365 -7.2645 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -27.0796 16.4086 -7.7591 6.5695 0.0000 0.0000 7.1426 -1.5032 6.1644 -1.6433 0.0000 -0.0000 6.2013 -9.5095 4.6055 10.3859 0.0000 0.0000 -15.2304 7.6241 -20.5093 -7.5525 0.0000 -0.0000 - 3.4747 -0.5508 24.5419 -1.4487 1.6504 13.5985 -2.3506 5.8407 0.4623 -1.8742 0.2575 0.2871 18.0280 2.0841 2.8151 2.8086 -0.5250 0.8456 0.8811 -2.8257 -9.0177 15.4205 -2.8677 -13.2359 0.7470 -6.4386 3.9471 -20.2736 -12.9280 29.9445 -0.0000 0.0000 38.6379 15.0659 9.8986 2.0799 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -2.1096 4.2330 -6.3348 29.0330 12.3570 -88.2574 -0.0000 0.0000 6.8590 3.0222 0.3060 -7.0065 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -26.9530 16.0321 -8.8600 7.3616 0.0000 0.0000 5.7959 -3.1724 4.5996 -1.9304 0.0000 -0.0000 7.5786 -9.3606 4.9392 10.5224 0.0000 0.0000 -16.2450 8.5858 -21.0324 -7.7691 0.0000 -0.0000 - 3.2507 -1.3615 24.3394 -0.5241 0.2325 14.2246 -3.0685 5.9389 0.5434 -2.1948 0.5936 0.3468 17.8797 2.3237 2.5163 2.6468 -0.7870 0.8077 -0.3963 -4.3753 -9.3586 15.4784 -4.3523 -13.0657 1.1248 -7.1815 4.0631 -17.8168 -12.3280 32.0644 0.0000 0.0000 36.5160 13.9004 9.4740 2.5518 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -2.3697 4.4343 -7.0173 27.5004 13.0569 -85.6635 -0.0000 0.0000 6.6786 3.1893 0.4553 -6.9243 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -26.4421 15.7845 -12.3020 9.3275 0.0000 0.0000 3.6421 -5.1728 4.4004 -1.8458 0.0000 -0.0000 8.6708 -8.9699 4.8978 10.6001 0.0000 0.0000 -17.0186 9.7534 -21.4123 -8.0289 0.0000 -0.0000 - 2.9684 -2.2184 24.1042 0.9300 -0.9494 14.6866 -4.2009 5.4000 0.6745 -2.8615 1.3412 0.4776 18.1206 2.9044 1.9295 2.3120 -0.9920 0.6039 -2.3134 -5.9283 -9.3907 15.0811 -5.9664 -12.4123 1.2468 -8.4936 4.2115 -14.2978 -10.7439 35.1313 0.0000 0.0000 33.4939 11.7666 8.8358 3.2632 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -2.8052 5.2416 -7.8291 25.3584 12.5032 -81.5994 -0.0000 0.0000 5.9523 2.8005 1.2292 -7.1284 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -25.7512 14.8314 -15.2143 11.3951 0.0000 0.0000 3.4612 -6.1805 5.6018 -1.6624 0.0000 -0.0000 9.0814 -8.9319 5.1085 11.1210 0.0000 0.0000 -17.6622 11.3416 -21.9887 -8.0951 0.0000 -0.0000 - 2.5524 -3.1729 23.8752 1.9190 -0.3879 13.1855 -5.6221 3.1271 1.0292 -3.8792 1.5401 0.5651 19.0507 3.9520 1.9865 1.8226 -0.9025 0.4615 -4.8741 -7.2457 -8.9619 14.4177 -7.8912 -11.2075 1.3065 -10.3775 5.0670 -10.2052 -7.7938 38.7706 0.0000 0.0000 29.5486 9.1742 7.6364 3.8619 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.2473 7.5850 -8.3425 22.4949 9.6400 -76.1146 -0.0000 0.0000 4.9149 2.0590 2.1851 -7.2526 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -25.8475 10.8965 -11.8528 13.9902 0.0000 0.0000 5.3038 -5.5040 4.7652 -0.9899 0.0000 -0.0000 10.2230 -10.8582 7.3360 11.7536 0.0000 0.0000 -18.0342 13.1753 -22.6594 -8.7402 0.0000 -0.0000 - 1.9974 -4.2279 23.7122 1.6635 2.1226 9.4700 -6.3994 0.0941 1.3926 -4.5296 0.3115 0.3824 19.4822 4.6730 2.9583 1.3477 -0.5909 0.6029 -7.0741 -8.5545 -8.2002 13.9105 -10.1469 -9.5013 1.5523 -11.1174 6.3790 -6.0535 -6.5810 42.7763 0.0000 0.0000 24.7363 6.5096 6.3768 3.7989 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.2902 10.4841 -8.4947 19.2274 6.8734 -70.5499 -0.0000 0.0000 4.2428 1.9279 2.1038 -6.8121 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -26.9957 3.9865 -3.6729 18.9811 0.0000 0.0000 5.4133 -3.9189 1.2217 0.3128 0.0000 0.0000 13.0176 -14.8347 11.6791 12.9287 0.0000 0.0000 -17.4305 14.6725 -23.0457 -11.0857 0.0000 -0.0000 - 1.4366 -5.2746 23.6985 0.5882 4.2556 6.7682 -5.8602 -1.1874 1.1988 -4.1848 -0.8394 0.1342 18.3660 4.0174 3.5015 1.0367 -0.6693 0.8339 -8.0320 -10.8557 -7.5688 13.4073 -12.4916 -7.5439 1.7321 -9.4526 6.9461 -1.6157 -10.1912 47.8512 0.0000 0.0000 19.0476 3.5835 5.5724 2.9823 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -2.9160 11.5277 -8.6161 16.0584 6.9241 -66.3567 -0.0000 0.0000 4.1063 2.4864 0.9682 -5.9862 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -27.0660 -1.4685 0.3219 24.4501 0.0000 0.0000 2.2092 -2.5525 -0.7389 0.8692 0.0000 0.0000 15.0218 -18.6619 14.0710 16.7876 0.0000 0.0000 -14.6721 15.0217 -23.2198 -14.4402 0.0000 -0.0000 - 0.9844 -6.1975 23.8659 -0.3684 4.0057 7.3533 -4.6558 -0.2841 0.7343 -3.3972 -0.3528 0.1570 16.7274 2.9292 2.4360 0.7668 -1.5642 0.7904 -8.4765 -14.7744 -7.6961 12.4677 -14.6990 -5.9744 1.2372 -6.5412 6.5522 3.6246 -17.1901 53.3027 0.0000 0.0000 13.3138 0.6257 4.3019 2.1467 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -2.8232 10.0325 -9.2779 13.6732 8.7045 -63.5696 -0.0000 0.0000 3.5168 2.6153 0.5369 -5.6288 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -24.9307 -2.3909 -0.8465 26.8571 0.0000 0.0000 -1.9595 -1.5144 -0.8694 0.5808 0.0000 0.0000 12.2995 -20.6406 10.4456 25.0453 0.0000 0.0000 -9.4819 13.6697 -22.9409 -15.8269 0.0000 -0.0000 - 0.6208 -6.9783 24.0939 -0.7576 2.5708 9.8254 -3.3886 0.9071 0.3725 -2.6890 0.7936 0.2825 15.2989 2.4696 0.7493 0.4438 -2.6139 0.6111 -9.3656 -19.1862 -8.7304 11.1968 -16.4232 -5.4564 0.4755 -4.1396 6.0895 9.0757 -22.9350 57.4294 0.0000 0.0000 9.1000 -0.9240 0.9023 1.7163 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.3832 7.6126 -10.6470 12.0882 9.7395 -61.7674 -0.0000 0.0000 1.8461 1.8177 1.4979 -6.1608 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -21.5382 -1.5346 -2.9989 25.9927 0.0000 0.0000 -4.3307 0.0175 -1.0034 0.2158 0.0000 0.0000 5.3406 -20.9951 3.9722 36.1410 0.0000 0.0000 -3.1201 10.7995 -22.3486 -13.6997 0.0000 -0.0000 - 0.2862 -7.6979 24.2627 -1.0865 2.0138 11.0127 -2.4176 0.8593 0.2621 -2.2243 1.1794 0.3390 14.3662 2.4751 0.3802 0.1432 -3.2284 0.7350 -10.6207 -22.0231 -10.1312 10.1470 -17.3474 -5.8523 0.2906 -2.9827 6.0694 13.0723 -24.7470 59.6243 0.0000 0.0000 7.2033 -0.1655 -3.4668 1.5968 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -4.1741 6.1607 -12.1996 10.1005 9.8034 -60.7681 -0.0000 -0.0000 -0.0268 0.8734 2.0400 -6.9678 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -18.2640 -2.2798 -3.0932 24.1435 0.0000 0.0000 -5.1552 1.8442 -1.7590 0.0989 0.0000 0.0000 -1.5029 -21.5974 0.4854 46.2694 0.0000 0.0000 1.4900 7.3678 -20.6995 -11.5374 0.0000 -0.0000 - -0.0187 -8.4094 24.3631 -1.4910 2.1502 9.8456 -1.9691 0.2552 0.3365 -2.0211 0.8553 0.3629 13.9481 2.4292 1.5513 -0.0155 -3.5662 1.2272 -11.3848 -22.6522 -11.0644 9.6544 -17.5720 -6.3171 0.7317 -2.9476 6.1675 15.0038 -24.0986 60.7735 0.0000 0.0000 6.9993 1.1963 -5.4282 1.7251 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.7185 5.7531 -13.2910 7.1451 10.1703 -60.3953 -0.0000 -0.0000 -0.9814 0.2883 0.7382 -7.3153 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -15.7377 -3.9454 -2.1010 23.1502 0.0000 0.0000 -6.3379 2.8255 -1.7284 0.0346 0.0000 0.0000 -6.2294 -23.0404 0.7517 53.1259 0.0000 0.0000 2.4555 5.0829 -16.7462 -11.1261 0.0000 -0.0000 - -0.2620 -9.1097 24.4307 -1.6708 1.6941 7.9082 -1.8530 0.0841 0.3898 -1.9475 0.7457 0.4228 13.7121 2.3311 2.7848 -0.0260 -3.8567 1.7077 -11.2973 -22.2047 -11.1684 9.5808 -17.4508 -6.2973 1.2793 -3.4573 5.9835 15.8027 -23.9052 62.1888 0.0000 0.0000 7.5028 0.5641 -3.8528 1.6860 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.0960 5.3752 -13.7672 4.1811 10.7752 -60.1826 -0.0000 -0.0000 -1.0807 -0.1472 -1.3574 -7.2355 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -13.6523 -4.4561 -2.4077 22.9510 0.0000 0.0000 -8.2729 2.9221 0.2396 -0.0078 0.0000 -0.0000 -9.5287 -23.9353 2.4929 56.0713 0.0000 0.0000 0.9004 3.9831 -11.3792 -11.1862 0.0000 -0.0000 - -0.4483 -9.7973 24.4852 -1.8113 0.5105 6.4824 -1.7314 0.1624 0.3781 -1.8607 1.0148 0.4997 13.5211 2.5329 3.2728 0.0249 -3.9529 1.8703 -10.8923 -21.7345 -10.7260 9.6294 -17.2667 -5.9353 1.5719 -3.9110 5.7616 16.4455 -25.0956 64.0019 0.0000 0.0000 8.3776 -1.9845 -1.1211 1.7328 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -5.7174 4.7336 -13.8888 2.0938 10.6638 -59.7417 -0.0000 -0.0000 -1.0231 -0.2799 -2.2623 -7.1457 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -11.5320 -3.8620 -3.2942 22.8980 0.0000 0.0000 -10.0769 2.9489 2.6778 0.1347 0.0000 0.0000 -12.1668 -23.8870 4.0340 55.4255 0.0000 0.0000 -0.8089 3.2061 -7.0845 -10.9057 0.0000 -0.0000 - -0.6080 -10.4745 24.5278 -2.1122 -0.4578 5.2573 -1.5244 -0.1538 0.3665 -1.7534 1.1116 0.5287 13.4698 3.0832 3.5612 0.1099 -3.7327 1.8352 -10.6488 -21.2828 -10.1621 9.6335 -17.1094 -5.6207 1.6811 -3.8574 5.9042 17.0766 -26.6384 65.5845 0.0000 0.0000 9.4352 -3.9022 0.1482 1.9077 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -6.5630 4.1945 -13.8727 0.6385 9.9919 -59.3212 -0.0000 -0.0000 -1.0083 0.2463 -1.6907 -7.1825 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.3908 -3.4584 -3.3172 22.8735 0.0000 0.0000 -11.5664 2.9049 4.2334 0.4525 0.0000 0.0000 -14.1749 -24.0435 5.5415 51.9907 0.0000 0.0000 -1.6843 2.7498 -5.3076 -10.3755 0.0000 -0.0000 - -0.7463 -11.1433 24.5567 -2.3810 -0.9095 3.7391 -1.3925 -0.8184 0.3743 -1.6863 0.9733 0.5470 13.5160 3.6542 4.1768 0.2157 -3.4126 1.8594 -10.5217 -20.7027 -9.6985 9.5585 -16.9493 -5.4771 1.7655 -3.3269 6.2653 17.6080 -27.4802 66.8298 0.0000 0.0000 10.1135 -3.8744 0.0444 1.9364 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -7.2701 3.8128 -13.7155 -0.5418 9.5627 -59.4249 -0.0000 -0.0000 -0.8419 0.9824 -0.8838 -7.1861 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.3399 -3.3902 -3.1371 22.7444 0.0000 0.0000 -13.0251 2.3213 5.6865 0.7728 0.0000 0.0000 -15.5607 -24.7209 7.6085 46.4753 0.0000 0.0000 -2.0310 2.5841 -5.5416 -9.6761 0.0000 -0.0000 - -0.8513 -11.8043 24.5691 -2.3784 -1.3698 2.1593 -1.3578 -1.2759 0.3757 -1.6363 0.9093 0.5731 13.3887 4.1240 4.9640 0.2648 -3.2555 1.9846 -10.3663 -20.2457 -9.3391 9.5171 -16.8113 -5.3564 1.7284 -2.7477 6.4498 18.2576 -27.6784 68.0274 0.0000 0.0000 10.0591 -3.0134 -0.1473 1.8825 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.6874 3.4387 -13.4480 -1.1801 9.1846 -59.9877 -0.0000 -0.0000 -0.6632 1.1749 -0.3962 -7.1052 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.3944 -2.9718 -3.8232 22.3211 0.0000 0.0000 -14.4256 1.6787 7.9835 1.0390 0.0000 0.0000 -16.8067 -24.9779 9.7498 39.6361 0.0000 0.0000 -1.7405 2.1282 -6.7294 -8.9488 0.0000 -0.0000 - -0.9186 -12.4566 24.5599 -2.1371 -2.0571 0.7064 -1.3050 -1.4321 0.3710 -1.5572 1.0479 0.6283 13.0175 4.4693 5.6447 0.1949 -3.1994 2.1265 -10.2534 -20.0490 -8.9839 9.6656 -16.7719 -5.1274 1.5309 -2.3590 6.4886 18.9395 -27.8293 69.0559 0.0000 0.0000 9.7061 -2.6111 -0.0851 1.6752 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.9865 3.1742 -13.2102 -1.2352 8.4254 -60.4375 -0.0000 -0.0000 -0.7322 0.9595 0.0742 -7.0975 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.7976 -2.1611 -4.7084 22.0551 0.0000 0.0000 -15.7856 1.6166 10.4728 1.2733 0.0000 0.0000 -18.4011 -24.3761 11.0578 32.4509 0.0000 0.0000 -0.5020 1.2736 -8.1326 -8.3787 0.0000 -0.0000 - -0.9470 -13.1187 24.5281 -1.9353 -2.5966 -0.9186 -1.1741 -1.6587 0.3758 -1.4174 1.1074 0.6586 12.6000 4.7125 6.3188 0.0961 -3.0688 2.2560 -10.1798 -19.8208 -8.5376 9.9536 -16.8265 -4.7880 1.4169 -1.9530 6.6484 19.2127 -28.2722 69.6073 0.0000 0.0000 9.7983 -2.6626 0.0141 1.3256 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -8.2890 3.0637 -12.9855 -1.2649 7.9716 -60.4902 -0.0000 -0.0000 -0.8612 0.9433 0.5031 -7.1605 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -2.5224 -1.4235 -4.7553 22.3732 0.0000 0.0000 -17.2211 1.5951 12.3376 1.3525 0.0000 0.0000 -20.1167 -23.4989 11.6376 25.6863 0.0000 0.0000 1.3924 0.9630 -9.5230 -8.3349 0.0000 -0.0000 - -0.9318 -13.8238 24.4807 -1.9553 -2.8725 -2.8954 -0.9996 -2.0642 0.3641 -1.2654 1.0264 0.6543 12.3260 4.8146 7.0503 0.0825 -2.8326 2.3815 -9.9660 -19.4102 -7.9666 10.1767 -16.8726 -4.3853 1.5157 -1.4466 6.9088 19.0657 -28.9087 69.8451 0.0000 0.0000 10.4911 -2.8772 0.2639 1.1201 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -8.5405 2.9507 -12.5893 -1.4746 8.3170 -60.3373 -0.0000 -0.0000 -0.7117 1.1434 0.6851 -7.1484 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.9958 -0.7085 -4.4358 22.7455 0.0000 0.0000 -18.5861 0.9410 14.1238 1.1787 0.0000 0.0000 -21.4995 -22.5935 12.1034 19.6381 0.0000 0.0000 3.3725 2.0138 -11.1269 -9.5246 0.0000 -0.0000 - -0.8829 -14.5791 24.4226 -2.0403 -3.0974 -5.0026 -0.8529 -2.4061 0.3230 -1.1269 0.9225 0.6354 12.1101 4.8440 7.6658 0.0867 -2.6027 2.4738 -9.5639 -19.0627 -7.3335 10.3563 -16.8529 -3.9643 1.6342 -1.1318 7.0971 18.9358 -29.5278 70.1217 0.0000 0.0000 11.3359 -3.3006 0.7119 1.1927 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -8.6695 2.8277 -12.0355 -1.4713 8.6903 -60.0525 -0.0000 -0.0000 -0.3636 1.3273 0.8374 -7.0812 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.0090 0.2629 -4.5778 22.5039 0.0000 0.0000 -19.7701 0.1474 16.4861 0.8981 0.0000 0.0000 -22.8603 -21.4426 12.1141 14.7175 0.0000 0.0000 4.9105 4.1354 -12.8231 -11.8667 0.0000 -0.0000 - -0.8229 -15.3700 24.3595 -2.0860 -3.3376 -7.1498 -0.6516 -2.4875 0.3598 -0.9339 0.8267 0.6075 11.7669 4.8026 8.1136 0.0021 -2.4621 2.5370 -9.1633 -18.9360 -6.7716 10.6822 -16.7983 -3.5920 1.6753 -1.0724 7.2240 18.9745 -30.0487 70.4497 0.0000 0.0000 11.9919 -3.6062 1.0919 1.2458 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.6989 2.7733 -11.5561 -1.1496 8.7629 -59.5090 -0.0000 -0.0000 -0.0505 1.6310 1.1788 -7.0425 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 3.1905 1.4371 -4.8930 21.8382 0.0000 0.0000 -20.7722 -0.4425 19.0628 0.6248 0.0000 0.0000 -24.7212 -20.1983 11.7943 11.8284 0.0000 0.0000 5.1499 6.2568 -14.0950 -13.7411 0.0000 -0.0000 - -0.7674 -16.1856 24.2950 -1.9808 -3.4161 -9.4641 -0.4403 -2.3531 0.4993 -0.7271 0.6241 0.5807 11.3519 4.6423 8.5482 -0.1170 -2.4018 2.6435 -8.9412 -18.9337 -6.3894 11.0527 -16.7553 -3.3297 1.7464 -0.9326 7.3816 19.0369 -30.4843 70.7494 0.0000 0.0000 12.4559 -3.2613 1.3519 1.0448 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -8.7424 2.6133 -11.2056 -0.8341 9.3652 -58.8754 -0.0000 0.0000 0.3615 2.1629 1.5264 -6.9470 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 5.1306 2.5361 -4.5431 21.2186 0.0000 0.0000 -21.2878 -1.5249 21.1467 0.1285 0.0000 0.0000 -27.1041 -19.1365 12.7865 11.2038 0.0000 0.0000 3.7383 7.7536 -14.6521 -14.1624 0.0000 -0.0000 - -0.7090 -17.0427 24.2171 -1.6598 -3.4940 -11.8901 -0.3859 -1.9594 0.6455 -0.6577 0.3162 0.5486 11.0660 4.4552 8.9946 -0.1993 -2.3587 2.7758 -8.8877 -19.0492 -6.1583 11.1742 -16.8183 -3.2011 1.7854 -0.6099 7.5495 19.3035 -30.7865 71.2694 0.0000 0.0000 12.5536 -2.7350 1.6068 0.8852 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -8.8982 2.2220 -10.7868 -0.4669 10.4612 -58.6557 -0.0000 0.0000 1.1273 2.8294 1.8031 -6.7093 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 6.8741 3.7219 -3.6378 20.5741 0.0000 0.0000 -21.3185 -3.1475 22.8144 -0.8037 0.0000 -0.0000 -29.3256 -17.7410 15.4472 11.2932 0.0000 0.0000 1.9929 8.7965 -13.8098 -14.1367 0.0000 -0.0000 - -0.6448 -17.9588 24.0999 -1.0256 -3.7339 -14.0939 -0.6455 -1.3831 0.7463 -0.7345 0.0531 0.5341 10.9086 4.4149 9.2499 -0.3338 -2.3500 2.8434 -9.0107 -19.4147 -6.0676 11.0917 -17.1036 -3.2164 1.5449 -0.3921 7.7492 20.0630 -31.0575 72.0632 0.0000 0.0000 11.8793 -3.1031 1.7166 1.0469 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.1275 2.0092 -10.3212 0.2123 10.7887 -59.1176 -0.0000 0.0000 2.0854 3.8213 2.1444 -6.4244 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 8.5245 5.0692 -3.0134 19.7305 0.0000 0.0000 -21.5723 -4.0892 24.4624 -1.9455 0.0000 -0.0000 -31.2731 -15.6131 18.5973 10.7060 0.0000 0.0000 1.5654 9.4055 -11.7329 -14.4397 0.0000 -0.0000 - -0.5947 -18.9566 23.9355 -0.3017 -3.7338 -16.0229 -1.0075 -1.0600 0.8883 -0.8140 -0.0666 0.5335 10.7923 4.5230 9.4087 -0.5643 -2.4258 2.8690 -9.4809 -19.9317 -6.2808 11.1141 -17.5457 -3.3986 1.1147 -0.1768 8.0590 21.1312 -31.7715 72.7736 0.0000 0.0000 10.4063 -4.3500 1.5674 1.1708 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.2340 2.4126 -10.1434 0.7069 10.3559 -60.0749 -0.0000 0.0000 2.8186 5.1372 2.3497 -6.2289 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 10.3709 6.1801 -2.7650 18.8197 0.0000 0.0000 -22.0348 -4.2272 26.0704 -2.9994 0.0000 -0.0000 -32.8197 -13.3198 21.3605 9.6610 0.0000 0.0000 2.2944 9.8749 -9.9110 -14.2957 0.0000 -0.0000 - -0.5829 -20.0613 23.7254 0.3851 -3.0021 -18.0689 -1.3604 -1.2801 1.0252 -0.9202 -0.2847 0.5337 10.8008 4.7044 9.8546 -0.7553 -2.5041 2.9711 -10.3868 -20.3349 -6.8357 11.2390 -17.8799 -3.6716 0.9301 0.3419 8.4933 22.1013 -32.9223 73.2397 0.0000 0.0000 8.7401 -5.4835 1.3138 0.8308 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -9.1898 3.3118 -10.3295 0.4785 10.5360 -61.2029 -0.0000 0.0000 3.0907 5.9811 2.1800 -6.1710 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 12.5788 6.7122 -2.0296 17.9383 0.0000 0.0000 -21.5738 -4.9098 27.4257 -4.2819 0.0000 -0.0000 -33.2189 -11.5026 23.1967 8.6748 0.0000 0.0000 2.8856 11.2103 -10.0799 -13.4298 0.0000 -0.0000 - -0.6070 -21.2772 23.4496 1.2927 -2.0692 -20.5093 -2.0082 -1.3853 0.9917 -1.2759 -0.8664 0.5022 11.0608 5.0090 10.5824 -0.9432 -2.4503 3.1226 -11.6630 -20.7693 -7.3983 11.2581 -17.9575 -3.8799 1.0268 0.4230 9.1231 22.8765 -33.6117 73.3916 0.0000 0.0000 7.5871 -5.8635 0.5847 0.3544 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -9.2278 4.5218 -10.3721 0.1581 10.9050 -62.4830 -0.0000 0.0000 3.1048 5.8682 2.1099 -6.3447 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 14.7389 7.2884 -0.9426 17.1862 0.0000 0.0000 -20.3204 -6.1690 28.9489 -6.2597 0.0000 -0.0000 -32.3434 -9.7441 22.3673 7.7865 0.0000 0.0000 3.7656 13.4012 -11.8619 -12.9569 0.0000 -0.0000 - -0.6527 -22.5621 23.1330 2.2070 -2.1876 -23.0613 -2.9423 0.1247 0.8357 -1.9236 -1.6687 0.4439 11.6818 5.4838 11.0874 -1.5361 -2.4352 3.1851 -13.6005 -21.7699 -7.8702 11.1997 -17.8872 -4.0060 1.1364 -1.7574 10.2757 22.8694 -32.9061 72.0277 0.0000 0.0000 7.1751 -5.4934 -1.3455 0.3202 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.4765 6.5929 -10.0558 0.4633 9.3354 -64.0086 -0.0000 0.0000 3.2865 6.0155 2.4114 -6.5964 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 16.1971 9.2502 -1.6218 17.4036 0.0000 0.0000 -19.6925 -6.6722 31.9615 -8.7869 0.0000 -0.0000 -31.9960 -7.5011 17.4152 9.1563 0.0000 0.0000 5.6247 13.6309 -12.6067 -12.9082 0.0000 -0.0000 - -0.7335 -23.8406 22.8879 2.7182 -2.3900 -25.1033 -3.4130 2.4663 0.3828 -2.4647 -2.1420 0.4271 12.5548 5.8684 11.4024 -2.7255 -2.8836 3.2795 -16.6168 -22.9743 -8.7713 11.0953 -17.8004 -4.2568 1.5136 -6.0357 12.1656 21.1774 -31.3657 67.8578 0.0000 0.0000 7.3270 -4.8815 -3.7320 0.6023 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -9.6066 9.6542 -10.2009 0.9162 6.8712 -65.4286 -0.0000 0.0000 3.7258 7.4322 2.0546 -6.5741 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 16.4748 11.7712 -3.8778 20.0138 0.0000 0.0000 -17.8040 -7.2458 36.8313 -11.2582 0.0000 -0.0000 -34.9159 -6.1939 10.6157 17.8790 0.0000 0.0000 5.7704 10.3158 -11.4528 -11.5177 0.0000 -0.0000 - -0.9339 -25.1204 22.8276 2.2318 0.8696 -27.4248 -2.1230 2.0441 0.0663 -1.6529 -1.6898 0.5508 12.7088 5.3633 12.4258 -3.8117 -3.6563 3.7245 -19.7917 -22.6267 -10.1516 10.4082 -17.7871 -4.7475 2.6603 -8.6900 14.2429 18.3125 -31.2322 62.3946 0.0000 0.0000 7.6905 -5.2029 -4.1471 0.5542 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -8.9012 11.8431 -11.6719 1.0713 8.1130 -66.2686 -0.0000 0.0000 4.2383 8.6300 0.2282 -6.3994 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 16.6080 11.7788 -1.9902 24.6284 0.0000 0.0000 -8.2898 -10.0120 41.7091 -12.3715 0.0000 -0.0000 -37.0446 -8.9461 7.3704 30.7106 0.0000 0.0000 2.2786 5.9357 -11.4042 -8.9155 0.0000 -0.0000 - -1.1761 -26.2912 23.0430 1.9174 6.0449 -30.2566 0.0383 -0.2320 0.1810 -0.2810 -1.4613 0.6478 12.4042 4.6238 14.1316 -4.2784 -3.9890 4.3224 -22.3853 -20.6786 -11.2472 8.6435 -17.3841 -5.1855 4.0928 -8.6370 15.5809 15.6603 -32.5337 58.2484 0.0000 0.0000 8.0240 -7.0641 -2.0812 0.1387 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.6268 12.1889 -13.8445 1.5155 12.8866 -66.4397 -0.0000 0.0000 4.7689 8.0287 -1.3506 -6.8069 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 15.2088 9.5245 5.0026 29.0078 0.0000 0.0000 10.0727 -15.6026 45.3843 -8.4758 0.0000 -0.0000 -34.9805 -14.0792 6.4823 38.3196 0.0000 0.0000 -3.1945 3.6771 -10.9221 -7.8647 0.0000 -0.0000 - -1.3261 -27.2389 23.4475 3.5038 9.2597 -32.5624 1.0927 -1.7364 0.3695 0.1875 -1.7910 0.6206 12.0673 3.9576 14.9796 -4.4793 -3.7579 4.6147 -24.0478 -18.1113 -11.2593 6.6331 -16.1945 -5.0945 4.8620 -7.7203 15.8414 14.4601 -34.0748 56.5886 0.0000 0.0000 8.2681 -8.6417 -0.7770 0.0171 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -6.2901 11.7804 -15.4038 3.1363 16.4222 -66.3203 -0.0000 0.0000 5.4619 7.2935 -0.3026 -7.4089 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 11.0482 6.9408 11.3587 31.6168 0.0000 0.0000 22.1757 -20.7561 45.5996 -2.8529 0.0000 -0.0000 -31.8535 -17.2808 5.9883 38.7685 0.0000 0.0000 -7.2199 3.0761 -9.4547 -8.4130 0.0000 -0.0000 - -1.4040 -28.0469 23.9283 5.9301 10.0661 -33.2422 0.9737 -1.8074 0.3819 0.0062 -1.9372 0.5274 11.7675 2.8527 14.1295 -4.8449 -3.3794 4.4320 -24.9404 -15.2145 -10.1121 5.5378 -14.2675 -4.4265 4.7476 -7.8225 15.5320 13.9492 -34.6820 55.9206 0.0000 0.0000 8.3211 -7.9300 -2.8281 0.2120 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.8298 12.0078 -15.9650 5.8657 16.5026 -66.5753 -0.0000 0.0000 6.3571 8.8464 2.1683 -7.2092 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 5.6961 5.4585 12.4261 33.0222 0.0000 0.0000 17.9082 -22.7913 39.5220 -1.4323 0.0000 -0.0000 -29.0886 -17.6352 5.1929 34.6550 0.0000 0.0000 -7.8035 2.3663 -8.2332 -9.0138 0.0000 -0.0000 - -1.4499 -28.8220 24.3653 7.6498 9.8249 -32.8151 0.7304 -1.1195 0.3567 -0.1108 -1.6420 0.4559 11.1896 1.2953 12.7144 -5.2308 -3.0151 4.1093 -25.1440 -11.5573 -8.1605 5.3669 -11.9820 -3.6029 4.1986 -8.1959 15.2069 12.7792 -34.3520 54.5045 0.0000 0.0000 8.2343 -5.6117 -6.0772 0.3560 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -3.2241 12.3140 -16.2181 8.6312 16.3069 -67.5050 -0.0000 0.0000 7.2745 11.5853 3.2598 -6.5434 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 1.0792 5.8771 7.6945 32.5253 0.0000 0.0000 6.0286 -20.3247 30.6690 -2.0389 0.0000 -0.0000 -26.3996 -16.8986 5.4969 29.8521 0.0000 0.0000 -6.7155 1.2895 -8.1971 -8.8740 0.0000 -0.0000 - -1.4796 -29.6082 24.6812 8.3117 10.0534 -32.7323 0.9890 -0.9053 0.3274 0.0423 -1.5664 0.4025 10.5023 0.1782 12.1234 -5.3146 -2.5413 3.9569 -24.7080 -7.6695 -5.8474 5.2538 -9.7897 -2.7965 3.6833 -7.7644 14.9631 11.2627 -32.3369 52.6451 0.0000 0.0000 8.4173 -3.8891 -6.9132 0.2974 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -1.8706 11.8587 -16.4142 10.6505 18.7541 -69.1558 -0.0000 0.0000 7.8181 12.4632 2.6777 -6.0055 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -2.1975 7.0541 1.5576 29.7045 0.0000 0.0000 0.0655 -17.6938 25.9752 -1.5310 0.0000 -0.0000 -23.1972 -16.7064 7.7155 26.6669 0.0000 0.0000 -6.7394 0.2234 -9.2734 -8.2583 0.0000 -0.0000 - -1.4979 -30.3930 24.8636 8.2227 10.8806 -33.4246 1.5565 -1.1105 0.2705 0.2046 -1.8119 0.3652 10.2248 -0.2824 12.2147 -5.1624 -2.1173 3.9253 -23.8767 -4.8521 -3.5795 4.7506 -7.9329 -1.7111 3.3821 -7.1891 14.6968 10.5271 -27.0979 51.3512 0.0000 0.0000 9.3651 -2.9397 -4.7609 0.2136 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.9648 11.3199 -16.1035 11.8333 22.8938 -71.0114 -0.0000 0.0000 7.6809 10.4208 1.8440 -5.9515 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -4.6360 8.0139 -2.5766 25.3293 0.0000 0.0000 0.9633 -15.0763 25.6694 -1.2146 0.0000 -0.0000 -19.4819 -16.7341 10.0948 24.9211 0.0000 0.0000 -8.0163 -0.7267 -10.0281 -7.6441 0.0000 -0.0000 - -1.5098 -31.1258 24.9398 8.0182 11.5581 -34.0932 1.7647 -1.0309 0.2227 0.2026 -1.8991 0.3339 10.4845 -0.6424 12.0153 -5.0074 -2.0220 3.8464 -23.0030 -3.5328 -1.6612 4.1366 -6.3866 -0.2327 3.2257 -7.4846 14.4186 10.4148 -18.7605 50.3500 0.0000 0.0000 11.0924 -0.8048 -1.4008 0.3971 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.3354 11.4567 -15.3502 12.1694 27.0723 -72.3336 -0.0000 0.0000 7.2002 6.9485 1.2533 -5.9921 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -7.2967 8.6433 -5.0934 20.3924 0.0000 0.0000 5.3199 -9.9538 26.2591 -1.7003 0.0000 -0.0000 -16.6202 -16.4487 11.4450 24.4444 0.0000 0.0000 -9.5575 -1.5166 -10.2705 -7.1991 0.0000 -0.0000 - -1.5314 -31.8008 24.9623 7.7849 12.1628 -33.9019 1.6523 -0.7560 0.1845 0.0797 -1.7750 0.2945 11.1586 -1.2134 11.1310 -4.8192 -2.1423 3.6743 -22.2965 -2.9258 -0.2561 3.8102 -5.2230 1.2322 2.9205 -8.1130 14.1331 10.1013 -10.2514 49.0816 0.0000 0.0000 13.1105 2.8386 1.7814 0.7796 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0636 11.6852 -14.8195 11.8782 31.2105 -72.8346 -0.0000 0.0000 6.9501 3.8939 0.2360 -5.6691 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -10.2593 8.8985 -7.2838 15.9092 0.0000 0.0000 11.7197 -4.9399 24.7205 -2.1361 0.0000 -0.0000 -14.8191 -16.2935 12.6215 25.1467 0.0000 0.0000 -11.3474 -1.7927 -11.3010 -6.9856 0.0000 -0.0000 - -1.5716 -32.4560 24.9634 7.3164 13.0150 -32.8454 1.5374 -0.7263 0.1380 -0.0136 -1.8045 0.2078 11.9477 -1.6831 9.8398 -4.4626 -2.0943 3.3750 -21.6958 -2.3965 0.6569 3.9080 -4.6195 2.2369 2.2659 -7.9013 13.7065 9.2331 -4.6859 48.0226 0.0000 0.0000 14.8888 5.8803 4.2201 1.1178 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.1627 11.0965 -14.6723 11.5961 35.1478 -72.8208 -0.0000 0.0000 7.1494 2.0880 -1.1417 -5.0613 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -13.1100 8.9385 -8.8279 12.6606 0.0000 0.0000 17.6480 -3.9480 20.4292 -2.0777 0.0000 -0.0000 -13.0065 -16.3848 14.0390 26.0098 0.0000 0.0000 -13.4239 -1.5865 -13.2711 -7.0121 0.0000 -0.0000 - -1.6230 -33.1087 24.9569 6.3839 13.6440 -31.2910 1.5736 -0.6775 0.0433 -0.0509 -1.9214 0.0976 12.5116 -1.7306 8.4141 -4.0094 -1.7896 2.9214 -21.0690 -2.1168 1.2311 4.3200 -4.4807 2.7535 1.5128 -7.0155 13.1910 7.8024 -2.2039 47.5696 0.0000 0.0000 16.2236 7.2391 5.7176 1.4698 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0989 9.9271 -14.4093 11.6592 37.9371 -72.6834 -0.0000 0.0000 7.5150 1.4258 -1.9783 -4.3296 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -16.0882 9.4751 -9.2989 11.5701 0.0000 0.0000 18.5568 -5.0608 15.4748 -1.7978 0.0000 -0.0000 -10.6012 -15.8841 15.0763 26.0243 0.0000 0.0000 -15.0662 -1.3397 -15.1944 -7.0702 0.0000 -0.0000 - -1.6849 -33.7249 24.9536 5.2994 13.3707 -29.4609 1.5107 -0.1124 -0.1204 -0.0981 -1.8036 0.0266 12.6851 -1.4182 7.0462 -3.6088 -1.4638 2.3911 -20.3466 -2.2090 1.5666 4.7346 -4.3940 2.9744 0.9565 -6.2895 12.6958 6.0804 -1.1536 47.4308 0.0000 0.0000 17.2292 7.8174 6.7022 1.9051 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.1415 8.8468 -13.8707 11.8102 39.4267 -72.4654 -0.0000 0.0000 7.6167 1.3444 -2.2653 -3.6780 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -20.0101 10.8145 -9.6766 12.6674 0.0000 0.0000 15.2843 -4.1954 11.9260 -1.3013 0.0000 -0.0000 -8.4216 -14.5198 15.6500 25.4532 0.0000 0.0000 -15.7534 -1.0546 -16.9206 -6.9340 0.0000 -0.0000 - -1.7800 -34.3147 24.9743 4.2228 12.8574 -27.1840 1.4492 0.5302 -0.3325 -0.1205 -1.5329 -0.0034 12.6678 -1.0082 5.7985 -3.2407 -1.1919 1.9036 -19.5385 -2.1542 1.7341 4.8655 -4.0498 2.9767 0.5663 -5.8402 12.0662 4.3682 -0.5807 47.3409 0.0000 0.0000 18.1788 8.5521 7.5887 2.1533 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.3451 7.8990 -13.4234 11.8957 40.3835 -72.1714 -0.0000 0.0000 7.4160 1.3861 -2.7420 -3.3271 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -23.9007 12.1417 -10.8326 14.1406 0.0000 0.0000 13.3029 -2.1523 9.7904 -0.7029 0.0000 -0.0000 -6.4730 -13.2729 16.2475 24.8263 0.0000 0.0000 -15.8106 -0.4542 -19.1311 -6.7362 0.0000 -0.0000 - -1.9173 -34.9190 25.0189 3.3400 13.0797 -24.3208 1.3510 0.3944 -0.4923 -0.1175 -1.3651 -0.0539 12.8693 -0.8387 4.5421 -2.8651 -0.7785 1.4184 -18.8209 -1.3510 1.9270 4.8106 -3.3910 2.7289 0.1600 -5.4448 11.3183 2.7355 -0.3880 47.2087 0.0000 0.0000 19.2293 9.2929 8.2726 2.1277 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.5951 6.9603 -13.1682 12.1092 40.9714 -72.0671 -0.0000 0.0000 7.2889 1.4810 -3.4338 -3.2536 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -26.4891 12.3986 -12.5188 14.3604 0.0000 0.0000 14.5157 -0.7567 7.6928 -0.6766 0.0000 -0.0000 -4.4382 -13.1216 16.8185 24.2712 0.0000 0.0000 -15.8544 0.2620 -22.0334 -6.9268 0.0000 -0.0000 - -2.0824 -35.5516 25.0600 2.4190 13.8683 -21.0520 1.3687 -0.3071 -0.5982 -0.0935 -1.3807 -0.1431 13.2549 -0.9084 3.2472 -2.5536 -0.1467 0.8785 -18.3612 0.2765 2.3443 4.9627 -2.4315 2.2313 -0.2534 -5.1593 10.8157 1.1150 -0.5087 46.8852 0.0000 0.0000 20.2974 9.7774 8.8237 2.2322 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.8302 6.0183 -12.8047 12.5799 40.9495 -72.3473 -0.0000 0.0000 7.4438 1.6925 -3.9578 -3.1872 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -27.7534 11.7241 -13.6993 13.4086 0.0000 0.0000 16.3113 0.0033 5.4512 -1.2629 0.0000 -0.0000 -2.1802 -13.6856 16.8804 23.7409 0.0000 0.0000 -15.9591 0.9402 -24.9867 -7.7829 0.0000 -0.0000 - -2.2448 -36.1644 25.0653 1.5535 14.0631 -17.9051 1.4316 -0.6269 -0.7637 -0.0020 -1.4981 -0.2336 13.4092 -0.9215 2.2295 -2.3824 0.6224 0.3424 -18.1778 2.4589 3.0562 5.4267 -1.2682 1.5725 -0.5506 -5.0802 10.7993 -0.4909 -0.7485 46.1654 0.0000 0.0000 21.4500 10.2815 9.6413 2.6464 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 1.0979 5.1162 -12.1881 13.1654 40.3332 -72.9406 -0.0000 0.0000 7.7171 1.7467 -4.2986 -2.9844 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -29.1943 11.1235 -13.8809 12.5604 0.0000 0.0000 16.4081 0.3820 4.4313 -1.7441 0.0000 -0.0000 -0.4482 -13.8420 16.2012 23.5248 0.0000 0.0000 -15.7992 1.7467 -27.2077 -9.0469 0.0000 -0.0000 - -2.3878 -36.7479 25.0299 0.6913 13.3915 -15.1072 1.6898 -0.4289 -0.9787 0.1867 -1.6256 -0.2947 13.2118 -0.6574 1.6951 -2.2992 1.4493 -0.1065 -18.0779 4.9079 3.9539 5.8993 -0.1056 0.9521 -0.7610 -5.0133 11.0517 -1.8854 -1.0533 45.0446 0.0000 0.0000 22.9702 10.9312 10.5622 2.9660 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 1.3098 4.3052 -11.4919 13.8256 39.4484 -73.7367 -0.0000 0.0000 7.9230 1.4192 -4.5149 -2.7899 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -30.9250 10.8680 -13.8838 12.0021 0.0000 0.0000 15.5923 0.0500 5.5076 -1.7497 0.0000 -0.0000 0.9390 -13.1046 14.8755 23.4255 0.0000 0.0000 -15.5533 2.3851 -28.3280 -10.3073 0.0000 -0.0000 - -2.5150 -37.3537 24.9636 -0.2039 12.4845 -12.4562 2.0325 -0.3244 -1.1073 0.3846 -1.7153 -0.3286 13.0659 -0.2147 1.4413 -2.2125 2.2510 -0.4795 -17.8888 7.3224 4.8793 6.1650 1.0452 0.5706 -0.9610 -4.8482 11.2595 -2.8450 -1.2259 43.7986 0.0000 0.0000 24.6427 11.4223 11.0143 2.9849 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 1.2803 3.7670 -10.8711 14.5460 38.7344 -74.5986 -0.0000 0.0000 8.0819 1.1337 -4.5400 -2.7981 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -32.1420 10.3296 -14.0027 11.1188 0.0000 0.0000 15.3979 -0.4685 7.1810 -1.7939 0.0000 -0.0000 2.6840 -11.9447 13.1101 22.8977 0.0000 0.0000 -15.9829 2.1620 -28.6268 -11.2489 0.0000 -0.0000 - -2.6422 -38.0236 24.8836 -1.0969 11.8670 -9.7338 2.2608 -0.5667 -1.1181 0.5136 -1.8047 -0.3621 13.3232 0.1445 1.2221 -2.0910 2.8979 -0.7889 -17.6721 9.4337 5.7618 6.3109 2.3863 0.4380 -1.0489 -4.7247 11.3916 -3.3926 -1.0516 42.7151 0.0000 0.0000 25.6991 11.6152 11.2631 3.1145 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 1.1708 3.6378 -10.3165 15.0743 38.4500 -75.3829 -0.0000 0.0000 8.2826 1.3824 -4.6853 -3.0065 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -32.6879 9.0709 -13.8229 10.1048 0.0000 0.0000 15.6854 -0.7146 7.3604 -1.8855 0.0000 -0.0000 4.9381 -11.1550 11.3212 21.9827 0.0000 0.0000 -16.9455 1.4240 -28.9926 -11.7734 0.0000 -0.0000 - -2.7711 -38.7424 24.8037 -1.7929 11.3013 -6.8560 2.2980 -0.7267 -1.1488 0.5663 -1.8926 -0.4037 13.8070 0.2309 0.9782 -1.9265 3.3277 -1.0132 -17.5249 11.1082 6.5132 6.4655 3.8571 0.2935 -0.9470 -4.6912 11.5125 -3.6605 -0.8806 41.8233 0.0000 0.0000 25.8315 11.6379 12.0473 3.6070 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.3461 3.6923 -9.8545 15.3819 38.2760 -76.1444 -0.0000 0.0000 8.5165 1.8825 -5.2381 -3.2370 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -33.0713 7.4723 -13.8691 9.4976 0.0000 0.0000 15.9047 -1.3467 6.6139 -1.5423 0.0000 -0.0000 6.9252 -10.8966 9.8858 21.4184 0.0000 0.0000 -17.3712 1.3263 -30.1516 -12.2136 0.0000 -0.0000 - -2.8870 -39.4806 24.7140 -2.0112 10.4770 -3.6851 2.1745 -0.7035 -1.2178 0.5321 -1.8742 -0.4304 14.1056 0.1399 0.6146 -1.7342 3.5462 -1.1765 -17.3653 12.3827 6.8208 6.6719 5.0027 -0.0798 -0.8199 -4.6718 11.5053 -3.5473 -1.1322 41.0114 0.0000 0.0000 25.4510 11.3219 12.9474 4.1416 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 1.6643 3.6343 -9.6655 15.9555 37.6755 -76.9458 -0.0000 0.0000 8.7003 2.1687 -5.5763 -3.3083 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -33.3797 5.9621 -14.8481 8.8863 0.0000 0.0000 16.3174 -2.4776 7.1148 -1.1683 0.0000 -0.0000 7.9589 -10.8730 8.6792 21.6090 0.0000 0.0000 -17.3029 1.6749 -32.0210 -13.0946 0.0000 -0.0000 - -2.9785 -40.2408 24.5859 -1.6585 9.5660 -0.2672 1.9248 -0.9210 -1.2311 0.3891 -1.7024 -0.4329 14.1475 0.0504 0.1376 -1.5807 3.6434 -1.3401 -17.2084 13.2156 6.5612 6.8888 5.6777 -0.6119 -0.8977 -4.6868 11.3905 -2.8484 -1.5445 40.1324 0.0000 0.0000 24.8904 10.5036 12.8127 4.3464 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 1.7188 3.4605 -9.7417 16.9767 36.7453 -77.6968 -0.0000 0.0000 8.8498 2.2924 -5.0772 -3.2329 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -33.7002 4.4515 -15.4300 8.0959 0.0000 0.0000 16.6443 -3.2008 8.4493 -1.3694 0.0000 -0.0000 8.2731 -10.8883 7.1938 22.1521 0.0000 0.0000 -17.9927 1.3894 -33.8096 -14.3742 0.0000 -0.0000 - -3.0438 -41.0611 24.4134 -1.1617 8.7183 3.0192 1.6496 -1.2674 -1.2552 0.2706 -1.5795 -0.4330 14.2287 -0.0487 -0.2365 -1.4810 3.6073 -1.4140 -17.3286 13.5322 6.1614 6.8846 6.1597 -1.0587 -1.0132 -4.7168 11.4211 -1.8075 -1.5725 39.1785 0.0000 0.0000 24.0088 9.6832 11.8153 4.2400 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 1.6447 3.2048 -9.9367 17.8314 36.3759 -78.1838 -0.0000 0.0000 8.9398 2.4931 -4.4633 -3.1462 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -34.2955 2.8849 -14.5040 8.4589 0.0000 0.0000 14.9439 -3.4002 8.5424 -1.6267 0.0000 -0.0000 8.8046 -10.7844 5.0700 22.5028 0.0000 0.0000 -19.2979 0.7514 -34.7551 -15.2859 0.0000 -0.0000 - -3.0633 -41.9904 24.2018 -1.0200 7.3296 6.2283 1.5199 -0.9080 -1.4069 0.2347 -1.4563 -0.4476 14.5078 -0.4541 -0.5822 -1.3317 3.3442 -1.3770 -17.7690 13.2602 5.9528 6.4724 6.4322 -1.2335 -0.8757 -4.6151 11.5490 -0.8825 -1.5759 38.4058 0.0000 0.0000 22.7970 9.4731 11.2158 4.0979 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 2.0597 2.7198 -10.3069 17.9182 36.6251 -78.2664 -0.0000 0.0000 8.8966 2.5415 -4.2701 -3.1101 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -34.4976 1.9256 -13.7488 10.6456 0.0000 0.0000 10.8025 -3.7616 8.1836 -1.5348 0.0000 -0.0000 10.2875 -9.9781 1.9381 22.3741 0.0000 0.0000 -19.7578 0.4812 -34.5741 -15.6978 0.0000 -0.0000 - -3.0128 -43.0372 23.9175 -0.6164 5.0992 10.0620 1.1393 -0.0051 -1.5609 0.0297 -0.9788 -0.4366 14.7600 -1.0863 -1.5677 -1.1519 2.8975 -1.4206 -18.2402 12.4093 5.5496 5.9625 6.0503 -1.1084 -0.6206 -4.6377 11.2934 -0.0070 -2.1258 38.2410 0.0000 0.0000 21.4648 9.2544 10.9106 4.0538 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 2.6624 2.1189 -11.2352 17.4595 36.6176 -77.2447 -0.0000 0.0000 8.6397 2.4392 -3.5373 -3.0546 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -33.5576 2.1388 -13.5810 12.9798 0.0000 0.0000 7.4827 -4.4850 9.0774 -1.8223 0.0000 -0.0000 12.0513 -8.5402 -1.7997 21.9649 0.0000 0.0000 -20.0536 -0.0939 -34.4136 -16.8466 0.0000 -0.0000 - -2.9105 -44.1445 23.5423 1.0074 3.1443 14.3440 0.0112 -0.0494 -1.4200 -0.6482 -0.2321 -0.3966 14.8314 -1.4430 -3.3270 -1.2054 2.6175 -1.7451 -18.9897 11.3165 4.8636 5.7782 4.9942 -0.8296 -0.8017 -5.3077 10.8891 1.2662 -2.8125 38.6590 0.0000 0.0000 19.9274 8.1151 9.2234 3.8645 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.6646 2.4484 -12.6063 16.3039 35.3309 -73.9457 -0.0000 0.0000 8.3977 2.7845 -1.7098 -2.8798 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -33.0133 2.6230 -10.2709 15.2894 0.0000 0.0000 7.2409 -4.4088 9.0318 -2.5300 0.0000 -0.0000 12.4090 -7.8387 -3.6887 22.5574 0.0000 0.0000 -21.7114 -1.1223 -36.8028 -19.5904 0.0000 -0.0000 - -2.7971 -45.2638 23.1853 3.0014 2.3069 17.3120 -1.3121 -1.4159 -0.8556 -1.4936 0.0311 -0.4030 15.0104 -1.4288 -4.8525 -1.6391 2.7115 -2.2034 -20.6643 10.3913 4.7883 5.5096 3.8623 -0.4891 -1.4452 -6.4710 11.5148 2.7150 -2.8652 39.1096 0.0000 0.0000 17.8972 6.6165 5.8866 3.1270 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 2.4519 4.4606 -13.5022 13.5139 32.1557 -68.3563 -0.0000 0.0000 8.4322 3.8333 -0.3495 -2.5252 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -34.7984 1.9981 -2.4921 20.8028 0.0000 0.0000 7.0151 -3.0787 5.9406 -1.9194 0.0000 -0.0000 10.5825 -8.5114 -1.7826 26.5281 0.0000 0.0000 -21.6290 -0.1062 -41.8873 -22.0942 0.0000 -0.0000 - -2.6698 -46.3958 23.0188 3.0792 1.4810 18.4987 -1.0410 -2.2133 -0.3540 -1.5914 -0.6390 -0.5617 15.1827 -1.8640 -5.3807 -2.2462 2.7176 -2.4201 -22.6156 9.1346 5.6057 4.2380 2.8709 -0.0734 -1.7107 -6.9651 13.4511 3.5715 -2.9932 39.2880 0.0000 0.0000 15.6738 5.9771 2.9552 2.0889 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 3.0962 6.5419 -13.4052 9.4199 27.7380 -62.7276 -0.0000 0.0000 8.4367 4.6866 -0.9238 -1.9534 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -36.2870 1.0656 2.7765 29.4206 0.0000 0.0000 3.2272 -1.7064 3.6370 -0.2355 0.0000 -0.0000 7.7337 -9.8240 1.3829 34.9588 0.0000 0.0000 -12.6367 4.3573 -45.2391 -21.4899 0.0000 -0.0000 - -2.5685 -47.4717 23.1226 1.3980 0.8433 20.0470 0.5112 -1.9808 -0.4797 -0.9356 -1.2265 -0.7136 14.9067 -3.3312 -5.3887 -2.6780 1.8037 -2.1990 -23.0929 6.3332 5.5211 2.1137 1.2381 0.3186 -1.0485 -6.4115 14.8465 3.7701 -4.3286 39.6661 0.0000 0.0000 13.8568 5.7059 1.7340 1.4796 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 4.1531 6.4081 -12.7489 6.0534 24.1144 -59.1999 -0.0000 0.0000 7.8156 4.4063 -1.8820 -1.5531 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -34.4392 1.2274 2.1366 35.1947 0.0000 0.0000 -2.3014 -1.5966 3.0516 0.5911 0.0000 0.0000 3.8991 -12.4168 2.9287 44.8879 0.0000 0.0000 4.4865 13.3016 -43.9219 -15.3743 0.0000 -0.0000 - -2.5073 -48.4634 23.4635 -0.2851 0.5258 22.9918 1.7350 -1.5007 -0.6912 -0.3964 -0.9096 -0.6631 14.2193 -4.7141 -5.2290 -2.7550 -0.0742 -1.6080 -21.7542 1.4958 2.5474 0.6574 -1.6909 0.3125 -0.0036 -6.0726 13.5996 4.1892 -6.8224 40.8647 0.0000 0.0000 12.3661 4.3000 0.9091 1.4499 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.7464 4.3039 -12.6445 4.3052 22.3559 -57.1589 -0.0000 0.0000 6.5882 3.4466 -0.5618 -1.8135 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -29.2709 1.7917 -0.7811 34.7281 0.0000 0.0000 -5.7063 -2.0120 2.5191 0.1830 0.0000 0.0000 -0.7727 -15.7498 3.2058 52.5631 0.0000 0.0000 13.1034 21.8111 -38.5926 -10.1548 0.0000 -0.0000 - -2.4145 -49.3675 23.9002 -0.7308 -0.0258 25.5854 1.9654 -1.0015 -0.6022 -0.2663 -0.1434 -0.4522 13.1611 -5.0399 -4.3875 -2.6455 -2.0835 -0.6530 -20.2017 -4.2616 -2.3197 0.7433 -5.2528 -0.4741 0.4519 -6.0768 10.6112 5.2399 -9.9678 42.6383 0.0000 0.0000 10.7187 2.2482 -1.1483 1.4496 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 1.1737 2.4389 -14.1744 2.7663 21.4159 -54.1398 -0.0000 0.0000 5.3903 3.0460 2.4396 -2.0201 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -23.2049 1.9922 -2.1536 29.8156 0.0000 0.0000 -5.8434 -1.4009 1.9073 -0.5376 0.0000 -0.0000 -5.8624 -17.9284 4.2292 56.6192 0.0000 0.0000 7.9901 22.4456 -30.8428 -10.1914 0.0000 -0.0000 - -2.2756 -50.1693 24.2578 -0.3618 -0.2721 25.8338 1.6679 -1.0313 -0.3601 -0.2766 0.3270 -0.2309 11.9520 -4.7558 -2.5984 -2.5048 -3.5641 0.5359 -19.4904 -9.0931 -6.2923 1.6784 -8.0849 -1.7758 0.2617 -5.2549 8.6675 6.0943 -13.0379 44.3490 0.0000 0.0000 9.2385 1.3532 -3.5685 1.1263 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -2.0195 1.6611 -16.3840 0.6463 18.7183 -49.4974 -0.0000 0.0000 4.4385 3.5804 3.8384 -1.5623 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -18.5497 1.5406 -1.6578 24.5578 0.0000 0.0000 -5.0468 0.0933 1.7165 -0.8272 0.0000 -0.0000 -10.2163 -19.4670 6.7108 56.8022 0.0000 0.0000 -0.0186 17.5108 -26.2075 -11.0925 0.0000 -0.0000 - -2.1227 -50.8964 24.4559 -0.4250 -0.3921 24.1574 1.8731 -1.4411 -0.1372 -0.0847 0.3494 -0.0896 11.0937 -4.5535 -0.3486 -2.4462 -4.3978 1.6106 -19.3006 -11.9947 -8.3376 2.3743 -9.7364 -3.0504 0.3141 -4.0737 8.3957 5.7859 -14.5087 45.9626 0.0000 0.0000 9.0383 1.3969 -4.1901 0.8039 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -4.3861 0.8673 -17.7736 -0.8729 12.9584 -44.6327 -0.0000 0.0000 3.2141 4.0322 2.6158 -1.2568 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -15.1474 0.9170 -1.5281 21.5566 0.0000 0.0000 -5.6192 1.7342 2.9131 -0.7487 0.0000 -0.0000 -13.3938 -20.9029 8.1794 54.2973 0.0000 0.0000 -2.9550 16.0131 -25.5270 -10.2717 0.0000 -0.0000 - -1.9736 -51.6049 24.5158 -1.1956 -0.8047 22.3892 2.6855 -1.7289 -0.0081 0.3071 0.2170 -0.0134 10.7399 -4.4891 1.6390 -2.5296 -4.7330 2.3542 -19.0706 -13.1836 -9.3839 2.3909 -10.8386 -4.2097 1.2768 -3.9617 8.3646 4.0719 -13.8765 47.7007 0.0000 0.0000 10.6258 0.4755 -1.8644 0.6464 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.9345 -0.5718 -18.1828 -1.9890 6.6167 -40.2941 -0.0000 0.0000 1.6227 3.4784 0.2050 -1.5630 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -12.0433 0.3887 -1.5607 20.6016 0.0000 0.0000 -7.2326 3.2576 4.1773 -0.6290 0.0000 -0.0000 -15.8478 -21.6517 7.0326 49.9013 0.0000 0.0000 -1.9136 15.9004 -24.8758 -9.4824 0.0000 -0.0000 - -1.8180 -52.3082 24.5241 -1.9271 -1.2209 21.1850 3.1611 -1.8521 0.0644 0.5297 0.0435 0.0304 10.7672 -4.4939 3.0571 -2.5638 -4.7409 2.8116 -18.5656 -13.4283 -10.1006 2.1287 -11.9017 -5.2664 2.6548 -4.9370 8.0441 1.5230 -13.1845 49.3574 0.0000 0.0000 13.4572 -1.6249 2.4522 0.7641 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -7.4255 -2.2252 -18.0248 -4.2445 3.0940 -36.9076 -0.0000 0.0000 0.3557 2.0828 -1.8029 -2.0961 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -9.3381 -0.1625 -0.3100 20.4361 0.0000 0.0000 -8.6728 4.4696 3.9750 -0.6344 0.0000 -0.0000 -18.1351 -21.4019 4.3159 43.5973 0.0000 0.0000 0.5595 10.3111 -21.9644 -9.6546 0.0000 -0.0000 - -1.6428 -52.9951 24.5577 -2.1733 -1.3327 20.2019 2.7880 -1.8711 0.1185 0.4253 -0.1186 0.0480 10.9432 -4.6971 3.9045 -2.3406 -4.7095 3.1347 -17.6596 -13.4192 -10.3314 2.1157 -12.7551 -5.9731 3.2924 -5.6269 7.8347 -0.4535 -14.8313 50.7173 0.0000 0.0000 16.5097 -2.8926 5.9985 1.2937 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -9.0664 -3.8374 -17.5638 -6.9199 2.5821 -34.7562 -0.0000 -0.0000 -0.0838 0.8327 -2.3431 -2.3395 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.0793 -0.5347 0.9222 19.9834 0.0000 0.0000 -9.8120 4.8652 3.7132 -0.7535 0.0000 -0.0000 -20.3696 -20.6745 1.8949 35.6751 0.0000 0.0000 5.8236 0.8731 -17.6985 -10.0448 0.0000 -0.0000 - -1.4365 -53.6855 24.6210 -2.4145 -1.5679 19.4904 2.1954 -1.6522 0.1459 0.2629 -0.0527 0.0736 10.9153 -5.0556 4.2153 -1.9615 -4.8526 3.4048 -16.3923 -13.5212 -10.1844 2.3537 -13.1803 -6.3702 2.8860 -5.2982 7.6371 -0.6869 -18.3582 52.0680 0.0000 0.0000 18.5479 -2.3069 6.8341 1.7601 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.4482 -5.4137 -17.2025 -7.7014 2.6460 -33.5886 -0.0000 0.0000 0.0194 0.6958 -1.4919 -2.3439 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.2760 -0.2350 0.1984 18.6375 0.0000 0.0000 -10.8586 4.5057 5.1773 -0.9332 0.0000 -0.0000 -22.3065 -19.7991 1.2123 27.6666 0.0000 0.0000 12.5121 -4.0893 -12.9779 -10.2612 0.0000 -0.0000 - -1.1917 -54.3870 24.6764 -3.1626 -2.3081 19.1413 2.1045 -1.3227 0.1638 0.3255 0.1959 0.1091 10.5720 -5.1565 4.3536 -1.6811 -5.0013 3.5995 -15.1230 -13.7211 -10.1853 2.5431 -13.4262 -6.8656 2.2705 -4.3871 7.1705 0.6186 -21.1326 53.9664 0.0000 0.0000 18.7024 -1.1941 5.8038 1.7548 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -11.3760 -6.7168 -17.2033 -6.5297 1.9568 -33.3701 -0.0000 0.0000 0.1553 1.2357 -0.1731 -2.5203 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.6282 0.6153 -1.6831 17.0617 0.0000 0.0000 -11.5559 4.0463 7.6288 -1.1676 0.0000 -0.0000 -23.9834 -18.5432 2.8797 21.6447 0.0000 0.0000 14.6737 -2.0099 -9.1952 -10.2469 0.0000 -0.0000 - -0.9163 -55.0636 24.7122 -4.3596 -3.0641 18.5878 2.4402 -1.4354 0.2065 0.5427 0.2651 0.1160 10.2934 -4.7778 4.7880 -1.5356 -4.8742 3.7144 -14.1761 -13.7525 -10.4099 2.5681 -13.7993 -7.5498 2.0673 -3.1631 6.7394 2.4812 -21.9850 56.2344 0.0000 0.0000 17.4695 -1.0561 4.8748 1.4847 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -11.9279 -7.4313 -17.2630 -5.8641 1.5296 -33.8991 -0.0000 0.0000 0.1804 1.2945 0.4828 -2.8663 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 2.7988 1.2794 -2.3809 16.5406 0.0000 0.0000 -11.8844 3.8494 9.1178 -1.5276 0.0000 -0.0000 -25.5274 -17.0858 5.2294 17.6223 0.0000 0.0000 11.9938 2.5034 -8.4463 -9.7877 0.0000 -0.0000 - -0.6310 -55.6889 24.7521 -5.5461 -3.6444 17.4784 2.8007 -1.7568 0.2389 0.7075 0.1546 0.1231 10.3724 -4.2317 5.4477 -1.3975 -4.5528 3.7485 -13.5535 -13.6103 -10.4987 2.4971 -14.2091 -8.1285 2.0691 -1.8417 6.7473 4.1743 -21.7911 58.1407 0.0000 0.0000 16.2240 -1.6955 4.6895 1.3010 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -12.2292 -7.6307 -17.0575 -6.6403 2.3069 -34.6809 -0.0000 0.0000 0.1725 0.5795 0.2850 -3.1869 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 5.3164 1.7489 -1.3463 17.2133 0.0000 0.0000 -12.1362 3.7292 9.0801 -2.1695 0.0000 -0.0000 -27.0697 -15.4548 5.2863 14.1867 0.0000 0.0000 10.4823 5.2058 -10.2818 -9.6143 0.0000 -0.0000 - -0.3410 -56.3015 24.7941 -6.4971 -4.4837 16.1253 3.0617 -1.6325 0.3139 0.8440 0.1596 0.1347 10.5642 -3.7075 5.9075 -1.2266 -4.3194 3.7461 -13.0694 -13.5299 -10.4315 2.4233 -14.5124 -8.4785 1.9342 -0.7006 6.8474 5.4933 -21.9528 59.5125 0.0000 0.0000 15.7811 -1.9979 4.7200 1.2885 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -12.3491 -7.7825 -16.8151 -7.2663 3.5783 -35.3479 -0.0000 0.0000 0.1358 0.1690 0.0343 -3.4267 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 7.5968 2.4559 0.4603 17.9778 0.0000 0.0000 -12.4872 3.8219 8.0252 -3.0546 0.0000 -0.0000 -28.4708 -13.3623 2.5333 11.0326 0.0000 0.0000 11.3590 5.0578 -12.3507 -9.8295 0.0000 -0.0000 - -0.0456 -56.9390 24.8018 -7.3828 -5.4794 14.7632 3.3221 -1.2522 0.4395 1.0030 0.3167 0.1622 10.6752 -3.1743 6.1261 -1.0568 -4.1386 3.7173 -12.6842 -13.5217 -10.4203 2.3366 -14.8152 -8.7154 1.7419 0.3258 6.6494 6.3558 -22.8474 60.6408 0.0000 0.0000 15.9585 -1.7907 4.5818 1.2898 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -12.3275 -8.0533 -16.7655 -6.7091 4.2944 -35.9666 -0.0000 0.0000 0.0970 0.7800 0.2996 -3.4801 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 10.2866 3.2055 2.6410 18.1373 0.0000 0.0000 -12.9258 4.5604 6.2797 -3.8075 0.0000 -0.0000 -29.6378 -11.1455 -0.7499 8.9511 0.0000 0.0000 11.6088 4.2413 -13.3694 -9.9559 0.0000 -0.0000 - 0.2506 -57.5719 24.7608 -8.2557 -6.1558 13.1749 3.5887 -1.0431 0.5319 1.1187 0.3032 0.1690 10.9403 -2.5737 6.3569 -0.9100 -3.7968 3.6321 -12.4998 -13.4218 -10.3604 2.1656 -15.2083 -8.8179 1.6364 1.2919 6.4714 6.6794 -23.5890 61.6261 0.0000 0.0000 16.2480 -1.6730 4.5032 1.2293 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -12.1979 -8.0190 -16.7023 -5.8249 4.3953 -36.5281 -0.0000 0.0000 0.0677 1.6628 0.6111 -3.4522 -0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 12.9386 3.8076 4.9593 18.1477 0.0000 0.0000 -13.5931 5.7001 4.5706 -4.1855 0.0000 -0.0000 -30.5703 -9.3799 -2.7362 7.8404 0.0000 0.0000 10.8157 5.1769 -13.3164 -10.4246 0.0000 -0.0000 - 0.5387 -58.1835 24.6922 -8.9501 -6.3855 11.3872 3.7414 -0.9880 0.5678 1.1723 0.1401 0.1554 11.3941 -2.0252 6.4907 -0.8157 -3.3709 3.4529 -12.4230 -13.3246 -10.0470 2.0307 -15.5892 -8.6597 1.4824 1.8912 6.6570 6.6992 -23.5952 62.3604 0.0000 0.0000 16.4784 -1.7733 4.7103 1.2290 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -11.9599 -7.4647 -16.4525 -5.4936 4.5671 -36.8917 -0.0000 0.0000 0.0215 1.9582 0.4226 -3.5131 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 15.0070 4.4220 6.6481 18.4533 0.0000 0.0000 -14.5811 6.6022 3.9298 -4.4249 0.0000 -0.0000 -31.3008 -8.1734 -3.4663 7.0617 0.0000 0.0000 10.6633 7.0919 -12.7903 -11.4841 0.0000 -0.0000 - 0.8159 -58.8118 24.6189 -9.1707 -6.4037 9.8549 3.6077 -0.7715 0.6110 1.1375 0.1188 0.1442 11.7062 -1.6835 6.2472 -0.7820 -3.1159 3.2144 -12.3192 -13.4765 -9.6474 2.2147 -15.8438 -8.2910 1.1710 2.0249 6.9188 6.7963 -23.6404 62.8101 0.0000 0.0000 16.8095 -1.7637 5.0341 1.3271 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -11.5798 -6.6946 -16.1340 -5.3878 5.2534 -37.2832 -0.0000 0.0000 0.0016 1.9929 0.0916 -3.5957 -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 16.3718 5.1212 7.4023 19.0445 0.0000 0.0000 -15.4538 7.1241 4.3344 -4.8889 0.0000 -0.0000 -31.9000 -7.0592 -3.4237 6.6358 0.0000 0.0000 10.9422 7.7750 -12.3246 -12.2443 0.0000 -0.0000 - 1.0835 -59.4850 24.5370 -8.9037 -6.1121 8.7188 3.1718 -0.4841 0.6195 0.9333 0.1456 0.1294 11.7948 -1.4957 5.7503 -0.7355 -2.9870 2.9812 -12.3037 -13.8894 -9.4651 2.7531 -15.9989 -7.8766 0.8879 2.0691 6.9437 6.9588 -24.4201 63.0249 0.0000 0.0000 17.3003 -1.6808 5.2069 1.4105 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -11.0946 -6.0002 -15.9555 -4.8556 6.2445 -37.8877 -0.0000 0.0000 0.1175 2.2392 0.1798 -3.6580 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 17.2014 5.4847 7.9513 19.8177 0.0000 0.0000 -15.7147 7.5021 4.7475 -5.6721 0.0000 -0.0000 -32.1464 -5.9766 -3.0888 6.5583 0.0000 0.0000 10.4297 7.2562 -11.9935 -12.4248 0.0000 -0.0000 - 1.3471 -60.1993 24.4311 -8.4627 -5.3531 7.6980 2.5749 -0.3890 0.5141 0.5662 0.0381 0.1060 11.9848 -1.3677 5.2105 -0.6477 -2.7641 2.7335 -12.5087 -14.3753 -9.4675 3.3604 -16.1820 -7.4938 0.8002 1.9970 6.9333 7.0263 -24.8813 63.1485 0.0000 0.0000 17.6200 -1.8859 5.1477 1.4385 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.5432 -5.1838 -16.0192 -3.9331 6.9566 -38.3609 -0.0000 0.0000 0.3502 2.2081 0.4919 -3.9482 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 17.9539 5.3736 8.7277 20.4802 0.0000 0.0000 -15.5703 7.5432 4.7893 -6.8483 0.0000 -0.0000 -31.6455 -5.2122 -2.7984 6.3494 0.0000 0.0000 9.7831 7.2610 -11.5619 -13.1494 0.0000 -0.0000 - 1.6264 -60.9770 24.3023 -7.9548 -4.5822 6.7790 1.8296 -0.2301 0.4014 0.1608 -0.0268 0.0634 12.3013 -1.2924 4.4328 -0.6036 -2.5383 2.3767 -12.7505 -14.7743 -9.4108 3.9722 -16.4735 -7.1369 0.8347 1.3288 7.0505 7.2501 -24.0147 63.4404 0.0000 0.0000 17.4383 -2.3796 4.9997 1.4271 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.7704 -3.9653 -16.0528 -3.2387 7.6219 -38.5622 -0.0000 0.0000 0.5832 1.3953 0.2289 -4.4755 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 19.0959 5.4940 8.9444 20.5482 0.0000 0.0000 -15.4959 6.9501 5.3235 -8.4417 0.0000 -0.0000 -30.3703 -4.4013 -1.7971 6.2128 0.0000 0.0000 9.8154 7.9901 -10.9570 -14.3797 0.0000 -0.0000 - 1.9278 -61.8523 24.1424 -7.0320 -3.7043 5.9576 0.7273 -0.1002 0.3654 -0.3221 0.1105 0.0343 12.3767 -1.4770 3.3657 -0.6666 -2.4665 1.9708 -12.8842 -14.8490 -9.1630 4.8932 -16.7467 -6.7993 0.8354 0.4423 7.0762 7.8963 -23.4998 63.8679 0.0000 0.0000 17.1664 -2.7313 5.0447 1.2814 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -8.5168 -2.3141 -15.4648 -3.0902 9.2491 -38.9213 -0.0000 0.0000 0.5533 0.1456 -1.0114 -4.8590 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 20.1580 5.8295 8.3557 20.2252 0.0000 0.0000 -15.3350 6.1148 6.9191 -9.9028 0.0000 -0.0000 -28.6644 -3.6252 0.6750 7.0292 0.0000 0.0000 9.2501 8.3443 -10.6354 -14.1254 0.0000 -0.0000 - 2.2422 -62.8185 23.9190 -5.6839 -2.0732 4.3726 -0.7042 -0.3199 0.2104 -1.0233 -0.1380 -0.0292 12.3745 -1.9319 2.7371 -0.8186 -2.3028 1.7172 -13.2773 -14.5679 -8.7348 6.1044 -16.6983 -6.4030 0.8227 -0.2910 7.0358 8.4093 -24.9036 63.7516 0.0000 0.0000 17.8643 -2.6798 5.4271 1.0643 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -6.8488 0.1059 -13.9765 -2.5421 11.2328 -39.4294 -0.0000 -0.0000 -0.2310 -1.0096 -2.7839 -5.0751 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 20.5114 5.8846 7.9804 20.3027 0.0000 0.0000 -15.0147 5.5464 9.3275 -10.5652 0.0000 -0.0000 -26.0232 -3.8287 3.3533 8.0366 0.0000 0.0000 7.7439 8.1248 -10.6754 -12.1002 0.0000 -0.0000 - 2.6009 -63.8533 23.6485 -4.4493 -1.1371 1.3709 -2.1956 0.5993 -0.1474 -1.9938 -0.9359 -0.1466 13.3213 -2.5730 2.9185 -1.1119 -1.8465 1.6446 -14.4342 -14.6763 -8.2522 6.9707 -16.2653 -5.9662 0.8949 -2.7246 7.3323 8.0295 -25.3268 62.3176 0.0000 0.0000 19.9493 -2.5359 5.8008 1.1689 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.2748 4.5523 -12.0760 -0.1476 10.4776 -39.4489 -0.0000 -0.0000 -1.7513 -2.2317 -4.0594 -5.4112 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 20.6761 7.4654 7.4363 21.0115 0.0000 0.0000 -15.1981 4.6899 12.7752 -11.0521 0.0000 -0.0000 -21.6376 -3.5995 3.9436 6.9896 0.0000 0.0000 7.7639 7.6627 -9.5415 -10.4409 0.0000 -0.0000 - 3.0716 -65.0163 23.4467 -4.6248 -4.4854 -1.6684 -3.3513 5.5612 0.0032 -3.1192 -0.8142 -0.1328 15.7442 -3.3891 2.6968 -1.6624 -1.6177 1.4348 -15.9978 -16.2081 -8.1536 7.2172 -15.8363 -5.7991 0.8923 -8.3573 7.9550 7.6122 -22.0264 59.8056 0.0000 0.0000 22.2853 -2.7626 5.9984 1.6677 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -4.4479 11.0907 -10.5972 4.0330 6.7299 -38.4894 -0.0000 -0.0000 -2.8245 -3.4763 -4.3521 -5.4894 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 22.4489 13.9823 3.9160 22.1502 0.0000 0.0000 -15.1720 2.4815 17.8923 -13.2869 0.0000 -0.0000 -14.8755 1.2152 0.9763 2.1995 0.0000 0.0000 10.7196 7.1453 -5.2773 -9.8886 0.0000 -0.0000 - 3.6015 -66.2708 23.4074 -5.8493 -10.7947 -2.5771 -4.3216 11.3686 1.0828 -3.8833 2.0919 0.4153 17.7622 -3.3102 0.8804 -2.2639 -2.3743 0.8075 -16.9176 -19.1097 -9.0773 7.3521 -15.7341 -6.2783 0.6424 -14.1496 7.9426 9.0142 -18.9156 57.5725 0.0000 0.0000 22.7850 -3.3140 6.4722 1.8558 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -4.3594 16.3626 -9.9735 8.0955 5.9148 -37.6337 -0.0000 -0.0000 -1.9572 -3.6937 -3.4853 -4.5725 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 24.7219 22.6210 -1.7457 25.6665 0.0000 0.0000 -11.6915 0.0551 22.7038 -16.5553 0.0000 -0.0000 -7.7423 8.9250 -6.1382 -4.3656 0.0000 -0.0000 13.6804 7.2389 1.4207 -9.3654 0.0000 -0.0000 - 4.0897 -67.3386 23.5501 -6.1599 -14.6141 -1.0404 -4.5985 12.1126 1.4577 -3.7875 4.8860 1.0443 17.7633 0.4380 -1.4669 -2.5109 -3.1963 -0.0688 -17.7204 -22.0376 -11.2240 7.5930 -15.5405 -7.2897 0.5850 -16.6633 6.8657 11.8974 -19.4966 57.1314 0.0000 0.0000 19.9863 -3.9179 6.1902 0.9090 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -4.2043 18.0703 -10.3353 10.0411 11.0891 -38.4754 -0.0000 0.0000 1.0436 -2.0145 -0.7697 -3.3842 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 21.9934 26.9471 -2.8885 35.1482 0.0000 0.0000 -3.1514 -1.2840 23.1834 -15.1555 0.0000 -0.0000 -3.7757 13.6532 -14.5514 -6.7287 0.0000 -0.0000 12.1885 7.4379 7.8234 -8.7891 0.0000 -0.0000 - 4.4624 -68.0785 23.7450 -6.2160 -14.5764 -0.5197 -3.6602 9.6634 1.0452 -2.9971 3.8188 0.8050 16.3961 5.7028 -1.7762 -2.4464 -2.2426 -0.6374 -18.7384 -22.0587 -13.2125 7.5207 -14.8204 -8.2689 1.1834 -14.7055 6.2553 14.8558 -21.7578 58.6237 0.0000 0.0000 15.2614 -4.3383 2.1953 -0.8492 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -3.0896 17.4013 -11.6662 11.3500 17.8778 -40.6122 -0.0000 0.0000 3.9747 0.7252 3.9084 -3.5841 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 12.5736 26.4103 2.9506 49.3620 0.0000 0.0000 6.3896 -4.4582 19.0105 -8.5644 0.0000 -0.0000 -2.3911 14.8681 -15.6410 -4.7316 0.0000 -0.0000 8.5165 5.9878 8.3225 -8.6004 0.0000 -0.0000 - 4.6317 -68.6453 23.9023 -7.0758 -12.6046 -2.7027 -2.1456 7.8876 0.7514 -2.2113 1.5544 0.3489 15.5144 7.5576 -0.1767 -2.3894 -0.4865 -0.6123 -19.1537 -18.4397 -13.2181 6.6514 -13.2999 -8.8586 1.8681 -11.3328 6.8783 16.8771 -20.9021 60.2369 0.0000 0.0000 12.2905 -3.2259 -5.6440 -1.8091 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -1.3008 16.5783 -12.7906 15.1334 20.3858 -44.4028 -0.0000 0.0000 4.7338 2.3462 8.7136 -5.5921 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 1.6852 22.3178 10.6327 62.8132 0.0000 0.0000 8.5773 -7.7878 12.9488 -5.2986 0.0000 -0.0000 -1.4485 13.9360 -10.3629 -1.8612 0.0000 -0.0000 5.9872 3.1991 4.6696 -8.4714 0.0000 -0.0000 - 4.6311 -69.2264 24.0502 -8.4050 -10.6721 -5.4174 -0.9496 7.9387 0.7313 -1.7024 0.6761 0.1796 15.8049 6.5583 0.8586 -2.3656 0.1255 -0.3987 -18.7714 -13.7774 -11.4152 5.3480 -10.9676 -8.9354 2.2193 -10.8270 7.7156 16.8522 -17.1218 60.3637 0.0000 0.0000 12.6426 -0.1429 -12.4096 -0.8884 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.2168 16.2532 -12.7210 19.7385 18.8001 -48.8276 -0.0000 0.0000 4.0278 1.7315 10.4685 -7.8772 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.4713 17.0558 14.7605 71.7094 0.0000 0.0000 2.9419 -6.2479 6.6001 -4.6532 0.0000 -0.0000 0.4948 12.4729 -7.2957 -0.4808 0.0000 -0.0000 4.4374 0.6220 3.7806 -8.1076 0.0000 -0.0000 - 4.6062 -69.7990 24.1687 -9.0014 -9.5066 -6.5560 -0.7511 8.9527 0.7916 -1.6037 1.4667 0.2406 16.6101 3.9666 0.3101 -2.2344 -0.2031 -0.4610 -18.0083 -9.3013 -8.7121 4.2898 -8.5217 -8.4021 1.9963 -12.2107 8.3491 14.7407 -16.5794 59.1745 0.0000 0.0000 15.1302 1.4026 -14.1251 -0.2419 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.8401 16.1752 -11.8569 21.5552 17.9107 -52.1408 -0.0000 0.0000 3.5987 -0.0630 9.2131 -8.4857 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -12.7498 12.9347 14.7286 74.9822 0.0000 0.0000 -2.6017 -1.9136 1.4042 -4.6779 0.0000 -0.0000 2.6131 11.5401 -8.1834 -0.4408 0.0000 -0.0000 2.9568 -0.7708 5.7830 -7.6791 0.0000 -0.0000 - 4.6469 -70.3669 24.2376 -9.8000 -8.5143 -6.8882 -0.5569 9.2556 0.8504 -1.3787 2.2731 0.2792 17.2842 1.7398 -0.7452 -1.9875 -0.1549 -0.7374 -17.2824 -4.9264 -5.9583 3.6773 -6.3472 -7.4336 1.3180 -12.8418 8.8328 11.7352 -20.6771 57.3741 0.0000 0.0000 18.3287 -0.6491 -11.2314 -0.5731 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.8098 15.6100 -11.2273 20.9048 18.7315 -54.4224 -0.0000 0.0000 3.4460 -1.1654 6.5904 -7.9652 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -17.4498 10.0946 12.9716 73.5436 0.0000 0.0000 -3.8827 -0.2792 -2.9105 -4.6842 0.0000 -0.0000 5.6895 10.8516 -10.5462 -1.4459 0.0000 -0.0000 1.7496 -1.6585 8.3061 -7.3384 0.0000 -0.0000 - 4.7274 -70.9937 24.2840 -11.5599 -7.2061 -7.8634 0.1976 8.2841 0.9547 -0.9190 1.9707 0.1475 17.9945 1.3197 -1.0994 -1.7719 0.7292 -0.9911 -16.7920 -0.8315 -3.6188 3.4688 -4.2361 -6.3451 0.9482 -13.2601 9.1464 8.8584 -23.7329 55.5821 0.0000 0.0000 21.5374 -2.4970 -6.5194 -0.0756 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.7023 14.6219 -10.9664 19.7591 18.1800 -56.2471 -0.0000 0.0000 2.5462 -1.1533 3.3840 -7.7677 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -19.9246 7.9323 10.9960 68.0412 0.0000 0.0000 -3.7136 -1.1953 -7.0228 -3.9605 0.0000 -0.0000 9.9624 10.1213 -12.0554 -2.9080 0.0000 -0.0000 1.1466 -2.8404 10.2020 -7.0629 0.0000 -0.0000 - 4.8209 -71.6121 24.3051 -12.5092 -6.4603 -9.5043 0.3132 7.0995 1.1380 -0.8382 1.4378 0.0539 18.7137 2.0002 -0.8168 -1.5923 1.7740 -1.1512 -16.5208 2.6847 -1.6314 3.6642 -2.0053 -5.3198 0.9934 -14.3509 9.2750 6.6639 -23.4452 54.2573 0.0000 0.0000 24.6878 -0.6070 -1.8064 0.5878 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.6512 14.0728 -10.5371 18.4146 15.7814 -57.6571 -0.0000 0.0000 0.7412 -1.0817 -0.0538 -8.0017 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -21.9957 6.9123 8.9676 59.1784 0.0000 0.0000 -3.9774 -1.6378 -9.2491 -2.4314 0.0000 -0.0000 12.7728 10.1621 -12.1920 -3.6827 0.0000 -0.0000 0.4142 -4.1523 11.5074 -6.8011 0.0000 -0.0000 - 4.9385 -72.1037 24.2670 -11.4436 -7.1545 -11.2703 -0.8209 6.6364 1.3388 -1.4199 1.3771 0.1213 18.9770 2.9975 -0.3121 -1.3705 2.4116 -1.2279 -16.4056 5.4901 0.0425 4.0875 0.0754 -4.3674 0.8988 -15.2952 9.2787 4.9576 -22.8570 53.0395 0.0000 0.0000 27.5313 3.0833 1.4226 0.6074 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 0.4582 14.1072 -9.9152 16.2494 14.1092 -58.5453 -0.0000 -0.0000 -1.2683 -1.6286 -2.7082 -8.1087 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -25.6249 7.3482 6.8131 48.6154 0.0000 0.0000 -2.8760 -1.3292 -7.1380 -1.2931 0.0000 -0.0000 12.4995 11.5935 -11.0388 -3.2632 0.0000 -0.0000 -1.0424 -5.2000 11.9081 -6.5407 0.0000 -0.0000 - 5.0380 -72.5246 24.1948 -9.4599 -8.4029 -12.9606 -2.3194 6.6095 1.5523 -2.2176 1.4474 0.2568 18.7388 4.0587 0.3854 -1.1465 2.7007 -1.2015 -16.3080 7.5826 1.3017 4.4396 1.5747 -3.4929 0.4625 -15.4636 9.1817 3.4448 -23.6426 51.7288 0.0000 0.0000 29.4810 4.6444 1.7272 0.4790 -0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0700 14.2001 -9.4988 13.7634 13.8444 -59.2154 -0.0000 -0.0000 -2.8304 -2.2371 -3.8828 -7.8289 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -29.6965 7.8754 4.4131 37.4446 0.0000 0.0000 0.4959 -1.2355 -0.4203 -1.0787 0.0000 -0.0000 10.7303 13.3895 -8.3169 -2.2087 0.0000 -0.0000 -2.8588 -5.8843 10.8325 -6.2834 0.0000 -0.0000 - 5.0213 -73.0695 24.1607 -8.4388 -8.4663 -14.3139 -3.1343 6.4778 1.7971 -2.6193 1.2514 0.3036 18.6391 4.6145 1.0966 -0.9900 2.7978 -1.0648 -16.0806 9.0723 2.2018 4.7449 2.4318 -2.6909 -0.0425 -15.4590 9.0268 2.2042 -24.3142 50.5189 0.0000 0.0000 30.4282 4.1507 -0.1338 0.2225 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.2830 14.1956 -9.3023 11.9221 13.4880 -60.0954 -0.0000 -0.0000 -3.8672 -1.6936 -4.3455 -7.1063 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -31.0006 6.9682 1.5815 25.5219 0.0000 0.0000 5.0804 -1.8754 8.8256 -1.3013 0.0000 -0.0000 10.5724 13.8165 -5.4904 -1.5549 0.0000 -0.0000 -4.6217 -6.1622 9.2606 -6.0945 0.0000 -0.0000 - 4.8694 -73.7638 24.1700 -8.8545 -6.9626 -14.6362 -3.1190 6.3975 1.9966 -2.5527 0.9435 0.2485 19.0577 3.9251 1.3580 -0.8401 2.6754 -0.9113 -15.7574 10.2161 2.9750 5.2582 2.9695 -1.9447 -0.3946 -15.4806 8.8907 1.2379 -24.3284 49.3887 0.0000 0.0000 31.0244 4.5359 -2.1806 -0.3325 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.4123 14.1677 -9.0630 10.7924 13.0445 -61.2260 -0.0000 -0.0000 -4.9480 0.3126 -4.9708 -6.1778 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -29.1454 4.7532 -0.5138 14.1597 0.0000 0.0000 9.2610 -3.6028 16.3412 -1.6274 0.0000 -0.0000 13.1501 12.5175 -4.3051 -1.6273 0.0000 -0.0000 -6.4567 -5.8901 8.2206 -6.0122 0.0000 -0.0000 - 4.6982 -74.4337 24.1644 -9.3155 -5.3213 -13.7895 -3.0320 6.5729 2.1071 -2.4127 0.8213 0.1814 19.6589 2.4371 1.1375 -0.6722 2.4338 -0.8224 -15.6408 11.1347 3.6575 5.9187 3.4414 -1.3321 -0.5718 -15.3140 8.9083 -0.0159 -24.7564 47.8010 0.0000 0.0000 31.8328 6.2995 -3.1899 -0.6107 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.2873 14.1999 -8.8890 9.7099 13.3865 -62.1177 -0.0000 -0.0000 -6.6697 2.6182 -5.6429 -5.5149 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -27.8871 2.8015 -0.3538 6.4785 0.0000 0.0000 11.0586 -5.6775 18.6404 -1.9992 0.0000 -0.0000 15.9188 10.7877 -3.8831 -1.4203 0.0000 -0.0000 -8.5479 -5.2783 7.0060 -5.8373 0.0000 -0.0000 - 4.5905 -75.0640 24.1201 -9.1830 -4.5234 -12.6082 -2.8887 6.8261 2.0898 -2.2942 0.7535 0.1313 19.7247 1.3917 0.9635 -0.5578 2.2973 -0.7671 -15.6660 11.7577 4.0880 6.4606 3.8644 -0.9928 -0.5485 -15.0280 9.0627 -1.9959 -26.3836 45.3077 0.0000 0.0000 32.9665 7.3880 -3.0153 -0.3893 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0773 14.3135 -8.9334 8.6170 14.1743 -62.6534 -0.0000 -0.0000 -8.8656 3.9734 -6.0666 -5.3631 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -29.1213 2.0657 -0.5138 3.8759 0.0000 0.0000 10.2941 -6.6050 17.7928 -2.1749 0.0000 -0.0000 17.2274 9.7787 -2.5912 -0.2229 0.0000 -0.0000 -10.8321 -4.8203 4.6842 -5.3703 0.0000 -0.0000 - 4.5199 -75.7697 24.0428 -8.6252 -4.4777 -11.5323 -2.6676 7.0901 1.9104 -2.0807 0.5949 0.0958 18.9441 1.1337 1.1518 -0.4913 2.2978 -0.6909 -15.4040 12.0361 4.2130 6.9126 4.2346 -0.9469 -0.3474 -14.6340 9.0220 -4.5038 -29.5173 41.8000 0.0000 0.0000 34.8312 7.6283 -1.7205 -0.2353 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.6173 14.3313 -8.7710 8.1363 14.9880 -63.5636 -0.0000 -0.0000 -10.8817 4.8622 -6.7105 -5.2543 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -31.9250 2.2332 -2.4815 5.2753 0.0000 0.0000 9.0425 -6.0683 15.9565 -2.1041 0.0000 -0.0000 17.5312 9.4709 -0.7970 1.6057 0.0000 0.0000 -13.3034 -4.6655 1.9195 -4.7194 0.0000 -0.0000 - 4.4380 -76.5100 23.9396 -7.7332 -4.5470 -10.1910 -2.7170 7.0818 1.6968 -2.0259 0.5343 0.0972 18.2191 1.1757 1.4340 -0.4504 2.2452 -0.6134 -15.0914 12.1566 4.1576 7.4298 4.5287 -1.1211 -0.1737 -14.2353 8.7047 -7.5162 -33.7894 36.7673 -0.0000 0.0000 38.2589 8.6657 0.6211 -0.3080 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.0267 14.3707 -8.1375 8.5476 16.1980 -65.0701 -0.0000 -0.0000 -12.7017 6.3463 -7.9196 -4.8665 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -34.4447 2.8044 -4.9364 7.7936 0.0000 0.0000 9.0300 -4.5642 13.0236 -2.0538 0.0000 -0.0000 17.5947 9.0182 0.8264 3.5037 0.0000 0.0000 -15.9246 -4.2264 -0.8098 -4.0997 0.0000 -0.0000 - 4.3365 -77.2126 23.8110 -6.4093 -4.5352 -8.3728 -3.2788 6.7768 1.7056 -2.3158 0.5880 0.1332 18.2580 1.2285 1.5724 -0.4448 2.1014 -0.5644 -15.1989 12.3407 3.9938 7.9618 4.7111 -1.4586 -0.0087 -14.3871 8.4919 -11.3657 -37.6122 29.7341 -0.0000 0.0000 43.0894 10.2856 3.1074 0.2388 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 1.1074 14.7159 -7.5562 9.7793 17.7608 -66.3433 -0.0000 -0.0000 -14.7977 7.7625 -9.2084 -4.7883 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -35.8601 3.5933 -6.7918 9.2376 0.0000 0.0000 9.9742 -3.0571 9.7496 -1.8260 0.0000 -0.0000 17.4817 8.1229 2.3948 5.2586 0.0000 0.0000 -18.3539 -3.1099 -3.7763 -3.5980 0.0000 -0.0000 - 4.2229 -78.0108 23.6642 -4.8742 -4.5150 -6.4758 -4.0418 6.3755 1.8356 -2.6772 0.4975 0.1576 18.3957 1.4000 1.8234 -0.4537 2.0296 -0.4909 -15.4767 12.6069 3.7797 8.4577 4.8506 -1.8442 0.4183 -15.3877 8.5071 -15.4540 -39.8438 21.7366 -0.0000 0.0000 47.7264 10.8424 5.1796 1.6161 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.1427 15.3154 -7.2539 11.9434 18.7116 -67.0069 -0.0000 -0.0000 -16.9690 7.9110 -10.1210 -5.3173 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -36.0103 4.5209 -7.9268 9.6610 0.0000 0.0000 10.3070 -2.7725 7.4799 -1.3531 0.0000 -0.0000 17.6235 7.1212 3.4028 6.3096 0.0000 0.0000 -20.1890 -1.8072 -6.3244 -3.5697 0.0000 -0.0000 - 4.0930 -78.9849 23.4974 -3.2615 -4.4595 -4.8695 -4.8585 5.9161 1.8561 -2.9992 0.2433 0.1615 18.0721 1.7539 2.2872 -0.4293 2.0389 -0.3653 -15.7095 12.8290 3.6992 8.9355 5.0137 -2.0836 0.9595 -16.7362 8.3942 -18.3590 -41.3263 14.4480 -0.0000 0.0001 50.8140 10.6458 7.5770 2.8121 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 1.4837 15.8618 -6.7283 14.9273 18.5876 -67.3512 -0.0000 -0.0000 -18.7118 7.6849 -10.5970 -5.6337 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -34.8103 5.2945 -9.4445 9.9942 0.0000 0.0000 9.9343 -3.3883 6.7244 -1.1449 0.0000 -0.0000 18.3108 6.1760 3.6967 6.4520 0.0000 0.0000 -21.5129 -0.5767 -8.0009 -4.4244 0.0000 -0.0000 - 3.9313 -79.9680 23.3012 -1.1905 -4.2753 -3.4415 -6.1871 5.1027 2.0026 -3.7764 0.3260 0.2347 18.3249 2.1455 2.4981 -0.4418 1.9494 -0.3280 -16.6111 12.9611 3.8995 9.1642 5.0888 -2.1119 1.3334 -18.2862 8.1034 -19.1675 -42.4752 9.0848 -0.0000 0.0001 51.7596 10.7658 10.4148 3.4534 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.0722 16.6284 -5.9999 17.9213 17.2060 -66.9257 -0.0000 -0.0000 -19.8841 8.0594 -10.3095 -5.6924 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -32.3905 5.3399 -12.6454 9.4861 0.0000 0.0000 11.0789 -2.1032 6.9808 -1.4023 0.0000 -0.0000 18.4876 4.9788 4.2800 7.0144 0.0000 0.0000 -22.6435 1.0637 -9.6275 -5.6841 0.0000 -0.0000 - 3.6777 -80.9226 23.1292 1.0751 -2.7701 -2.0421 -7.9162 2.9279 2.3652 -5.2163 0.5205 0.3586 20.1766 2.8047 2.2222 -0.6494 1.6862 -0.4151 -18.5991 13.1166 4.2086 8.8126 5.0122 -2.0374 1.8880 -21.1834 8.0937 -16.8446 -41.4432 7.4153 -0.0000 0.0001 49.3067 9.7613 12.3620 4.5925 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 2.3683 18.6319 -5.9745 20.7490 13.5674 -64.6562 -0.0000 -0.0000 -19.6569 7.3699 -9.1256 -6.6582 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -28.2279 2.8947 -17.5140 5.5770 0.0000 0.0000 14.7988 3.0314 7.2762 -1.2729 0.0000 -0.0000 17.7419 2.0131 6.4003 9.2768 0.0000 0.0000 -23.6070 3.5146 -12.2254 -6.8596 0.0000 -0.0000 - 3.2747 -82.0616 23.0477 2.1914 1.5679 -1.2071 -8.8695 -0.7903 2.2723 -6.4108 -0.8143 0.0786 22.0391 3.7179 2.2631 -1.0857 1.6048 -0.4476 -20.3394 13.4659 4.5271 8.1264 5.1691 -1.8387 2.9433 -25.1359 8.5322 -9.8545 -37.7630 10.6957 -0.0000 0.0000 41.3187 5.1035 12.8628 6.0053 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 1.7834 21.5913 -6.7207 25.2888 8.4407 -61.1384 -0.0000 -0.0000 -15.9107 4.1276 -7.2612 -8.0290 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -21.8348 -3.8640 -19.8476 -2.3054 0.0000 -0.0000 19.1855 8.6677 5.4705 -0.5037 0.0000 -0.0000 17.7795 -4.2579 10.3294 12.8351 0.0000 0.0000 -23.9971 6.3121 -15.5975 -8.9376 0.0000 -0.0000 - 2.8293 -83.2794 23.0702 2.7534 7.4306 -1.9599 -8.8572 -4.2476 1.5487 -6.7102 -3.9123 -0.7242 21.6632 3.5143 3.3558 -1.5827 2.1499 -0.2231 -20.9367 14.5101 5.4828 7.7199 5.7303 -1.2498 3.7004 -27.0464 9.0070 1.9010 -34.3769 17.9645 0.0000 0.0000 28.0697 -2.2680 9.2246 4.2944 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.2318 23.8624 -7.2593 32.1287 6.1144 -58.3406 -0.0000 -0.0000 -7.9028 1.3067 -3.4055 -7.3887 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -16.9463 -11.6330 -13.9811 -7.3737 0.0000 -0.0000 20.7658 9.8167 -0.9473 0.1295 0.0000 0.0000 17.9978 -12.0460 15.5758 17.9794 0.0000 0.0000 -22.8926 8.2894 -19.0333 -13.1911 0.0000 -0.0000 - 2.4186 -84.2909 23.1973 3.3522 12.6405 -3.6159 -8.0721 -6.2222 0.8654 -6.0311 -5.9716 -1.1990 19.5553 0.5150 4.4305 -1.9083 2.7388 0.1258 -21.4376 15.8863 7.5132 7.5544 6.1526 -0.2512 3.8444 -24.8260 9.8211 13.1134 -35.2688 25.5725 0.0000 0.0000 15.3317 -5.9277 -2.3015 -2.0388 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.6089 23.3226 -7.7119 37.3084 9.7116 -57.7563 -0.0000 0.0000 1.2531 3.7637 3.2818 -4.6214 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -15.4721 -17.6564 -9.0802 -5.4700 0.0000 -0.0000 17.1858 9.0032 -4.9870 0.4999 0.0000 0.0000 16.2651 -19.5845 19.1674 26.8136 0.0000 0.0000 -18.8365 8.6514 -21.6265 -18.0862 0.0000 -0.0000 - 2.0842 -85.2116 23.3566 2.0365 15.2393 -2.7077 -6.0010 -6.5704 0.4879 -4.3822 -5.0615 -0.9435 17.0736 -3.0115 3.4722 -1.9445 2.3509 0.2025 -21.9004 15.5606 9.3057 6.6585 5.9998 0.6058 4.7052 -19.8386 10.9308 20.9673 -40.4654 32.5618 0.0000 0.0000 8.3664 -2.2592 -14.4749 -5.1931 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.8904 17.8495 -8.8914 39.8052 15.3701 -60.1193 -0.0000 0.0000 7.0658 9.9604 11.1874 -2.7492 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -13.4626 -20.5124 -10.5784 -1.4914 0.0000 -0.0000 12.0612 9.0923 -4.5081 0.7042 0.0000 0.0000 11.6022 -25.0950 15.4123 39.6836 0.0000 0.0000 -10.6931 7.6383 -21.8315 -18.2056 0.0000 -0.0000 - 1.8291 -86.1891 23.5023 -0.8675 15.7036 1.7828 -3.2941 -6.1986 0.1878 -2.9261 -3.3366 -0.6370 15.5112 -4.3683 1.2561 -1.8541 1.4728 -0.0656 -21.6693 13.5192 9.0972 4.7518 5.0461 0.6611 6.2410 -15.6995 11.1654 27.4767 -44.1202 38.9805 0.0000 0.0000 7.5412 2.8256 -22.6528 -1.9284 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.7827 10.7344 -10.4978 41.5520 16.7680 -63.0285 -0.0000 0.0000 7.6465 13.8229 18.8013 -3.5994 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -9.5180 -21.0332 -13.6577 -0.2950 0.0000 -0.0000 8.8306 10.0866 -4.6780 0.7949 0.0000 0.0000 2.9901 -27.6001 4.9730 54.0631 0.0000 0.0000 -0.9396 6.6877 -20.4900 -11.8485 0.0000 -0.0000 - 1.6385 -87.0543 23.6079 -2.9757 15.7326 6.3360 -1.3174 -6.3009 0.0631 -2.1042 -2.6500 -0.4946 14.7431 -4.0798 0.3926 -1.8617 0.9969 -0.1795 -20.6227 11.5682 7.0940 3.0699 3.7507 -0.3264 7.6834 -15.1402 10.5407 28.8578 -43.9598 39.9994 0.0000 0.0000 9.0278 2.1827 -26.3187 1.8086 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 3.3130 8.3895 -11.4198 40.5298 13.9117 -62.9232 -0.0000 0.0000 5.6674 11.9389 21.7213 -4.7537 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.9277 -21.5737 -14.7762 -1.1213 0.0000 -0.0000 6.9343 10.8038 -6.5975 0.8674 0.0000 0.0000 -7.6752 -27.3752 -5.5257 66.7721 0.0000 0.0000 3.8961 5.7407 -19.0580 -7.9700 0.0000 -0.0000 - 1.5230 -87.6832 23.6546 -3.3494 16.2398 7.6484 -0.7698 -7.2431 0.1781 -1.8086 -3.2905 -0.4542 14.4965 -2.6895 1.9861 -1.9987 1.1341 0.1859 -19.1648 10.3266 4.7266 2.9876 2.9281 -1.8874 7.9730 -16.5751 9.8157 25.9005 -41.7743 36.8658 0.0000 0.0000 9.5720 -3.3821 -25.0952 0.4935 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.5655 10.9224 -11.2366 36.4089 11.8357 -61.1119 -0.0000 0.0000 3.9436 6.2377 17.0824 -4.1601 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.9172 -22.5667 -13.6036 -1.3597 0.0000 -0.0000 5.0373 10.7058 -8.1877 0.9760 0.0000 0.0000 -17.3598 -26.1775 -11.0754 75.8881 0.0000 0.0000 1.7367 4.0753 -17.2050 -7.2907 0.0000 -0.0000 - 1.5185 -88.3266 23.6913 -3.6661 16.2002 6.2650 -0.5177 -8.2128 0.3612 -1.4936 -4.3843 -0.4387 14.6035 -0.7003 4.7655 -1.9736 1.5957 0.8345 -17.4532 9.5231 2.9443 4.5813 2.6938 -3.2283 7.2617 -16.9339 9.3425 23.0515 -38.8612 34.9547 0.0000 0.0000 9.4083 -4.1235 -18.9248 -1.6592 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.8618 13.1554 -10.3810 30.9391 12.9347 -60.7890 -0.0000 0.0000 2.5243 2.5188 7.2481 -5.0384 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -1.5646 -22.8034 -12.4387 -0.5063 0.0000 -0.0000 2.7538 10.3858 -7.2610 0.9256 0.0000 0.0000 -23.2720 -24.4173 -11.7150 79.9299 0.0000 0.0000 -2.5713 2.1625 -13.7494 -7.9727 0.0000 -0.0000 - 1.6253 -89.1584 23.7783 -5.3707 14.8040 4.7263 0.2854 -8.4768 0.4281 -0.9329 -4.7320 -0.3568 15.1307 0.8444 6.7200 -1.6288 1.9023 1.3149 -15.5847 9.1160 2.0155 6.7723 2.5164 -3.8661 6.2756 -15.7948 9.2079 21.3028 -35.4224 35.3772 0.0000 0.0000 9.8854 0.9510 -9.8805 -2.3228 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 1.8674 13.1325 -9.6002 26.2510 14.5073 -61.7864 -0.0000 0.0000 0.7424 0.1226 -2.2343 -6.9648 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 2.4905 -21.4054 -11.9331 0.4546 0.0000 0.0000 0.3356 10.1208 -5.1048 0.5512 0.0000 0.0000 -25.0551 -21.2147 -10.2978 78.6954 0.0000 0.0000 -4.7827 1.2357 -8.8608 -9.3098 0.0000 -0.0000 - 1.7808 -89.9432 23.8777 -7.2914 13.0184 3.9889 0.8672 -8.1734 0.2993 -0.5754 -4.5632 -0.2975 16.0078 1.5433 7.2638 -1.1367 1.9739 1.4263 -13.8036 9.0837 1.7599 8.6752 2.0790 -3.7641 5.1184 -14.8048 9.2514 18.1648 -31.9204 35.5194 0.0000 0.0000 11.6831 2.2239 -1.0185 -2.5557 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 1.4347 12.7884 -9.2304 23.1306 13.9945 -62.2707 -0.0000 -0.0000 -1.0551 -1.8454 -6.4542 -7.2468 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 6.3356 -19.2833 -11.1704 1.5574 0.0000 0.0000 -2.2083 9.5581 -4.1883 0.1190 0.0000 0.0000 -25.4872 -17.5159 -9.0417 73.2130 0.0000 0.0000 -5.9098 1.3560 -4.0229 -10.0795 0.0000 -0.0000 - 1.9128 -90.5372 23.9067 -7.6663 12.1354 3.5616 0.4736 -7.9223 0.0786 -0.7079 -4.5282 -0.3364 16.6138 1.5392 7.0099 -0.7474 2.0027 1.3025 -12.3024 9.2076 1.8752 10.1362 1.4977 -3.1585 3.6145 -14.2721 9.2407 12.8109 -29.9112 34.4326 0.0000 0.0000 15.1344 -2.2745 4.0976 -1.3962 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0099 12.9520 -9.0959 20.8325 12.6204 -61.8383 -0.0000 -0.0000 -2.4094 -1.3846 -3.9806 -5.5388 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 7.8042 -17.9122 -10.2617 3.4240 0.0000 0.0000 -4.9132 8.7153 -4.3884 -0.0354 0.0000 -0.0000 -27.0115 -15.4333 -7.9220 64.6040 0.0000 0.0000 -7.1562 1.3277 -0.8374 -9.2837 0.0000 -0.0000 - 1.9965 -91.1668 23.8613 -6.7615 12.2042 3.3633 -0.3832 -7.8439 -0.1140 -1.0687 -4.4998 -0.4188 16.3991 0.8937 6.3670 -0.4912 2.0074 1.1124 -11.1257 9.1922 2.1334 11.3246 1.0428 -2.3587 2.1416 -13.4357 9.1454 7.0000 -29.6526 33.2485 0.0000 0.0000 19.9005 -6.2442 5.6095 0.7308 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -1.5944 12.4525 -9.0377 18.6517 12.4347 -61.4284 -0.0000 -0.0000 -3.3432 0.4923 0.7740 -4.3607 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 7.7749 -17.5982 -10.1135 5.2295 0.0000 0.0000 -7.3592 7.9745 -4.2620 -0.1538 0.0000 -0.0000 -29.0269 -15.2964 -6.0882 53.3320 0.0000 0.0000 -7.2845 0.6276 -0.4657 -7.7958 0.0000 -0.0000 - 2.0618 -91.9382 23.7880 -5.6333 12.7096 3.6207 -1.3727 -7.9009 -0.3296 -1.4820 -4.2435 -0.4966 15.9653 -0.1048 5.4164 -0.2530 1.8862 0.9025 -10.3447 9.0631 2.3699 12.2933 0.8165 -1.6393 1.1033 -12.7014 9.2326 2.1816 -29.2450 32.6476 0.0000 0.0000 24.9252 -5.1599 5.8937 2.7526 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -2.6172 11.4849 -9.1677 16.5453 12.5587 -61.2671 -0.0000 -0.0000 -4.0464 1.5877 3.1316 -4.4664 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 8.1762 -17.9264 -10.5284 5.6844 0.0000 0.0000 -9.2145 7.4052 -3.7199 -0.6106 0.0000 -0.0000 -29.9685 -15.9637 -3.3227 39.7225 0.0000 0.0000 -4.9915 -0.1685 -3.7236 -6.7876 0.0000 -0.0000 - 2.1726 -92.6896 23.7019 -4.4090 13.1377 3.9212 -2.9138 -7.8380 -0.7782 -2.2753 -4.0767 -0.6110 16.5174 -1.0687 4.5179 0.0124 1.8038 0.6937 -10.1405 9.1934 2.6093 12.9511 0.6529 -1.1254 0.0726 -12.6671 9.6513 -1.0651 -27.4291 32.8992 0.0000 0.0000 28.9228 -0.8280 6.3631 3.7361 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -3.5428 11.8669 -9.4103 14.7115 11.3218 -60.7673 -0.0000 -0.0000 -4.6773 1.1958 2.9401 -4.6942 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 9.3743 -18.1731 -10.8553 4.8147 0.0000 0.0000 -10.7863 6.5952 -3.1117 -1.1101 0.0000 -0.0000 -29.7424 -16.1534 -0.0180 24.7672 0.0000 0.0000 0.6881 0.1756 -10.0152 -6.7808 0.0000 -0.0000 - 2.3752 -93.4449 23.5926 -3.0754 13.0359 3.5892 -4.8555 -7.6025 -1.3877 -3.3726 -4.0551 -0.7510 17.9370 -1.7467 4.0698 0.2214 2.0066 0.5103 -10.4116 9.6576 2.9413 13.4140 0.3543 -0.7619 -1.3796 -12.7129 10.2465 -2.6791 -25.3169 33.8439 0.0000 0.0000 31.4171 2.7917 6.8515 3.3653 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -4.7962 13.6473 -9.4283 13.0835 9.5766 -59.9921 -0.0000 -0.0000 -5.3780 0.2412 2.2164 -4.4782 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 11.1021 -17.5745 -10.9909 3.5552 0.0000 0.0000 -12.4889 5.2186 -2.1862 -1.1099 0.0000 -0.0000 -28.8920 -14.9737 -0.2089 10.6595 0.0000 0.0000 7.8560 2.7455 -12.9983 -7.8551 0.0000 -0.0000 - 2.6158 -94.4100 23.4662 -2.6632 12.1155 2.6834 -5.8426 -6.9852 -1.5644 -3.9231 -4.0568 -0.8384 18.7269 -1.8132 4.0037 0.2336 2.2729 0.3742 -10.6598 9.8894 3.1570 14.0198 -0.0052 -0.5146 -2.8863 -12.4961 10.7270 -3.3234 -24.1086 34.8974 0.0000 0.0000 32.6327 3.7867 6.5090 2.7067 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.9834 15.0137 -9.2124 11.6279 8.8752 -59.6604 -0.0000 -0.0000 -6.1099 -0.6731 1.7625 -4.3598 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 14.0796 -15.9171 -10.8269 2.4877 0.0000 0.0000 -14.2925 3.6656 -1.0317 -0.7373 0.0000 -0.0000 -27.4358 -13.6658 -7.1481 1.2500 0.0000 0.0000 8.9541 6.3351 -6.4810 -8.9662 0.0000 -0.0000 - 2.8315 -95.4686 23.3012 -2.5097 11.3518 1.4079 -6.0356 -6.6785 -1.5882 -3.9173 -4.0755 -0.8201 18.2412 -1.2639 4.3992 0.0129 2.3665 0.3690 -10.6651 9.8195 3.1567 14.7932 -0.2402 -0.4624 -3.9070 -12.3047 11.1014 -3.7926 -23.5318 35.6395 0.0000 0.0000 32.8457 3.2090 5.1936 2.4924 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.7759 15.6286 -8.9853 10.5881 8.9763 -59.8942 -0.0000 -0.0000 -6.8511 -1.2947 1.2749 -4.5109 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 16.8498 -14.2320 -9.8937 2.4432 0.0000 0.0000 -16.3392 2.7261 -0.5267 -0.3410 0.0000 -0.0000 -27.6723 -13.2721 -7.4777 -0.1647 0.0000 -0.0000 2.8820 5.4557 -2.9898 -8.8027 0.0000 -0.0000 - 3.0426 -96.4887 23.0681 -2.0649 11.4094 -1.3023 -6.1514 -7.0134 -1.6651 -3.8929 -4.7729 -0.8754 17.2909 -0.3974 5.8386 -0.2163 2.5857 0.6305 -10.5082 9.9617 3.2782 15.2905 -0.3616 -0.5110 -4.1657 -11.7771 11.5511 -4.1978 -23.1964 36.2530 0.0000 0.0000 32.5675 3.2057 3.6026 2.2013 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -7.1707 16.0793 -8.5117 9.9948 9.3715 -60.4487 -0.0000 -0.0000 -7.6447 -0.9940 0.9605 -4.5686 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 18.9987 -12.7200 -7.7150 3.5892 0.0000 0.0000 -18.8701 1.8499 -0.2118 0.1848 0.0000 0.0000 -28.2031 -14.5074 -1.4247 2.2037 0.0000 0.0000 -0.5792 2.4631 -3.0020 -8.5237 0.0000 -0.0000 - 3.2971 -97.5090 22.8209 -0.5421 11.3251 -5.8820 -7.0814 -6.4441 -1.8562 -4.7359 -7.1363 -1.3272 17.8051 0.6109 8.1605 -0.5689 3.2811 1.0517 -11.1645 10.4394 4.0769 15.0985 -0.7291 -0.2727 -4.1020 -11.7515 12.4434 -4.1860 -21.7196 37.0916 0.0000 0.0000 32.5051 4.1570 2.1569 1.5701 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.6486 17.4558 -7.4325 9.4807 8.5402 -60.6406 -0.0000 -0.0000 -8.4783 -0.3694 1.6677 -4.6805 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 19.4119 -10.1221 -5.9861 6.0572 0.0000 0.0000 -21.6162 -0.1927 1.5579 0.9910 0.0000 0.0000 -27.8886 -16.6351 4.6465 3.2268 0.0000 0.0000 5.6776 0.6940 -1.1402 -9.4679 0.0000 -0.0000 - 3.6673 -98.6455 22.6919 0.3559 8.4196 -9.7831 -8.0430 -1.9897 -2.0618 -6.6945 -11.3330 -2.5776 20.8403 2.5063 9.7122 -1.6257 4.1236 1.2306 -13.3941 10.6148 5.3881 14.8211 -1.4184 0.4559 -4.5935 -14.3111 13.4668 -3.2640 -17.9981 38.3786 0.0000 0.0000 32.5570 4.8482 0.4530 1.1812 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.0176 20.5344 -6.1765 9.3945 4.8833 -59.5109 -0.0000 -0.0000 -8.9849 -0.9865 3.6009 -5.2646 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 19.2124 -4.2983 -7.1652 9.0812 0.0000 0.0000 -23.3273 -3.3609 4.7469 1.3622 0.0000 0.0000 -25.0513 -15.0304 7.6449 0.7971 0.0000 0.0000 17.0559 1.7446 3.8759 -8.9411 0.0000 -0.0000 - 4.1615 -99.9482 22.7477 -3.0517 1.5402 -10.9268 -6.6525 5.5615 -1.3621 -7.6323 -15.3341 -4.1110 23.0460 8.1570 8.9655 -3.5046 3.6273 0.9360 -15.9689 9.2597 5.8238 15.5573 -1.2703 1.2500 -6.1977 -19.4958 13.0274 -0.9894 -14.9204 40.0530 0.0000 0.0000 31.6927 4.6544 -1.9862 1.1000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -11.1623 22.9730 -5.8312 10.7664 1.1930 -57.0291 -0.0000 -0.0000 -8.4974 -2.3975 5.7525 -5.7375 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 23.2865 5.7094 -11.3974 10.8362 0.0000 0.0000 -22.5986 -6.4308 7.3630 0.1179 0.0000 0.0000 -16.0930 -6.5314 6.4121 -5.9714 0.0000 -0.0000 23.4807 3.3646 11.0604 -6.5019 0.0000 -0.0000 - 4.6212 -100.9403 22.9243 -3.9742 -3.7299 -10.1361 -4.3251 6.7053 -1.1439 -4.0549 -24.7105 -5.6865 13.7238 30.0944 8.0922 -4.5719 -0.6901 0.4068 -17.1736 4.6493 3.7496 16.5365 1.2083 1.4357 -8.2905 -26.2873 9.3625 2.2414 -15.9216 42.2602 0.0000 0.0000 29.1562 4.1109 -4.7768 0.5400 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -11.5819 19.9347 -7.5168 12.5048 2.1363 -55.0317 -0.0000 -0.0000 -6.6341 -2.7412 6.6481 -5.1479 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 24.2280 12.3293 -13.2170 13.9457 0.0000 0.0000 -19.8390 -7.4904 6.2060 -2.7419 0.0000 -0.0000 -11.8950 0.7001 2.9986 -9.2123 0.0000 -0.0000 21.9255 2.1971 15.2557 -4.7505 0.0000 -0.0000 - 4.9698 -101.5947 23.1822 -1.6621 -4.7075 -8.9305 -3.2023 3.5240 -1.3128 -0.9145 -20.7287 -3.6088 6.8291 29.3326 8.3247 -5.1447 -0.0533 -0.2819 -20.0566 6.8953 3.9253 15.3570 2.7609 1.3070 -9.0294 -25.7201 8.1593 4.6028 -19.4162 44.2430 0.0000 0.0000 25.1664 3.0894 -6.9752 -0.5504 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.7123 19.2708 -8.1075 11.9672 5.2818 -54.1086 -0.0000 -0.0000 -4.5825 -2.1735 5.5709 -3.6923 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 19.2515 13.7350 -10.8109 20.6751 0.0000 0.0000 -16.0654 -7.9548 2.6741 -5.5635 0.0000 -0.0000 -13.2434 2.7787 1.9434 -7.6875 0.0000 -0.0000 17.9258 0.5049 15.2626 -4.8457 0.0000 -0.0000 - 5.2475 -102.1369 23.4434 -0.0703 -3.4527 -9.6277 -2.0614 0.5223 -1.1973 -0.7187 -9.8623 -1.4032 7.8543 13.0335 7.9414 -5.7576 4.3371 -0.6023 -25.0886 13.0234 7.2840 11.0639 2.8125 0.6775 -7.6538 -19.1284 11.6982 5.3757 -20.7834 45.5297 0.0000 0.0000 20.9816 1.0982 -8.3218 -1.1610 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -8.5538 19.4965 -8.6701 9.5242 8.1060 -54.1068 -0.0000 -0.0000 -2.8964 -2.7723 3.3495 -2.6515 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 12.0046 13.6269 -7.3637 30.6908 0.0000 0.0000 -10.9741 -8.8564 0.4402 -6.6558 0.0000 -0.0000 -14.9370 2.0556 4.7396 -4.4492 0.0000 -0.0000 15.2961 -0.2045 12.9126 -5.6459 0.0000 -0.0000 - 5.4879 -102.5179 23.6332 1.1664 -2.8729 -11.8913 -0.6360 -1.0180 -0.8841 -0.5065 -6.1666 -0.6258 7.6451 7.9460 9.2405 -5.8498 5.6085 -0.3061 -28.9750 15.1150 9.8677 5.4002 2.8228 -0.0006 -5.7420 -13.1849 15.5446 5.5993 -18.7970 46.2794 0.0000 0.0000 18.3024 -0.8280 -8.8853 -0.9698 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -5.7663 16.3491 -10.9403 7.8939 9.5790 -54.0717 -0.0000 -0.0000 -1.9417 -4.7952 2.0991 -2.6398 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.5775 14.2181 -3.5901 42.8903 0.0000 0.0000 -4.5295 -8.4197 -0.7540 -5.3029 0.0000 -0.0000 -16.6298 1.3088 8.9383 -1.2701 0.0000 -0.0000 12.9683 -0.7807 10.6654 -6.1098 0.0000 -0.0000 - 5.6946 -102.8226 23.7216 2.3375 -4.1743 -14.3565 -0.3401 -0.2299 -0.5206 -0.5581 -4.5699 -0.2393 7.6740 7.3401 10.4085 -5.9920 5.1292 0.2277 -31.4432 14.0835 10.5402 1.0033 2.6943 0.2145 -4.7337 -11.0059 17.1120 5.3434 -15.9409 47.2014 0.0000 0.0000 17.3459 -1.0964 -8.2396 -0.9142 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.6049 14.9022 -13.2918 7.8188 8.1027 -52.6604 -0.0000 -0.0000 -2.1618 -5.8463 2.9342 -3.3668 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -7.5004 15.7929 0.2233 54.1840 0.0000 0.0000 0.9577 -6.2396 -1.7458 -2.9731 0.0000 -0.0000 -17.3053 2.3018 11.0340 -0.6687 0.0000 -0.0000 10.7653 -1.3594 10.8359 -6.3640 0.0000 -0.0000 - 5.8269 -103.2418 23.7788 3.1256 -5.5274 -15.9121 -0.7371 1.3427 -0.2505 -0.6388 -3.8932 -0.0682 7.7037 7.4863 10.8034 -6.3848 4.4080 0.6144 -32.5537 11.8772 9.9894 -0.9822 2.6723 0.8425 -4.5733 -11.9333 16.6909 4.2652 -16.0646 48.7156 0.0000 0.0000 17.6625 -0.1840 -6.6126 -1.4486 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.5855 16.0341 -14.4052 7.7505 6.7059 -50.5459 -0.0000 -0.0000 -2.9945 -5.0141 4.0014 -3.9814 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.2811 16.5898 2.8274 61.6278 0.0000 0.0000 2.0363 -3.4790 -2.5674 -2.1482 0.0000 -0.0000 -16.3167 3.7395 9.9735 -2.5595 0.0000 -0.0000 9.8791 -1.4871 13.2247 -6.7000 0.0000 -0.0000 - 5.8774 -103.7976 23.8653 2.5781 -5.3779 -15.6641 -0.4576 2.3147 -0.1764 -0.4015 -3.7791 -0.1192 7.9961 6.9067 10.1437 -6.8636 4.1417 0.6092 -32.8955 10.4948 9.5755 -1.2780 2.7670 0.8296 -4.7722 -13.1597 16.2289 2.9637 -19.4686 49.3954 0.0000 0.0000 19.2961 -0.0918 -4.8970 -1.6215 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.5008 17.3515 -14.0425 6.7565 7.7335 -49.3263 -0.0000 -0.0000 -3.5685 -4.4332 3.3441 -3.7201 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -18.1557 16.2946 2.5488 64.1377 0.0000 0.0000 -1.3504 -1.5204 -3.4423 -2.7947 0.0000 -0.0000 -13.6592 4.4384 7.9785 -4.1421 0.0000 -0.0000 9.4816 -1.4770 14.6320 -6.9864 0.0000 -0.0000 - 5.8944 -104.3130 23.9717 1.2487 -4.5054 -13.4927 0.4074 2.6457 -0.3109 -0.0144 -3.4705 -0.2084 8.4033 5.5765 8.8879 -7.0950 4.1358 0.3645 -32.8348 10.5515 9.6115 -1.0212 2.8342 0.0550 -4.7170 -13.2660 16.6312 2.2641 -22.5547 48.7436 0.0000 0.0000 21.0284 -2.2301 -3.9969 -0.6938 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -3.8813 17.3352 -13.3445 6.2387 10.0659 -49.7194 -0.0000 -0.0000 -3.2693 -5.3774 1.5292 -3.0804 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -17.8728 15.8523 0.1112 62.5626 0.0000 0.0000 -5.4892 -0.7927 -5.4421 -3.0658 0.0000 -0.0000 -11.2299 4.8420 7.2033 -3.3559 0.0000 -0.0000 7.8271 -1.8789 12.9792 -7.0519 0.0000 -0.0000 - 5.8940 -104.7092 24.0593 0.5737 -3.8628 -10.7891 0.8590 2.5531 -0.4252 0.1019 -2.9598 -0.2150 8.4706 4.5006 8.1602 -6.9425 4.0659 0.2336 -32.3084 11.2061 9.5456 -0.5953 2.9272 -0.6987 -4.3414 -12.6730 17.1199 2.4496 -23.1902 48.1853 0.0000 0.0000 21.3228 -4.9014 -4.3247 0.3337 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.2734 16.4117 -13.2047 7.5627 11.5687 -51.2809 -0.0000 -0.0000 -2.3245 -6.1840 1.3320 -2.9265 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -18.0775 15.1893 -1.8570 58.7913 0.0000 0.0000 -8.0012 -0.5833 -9.2296 -2.5671 0.0000 -0.0000 -10.3055 5.0582 7.6772 -1.3238 0.0000 -0.0000 5.3988 -2.3751 9.7136 -7.0119 0.0000 -0.0000 - 5.8653 -105.0559 24.1153 0.7686 -3.5620 -8.9390 0.6365 2.3143 -0.3736 -0.0852 -2.7962 -0.1667 8.3723 4.3566 8.4683 -6.6534 4.0015 0.3665 -31.5198 11.6199 9.2708 0.1541 3.0202 -0.9375 -4.2047 -12.0984 17.0895 3.1941 -22.6625 48.4360 0.0000 0.0000 20.3247 -5.1527 -5.7171 0.2117 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -3.1860 15.7020 -13.4448 9.7051 11.6149 -52.7900 -0.0000 -0.0000 -1.6200 -5.0793 3.8752 -3.3602 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -19.8458 14.1308 -1.5963 54.0809 0.0000 0.0000 -9.6611 -0.2666 -13.1697 -2.2935 0.0000 -0.0000 -10.2333 5.0537 7.9631 0.0611 0.0000 0.0000 3.7468 -2.4044 7.5986 -7.1636 0.0000 -0.0000 - 5.8116 -105.3849 24.1422 0.8558 -3.7108 -7.5941 0.3879 2.2871 -0.2304 -0.1790 -2.9135 -0.1306 8.3229 4.9157 9.2084 -6.4921 4.1033 0.5341 -30.7758 11.5784 9.0193 1.3129 2.8380 -0.8975 -4.5499 -11.9458 16.8758 3.7274 -22.7226 48.7568 0.0000 0.0000 19.1937 -2.8827 -7.3848 -0.7257 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -3.4506 15.5069 -13.5700 11.1005 11.0478 -53.4967 -0.0000 -0.0000 -1.4373 -2.9682 7.0383 -4.0176 -0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -21.6786 13.3416 0.4216 48.9166 0.0000 0.0000 -11.0941 0.6577 -14.2146 -2.2693 0.0000 -0.0000 -9.8061 5.3738 7.3282 0.5854 0.0000 0.0000 2.8432 -2.1632 6.8750 -7.4954 0.0000 -0.0000 - 5.7285 -105.6696 24.1510 0.5783 -4.1531 -5.3367 0.4393 2.4816 -0.1225 -0.0206 -3.0274 -0.1256 8.1296 5.7834 9.4916 -6.4563 4.2019 0.5290 -29.9570 11.2220 8.6734 2.7842 2.1716 -0.8800 -5.0599 -12.2631 16.6867 3.6436 -23.7037 48.3385 0.0000 0.0000 18.4918 -1.6273 -8.4027 -1.4004 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -3.7391 15.4505 -13.5117 11.6459 10.6774 -53.7360 -0.0000 -0.0000 -1.3303 -2.0998 8.2851 -4.2645 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -22.5019 13.2491 2.6725 43.5198 0.0000 0.0000 -11.7809 1.9975 -10.8343 -1.8521 0.0000 -0.0000 -8.7695 6.0996 5.4111 0.6293 0.0000 0.0000 1.9331 -1.8960 6.3954 -7.7996 0.0000 -0.0000 - 5.6085 -105.9433 24.1646 0.3841 -4.4458 -1.6204 0.5228 2.6788 -0.0144 0.1627 -2.9246 -0.1334 7.7779 6.2791 9.2059 -6.3832 4.1922 0.3724 -28.8091 10.6990 8.1542 4.4208 1.2031 -0.7543 -5.5244 -12.6457 16.3334 3.0586 -25.1684 47.1343 0.0000 0.0000 17.8831 -4.4933 -8.7726 -1.5776 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -3.9356 15.4689 -13.3290 11.9486 10.5845 -54.1264 -0.0000 -0.0000 -1.0656 -2.5311 7.1644 -4.2600 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -22.3744 13.6244 4.4057 37.8350 0.0000 0.0000 -11.9785 2.0942 -3.6107 -1.5972 0.0000 -0.0000 -7.3798 6.6636 1.9239 0.0223 0.0000 0.0000 1.1000 -1.2992 6.0321 -8.0657 0.0000 -0.0000 - 5.4469 -106.2468 24.1981 0.3012 -4.2778 2.9263 0.4806 2.7418 0.1559 0.2461 -2.9077 -0.1558 7.5954 6.4214 8.7862 -6.2432 4.0545 0.2686 -27.4609 10.0530 7.6973 5.9790 0.3252 -0.3131 -6.0223 -12.8512 15.6847 2.0357 -26.6438 45.6049 0.0000 0.0000 16.9092 -10.4593 -9.0391 -1.8343 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -4.0899 15.7879 -13.0075 12.0935 10.4870 -54.7222 -0.0000 -0.0000 -0.9642 -2.8570 5.1939 -4.5049 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -21.5736 13.9224 6.4188 31.9193 0.0000 0.0000 -11.6481 -1.2454 5.0249 -2.1789 0.0000 -0.0000 -5.9541 6.5356 -2.0780 -0.8456 0.0000 -0.0000 0.4565 -0.1830 5.4597 -8.3381 0.0000 -0.0000 - 5.2525 -106.5433 24.2337 -0.0296 -4.0635 7.7435 0.5848 2.8663 0.2835 0.3867 -3.0369 -0.1891 7.6284 6.4515 8.6305 -6.1258 3.8658 0.2687 -26.1242 9.3527 7.4506 7.1683 -0.2522 0.3088 -6.5906 -12.9112 14.9380 0.3860 -27.9837 43.9804 0.0000 0.0000 15.6607 -15.7974 -8.8082 -2.6584 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -4.3353 16.2837 -12.5967 11.9554 10.3588 -55.2068 -0.0000 -0.0000 -1.2427 -2.7457 3.8228 -4.8029 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -20.5742 14.1464 9.9853 27.2891 0.0000 0.0000 -10.2675 -7.1113 11.7080 -2.7910 0.0000 -0.0000 -4.8690 6.1386 -4.3987 -0.7958 0.0000 -0.0000 -0.3282 0.9814 2.9896 -8.4021 0.0000 -0.0000 - 5.0323 -106.7787 24.2401 -0.2389 -4.3208 13.0002 0.8840 3.2415 0.2643 0.6226 -3.1179 -0.1913 7.4669 6.5564 8.6640 -6.0332 3.6634 0.2992 -24.7661 8.7482 7.1844 7.9303 -0.5949 0.7671 -7.0869 -12.9001 14.3027 -1.8407 -29.0832 42.2977 0.0000 0.0000 14.5535 -18.8952 -7.1952 -3.7715 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.7736 16.5727 -12.2972 11.7376 10.3005 -55.3545 -0.0000 -0.0000 -1.6384 -2.7329 3.3483 -4.9095 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -20.6471 14.6075 14.6057 26.7640 0.0000 0.0000 -9.7400 -11.7796 15.1807 -2.8893 0.0000 -0.0000 -4.6886 6.1434 -4.7225 0.5062 0.0000 0.0000 -1.1050 1.8443 -1.7682 -8.0963 0.0000 -0.0000 - 4.7873 -106.9878 24.2147 0.0877 -4.9828 18.9392 1.1382 3.7028 0.2245 0.8685 -3.0366 -0.1669 7.0248 6.7943 8.6121 -5.8951 3.5012 0.2766 -23.3640 8.3241 6.7062 8.5479 -0.8072 0.8814 -7.4722 -12.8090 13.8025 -4.1588 -29.8703 40.6846 0.0000 0.0000 13.8506 -21.1684 -4.0378 -4.7977 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -5.3778 16.5512 -12.1366 11.6155 10.2341 -55.1756 -0.0000 -0.0000 -1.8089 -2.8550 3.2598 -4.9952 -0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -22.0017 15.3017 18.3841 30.8458 0.0000 0.0000 -12.0928 -13.2105 16.3054 -2.6198 0.0000 -0.0000 -4.9073 6.5616 -5.8171 1.4383 0.0000 0.0000 -1.1786 2.9498 -6.1505 -7.7823 0.0000 -0.0000 - 4.5362 -107.2274 24.1817 0.6948 -5.9029 25.2446 1.3158 3.9564 0.3182 1.1273 -2.9031 -0.1386 6.6872 7.2894 8.5474 -5.7321 3.5290 0.1799 -22.1166 8.0397 6.1403 9.3442 -0.8958 0.7464 -7.9017 -12.6807 13.2440 -6.2669 -30.6900 39.3248 0.0000 0.0000 13.4550 -23.6829 0.1253 -5.6024 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.0945 16.5025 -11.8687 11.4635 10.0524 -54.6890 -0.0000 -0.0000 -1.8330 -2.6574 2.9748 -5.0690 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -23.2433 16.1839 21.0193 36.9305 0.0000 0.0000 -16.6659 -12.7302 15.7061 -1.9144 0.0000 -0.0000 -4.2564 7.1290 -9.6441 0.4503 0.0000 0.0000 -0.4711 4.9897 -8.1261 -7.8035 0.0000 -0.0000 - 4.2848 -107.4881 24.1499 1.3846 -6.8736 31.3296 1.4707 3.7995 0.5887 1.5049 -3.3029 -0.1678 6.3897 8.7435 8.8418 -5.6074 3.7143 0.1150 -21.1200 7.7498 5.5896 10.3274 -0.8374 0.5799 -8.4854 -12.7147 12.4000 -8.5437 -32.2257 38.0772 0.0000 0.0000 13.0960 -25.8891 4.3831 -6.0962 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -6.8633 16.4748 -11.4166 11.1508 9.9256 -53.7815 -0.0000 -0.0000 -1.9686 -2.2787 2.3585 -4.9630 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 -23.5212 16.9855 22.9562 42.5754 0.0000 0.0000 -21.4527 -12.1940 14.2534 -0.9306 0.0000 -0.0000 -2.7299 7.3674 -15.0112 -2.0308 0.0000 -0.0000 0.2165 7.4376 -8.5270 -7.8387 0.0000 -0.0000 - 4.0139 -107.7400 24.1027 2.5115 -7.6235 37.0386 1.4873 3.3718 0.8734 1.8286 -3.9827 -0.1830 5.8325 10.7505 9.7246 -5.4603 4.0111 0.1262 -20.2536 7.4916 5.1541 11.2432 -0.7207 0.5250 -9.1046 -12.9412 11.5566 -11.2653 -34.2873 36.5187 0.0000 0.0000 12.8075 -27.8409 7.7999 -6.2629 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -7.5480 16.3208 -10.8915 10.6736 9.9756 -52.4659 -0.0000 -0.0000 -2.0863 -2.5595 1.6442 -4.9176 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -23.1937 17.7710 23.8555 46.8538 0.0000 0.0000 -25.2336 -11.7189 13.1362 -0.1781 0.0000 -0.0000 -1.7710 7.4051 -19.4260 -4.3068 0.0000 -0.0000 0.5644 9.4440 -9.2916 -7.5600 0.0000 -0.0000 - 3.6932 -107.9860 24.0332 4.1198 -7.9668 42.4120 1.3247 3.0245 1.0648 1.9591 -4.7484 -0.1820 5.0900 12.7617 11.1678 -5.2139 4.1936 0.2578 -19.5035 7.5133 5.0167 11.8844 -0.7385 0.5405 -9.6018 -13.1597 11.2357 -13.5980 -35.5057 34.8181 0.0000 0.0000 12.9985 -30.3498 9.7649 -6.3251 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -8.0854 16.2955 -10.3570 10.0228 9.7588 -50.8941 -0.0000 -0.0000 -1.9205 -3.7120 0.9390 -5.0825 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -22.5739 18.4452 23.8985 49.9239 0.0000 0.0000 -28.3967 -11.0134 12.1761 0.0159 0.0000 0.0000 -2.1457 7.5790 -22.2146 -5.4146 0.0000 -0.0000 1.0570 11.4799 -10.9260 -7.3481 0.0000 -0.0000 - 3.2968 -108.2247 23.9485 5.8608 -7.7974 47.3172 0.9937 2.7239 1.1854 1.9393 -5.4949 -0.1644 4.6244 14.3881 13.0649 -4.9695 4.3110 0.5175 -19.0512 7.8981 5.2231 12.2659 -0.9402 0.5280 -9.8676 -13.1666 11.4396 -14.5786 -35.2360 33.8070 0.0000 0.0000 13.7766 -32.6499 10.2139 -6.4477 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.7430 16.9219 -9.7053 9.2970 8.7592 -49.0555 -0.0000 -0.0000 -1.6991 -4.5285 0.1115 -4.9981 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -21.8254 18.3984 24.1176 52.1983 0.0000 0.0000 -31.3955 -10.7455 10.7783 -0.1166 0.0000 -0.0000 -3.7124 7.7756 -23.9396 -5.4229 0.0000 -0.0000 2.0028 14.0614 -13.3166 -7.4829 0.0000 -0.0000 - 2.8300 -108.4544 23.8570 7.3544 -7.3297 51.6908 0.8949 2.2198 1.2498 2.0818 -6.4096 -0.1401 4.1314 16.0602 15.3437 -4.8514 4.5720 0.8602 -18.8018 8.2577 5.4643 12.4670 -1.1226 0.5240 -9.6922 -13.0006 11.6727 -14.7559 -34.6785 33.7187 0.0000 0.0000 14.7141 -33.1618 9.9671 -6.1469 0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -9.7543 17.7649 -8.9096 8.5670 7.6812 -46.7247 -0.0000 -0.0000 -1.8167 -3.8984 -0.8496 -4.5176 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -20.5815 17.5513 24.5399 52.9286 0.0000 0.0000 -33.0703 -11.4027 9.9618 -0.2074 0.0000 -0.0000 -5.7188 7.8173 -25.1303 -4.9539 0.0000 -0.0000 3.1478 16.2814 -16.1920 -7.5413 0.0000 -0.0000 - 2.2924 -108.6868 23.7460 8.8222 -6.6408 55.6993 1.2569 1.4564 1.2858 2.5232 -7.0863 -0.0404 2.9115 17.8032 17.8248 -4.8564 5.0175 1.2045 -18.4846 8.3068 5.5113 12.4167 -1.1561 0.6824 -9.0172 -12.7898 11.7426 -14.9813 -35.0226 34.1925 0.0000 0.0000 15.5202 -32.6581 9.9106 -4.9881 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.7647 17.9249 -8.0761 7.4909 7.4806 -43.9237 -0.0000 -0.0000 -2.0131 -2.7347 -1.7415 -4.1186 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -18.7221 16.6230 24.1736 50.6263 0.0000 0.0000 -32.0687 -11.9544 10.7097 -0.2792 0.0000 -0.0000 -7.9371 7.7542 -26.6677 -4.7058 0.0000 -0.0000 4.0279 17.7611 -18.0365 -7.3072 0.0000 -0.0000 - 1.6350 -108.9398 23.5971 10.1395 -5.4245 59.3439 2.0308 0.3987 1.3332 3.2251 -7.4479 0.1315 1.0405 19.3429 20.3941 -4.9885 5.5483 1.5017 -18.2380 8.3161 5.6689 12.0331 -1.1651 1.0616 -8.1596 -12.5052 11.8882 -14.3984 -35.4043 35.4657 0.0000 0.0000 16.3139 -33.2015 9.7917 -3.4170 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -11.3349 17.6726 -7.1876 5.9258 7.3391 -41.1241 -0.0000 -0.0000 -1.7873 -2.4341 -2.4788 -3.8212 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -16.6464 15.4174 23.0817 45.4623 0.0000 0.0000 -29.7011 -10.5398 11.0902 -0.3180 0.0000 -0.0000 -10.6719 7.1476 -29.3900 -4.9036 0.0000 -0.0000 4.7065 20.0675 -17.9554 -7.2884 0.0000 -0.0000 - 0.8007 -109.2016 23.4289 10.2787 -3.4258 62.4008 3.2567 -1.3756 1.4075 4.2503 -8.3394 0.2742 -0.7354 20.5919 23.1959 -5.2962 6.3684 1.7068 -18.5426 8.8072 6.6083 11.5030 -1.2981 1.6267 -7.4815 -11.9296 12.2621 -11.7651 -34.2162 38.2591 0.0000 0.0000 17.0569 -33.7727 9.3666 -2.4766 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -11.9056 18.3743 -5.7666 4.7340 5.6543 -38.8823 -0.0000 -0.0000 -1.3939 -2.9856 -2.9443 -3.2960 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.5910 12.4929 22.6903 40.5991 0.0000 0.0000 -28.4867 -6.9946 8.6100 -0.1144 0.0000 -0.0000 -14.2909 5.2310 -32.1957 -4.5734 0.0000 -0.0000 5.2436 23.2270 -18.1057 -7.4938 0.0000 -0.0000 - -0.1762 -109.4483 23.2987 8.5453 -0.8629 65.0665 4.7791 -3.9024 1.5308 5.5075 -10.0364 0.3838 -1.6223 20.7259 26.1357 -5.6602 7.6637 1.8188 -19.3482 10.1304 8.7969 11.1338 -1.5397 2.4226 -6.9434 -10.6658 12.9087 -7.4676 -31.4044 42.3353 0.0000 0.0000 17.3956 -31.8639 9.5658 -2.5111 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -13.1780 20.5211 -3.1834 4.7667 3.0646 -37.4227 -0.0000 -0.0000 -1.1628 -3.9860 -3.0551 -2.7563 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -16.8194 7.4493 22.6790 39.1987 0.0000 0.0000 -28.2034 -3.1358 4.4936 0.5326 0.0000 0.0000 -18.7229 2.1784 -32.5929 -2.3673 0.0000 -0.0000 4.8178 23.5810 -20.1732 -7.3269 0.0000 -0.0000 - -1.1133 -109.6990 23.2519 5.6429 1.1222 68.2738 6.1241 -6.2701 1.7226 6.1869 -10.6548 0.5053 -0.6276 17.9223 28.1548 -5.7546 8.8792 1.8924 -19.7955 11.8304 11.8660 10.9376 -1.6837 3.4944 -6.2530 -8.4837 14.0362 -2.6553 -28.5780 46.4790 0.0000 0.0000 16.9815 -28.3410 10.8689 -2.7191 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -14.6340 22.4559 0.4259 5.6073 2.6081 -36.7645 -0.0000 -0.0000 -0.3019 -4.9899 -2.6525 -2.2018 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -18.8376 2.5491 20.3319 39.8142 0.0000 0.0000 -26.9508 -0.8551 1.9693 1.1794 0.0000 0.0000 -22.5963 -0.6694 -29.6790 1.2190 0.0000 0.0000 2.0304 18.7906 -20.8401 -7.4323 0.0000 -0.0000 - -1.8255 -109.9675 23.3189 3.2561 1.5135 72.9081 6.9775 -7.8356 1.9372 5.8149 -9.3581 0.5207 1.4498 13.9626 28.5237 -5.4248 8.8152 2.0786 -19.3066 12.2088 14.1476 10.6582 -1.5847 4.5462 -5.2807 -6.3722 15.2868 2.2626 -27.0820 50.0738 0.0000 0.0000 15.6172 -25.9692 12.1628 -2.5446 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -14.5443 21.8811 2.9845 6.6463 5.6811 -36.5752 -0.0000 0.0000 2.0318 -4.4132 -0.4894 -1.2360 -0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -18.8720 0.2834 15.5640 38.7756 0.0000 0.0000 -24.4625 0.2005 1.1876 1.4111 0.0000 0.0000 -24.3520 -1.7403 -24.1945 4.0487 0.0000 0.0000 -1.4190 11.3977 -16.5392 -8.6545 0.0000 -0.0000 - -2.3247 -110.2159 23.4989 2.4534 1.0596 79.2002 7.1073 -8.5917 2.0116 4.8056 -7.4014 0.5156 3.3097 11.6453 27.5500 -4.9022 7.7100 2.3679 -18.4960 10.3668 14.3413 10.0667 -1.6660 4.9213 -3.9715 -5.3424 16.0325 6.7835 -27.3906 53.3659 0.0000 0.0000 13.1863 -24.0862 11.6558 -3.1411 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -12.6332 19.0166 2.7457 8.4488 9.5076 -36.1369 -0.0000 0.0000 4.7140 -0.7555 5.0097 -0.5735 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -16.8027 0.3504 10.7855 35.2143 0.0000 0.0000 -21.9149 1.4006 -0.3227 1.3232 0.0000 0.0000 -24.6892 -0.4776 -16.4463 5.6695 0.0000 0.0000 -2.7633 5.7498 -9.0274 -9.5567 0.0000 -0.0000 - -2.7413 -110.4544 23.7226 2.2606 1.1260 86.6056 6.6478 -8.9727 1.9360 3.8039 -6.1025 0.5533 4.4639 10.9960 26.4040 -4.4722 6.5890 2.6789 -18.1810 7.5291 12.7248 9.1048 -2.4040 4.1054 -2.4584 -4.8451 16.3426 10.5785 -29.3161 56.7035 0.0000 0.0000 10.2645 -20.4165 8.5868 -5.3191 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.4264 16.0377 0.8237 11.5013 10.6882 -35.8264 -0.0000 0.0000 5.9855 6.0491 12.8214 -1.7215 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -14.6516 0.4571 7.5095 30.8860 0.0000 0.0000 -19.6240 2.9717 -4.2044 1.0583 0.0000 0.0000 -25.3338 1.2022 -7.2887 7.4178 0.0000 0.0000 -3.2357 3.4965 -4.3497 -9.1001 0.0000 -0.0000 - -3.1392 -110.7220 23.9031 1.4945 1.7729 93.9972 6.1958 -9.3730 1.9030 3.2033 -5.7583 0.6129 4.7721 11.0888 26.0681 -4.2797 5.9041 2.9232 -18.4923 5.2256 10.3700 7.9554 -3.6272 2.1510 -1.2300 -4.3178 16.7334 14.7069 -30.4228 60.4448 0.0000 0.0000 8.3987 -15.3516 3.2325 -7.1738 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -9.0966 14.2950 -0.7996 14.1514 9.1476 -36.0063 -0.0000 0.0000 5.7452 13.1414 19.0258 -4.3057 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -13.6234 -0.2997 4.9556 27.2370 0.0000 0.0000 -17.1296 4.1636 -9.1525 0.5551 0.0000 0.0000 -26.5505 1.3713 1.7231 9.9421 0.0000 0.0000 -3.9464 2.0424 -5.1813 -8.8697 0.0000 -0.0000 - -3.5108 -111.0053 23.9950 0.2731 2.3889 100.7012 6.0506 -9.7240 1.9731 3.0400 -5.8309 0.6654 4.5243 11.2803 26.5073 -4.3336 5.5535 3.1418 -19.0988 3.9007 8.1511 6.8987 -4.7885 -0.3315 -0.6039 -3.9374 17.4478 19.6407 -27.4497 64.4668 0.0000 0.0000 8.6749 -8.6732 -3.6705 -6.1465 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -8.7260 13.6588 -1.5728 14.0114 7.3538 -36.1863 -0.0000 0.0000 5.0017 14.8218 20.5072 -4.8759 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -13.3147 -1.2303 1.6083 24.1883 0.0000 0.0000 -14.6921 5.0786 -12.9435 0.0292 0.0000 0.0000 -27.8970 0.2192 9.3215 13.3789 0.0000 0.0000 -4.8363 -0.3544 -7.7290 -9.1926 0.0000 -0.0000 - -3.8342 -111.2718 24.0204 -1.0770 2.6050 106.9803 6.1195 -9.9738 2.0305 3.1055 -6.0293 0.6952 4.2704 11.4149 27.1256 -4.5615 5.4106 3.3686 -19.7987 3.0339 6.2733 6.0602 -5.5829 -2.6934 -0.2347 -4.2440 18.2844 23.3092 -20.7676 67.5734 0.0000 0.0000 10.4152 -0.9171 -8.0713 -1.5396 0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -8.8230 13.5772 -2.1692 11.1700 6.5910 -36.0091 -0.0000 0.0000 4.1093 10.2907 17.0290 -3.3895 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -12.9589 -2.1405 -2.2586 21.3438 0.0000 0.0000 -12.6802 6.7576 -15.5248 -0.0631 0.0000 -0.0000 -28.9207 -1.5853 14.6066 17.7148 0.0000 0.0000 -6.0321 -2.1386 -7.6138 -9.1308 0.0000 -0.0000 - -4.0892 -111.4975 24.0464 -2.7455 2.5309 113.3832 5.9218 -10.3351 2.0130 3.1773 -6.5551 0.6748 4.2052 11.7495 27.5478 -4.8437 5.3448 3.5363 -20.6565 2.0344 4.4809 5.4379 -6.1634 -4.6746 0.0694 -5.3107 18.6572 24.4354 -15.3712 69.6745 0.0000 0.0000 12.0544 2.3929 -7.8167 1.8749 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.0164 14.1587 -2.9249 7.7636 5.6956 -35.7712 -0.0000 0.0000 2.7020 4.7114 11.5425 -3.0802 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -12.3719 -3.3241 -6.0896 18.1707 0.0000 0.0000 -10.6374 8.7592 -17.8368 0.2538 0.0000 0.0000 -29.2961 -3.7480 17.0955 21.5335 0.0000 0.0000 -7.4564 -2.2940 -4.8602 -8.3573 0.0000 -0.0000 - -4.2531 -111.6582 24.1161 -4.6968 2.2485 120.2550 5.2661 -10.7225 1.9085 3.1195 -7.2972 0.6123 4.0598 12.3372 27.5120 -5.1173 5.1436 3.5753 -21.7199 0.5406 2.4735 5.0318 -6.7415 -6.3078 0.1887 -6.9798 18.2581 23.9978 -14.2961 71.4291 0.0000 0.0000 13.1735 1.4880 -5.3378 1.9642 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -9.2533 15.2388 -3.5728 5.3411 4.1485 -36.0515 -0.0000 0.0000 0.7623 1.1980 6.9198 -3.7753 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -10.9953 -4.6754 -10.9226 13.3932 0.0000 0.0000 -8.1231 9.3482 -19.6266 0.4537 0.0000 0.0000 -28.9211 -5.8485 17.8144 23.5873 0.0000 0.0000 -9.3481 -3.5109 -3.0970 -7.8449 0.0000 -0.0000 - -4.3288 -111.7372 24.1856 -6.3939 1.7764 127.4225 4.3979 -10.5525 1.7860 2.9578 -7.6414 0.5678 3.6581 12.5196 26.7885 -5.3977 4.6400 3.5516 -22.8244 -1.2793 0.2467 4.7691 -7.2759 -7.7061 0.2255 -8.5407 17.5760 23.1737 -16.5161 72.6500 0.0000 0.0000 14.7485 0.3182 -1.0089 1.1046 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -9.4589 15.8895 -4.1962 3.9618 3.1413 -36.6801 -0.0000 -0.0000 -1.0885 0.1782 3.9896 -4.3332 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 -8.5373 -6.0923 -16.9810 6.8593 0.0000 0.0000 -5.6773 8.3320 -20.2686 0.2736 0.0000 0.0000 -28.0479 -7.5926 17.6687 24.8243 0.0000 0.0000 -11.7739 -7.3600 -2.9166 -8.4097 0.0000 -0.0000 - -4.3764 -111.7507 24.1890 -7.8598 1.2170 133.9163 3.6651 -9.8016 1.7730 2.8299 -7.5722 0.5934 3.0494 12.0028 25.8375 -5.7463 4.0506 3.6234 -23.8326 -2.8469 -1.8881 4.4421 -7.6670 -8.9418 0.3413 -9.2934 17.1829 22.3160 -19.6582 72.9070 0.0000 0.0000 17.7124 1.1400 3.7349 1.0473 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.4965 15.8557 -4.9595 3.3887 2.9983 -37.3787 -0.0000 -0.0000 -2.0389 0.8293 2.9826 -4.5716 0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -6.5607 -7.6717 -21.2854 1.2718 0.0000 0.0000 -3.9054 7.5413 -21.1971 0.0305 0.0000 0.0000 -27.1437 -9.7341 16.8568 26.5880 0.0000 0.0000 -13.5426 -10.2896 -1.5866 -9.0693 0.0000 -0.0000 - -4.4423 -111.7169 24.1431 -9.6732 0.2197 138.7885 3.3525 -9.3522 1.7700 2.9180 -7.9455 0.6070 2.0703 11.7240 25.5500 -6.1947 3.6820 3.7613 -24.9316 -4.2453 -3.6847 3.9764 -7.9719 -9.8701 0.6266 -10.3677 17.0145 21.4786 -21.6808 72.1032 0.0000 0.0000 22.3643 3.4644 6.5307 1.3521 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -9.4857 16.0193 -5.4053 3.4830 2.6243 -37.9398 -0.0000 -0.0000 -2.2746 1.8940 3.3227 -4.3851 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.2294 -9.4410 -22.9252 -1.2553 0.0000 -0.0000 -2.8193 7.4440 -23.3972 -0.0410 0.0000 -0.0000 -26.1723 -13.5711 17.1700 28.1598 0.0000 0.0000 -13.4943 -7.4413 -0.2797 -8.3176 0.0000 -0.0000 - -4.5471 -111.6291 24.0938 -11.9853 -0.7361 142.2918 2.9223 -9.1593 1.7160 3.0134 -8.6792 0.5903 0.7803 12.0785 25.4452 -6.6638 3.2796 3.8103 -26.2980 -6.0996 -5.1736 3.4011 -8.3953 -10.2066 1.3310 -13.1916 16.8619 20.8830 -21.7246 70.4902 0.0000 0.0000 28.4945 6.5457 7.2026 1.5997 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -9.3439 16.8199 -5.3611 3.4423 2.1604 -37.4385 -0.0000 -0.0000 -2.8857 2.6007 3.3996 -3.7519 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.8056 -10.8581 -24.5080 -1.1066 0.0000 -0.0000 -2.5984 6.4092 -26.1531 -0.1152 0.0000 -0.0000 -25.7741 -18.0513 20.5808 28.3524 0.0000 0.0000 -12.3636 -0.2231 -3.5711 -6.4102 0.0000 -0.0000 - -4.6911 -111.4248 24.0806 -13.4147 -1.0194 145.8870 2.0250 -8.3012 1.4508 2.4697 -8.2148 0.5384 0.8700 11.9936 23.9461 -6.9337 2.3709 3.7595 -27.9848 -8.2517 -6.4884 2.4157 -9.0635 -9.9436 2.4643 -16.4289 16.8701 20.7060 -21.5080 68.3978 0.0000 0.0000 35.2632 9.9487 7.6352 2.1105 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -8.5606 17.8158 -5.9316 2.2312 3.3264 -34.9278 -0.0000 -0.0000 -4.0821 1.7934 1.4579 -3.3896 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -9.4505 -10.4470 -27.4009 0.1160 0.0000 0.0000 -3.5763 4.8095 -27.2540 -0.1626 0.0000 -0.0000 -25.9285 -19.5238 24.5957 27.3636 0.0000 0.0000 -10.7926 4.5822 -10.4502 -4.8963 0.0000 -0.0000 - -4.8396 -111.0637 24.1207 -12.5457 -1.1054 150.1135 1.1327 -6.3394 0.9179 1.3028 -6.1552 0.4983 3.7367 10.3846 21.1780 -6.7770 1.0619 3.8138 -29.6378 -9.8208 -7.6913 0.7333 -9.8436 -9.3631 3.5471 -17.0894 17.0296 21.1781 -23.3767 66.5264 -0.0000 0.0000 40.6332 11.7770 9.1180 3.4767 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.6441 18.3550 -7.9572 0.2927 6.8730 -31.8476 -0.0000 -0.0000 -3.9778 -1.8598 -2.2651 -3.8297 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.7073 -7.8440 -28.6832 2.1414 0.0000 0.0000 -5.2751 4.9384 -24.0787 -0.4596 0.0000 -0.0000 -24.9336 -16.8105 24.4963 25.6552 0.0000 0.0000 -10.3112 4.6210 -14.4191 -4.5038 0.0000 -0.0000 - -4.9607 -110.6357 24.1963 -10.3998 -1.5918 153.7624 0.6941 -3.9746 0.5085 0.3795 -4.2615 0.5247 7.1288 8.1059 19.2716 -6.2423 -0.1889 4.0745 -30.4451 -10.6570 -8.7015 -0.9952 -10.6157 -8.8256 4.2675 -15.0221 16.8971 22.7776 -26.1070 66.1334 -0.0000 0.0000 41.6640 10.3812 10.2921 5.9829 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -4.1936 18.0646 -10.2917 0.0055 11.9194 -31.3232 -0.0000 -0.0000 -0.9528 -6.5187 -5.1449 -3.5470 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.5490 -4.6142 -23.7096 6.2606 0.0000 0.0000 -7.7248 6.1901 -17.0488 -1.3231 0.0000 -0.0000 -22.1963 -13.1995 20.9133 23.5374 0.0000 0.0000 -10.4116 3.0500 -13.5530 -4.6471 0.0000 -0.0000 - -5.0179 -110.2947 24.2923 -9.5139 -2.7386 156.3980 0.1440 -2.4009 0.4504 -0.1967 -3.6556 0.5182 8.8930 6.5137 18.6084 -5.8395 -1.0760 4.3323 -30.4859 -11.4928 -9.5169 -1.5236 -11.3632 -8.5797 4.7919 -13.5338 16.5934 25.2692 -25.0999 67.2679 0.0000 0.0000 36.9697 7.5896 8.3393 7.9740 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.8555 17.7839 -11.2837 2.8211 16.8266 -34.2020 -0.0000 0.0000 3.4335 -7.3946 -3.8814 -0.9821 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -5.9487 -3.0722 -14.4674 11.6096 0.0000 0.0000 -10.2178 5.0267 -7.7199 -1.6692 0.0000 -0.0000 -19.9506 -12.1977 18.7254 21.6283 0.0000 0.0000 -9.9019 2.8766 -13.3369 -4.6460 0.0000 -0.0000 - -4.9874 -110.0386 24.4153 -10.0118 -4.7154 159.4461 -0.4805 -2.1038 0.4298 -0.5364 -3.6059 0.4666 9.1245 5.7112 17.9460 -5.8829 -1.5444 4.3196 -30.5532 -12.6421 -10.4488 -0.6088 -11.9150 -8.8138 5.4813 -14.6211 16.7486 27.7647 -17.9041 68.2649 0.0000 0.0000 28.4937 6.1960 2.8403 7.5095 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -2.8208 18.1672 -11.0287 7.7486 20.2607 -38.7039 -0.0000 0.0000 6.1616 -2.7544 1.4970 0.7733 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -6.1587 -3.5855 -7.8390 15.0318 0.0000 0.0000 -10.7333 0.7439 1.5269 -0.8668 0.0000 -0.0000 -19.0383 -13.5414 19.3052 19.9565 0.0000 0.0000 -8.8809 3.9900 -17.3869 -4.5683 0.0000 -0.0000 - -4.9094 -109.7876 24.5425 -10.3111 -6.8626 163.8218 -0.7801 -2.4527 0.3296 -0.6357 -3.2707 0.4510 8.9436 5.5488 16.9311 -6.1505 -1.7753 4.1264 -31.1290 -13.2838 -11.8908 0.4643 -11.9911 -9.7093 6.1933 -16.3122 17.1876 30.4940 -8.1036 68.0956 0.0000 0.0000 19.7053 5.3948 -3.9632 5.7114 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -2.8061 18.5496 -11.1113 13.1412 22.4139 -43.4619 -0.0000 0.0000 5.9996 4.3324 6.3162 -1.4353 0.0000 -0.0000 0.0000 0.0000 0.0000 0.0000 -5.4381 -4.4472 -5.1257 15.8427 0.0000 0.0000 -9.7245 -3.0265 6.1396 -0.1439 0.0000 -0.0000 -18.5897 -14.6984 19.2199 18.2494 0.0000 0.0000 -7.6307 5.0351 -22.2547 -4.6488 0.0000 -0.0000 - -4.8279 -109.5348 24.6466 -9.7721 -8.4473 168.6872 -0.7117 -2.5165 0.2515 -0.6557 -2.9152 0.4795 9.2501 5.9314 16.3626 -6.3243 -1.8503 4.0602 -32.1703 -12.7321 -13.7834 0.3789 -11.5610 -11.1504 6.3185 -16.5123 16.9582 33.1682 -1.8747 66.9846 0.0000 0.0000 12.9913 4.5755 -10.3402 3.2578 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -1.9093 18.7957 -12.2963 17.4814 23.8468 -48.2717 -0.0000 0.0000 4.1588 7.1688 7.5688 -5.3035 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -3.8360 -4.6787 -5.4315 15.4548 0.0000 0.0000 -8.5267 -3.1351 4.9036 -0.2166 0.0000 -0.0000 -17.6429 -14.7819 17.1609 16.0987 0.0000 0.0000 -6.1120 6.0212 -24.8122 -4.8194 0.0000 -0.0000 - -4.7421 -109.3614 24.7249 -9.6576 -9.6984 172.6433 -0.7914 -2.4238 0.2354 -0.8443 -2.9054 0.5102 9.8376 6.5963 16.4298 -6.3860 -1.7564 4.1546 -33.3250 -11.4116 -15.4759 -0.7599 -11.0547 -12.6427 6.1141 -16.0995 16.0910 34.0816 -0.9690 65.0069 0.0000 0.0000 9.6555 5.2848 -14.4862 0.6193 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.4803 19.5470 -13.4853 19.8761 24.9894 -52.6170 -0.0000 0.0000 2.3386 2.4834 6.8837 -7.0510 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -3.4531 -4.6429 -7.9884 15.4485 0.0000 0.0000 -6.2699 -0.7823 1.3538 -0.4107 0.0000 -0.0000 -17.1952 -15.0388 15.2131 13.8729 0.0000 0.0000 -4.2753 7.1610 -26.5404 -4.9285 0.0000 -0.0000 - -4.6455 -109.2900 24.7826 -10.4755 -10.8944 175.2128 -1.1715 -2.5858 0.2608 -1.1194 -2.9705 0.5262 10.2337 7.3965 16.4596 -6.4619 -1.4798 4.1494 -34.2534 -10.0547 -16.3825 -2.0553 -10.9111 -13.7030 5.9964 -16.3328 15.4422 32.4753 -3.3335 62.0224 0.0000 0.0000 9.7121 6.6894 -14.7236 -0.1400 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.8228 20.8326 -13.8147 20.3824 26.2595 -55.4520 -0.0000 0.0000 1.1525 -3.8006 5.1980 -6.6311 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -4.9856 -4.2682 -11.0432 16.4012 0.0000 0.0000 -3.7223 0.5963 -0.8629 -0.3771 0.0000 -0.0000 -17.9403 -15.7118 13.9555 12.1695 0.0000 0.0000 -2.7692 7.7409 -28.2177 -4.9732 0.0000 -0.0000 - -4.5587 -109.2359 24.8194 -10.9019 -11.5208 176.6576 -1.2601 -2.6937 0.3254 -1.1645 -2.8162 0.5556 10.6259 8.2926 16.1920 -6.5246 -1.0776 4.0038 -34.7360 -8.7119 -16.3800 -3.0919 -10.9835 -14.2440 5.7845 -16.7716 15.2312 28.9187 -7.2648 58.7547 0.0000 0.0000 11.5387 4.8776 -12.0726 1.0462 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 1.8025 21.8595 -13.7824 19.9600 27.3971 -56.6597 -0.0000 0.0000 0.6504 -5.7540 2.7384 -5.9819 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.2809 -2.9579 -12.5813 17.4374 0.0000 0.0000 -2.6724 0.5795 -1.2095 -0.3001 0.0000 -0.0000 -18.0814 -15.7809 11.8214 10.6392 0.0000 0.0000 -2.1320 7.4857 -27.6813 -5.0491 0.0000 -0.0000 - -4.4838 -109.1523 24.8369 -10.3361 -11.4545 177.2558 -0.9274 -2.4538 0.4071 -0.9744 -2.6562 0.5759 11.3135 9.1715 15.9142 -6.4738 -0.6223 3.8405 -34.7692 -7.1772 -15.6191 -4.0261 -10.7794 -14.4208 5.1985 -16.7692 14.9608 23.9906 -12.4867 55.9584 0.0000 0.0000 13.6394 -0.7111 -8.7733 2.1044 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 2.5006 22.1668 -13.7835 19.9168 27.5986 -57.3074 -0.0000 0.0000 0.9978 -4.6505 0.2764 -5.7172 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.0372 -1.0399 -11.9717 17.4047 0.0000 0.0000 -2.7788 0.7475 -0.7070 -0.0933 0.0000 -0.0000 -16.6072 -15.2744 8.8313 8.8821 0.0000 0.0000 -1.8690 7.1147 -24.7558 -5.2291 0.0000 -0.0000 - -4.3919 -109.0941 24.8460 -9.8306 -11.3759 177.2550 -0.6505 -2.2467 0.4563 -0.8440 -2.6316 0.5723 11.9385 9.7603 15.6646 -6.3384 -0.1005 3.6843 -34.5069 -5.4814 -14.3498 -4.9567 -10.1261 -14.3473 4.4781 -16.7016 14.4428 17.9455 -18.3163 53.4256 0.0000 0.0000 15.8633 -4.2428 -5.2026 2.1113 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 2.9259 22.0141 -13.5332 20.5792 26.9498 -57.9109 -0.0000 0.0000 1.9527 -3.9308 -1.7144 -5.2267 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -5.5575 0.5554 -10.6607 16.5288 0.0000 0.0000 -2.9297 1.6035 0.2558 0.3966 0.0000 0.0000 -15.1427 -15.1829 6.9758 7.3894 0.0000 0.0000 -1.4734 7.1254 -22.5116 -5.5288 0.0000 -0.0000 - -4.2715 -109.0968 24.8576 -9.9718 -11.5764 177.0512 -0.5106 -2.3310 0.4558 -0.8228 -2.6446 0.5490 12.0159 9.9512 15.3018 -6.2018 0.5221 3.4674 -34.0897 -3.6362 -12.7549 -5.7636 -9.1626 -14.1264 4.1028 -17.0283 13.9554 11.8850 -22.5431 51.0719 0.0000 0.0000 18.3757 -2.4194 -1.4937 1.6384 0.0000 -0.0000 -0.0000 0.0000 -0.0000 0.0000 3.2194 21.6018 -12.8838 21.1362 26.6138 -58.2011 -0.0000 0.0000 2.9911 -4.2530 -3.0068 -4.4410 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -5.8874 1.5965 -10.5007 15.7884 0.0000 0.0000 -3.0288 2.1638 1.7077 0.9016 0.0000 0.0000 -14.7701 -15.6556 6.7135 6.4906 0.0000 0.0000 -1.0287 7.2507 -22.1930 -5.8847 0.0000 -0.0000 - -4.1387 -109.1234 24.8656 -10.1998 -11.6323 176.8509 -0.3456 -2.4038 0.4510 -0.7384 -2.5578 0.5336 11.7358 9.7993 14.9059 -6.0619 1.1792 3.2137 -33.4710 -1.4592 -10.8893 -6.3780 -8.0273 -13.8774 4.1795 -17.3663 13.6222 7.2894 -23.7912 49.4296 0.0000 0.0000 20.8280 0.4671 1.5508 1.3134 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.7138 20.8913 -12.1099 21.1261 27.0827 -58.3789 -0.0000 0.0000 3.9449 -4.4564 -3.8527 -3.7755 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.5254 2.5244 -11.4665 15.6258 0.0000 0.0000 -3.2446 1.6114 2.5859 0.8408 0.0000 0.0000 -14.6235 -16.0036 6.4228 5.7311 0.0000 0.0000 -0.6463 7.2539 -21.8011 -6.1023 0.0000 -0.0000 - -4.0047 -109.1270 24.8594 -9.6887 -11.2576 176.7371 0.0895 -2.2350 0.4601 -0.5274 -2.3755 0.5329 11.5813 9.5516 14.5633 -5.8764 1.7465 2.9895 -32.5927 0.9526 -8.8545 -6.7546 -6.8670 -13.6402 4.3696 -17.4094 13.3736 4.2324 -23.0290 48.3246 0.0000 0.0000 22.9937 0.4152 3.3936 1.2838 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 4.3908 20.0873 -11.3159 21.1054 27.4752 -59.0131 -0.0000 0.0000 4.8121 -4.2503 -4.5260 -3.0020 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -6.4506 3.4976 -12.0626 15.8840 0.0000 0.0000 -3.6843 0.1193 1.7033 0.1055 0.0000 0.0000 -13.4105 -15.8609 5.2513 4.5693 0.0000 0.0000 -0.2322 7.4315 -20.1190 -6.0834 0.0000 -0.0000 - -3.8565 -109.1386 24.8360 -8.8990 -10.6568 176.7373 0.5167 -2.0163 0.4616 -0.3501 -2.1977 0.5328 11.5776 9.4624 14.1396 -5.6774 2.2025 2.7332 -31.5245 3.1133 -6.8727 -6.7885 -5.8566 -13.3273 4.5061 -17.5701 13.2450 1.8157 -21.7103 47.1965 0.0000 0.0000 25.0156 -0.9914 3.7928 1.3349 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 4.8868 19.6746 -10.3491 21.4840 26.9504 -59.9624 -0.0000 0.0000 5.3838 -3.9621 -4.9512 -1.8960 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -6.2849 4.1749 -11.4596 16.8112 0.0000 0.0000 -5.3808 -1.6226 -0.3789 -0.5847 0.0000 -0.0000 -11.9819 -15.5492 4.3266 3.4938 0.0000 0.0000 0.1626 7.8548 -18.8086 -5.9340 0.0000 -0.0000 - -3.6805 -109.1912 24.7972 -8.3937 -9.9750 176.9374 0.6894 -1.8016 0.4415 -0.2841 -2.0830 0.5090 11.5103 9.4760 13.5283 -5.4895 2.6267 2.3773 -30.3164 4.7227 -5.0815 -6.5113 -4.9459 -12.8579 4.5805 -18.0480 13.1751 -0.3066 -20.6900 46.0637 0.0000 0.0000 26.8512 -0.7742 3.2524 1.4103 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 5.0779 19.6607 -9.2206 21.9666 26.0481 -60.6928 -0.0000 0.0000 5.4537 -3.6274 -5.2754 -1.1671 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.5800 4.4340 -10.4994 18.2549 0.0000 0.0000 -8.9471 -3.2636 -1.7451 -0.7613 0.0000 -0.0000 -11.3948 -15.2462 4.3306 3.0867 0.0000 0.0000 0.4239 8.2521 -18.9542 -5.8334 0.0000 -0.0000 - -3.4835 -109.2628 24.7461 -7.8550 -9.1505 177.2701 0.7480 -1.5042 0.4069 -0.2615 -1.9869 0.4831 11.4778 9.3998 12.8665 -5.2577 2.9786 2.0255 -28.9658 6.0889 -3.4451 -6.1394 -3.8977 -12.2291 4.3940 -18.4011 12.8886 -1.8252 -20.3767 45.2308 0.0000 0.0000 28.1643 0.6337 2.7292 1.4980 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 5.1750 19.6378 -8.2057 22.3420 25.7281 -61.2283 -0.0000 0.0000 5.1446 -3.5414 -5.8972 -1.5022 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -6.5587 4.4712 -10.1601 19.1582 0.0000 0.0000 -12.9595 -5.1231 -1.3292 -0.8091 0.0000 -0.0000 -11.0875 -14.8457 4.4538 3.0432 0.0000 0.0000 0.6598 8.6155 -19.2674 -5.8438 0.0000 -0.0000 - -3.2743 -109.3500 24.6865 -7.1006 -8.2073 177.3829 0.7953 -1.2888 0.3820 -0.2785 -1.9151 0.4625 11.6416 9.3268 12.3970 -4.9569 3.2203 1.7845 -27.6102 7.5719 -1.9262 -5.7592 -2.6209 -11.4460 3.8179 -18.4856 12.3259 -2.5803 -20.6116 44.8976 0.0000 0.0000 28.6293 0.9087 2.5438 1.3616 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 5.2260 19.4732 -7.4131 22.8262 25.8687 -61.9503 -0.0000 0.0000 4.7819 -4.2949 -6.6037 -2.3739 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -6.0374 4.2893 -9.9671 19.2817 0.0000 0.0000 -15.9849 -7.0817 0.0738 -0.8480 0.0000 -0.0000 -10.5275 -14.3975 4.2422 2.9850 0.0000 0.0000 0.9621 9.2150 -18.7749 -5.9448 0.0000 -0.0000 - -3.0496 -109.4968 24.6159 -6.5897 -7.1494 176.9624 0.7296 -1.2465 0.3914 -0.3794 -1.9160 0.4586 11.8141 9.3980 12.1475 -4.6637 3.4221 1.6349 -26.4206 9.1492 -0.5234 -5.2421 -1.3062 -10.5208 3.0225 -18.4242 11.7589 -2.6637 -21.0592 45.1603 0.0000 0.0000 28.2586 -0.2229 2.3426 1.0207 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 0.0000 5.0771 19.3452 -6.7772 23.4692 25.9485 -62.7511 -0.0000 0.0000 4.4674 -5.5752 -6.9382 -2.7559 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -6.1990 3.8434 -8.7460 19.7743 0.0000 0.0000 -18.7800 -7.9619 1.1525 -0.2918 0.0000 -0.0000 -10.3787 -13.9944 4.5848 3.2827 0.0000 0.0000 1.1595 9.9693 -18.4761 -6.1049 0.0000 -0.0000 - -2.8027 -109.7191 24.5232 -6.5207 -5.8381 176.1588 0.4841 -1.1237 0.4228 -0.5027 -1.9903 0.4459 11.8161 9.4543 11.9483 -4.4093 3.7129 1.4878 -25.4165 10.5147 0.7529 -4.5544 -0.1675 -9.4719 2.2721 -18.1218 11.3950 -2.0696 -21.3966 46.0402 0.0000 0.0000 27.4716 -1.1153 1.8091 0.7672 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 4.7235 19.0323 -6.3062 24.0302 26.3103 -63.3584 -0.0000 0.0000 4.1835 -6.4142 -7.0548 -2.6250 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -7.4389 3.3046 -6.5180 20.8759 0.0000 0.0000 -21.7535 -6.9406 1.4252 0.8898 0.0000 0.0000 -11.1501 -13.5424 5.9072 4.3300 0.0000 0.0000 1.1665 10.5710 -19.1211 -6.2937 0.0000 -0.0000 - -2.5472 -109.9655 24.4017 -6.1136 -4.0536 175.3923 0.3907 -0.7488 0.4329 -0.5369 -2.0766 0.4240 11.9295 9.5187 11.6347 -4.1218 4.0339 1.3084 -24.4782 11.6048 1.8820 -3.8890 0.7044 -8.3729 1.6293 -17.4919 11.1362 -0.8412 -21.1609 47.4163 0.0000 0.0000 26.7907 -0.8090 0.9901 0.6951 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 4.2916 18.2618 -6.2121 24.4767 27.0712 -63.7856 -0.0000 0.0000 4.0105 -6.5512 -7.0334 -2.6961 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -8.1179 3.2312 -4.6374 21.0263 0.0000 0.0000 -22.7520 -4.7806 1.1597 1.7825 0.0000 0.0000 -11.7223 -12.6529 7.0567 5.4728 0.0000 0.0000 1.1962 11.1045 -19.4242 -6.4629 0.0000 -0.0000 - -2.2944 -110.2412 24.2583 -5.4138 -1.9421 174.6811 0.4281 -0.7428 0.4251 -0.5613 -2.1343 0.3988 12.3624 10.1079 11.2854 -3.8039 4.3860 1.0630 -23.6557 12.5572 2.8312 -3.3474 1.3449 -7.3454 1.0151 -17.0391 10.8389 0.5906 -19.9733 49.0681 0.0000 0.0000 26.3875 0.1438 0.2230 0.7636 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.5952 17.6039 -6.5166 25.0807 26.5786 -63.9481 -0.0000 0.0000 3.9383 -6.3705 -6.0868 -3.1538 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 -8.0952 3.8468 -3.6790 19.8806 0.0000 0.0000 -20.4035 -2.9751 0.4929 1.8014 0.0000 0.0000 -11.8729 -11.3618 7.4471 6.1131 0.0000 0.0000 1.3873 11.8721 -18.6747 -6.5881 0.0000 -0.0000 - -2.0211 -110.6131 24.1167 -5.3619 -0.2676 173.7721 0.4687 -1.9253 0.4447 -0.6943 -2.4892 0.3453 12.6650 11.5564 11.0013 -3.5977 4.9398 0.7292 -23.1188 13.3041 3.6733 -2.8280 1.8899 -6.4008 0.3188 -16.9792 10.5865 1.9709 -18.4061 50.8820 0.0000 0.0000 25.9946 0.8589 -0.1337 1.0061 0.0000 -0.0000 -0.0000 0.0000 0.0000 0.0000 2.6388 17.8837 -6.8375 25.7600 23.1872 -63.5110 -0.0000 0.0000 3.6869 -5.8554 -3.9211 -3.7728 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -9.3795 4.3102 -2.9549 19.5665 0.0000 0.0000 -16.9915 -2.0953 -0.2010 1.3382 0.0000 0.0000 -12.7539 -10.6893 7.8172 6.5170 0.0000 0.0000 1.7148 12.7776 -18.0572 -6.7373 0.0000 -0.0000 - -1.6913 -111.1056 23.9960 -6.6047 0.3146 172.8695 0.2609 -3.8656 0.5571 -0.8883 -3.0167 0.2380 12.3755 12.3410 10.5630 -3.5144 5.6743 0.3185 -22.9214 13.5245 4.6529 -2.4082 2.4790 -5.2991 -0.5106 -16.4147 10.6912 3.5318 -17.3901 52.8905 0.0000 0.0000 25.2792 1.0459 -0.1479 1.4261 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2.0829 18.5695 -6.9296 25.9496 18.5185 -62.6195 -0.0000 0.0000 3.1601 -4.6874 -2.2610 -4.6573 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -13.3868 3.5606 -1.8896 21.9866 0.0000 0.0000 -15.7372 -1.2899 -0.6469 1.2602 0.0000 0.0000 -15.5636 -11.5977 8.6993 7.5812 0.0000 0.0000 2.4212 13.4381 -18.7639 -7.0800 0.0000 -0.0000 - -1.3025 -111.5819 23.9206 -7.4976 -0.2065 172.7837 0.1679 -5.0482 0.5845 -0.8983 -3.0931 0.1027 12.1383 10.5108 9.3739 -3.3396 5.9009 -0.0275 -22.8178 12.8936 5.8097 -2.4474 3.0389 -3.7698 -1.5111 -14.4888 11.2878 5.1638 -17.1563 54.8863 0.0000 0.0000 24.2890 1.2728 -0.4690 1.7711 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 2.5132 17.9522 -7.1320 25.3266 16.0865 -62.3466 -0.0000 0.0000 2.9248 -3.3663 -2.5355 -5.7057 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -16.8093 1.7696 -1.7014 24.8658 0.0000 0.0000 -16.2249 0.0550 -0.7681 1.7634 0.0000 0.0000 -18.5961 -13.5891 9.2250 9.3745 0.0000 0.0000 3.7956 13.7127 -19.8878 -7.7222 0.0000 -0.0000 - -0.9133 -111.9355 23.9205 -6.9817 -1.1416 173.6934 0.2792 -5.1723 0.4329 -0.8356 -2.4298 0.0186 12.7271 7.0919 7.3848 -2.9702 4.9807 -0.1398 -22.4397 11.0169 6.4526 -2.9360 3.2401 -1.8690 -2.5726 -12.2879 11.8916 5.9949 -17.1155 56.4216 0.0000 0.0000 23.3306 2.2894 -1.5456 1.7190 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 3.2073 15.2813 -8.0232 24.6917 16.4748 -62.9586 -0.0000 0.0000 3.1346 -2.6687 -3.0904 -6.6312 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -17.0836 0.0080 -2.7790 25.2705 0.0000 0.0000 -16.0245 1.5573 -0.9182 2.4028 0.0000 0.0000 -20.4549 -15.3107 9.1736 11.6714 0.0000 0.0000 5.2834 13.6510 -20.0172 -8.4537 0.0000 -0.0000 - -0.6097 -112.1949 23.9889 -6.0004 -1.2341 174.4744 0.2622 -4.5044 0.2695 -0.8859 -1.5144 0.0236 13.6363 4.3652 5.7552 -2.5480 3.3258 0.0314 -21.6128 7.9367 6.0062 -3.0933 2.7157 -0.1025 -3.4320 -11.0344 11.8765 5.7159 -17.2373 57.4264 0.0000 0.0000 22.4819 3.9016 -2.6754 1.2605 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 2.9721 12.3365 -9.4468 24.8313 16.6754 -63.3408 -0.0000 0.0000 3.0973 -2.1670 -1.8306 -7.6308 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.8316 -0.6801 -3.7996 23.6680 0.0000 0.0000 -14.6662 2.6269 -0.9393 3.0276 0.0000 0.0000 -21.5672 -15.7038 9.6444 14.5229 0.0000 0.0000 5.5434 13.2657 -19.1459 -8.9008 0.0000 -0.0000 - -0.4351 -112.4013 24.0922 -5.4182 -0.0256 173.7651 0.0976 -3.6177 0.2309 -0.9978 -0.8701 0.1146 14.0833 3.3901 5.4612 -2.2848 1.8837 0.3907 -20.5733 4.3178 4.7794 -2.2901 1.2851 0.9568 -3.9430 -10.3736 11.3527 5.1755 -17.7020 58.3434 0.0000 0.0000 21.5923 4.9137 -2.6523 0.6715 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 1.9453 11.2764 -10.5801 24.7644 14.9247 -62.5483 -0.0000 0.0000 2.3890 -1.1533 0.0896 -8.7605 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -15.2393 0.0320 -3.9319 22.2457 0.0000 0.0000 -13.4926 3.1873 0.1260 3.6896 0.0000 0.0000 -22.0448 -14.8010 10.8594 17.5332 0.0000 0.0000 4.0904 12.6398 -18.1050 -9.0244 0.0000 -0.0000 - -0.3644 -112.5572 24.1945 -5.1281 1.8533 171.5009 -0.0451 -3.0794 0.3051 -1.0205 -0.7363 0.2101 13.8887 3.8630 6.2737 -2.1404 1.1143 0.7851 -19.5538 0.7793 3.3989 -0.9623 -0.8292 1.3350 -4.1412 -9.4050 10.8612 5.1967 -18.0352 59.5970 0.0000 0.0000 20.6967 4.7393 -1.4763 0.2839 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 0.9603 11.6845 -10.9074 23.0344 13.0849 -60.8802 -0.0000 0.0000 1.2649 -0.3115 0.3208 -9.2095 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -15.6455 1.4997 -3.4137 21.8122 0.0000 0.0000 -12.9570 3.3755 2.3927 4.1282 0.0000 0.0000 -21.7062 -13.2643 11.4777 19.9566 0.0000 0.0000 2.0140 11.9204 -17.4430 -8.9897 0.0000 -0.0000 - -0.3349 -112.6588 24.2734 -4.6579 3.5409 168.8331 -0.0166 -2.9397 0.3958 -0.9694 -0.8322 0.2704 13.5206 4.6082 7.2401 -1.9253 0.7397 1.1187 -18.5914 -2.4154 2.2648 -0.0657 -2.9962 1.5103 -4.2099 -8.0689 10.5906 5.5055 -17.8478 61.1911 0.0000 0.0000 20.1171 4.2557 -0.5227 0.1398 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 0.2427 11.9794 -10.7983 19.6215 12.7764 -59.0331 -0.0000 0.0000 0.0158 -0.6689 -1.1878 -8.4907 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -15.9670 2.7984 -2.5718 21.4821 0.0000 0.0000 -12.3493 3.3882 4.5622 4.1036 0.0000 0.0000 -20.7100 -11.6029 10.2166 21.5901 0.0000 0.0000 0.3325 11.0497 -17.1691 -8.7350 0.0000 -0.0000 - -0.2981 -112.7381 24.3214 -4.2698 4.5831 166.8957 -0.0605 -3.0241 0.4632 -0.9836 -0.8498 0.2944 13.3737 4.8003 7.6722 -1.6347 0.2810 1.3596 -17.6985 -5.2248 1.4376 0.0586 -4.5914 1.7728 -4.3789 -7.0624 10.3483 5.3544 -17.7193 62.6660 0.0000 0.0000 20.1423 4.3764 -0.5766 0.0371 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.5102 11.6629 -10.8417 16.0943 12.9877 -57.2528 -0.0000 -0.0000 -1.2571 -1.9899 -3.0686 -7.4420 -0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -15.9922 3.3843 -1.4432 20.8308 0.0000 0.0000 -11.5669 3.5391 5.4648 3.8888 0.0000 0.0000 -20.0890 -10.2574 7.3955 23.1567 0.0000 0.0000 -0.9619 9.9548 -17.4496 -8.2191 0.0000 -0.0000 - -0.2435 -112.8163 24.3495 -4.0659 5.0147 166.1372 -0.0535 -3.0393 0.4738 -1.0129 -0.7425 0.2871 13.2982 4.1758 7.4785 -1.4303 -0.4133 1.5606 -16.9522 -7.5871 0.7971 -0.1123 -5.4225 2.0180 -4.7658 -6.7637 10.0662 4.7674 -18.1453 63.4814 0.0000 0.0000 20.8075 4.6726 -0.8485 -0.2141 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -1.3682 10.8439 -11.1903 13.7119 12.6822 -55.9210 -0.0000 -0.0000 -2.2586 -3.4834 -4.3169 -6.9757 -0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 -15.8850 3.4135 -0.5021 20.2394 0.0000 0.0000 -11.0925 3.8851 5.3566 3.8283 0.0000 0.0000 -20.2893 -9.4132 4.7151 25.2130 0.0000 0.0000 -1.8443 9.0191 -18.6390 -7.6722 0.0000 -0.0000 - -0.1865 -112.9032 24.3669 -4.0012 5.1332 166.4016 0.1223 -2.7580 0.4235 -0.9308 -0.5240 0.2681 13.0747 2.7732 6.8962 -1.4186 -1.2819 1.7809 -16.4630 -9.3376 0.1696 -0.0757 -5.7288 2.0511 -5.2089 -6.9099 9.8528 4.1686 -18.3470 63.5983 0.0000 0.0000 21.7452 4.3590 -0.2404 -0.6639 -0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -2.1100 9.4901 -11.7745 12.2669 12.3413 -55.3911 -0.0000 -0.0000 -2.6466 -4.5212 -4.3646 -7.0188 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -15.8826 3.3896 -0.5855 20.0112 0.0000 0.0000 -10.8548 4.0666 5.2589 3.7825 0.0000 0.0000 -21.2363 -8.9499 3.5251 27.5808 0.0000 0.0000 -1.8404 8.7181 -20.1264 -7.3721 0.0000 -0.0000 - -0.1453 -112.9949 24.3795 -3.9596 5.1987 167.2112 0.4760 -2.3072 0.3454 -0.7511 -0.2733 0.2386 12.7518 1.1217 6.2402 -1.5484 -2.1847 2.0359 -16.2685 -10.5834 -0.5977 0.1170 -5.8219 1.8297 -5.4578 -7.2164 9.7000 3.5712 -17.7715 63.5675 0.0000 0.0000 22.2115 3.8112 1.1437 -1.2235 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -2.6761 7.7304 -12.6184 11.1240 12.1877 -55.5327 -0.0000 -0.0000 -2.3239 -4.5900 -2.8306 -7.0099 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -15.9277 3.5957 -1.6338 19.9442 0.0000 0.0000 -10.4352 3.7843 5.4940 3.4652 0.0000 0.0000 -22.4329 -8.6265 3.9087 29.5833 0.0000 0.0000 -1.0896 8.9984 -20.5253 -7.3496 0.0000 -0.0000 - -0.1333 -113.0746 24.3956 -3.9413 5.4159 168.0357 0.8686 -1.9602 0.2834 -0.5897 -0.0292 0.2302 12.4545 -0.2144 5.7392 -1.7069 -2.9401 2.2793 -16.3032 -11.6199 -1.4772 0.1874 -5.8954 1.4661 -5.5840 -7.4177 9.5976 2.8681 -17.6857 63.8472 0.0000 0.0000 21.6841 3.8445 2.3486 -1.8195 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -3.2852 6.0997 -13.6670 10.2113 11.6431 -55.8922 -0.0000 -0.0000 -1.5567 -3.4742 -0.2881 -6.8615 0.0000 0.0000 0.0000 0.0000 0.0000 -0.0000 -16.0104 4.0365 -2.6297 19.8664 0.0000 0.0000 -9.9168 3.2965 5.6760 3.0105 0.0000 0.0000 -23.3655 -8.1762 5.2035 30.5159 0.0000 0.0000 -0.5500 9.4383 -19.3794 -7.3878 0.0000 -0.0000 - -0.1466 -113.1260 24.4218 -4.0170 5.7847 168.6197 1.1591 -1.7997 0.2334 -0.4781 0.1109 0.2174 12.1476 -1.0692 5.4557 -1.8197 -3.4362 2.4654 -16.4591 -12.6370 -2.2762 0.1511 -6.0198 1.1176 -5.8523 -7.2639 9.7349 2.2143 -19.4620 64.1681 0.0000 0.0000 20.5338 4.4315 2.8229 -2.3410 0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -4.0000 4.7640 -14.6257 9.6209 10.7101 -56.3007 -0.0000 -0.0000 -0.7324 -1.7652 1.8045 -6.7922 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -16.1333 4.5451 -3.0571 19.6779 0.0000 0.0000 -9.5820 3.1445 5.6369 2.7924 0.0000 0.0000 -23.8270 -7.5417 6.5533 30.0469 0.0000 0.0000 -0.6270 9.7480 -17.7474 -7.4499 0.0000 -0.0000 - -0.1675 -113.1517 24.4518 -4.1614 6.1084 169.0502 1.3714 -1.7329 0.1800 -0.3782 0.1771 0.1950 11.7788 -1.7414 5.2550 -1.8785 -3.7927 2.6168 -16.6599 -13.5698 -2.8627 0.2012 -6.2132 0.8959 -6.2571 -6.7594 10.1873 1.8554 -22.1221 64.1281 0.0000 0.0000 19.5725 4.9555 2.7454 -2.6755 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -4.7166 3.4434 -15.2991 9.1096 10.1163 -56.7744 -0.0000 -0.0000 -0.1872 -0.4200 2.7104 -6.7200 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -16.1417 4.9293 -3.2870 19.2326 0.0000 0.0000 -9.3440 3.5385 5.5500 2.9450 0.0000 0.0000 -23.8841 -6.8876 7.2527 28.4004 0.0000 0.0000 -0.8099 9.8982 -16.8479 -7.7379 0.0000 -0.0000 - -0.1823 -113.1735 24.4724 -4.3558 6.1869 169.5519 1.5820 -1.6970 0.1298 -0.2935 0.2437 0.1646 11.4089 -2.4737 5.0094 -1.9192 -4.1793 2.7793 -16.9232 -14.3886 -3.3422 0.3223 -6.4296 0.8135 -6.5472 -6.3535 10.6145 1.8733 -23.4627 64.0252 0.0000 0.0000 19.0709 5.1852 2.4053 -2.8887 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -5.3681 2.0898 -15.8197 8.3235 9.9868 -57.2221 -0.0000 -0.0000 -0.1224 0.1909 2.9673 -6.6151 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -15.9946 5.0455 -3.6802 18.5486 0.0000 0.0000 -9.0240 4.1949 5.4460 3.2902 0.0000 0.0000 -23.8360 -6.4418 7.1678 26.2698 0.0000 0.0000 -0.7324 9.9482 -16.9324 -8.1848 0.0000 -0.0000 - -0.1927 -113.2025 24.4823 -4.6095 6.0395 170.2321 1.7885 -1.6844 0.0989 -0.2414 0.3527 0.1461 11.1115 -3.2501 4.7076 -1.9789 -4.6230 2.9477 -17.2756 -15.1345 -3.8746 0.3225 -6.6343 0.7688 -6.6358 -6.3754 10.6761 2.0896 -23.2078 64.3048 0.0000 0.0000 18.6009 5.3251 2.0331 -2.9846 0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 -5.9547 1.0320 -16.3973 7.1442 9.8221 -57.5150 -0.0000 -0.0000 -0.5272 0.2648 3.1162 -6.6629 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -0.0000 -15.8302 4.9734 -4.2827 17.8540 0.0000 0.0000 -8.6986 4.6708 5.3270 3.5651 0.0000 0.0000 -23.9322 -6.2122 6.7849 24.3061 0.0000 0.0000 -0.5362 10.0209 -17.3864 -8.4175 0.0000 -0.0000 - -0.2062 -113.2297 24.4907 -4.8973 5.8076 171.0230 1.9649 -1.7056 0.0702 -0.1911 0.4302 0.1291 10.8410 -3.8969 4.4254 -2.0689 -5.0074 3.0944 -17.6626 -15.8448 -4.4797 0.1772 -6.8273 0.6784 -6.6810 -6.6634 10.4877 2.2499 -22.9056 64.7230 0.0000 0.0000 17.9298 5.3296 1.7805 -2.9128 0.0000 0.0000 -0.0000 -0.0000 0.0000 -0.0000 -6.4573 0.2676 -17.0130 5.6884 9.6128 -57.7755 -0.0000 -0.0000 -1.1466 -0.2030 3.0683 -6.8535 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.7213 4.9117 -5.1669 17.2877 0.0000 0.0000 -8.4347 4.7247 5.3909 3.5961 0.0000 0.0000 -24.1672 -6.0459 6.6422 22.7513 0.0000 0.0000 -0.3968 10.2749 -17.4834 -8.2948 0.0000 -0.0000 - -0.2341 -113.2449 24.5012 -5.1168 5.6793 171.7269 2.1766 -1.6753 0.0362 -0.0999 0.4788 0.1158 10.5097 -4.3887 4.2256 -2.2006 -5.2930 3.2194 -17.9582 -16.4264 -5.0162 0.0406 -7.0204 0.5457 -6.7484 -6.7981 10.3606 2.3626 -23.3335 64.8746 0.0000 0.0000 17.2988 5.0156 1.6300 -2.7379 0.0000 0.0000 0.0000 0.0000 -0.0000 -0.0000 -6.8844 -0.4558 -17.5029 4.2355 9.7160 -58.2023 -0.0000 -0.0000 -1.7193 -1.2394 2.7620 -7.0172 0.0000 0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.6558 5.0554 -6.2133 16.9192 0.0000 0.0000 -8.1808 4.4014 5.7119 3.3748 0.0000 0.0000 -24.3006 -5.7293 6.8612 21.4806 0.0000 0.0000 -0.3494 10.6350 -16.9256 -8.0527 0.0000 -0.0000 - -0.2866 -113.2515 24.5090 -5.2842 5.7032 172.2359 2.4259 -1.5428 -0.0011 0.0271 0.5416 0.1071 10.1117 -4.7972 4.1107 -2.3740 -5.5168 3.3362 -18.0984 -16.8303 -5.3887 -0.0252 -7.1848 0.4151 -6.7278 -6.7150 10.3875 2.5489 -23.7940 64.8187 0.0000 0.0000 16.8309 4.6580 1.3368 -2.5586 0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -7.2488 -1.1605 -17.7839 3.0739 9.9366 -58.8729 -0.0000 -0.0000 -2.1254 -2.2554 2.4738 -7.1481 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.7374 5.3827 -6.9452 16.8385 0.0000 0.0000 -7.9452 3.9035 5.9329 3.0336 0.0000 0.0000 -24.3166 -5.2238 7.1243 20.4661 0.0000 0.0000 -0.4316 10.8342 -15.9923 -7.9684 0.0000 -0.0000 - -0.3615 -113.2502 24.5123 -5.4158 5.7336 172.6257 2.6491 -1.3957 -0.0368 0.1386 0.5951 0.0970 9.7802 -5.1354 4.0181 -2.5424 -5.7032 3.4205 -18.1264 -17.1043 -5.6130 -0.0968 -7.3063 0.2810 -6.5624 -6.6417 10.4975 2.7728 -23.7460 64.8386 0.0000 0.0000 16.2798 4.6508 0.7391 -2.3613 0.0000 -0.0000 -0.0000 -0.0000 0.0000 0.0000 -7.6009 -1.7164 -17.9262 2.3245 9.8861 -59.6951 -0.0000 -0.0000 -2.4082 -2.4817 2.4036 -7.2972 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 -15.8931 5.7076 -7.1956 16.9505 0.0000 0.0000 -7.8001 3.4034 5.8189 2.7293 0.0000 0.0000 -24.3108 -4.7013 7.0830 19.8481 0.0000 0.0000 -0.5675 10.7659 -15.2203 -8.0341 0.0000 -0.0000 - -0.4442 -113.2380 24.5131 -5.5032 5.6135 172.9739 2.7755 -1.3334 -0.0568 0.2085 0.5776 0.0659 9.6053 -5.3996 3.9098 -2.6300 -5.8355 3.4659 -18.1125 -17.3228 -5.7531 -0.1684 -7.4078 0.1459 -6.3862 -6.6495 10.6653 2.9382 -23.6144 64.9031 0.0000 0.0000 15.5709 4.8274 0.0578 -2.1691 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -7.9351 -2.1871 -18.0298 1.8640 9.6221 -60.5245 -0.0000 -0.0000 -2.6451 -2.0370 2.5365 -7.3937 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -15.9233 5.8870 -7.3957 16.9963 0.0000 0.0000 -7.7096 2.9681 5.6766 2.5465 0.0000 0.0000 -24.3024 -4.3901 6.8362 19.6779 0.0000 0.0000 -0.5123 10.6025 -15.0206 -8.0608 0.0000 -0.0000 - -0.5272 -113.2217 24.5086 -5.5756 5.2818 173.2059 2.8566 -1.3743 -0.0714 0.2630 0.5696 0.0592 9.4977 -5.6889 3.8082 -2.6461 -5.9716 3.5220 -18.1139 -17.5446 -5.8352 -0.1272 -7.4854 0.0545 -6.3770 -6.5943 10.8615 3.1109 -23.9154 64.8499 0.0000 0.0000 14.9388 4.7670 -0.3710 -2.1774 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -8.2410 -2.7114 -18.1118 1.5326 9.5784 -61.3038 -0.0000 -0.0000 -2.8457 -1.6141 2.7668 -7.3777 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -15.8091 5.8612 -7.8653 16.8427 0.0000 0.0000 -7.5665 2.5823 5.8532 2.4842 0.0000 0.0000 -24.3348 -4.4402 6.7428 19.9935 0.0000 0.0000 -0.1943 10.6357 -15.3718 -8.0846 0.0000 -0.0000 - -0.6210 -113.2160 24.4942 -5.6918 4.7710 173.2006 3.0375 -1.3972 -0.0641 0.3508 0.5567 0.0498 9.2923 -5.9754 3.8234 -2.6853 -6.2256 3.6663 -18.2022 -17.8631 -5.9027 0.0040 -7.4715 0.0425 -6.5182 -6.5179 10.9905 3.3124 -24.4449 64.6949 0.0000 0.0000 14.4251 4.5974 -0.5108 -2.4134 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -8.5140 -3.2532 -18.1812 1.2513 9.9919 -62.0961 -0.0000 -0.0000 -2.9812 -1.4894 2.9358 -7.3344 -0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -15.7506 5.6321 -8.3196 16.6225 0.0000 0.0000 -7.3817 2.2044 6.2132 2.4889 0.0000 0.0000 -24.6283 -4.8400 6.8939 21.0763 0.0000 0.0000 0.1618 10.9584 -15.7593 -8.3452 0.0000 -0.0000 - -0.7363 -113.2214 24.4698 -5.7661 4.1148 172.9605 3.4120 -1.3947 -0.0193 0.5325 0.5887 0.0610 8.9811 -6.2993 3.9836 -2.7911 -6.5942 3.9179 -18.4075 -18.3297 -5.9883 0.0363 -7.3314 0.1088 -6.7388 -6.5153 11.0759 3.3897 -24.9418 64.4041 0.0000 0.0000 13.8670 4.8841 -0.3620 -2.6552 0.0000 -0.0000 0.0000 0.0000 -0.0000 -0.0000 -8.7841 -3.7569 -18.2509 1.0255 10.7910 -62.9842 -0.0000 -0.0000 -3.0946 -1.5014 3.0016 -7.3397 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 -15.7199 5.2191 -8.3437 16.4321 0.0000 0.0000 -7.2272 1.8333 6.3626 2.5028 0.0000 0.0000 -25.2693 -5.4904 7.0926 23.2082 0.0000 0.0000 0.3463 11.2713 -15.6923 -8.7232 0.0000 -0.0000 - -0.8691 -113.2246 24.4368 -5.6905 3.2484 172.5958 3.9226 -1.5055 0.0542 0.7869 0.5808 0.0704 8.7267 -6.6149 4.2730 -2.9042 -6.9980 4.2326 -18.6648 -18.9224 -6.0631 -0.1041 -7.1520 0.2404 -6.8767 -6.6474 11.1859 3.1512 -25.1967 63.9708 0.0000 0.0000 13.2452 5.4540 0.2646 -2.8891 0.0000 -0.0000 -0.0000 0.0000 0.0000 -0.0000 -9.1169 -4.2813 -18.3338 0.9611 11.6249 -63.9384 -0.0000 -0.0000 -3.2539 -1.6157 3.2319 -7.3587 0.0000 -0.0000 0.0000 -0.0000 -0.0000 0.0000 -15.4882 4.5741 -7.9698 16.1660 0.0000 0.0000 -7.0610 1.4918 6.1737 2.4986 0.0000 0.0000 -26.0617 -6.3807 7.2578 26.1900 0.0000 0.0000 0.1832 11.1191 -15.3150 -8.7410 0.0000 -0.0000 - -1.0306 -113.2160 24.3971 -5.5750 2.2767 172.1607 4.3776 -1.6770 0.1241 1.0049 0.5605 0.0767 8.6612 -6.9861 4.5963 -2.9643 -7.3951 4.5506 -18.9058 -19.6167 -6.0917 -0.2455 -7.0580 0.4180 -6.9522 -6.8791 11.2777 2.7806 -25.3362 63.5555 0.0000 0.0000 12.7553 5.6442 1.2482 -3.4196 0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -9.5504 -4.8096 -18.4089 1.1838 12.0060 -64.8730 -0.0000 -0.0000 -3.3792 -1.8077 3.8191 -7.3969 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.1759 3.8814 -7.4821 15.8718 0.0000 0.0000 -6.8573 1.1019 5.8999 2.4786 0.0000 0.0000 -26.7684 -7.3152 7.5307 29.2761 0.0000 0.0000 -0.7314 10.3813 -14.9624 -8.3753 0.0000 -0.0000 - -1.2454 -113.1950 24.3535 -5.6508 1.3878 171.7100 4.6196 -1.7186 0.1594 1.1013 0.5984 0.0823 8.7396 -7.4287 4.8055 -2.9812 -7.8194 4.8249 -19.1400 -20.4272 -6.1516 -0.2364 -7.0562 0.5921 -7.0664 -7.2209 11.2684 2.5731 -25.5835 63.3825 0.0000 0.0000 12.3295 5.3575 1.9419 -4.0661 -0.0000 0.0000 -0.0000 0.0000 0.0000 0.0000 -10.0204 -5.2474 -18.5023 1.6006 11.8177 -65.6821 -0.0000 -0.0000 -3.3157 -1.7326 4.5093 -7.5298 0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -15.1473 3.4193 -7.0595 15.7533 0.0000 0.0000 -6.6820 0.5214 5.7558 2.4454 0.0000 0.0000 -27.3739 -7.9653 7.8330 31.7106 0.0000 0.0000 -2.5997 9.5543 -14.3243 -8.2659 0.0000 -0.0000 - -1.5090 -113.1567 24.3060 -5.8651 0.6122 171.3215 4.7287 -1.6421 0.1810 1.1644 0.7115 0.0896 8.7708 -7.8733 4.8007 -2.9932 -8.2631 5.0387 -19.3525 -21.3177 -6.3024 -0.1535 -7.0104 0.7205 -7.1587 -7.6371 11.2817 2.5031 -25.9894 63.3388 0.0000 0.0000 11.7110 5.0030 2.2526 -4.0166 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -10.3822 -5.5829 -18.6490 1.8778 11.4993 -66.2481 -0.0000 -0.0000 -3.1168 -1.2172 5.0565 -7.6831 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 -15.3710 3.2147 -6.6182 15.8927 0.0000 0.0000 -6.6341 -0.2243 5.6074 2.4255 0.0000 0.0000 -27.6668 -8.2435 7.9479 32.8610 0.0000 0.0000 -4.6398 9.1712 -12.8919 -8.8088 0.0000 -0.0000 - -1.7863 -113.1008 24.2411 -6.2042 -0.2932 170.9659 4.7962 -1.6730 0.2111 1.2124 0.8121 0.0808 8.6396 -8.3143 4.6978 -3.0450 -8.6806 5.1941 -19.4676 -22.2426 -6.4371 -0.1162 -6.7991 0.8314 -7.0027 -8.0941 11.5034 2.3911 -26.3146 63.1544 0.0000 0.0000 10.9068 4.5530 3.5225 -3.0575 0.0000 0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.5963 -5.7949 -18.8274 1.8942 11.3625 -66.4370 -0.0000 -0.0000 -3.1351 -0.7584 5.5511 -7.6733 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 -15.7702 2.8793 -5.9332 16.2618 0.0000 0.0000 -6.7580 -0.9424 5.1542 2.4500 0.0000 0.0000 -27.4614 -8.6120 7.9874 32.4616 0.0000 0.0000 -5.9235 9.0376 -11.2851 -9.4232 0.0000 -0.0000 - -2.0794 -113.0299 24.1507 -6.8805 -1.3788 170.4801 4.7027 -1.6579 0.2053 1.1655 0.9296 0.0692 8.3650 -8.9239 4.6366 -3.1562 -9.1370 5.3344 -19.5729 -23.2843 -6.5262 -0.0730 -6.4967 0.9644 -6.5598 -8.8408 11.7749 2.3262 -26.3292 62.9330 0.0000 0.0000 10.0790 3.3101 7.1431 -2.1788 -0.0000 0.0000 -0.0000 -0.0000 -0.0000 0.0000 -10.6953 -5.6717 -19.0896 1.9754 10.8718 -66.1553 -0.0000 -0.0000 -3.6931 -1.0008 5.7890 -7.5582 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -16.5662 2.3134 -5.0334 16.8543 0.0000 0.0000 -7.0443 -1.6560 4.5228 2.4634 0.0000 0.0000 -26.8981 -9.2904 8.3650 30.8461 0.0000 0.0000 -6.6891 8.5081 -10.8510 -9.2187 0.0000 -0.0000 - -2.4270 -112.9466 24.0570 -8.0371 -2.2435 169.9019 4.2131 -1.0467 0.0911 0.9020 1.2072 0.0863 8.1546 -9.7572 4.5549 -3.2742 -9.7660 5.5026 -20.0235 -24.5230 -6.9225 0.0724 -6.3238 1.0895 -6.2040 -10.2128 11.7096 2.5607 -26.1881 62.9682 0.0000 0.0000 9.1337 1.4543 12.6997 -2.2492 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -10.6992 -5.0900 -19.7499 2.4942 9.3694 -65.3342 -0.0000 -0.0000 -4.8057 -1.8859 4.9009 -7.6259 0.0000 0.0000 0.0000 -0.0000 0.0000 -0.0000 -17.8783 2.0764 -4.4197 17.4740 0.0000 0.0000 -7.3372 -2.6668 4.2969 2.3335 0.0000 0.0000 -26.5322 -9.6428 8.9723 28.9242 0.0000 0.0000 -7.8374 7.3520 -11.6254 -8.1777 0.0000 -0.0000 - -2.7957 -112.8545 24.0007 -9.1618 -2.5305 169.5924 3.4844 0.2447 -0.1027 0.5052 1.6113 0.1324 8.2166 -10.4683 4.3002 -3.3004 -10.5162 5.6783 -21.0047 -25.7229 -7.9316 0.2661 -6.3794 1.1397 -6.2894 -11.9344 11.2194 3.0223 -26.2301 63.2269 0.0000 0.0000 7.9699 0.3563 17.9863 -3.1337 -0.0000 -0.0000 -0.0000 0.0000 -0.0000 -0.0000 -10.6367 -4.3916 -21.0184 3.3554 7.2801 -64.0320 -0.0000 -0.0000 -6.1852 -2.8049 2.5370 -7.9483 -0.0000 0.0000 -0.0000 -0.0000 0.0000 0.0000 -18.9928 2.6280 -4.5304 17.6728 0.0000 0.0000 -7.4071 -3.9720 4.7432 2.0511 0.0000 0.0000 -26.5675 -9.0491 9.1003 27.5870 0.0000 0.0000 -9.3007 5.9461 -12.1104 -7.0772 0.0000 -0.0000 - -3.0587 -112.7812 23.9912 -9.7384 -2.4169 169.7111 2.8909 1.3978 -0.2279 0.2159 1.9806 0.1824 8.4843 -10.7557 3.9761 -3.2297 -11.0579 5.7862 -22.0824 -26.4590 -9.1423 0.3553 -6.5326 1.1151 -6.6959 -13.1551 10.6297 3.3972 -26.5336 63.4323 0.0000 0.0000 6.9529 0.3824 20.8984 -3.8625 -0.0000 -0.0000 0.0000 -0.0000 0.0000 0.0000 -10.5862 -4.0609 -22.4528 4.0487 5.7802 -62.7192 -0.0000 -0.0000 -7.3311 -3.3573 -0.0031 -8.2389 0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 -19.3537 3.4984 -5.0777 17.4115 0.0000 0.0000 -7.2628 -5.0103 5.3638 1.7985 0.0000 0.0000 -26.8311 -8.0164 8.6075 27.1461 0.0000 0.0000 -10.1003 4.8465 -11.5585 -6.5691 0.0000 -0.0000 diff --git a/skills/creative/ink-theater.md b/skills/creative/ink-theater.md index 946a309f..94490fdf 100644 --- a/skills/creative/ink-theater.md +++ b/skills/creative/ink-theater.md @@ -44,7 +44,7 @@ Then stage as beats on one continuous white page with a camera (pan / push). For a character that walks / dances / etc., do NOT hand-author motion (sine curves, hand-posed frames). Use the puppet + the **mocap action library**: - `InkPuppet.create(mount,{cx,ground,boil})` → `p.drawIn(tl,{start})` (self-drawing reveal) → `InkPuppet.choreograph(tl, p, [{clip:'walk'},{clip:'dance_spin'},{clip:'wave'}], {start})`. -- **Read `ink-theater/mocap/catalog.json` and pick moves that fit each beat — vary them, and NEVER loop one clip** (looping is what makes videos feel repetitive). ~12 today: walk, run, climb, march, shuffle, jump, kick, sit, wave, dab, dance_spin, dance_glide. +- **Read `ink-theater/mocap/catalog.json` and pick moves that fit each beat — vary them, and NEVER loop one clip** (looping is what makes videos feel repetitive). 12 today (all CMU-sourced): walk, run, climb, march, shuffle, jump, kick, sit, wave, twist, dance_spin, dance_glide. - **Move not in the catalog?** `node ink-theater/mocap/add-motion.mjs ""` — fetches, converts (auto-maps fair1 / CMU / Mixamo skeletons), rebundles + updates the catalog. Free CMU mocap (`una-dinosauria/cmu-mocap`) has thousands. Then copy `mocap/clips.js` into the project. - **Speech balloons** (characters "talking"): `InkTheater.balloon(tl, {into, overlay, at, dur, text, mouth:[x,y], center:[x,y], boil})` — HTML text so the webfont applies. diff --git a/skills/pipelines/character-animation/character-design-director.md b/skills/pipelines/character-animation/character-design-director.md index 11b665b6..af54377f 100644 --- a/skills/pipelines/character-animation/character-design-director.md +++ b/skills/pipelines/character-animation/character-design-director.md @@ -5,7 +5,7 @@ Produce `character_design`: a small cast with clear silhouettes, roles, emotions, actions, and style anchors. -> **Hand-drawn ink "doodle" character?** (a stick/pencil figure that draws itself, then walks / dances / waves / jumps) → use the **Ink Puppet** system: `skills/creative/ink-theater.md` + `ink-theater/README.md`. The rig is proportion-agnostic and plays **real mocap** clips via `InkPuppet.choreograph([{clip:'wave_hello'},{clip:'dab'},…])` — the agent only chooses named moves, **never hand-tunes motion**; add moves by converting a BVH with `ink-theater/mocap/bvh2clip.mjs`. Command: `/ink-art`. +> **Hand-drawn ink "doodle" character?** (a stick/pencil figure that draws itself, then walks / dances / waves / jumps) → use the **Ink Puppet** system: `skills/creative/ink-theater.md` + `ink-theater/README.md`. The rig is proportion-agnostic and plays **real mocap** clips via `InkPuppet.choreograph([{clip:'wave'},{clip:'twist'},…])` — clip names come from `ink-theater/mocap/catalog.json` (12 CMU-sourced moves); the agent only chooses named moves, **never hand-tunes motion**; add moves with `node ink-theater/mocap/add-motion.mjs`. Command: `/ink-art`. ## Process